From 79903465b2443ec6f81b9f76aa3bb77790f86b9d Mon Sep 17 00:00:00 2001 From: Superkooka Date: Sun, 21 Dec 2025 03:53:13 +0100 Subject: [PATCH 1/4] feat: fetch LolEsportOfficialAPI Teams --- config/services.yaml | 5 +- config/services_dev.yaml | 1 + .../LolEsportOfficialAPIEngine.php | 27 + .../SportRadar/SportRadarEngine.php | 2 + .../FetchLolEsportOfficialAPISchedule.php | 74 + ...tchLolEsportOfficialAPIScheduleRequest.php | 7 + .../FetchNHLSportRadarMatch.php} | 17 +- .../FetchNHLSportRadarMatchRequest.php} | 4 +- src/Domain/Entity/AEntity.php | 4 +- ...tchLolEsportOfficialAPIScheduleCommand.php | 24 + ...mand.php => FetchNHLSportRadarCommand.php} | 8 +- .../FakeLolEsportOfficialAPIEngine.php | 38 + ...ort_official_api_lol_teams_21_12_2025.json | 68539 ++++++++++++++++ .../HTTPLolEsportOfficialAPIEngine.php | 28 + .../Mapping/App.Domain.Entity.Team.php | 2 +- 15 files changed, 68763 insertions(+), 17 deletions(-) create mode 100644 src/Application/LolEsportOfficialAPI/LolEsportOfficialAPIEngine.php create mode 100644 src/Application/UseCase/LeagueOfLegends/FetchLolEsportOfficialAPISchedule.php create mode 100644 src/Application/UseCase/LeagueOfLegends/FetchLolEsportOfficialAPIScheduleRequest.php rename src/Application/UseCase/{FetchNHLMatch.php => NHL/FetchNHLSportRadarMatch.php} (81%) rename src/Application/UseCase/{FetchNHLMatchRequest.php => NHL/FetchNHLSportRadarMatchRequest.php} (62%) create mode 100644 src/Infrastructure/Console/FetchLolEsportOfficialAPIScheduleCommand.php rename src/Infrastructure/Console/{GetNHLScheduleCommand.php => FetchNHLSportRadarCommand.php} (62%) create mode 100644 src/Infrastructure/LolEsportOfficialAPI/FakeLolEsportOfficialAPIEngine.php create mode 100644 src/Infrastructure/LolEsportOfficialAPI/Fixtures/lolesport_official_api_lol_teams_21_12_2025.json create mode 100644 src/Infrastructure/LolEsportOfficialAPI/HTTPLolEsportOfficialAPIEngine.php diff --git a/config/services.yaml b/config/services.yaml index ecb6c7f..88d341b 100644 --- a/config/services.yaml +++ b/config/services.yaml @@ -21,9 +21,10 @@ services: $handlers: !tagged_iterator 'app.usecase' App\Application\UseCase\: - resource: '../src/Application/UseCase/' + resource: '../src/Application/UseCase/**' tags: ['app.usecase'] exclude: - - '../src/Application/UseCase/*Request.php' + - '../src/Application/UseCase/**/*Request.php' + App\Application\LolEsportOfficialAPI\LolEsportOfficialAPIEngine: '@App\Infrastructure\LolEsportOfficialAPI\HTTPLolEsportOfficialAPI' App\Application\SportRadar\SportRadarEngine: '@App\Infrastructure\SportRadar\HTTPSportRadarEngine' diff --git a/config/services_dev.yaml b/config/services_dev.yaml index 2396de1..1d895b5 100644 --- a/config/services_dev.yaml +++ b/config/services_dev.yaml @@ -2,4 +2,5 @@ imports: - { resource: services.yaml } services: + App\Application\LolEsportOfficialAPI\LolEsportOfficialAPIEngine: '@App\Infrastructure\LolEsportOfficialAPI\FakeLolEsportOfficialAPIEngine' App\Application\SportRadar\SportRadarEngine: '@App\Infrastructure\SportRadar\FakeSportRadarEngine' diff --git a/src/Application/LolEsportOfficialAPI/LolEsportOfficialAPIEngine.php b/src/Application/LolEsportOfficialAPI/LolEsportOfficialAPIEngine.php new file mode 100644 index 0000000..1d00579 --- /dev/null +++ b/src/Application/LolEsportOfficialAPI/LolEsportOfficialAPIEngine.php @@ -0,0 +1,27 @@ + + */ + public function getTeams(); + + public function getLeagues(); + + public function getSeasons(); // "Tournament" + + public function getSchedules(); +} diff --git a/src/Application/SportRadar/SportRadarEngine.php b/src/Application/SportRadar/SportRadarEngine.php index 7ff45c6..152f1e4 100644 --- a/src/Application/SportRadar/SportRadarEngine.php +++ b/src/Application/SportRadar/SportRadarEngine.php @@ -8,6 +8,8 @@ use App\Domain\Enum\ENHLSeasonType; interface SportRadarEngine { + public const string PROVIDER_ID = '885fe581-c4c3-45e7-a06c-29ece7d47fad'; + /** * @return array{ * league: array{ diff --git a/src/Application/UseCase/LeagueOfLegends/FetchLolEsportOfficialAPISchedule.php b/src/Application/UseCase/LeagueOfLegends/FetchLolEsportOfficialAPISchedule.php new file mode 100644 index 0000000..f3ee2bc --- /dev/null +++ b/src/Application/UseCase/LeagueOfLegends/FetchLolEsportOfficialAPISchedule.php @@ -0,0 +1,74 @@ +entityManager->getRepository(Provider::class)->find(LolEsportOfficialAPIEngine::PROVIDER_ID); + if (null === $provider) { + $provider = new Provider(LolEsportOfficialAPIEngine::PROVIDER_ID); + $provider->create('LolEsportOfficialAPI'); + + $this->entityManager->persist($provider); + $this->entityManager->flush(); + } + + $providerRM = $this->entityManager->getRepository(ProviderRM::class)->find(LolEsportOfficialAPIEngine::PROVIDER_ID); + + // Fetch Teams, make diff from db, disable if only on db, add if new + // team from api have unique id and code as alias. Match use code to identify teams + $lolEsportOfficialAPITeams = $this->lolEsportOfficialAPIEngine->getTeams(); + $teamsRM = $this->entityManager->getRepository(TeamRM::class)->findBy(['providerId' => $providerRM->id]); + $teamsRMWithId = []; + foreach ($teamsRM as $team) { + $teamsRMWithId[$team->providerTeamId] = $team; + } + + foreach ($lolEsportOfficialAPITeams as $team) { + if (!isset($teamsRMWithId[$team['id']])) { + // Create Team + $teamEntity = new Team(); + $teamEntity->create( + $provider, + $team['id'], + $team['name'], + $team['code'], + 'active' === $team['status'], + ); + + $this->entityManager->persist($teamEntity); + continue; + } + + // check for active/renaming? + } + + // Fetch League + + // Fetch Season (Tournament). Need to be maped to a league from name if fetch all, can be fetch by league + // add endDate + + // Fetch Match Schedule + // paginated. can be by league or global + // team are identify by code, not id + + $this->entityManager->flush(); + } +} diff --git a/src/Application/UseCase/LeagueOfLegends/FetchLolEsportOfficialAPIScheduleRequest.php b/src/Application/UseCase/LeagueOfLegends/FetchLolEsportOfficialAPIScheduleRequest.php new file mode 100644 index 0000000..38da87e --- /dev/null +++ b/src/Application/UseCase/LeagueOfLegends/FetchLolEsportOfficialAPIScheduleRequest.php @@ -0,0 +1,7 @@ +entityManager->getRepository(Provider::class)->findOneBy(['id' => '885fe581-c4c3-45e7-a06c-29ece7d47fad']) // id should not be here - ?? throw new \Exception('Provider not found'); + $provider = $this->entityManager->getRepository(Provider::class)->find(SportRadarEngine::PROVIDER_ID); + if (null === $provider) { + $provider = new Provider(); + $provider->create('SportRadar'); + + $this->entityManager->persist($provider); + } + $matchs = $this->sportRadarEngine->getNHLSchedule($request->year, ENHLSeasonType::from($request->type)); $season = diff --git a/src/Application/UseCase/FetchNHLMatchRequest.php b/src/Application/UseCase/NHL/FetchNHLSportRadarMatchRequest.php similarity index 62% rename from src/Application/UseCase/FetchNHLMatchRequest.php rename to src/Application/UseCase/NHL/FetchNHLSportRadarMatchRequest.php index 1e5ec77..f94a5f0 100644 --- a/src/Application/UseCase/FetchNHLMatchRequest.php +++ b/src/Application/UseCase/NHL/FetchNHLSportRadarMatchRequest.php @@ -2,9 +2,9 @@ declare(strict_types=1); -namespace App\Application\UseCase; +namespace App\Application\UseCase\NHL; -readonly class FetchNHLMatchRequest +readonly class FetchNHLSportRadarMatchRequest { public function __construct( public int $year, diff --git a/src/Domain/Entity/AEntity.php b/src/Domain/Entity/AEntity.php index 00c4d97..affc622 100644 --- a/src/Domain/Entity/AEntity.php +++ b/src/Domain/Entity/AEntity.php @@ -8,9 +8,9 @@ abstract class AEntity { protected string $id; - public function __construct() + public function __construct(?string $id = null) { - $this->id = $this->generateUUIDv4(); + $this->id = $id ?? $this->generateUUIDv4(); } /** diff --git a/src/Infrastructure/Console/FetchLolEsportOfficialAPIScheduleCommand.php b/src/Infrastructure/Console/FetchLolEsportOfficialAPIScheduleCommand.php new file mode 100644 index 0000000..8048699 --- /dev/null +++ b/src/Infrastructure/Console/FetchLolEsportOfficialAPIScheduleCommand.php @@ -0,0 +1,24 @@ +commandBus->ask(new FetchLolEsportOfficialAPIScheduleRequest()); + + return Command::SUCCESS; + } +} diff --git a/src/Infrastructure/Console/GetNHLScheduleCommand.php b/src/Infrastructure/Console/FetchNHLSportRadarCommand.php similarity index 62% rename from src/Infrastructure/Console/GetNHLScheduleCommand.php rename to src/Infrastructure/Console/FetchNHLSportRadarCommand.php index c617676..55bace5 100644 --- a/src/Infrastructure/Console/GetNHLScheduleCommand.php +++ b/src/Infrastructure/Console/FetchNHLSportRadarCommand.php @@ -3,12 +3,12 @@ namespace App\Infrastructure\Console; use App\Application\CommandBus\UseCaseCommandBus; -use App\Application\UseCase\FetchNHLMatchRequest; +use App\Application\UseCase\NHL\FetchNHLSportRadarMatchRequest; use Symfony\Component\Console\Attribute\AsCommand; use Symfony\Component\Console\Command\Command; -#[AsCommand(name: 'app:get-nhl-schedule')] -class GetNHLScheduleCommand +#[AsCommand(name: 'app:fetch-schedule:nhl:sportradar')] +class FetchNHLSportRadarCommand { public function __construct( private readonly UseCaseCommandBus $commandBus, @@ -17,7 +17,7 @@ class GetNHLScheduleCommand public function __invoke(): int { - $this->commandBus->ask(new FetchNHLMatchRequest(2025, 'REG')); + $this->commandBus->ask(new FetchNHLSportRadarMatchRequest(2025, 'REG')); return Command::SUCCESS; } diff --git a/src/Infrastructure/LolEsportOfficialAPI/FakeLolEsportOfficialAPIEngine.php b/src/Infrastructure/LolEsportOfficialAPI/FakeLolEsportOfficialAPIEngine.php new file mode 100644 index 0000000..3611961 --- /dev/null +++ b/src/Infrastructure/LolEsportOfficialAPI/FakeLolEsportOfficialAPIEngine.php @@ -0,0 +1,38 @@ + [ + "id" => $team["id"], + "slug" => $team["slug"], + "name" => $team["name"], + "code" => $team["code"], + "status" => $team["status"], + ], $fake_lolesport_official_api_lol_teams["data"]["teams"]); + } + + public function getLeagues() + { + // TODO: Implement getLeagues() method. + } + + public function getSeasons() + { + // TODO: Implement getSeasons() method. + } + + public function getSchedules() + { + // TODO: Implement getSchedules() method. + } +} diff --git a/src/Infrastructure/LolEsportOfficialAPI/Fixtures/lolesport_official_api_lol_teams_21_12_2025.json b/src/Infrastructure/LolEsportOfficialAPI/Fixtures/lolesport_official_api_lol_teams_21_12_2025.json new file mode 100644 index 0000000..fac7c28 --- /dev/null +++ b/src/Infrastructure/LolEsportOfficialAPI/Fixtures/lolesport_official_api_lol_teams_21_12_2025.json @@ -0,0 +1,68539 @@ +{ + "data": { + "teams": [ + { + "id": "100205572995797818", + "slug": "tbd", + "name": "TBD", + "code": "TBDD", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/tbd-awibzy0k.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/tbd-frpypqn6.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "MSI", + "region": "INTERNATIONAL" + }, + "players": [] + }, + { + "id": "100205572997632804", + "slug": "tbd", + "name": "TBD", + "code": "TBDA", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/tbd-gs80zirb.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/tbd-c2rp3cqf.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "MSI", + "region": "INTERNATIONAL" + }, + "players": [] + }, + { + "id": "100205572999591608", + "slug": "tbd", + "name": "TBD", + "code": "TBDC", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/tbd-jb3v9b9x.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/tbd-6b1aqf9c.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "MSI", + "region": "INTERNATIONAL" + }, + "players": [] + }, + { + "id": "100205573001435494", + "slug": "pentagram", + "name": "PENTAGRAM", + "code": "PGM", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/pentagram-5udx4g7f.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/pentagram-7w4bnge6.png", + "backgroundImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/pentagram-4jrdq4r9.png", + "status": "active", + "homeLeague": { + "name": "LJL", + "region": "JAPAN" + }, + "players": [ + { + "id": "100205572901889771", + "summonerName": "Paz", + "firstName": "Shiro", + "lastName": "Sasaki", + "image": "http://static.lolesports.com/players/1686138040724_sg_paz.png", + "role": "top" + }, + { + "id": "98767975932435430", + "summonerName": "Moyashi", + "firstName": "Yuta", + "lastName": "Noguchi", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/yutorimoyashi-get8kafq.png", + "role": "bottom" + }, + { + "id": "98767975933861580", + "summonerName": "Ramune", + "firstName": "Osamu", + "lastName": "Ozawa", + "image": "http://static.lolesports.com/players/sg_ramune.png", + "role": "mid" + }, + { + "id": "100205572956493537", + "summonerName": "Once", + "firstName": "Seyeong", + "lastName": "Jang", + "image": "http://static.lolesports.com/players/1674828117330_sg_once.png", + "role": "jungle" + }, + { + "id": "100205572958145522", + "summonerName": "Gaeng", + "firstName": "Gwangyu", + "lastName": "Yang", + "image": "http://static.lolesports.com/players/1744280009328_SHG_Gaeng.png", + "role": "support" + }, + { + "id": "100205572959751296", + "summonerName": "hAFu", + "firstName": "Nobushiro", + "lastName": "Kodama", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/hafu-aiclmnnt.png", + "role": "mid" + } + ] + }, + { + "id": "100205573002983994", + "slug": "evos-esports", + "name": "EVOS Esports", + "code": "EVS", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/evos-esports-ilhnmu72.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/evos-esports-ach22y3p.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "98767975958777724", + "summonerName": "N0way", + "firstName": "Vu Long", + "lastName": "Nguyen", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/noway-24zsozyn.png", + "role": "bottom" + }, + { + "id": "102300322391348363", + "summonerName": "Coyote", + "firstName": "Quốc Bình", + "lastName": "Phạm", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/coyote-2t4cyjqt.png", + "role": "top" + }, + { + "id": "102300322393117837", + "summonerName": "Mias", + "firstName": "Mai Anh Khoa", + "lastName": "Trần", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/mias-5uxvfqg0.png", + "role": "top" + }, + { + "id": "102300322394821775", + "summonerName": "Sorn", + "firstName": "Hao", + "lastName": "Nguyen Minh", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/sorn-bbws3n2j.png", + "role": "jungle" + }, + { + "id": "102300322396525713", + "summonerName": "Dia1", + "firstName": "Phú Quý", + "lastName": "Lê", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/dia1-ajffcbr.png", + "role": "mid" + }, + { + "id": "102300322398229651", + "summonerName": "Div Kid", + "firstName": "Thanh Tùng", + "lastName": "Võ", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/div-kid-4qhet6lx.png", + "role": "bottom" + }, + { + "id": "102300322399868053", + "summonerName": "Biob", + "firstName": "Lâm Việt Sinh", + "lastName": "Nguyễn", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/biob-76a7d4fj.png", + "role": "support" + }, + { + "id": "102300322401571991", + "summonerName": "Helios", + "firstName": "Mạnh Hà", + "lastName": "Trịnh", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/helios-dhl2yige.png", + "role": "support" + } + ] + }, + { + "id": "100205573004554238", + "slug": "ascension-gaming", + "name": "Ascension Gaming", + "code": "ASC1", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/ascension-gaming-cykgrymz.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/ascension-gaming-bqfzfpel.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "100205572950531514", + "summonerName": "Rich", + "firstName": "Warich", + "lastName": "Kittiwattanawong", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/rich-9kli1fyq.png", + "role": "support" + }, + { + "id": "100719331953033712", + "summonerName": "Niksar", + "firstName": "Valentin", + "lastName": "Zimakov", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/niksar-5kgq55ef.png", + "role": "bottom" + }, + { + "id": "100719331954042947", + "summonerName": "SunSunSun", + "firstName": "Ronnakrit", + "lastName": "Jaideecharoen", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/sunsunsun-6d4t8mcv.png", + "role": "mid" + } + ] + }, + { + "id": "100205573495116443", + "slug": "geng", + "name": "Gen.G Esports", + "code": "GEN", + "image": "http://static.lolesports.com/teams/1655210113163_GenG_logo_200407-05.png", + "alternativeImage": "http://static.lolesports.com/teams/1655210113165_GenG_logo_200407-02.png", + "backgroundImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/geng-bnm75bf5.png", + "status": "active", + "homeLeague": { + "name": "LCK", + "region": "KOREA" + }, + "players": [ + { + "id": "99871276342168416", + "summonerName": "Chovy", + "firstName": "Jihun", + "lastName": "Jung", + "image": "http://static.lolesports.com/players/1758212535327_chovu.png", + "role": "mid" + }, + { + "id": "113740943728096233", + "summonerName": "SIRIUSS", + "firstName": "Kun", + "lastName": "Ko", + "image": "http://static.lolesports.com/players/1739356606316_image682.png", + "role": "support" + }, + { + "id": "115740909072304963", + "summonerName": "Ripple", + "firstName": "Jongmin", + "lastName": "Byeon", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "108366460978884097", + "summonerName": "Courage", + "firstName": "Hyunmin", + "lastName": "Jeon", + "image": "http://static.lolesports.com/players/1744279876825_SHG_Courage.png", + "role": "jungle" + }, + { + "id": "115740899235923933", + "summonerName": "MUDAI", + "firstName": "SUNGYU", + "lastName": "LEE", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "115740899326939236", + "summonerName": "Lumos", + "firstName": "JAEMIN", + "lastName": "KIM", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "99566404532924465", + "summonerName": "Kiin", + "firstName": "Kiin", + "lastName": "Kim", + "image": "http://static.lolesports.com/players/1758213448905_kiin.png", + "role": "top" + }, + { + "id": "100725844994345151", + "summonerName": "Canyon", + "firstName": "Gunbu", + "lastName": "Kim", + "image": "http://static.lolesports.com/players/1758212470925_canyon.png", + "role": "jungle" + }, + { + "id": "113560610683314243", + "summonerName": "Kemish", + "firstName": "Sihun", + "lastName": "Kim", + "image": "http://static.lolesports.com/players/1739356892698_image684.png", + "role": "mid" + }, + { + "id": "98767975906852059", + "summonerName": "Ruler", + "firstName": "Jaehyeok", + "lastName": "Park", + "image": "http://static.lolesports.com/players/1758213914983_ruler.png", + "role": "bottom" + }, + { + "id": "107454956790371682", + "summonerName": "Duro", + "firstName": "Mingyu", + "lastName": "Ju", + "image": "http://static.lolesports.com/players/1758213092149_duro.png", + "role": "support" + } + ] + }, + { + "id": "100205573496804586", + "slug": "hanwha-life-esports", + "name": "Hanwha Life Esports", + "code": "HLE", + "image": "http://static.lolesports.com/teams/1631819564399_hle-2021-worlds.png", + "alternativeImage": "http://static.lolesports.com/teams/hle-2021-color-on-light2.png", + "backgroundImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/hanwha-life-esports-7kh5kjdc.png", + "status": "active", + "homeLeague": { + "name": "LCK", + "region": "KOREA" + }, + "players": [ + { + "id": "105320680474347057", + "summonerName": "Zeus", + "firstName": "Wooje", + "lastName": "Choi", + "image": "http://static.lolesports.com/players/1758214359004_zeus.png", + "role": "top" + }, + { + "id": "109523141015834041", + "summonerName": "Grizzly", + "firstName": "Seunghoon", + "lastName": "Jo", + "image": "http://static.lolesports.com/players/1758213228504_grizzly.png", + "role": "none" + }, + { + "id": "113740953522201854", + "summonerName": "Jackal", + "firstName": "Sumin", + "lastName": "Lee", + "image": "http://static.lolesports.com/players/1758213323334_jackal.png", + "role": "none" + }, + { + "id": "113740949736514801", + "summonerName": "Pyeonsik", + "firstName": "Mingi", + "lastName": "Pyeon", + "image": "http://static.lolesports.com/players/1758213807740_pyeonsik.png", + "role": "none" + }, + { + "id": "113740952132760566", + "summonerName": "Bluffing", + "firstName": "Gyuyong", + "lastName": "Park", + "image": "http://static.lolesports.com/players/1758212309405_blufiing.png", + "role": "none" + }, + { + "id": "115740899104327635", + "summonerName": "Cracker", + "firstName": "Jeongwook", + "lastName": "Lee", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "115740899171305432", + "summonerName": "Valiant", + "firstName": "Kanghyun", + "lastName": "Han", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "101671284628761661", + "summonerName": "Kanavi", + "firstName": "Jinhhyeok ", + "lastName": "Seo", + "image": "http://static.lolesports.com/players/1753284334003_image6115.png", + "role": "jungle" + }, + { + "id": "103495716775975785", + "summonerName": "Gumayusi", + "firstName": "Minhyung", + "lastName": "Lee", + "image": "http://static.lolesports.com/players/1758213249170_gumayusi.png", + "role": "bottom" + }, + { + "id": "105501709748188393", + "summonerName": "Delight", + "firstName": "Hwanjung", + "lastName": "Yu", + "image": "http://static.lolesports.com/players/1758212999582_delight.png", + "role": "support" + }, + { + "id": "103478281361900912", + "summonerName": "Zeka", + "firstName": "Geon-Woo", + "lastName": "Kim", + "image": "http://static.lolesports.com/players/1739365717974_image6-2025-02-12T140808.083.png", + "role": "mid" + } + ] + }, + { + "id": "100205576307813373", + "slug": "flamengo-esports", + "name": "Flamengo ", + "code": "FLA", + "image": "http://static.lolesports.com/teams/1642953977323_Monograma_Branco-Vermelho.png", + "alternativeImage": "http://static.lolesports.com/teams/1642953977326_Monograma_Branco-Vermelho.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "CBLOL", + "region": "BRAZIL" + }, + "players": [ + { + "id": "107559255871511679", + "summonerName": "Mito", + "firstName": "Giovani", + "lastName": "Baldan", + "image": "http://static.lolesports.com/players/1674154117059_Mito-1copy.png", + "role": "top" + }, + { + "id": "104275702591900615", + "summonerName": "Gyeong", + "firstName": "Leonardo", + "lastName": "Lima", + "image": "http://static.lolesports.com/players/1654468046243_Silhueta.png", + "role": "support" + }, + { + "id": "108395410883613606", + "summonerName": "Geum go", + "firstName": "Seungho", + "lastName": "Kim", + "image": "http://static.lolesports.com/players/1654457966021_GeumGocopy.png", + "role": "none" + } + ] + }, + { + "id": "100205576309502431", + "slug": "furia", + "name": "FURIA", + "code": "FUR", + "image": "http://static.lolesports.com/teams/FURIA---black.png", + "alternativeImage": "http://static.lolesports.com/teams/FURIA---black.png", + "backgroundImage": "http://static.lolesports.com/teams/FuriaUppercutFUR.png", + "status": "active", + "homeLeague": { + "name": "LTA South", + "region": "AMERICAS" + }, + "players": [ + { + "id": "108494063372887027", + "summonerName": "Tatu", + "firstName": "Pedro", + "lastName": "Seixas", + "image": "http://static.lolesports.com/players/1753346582896_image6219.png", + "role": "jungle" + }, + { + "id": "100131733430915231", + "summonerName": "Guigo", + "firstName": "Guilherme", + "lastName": "Ruiz", + "image": "http://static.lolesports.com/players/1753346500741_image6121.png", + "role": "top" + }, + { + "id": "99566408211536727", + "summonerName": "JoJo", + "firstName": "Gabriel", + "lastName": "Dzelme", + "image": "http://static.lolesports.com/players/1753346830464_image6515.png", + "role": "support" + }, + { + "id": "103478281329357326", + "summonerName": "Tutsz", + "firstName": "Arthur", + "lastName": "Machado", + "image": "http://static.lolesports.com/players/1753346665668_image6319.png", + "role": "mid" + }, + { + "id": "108613483446049530", + "summonerName": "Ayu", + "firstName": "Andrey", + "lastName": "Saraiva", + "image": "http://static.lolesports.com/players/1753346746337_image6419.png", + "role": "bottom" + } + ] + }, + { + "id": "100205576949530558", + "slug": "bursaspor-esports", + "name": "Bursaspor Esports", + "code": "BURA", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/bursaspor-esports-fhdw3a5q.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/bursaspor-esports-d70i46ip.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "TCL", + "region": "EMEA" + }, + "players": [ + { + "id": "101422616395901679", + "summonerName": "Ray Lefty", + "firstName": "Işın", + "lastName": "Solak", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/steve-murphy-j9avy8fi.png", + "role": "jungle" + }, + { + "id": "100312143593848389", + "summonerName": "Taikki", + "firstName": "Arttu", + "lastName": "Sirkka", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/taikki-bvhmd6l0.png", + "role": "jungle" + }, + { + "id": "102174652794577996", + "summonerName": "Aken", + "firstName": "Enes", + "lastName": "Akgül", + "image": "https://static.lolesports.com/players/download.png", + "role": "mid" + } + ] + }, + { + "id": "100285330164581167", + "slug": "team-mineski", + "name": "Team Mineski", + "code": "MSK", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/team-mineski-fsth85vl.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/team-mineski-8ubc3no2.png", + "backgroundImage": "http://admin.prod.lolesports.com:8080/sites/default/files/players_SEA_MIN_TEAMSHOT.jpg", + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "100304452040545643", + "summonerName": "Tgee", + "firstName": "Gerald", + "lastName": "Gianne Gelacio", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/tgee-c422i88b.png", + "role": "support" + }, + { + "id": "100304452038977816", + "summonerName": "Kaigu", + "firstName": "Jon", + "lastName": "Lance Hernandez", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/kaigu-2ks8rtjg.png", + "role": "top" + }, + { + "id": "100304452051973425", + "summonerName": "Jjun", + "firstName": "Junseok", + "lastName": "Kwon", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/jjun-9cbuvwp0.png", + "role": "jungle" + }, + { + "id": "100304452036302963", + "summonerName": "Gari", + "firstName": "Yongjun", + "lastName": "Bae", + "image": "https://static.lolesports.com/players/download.png", + "role": "bottom" + }, + { + "id": "100304452056573801", + "summonerName": "Exosen", + "firstName": "Gubatan", + "lastName": "Eric Allen", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/exosen-hl1squvt.png", + "role": "mid" + }, + { + "id": "100304452037083213", + "summonerName": "Hamezz", + "firstName": "James", + "lastName": "Shantos", + "image": "https://static.lolesports.com/players/download.png", + "role": "support" + } + ] + }, + { + "id": "100285330168091787", + "slug": "detonation-focusme", + "name": "DetonatioN FocusMe", + "code": "DFM", + "image": "http://static.lolesports.com/teams/1673415140442_dfm.png", + "alternativeImage": "http://static.lolesports.com/teams/1673415140445_dfm.png", + "backgroundImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/detonation-focusme-4pgp383l.png", + "status": "active", + "homeLeague": { + "name": "LCP", + "region": "PACIFIC" + }, + "players": [ + { + "id": "107618427663806057", + "summonerName": "Kakkun", + "firstName": "Kamon", + "lastName": "Nomoto", + "image": "http://static.lolesports.com/players/1747471809106_DFM_Kakkun.png", + "role": "bottom" + }, + { + "id": "101796953888872633", + "summonerName": "RayFarky", + "firstName": "Minato", + "lastName": "Shinohara", + "image": "http://static.lolesports.com/players/1744280067838_DFM_RayFarky.png", + "role": "top" + }, + { + "id": "104016425624023728", + "summonerName": "Harp", + "firstName": "Jiyoong", + "lastName": "Lee", + "image": "http://static.lolesports.com/players/1744280229872_DFM_Harp.png", + "role": "support" + }, + { + "id": "106288133167060072", + "summonerName": "Citrus", + "firstName": "Ji Woong", + "lastName": "Byun", + "image": "http://static.lolesports.com/players/1755157395983_DFM_Citrus.png", + "role": "jungle" + } + ] + }, + { + "id": "100285330169036485", + "slug": "unsold-stuff-gaming", + "name": "Unsold Stuff Gaming", + "code": "USG", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/unsold-stuff-gaming-zrbxiqt.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/unsold-stuff-gaming-9qmlyqpb.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LJL", + "region": "JAPAN" + }, + "players": [ + { + "id": "101796930102476930", + "summonerName": "Keymaker", + "firstName": "Hiroto", + "lastName": "Ito", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/keymaker-ieys3wcw.png", + "role": "bottom" + }, + { + "id": "101796930104115332", + "summonerName": "Arumik", + "firstName": "Naoya", + "lastName": "Kimura", + "image": "http://static.lolesports.com/players/1592293975281_SHG_Arumik1.png", + "role": "top" + } + ] + }, + { + "id": "100285330170285888", + "slug": "kuala-lumpur-hunters", + "name": "Kuala Lumpur Hunters", + "code": "KLH", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/kuala-lumpur-hunters-6me4z521.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "100304817635135748", + "summonerName": "QaspieL", + "firstName": "Eric Sze Pin", + "lastName": "Sia", + "image": "http://static.lolesports.com/players/1656576475999_QaspieL.png", + "role": "jungle" + }, + { + "id": "100304817634373256", + "summonerName": "Shiro2", + "firstName": "Adrian Meng Xuan", + "lastName": "Lee", + "image": "https://static.lolesports.com/players/download.png", + "role": "top" + }, + { + "id": "100304817637437244", + "summonerName": "SOUPerior", + "firstName": "Calvin Quok Vern", + "lastName": "Yang", + "image": "https://static.lolesports.com/players/download.png", + "role": "support" + }, + { + "id": "100304817636643172", + "summonerName": "OzoraVeki", + "firstName": "Kok Sing", + "lastName": "Poon", + "image": "https://static.lolesports.com/players/download.png", + "role": "bottom" + }, + { + "id": "100304817635938660", + "summonerName": "ArrHedge", + "firstName": "Chan, Roonghan", + "lastName": "Roonghan", + "image": "https://static.lolesports.com/players/download.png", + "role": "mid" + }, + { + "id": "100304817638205854", + "summonerName": "Panderp", + "firstName": "Amanda Mun Lin", + "lastName": "Lee", + "image": "https://static.lolesports.com/players/download.png", + "role": "support" + } + ] + }, + { + "id": "100289931264192378", + "slug": "team-spirit", + "name": "Team Spirit", + "code": "TSPT", + "image": "http://static.lolesports.com/teams/1643720491696_Whitelogo.png", + "alternativeImage": "http://static.lolesports.com/teams/1643720491697_Blacklogo.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCL", + "region": "COMMONWEALTH OF INDEPENDENT STATES" + }, + "players": [ + { + "id": "106301600611225723", + "summonerName": "Dreampull", + "firstName": "Mark", + "lastName": "Leksin", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "top" + }, + { + "id": "107721938219680332", + "summonerName": "TESLA", + "firstName": "Azamat", + "lastName": "Atkanov", + "image": "http://static.lolesports.com/players/1643706327509_placeholder.png", + "role": "support" + }, + { + "id": "98767991750309549", + "summonerName": "Diamondprox", + "firstName": "Danil", + "lastName": "Reshetnikov", + "image": "http://static.lolesports.com/players/Diamondproxcopy.png", + "role": "jungle" + }, + { + "id": "105700748891875072", + "summonerName": "Griffon ", + "firstName": "Nikita ", + "lastName": "Gudkov", + "image": "http://static.lolesports.com/players/1642071116433_placeholder.png", + "role": "mid" + }, + { + "id": "98767991755955790", + "summonerName": "Edward", + "firstName": "Eduard", + "lastName": "Abgaryan", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/gosu-pepper-88anxcql.png", + "role": "support" + } + ] + }, + { + "id": "100289931264934834", + "slug": "team-just", + "name": "Team Just", + "code": "TJ", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/team-just-dyp9k92d.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/team-just-dyp9k92d.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "LCL", + "region": "COMMONWEALTH OF INDEPENDENT STATES" + }, + "players": [ + { + "id": "100312025667548219", + "summonerName": "Atom", + "firstName": "Peter", + "lastName": "Thomsen", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/atom-5zii9mjm.png", + "role": "top" + }, + { + "id": "100312025681633523", + "summonerName": "Lekcycc", + "firstName": "Aleksandr ", + "lastName": "Leksikov", + "image": "https://static.lolesports.com/players/download.png", + "role": "support" + }, + { + "id": "100312025680783620", + "summonerName": "Kinzu", + "firstName": "Peter ", + "lastName": "Thomsen", + "image": "https://static.lolesports.com/players/download.png", + "role": "bottom" + }, + { + "id": "100312025682451136", + "summonerName": "Toxicity", + "firstName": "Gleb ", + "lastName": "Fedorov", + "image": "https://static.lolesports.com/players/download.png", + "role": "jungle" + }, + { + "id": "100312143604938695", + "summonerName": "Paranoia", + "firstName": "Ivan", + "lastName": "Tipukhov", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/paranoia-5iypjq0s.png", + "role": "mid" + }, + { + "id": "100312143593848389", + "summonerName": "Taikki", + "firstName": "Arttu", + "lastName": "Sirkka", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/taikki-bvhmd6l0.png", + "role": "jungle" + } + ] + }, + { + "id": "100289931265914728", + "slug": "vikings-gaming", + "name": "Vikings Gaming", + "code": "VK1", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/vikings-gaming-ayhe47n0.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/vikings-gaming-1bg3k6ab.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "VCS", + "region": "VIETNAM" + }, + "players": [ + { + "id": "112880372381731252", + "summonerName": "Ben01", + "firstName": "Ben", + "lastName": "Ben", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + } + ] + }, + { + "id": "100325358060092847", + "slug": "cblol-rift-rivals", + "name": "CBLoL", + "code": "BR", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/cblol-rift-rivals-bkwpbjju.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/cblol-rift-rivals-651nmf2k.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "99124844332144902", + "summonerName": "Revolta", + "firstName": "Gabriel", + "lastName": "Henud", + "image": "http://static.lolesports.com/players/Revoltacopy.png", + "role": "jungle" + }, + { + "id": "99566407757538560", + "summonerName": "Zantins", + "firstName": "Luccas", + "lastName": "Zanqueta", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/zantins-fhphu0u4.png", + "role": "top" + }, + { + "id": "99566407759602626", + "summonerName": "Yang0", + "firstName": "Felipe", + "lastName": "Zhao", + "image": "http://static.lolesports.com/players/1593470978464_Yangcopy.png", + "role": "top" + }, + { + "id": "99566407760687077", + "summonerName": "micaO", + "firstName": "Micael", + "lastName": "Rodrigues", + "image": "http://static.lolesports.com/players/1717083162150_micaO-1copy.png", + "role": "bottom" + }, + { + "id": "99566407761485008", + "summonerName": "tockerssss", + "firstName": "Gabriel", + "lastName": "Claumann", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/tockers-blmrihjs.png", + "role": "mid" + }, + { + "id": "99566407771166805", + "summonerName": "Ranger", + "firstName": "Filipe", + "lastName": "Brombilla", + "image": "http://static.lolesports.com/players/1686348033728_Ranger.png", + "role": "jungle" + }, + { + "id": "99566407762355869", + "summonerName": "Jockster", + "firstName": "Luan", + "lastName": "Cardoso", + "image": "http://static.lolesports.com/players/1705515638883_Silhueta1.png", + "role": "support" + }, + { + "id": "99566407779994236", + "summonerName": "Riyev", + "firstName": "Marcelo", + "lastName": "Carrara", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/riyev-7wr4mlya.png", + "role": "support" + }, + { + "id": "99566407782924807", + "summonerName": "dyNquedo", + "firstName": "Matheus", + "lastName": "Rossini", + "image": "http://static.lolesports.com/players/1737724737672_image630.png", + "role": "mid" + }, + { + "id": "99566407783597200", + "summonerName": "TitaN", + "firstName": "Alexandre", + "lastName": "Lima", + "image": "http://static.lolesports.com/players/1737725000079_image632.png", + "role": "bottom" + } + ] + }, + { + "id": "100325358063181170", + "slug": "cls-rift-rivals", + "name": "CLS", + "code": "LAS", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/cls-rift-rivals-gspsog5k.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/cls-rift-rivals-58y92h6a.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "99566408310768239", + "summonerName": "WARANGELUS", + "firstName": "Fabián", + "lastName": "Llanos", + "image": "http://static.lolesports.com/players/1654805347836_EMP.png", + "role": "bottom" + }, + { + "id": "99566408317679525", + "summonerName": "Rakyz", + "firstName": "Vicente", + "lastName": "Trautmann", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/rakyz-fol9llqw.png", + "role": "mid" + }, + { + "id": "98767975976872712", + "summonerName": "Slow", + "firstName": "Eduardo", + "lastName": "Garcés", + "image": "http://static.lolesports.com/players/1657746339799_EMP.png", + "role": "support" + }, + { + "id": "98767975897388734", + "summonerName": "Tierwulf", + "firstName": "Sebastían", + "lastName": "Mateluna", + "image": "http://static.lolesports.com/players/ISG-Tierwulf.png", + "role": "jungle" + }, + { + "id": "98767975899151101", + "summonerName": "Plugo", + "firstName": "Joaquín", + "lastName": "Pérez", + "image": "http://static.lolesports.com/players/1654805380708_EMP.png", + "role": "mid" + }, + { + "id": "99566408324263362", + "summonerName": " lukasnegro", + "firstName": "Lukas Matias", + "lastName": "Vegas", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/-lukasnegro-8rwv491w.png", + "role": "top" + }, + { + "id": "99566408332960781", + "summonerName": "Rod", + "firstName": "Rodrigo", + "lastName": "Altieri", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/rod-cxumkym1.png", + "role": "jungle" + }, + { + "id": "98767975936723214", + "summonerName": "Fix", + "firstName": "Nicolás", + "lastName": "Sayago", + "image": "http://static.lolesports.com/players/1645226566152_Fix-9.png", + "role": "bottom" + }, + { + "id": "99566408342799240", + "summonerName": "Nate", + "firstName": "Damian", + "lastName": "Rea", + "image": "http://static.lolesports.com/players/1654805311088_EMP.png", + "role": "top" + }, + { + "id": "99566408349093642", + "summonerName": "Shadow", + "firstName": "Facundo", + "lastName": "Cuello", + "image": "http://static.lolesports.com/players/1674669103833_EMP.png", + "role": "support" + } + ] + }, + { + "id": "100325358065202841", + "slug": "lln-rift-rivals", + "name": "LLN", + "code": "LAN", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/lln-rift-rivals-bv1r463r.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/lln-rift-rivals-3gpaj4ei.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [] + }, + { + "id": "100633870260870484", + "slug": "pars-espor-kulubu", + "name": "Pars eSpor Kulübü", + "code": "PRS1", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/pars-espor-kulubu-hkinzuzs.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/pars-espor-kulubu-jau3i95.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "99566405653327827", + "summonerName": "Crystal", + "firstName": "Atakan", + "lastName": "Aydın", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/crystal-7z929ijl.png", + "role": "jungle" + }, + { + "id": "100633870188005336", + "summonerName": "Lethenor", + "firstName": "Mustafa Bahadır", + "lastName": "Uludağ", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/lethenor-207a8kys.png", + "role": "jungle" + }, + { + "id": "100633870186289423", + "summonerName": "Alive", + "firstName": " Jin-uk", + "lastName": "Noh", + "image": "http://static.lolesports.com/players/1758212214082_alive.png", + "role": "bottom" + } + ] + }, + { + "id": "100725845018863243", + "slug": "dwg-kia", + "name": "Dplus KIA", + "code": "DK", + "image": "http://static.lolesports.com/teams/1673260049703_DPlusKIALOGO11.png", + "alternativeImage": "http://static.lolesports.com/teams/1673260049704_DPlusKIALOGO2.png", + "backgroundImage": "http://static.lolesports.com/teams/DamwonGamingDWG.png", + "status": "active", + "homeLeague": { + "name": "LCK", + "region": "KOREA" + }, + "players": [ + { + "id": "100725844988653773", + "summonerName": "ShowMaker", + "firstName": "Su", + "lastName": "Heo", + "image": "http://static.lolesports.com/players/1758213970807_showmaker.png", + "role": "mid" + }, + { + "id": "114697949393287385", + "summonerName": "Nevid", + "firstName": "Minwoo", + "lastName": "Park", + "image": "http://static.lolesports.com/players/1758213649516_nevid.png", + "role": "top" + }, + { + "id": "106267599829820917", + "summonerName": "Lucid", + "firstName": "Yonghyeok", + "lastName": "Choi", + "image": "http://static.lolesports.com/players/1758213578050_lucid.png", + "role": "jungle" + }, + { + "id": "111658291900451423", + "summonerName": "Sharvel", + "firstName": "Kim", + "lastName": "Danwoo", + "image": "http://static.lolesports.com/players/1758213957768_sharvel.png", + "role": "jungle" + }, + { + "id": "111658292064356964", + "summonerName": "Siwoo", + "firstName": "Jeon", + "lastName": "Siwoo", + "image": "http://static.lolesports.com/players/1758213983369_siwoo.png", + "role": "top" + }, + { + "id": "105501707243664614", + "summonerName": "Wayne", + "firstName": "Seohyeon", + "lastName": "Hwang", + "image": "http://static.lolesports.com/players/1758214310091_wayne.png", + "role": "bottom" + }, + { + "id": "108205129774185945", + "summonerName": "Smash", + "firstName": "Gunmjae", + "lastName": "Sin", + "image": "http://static.lolesports.com/players/1758214017059_smash.png", + "role": "bottom" + }, + { + "id": "108284721867904137", + "summonerName": "Career", + "firstName": "HyungSuk", + "lastName": "Oh", + "image": "http://static.lolesports.com/players/1758212463189_career.png", + "role": "support" + }, + { + "id": "107492028745476512", + "summonerName": "Loopy", + "firstName": "Donghyeon", + "lastName": "Kim", + "image": "http://static.lolesports.com/players/1754473911897_image6526.png", + "role": "support" + }, + { + "id": "113543956179181753", + "summonerName": "Jaehyuk", + "firstName": "Jaehyuk", + "lastName": "Kwon", + "image": "http://static.lolesports.com/players/1758213344720_jaehyuk.png", + "role": "top" + }, + { + "id": "112822770322732675", + "summonerName": "Garden", + "firstName": "Jeongwon", + "lastName": "Seol", + "image": "http://static.lolesports.com/players/1758213201923_garned.png", + "role": "mid" + } + ] + }, + { + "id": "100725845022060229", + "slug": "fearx", + "name": "BNK FEARX", + "code": "BFX", + "image": "http://static.lolesports.com/teams/1734691810721_BFXfullcolorfordarkbg.png", + "alternativeImage": "http://static.lolesports.com/teams/1734691810721_BFXfullcolorfordarkbg.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCK", + "region": "KOREA" + }, + "players": [ + { + "id": "105501715923396261", + "summonerName": "VicLa", + "firstName": "Deakwang", + "lastName": "Lee", + "image": "http://static.lolesports.com/players/1758214202499_vicla.png", + "role": "mid" + }, + { + "id": "101388913291808185", + "summonerName": "Kellin", + "firstName": "Hyeonggyu", + "lastName": "Kim", + "image": "http://static.lolesports.com/players/1758213403226_kellin.png", + "role": "support" + }, + { + "id": "110660139298018837", + "summonerName": "Kangin", + "firstName": "Kangin", + "lastName": "Choi", + "image": "http://static.lolesports.com/players/1758213384949_kangin.png", + "role": "top" + }, + { + "id": "112489761307532435", + "summonerName": "Zephyr", + "firstName": "Hyeoksu", + "lastName": "Hwang", + "image": "http://static.lolesports.com/players/1718370907973_CL_DRX_Zephyr_784.png", + "role": "jungle" + }, + { + "id": "105501850450507181", + "summonerName": "FIESTA", + "firstName": "Hyeonseo", + "lastName": "Ahn", + "image": "http://static.lolesports.com/players/1717747316436_fiesta.png", + "role": "mid" + }, + { + "id": "111521895921812004", + "summonerName": "Slayer", + "firstName": "Kim", + "lastName": "Jinyoung", + "image": "http://static.lolesports.com/players/1758213995655_slayer.png", + "role": "bottom" + }, + { + "id": "112518918607721192", + "summonerName": "Luon", + "firstName": "Hyunho", + "lastName": "Lee", + "image": "http://static.lolesports.com/players/1744279331170_CHF_Luon.png", + "role": "support" + }, + { + "id": "109523135356383683", + "summonerName": "Diable", + "firstName": "Nam", + "lastName": "Daegeun", + "image": "http://static.lolesports.com/players/1758213034126_diable.png", + "role": "bottom" + }, + { + "id": "109675673940491206", + "summonerName": "Daystar", + "firstName": "Ji-Myeong", + "lastName": "Yoo", + "image": "http://static.lolesports.com/players/1758212856310_daystart.png", + "role": "mid" + }, + { + "id": "107492130895812257", + "summonerName": "Raptor", + "firstName": "Eojin", + "lastName": "Jeon", + "image": "http://static.lolesports.com/players/1758213857139_raptor.png", + "role": "jungle" + }, + { + "id": "105501790021137688", + "summonerName": "Clear", + "firstName": "Hyunmin", + "lastName": "Song", + "image": "http://static.lolesports.com/players/1758212563732_clear.png", + "role": "top" + } + ] + }, + { + "id": "100783238110621058", + "slug": "dashing-buffalo", + "name": "Dashing Buffalo", + "code": "DBL", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/phong-vu-buffalo-qwr4rud.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/phong-vu-buffalo-w4ppp8t.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "VCS", + "region": "VIETNAM" + }, + "players": [ + { + "id": "112880372381731252", + "summonerName": "Ben01", + "firstName": "Ben", + "lastName": "Ben", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + } + ] + }, + { + "id": "101157821332338403", + "slug": "qtz", + "name": "QTZ", + "code": "VN1", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/qtz-2z2wtzee.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/qtz-1ckjui92.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "101196431343757395", + "summonerName": "QTV", + "firstName": "Tran Tuong Vu", + "lastName": "Nguyen", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/qtv-ht5nprxj.png", + "role": "top" + }, + { + "id": "100787602257283436", + "summonerName": "Zeros", + "firstName": "Minh Loc", + "lastName": "Pham", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/zeros-4keddu17.png", + "role": "top" + } + ] + }, + { + "id": "101157821333452517", + "slug": "dumbletoru", + "name": "dumbletoru", + "code": "TR1", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/dumbletoru-91ft3run.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/dumbletoru-a5b4g7x6.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "99566406026977706", + "summonerName": "Dumbledoge", + "firstName": "Mustafa Kemal", + "lastName": "Gökseloğlu", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/dumbledoge-g1mch0k4.png", + "role": "support" + }, + { + "id": "101196431339890762", + "summonerName": "Immortoru", + "firstName": "Furkan", + "lastName": "Tekeş", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/immortoru-fu8ilzbp.png", + "role": "mid" + } + ] + }, + { + "id": "101157821334501095", + "slug": "cerostanmi", + "name": "CeroStanmi", + "code": "JP1", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/cerostanmi-fuo4hnpa.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/cerostanmi-gtmpoub7.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "100285330141230212", + "summonerName": "Ceros", + "firstName": "Kyohei ", + "lastName": "Yoshida", + "image": "http://static.lolesports.com/players/1632939757807_dfm-ceros-w21.png", + "role": "mid" + } + ] + }, + { + "id": "101157821336139497", + "slug": "diamondflash", + "name": "Diamondflash", + "code": "CIS1", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/diamondflash-hkyt9ulr.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/diamondflash-czvufosj.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "98767991750309549", + "summonerName": "Diamondprox", + "firstName": "Danil", + "lastName": "Reshetnikov", + "image": "http://static.lolesports.com/players/Diamondproxcopy.png", + "role": "jungle" + }, + { + "id": "101196442904461047", + "summonerName": "FlashInTheNight", + "firstName": " ", + "lastName": " ", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/flashinthenight-dblpi53l.png", + "role": "top" + } + ] + }, + { + "id": "101157821337188075", + "slug": "guanzi", + "name": "Guanzi", + "code": "LPL1", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/guanzi-dztf5tvt.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/guanzi-efj76lfm.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "98767991763297584", + "summonerName": "Uzi", + "firstName": "Zihao", + "lastName": "Jian", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/uzi-h5yaq040.png", + "role": "bottom" + } + ] + }, + { + "id": "101157821338236653", + "slug": "doubleboy", + "name": "Doubleboy", + "code": "NA1", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/doubleboy-62ibyzp2.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/doubleboy-9o7xvfdo.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "98767991769705572", + "summonerName": "Doublelift", + "firstName": "Yiliang", + "lastName": "Peng", + "image": "http://static.lolesports.com/players/1674831000903_100_DOUBLELIFT.png", + "role": "bottom" + }, + { + "id": "101196442875625194", + "summonerName": "Voyboy", + "firstName": "Joedat", + "lastName": "Esfahani", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/voyboy-35qifbhc.png", + "role": "mid" + } + ] + }, + { + "id": "101157821339285231", + "slug": "seiyamaster", + "name": "Seiyamaster", + "code": "LAN1", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/seiyamaster-gfcbqr5k.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/seiyamaster-g7b88k0w.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [] + }, + { + "id": "101157821340399345", + "slug": "rookxi-luo", + "name": "RookXi Luo", + "code": "LPL2", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/rookxi-luo-bp466wdd.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/rookxi-luo-i16ws12b.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "99566404811346612", + "summonerName": "Rookie", + "firstName": "Ui-jin", + "lastName": "Song", + "image": "http://static.lolesports.com/players/1753279186351_image638.png", + "role": "mid" + } + ] + }, + { + "id": "101157821341382387", + "slug": "capriwulf", + "name": "Capriwulf", + "code": "LAS1", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/capriwulf-f9ow2ax2.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/capriwulf-bjsvcta9.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "98767975897388734", + "summonerName": "Tierwulf", + "firstName": "Sebastían", + "lastName": "Mateluna", + "image": "http://static.lolesports.com/players/ISG-Tierwulf.png", + "role": "jungle" + } + ] + }, + { + "id": "101157821342365429", + "slug": "shiporice", + "name": "Shiporice", + "code": "NA2", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/shiporice-a9shusfb.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/shiporice-gnzfy9ms.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "101196466443266155", + "summonerName": "Shiphtur", + "firstName": "Danny", + "lastName": "Le", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/shiphtur-592aplau.png", + "role": "support" + }, + { + "id": "98926509838831804", + "summonerName": "Licorice", + "firstName": "Eric", + "lastName": "Ritchie", + "image": "http://static.lolesports.com/players/1739478991789_ggsdgs6.png", + "role": "top" + } + ] + }, + { + "id": "101157821343545079", + "slug": "east-1", + "name": "East 1", + "code": "EVS1", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/east-1-5pxs62pv.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/east-1-9z4vrgon.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "99566404811346612", + "summonerName": "Rookie", + "firstName": "Ui-jin", + "lastName": "Song", + "image": "http://static.lolesports.com/players/1753279186351_image638.png", + "role": "mid" + }, + { + "id": "98767975944639514", + "summonerName": "Evi", + "firstName": "Shunsuke", + "lastName": "Murase", + "image": "http://static.lolesports.com/players/1744279845866_SHG_Evi.png", + "role": "top" + }, + { + "id": "100787602257283436", + "summonerName": "Zeros", + "firstName": "Minh Loc", + "lastName": "Pham", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/zeros-4keddu17.png", + "role": "top" + } + ] + }, + { + "id": "101157821344593657", + "slug": "east-2", + "name": "East 2", + "code": "EVS2", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/east-2-s41rm2l.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/east-2-9rqyl8lg.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [] + }, + { + "id": "101157821345642235", + "slug": "east-3", + "name": "East 3", + "code": "EVS3", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/east-3-78gen7as.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/east-3-8zk7lnk8.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "98767991747728851", + "summonerName": "Faker", + "firstName": "Sanghyeok", + "lastName": "Lee", + "image": "http://static.lolesports.com/players/1758213169113_faker.png", + "role": "mid" + }, + { + "id": "98767975913610880", + "summonerName": "Mlxg", + "firstName": "Shiyu", + "lastName": "Liu", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/mlxg-ar14580m.png", + "role": "jungle" + }, + { + "id": "100285330141230212", + "summonerName": "Ceros", + "firstName": "Kyohei ", + "lastName": "Yoshida", + "image": "http://static.lolesports.com/players/1632939757807_dfm-ceros-w21.png", + "role": "mid" + } + ] + }, + { + "id": "101157821346559741", + "slug": "west-1", + "name": "West 1", + "code": "WVS1", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/west-1-5542o982.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/west-1-91125i7r.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "98767991750309549", + "summonerName": "Diamondprox", + "firstName": "Danil", + "lastName": "Reshetnikov", + "image": "http://static.lolesports.com/players/Diamondproxcopy.png", + "role": "jungle" + }, + { + "id": "98767975932190334", + "summonerName": "Kiraxx", + "firstName": "Mikhail", + "lastName": "Harmash", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/kira-1hbq8qmj.png", + "role": "mid" + }, + { + "id": "98767975966749981", + "summonerName": "Broxah", + "firstName": "Mads", + "lastName": "Brock-Pedersen", + "image": "http://static.lolesports.com/players/clg-broxah-2021.png", + "role": "jungle" + } + ] + }, + { + "id": "101157821347608319", + "slug": "west-2", + "name": "West 2", + "code": "WVS2", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/west-2-2dkqa1tt.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/west-2-cen8n2vw.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "98767991766960790", + "summonerName": "Sneaky", + "firstName": "Zachary", + "lastName": "Scuderi", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/sneaky-gizgdotm.png", + "role": "bottom" + }, + { + "id": "98767991769705572", + "summonerName": "Doublelift", + "firstName": "Yiliang", + "lastName": "Peng", + "image": "http://static.lolesports.com/players/1674831000903_100_DOUBLELIFT.png", + "role": "bottom" + }, + { + "id": "99124844334208030", + "summonerName": "brTT", + "firstName": "Felipe", + "lastName": "Gonçalves", + "image": "http://static.lolesports.com/players/1717084128949_brTT.png", + "role": "bottom" + }, + { + "id": "98767975897388734", + "summonerName": "Tierwulf", + "firstName": "Sebastían", + "lastName": "Mateluna", + "image": "http://static.lolesports.com/players/ISG-Tierwulf.png", + "role": "jungle" + } + ] + }, + { + "id": "101157821348656897", + "slug": "west-3", + "name": "West 3", + "code": "WVS3", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/west-3-98tuzfb4.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/west-3-86u7818m.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "99566406026977706", + "summonerName": "Dumbledoge", + "firstName": "Mustafa Kemal", + "lastName": "Gökseloğlu", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/dumbledoge-g1mch0k4.png", + "role": "support" + }, + { + "id": "99322214647978964", + "summonerName": "Jiizuke", + "firstName": "Daniele", + "lastName": "di Mauro", + "image": "http://static.lolesports.com/players/eg-jiizuke-2021.png", + "role": "mid" + } + ] + }, + { + "id": "101157821349705475", + "slug": "cn-with-influencers", + "name": "CN with Influencers", + "code": "CNWI", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/cn-with-influencers-3jnpo379.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/cn-with-influencers-5zohu1k4.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "98767991763297584", + "summonerName": "Uzi", + "firstName": "Zihao", + "lastName": "Jian", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/uzi-h5yaq040.png", + "role": "bottom" + }, + { + "id": "98919615886908781", + "summonerName": "Fireloli", + "firstName": " ", + "lastName": " ", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/fireloli-darlssih.png", + "role": "jungle" + }, + { + "id": "99566404815792265", + "summonerName": "Doinb", + "firstName": "Tae-sang", + "lastName": "Kim", + "image": "http://static.lolesports.com/players/1753284142381_image6412.png", + "role": "mid" + }, + { + "id": "99566404801911713", + "summonerName": "cat", + "firstName": " ", + "lastName": " ", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/cat-7ji6qgtw.png", + "role": "support" + }, + { + "id": "99566404820654675", + "summonerName": "Tian", + "firstName": "Tian-Liang", + "lastName": "Gao", + "image": "http://static.lolesports.com/players/1753285999185_image6316.png", + "role": "jungle" + } + ] + }, + { + "id": "101157821352457994", + "slug": "kr-with-influencers", + "name": "KR with Influencers", + "code": "KRWI", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/kr-with-influencers-6zfof56z.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/kr-with-influencers-8foym95f.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "98767991747728851", + "summonerName": "Faker", + "firstName": "Sanghyeok", + "lastName": "Lee", + "image": "http://static.lolesports.com/players/1758213169113_faker.png", + "role": "mid" + }, + { + "id": "98767975916458257", + "summonerName": "Peanut", + "firstName": "Wangho ", + "lastName": "Han", + "image": "http://static.lolesports.com/players/1758213712978_peanut.png", + "role": "jungle" + }, + { + "id": "98926509781762959", + "summonerName": "MadLife", + "firstName": "Mingi", + "lastName": "Hong", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/madlife-ftt9xs0t.png", + "role": "support" + }, + { + "id": "99566404797900723", + "summonerName": "Clid", + "firstName": "Taemin", + "lastName": "Kim", + "image": "http://static.lolesports.com/players/1686474569651_HLE_Clid.png", + "role": "jungle" + }, + { + "id": "103241395129820951", + "summonerName": "NaRaKyle", + "firstName": " ", + "lastName": " ", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/narakyle-ewx508ui.png", + "role": "top" + } + ] + }, + { + "id": "101157821382267957", + "slug": "sneaky", + "name": "Sneaky", + "code": "NA2", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/sneaky-bekd4pdq.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/sneaky-m03yfwj.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "98767991766960790", + "summonerName": "Sneaky", + "firstName": "Zachary", + "lastName": "Scuderi", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/sneaky-gizgdotm.png", + "role": "bottom" + } + ] + }, + { + "id": "101157821384037431", + "slug": "doublelift", + "name": "Doublelift", + "code": "NA2", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/doublelift-egkdw2el.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/doublelift-ijewpmwe.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [] + }, + { + "id": "101157821385741369", + "slug": "licorice", + "name": "Licorice", + "code": "NA3", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/licorice-osowfge.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/licorice-f1erix8b.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [] + }, + { + "id": "101157821387445307", + "slug": "caps", + "name": "Caps", + "code": "EU1", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/caps-iv6opqa0.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/caps-jlf21jrv.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "98767975968177297", + "summonerName": "Caps", + "firstName": "Rasmus", + "lastName": "Borregaard Winther", + "image": "http://static.lolesports.com/players/1754470297805_image6227.png", + "role": "bottom" + } + ] + }, + { + "id": "101157821389149245", + "slug": "broxah", + "name": "Broxah", + "code": "EU2", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/broxah-1pvcgamx.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/broxah-48vudr8y.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [] + }, + { + "id": "101157821390787647", + "slug": "jiizuke", + "name": "Jiizuke", + "code": "EU3", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/jiizuke-5juqqu6o.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/jiizuke-6ccyakv3.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [] + }, + { + "id": "101157821392491585", + "slug": "mlxg", + "name": "mlxg", + "code": "LPL1", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/mlxg-ahr7v7tg.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/mlxg-czmz34dc.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [] + }, + { + "id": "101157821394195523", + "slug": "rookie", + "name": "Rookie", + "code": "LPL2", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/rookie-du4i0tmm.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/rookie-i5gotbxz.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [] + }, + { + "id": "101157821395833925", + "slug": "uzi", + "name": "Uzi", + "code": "CN3", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/uzi-f8vk0g1s.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/uzi-ind6i89x.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "98767991763297584", + "summonerName": "Uzi", + "firstName": "Zihao", + "lastName": "Jian", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/uzi-h5yaq040.png", + "role": "bottom" + } + ] + }, + { + "id": "101157821397865543", + "slug": "faker", + "name": "Faker", + "code": "KR1", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/faker-2fbnzfc8.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/faker-fh382hak.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "98767991747728851", + "summonerName": "Faker", + "firstName": "Sanghyeok", + "lastName": "Lee", + "image": "http://static.lolesports.com/players/1758213169113_faker.png", + "role": "mid" + } + ] + }, + { + "id": "101157821399635017", + "slug": "bang", + "name": "Bang", + "code": "NA1", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/bang-asaba3dk.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/bang-bxdmswy9.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [] + }, + { + "id": "101157821401338955", + "slug": "peanut", + "name": "Peanut", + "code": "KR3", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/peanut-ce1i1yla.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/peanut-4f2coqfi.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "98767975916458257", + "summonerName": "Peanut", + "firstName": "Wangho ", + "lastName": "Han", + "image": "http://static.lolesports.com/players/1758213712978_peanut.png", + "role": "jungle" + } + ] + }, + { + "id": "101157821403042893", + "slug": "maple", + "name": "Maple", + "code": "LMS1", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/maple-387a72ow.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/maple-afw8bnlo.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [] + }, + { + "id": "101157821404812367", + "slug": "westdoor", + "name": "Westdoor", + "code": "LMS2", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/westdoor-6nl0nz49.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/westdoor-9bemc0nx.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [] + }, + { + "id": "101157821406581841", + "slug": "brokenblade", + "name": "BrokenBlade", + "code": "TR1", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/brokenblade-7jowrbb9.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/brokenblade-81cmig9o.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [] + }, + { + "id": "101157821408285779", + "slug": "dumbledoge", + "name": "Dumbledoge", + "code": "TR2", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/dumbledoge-27v29vjz.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/dumbledoge-98g22bqe.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [] + }, + { + "id": "101157821410055253", + "slug": "brtt", + "name": "BrTT", + "code": "BR1", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/brtt-3uy12t0t.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/brtt-aeu864fh.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [] + }, + { + "id": "101157821411759191", + "slug": "rakin", + "name": "Rakin", + "code": "BR2", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/rakin-9gkvzv6l.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/rakin-c0dw0kmg.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [] + }, + { + "id": "101157821413528665", + "slug": "kira", + "name": "Kira", + "code": "CIS1", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/kira-iwbu5ymq.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/kira-icqjnld4.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [] + }, + { + "id": "101157821415363675", + "slug": "diamondprox", + "name": "Diamondprox", + "code": "CIS2", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/diamondprox-enfg252a.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/diamondprox-enfg252a.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [] + }, + { + "id": "101157821417067613", + "slug": "g4", + "name": "G4", + "code": "LST2", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/g4-2uumxvol.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/g4-5zobn3hv.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "100205572949580614", + "summonerName": "G4", + "firstName": "Nuttapong", + "lastName": "Menkasikan", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/g4-h63dhpkv.png", + "role": "mid" + } + ] + }, + { + "id": "101157821418837087", + "slug": "rockky", + "name": "Rockky", + "code": "SEA2", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/rockky-1wl4upe.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/rockky-i9vh81ve.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [] + }, + { + "id": "101157821420541025", + "slug": "artifact", + "name": "Artifact", + "code": "VN1", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/artifact-8hv79f49.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/artifact-jc0zpxyn.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [] + }, + { + "id": "101157821422244963", + "slug": "zeros", + "name": "Zeros", + "code": "VN2", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/zeros-1vqh9nbv.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/zeros-a4xa7rs5.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [] + }, + { + "id": "101157821423948901", + "slug": "tierwulf", + "name": "Tierwulf", + "code": "LAS1", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/tierwulf-9gcnxzxr.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/tierwulf-i9rnwa.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [] + }, + { + "id": "101157821425652839", + "slug": "plugo", + "name": "Plugo", + "code": "LLA1", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/plugo-ddfpfznp.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/plugo-8yj5xatt.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "98767975899151101", + "summonerName": "Plugo", + "firstName": "Joaquín", + "lastName": "Pérez", + "image": "http://static.lolesports.com/players/1654805380708_EMP.png", + "role": "mid" + } + ] + }, + { + "id": "101157821427356777", + "slug": "seiya", + "name": "Seiya", + "code": "LLA2", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/seiya-1v1ni2gp.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/seiya-8eb02ppa.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [] + }, + { + "id": "101157821429060715", + "slug": "arce", + "name": "Arce", + "code": "LAN2", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/arce-5xf4sd13.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/arce-d0qa5942.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [] + }, + { + "id": "101157821430895725", + "slug": "evi", + "name": "Evi", + "code": "JP1", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/evi-8arae00y.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/evi-5e832nqw.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "98767975944639514", + "summonerName": "Evi", + "firstName": "Shunsuke", + "lastName": "Murase", + "image": "http://static.lolesports.com/players/1744279845866_SHG_Evi.png", + "role": "top" + } + ] + }, + { + "id": "101157821432665199", + "slug": "ceros", + "name": "Ceros", + "code": "JP2", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/ceros-dmokiwui.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/ceros-6ltnuglr.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "100285330141230212", + "summonerName": "Ceros", + "firstName": "Kyohei ", + "lastName": "Yoshida", + "image": "http://static.lolesports.com/players/1632939757807_dfm-ceros-w21.png", + "role": "mid" + } + ] + }, + { + "id": "101157821434369137", + "slug": "pabu", + "name": "Pabu", + "code": "OCE2", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/pabu-bpmiqn1i.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/pabu-ec12jots.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [] + }, + { + "id": "101157821436073075", + "slug": "triple", + "name": "Triple", + "code": "OCE2", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/triple-7mbji4tg.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/triple-f2u75jlp.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [] + }, + { + "id": "101157821437777013", + "slug": "na-with-influencers", + "name": "NA with Influencers", + "code": "NAWI", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/na-with-influencers-hur5at5x.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/na-with-influencers-5ga4fakq.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "98767991766960790", + "summonerName": "Sneaky", + "firstName": "Zachary", + "lastName": "Scuderi", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/sneaky-gizgdotm.png", + "role": "bottom" + }, + { + "id": "98767991789638893", + "summonerName": "CoreJJ", + "firstName": "Yongin", + "lastName": "Jo", + "image": "http://static.lolesports.com/players/1726214772049_TL_1500x1500_COREJJ_03.png", + "role": "support" + }, + { + "id": "103241300684286596", + "summonerName": "Tyler1", + "firstName": " ", + "lastName": " ", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/tyler1-j4ysvnf6.png", + "role": "bottom" + }, + { + "id": "103241300685466246", + "summonerName": "Yassuo", + "firstName": " ", + "lastName": " ", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/yassuo-7jq30aoy.png", + "role": "mid" + } + ] + }, + { + "id": "101157821440857212", + "slug": "eu-with-influencers", + "name": "EU with Influencers", + "code": "EUWI", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/eu-with-influencers-eqi1f1pg.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/eu-with-influencers-5pd3a0bi.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "99124844325223302", + "summonerName": "Jankos", + "firstName": "Marcin", + "lastName": "Jankowski", + "image": "http://static.lolesports.com/players/1705027140986_jankos.png", + "role": "jungle" + }, + { + "id": "98767975968177297", + "summonerName": "Caps", + "firstName": "Rasmus", + "lastName": "Borregaard Winther", + "image": "http://static.lolesports.com/players/1754470297805_image6227.png", + "role": "bottom" + }, + { + "id": "99322214662601038", + "summonerName": "Bwipo", + "firstName": "Gabriel", + "lastName": "Rau", + "image": "http://static.lolesports.com/players/1726214520661_FLY_1500x1500_BWIPO_01.png", + "role": "top" + }, + { + "id": "101157821365097517", + "summonerName": "Noway", + "firstName": " Frederik", + "lastName": " Hinteregger", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/noway4u-a7d9nhe0.png", + "role": "support" + }, + { + "id": "103241300686842504", + "summonerName": "Nervarien", + "firstName": " ", + "lastName": " ", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/nervarien-3cp6rh3k.png", + "role": "top" + } + ] + }, + { + "id": "101157821444002947", + "slug": "nexus-blitz-pro-a", + "name": "Nexus Blitz Blue", + "code": "NXB", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/nexus-blitz-pro-a-esrcx58b.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/nexus-blitz-pro-a-3w3j1cwx.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "98767991747728851", + "summonerName": "Faker", + "firstName": "Sanghyeok", + "lastName": "Lee", + "image": "http://static.lolesports.com/players/1758213169113_faker.png", + "role": "mid" + }, + { + "id": "98926509838831804", + "summonerName": "Licorice", + "firstName": "Eric", + "lastName": "Ritchie", + "image": "http://static.lolesports.com/players/1739478991789_ggsdgs6.png", + "role": "top" + } + ] + }, + { + "id": "101157821447017610", + "slug": "nexus-blitz-pro-b", + "name": "Nexus Blitz Red", + "code": "NXR", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/nexus-blitz-pro-b-j6s80wmi.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/nexus-blitz-pro-b-kjtp467.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "98767991763297584", + "summonerName": "Uzi", + "firstName": "Zihao", + "lastName": "Jian", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/uzi-h5yaq040.png", + "role": "bottom" + }, + { + "id": "98767975897388734", + "summonerName": "Tierwulf", + "firstName": "Sebastían", + "lastName": "Mateluna", + "image": "http://static.lolesports.com/players/ISG-Tierwulf.png", + "role": "jungle" + }, + { + "id": "99322214647978964", + "summonerName": "Jiizuke", + "firstName": "Daniele", + "lastName": "di Mauro", + "image": "http://static.lolesports.com/players/eg-jiizuke-2021.png", + "role": "mid" + }, + { + "id": "100787602257283436", + "summonerName": "Zeros", + "firstName": "Minh Loc", + "lastName": "Pham", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/zeros-4keddu17.png", + "role": "top" + } + ] + }, + { + "id": "101157821450163345", + "slug": "nexus-blitz-influencers-a", + "name": "Nexus Blitz Influencers A", + "code": "NBIA", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/nexus-blitz-influencers-a-eo4u5jls.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/nexus-blitz-influencers-a-6jgp5b9k.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "98767991743904781", + "summonerName": "Westdoor", + "firstName": "Shu-Wei", + "lastName": "Liu", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/westdoor-ivrqwc5v.png", + "role": "jungle" + }, + { + "id": "98767975916458257", + "summonerName": "Peanut", + "firstName": "Wangho ", + "lastName": "Han", + "image": "http://static.lolesports.com/players/1758213712978_peanut.png", + "role": "jungle" + } + ] + }, + { + "id": "101157821453178008", + "slug": "nexus-blitz-influencers-b", + "name": "Nexus Blitz Influencers B", + "code": "NBIB", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/nexus-blitz-influencers-b-dkvjz98n.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/nexus-blitz-influencers-b-2zgjn0rq.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "98767991766960790", + "summonerName": "Sneaky", + "firstName": "Zachary", + "lastName": "Scuderi", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/sneaky-gizgdotm.png", + "role": "bottom" + }, + { + "id": "98919615886908781", + "summonerName": "Fireloli", + "firstName": " ", + "lastName": " ", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/fireloli-darlssih.png", + "role": "jungle" + }, + { + "id": "99566404811346612", + "summonerName": "Rookie", + "firstName": "Ui-jin", + "lastName": "Song", + "image": "http://static.lolesports.com/players/1753279186351_image638.png", + "role": "mid" + } + ] + }, + { + "id": "101157821456258207", + "slug": "tandem-mode-a", + "name": "Tandem Mode A", + "code": "TMA", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/tandem-mode-pro-a-fzvstfic.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/tandem-mode-pro-a-gse1tw4k.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "98767991766960790", + "summonerName": "Sneaky", + "firstName": "Zachary", + "lastName": "Scuderi", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/sneaky-gizgdotm.png", + "role": "bottom" + }, + { + "id": "98767975909151256", + "summonerName": "MMD", + "firstName": "Li-Hong", + "lastName": "Yu", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/mmd-bnii398a.png", + "role": "top" + }, + { + "id": "98767975943245706", + "summonerName": "C7N", + "firstName": "Van Cuong", + "lastName": "Tran", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/optimus-2dq104sj.png", + "role": "mid" + }, + { + "id": "98767975944639514", + "summonerName": "Evi", + "firstName": "Shunsuke", + "lastName": "Murase", + "image": "http://static.lolesports.com/players/1744279845866_SHG_Evi.png", + "role": "top" + }, + { + "id": "98767975899151101", + "summonerName": "Plugo", + "firstName": "Joaquín", + "lastName": "Pérez", + "image": "http://static.lolesports.com/players/1654805380708_EMP.png", + "role": "mid" + }, + { + "id": "103241359670330734", + "summonerName": "Kane", + "firstName": " ", + "lastName": " ", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/kane-hgw62qe6.png", + "role": "top" + }, + { + "id": "103241359671444848", + "summonerName": "Duende", + "firstName": " ", + "lastName": " ", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/duende-izc72501.png", + "role": "top" + }, + { + "id": "103241359673607540", + "summonerName": "NickiTaylor", + "firstName": " ", + "lastName": " ", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/nickitaylor-84qy489q.png", + "role": "top" + }, + { + "id": "103245453148373074", + "summonerName": "Teacher Three", + "firstName": " ", + "lastName": " ", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/teacher-three-6jhogjhv.png", + "role": "top" + } + ] + }, + { + "id": "101157821458027681", + "slug": "tandem-mode-b", + "name": "Tandem Mode B", + "code": "TMB", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/tandem-mode-pro-b-ho32i31x.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/tandem-mode-pro-b-8esw206l.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "98767991795284971", + "summonerName": "Ziv", + "firstName": "Yi", + "lastName": "Chen", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/ziv-h8wtpv1f.png", + "role": "top" + }, + { + "id": "100205572949580614", + "summonerName": "G4", + "firstName": "Nuttapong", + "lastName": "Menkasikan", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/g4-h63dhpkv.png", + "role": "mid" + }, + { + "id": "103241359657682278", + "summonerName": "Melon", + "firstName": "Alexis", + "lastName": "Barrachin", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/melon-ec-gciw7erl.png", + "role": "mid" + }, + { + "id": "101978171799457579", + "summonerName": "Nomanz", + "firstName": "Lev", + "lastName": "Yakshin", + "image": "http://static.lolesports.com/players/1674553772453_G29.png", + "role": "mid" + }, + { + "id": "101196442904461047", + "summonerName": "FlashInTheNight", + "firstName": " ", + "lastName": " ", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/flashinthenight-dblpi53l.png", + "role": "top" + }, + { + "id": "101185566223045857", + "summonerName": "shuyi", + "firstName": " ", + "lastName": " ", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/zhou-shuyi-fr6adtdb.png", + "role": "mid" + }, + { + "id": "103241359672493426", + "summonerName": "xChronofox", + "firstName": " ", + "lastName": " ", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/xchronofox-ja3mn4c4.png", + "role": "top" + }, + { + "id": "103241359675704694", + "summonerName": "Annchirisu", + "firstName": " ", + "lastName": " ", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/annchirisu-fy1qymyv.png", + "role": "top" + } + ] + }, + { + "id": "101157821459731619", + "slug": "tandem-mode-c", + "name": "Tandem Mode C", + "code": "TMC", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/tandem-mode-influencers-a-invqf2n4.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/tandem-mode-influencers-a-fviqoul3.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [] + }, + { + "id": "101157821461435557", + "slug": "tandem-mode-d", + "name": "Tandem Mode D", + "code": "TMD", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/tandem-mode-influencers-b-g03tp7s7.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/tandem-mode-influencers-b-hbyju84p.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "98926509791489043", + "summonerName": "Shrimp", + "firstName": "Byeonghoon", + "lastName": "Lee", + "image": "http://static.lolesports.com/players/1717431444064_Shrimp.png", + "role": "jungle" + }, + { + "id": "98767991795284971", + "summonerName": "Ziv", + "firstName": "Yi", + "lastName": "Chen", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/ziv-h8wtpv1f.png", + "role": "top" + }, + { + "id": "103241477607204726", + "summonerName": "Stanley", + "firstName": "June-tsan", + "lastName": "Wang", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/stanley-5rwe9m6m.png", + "role": "top" + }, + { + "id": "99566408207934903", + "summonerName": "Riyuuka", + "firstName": "Mônica", + "lastName": "Arruda", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/riyuuka-jmzrwy0i.png", + "role": "support" + }, + { + "id": "99566404820654675", + "summonerName": "Tian", + "firstName": "Tian-Liang", + "lastName": "Gao", + "image": "http://static.lolesports.com/players/1753285999185_image6316.png", + "role": "jungle" + }, + { + "id": "100304452056573801", + "summonerName": "Exosen", + "firstName": "Gubatan", + "lastName": "Eric Allen", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/exosen-hl1squvt.png", + "role": "mid" + }, + { + "id": "103241477555431276", + "summonerName": "Misaya", + "firstName": " ", + "lastName": " ", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/misaya-5db1h0y5.png", + "role": "top" + }, + { + "id": "103241477570897778", + "summonerName": "Suzzysaur", + "firstName": " ", + "lastName": " ", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/suzzysaur-18q4mud9.png", + "role": "top" + } + ] + }, + { + "id": "101157821463139495", + "slug": "team-urf-a", + "name": "Team URF A", + "code": "UFA", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/team-urf-a-b6ux5wjz.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/team-urf-a-d374zyjd.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "98767991747728851", + "summonerName": "Faker", + "firstName": "Sanghyeok", + "lastName": "Lee", + "image": "http://static.lolesports.com/players/1758213169113_faker.png", + "role": "mid" + }, + { + "id": "98767975968177297", + "summonerName": "Caps", + "firstName": "Rasmus", + "lastName": "Borregaard Winther", + "image": "http://static.lolesports.com/players/1754470297805_image6227.png", + "role": "bottom" + }, + { + "id": "101422616387054298", + "summonerName": "Bolulu", + "firstName": "Onur", + "lastName": "Demirol", + "image": "http://static.lolesports.com/players/1717746686648_bolulu.png", + "role": "mid" + }, + { + "id": "103241229939878424", + "summonerName": "Jovi", + "firstName": " ", + "lastName": " ", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/jovi-4x1dlhkz.png", + "role": "top" + }, + { + "id": "103241229946563098", + "summonerName": "Qingwa", + "firstName": " ", + "lastName": " ", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/qingwa-cyypxo0n.png", + "role": "top" + } + ] + }, + { + "id": "101157821464777897", + "slug": "team-urf-b", + "name": "Team URF B", + "code": "UFB", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/team-urf-b-71vpjool.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/team-urf-b-6vihycte.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "99566407754507410", + "summonerName": "Goku", + "firstName": "Bruno", + "lastName": "Miyaguchi", + "image": "http://static.lolesports.com/players/1654466796671_Gokucopy.png", + "role": "mid" + }, + { + "id": "99566404815792265", + "summonerName": "Doinb", + "firstName": "Tae-sang", + "lastName": "Kim", + "image": "http://static.lolesports.com/players/1753284142381_image6412.png", + "role": "mid" + }, + { + "id": "98767975922221493", + "summonerName": "Ambition", + "firstName": "Chanyong", + "lastName": "Kang", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/ambition-c6ryvr2g.png", + "role": "jungle" + }, + { + "id": "101978171825868592", + "summonerName": "AHaHaCiK", + "firstName": "Kirill", + "lastName": "Skvortsov", + "image": "http://static.lolesports.com/players/1633538690711_uol-ahahacik-w21.png", + "role": "jungle" + }, + { + "id": "103241277040575564", + "summonerName": "JustJohnny", + "firstName": " ", + "lastName": " ", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/justjohnny-crv3sghn.png", + "role": "top" + } + ] + }, + { + "id": "101157821466547371", + "slug": "alexelcapso", + "name": "AlexelCapso", + "code": "EU1", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/alexelcapso-j2ed4irb.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/alexelcapso-fl435fi.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [] + }, + { + "id": "101157821468185773", + "slug": "triplebeast", + "name": "Triplebeast", + "code": "OCE1", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/triplebeast-2ym5u04m.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/triplebeast-b7d0fy7x.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "101196422526425130", + "summonerName": "Midbeast", + "firstName": "Drew", + "lastName": "Timbs", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/midbeast-bfzpli16.png", + "role": "mid" + } + ] + }, + { + "id": "101157821469955247", + "slug": "captain-faker", + "name": "Captain Faker", + "code": "KR1", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/captain-faker-4arw3clt.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/captain-faker-yb9zeh8.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "98767991747728851", + "summonerName": "Faker", + "firstName": "Sanghyeok", + "lastName": "Lee", + "image": "http://static.lolesports.com/players/1758213169113_faker.png", + "role": "mid" + }, + { + "id": "101196422520133667", + "summonerName": "Captain Jack", + "firstName": "Hyung-woo", + "lastName": "Kang", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/cpt-jack-7vurdlni.png", + "role": "bottom" + } + ] + }, + { + "id": "101157821471724721", + "slug": "rx-o-trab", + "name": "RX O TRAB", + "code": "BR1", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/rx-o-trab-bkplchir.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/rx-o-trab-itb6ox9q.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "99124844334208030", + "summonerName": "brTT", + "firstName": "Felipe", + "lastName": "Gonçalves", + "image": "http://static.lolesports.com/players/1717084128949_brTT.png", + "role": "bottom" + }, + { + "id": "101196422502373377", + "summonerName": "Yoda", + "firstName": "Felipe", + "lastName": "Noronha", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/yoda-3kudjcto.png", + "role": "mid" + } + ] + }, + { + "id": "101157821473428659", + "slug": "r4", + "name": "R4", + "code": "SEA1", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/r4-12p8sxjs.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/r4-7wlbboos.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "101196422549297203", + "summonerName": "Riku", + "firstName": "Leon", + "lastName": "Ali", + "image": "http://static.lolesports.com/players/1639774498414_placeholder.png", + "role": "mid" + } + ] + }, + { + "id": "101157821475132597", + "slug": "naple", + "name": "NapLe", + "code": "LMS1", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/naple-fnomtsnw.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/naple-8j1kl1tk.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "101196422509713418", + "summonerName": "NLLL", + "firstName": "Wen An", + "lastName": "Hsiung", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/nl-aq3p7rvk.png", + "role": "bottom" + } + ] + }, + { + "id": "101383792559569368", + "slug": "all-knights", + "name": "All Knights", + "code": "AK", + "image": "http://static.lolesports.com/teams/AK-Black-BG.png", + "alternativeImage": "http://static.lolesports.com/teams/AK-White-BG.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LLA", + "region": "LATIN AMERICA" + }, + "players": [] + }, + { + "id": "101383792887446028", + "slug": "mammoth", + "name": "MAMMOTH", + "code": "MEC", + "image": "http://static.lolesports.com/teams/1643079304055_RedMammothIcon.png", + "alternativeImage": "http://static.lolesports.com/teams/1643079304062_RedMammothIcon.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCO", + "region": "OCEANIA" + }, + "players": [ + { + "id": "112477387590015467", + "summonerName": "Rineko", + "firstName": "Qizhang", + "lastName": "Liu", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "110462942077835796", + "summonerName": "4ever", + "firstName": "Yue", + "lastName": "Liu", + "image": "http://static.lolesports.com/players/1685530722020_placeholder.png", + "role": "jungle" + }, + { + "id": "99566406307797289", + "summonerName": "Praedyth", + "firstName": "Mark", + "lastName": "Lewis", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/praedyth-5rpsig63.png", + "role": "mid" + }, + { + "id": "101383792842623127", + "summonerName": "gunkrab", + "firstName": "Vincent", + "lastName": "Lin", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/gunkrab-ciq8vcly.png", + "role": "bottom" + }, + { + "id": "107635905118503535", + "summonerName": "Voice", + "firstName": "James", + "lastName": "Craig", + "image": "https://static.lolesports.com/players/download.png", + "role": "bottom" + }, + { + "id": "111758048768961292", + "summonerName": "Hardstyle", + "firstName": "Benny", + "lastName": "Nguyen", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "106350736734730852", + "summonerName": "Goodo", + "firstName": "Minjae", + "lastName": "Jeong", + "image": "https://static.lolesports.com/players/download.png", + "role": "jungle" + }, + { + "id": "111758054510644092", + "summonerName": "eHopp", + "firstName": "Ethan", + "lastName": "Hopley", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "111758053151508173", + "summonerName": "Duck1", + "firstName": "Yian", + "lastName": "Li", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "107657790493529410", + "summonerName": "DaJeung", + "firstName": "Da Woon", + "lastName": "Jeung", + "image": "https://static.lolesports.com/players/download.png", + "role": "mid" + } + ] + }, + { + "id": "101383792891050518", + "slug": "gravitas", + "name": "Gravitas", + "code": "GRV", + "image": "http://static.lolesports.com/teams/gravitas-logo.png", + "alternativeImage": "http://static.lolesports.com/teams/gravitas-logo.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCO", + "region": "OCEANIA" + }, + "players": [ + { + "id": "105709381466108761", + "summonerName": "Piglet", + "firstName": "Reuben", + "lastName": "Salb", + "image": "http://static.lolesports.com/players/silhouette.png", + "role": "bottom" + }, + { + "id": "105747861836427633", + "summonerName": "Thomas Shen", + "firstName": "Yi", + "lastName": "Chen", + "image": "https://static.lolesports.com/players/download.png", + "role": "bottom" + }, + { + "id": "107657786356796634", + "summonerName": "Tyran", + "firstName": "Robert", + "lastName": "Wells", + "image": "https://static.lolesports.com/players/download.png", + "role": "top" + }, + { + "id": "107657790493529410", + "summonerName": "DaJeung", + "firstName": "Da Woon", + "lastName": "Jeung", + "image": "https://static.lolesports.com/players/download.png", + "role": "mid" + }, + { + "id": "107657793079479518", + "summonerName": "Vxpir", + "firstName": "Rhett", + "lastName": "Wiggins", + "image": "https://static.lolesports.com/players/download.png", + "role": "support" + }, + { + "id": "107698225510856278", + "summonerName": "Entrust", + "firstName": "Benson", + "lastName": "Tsai", + "image": "https://static.lolesports.com/players/download.png", + "role": "support" + }, + { + "id": "103525219435043049", + "summonerName": "N0body", + "firstName": "Lachlan", + "lastName": "Keene-O'Keefe", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/n0body-einjqvyk.png", + "role": "top" + }, + { + "id": "108406969099226495", + "summonerName": "Llenia", + "firstName": "Albert", + "lastName": "Luu", + "image": "http://static.lolesports.com/players/1654159070503_placeholder.png", + "role": "jungle" + }, + { + "id": "105908205133142884", + "summonerName": "Floppy", + "firstName": "Joe", + "lastName": "Tado", + "image": "https://static.lolesports.com/players/download.png", + "role": "support" + }, + { + "id": "108451325720614251", + "summonerName": "Toppy", + "firstName": "Rhys", + "lastName": "Topham", + "image": "https://static.lolesports.com/players/download.png", + "role": "top" + } + ] + }, + { + "id": "101383793195758800", + "slug": "redemption-esports", + "name": "Redemption Porto Alegre", + "code": "RDP", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/redemption-esports-balmzmyh.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/redemption-esports-2zce5w21.png", + "backgroundImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/redemption-esports-d6gs3poc.png", + "status": "archived", + "homeLeague": null, + "players": [] + }, + { + "id": "101383793567806688", + "slug": "sk-gaming", + "name": "SK Gaming", + "code": "SK", + "image": "http://static.lolesports.com/teams/1643979272144_SK_Monochrome.png", + "alternativeImage": "http://static.lolesports.com/teams/1643979272151_SK_Monochrome.png", + "backgroundImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/sk-gaming-2cd63tzz.png", + "status": "active", + "homeLeague": { + "name": "LEC", + "region": "EMEA" + }, + "players": [ + { + "id": "101389760979975607", + "summonerName": "Keduii", + "firstName": "Tim", + "lastName": "Willers", + "image": "http://static.lolesports.com/players/1754473826188_image6332.png", + "role": "bottom" + }, + { + "id": "103536992387801806", + "summonerName": "RKR", + "firstName": "Steven", + "lastName": "Chen", + "image": "http://static.lolesports.com/players/1737735009966_rkr.png", + "role": "mid" + }, + { + "id": "107492028745476512", + "summonerName": "Loopy", + "firstName": "Donghyeon", + "lastName": "Kim", + "image": "http://static.lolesports.com/players/1754473911897_image6526.png", + "role": "support" + }, + { + "id": "105501844568585626", + "summonerName": "DnDn", + "firstName": "Geunwoo", + "lastName": "Park", + "image": "http://static.lolesports.com/players/1754473731179_image6231.png", + "role": "top" + }, + { + "id": "101389808348806587", + "summonerName": "Skeanz", + "firstName": "Duncan", + "lastName": "Marquet", + "image": "http://static.lolesports.com/players/1754473981009_image6613.png", + "role": "jungle" + }, + { + "id": "100174547541438669", + "summonerName": "Abbedagge", + "firstName": "Felix", + "lastName": "Braun", + "image": "http://static.lolesports.com/players/1754473645593_image6135.png", + "role": "mid" + } + ] + }, + { + "id": "101383793569248484", + "slug": "astralis", + "name": "Astralis", + "code": "AST", + "image": "http://static.lolesports.com/teams/AST-FullonDark.png", + "alternativeImage": "http://static.lolesports.com/teams/AST-FullonLight.png", + "backgroundImage": "http://static.lolesports.com/teams/AstralisAST.png", + "status": "active", + "homeLeague": { + "name": "LEC", + "region": "EMEA" + }, + "players": [] + }, + { + "id": "101383793572656373", + "slug": "giantx-lec", + "name": "GIANTX", + "code": "GX", + "image": "http://static.lolesports.com/teams/1765897105091_GIANTX-logotype-white.png", + "alternativeImage": "http://static.lolesports.com/teams/1765897105092_GIANTX-logotype-white.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LEC", + "region": "EMEA" + }, + "players": [ + { + "id": "107492067202132417", + "summonerName": "Lospa", + "firstName": "Joon Hyung", + "lastName": "Park", + "image": "http://static.lolesports.com/players/1717746773886_lospa.png", + "role": "support" + }, + { + "id": "105647947016264573", + "summonerName": "Jackies", + "firstName": "Adam", + "lastName": "Jeřábek", + "image": "http://static.lolesports.com/players/1754470929979_image6228.png", + "role": "mid" + }, + { + "id": "103495716738607011", + "summonerName": "Lot", + "firstName": "Eren", + "lastName": "Yıldız", + "image": "http://static.lolesports.com/players/1754471187964_image6424.png", + "role": "top" + }, + { + "id": "105501717406803640", + "summonerName": "Noah", + "firstName": "Hyuntaek", + "lastName": "O", + "image": "http://static.lolesports.com/players/1754471273828_image6611.png", + "role": "bottom" + }, + { + "id": "105501802535116331", + "summonerName": "Jun", + "firstName": "Sejun", + "lastName": "Yoon", + "image": "http://static.lolesports.com/players/1754471011231_image6328.png", + "role": "support" + }, + { + "id": "107464179845128878", + "summonerName": "ISMA", + "firstName": "Ismaïl", + "lastName": "Boualem", + "image": "http://static.lolesports.com/players/1754470864052_Isma.png", + "role": "jungle" + } + ] + }, + { + "id": "101383793574360315", + "slug": "rogue", + "name": "Rogue", + "code": "RGE", + "image": "http://static.lolesports.com/teams/1705054928404_RGE.png", + "alternativeImage": "http://static.lolesports.com/teams/1705054928406_RGE.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LEC", + "region": "EMEA" + }, + "players": [ + { + "id": "98767975928947066", + "summonerName": "Trick", + "firstName": "Kim", + "lastName": "Gang-yun", + "image": "http://static.lolesports.com/players/1754473363711_image6612.png", + "role": "jungle" + }, + { + "id": "100482247959137902", + "summonerName": "Larssen", + "firstName": "Emil", + "lastName": "Larsson", + "image": "http://static.lolesports.com/players/1754473073908_image6331.png", + "role": "mid" + }, + { + "id": "105515229738531937", + "summonerName": "Adam", + "firstName": "Adam", + "lastName": "Maanane", + "image": "http://static.lolesports.com/players/1754472615484_image6134.png", + "role": "top" + }, + { + "id": "99566406053904433", + "summonerName": "Malrang", + "firstName": "Geun-seong", + "lastName": "Kim", + "image": "http://static.lolesports.com/players/1754473137379_image6427.png", + "role": "jungle" + }, + { + "id": "99322214238585389", + "summonerName": "Patrik", + "firstName": "Patrik", + "lastName": "Jiru", + "image": "http://static.lolesports.com/players/1737734880632_partik.png", + "role": "bottom" + }, + { + "id": "105501861909424007", + "summonerName": "Execute", + "firstName": "JeongHoon", + "lastName": "Lee", + "image": "http://static.lolesports.com/players/1737734898841_execue.png", + "role": "support" + } + ] + }, + { + "id": "101388912911039804", + "slug": "thunder-talk-gaming", + "name": "THUNDERTALKGAMING", + "code": "TT", + "image": "http://static.lolesports.com/teams/TT-FullonDark.png", + "alternativeImage": "http://static.lolesports.com/teams/TT-FullonLight.png", + "backgroundImage": "http://static.lolesports.com/teams/TTTT.png", + "status": "active", + "homeLeague": { + "name": "LPL", + "region": "CHINA" + }, + "players": [ + { + "id": "110547590326456015", + "summonerName": "xiaohuangre", + "firstName": "ZHIMIN", + "lastName": "YU", + "image": "http://static.lolesports.com/players/1753284886496_image6116.png", + "role": "jungle" + }, + { + "id": "102192182794613438", + "summonerName": "Aki", + "firstName": "An ", + "lastName": "Mao", + "image": "http://static.lolesports.com/players/1753285204335_image6511.png", + "role": "jungle" + }, + { + "id": "113662768960485564", + "summonerName": "Junhao", + "firstName": "Junhao", + "lastName": "Luo", + "image": "http://static.lolesports.com/players/1753285542794_image6315.png", + "role": "jungle" + }, + { + "id": "115728548522563447", + "summonerName": "Ryan3", + "firstName": "QIHONG", + "lastName": "CHEN", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "115728542444828247", + "summonerName": "Keshi1", + "firstName": "QINGHUA", + "lastName": "LI", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "115728543828555358", + "summonerName": "xlun", + "firstName": "JIALUN", + "lastName": "SHI", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "103729432252832975", + "summonerName": "Hoya", + "firstName": "Yongho", + "lastName": "Yoon", + "image": "http://static.lolesports.com/players/1753285043819_image6314.png", + "role": "top" + }, + { + "id": "110547690694797001", + "summonerName": "Feather", + "firstName": "TIANCIFU", + "lastName": "WANG", + "image": "http://static.lolesports.com/players/1753285132749_image6414.png", + "role": "support" + } + ] + }, + { + "id": "101388912914513220", + "slug": "victory-five", + "name": "SHENZHEN NINJAS IN PYJAMAS", + "code": "NIP", + "image": "http://static.lolesports.com/teams/1673425724696_NIP-Symbol-RGB-NeonYellow1.png", + "alternativeImage": "http://static.lolesports.com/teams/1673425724698_NIP-Symbol-RGB-NeonYellow1.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LPL", + "region": "CHINA" + }, + "players": [ + { + "id": "106368497875598272", + "summonerName": "Assum", + "firstName": "Wei", + "lastName": "Zou", + "image": "http://static.lolesports.com/players/silhouette.png", + "role": "bottom" + }, + { + "id": "105516599464787723", + "summonerName": "Zhuo", + "firstName": "Xu-Zhuo", + "lastName": "Wang", + "image": "http://static.lolesports.com/players/1753282771671_image6211.png", + "role": "support" + }, + { + "id": "108013460749990840", + "summonerName": "Care", + "firstName": "yang", + "lastName": "jie", + "image": "http://static.lolesports.com/players/1753278722199_image662.png", + "role": "mid" + }, + { + "id": "113662427929229043", + "summonerName": "Alley", + "firstName": "Yu", + "lastName": "Zhou", + "image": "http://static.lolesports.com/players/1753283293857_image664.png", + "role": "top" + }, + { + "id": "109523120092920046", + "summonerName": "Guwon", + "firstName": "Gu", + "lastName": "Kwanmo", + "image": "http://static.lolesports.com/players/1744280100473_DFM_Guwon.png", + "role": "jungle" + }, + { + "id": "99566404815792265", + "summonerName": "Doinb", + "firstName": "Tae-sang", + "lastName": "Kim", + "image": "http://static.lolesports.com/players/1753284142381_image6412.png", + "role": "mid" + }, + { + "id": "111726214993162695", + "summonerName": "Niket", + "firstName": "XINYUAN", + "lastName": "YING", + "image": "http://static.lolesports.com/players/1753283906725_image6114.png", + "role": "support" + }, + { + "id": "109691839332751409", + "summonerName": "Solokill", + "firstName": "Fu Keung", + "lastName": "Mak", + "image": "http://static.lolesports.com/players/1753284229141_image665.png", + "role": "top" + } + ] + }, + { + "id": "101422616509070746", + "slug": "galatasaray-espor", + "name": "Galatasaray Espor", + "code": "GS", + "image": "http://static.lolesports.com/teams/1631820533570_galatasaray-2021-worlds.png", + "alternativeImage": "http://static.lolesports.com/teams/1631820533572_galatasaray-2021-worlds.png", + "backgroundImage": "http://static.lolesports.com/teams/1632941006301_GalatasarayGS.png", + "status": "active", + "homeLeague": { + "name": "TCL", + "region": "EMEA" + }, + "players": [ + { + "id": "107605545455706915", + "summonerName": "Kurama Cat", + "firstName": "Eren Alp", + "lastName": "Öğdem", + "image": "http://static.lolesports.com/players/1641930315672_placeholder.png", + "role": "jungle" + }, + { + "id": "99566404562013167", + "summonerName": "Crazy", + "firstName": "Chaehee", + "lastName": "Kim", + "image": "http://static.lolesports.com/players/1655286700902_crazy.png", + "role": "mid" + }, + { + "id": "108443042405180788", + "summonerName": "Leoo", + "firstName": "Bilgin", + "lastName": "Furkan ", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "support" + } + ] + }, + { + "id": "101428372598668846", + "slug": "burning-core", + "name": "Burning Core Toyama", + "code": "BCT", + "image": "http://static.lolesports.com/teams/1713338557123_LJL_BCT_Color.png", + "alternativeImage": "http://static.lolesports.com/teams/1713338557124_LJL_BCT_Color.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LJL", + "region": "JAPAN" + }, + "players": [ + { + "id": "108611826180700352", + "summonerName": "Enapon", + "firstName": "Ryosuke", + "lastName": "Noguchi", + "image": "http://static.lolesports.com/players/1657284931118_image.png", + "role": "support" + }, + { + "id": "114267692241140827", + "summonerName": "R0se", + "firstName": "gi chan", + "lastName": "lee", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "113866226286528059", + "summonerName": "Isuka", + "firstName": "Kuroda", + "lastName": "Masashi", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "none" + }, + { + "id": "110535478367289339", + "summonerName": "Brucee", + "firstName": "BRUCE SCOTT", + "lastName": "TORRES NANO", + "image": "http://static.lolesports.com/players/1686637544739_Dammy.png", + "role": "jungle" + }, + { + "id": "113866695155430628", + "summonerName": "L1mit", + "firstName": "Jiseong", + "lastName": "Yang", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "106702283617298068", + "summonerName": "tol2", + "firstName": "Haruki", + "lastName": "Shibata", + "image": "http://static.lolesports.com/players/1713340605172_LJL_Portraits_lolesports_BCT_TOL2.png", + "role": "top" + } + ] + }, + { + "id": "101428372600307248", + "slug": "rascal-jester", + "name": "Rascal Jester", + "code": "RJ", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/rascal-jester-e0g6cud0.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/rascal-jester-g32ay08v.png", + "backgroundImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/rascal-jester-guqjh8kb.png", + "status": "archived", + "homeLeague": { + "name": "LJL", + "region": "JAPAN" + }, + "players": [ + { + "id": "107635686337740023", + "summonerName": "R1ngoKun", + "firstName": "Shyuto", + "lastName": "Yoshida", + "image": "http://static.lolesports.com/players/1644905446934_rj_r1ngokun.png", + "role": "top" + } + ] + }, + { + "id": "101428372602011186", + "slug": "v3-esports", + "name": "V3 Esports", + "code": "V3", + "image": "http://static.lolesports.com/teams/v3_500x500.png", + "alternativeImage": "http://static.lolesports.com/teams/v3_500x500.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LJL", + "region": "JAPAN" + }, + "players": [ + { + "id": "113866226395361832", + "summonerName": "89", + "firstName": "Haku", + "lastName": "Kabashima", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "107755713127373379", + "summonerName": "ezman", + "firstName": "Hayato", + "lastName": "Kawai", + "image": "http://static.lolesports.com/players/1727472117204_default-headshot.png", + "role": "bottom" + }, + { + "id": "113866226335068708", + "summonerName": "Sh1vq", + "firstName": "Shusuke", + "lastName": "Takato", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "113866226491437612", + "summonerName": "sucuranbul", + "firstName": "Kanto", + "lastName": "Kubo", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "113866226444273223", + "summonerName": "Taicho", + "firstName": "Takuho", + "lastName": "Yasue", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "99566406029648577", + "summonerName": "Acee", + "firstName": "Kotoji", + "lastName": "Mugita", + "image": "http://static.lolesports.com/players/1713340587727_LJL_Portraits_lolesports_V3_ACEE.png", + "role": "none" + }, + { + "id": "106827913554785684", + "summonerName": "Awaker", + "firstName": "Kentaro", + "lastName": "Hanaoka", + "image": "http://static.lolesports.com/players/1630064593878_darkimage_1.png", + "role": "none" + } + ] + }, + { + "id": "101428372603715124", + "slug": "crest-gaming-act", + "name": "Crest Gaming Act", + "code": "CGA", + "image": "http://static.lolesports.com/teams/1673413705064_cga.png", + "alternativeImage": "http://static.lolesports.com/teams/1673413705069_cga.png", + "backgroundImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/crest-gaming-act-7pkgpqa.png", + "status": "active", + "homeLeague": { + "name": "LJL", + "region": "JAPAN" + }, + "players": [ + { + "id": "105576956930834222", + "summonerName": "Cassin", + "firstName": "Daehui", + "lastName": "Kim", + "image": "http://static.lolesports.com/players/1713339616740_LJL_Portraits_lolesports_AXC_CASSIN.png", + "role": "jungle" + }, + { + "id": "106570879611705459", + "summonerName": "Primo", + "firstName": "Shion", + "lastName": "Tsunasawa", + "image": "http://static.lolesports.com/players/1674826719442_cga_primo.png", + "role": "support" + }, + { + "id": "103535282086393742", + "summonerName": "Eugeo", + "firstName": "Takehiko", + "lastName": "Katsuki", + "image": "http://static.lolesports.com/players/1713339204742_LJL_Portraits_lolesports_AXC_EUGEO.png", + "role": "mid" + }, + { + "id": "103535282088432240", + "summonerName": "Honey", + "firstName": "Bohun", + "lastName": "Park", + "image": "http://static.lolesports.com/players/1674826618897_cga_honey.png", + "role": "bottom" + }, + { + "id": "106809071541449757", + "summonerName": "rre", + "firstName": "Kota", + "lastName": "Tamura", + "image": "http://static.lolesports.com/players/1629777086540_darkimage_1.png", + "role": "mid" + }, + { + "id": "107601516334209220", + "summonerName": "Qoo", + "firstName": "Shogo", + "lastName": "Fukuda", + "image": "http://static.lolesports.com/players/1641868833953_darkimage_1.png", + "role": "support" + }, + { + "id": "101796977260478598", + "summonerName": "Nap", + "firstName": "Akihito", + "lastName": "Ohno", + "image": "http://static.lolesports.com/players/1674826656642_cga_nap.png", + "role": "top" + } + ] + }, + { + "id": "101428372605353526", + "slug": "sengoku-gaming", + "name": "QT DIG", + "code": "QTD", + "image": "http://static.lolesports.com/teams/1744180899175_qtd_white.png", + "alternativeImage": "http://static.lolesports.com/teams/1744180899176_qtd_black.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LJL", + "region": "JAPAN" + }, + "players": [ + { + "id": "105752114670266447", + "summonerName": "hetel", + "firstName": "Shuya", + "lastName": "Koyama", + "image": "http://static.lolesports.com/players/1713340517549_LJL_Portraits_lolesports_V3_HETEL.png", + "role": "support" + }, + { + "id": "105785814323282335", + "summonerName": "Washidai", + "firstName": "Daito", + "lastName": "Suzuki", + "image": "http://static.lolesports.com/players/1713339386582_LJL_Portraits_lolesports_AXC_WASHIDAI.png", + "role": "top" + }, + { + "id": "105501731290932942", + "summonerName": "DICE", + "firstName": "Dohyun", + "lastName": "Hong", + "image": "http://static.lolesports.com/players/1705672251513_DICE.png", + "role": "mid" + }, + { + "id": "114533301242660910", + "summonerName": "Van1", + "firstName": "Seunghu", + "lastName": "Kim", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "100205573455797786", + "summonerName": "Motive", + "firstName": "HEE", + "lastName": "CHOSE", + "image": "http://static.lolesports.com/players/FG-Motive.png", + "role": "none" + }, + { + "id": "101796906587674801", + "summonerName": "Yuhi", + "firstName": "Yuhi", + "lastName": "Nakanishi", + "image": "http://static.lolesports.com/players/1713340437200_LJL_Portraits_lolesports_SG_YUHI.png", + "role": "bottom" + } + ] + }, + { + "id": "101428372607057464", + "slug": "axiz", + "name": "Axiz Crest", + "code": "AXC", + "image": "http://static.lolesports.com/teams/1705738214022_AXIZLOGO-white03.png", + "alternativeImage": "http://static.lolesports.com/teams/1705738214023_AXIZLOGO-black03.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LJL", + "region": "JAPAN" + }, + "players": [ + { + "id": "103535282086393742", + "summonerName": "Eugeo", + "firstName": "Takehiko", + "lastName": "Katsuki", + "image": "http://static.lolesports.com/players/1713339204742_LJL_Portraits_lolesports_AXC_EUGEO.png", + "role": "mid" + }, + { + "id": "105576902117578145", + "summonerName": "Ssol", + "firstName": "Jinsol", + "lastName": "Seo ", + "image": "http://static.lolesports.com/players/1713339344190_LJL_Portraits_lolesports_AXC_SSOL.png", + "role": "bottom" + }, + { + "id": "105785814323282335", + "summonerName": "Washidai", + "firstName": "Daito", + "lastName": "Suzuki", + "image": "http://static.lolesports.com/players/1713339386582_LJL_Portraits_lolesports_AXC_WASHIDAI.png", + "role": "top" + }, + { + "id": "105576956930834222", + "summonerName": "Cassin", + "firstName": "Daehui", + "lastName": "Kim", + "image": "http://static.lolesports.com/players/1713339616740_LJL_Portraits_lolesports_AXC_CASSIN.png", + "role": "jungle" + }, + { + "id": "108611801859373243", + "summonerName": "AIM4", + "firstName": "Masaki", + "lastName": "Tsuboyama", + "image": "http://static.lolesports.com/players/1657284570546_image.png", + "role": "none" + }, + { + "id": "110535478367289339", + "summonerName": "Brucee", + "firstName": "BRUCE SCOTT", + "lastName": "TORRES NANO", + "image": "http://static.lolesports.com/players/1686637544739_Dammy.png", + "role": "none" + }, + { + "id": "108611826180700352", + "summonerName": "Enapon", + "firstName": "Ryosuke", + "lastName": "Noguchi", + "image": "http://static.lolesports.com/players/1657284931118_image.png", + "role": "none" + }, + { + "id": "107818971114243601", + "summonerName": "L0SER", + "firstName": "Hiroki", + "lastName": "Yanagawa", + "image": "http://static.lolesports.com/players/1645186923679_image.png", + "role": "none" + }, + { + "id": "110540264433553284", + "summonerName": "evol", + "firstName": "Yori", + "lastName": "Tabuchi", + "image": "http://static.lolesports.com/players/1686710575009_Dammy.png", + "role": "none" + }, + { + "id": "103734705460272719", + "summonerName": "Ino", + "firstName": "Fumiya", + "lastName": "Ino", + "image": "http://static.lolesports.com/players/1713339033929_LJL_Portraits_lolesports_AXC_INO1.png", + "role": "support" + }, + { + "id": "112508275970488124", + "summonerName": "Van ", + "firstName": "SEUNG HU", + "lastName": "KIM", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "jungle" + } + ] + }, + { + "id": "101428372826668622", + "slug": "dragon-gate-team", + "name": "Dragon Gate Team", + "code": "DGS", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/dragon-gate-team-fgeuoeeu.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/dragon-gate-team-5n09pmpt.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "101428372785720746", + "summonerName": "PaSa", + "firstName": "Hong Shen", + "lastName": "Lo", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/pasa-90miehep.png", + "role": "bottom" + }, + { + "id": "101428372800335295", + "summonerName": "JGY", + "firstName": "Yang", + "lastName": "Liu", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/jgy-3az0x7qm.png", + "role": "jungle" + }, + { + "id": "101428372801252801", + "summonerName": "Xiaobo", + "firstName": "Baiyong", + "lastName": "Gong", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/xiaobo-jht9q5b9.png", + "role": "mid" + }, + { + "id": "101428372775955877", + "summonerName": "2188", + "firstName": "Jin Long", + "lastName": "Huang", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/2188-504o94xr.png", + "role": "top" + }, + { + "id": "101428372777004455", + "summonerName": "YuLun", + "firstName": "Yu Lun", + "lastName": "Jiang", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/yulun-35zgnvrz.png", + "role": "support" + } + ] + }, + { + "id": "101428372830010965", + "slug": "alpha-esports", + "name": "Alpha Esports", + "code": "ALF", + "image": "http://static.lolesports.com/teams/1592588479686_AlphaEsportsALF-01-FullonDark.png", + "alternativeImage": "http://static.lolesports.com/teams/1592588479688_AlphaEsportsALF-03-FullonLight.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "PCS", + "region": "HONG KONG, MACAU, TAIWAN" + }, + "players": [ + { + "id": "99566406467226603", + "summonerName": "3z", + "firstName": "Han", + "lastName": "Chen", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/vayn3z-hsgyiyod.png", + "role": "top" + }, + { + "id": "106469076933730123", + "summonerName": "Kiy1n9", + "firstName": "YI PENG", + "lastName": "DAI", + "image": "http://static.lolesports.com/players/silhouette.png", + "role": "jungle" + }, + { + "id": "106469086830452567", + "summonerName": "XiaotuXXD", + "firstName": "CHUN YAO", + "lastName": "LEE", + "image": "http://static.lolesports.com/players/silhouette.png", + "role": "mid" + }, + { + "id": "106469090305105755", + "summonerName": "Sheng", + "firstName": "TING SHENG", + "lastName": "CHEN", + "image": "http://static.lolesports.com/players/silhouette.png", + "role": "support" + }, + { + "id": "106550237945849646", + "summonerName": "Annnnn", + "firstName": "Chun-An", + "lastName": "Chou", + "image": "http://static.lolesports.com/players/1675251856723_IMPAn.png", + "role": "bottom" + } + ] + }, + { + "id": "101909007470353718", + "slug": "vsg", + "name": "VSG", + "code": "VSG", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/vsg-7knwodft.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/vsg-8c2pl0b6.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "LCK", + "region": "KOREA" + }, + "players": [ + { + "id": "112880372381731252", + "summonerName": "Ben01", + "firstName": "Ben", + "lastName": "Ben", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + } + ] + }, + { + "id": "101909007472450882", + "slug": "es-sharks", + "name": "ES Sharks", + "code": "ESS", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/es-sharks-isj26vcq.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/es-sharks-9xzhoq8j.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "LCK", + "region": "KOREA" + }, + "players": [] + }, + { + "id": "101971954462809506", + "slug": "superesports", + "name": "SuperEsports", + "code": "SE1", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/superesports-gxr4uerb.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/superesports-bcsprv08.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "99566406456181201", + "summonerName": "Apex", + "firstName": "Chia-Wei", + "lastName": "Hsieh", + "image": "http://static.lolesports.com/players/1656574539287_Apex.png", + "role": "mid" + }, + { + "id": "99566406464850045", + "summonerName": "Zest2 XXD", + "firstName": "Ming", + "lastName": "Hsieh", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/suki-7jeo1zsd.png", + "role": "support" + }, + { + "id": "101971954418863890", + "summonerName": "Nexus", + "firstName": "Tung", + "lastName": "Tung", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/nexus-9j7v8ot7.png", + "role": "top" + }, + { + "id": "99566406445725599", + "summonerName": "Dalka", + "firstName": "Myungjun", + "lastName": "Park", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/dalka-j45gvjyh.png", + "role": "bottom" + }, + { + "id": "101971954398227333", + "summonerName": "JunJia", + "firstName": "Chun-Chia", + "lastName": "Yu", + "image": "http://static.lolesports.com/players/1744279675764_CFO_JunJia.png", + "role": "jungle" + } + ] + }, + { + "id": "101978171843206569", + "slug": "vega-squadron", + "name": "Vega Squadron", + "code": "VEG", + "image": "http://static.lolesports.com/teams/vega.png", + "alternativeImage": "http://static.lolesports.com/teams/vega.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCL", + "region": "COMMONWEALTH OF INDEPENDENT STATES" + }, + "players": [ + { + "id": "106467166754365069", + "summonerName": "ORION", + "firstName": "Alexander", + "lastName": "Iskrich", + "image": "https://static.lolesports.com/players/download.png", + "role": "top" + }, + { + "id": "108012912871566732", + "summonerName": "Ptatis", + "firstName": "David", + "lastName": "Hallin", + "image": "http://static.lolesports.com/players/1648146249344_placeholder.png", + "role": "mid" + }, + { + "id": "107688944570765126", + "summonerName": "Ques", + "firstName": "Roman", + "lastName": "Generalov", + "image": "http://static.lolesports.com/players/1643202882201_placeholder.png", + "role": "top" + }, + { + "id": "107688947258462026", + "summonerName": "ts Canya", + "firstName": "Alexander", + "lastName": "Sinyakov", + "image": "http://static.lolesports.com/players/1643202924560_placeholder.png", + "role": "jungle" + }, + { + "id": "107688949756832572", + "summonerName": "Articuna", + "firstName": "Valentīns", + "lastName": "Virvičs", + "image": "http://static.lolesports.com/players/1643202961965_placeholder.png", + "role": "mid" + }, + { + "id": "107688953795153742", + "summonerName": "Laatch", + "firstName": "Felix", + "lastName": "Melin", + "image": "http://static.lolesports.com/players/1643203022946_placeholder.png", + "role": "bottom" + }, + { + "id": "107688956412144455", + "summonerName": "Tristesse", + "firstName": "Kirill", + "lastName": "Nazarov", + "image": "http://static.lolesports.com/players/1643203063973_placeholder.png", + "role": "support" + }, + { + "id": "107688958174955411", + "summonerName": "The Cemen", + "firstName": "Yurii", + "lastName": "Blyzniuk", + "image": "http://static.lolesports.com/players/1643203089897_placeholder.png", + "role": "mid" + } + ] + }, + { + "id": "101978171845303729", + "slug": "mega-esports", + "name": "MEGA Esports", + "code": "MEGA", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/mega-j3rslben.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/mega-94cwp0dr.png", + "backgroundImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/mega-esports-7a8f3bze.png", + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "100205572901596574", + "summonerName": "Lloyd", + "firstName": "Juckkirsts", + "lastName": "Kongubon", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/lloyd-f6trm0s9.png", + "role": "jungle" + }, + { + "id": "100205572949580614", + "summonerName": "G4", + "firstName": "Nuttapong", + "lastName": "Menkasikan", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/g4-h63dhpkv.png", + "role": "mid" + }, + { + "id": "100205572948945427", + "summonerName": "Rockky", + "firstName": "Atit", + "lastName": "Phaomuang", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/rockky-68bk1726.png", + "role": "top" + }, + { + "id": "101978171829669684", + "summonerName": "Pop", + "firstName": "Minwook", + "lastName": "Ha", + "image": "http://static.lolesports.com/players/1655284299402_pop.png", + "role": "support" + }, + { + "id": "99566406477245281", + "summonerName": "DeuL", + "firstName": "DL", + "lastName": "Kim", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/deul-efx0vi87.png", + "role": "bottom" + }, + { + "id": "102854935091879094", + "summonerName": "Hammock", + "firstName": "Nirattisai", + "lastName": "Neelamai", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/hammock-582wyaih.png", + "role": "top" + } + ] + }, + { + "id": "102141671181705193", + "slug": "michigan-state-university", + "name": "Michigan State University", + "code": "MSU", + "image": "http://static.lolesports.com/teams/1650399174629_michigan-state-logo-RyanFelten.png", + "alternativeImage": "http://static.lolesports.com/teams/1650399174630_michigan-state-logo-RyanFelten.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107828217601794380", + "summonerName": "ArgentumSky", + "firstName": "Akash", + "lastName": "Gupta", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + }, + { + "id": "108359200778087901", + "summonerName": "Cylainius", + "firstName": "Boddy", + "lastName": "Marcus", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + }, + { + "id": "108359200821171783", + "summonerName": "DeathSenten", + "firstName": "Duerden", + "lastName": "Nicholas", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + }, + { + "id": "108359200882759498", + "summonerName": "Hot Mage", + "firstName": "Vuong", + "lastName": "Boi", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + }, + { + "id": "108359200962538338", + "summonerName": "Sunlight", + "firstName": "Riebschleger", + "lastName": "Joseph", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + }, + { + "id": "108359201008826006", + "summonerName": "lanse", + "firstName": "Ban", + "lastName": "Longhui", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + }, + { + "id": "108359201080216019", + "summonerName": "Livatious", + "firstName": "Pham", + "lastName": "Benjamin", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + }, + { + "id": "108359201127929679", + "summonerName": "Zethal", + "firstName": "Ying", + "lastName": "Kaiwen", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + }, + { + "id": "108359201190467147", + "summonerName": "RBM", + "firstName": "Demarest", + "lastName": "Peyton", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + }, + { + "id": "108359201237350049", + "summonerName": "ttvDjinn", + "firstName": "Hwangbo", + "lastName": "Timothy", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + }, + { + "id": "107577675466981905", + "summonerName": "Argentum", + "firstName": "Akash", + "lastName": "Gupta", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + } + ] + }, + { + "id": "102141671182557163", + "slug": "redbird-esports", + "name": "Redbird Esports", + "code": "UI", + "image": "http://static.lolesports.com/teams/1650390431780_noteamlogo-lolesports1.png", + "alternativeImage": "http://static.lolesports.com/teams/1650390431781_noteamlogo-lolesports1.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "102141671183409133", + "slug": "maryville-university", + "name": "Maryville University", + "code": "MU", + "image": "http://static.lolesports.com/teams/1647541915472_200x200_MU_Logo.png", + "alternativeImage": "http://static.lolesports.com/teams/1647541915475_200x200_MU_Logo.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [] + }, + { + "id": "102141671184261103", + "slug": "columbia-college", + "name": "Columbia College", + "code": "CCL", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/columbia-college-44kgjsa7.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/columbia-college-gcva3ukk.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [] + }, + { + "id": "102141671185047537", + "slug": "uci-esports", + "name": "UCI Esports", + "code": "UCI", + "image": "http://static.lolesports.com/teams/1641604280633_UCI.png", + "alternativeImage": "http://static.lolesports.com/teams/1641548061305_LOLESPORTSICON.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "102141671185899507", + "slug": "university-of-western-ontario", + "name": "University of Western Ontario", + "code": "UWO", + "image": "http://static.lolesports.com/teams/1653639625186_Western-Mustangs-PMS268C1.png", + "alternativeImage": "http://static.lolesports.com/teams/1653639625187_Western-Mustangs-PMS268C1.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "108443832518725976", + "summonerName": "winston", + "firstName": "Winston ", + "lastName": "Herold ", + "image": "http://static.lolesports.com/players/1654721564167_winston_player.webp", + "role": "none" + }, + { + "id": "108359202049649529", + "summonerName": "calculus", + "firstName": "Yuan", + "lastName": "Derek", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + }, + { + "id": "108359202094585702", + "summonerName": "Grovy", + "firstName": "Chen", + "lastName": "Kyle", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + }, + { + "id": "103478281364484640", + "summonerName": "GORICA", + "firstName": "Alexander", + "lastName": "Gorica", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/gorica-hi6xtktr.png", + "role": "none" + }, + { + "id": "106857950089373211", + "summonerName": "links", + "firstName": "Mohammad", + "lastName": "Daud Asif", + "image": "http://static.lolesports.com/players/1630522918336_silhouette.png", + "role": "none" + }, + { + "id": "108359209394761275", + "summonerName": "Kalopsia", + "firstName": "Chung", + "lastName": "Byron", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + }, + { + "id": "108359202292323919", + "summonerName": "loyal", + "firstName": "Qiao", + "lastName": "Bo Wen", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + }, + { + "id": "108359202355473909", + "summonerName": "Okahra", + "firstName": "Kahraman", + "lastName": "Omar", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + }, + { + "id": "107828128391302402", + "summonerName": "Pynt", + "firstName": "Rongrui", + "lastName": "Mao", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + }, + { + "id": "108359202468359044", + "summonerName": "Sybr", + "firstName": "Lou", + "lastName": "Dan", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + }, + { + "id": "108359202531645297", + "summonerName": "WentworthMi", + "firstName": "Herold", + "lastName": "Winston", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + } + ] + }, + { + "id": "102141671186685941", + "slug": "university-of-waterloo", + "name": "University of Waterloo", + "code": "UWOO", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/university-of-waterloo-2wuni11l.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/university-of-waterloo-aghmypqf.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "102141671187668983", + "slug": "nc-state-university", + "name": "NC State University", + "code": "NCSU", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/nc-state-university-it42b898.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/nc-state-university-6ey19n1w.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "102235771678061291", + "slug": "fastpay-wildcats", + "name": "DenizBank İstanbul Wildcats", + "code": "IW", + "image": "http://static.lolesports.com/teams/1654773501062_DenizBankIstanbulWildcatsWhite1.png", + "alternativeImage": "http://static.lolesports.com/teams/1654773501064_DenizBankIstanbulWildcatsWhite1.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "TCL", + "region": "EMEA" + }, + "players": [ + { + "id": "103495716733888413", + "summonerName": "Secondate", + "firstName": "Enes", + "lastName": "Çelik", + "image": "http://static.lolesports.com/players/Secondate.png", + "role": "none" + } + ] + }, + { + "id": "102747101562758215", + "slug": "apk-prince", + "name": "SeolHaeOne Prince", + "code": "SP11", + "image": "http://static.lolesports.com/teams/1596306977161_APKPrinceAPK-01-FullonDark.png", + "alternativeImage": "http://static.lolesports.com/teams/1596306962265_APKPrinceAPK-03-FullonLight.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "LCK", + "region": "KOREA" + }, + "players": [] + }, + { + "id": "102747101565183056", + "slug": "nongshim-redforce", + "name": "NONGSHIM RED FORCE", + "code": "NS", + "image": "http://static.lolesports.com/teams/NSFullonDark.png", + "alternativeImage": "http://static.lolesports.com/teams/NSFullonLight.png", + "backgroundImage": "http://static.lolesports.com/teams/NongshimRedForceNS.png", + "status": "active", + "homeLeague": { + "name": "LCK", + "region": "KOREA" + }, + "players": [ + { + "id": "108205131295210982", + "summonerName": "Calix", + "firstName": "Hyun Bin", + "lastName": "Syun", + "image": "http://static.lolesports.com/players/1758212423023_calis.png", + "role": "mid" + }, + { + "id": "100428088879195423", + "summonerName": "Kingen", + "firstName": "Sunghoon ", + "lastName": "Hwang", + "image": "http://static.lolesports.com/players/1758213465738_kingen.png", + "role": "top" + }, + { + "id": "99871276332909841", + "summonerName": "Lehends", + "firstName": "Siu", + "lastName": "Son", + "image": "http://static.lolesports.com/players/1739363299935_image6-2025-02-12T132743.340.png", + "role": "none" + }, + { + "id": "108366332471078988", + "summonerName": "Sponge", + "firstName": "Youngjun", + "lastName": "Bae", + "image": "http://static.lolesports.com/players/1758214044295_sponge.png", + "role": "jungle" + }, + { + "id": "98767975951139628", + "summonerName": "Scout", + "firstName": "Yechan", + "lastName": "Lee", + "image": "http://static.lolesports.com/players/1753280760711_image639.png", + "role": "mid" + }, + { + "id": "105501797931408936", + "summonerName": "Taeyoon", + "firstName": "Taeyun", + "lastName": "Kim", + "image": "http://static.lolesports.com/players/1753286405598_image6217.png", + "role": "bottom" + }, + { + "id": "111521549323573788", + "summonerName": "Janus", + "firstName": "Um", + "lastName": "Yejun", + "image": "http://static.lolesports.com/players/1708512218481_CL_FOX_Janus_F.png", + "role": "top" + }, + { + "id": "107492116585043595", + "summonerName": "SeTab", + "firstName": "Kyeongjin", + "lastName": "Song", + "image": "http://static.lolesports.com/players/1753284974617_image6214.png", + "role": "mid" + }, + { + "id": "112636754844846666", + "summonerName": "Lucy", + "firstName": "Soohoon", + "lastName": "Hyun", + "image": "http://static.lolesports.com/players/1758213591926_lucy.png", + "role": "none" + }, + { + "id": "105388980252039870", + "summonerName": "Pleata", + "firstName": "Minwoo", + "lastName": "Son", + "image": "http://static.lolesports.com/players/1758213747559_pleata.png", + "role": "none" + }, + { + "id": "114973639474141631", + "summonerName": "MihawK", + "firstName": "Joohyung", + "lastName": "Kim", + "image": "http://static.lolesports.com/players/1758213619771_mihawk.png", + "role": "jungle" + } + ] + }, + { + "id": "102787200120306562", + "slug": "mousesports", + "name": "MOUZ NXT", + "code": "NXTX", + "image": "http://static.lolesports.com/teams/1674832726485_PRM_MOUZ-FullColorDarkBG.png", + "alternativeImage": "http://static.lolesports.com/teams/1674832726487_PRM_MOUZ-MonochromeDarkBG.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "Prime League", + "region": "EMEA" + }, + "players": [ + { + "id": "109675451121695564", + "summonerName": "Flay", + "firstName": "Simon", + "lastName": "Menne", + "image": "http://static.lolesports.com/players/1673514564106_placeholder.png", + "role": "bottom" + }, + { + "id": "105503959523833613", + "summonerName": "Vaunted", + "firstName": "Valentin", + "lastName": "Gradow", + "image": "http://static.lolesports.com/players/1674834382980_SGE_Vaunted.png", + "role": "support" + }, + { + "id": "109512669877400506", + "summonerName": "Dreilix", + "firstName": "Dogukan", + "lastName": "Kartop", + "image": "http://static.lolesports.com/players/1671030726392_placeholder.png", + "role": "bottom" + } + ] + }, + { + "id": "102787200123059082", + "slug": "team-ldlc", + "name": "Team LDLC", + "code": "LDLX", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/melty-esport-club-gxs0kmwu.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/melty-esport-club-27x6wd9k.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [] + }, + { + "id": "102787200124959636", + "slug": "crvena-zvezda-esports", + "name": "Crvena zvezda Esports", + "code": "CZV", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/crvena-zvezda-esports-ddtlzzhd.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/crvena-zvezda-esports-ddtlzzhd.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Esports Balkan League", + "region": "EMEA" + }, + "players": [ + { + "id": "111813496565962330", + "summonerName": "Blueboar", + "firstName": "Tibor", + "lastName": "Jobban", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "none" + }, + { + "id": "112461511725281198", + "summonerName": "Profaned", + "firstName": "Timo", + "lastName": "Komrij", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + }, + { + "id": "111813497675421311", + "summonerName": "APP", + "firstName": "Nemanja", + "lastName": "Mirčić", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "108640695970381330", + "summonerName": "Alix", + "firstName": "Alihan ", + "lastName": "Özdemir", + "image": "http://static.lolesports.com/players/1657725459375_placeholder.png", + "role": "mid" + }, + { + "id": "106306504228282146", + "summonerName": "Yakkey", + "firstName": "Darius ", + "lastName": "Bistrian", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "bottom" + }, + { + "id": "105526918009696279", + "summonerName": "Seal", + "firstName": "Fabian", + "lastName": "de Lint", + "image": "http://static.lolesports.com/players/1674834525194_S04_Seal.png", + "role": "support" + }, + { + "id": "105553694947530323", + "summonerName": "Xeonerr", + "firstName": "Karol", + "lastName": "Kowalski", + "image": "http://static.lolesports.com/players/1671445033717_placeholder.png", + "role": "jungle" + } + ] + }, + { + "id": "102787200126663579", + "slug": "giants", + "name": "Giants", + "code": "GIA", + "image": "http://static.lolesports.com/teams/1641412992057_escudowhite.png", + "alternativeImage": "http://static.lolesports.com/teams/1641412992058_escudo_black.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "SuperLiga", + "region": "EMEA" + }, + "players": [] + }, + { + "id": "102787200129022886", + "slug": "esuba", + "name": "eSuba", + "code": "ESB", + "image": "http://static.lolesports.com/teams/1705300013762_HM_ESB_logo.png", + "alternativeImage": "http://static.lolesports.com/teams/1705300013763_HM_ESB_logo.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Hitpoint Masters", + "region": "EMEA" + }, + "players": [ + { + "id": "105719283417050138", + "summonerName": "Kio", + "firstName": "Simon", + "lastName": "Králik", + "image": "http://static.lolesports.com/players/1674126461439_Kio.png", + "role": "top" + }, + { + "id": "102181564347961738", + "summonerName": "Roison", + "firstName": "Michał", + "lastName": "Dubiel", + "image": "https://static.lolesports.com/players/download.png", + "role": "mid" + }, + { + "id": "108316701647764173", + "summonerName": "Vespa", + "firstName": "Marley", + "lastName": "Benezech", + "image": "http://static.lolesports.com/players/1652781701111_placeholder.png", + "role": "bottom" + }, + { + "id": "99566404545757069", + "summonerName": "max1", + "firstName": "Maximilian", + "lastName": "Abels", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "111759217525533982", + "summonerName": "Mita", + "firstName": "Mattia", + "lastName": "Masopust", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "105593133758273513", + "summonerName": "Savero", + "firstName": "Jiří", + "lastName": "Odehnal", + "image": "http://static.lolesports.com/players/download.png", + "role": "jungle" + } + ] + }, + { + "id": "102787200130988976", + "slug": "asus-rog-elite", + "name": "ASUS ROG Elite", + "code": "ASUS", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/asus-rog-elite-iouou6l.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/asus-rog-elite-cz4z103n.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "EMEA Masters", + "region": "EMEA" + }, + "players": [ + { + "id": "106371099435723939", + "summonerName": "Stefanko", + "firstName": "Stefan", + "lastName": "Todorović", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "top" + }, + { + "id": "106371100438490279", + "summonerName": "Kijac", + "firstName": "Aleksa", + "lastName": "Kijac", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "jungle" + }, + { + "id": "106371090235387032", + "summonerName": "Flaw1ess", + "firstName": "Andrija", + "lastName": "Ratković", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "jungle" + }, + { + "id": "106371095098015039", + "summonerName": "Pr1nce", + "firstName": "David", + "lastName": "Borak", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "mid" + }, + { + "id": "106371096877579587", + "summonerName": "MrMiks", + "firstName": "Mihajlo", + "lastName": "Djordjević", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "bottom" + }, + { + "id": "106371098116025503", + "summonerName": "Bona", + "firstName": "Miloš", + "lastName": "Vukadinović", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "support" + }, + { + "id": "105553698415236713", + "summonerName": "Electrising", + "firstName": "Filip", + "lastName": "Ristoski", + "image": "https://static.lolesports.com/players/download.png", + "role": "bottom" + }, + { + "id": "105553580751709507", + "summonerName": "Lexa", + "firstName": "Aleksa", + "lastName": "Ilić", + "image": "https://static.lolesports.com/players/download.png", + "role": "top" + } + ] + }, + { + "id": "102787200132955066", + "slug": "ftw-esports", + "name": "For the Win Esports Club", + "code": "FTW", + "image": "http://static.lolesports.com/teams/1738419024611_FTW_w.png", + "alternativeImage": "http://static.lolesports.com/teams/1738419024612_FTW_w.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Liga Portuguesa", + "region": "EMEA" + }, + "players": [ + { + "id": "103890051128726728", + "summonerName": "Own3r", + "firstName": "Tiago ", + "lastName": "Mendes", + "image": "https://static.lolesports.com/players/download.png", + "role": "jungle" + }, + { + "id": "104727112992514172", + "summonerName": "NOMA", + "firstName": "Paulo", + "lastName": "Rebocho", + "image": "https://static.lolesports.com/players/download.png", + "role": "mid" + }, + { + "id": "103878017699745930", + "summonerName": "Worst", + "firstName": "Ruben ", + "lastName": "Correia", + "image": "https://static.lolesports.com/players/download.png", + "role": "bottom" + }, + { + "id": "109710960558416624", + "summonerName": "Ze Luis", + "firstName": "José", + "lastName": "Martins", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "107610020225673259", + "summonerName": "Joao", + "firstName": "João", + "lastName": "Loureiro", + "image": "http://static.lolesports.com/players/1646765465395_Joao.png", + "role": "mid" + } + ] + }, + { + "id": "102787200134790084", + "slug": "hma-fnatic-rising", + "name": "HMA Fnatic Rising", + "code": "FNCR", + "image": "http://static.lolesports.com/teams/NLC_FNCR-logo.png", + "alternativeImage": "http://static.lolesports.com/teams/NLC_FNCR-logo.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "EMEA Masters", + "region": "EMEA" + }, + "players": [ + { + "id": "106589406313640231", + "summonerName": "Dajor", + "firstName": "Oliver", + "lastName": "Ryppa", + "image": "http://static.lolesports.com/players/1674150028957_dajor.png", + "role": "mid" + }, + { + "id": "103537039526273848", + "summonerName": "Pride", + "firstName": "Mahdi", + "lastName": "Nasserzadeh", + "image": "http://static.lolesports.com/players/1674835629122_EINS_Pride.png", + "role": "top" + }, + { + "id": "99566405673884850", + "summonerName": "MAXI", + "firstName": "Magnus", + "lastName": "Stenz Kristensen", + "image": "http://static.lolesports.com/players/1674126272705_Maxi.png", + "role": "jungle" + }, + { + "id": "99294153745917471", + "summonerName": "FEBIVEN", + "firstName": "Fabian", + "lastName": "Diepstraten", + "image": "http://static.lolesports.com/players/1674833681191_SKP_FEBIVEN.png", + "role": "mid" + }, + { + "id": "103877631532044730", + "summonerName": "Rhuckz", + "firstName": "Rúben Alexandre", + "lastName": "Barbosa Neves", + "image": "http://static.lolesports.com/players/1674150784410_rhuckz.png", + "role": "support" + }, + { + "id": "105519781473910809", + "summonerName": "Bean", + "firstName": "Louis", + "lastName": "Joscha Schmitz", + "image": "http://static.lolesports.com/players/1633541248506_fnc-bean-w21.png", + "role": "bottom" + }, + { + "id": "105519782893889124", + "summonerName": "LINDGARDE", + "firstName": "Hugo", + "lastName": "Lindgärde", + "image": "http://static.lolesports.com/players/fnatic-lingard-lol.png", + "role": "bottom" + }, + { + "id": "105549484801123142", + "summonerName": "delord", + "firstName": "Paweł", + "lastName": "Szabla", + "image": "http://static.lolesports.com/players/download.png", + "role": "none" + } + ] + }, + { + "id": "102787200136756173", + "slug": "berlin-international-gaming", + "name": "Berlin International Gaming", + "code": "BIG", + "image": "http://static.lolesports.com/teams/1674839453682_PRM_BIG-MonochromeLightBG.png", + "alternativeImage": "http://static.lolesports.com/teams/1674832953299_PRM_BIG-MonochromeDarkBG.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Prime League", + "region": "EMEA" + }, + "players": [ + { + "id": "106562928479704536", + "summonerName": "Densi", + "firstName": "Denis", + "lastName": "Aljic", + "image": "http://static.lolesports.com/players/1626021243792_placeholder.jpg", + "role": "jungle" + }, + { + "id": "110378594503521823", + "summonerName": "Shelfmade", + "firstName": "Francesco", + "lastName": "Cardia", + "image": "http://static.lolesports.com/players/1684243687680_placeholder.png", + "role": "top" + }, + { + "id": "113758730808113329", + "summonerName": "Leb", + "firstName": "Dimitar", + "lastName": "Kostadinov", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "106589406313640231", + "summonerName": "Dajor", + "firstName": "Oliver", + "lastName": "Ryppa", + "image": "http://static.lolesports.com/players/1674150028957_dajor.png", + "role": "mid" + }, + { + "id": "105519781473910809", + "summonerName": "Bean", + "firstName": "Louis", + "lastName": "Joscha Schmitz", + "image": "http://static.lolesports.com/players/1633541248506_fnc-bean-w21.png", + "role": "bottom" + }, + { + "id": "103536921518408674", + "summonerName": "LIMIT", + "firstName": "Dino", + "lastName": "Tot", + "image": "http://static.lolesports.com/players/1678984347447_limit.png", + "role": "support" + } + ] + }, + { + "id": "102787200138722262", + "slug": "devilsone", + "name": "devils.one x KMT", + "code": "DVKM", + "image": "http://static.lolesports.com/teams/1736965137390_Square-black.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Rift Legends", + "region": "EMEA" + }, + "players": [] + }, + { + "id": "102787200141016030", + "slug": "rogue-esports-club", + "name": "Rogue Esports Club", + "code": "REC1", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/rogue-esports-club-39uyzwi6.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/rogue-esports-club-3h8nwz5u.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "98926509769127937", + "summonerName": "Selfie", + "firstName": "Marcin", + "lastName": "Wolski", + "image": "http://static.lolesports.com/players/1583926049494_Marcin-SELFIE-Wolski_front784.png", + "role": "mid" + }, + { + "id": "99322214626033933", + "summonerName": "HeaQ", + "firstName": "Martin", + "lastName": "Kordmaa", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/heaq-2r6apoq7.png", + "role": "bottom" + }, + { + "id": "102181576078422674", + "summonerName": "behave", + "firstName": "Marcin", + "lastName": "Pawlak", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/behave-hpo1drm4.png", + "role": "jungle" + }, + { + "id": "102181576080650903", + "summonerName": "Raxxo", + "firstName": "Oskar ", + "lastName": "Bazydlo", + "image": "http://static.lolesports.com/players/1674125879390_Raxxo.png", + "role": "support" + }, + { + "id": "102787199997762691", + "summonerName": "iBo", + "firstName": "Marcin ", + "lastName": "Lebuda", + "image": "https://static.lolesports.com/players/download.png", + "role": "top" + }, + { + "id": "102181576087728793", + "summonerName": "Blueknight", + "firstName": "Nico ", + "lastName": "Jannet", + "image": "http://static.lolesports.com/players/1633541954936_rge-blueknight-w21.png", + "role": "mid" + } + ] + }, + { + "id": "102787200143309800", + "slug": "ensure", + "name": "eNsure", + "code": "EN", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/ensure-5hi6e2cg.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/ensure-fehdkert.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "EMEA Masters", + "region": "EMEA" + }, + "players": [] + }, + { + "id": "102787200145472495", + "slug": "defusekids", + "name": "Defusekids", + "code": "DKI", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/defusekids-finmimok.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/defusekids-wu2z0pj.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "102787200147504121", + "slug": "campus-party-sparks", + "name": "Campus Party Sparks", + "code": "SPKS", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/campus-party-sparks-5h2d1rjh.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/campus-party-sparks-72ccff49.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "EMEA Masters", + "region": "EMEA" + }, + "players": [ + { + "id": "99566405667666217", + "summonerName": "Rawbin IV", + "firstName": "Robin", + "lastName": "Eggenberger", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/rawbin-iv-f7lcixss.png", + "role": "jungle" + }, + { + "id": "102787200062948032", + "summonerName": "Acidy", + "firstName": "Markus", + "lastName": "Käpp", + "image": "https://static.lolesports.com/players/download.png", + "role": "top" + }, + { + "id": "102787200064651970", + "summonerName": "Librid", + "firstName": "Nikita", + "lastName": "Frunza", + "image": "https://static.lolesports.com/players/download.png", + "role": "mid" + }, + { + "id": "102787200069698249", + "summonerName": "XGine", + "firstName": "Fabrizio", + "lastName": "Ginestroni", + "image": "https://static.lolesports.com/players/download.png", + "role": "jungle" + }, + { + "id": "102808549559809228", + "summonerName": "Deidara", + "firstName": "Silverio ", + "lastName": "Masi", + "image": "https://static.lolesports.com/players/download.png", + "role": "top" + } + ] + }, + { + "id": "102787200149928963", + "slug": "we-love-gaming", + "name": "WLGaming", + "code": "WLG", + "image": "http://static.lolesports.com/teams/WLGlogo.png", + "alternativeImage": "http://static.lolesports.com/teams/WLGlogo.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Hellenic Legends League", + "region": "EMEA" + }, + "players": [ + { + "id": "107065251367588752", + "summonerName": "Nino", + "firstName": "Giannis", + "lastName": "Konomis", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "top" + }, + { + "id": "112436998569364159", + "summonerName": "Elixir", + "firstName": "AGGELOS", + "lastName": "KOSTERIAS", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "106297395575089836", + "summonerName": "Alvanai", + "firstName": "Giannis", + "lastName": "Hasanai", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "mid" + }, + { + "id": "103495716740245413", + "summonerName": "Jeyrus", + "firstName": "Tunahan", + "lastName": "Durmaz", + "image": "http://static.lolesports.com/players/jeyrus.png", + "role": "bottom" + }, + { + "id": "102787200066355908", + "summonerName": "Cospect", + "firstName": "Janar ", + "lastName": "Mändsalu", + "image": "http://static.lolesports.com/players/1675185421032_placeholder.png", + "role": "support" + }, + { + "id": "111772041601240175", + "summonerName": "Rend", + "firstName": "PARIS", + "lastName": "LIADIS", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + }, + { + "id": "115093884353159230", + "summonerName": "guggu", + "firstName": "Guga", + "lastName": "Tsertsvadze", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "102787200023364184", + "summonerName": "Bananitoo", + "firstName": "Nikolaos", + "lastName": "Fakis", + "image": "http://static.lolesports.com/players/pobrane2.png", + "role": "support" + } + ] + }, + { + "id": "102787200151698443", + "slug": "vitalitybee", + "name": "Vitality.Bee", + "code": "VITB", + "image": "http://static.lolesports.com/teams/1704733356167_VITA.png", + "alternativeImage": "http://static.lolesports.com/teams/1704733356169_VITA.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "La Ligue Française", + "region": "EMEA" + }, + "players": [ + { + "id": "114826250624840330", + "summonerName": "Vizzpers", + "firstName": "Villas", + "lastName": "Burkal Stadager", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "112438134055072580", + "summonerName": "Potent", + "firstName": "Mehdi", + "lastName": "BOUCHAFFRA", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "111686070373598724", + "summonerName": "Dawciu", + "firstName": "Dawid", + "lastName": "Drzyzga", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "102808840668792975", + "summonerName": "Czajek", + "firstName": "Mateusz", + "lastName": "Czajka", + "image": "http://static.lolesports.com/players/1754474698261_image6233.png", + "role": "mid" + }, + { + "id": "107044962045759151", + "summonerName": "Dekap", + "firstName": "Waleed Mohammad", + "lastName": "Mah'd Ismail", + "image": "http://static.lolesports.com/players/1739202709588_GKDEKAP.png", + "role": "support" + } + ] + }, + { + "id": "102787200153467923", + "slug": "bcn-squad", + "name": "BCN Squad", + "code": "BCN", + "image": "http://static.lolesports.com/teams/SL_BCN-Logo_White.png", + "alternativeImage": "http://static.lolesports.com/teams/SL_BCN-Logo_Dark.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "SuperLiga", + "region": "EMEA" + }, + "players": [ + { + "id": "105537498180718150", + "summonerName": "Xaio", + "firstName": "Alvaro", + "lastName": "Hernandez Carretero", + "image": "https://static.lolesports.com/players/download.png", + "role": "none" + }, + { + "id": "106302721520442313", + "summonerName": "Ethe", + "firstName": "Raul ", + "lastName": "Campos Vico", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "bottom" + }, + { + "id": "106302727252398950", + "summonerName": "Serch", + "firstName": "Sergio ", + "lastName": "García de la Iglesia", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "mid" + }, + { + "id": "107105592995154386", + "summonerName": "Pol", + "firstName": "Pol ", + "lastName": "Nebot Blázquez", + "image": "https://static.lolesports.com/players/download.png", + "role": "bottom" + } + ] + }, + { + "id": "102787200155434012", + "slug": "jdxl", + "name": "JD|XL", + "code": "JDXL", + "image": "http://static.lolesports.com/teams/1641489535868_jdxl.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "NLC", + "region": "EMEA" + }, + "players": [] + }, + { + "id": "102787200157400101", + "slug": "falkn", + "name": "FALKN", + "code": "FKN", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/falkn-j72aqsqk.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/falkn-dhvtpixb.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "EMEA Masters", + "region": "EMEA" + }, + "players": [ + { + "id": "99566408551072549", + "summonerName": "Grisen", + "firstName": "Emil", + "lastName": "Brouwer", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/grisen-bic7rd4c.png", + "role": "support" + }, + { + "id": "102787200003726479", + "summonerName": "Kryze", + "firstName": "Felix", + "lastName": "Hellström", + "image": "http://static.lolesports.com/players/1674125225257_Kryze.png", + "role": "top" + }, + { + "id": "102787200004709521", + "summonerName": "Skeden", + "firstName": "Theodor", + "lastName": "Nagelkerke", + "image": "https://static.lolesports.com/players/download.png", + "role": "jungle" + }, + { + "id": "102787200005627027", + "summonerName": "Darkness", + "firstName": "Rok", + "lastName": "Tekavec", + "image": "https://static.lolesports.com/players/download.png", + "role": "mid" + }, + { + "id": "102787200006610069", + "summonerName": "Namex", + "firstName": "Mikael", + "lastName": "Axelsson", + "image": "https://static.lolesports.com/players/download.png", + "role": "bottom" + } + ] + }, + { + "id": "102787200159169580", + "slug": "godsent", + "name": "Godsent", + "code": "GOD", + "image": "http://static.lolesports.com/teams/NLC_GOD-light.png", + "alternativeImage": "http://static.lolesports.com/teams/NLC_GOD-dark.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "NLC", + "region": "EMEA" + }, + "players": [] + }, + { + "id": "102804906460506452", + "slug": "lowkey-esports", + "name": "Lowkey Esports", + "code": "LK", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/lowkey-esports-cjb5dppb.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/lowkey-esports-7i213qku.png", + "backgroundImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/lowkey-esports-jpa5088f.png", + "status": "archived", + "homeLeague": { + "name": "VCS", + "region": "VIETNAM" + }, + "players": [ + { + "id": "112880372381731252", + "summonerName": "Ben01", + "firstName": "Ben", + "lastName": "Ben", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + } + ] + }, + { + "id": "102825747701670848", + "slug": "azules-esports", + "name": "Azules Esports", + "code": "UCH", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/azules-esports-ak2khbqa.png", + "alternativeImage": null, + "backgroundImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/azules-esports-e8yjxxki.png", + "status": "active", + "homeLeague": { + "name": "LLA", + "region": "LATIN AMERICA" + }, + "players": [ + { + "id": "102825747664968632", + "summonerName": "KDV", + "firstName": "Nicolás Andres", + "lastName": "Díaz Villagran", + "image": "http://static.lolesports.com/players/KLG-KRESHTDOO.png", + "role": "bottom" + }, + { + "id": "102825747670145982", + "summonerName": "N N", + "firstName": "Lucas", + "lastName": "Leiva", + "image": "http://static.lolesports.com/players/1592687294466_UCH-NN.png", + "role": "mid" + }, + { + "id": "102179937498735730", + "summonerName": "Xypherz", + "firstName": "Santiago", + "lastName": "De León", + "image": "http://static.lolesports.com/players/R7-Xypherz.png", + "role": "jungle" + } + ] + }, + { + "id": "102825747707503563", + "slug": "mad-lions-ec-colombia", + "name": "MAD Lions E.C. Colombia", + "code": "MADC", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/mad-lions-ec-colombia-9663q8bz.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "99566408534404649", + "summonerName": "Julaxe", + "firstName": "Julián", + "lastName": "Escobar", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/julaxe-cmkubrcu.png", + "role": "jungle" + }, + { + "id": "99566405777952116", + "summonerName": "Suppa", + "firstName": "Alejandro ", + "lastName": "Restrepo", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/suppa-8ebeqbkv.png", + "role": "support" + }, + { + "id": "102825747673604890", + "summonerName": "Hobbler", + "firstName": "Felipe ", + "lastName": "Tobón", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/hobbler-2mtzpx8u.png", + "role": "mid" + }, + { + "id": "102825747671849920", + "summonerName": "Sander", + "firstName": "Javier", + "lastName": "Martínez", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/sander-838bnwjz.png", + "role": "top" + }, + { + "id": "102825747673619394", + "summonerName": "Chomi", + "firstName": "José Miguel", + "lastName": "Díaz", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/chomi-6qtdmdwc.png", + "role": "bottom" + }, + { + "id": "102825747675257796", + "summonerName": "Kindle", + "firstName": "Juan", + "lastName": "Mejía", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/kindle-7x4j243i.png", + "role": "bottom" + }, + { + "id": "102825747676961734", + "summonerName": "Buggyeman", + "firstName": "César", + "lastName": "Torres", + "image": "https://static.lolesports.com/players/download.png", + "role": "support" + } + ] + }, + { + "id": "103240746393642312", + "slug": "pro-showdown-a", + "name": "All-Stars Blue", + "code": "ASB", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/pro-showdown-a-689ax378.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/pro-showdown-a-1t83mey0.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "98767991763297584", + "summonerName": "Uzi", + "firstName": "Zihao", + "lastName": "Jian", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/uzi-h5yaq040.png", + "role": "bottom" + }, + { + "id": "99124844325223302", + "summonerName": "Jankos", + "firstName": "Marcin", + "lastName": "Jankowski", + "image": "http://static.lolesports.com/players/1705027140986_jankos.png", + "role": "jungle" + }, + { + "id": "99566407754507410", + "summonerName": "Goku", + "firstName": "Bruno", + "lastName": "Miyaguchi", + "image": "http://static.lolesports.com/players/1654466796671_Gokucopy.png", + "role": "mid" + }, + { + "id": "99566404815792265", + "summonerName": "Doinb", + "firstName": "Tae-sang", + "lastName": "Kim", + "image": "http://static.lolesports.com/players/1753284142381_image6412.png", + "role": "mid" + }, + { + "id": "99566404797900723", + "summonerName": "Clid", + "firstName": "Taemin", + "lastName": "Kim", + "image": "http://static.lolesports.com/players/1686474569651_HLE_Clid.png", + "role": "jungle" + } + ] + }, + { + "id": "103240746396067146", + "slug": "pro-showdown-b", + "name": "All-Stars Red", + "code": "ASR", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/pro-showdown-b-16dt4o9s.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/pro-showdown-b-7vmjcrvm.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "98767991747728851", + "summonerName": "Faker", + "firstName": "Sanghyeok", + "lastName": "Lee", + "image": "http://static.lolesports.com/players/1758213169113_faker.png", + "role": "mid" + }, + { + "id": "98767991789638893", + "summonerName": "CoreJJ", + "firstName": "Yongin", + "lastName": "Jo", + "image": "http://static.lolesports.com/players/1726214772049_TL_1500x1500_COREJJ_03.png", + "role": "support" + }, + { + "id": "98767975943245706", + "summonerName": "C7N", + "firstName": "Van Cuong", + "lastName": "Tran", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/optimus-2dq104sj.png", + "role": "mid" + }, + { + "id": "98767975968177297", + "summonerName": "Caps", + "firstName": "Rasmus", + "lastName": "Borregaard Winther", + "image": "http://static.lolesports.com/players/1754470297805_image6227.png", + "role": "bottom" + }, + { + "id": "99566404820654675", + "summonerName": "Tian", + "firstName": "Tian-Liang", + "lastName": "Gao", + "image": "http://static.lolesports.com/players/1753285999185_image6316.png", + "role": "jungle" + } + ] + }, + { + "id": "103240746410916459", + "slug": "tft-littles-1", + "name": "TFT Littles 1", + "code": "TLI1", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/tft-littles-4q0fjyyz.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/tft-littles-bsn0vxr7.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [] + }, + { + "id": "103240746412948077", + "slug": "tft-littles-2", + "name": "TFT Littles 2", + "code": "TLI2", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/tft-littles-ds30nl9k.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/tft-littles-d0dkgg1v.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [] + }, + { + "id": "103240746414193263", + "slug": "tft-legends-1", + "name": "TFT Legends 1", + "code": "TLE1", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/tft-legends-gvv3xb2.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/tft-legends-8929h2o8.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [] + }, + { + "id": "103240746415438449", + "slug": "tft-legends-2", + "name": "TFT Legends 2", + "code": "TLE2", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/tft-legends-6or0eppt.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/tft-legends-hn9f2b5o.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [] + }, + { + "id": "103240746416552563", + "slug": "team-urf-c", + "name": "Team URF C", + "code": "UFC", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/team-urf-c-b4j0ivui.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/team-urf-c-70b9e48v.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "98767975916458257", + "summonerName": "Peanut", + "firstName": "Wangho ", + "lastName": "Han", + "image": "http://static.lolesports.com/players/1758213712978_peanut.png", + "role": "jungle" + }, + { + "id": "99322214662601038", + "summonerName": "Bwipo", + "firstName": "Gabriel", + "lastName": "Rau", + "image": "http://static.lolesports.com/players/1726214520661_FLY_1500x1500_BWIPO_01.png", + "role": "top" + }, + { + "id": "103241501161572072", + "summonerName": "JustLikeThat", + "firstName": " ", + "lastName": " ", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/justlikethat-helkanjs.png", + "role": "top" + }, + { + "id": "103241501166683882", + "summonerName": "LoL Pit", + "firstName": " ", + "lastName": " ", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/lol-pit-5dsai1mj.png", + "role": "top" + } + ] + }, + { + "id": "103240746417732213", + "slug": "team-urf-d", + "name": "Team Urf D", + "code": "UFD", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/team-urf-d-9on8x07z.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/team-urf-d-bjma4hbn.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "99322214629661297", + "summonerName": "Mikyx", + "firstName": "Mihael", + "lastName": "Mehle", + "image": "http://static.lolesports.com/players/1754469603602_image6129.png", + "role": "support" + }, + { + "id": "101196442904461047", + "summonerName": "FlashInTheNight", + "firstName": " ", + "lastName": " ", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/flashinthenight-dblpi53l.png", + "role": "top" + }, + { + "id": "101978171825868592", + "summonerName": "AHaHaCiK", + "firstName": "Kirill", + "lastName": "Skvortsov", + "image": "http://static.lolesports.com/players/1633538690711_uol-ahahacik-w21.png", + "role": "jungle" + }, + { + "id": "103241536616573889", + "summonerName": "CoolifeGame", + "firstName": " ", + "lastName": " ", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/coolifegame-d6wf4h1n.png", + "role": "top" + } + ] + }, + { + "id": "103240746418846327", + "slug": "team-assassin-a", + "name": "Team Assassin A", + "code": "TAA", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/team-assassin-a-3pnn4ps.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/team-assassin-a-jh2vye3p.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "98767975916458257", + "summonerName": "Peanut", + "firstName": "Wangho ", + "lastName": "Han", + "image": "http://static.lolesports.com/players/1758213712978_peanut.png", + "role": "jungle" + }, + { + "id": "101196422526425130", + "summonerName": "Midbeast", + "firstName": "Drew", + "lastName": "Timbs", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/midbeast-bfzpli16.png", + "role": "mid" + }, + { + "id": "98767975944639514", + "summonerName": "Evi", + "firstName": "Shunsuke", + "lastName": "Murase", + "image": "http://static.lolesports.com/players/1744279845866_SHG_Evi.png", + "role": "top" + }, + { + "id": "98767975968177297", + "summonerName": "Caps", + "firstName": "Rasmus", + "lastName": "Borregaard Winther", + "image": "http://static.lolesports.com/players/1754470297805_image6227.png", + "role": "bottom" + }, + { + "id": "103241442228316006", + "summonerName": "saonan", + "firstName": " ", + "lastName": " ", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/sao-nan-i1ucqt21.png", + "role": "mid" + } + ] + }, + { + "id": "103240746419960441", + "slug": "team-assassin-b", + "name": "Team Assassin B", + "code": "TAB", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/team-assassin-b-77so0jnc.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/team-assassin-b-3o3afz66.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [] + }, + { + "id": "103240746421271163", + "slug": "chippys", + "name": "Chippys", + "code": "OCE1", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/chippys-5p434z57.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/chippys-84sj8tr9.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [] + }, + { + "id": "103240746422450813", + "slug": "closer", + "name": "Closer", + "code": "TCL2", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/closer-bvlpqdio.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/closer-7x8gld2a.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [] + }, + { + "id": "103240746423564927", + "slug": "nomanz", + "name": "Nomanz", + "code": "LCL1", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/nomanz-i9bgpz59.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/nomanz-422027je.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "101978171799457579", + "summonerName": "Nomanz", + "firstName": "Lev", + "lastName": "Yakshin", + "image": "http://static.lolesports.com/players/1674553772453_G29.png", + "role": "mid" + } + ] + }, + { + "id": "103240746424613505", + "slug": "goku", + "name": "Goku", + "code": "BR2", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/goku-b1noag8w.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/goku-efrnznh1.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "99566407754507410", + "summonerName": "Goku", + "firstName": "Bruno", + "lastName": "Miyaguchi", + "image": "http://static.lolesports.com/players/1654466796671_Gokucopy.png", + "role": "mid" + } + ] + }, + { + "id": "103240746425727619", + "slug": "levi", + "name": "Levi", + "code": "VCS2", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/levi-xyr8owj.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/levi-3y69rlh6.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "98767975918707483", + "summonerName": "Levi", + "firstName": "Duy Khanh", + "lastName": "Do", + "image": "http://static.lolesports.com/players/1755156372575_GAM_Levi.png", + "role": "jungle" + } + ] + }, + { + "id": "103240746426776197", + "slug": "shrimp", + "name": "Shrimp", + "code": "BR1", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/shrimp-2ck86504.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/shrimp-2up208hz.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "98926509791489043", + "summonerName": "Shrimp", + "firstName": "Byeonghoon", + "lastName": "Lee", + "image": "http://static.lolesports.com/players/1717431444064_Shrimp.png", + "role": "jungle" + } + ] + }, + { + "id": "103240746427890311", + "slug": "tian", + "name": "Tian", + "code": "CN4", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/tian-5ovwonaw.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/tian-3c35ik5e.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "99566404820654675", + "summonerName": "Tian", + "firstName": "Tian-Liang", + "lastName": "Gao", + "image": "http://static.lolesports.com/players/1753285999185_image6316.png", + "role": "jungle" + } + ] + }, + { + "id": "103240746429004425", + "slug": "jankos", + "name": "Jankos", + "code": "EU2", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/jankos-j1fwri2j.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/jankos-6e57lhx3.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "99124844325223302", + "summonerName": "Jankos", + "firstName": "Marcin", + "lastName": "Jankowski", + "image": "http://static.lolesports.com/players/1705027140986_jankos.png", + "role": "jungle" + } + ] + }, + { + "id": "103240746430053003", + "slug": "theshy", + "name": "TheShy", + "code": "CN1", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/theshy-fa37rd70.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/theshy-9mthaed6.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "99566404810113891", + "summonerName": "TheShy", + "firstName": "Seung-Lok", + "lastName": "Kang", + "image": "http://static.lolesports.com/players/1753279025857_image628.png", + "role": "top" + } + ] + }, + { + "id": "103240746431167117", + "slug": "exosen", + "name": "Exosen", + "code": "LST1", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/exosen-70awi21t.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/exosen-a4zpzel8.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "100304452056573801", + "summonerName": "Exosen", + "firstName": "Gubatan", + "lastName": "Eric Allen", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/exosen-hl1squvt.png", + "role": "mid" + } + ] + }, + { + "id": "103240746432281231", + "slug": "ziv", + "name": "Ziv", + "code": "LMS2", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/ziv-c1o3ab6j.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/ziv-coekmlzo.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "98767991795284971", + "summonerName": "Ziv", + "firstName": "Yi", + "lastName": "Chen", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/ziv-h8wtpv1f.png", + "role": "top" + } + ] + }, + { + "id": "103240746433395345", + "slug": "clid", + "name": "Clid", + "code": "KR2", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/clid-91pvsok1.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/clid-1dc3pgra.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "99566404797900723", + "summonerName": "Clid", + "firstName": "Taemin", + "lastName": "Kim", + "image": "http://static.lolesports.com/players/1686474569651_HLE_Clid.png", + "role": "jungle" + } + ] + }, + { + "id": "103240746434574995", + "slug": "ahahacik", + "name": "AHaHaCiK", + "code": "LCL2", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/ahahacik-a5omvp5a.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/ahahacik-2g0371gn.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "101978171825868592", + "summonerName": "AHaHaCiK", + "firstName": "Kirill", + "lastName": "Skvortsov", + "image": "http://static.lolesports.com/players/1633538690711_uol-ahahacik-w21.png", + "role": "jungle" + } + ] + }, + { + "id": "103240746435623573", + "slug": "corejj", + "name": "CoreJJ", + "code": "NA3", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/corejj-gg4n8dex.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/corejj-fhfsh8ev.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "98767991789638893", + "summonerName": "CoreJJ", + "firstName": "Yongin", + "lastName": "Jo", + "image": "http://static.lolesports.com/players/1726214772049_TL_1500x1500_COREJJ_03.png", + "role": "support" + } + ] + }, + { + "id": "103240746436737687", + "slug": "mikyx", + "name": "Mikyx", + "code": "EU3", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/mikyx-etmkr8sg.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/mikyx-9928fzan.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "99322214629661297", + "summonerName": "Mikyx", + "firstName": "Mihael", + "lastName": "Mehle", + "image": "http://static.lolesports.com/players/1754469603602_image6129.png", + "role": "support" + } + ] + }, + { + "id": "103240746437786265", + "slug": "bwipo", + "name": "Bwipo", + "code": "EU4", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/bwipo-5nj6g99s.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/bwipo-5a9y2op0.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "99322214662601038", + "summonerName": "Bwipo", + "firstName": "Gabriel", + "lastName": "Rau", + "image": "http://static.lolesports.com/players/1726214520661_FLY_1500x1500_BWIPO_01.png", + "role": "top" + } + ] + }, + { + "id": "103240746438900379", + "slug": "bolulu", + "name": "Bolulu", + "code": "TCL1", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/bolulu-1s5r62ma.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/bolulu-480q1jnd.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "101422616387054298", + "summonerName": "Bolulu", + "firstName": "Onur", + "lastName": "Demirol", + "image": "http://static.lolesports.com/players/1717746686648_bolulu.png", + "role": "mid" + } + ] + }, + { + "id": "103240746440080029", + "slug": "doinb", + "name": "Doinb", + "code": "CN2", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/doinb-5q8hbroh.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/doinb-cfljn5np.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "99566404815792265", + "summonerName": "Doinb", + "firstName": "Tae-sang", + "lastName": "Kim", + "image": "http://static.lolesports.com/players/1753284142381_image6412.png", + "role": "mid" + } + ] + }, + { + "id": "103240746441194143", + "slug": "fofo", + "name": "Fofo", + "code": "LMS1", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/fofo-gesnmfm3.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/fofo-6prg1m7h.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [] + }, + { + "id": "103240746442308257", + "slug": "optimus", + "name": "Optimus", + "code": "VCS1", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/optimus-fqkrco8h.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/optimus-a95etst2.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "98767975943245706", + "summonerName": "C7N", + "firstName": "Van Cuong", + "lastName": "Tran", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/optimus-2dq104sj.png", + "role": "mid" + } + ] + }, + { + "id": "103461966951059521", + "slug": "evil-geniuses", + "name": "Evil Geniuses LG", + "code": "EG", + "image": "http://static.lolesports.com/teams/1592590374862_EvilGeniusesEG-01-FullonDark.png", + "alternativeImage": "http://static.lolesports.com/teams/1592590374875_EvilGeniusesEG-03-FullonLight.png", + "backgroundImage": "http://static.lolesports.com/teams/1590003096057_EvilGeniusesEG.png", + "status": "active", + "homeLeague": { + "name": "LCS", + "region": "NORTH AMERICA" + }, + "players": [] + }, + { + "id": "103461966965149786", + "slug": "mad-lions", + "name": "Movistar KOI", + "code": "MKOI", + "image": "http://static.lolesports.com/teams/1734012609283_MKOI_FullColor_Blue.png", + "alternativeImage": "http://static.lolesports.com/teams/1734012609284_MKOI_FullColor_Blue.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LEC", + "region": "EMEA" + }, + "players": [ + { + "id": "103877629120745120", + "summonerName": "Elyoya", + "firstName": "Javier ", + "lastName": "Prades", + "image": "http://static.lolesports.com/players/1754472294740_image6230.png", + "role": "jungle" + }, + { + "id": "110350224593953686", + "summonerName": "Myrwn", + "firstName": "Álex ", + "lastName": "Villarejo Pastor", + "image": "http://static.lolesports.com/players/1754472388423_image6330.png", + "role": "top" + }, + { + "id": "103536968833612789", + "summonerName": "Supa", + "firstName": "David", + "lastName": "Martínez García", + "image": "http://static.lolesports.com/players/1754472478351_image6426.png", + "role": "bottom" + }, + { + "id": "107564404490889053", + "summonerName": "Alvaro", + "firstName": "Alvaro", + "lastName": "Fernández del Amo", + "image": "http://static.lolesports.com/players/1754472148219_image6133.png", + "role": "support" + }, + { + "id": "105504920899018806", + "summonerName": "Jojopyun", + "firstName": " Joseph Joon", + "lastName": " Pyun", + "image": "http://static.lolesports.com/players/1737734741296_jojopyun.png", + "role": "mid" + } + ] + }, + { + "id": "103461966971048042", + "slug": "eg-academy", + "name": "Evil Geniuses Challengers", + "code": "EG", + "image": "http://static.lolesports.com/teams/1592590391188_EvilGeniusesEG-01-FullonDark.png", + "alternativeImage": "http://static.lolesports.com/teams/1592590391200_EvilGeniusesEG-03-FullonLight.png", + "backgroundImage": "http://static.lolesports.com/teams/1590003135776_EvilGeniusesEG.png", + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "103461966975897718", + "slug": "imt-academy", + "name": "Immortals Progressive Challengers", + "code": "IMT", + "image": "http://static.lolesports.com/teams/imt-new-color.png", + "alternativeImage": "http://static.lolesports.com/teams/imt-new-color.png", + "backgroundImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/immortals-academy-hmxmnvhe.png", + "status": "archived", + "homeLeague": null, + "players": [] + }, + { + "id": "103461966981927044", + "slug": "dig-academy", + "name": "Dignitas Challengers", + "code": "DIG", + "image": "http://static.lolesports.com/teams/DIG-FullonDark.png", + "alternativeImage": "http://static.lolesports.com/teams/DIG-FullonLight.png", + "backgroundImage": "http://static.lolesports.com/teams/DignitasDIG.png", + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "112880372381731252", + "summonerName": "Ben01", + "firstName": "Ben", + "lastName": "Ben", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + } + ] + }, + { + "id": "103461966986776720", + "slug": "ultra-prime", + "name": "Ultra Prime", + "code": "UP", + "image": "http://static.lolesports.com/teams/ultraprime.png", + "alternativeImage": "http://static.lolesports.com/teams/ultraprime.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LPL", + "region": "CHINA" + }, + "players": [ + { + "id": "111760351183343187", + "summonerName": "1Jiang", + "firstName": "Yi CHIN", + "lastName": "Chen", + "image": "http://static.lolesports.com/players/1753285614768_image6415.png", + "role": "top" + }, + { + "id": "113662769042807097", + "summonerName": "Saber", + "firstName": "Dailin", + "lastName": "Song", + "image": "http://static.lolesports.com/players/1753285471521_image6215.png", + "role": "mid" + }, + { + "id": "108013461192555452", + "summonerName": "Xiaoxia", + "firstName": "xia", + "lastName": "jingyao", + "image": "http://static.lolesports.com/players/1753285387729_image6117.png", + "role": "support" + }, + { + "id": "110547942308485140", + "summonerName": "Baiye", + "firstName": "WENXUE", + "lastName": "LIU", + "image": "http://static.lolesports.com/players/1753285681045_image6512.png", + "role": "bottom" + }, + { + "id": "115728569507119812", + "summonerName": "luoyiyu", + "firstName": "JIAJUN", + "lastName": "SHI", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "113662642563819374", + "summonerName": "Liangchen", + "firstName": "Liangchen", + "lastName": "Zhang", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "top" + } + ] + }, + { + "id": "103495716836203404", + "slug": "5-ronin", + "name": "5 Ronin", + "code": "5R", + "image": "http://static.lolesports.com/teams/5R_LOGO.png", + "alternativeImage": "http://static.lolesports.com/teams/5R_LOGO.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "TCL", + "region": "EMEA" + }, + "players": [ + { + "id": "109660335636057349", + "summonerName": "Broxy", + "firstName": "Gürkan", + "lastName": "Külahlıoğlu", + "image": "https://static.lolesports.com/players/download.png", + "role": "top" + }, + { + "id": "103478281360880158", + "summonerName": "Wind", + "firstName": "Myeongjin", + "lastName": "Oh", + "image": "http://static.lolesports.com/players/1674552673327_G4.png", + "role": "bottom" + }, + { + "id": "109660355001961734", + "summonerName": "midali", + "firstName": "Ali", + "lastName": "Tekel", + "image": "http://static.lolesports.com/players/1674552762780_G2.png", + "role": "mid" + }, + { + "id": "109660341080501895", + "summonerName": "SSADY", + "firstName": "Seong Gyu", + "lastName": "Sung", + "image": "http://static.lolesports.com/players/1674552819447_G5.png", + "role": "top" + } + ] + }, + { + "id": "103495716886587312", + "slug": "besiktas", + "name": "Beşiktaş Esports", + "code": "BJK", + "image": "http://static.lolesports.com/teams/1737386333567_BeiktaEsports.png", + "alternativeImage": "http://static.lolesports.com/teams/1737386333567_BeiktaEsports.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "TCL", + "region": "EMEA" + }, + "players": [ + { + "id": "107564453247772587", + "summonerName": "Vertigo", + "firstName": "Maximilian", + "lastName": "Rassi", + "image": "http://static.lolesports.com/players/1674834384715_SGE_Vertigo.png", + "role": "top" + }, + { + "id": "107605339681186357", + "summonerName": "CHEF", + "firstName": "Ali", + "lastName": "Durgut", + "image": "http://static.lolesports.com/players/1717746476683_chef.png", + "role": "jungle" + }, + { + "id": "109625890321208220", + "summonerName": "Ivory ", + "firstName": "Jung", + "lastName": "Yechan", + "image": "http://static.lolesports.com/players/1718371245465_CL_BRO_Ivory_784.png", + "role": "mid" + }, + { + "id": "105548640573510364", + "summonerName": "RUEP", + "firstName": "İlker", + "lastName": "Bilen", + "image": "http://static.lolesports.com/players/1705672732881_RUEP.png", + "role": "bottom" + }, + { + "id": "106368709696011395", + "summonerName": "Patch", + "firstName": "Seung Min", + "lastName": "Han", + "image": "http://static.lolesports.com/players/1717746515444_patch.png", + "role": "support" + }, + { + "id": "106462021221236384", + "summonerName": "Fade", + "firstName": "Fatih", + "lastName": "Kurşun", + "image": "http://static.lolesports.com/players/1717747747904_fade.png", + "role": "mid" + } + ] + }, + { + "id": "103535282113853330", + "slug": "5-ronin-akademi", + "name": "5 Ronin Akademi", + "code": "5R", + "image": "http://static.lolesports.com/teams/5R_LOGO.png", + "alternativeImage": "http://static.lolesports.com/teams/5R_LOGO.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "103495716629896023", + "summonerName": "Hypnos", + "firstName": "Kaan", + "lastName": "Turhan", + "image": "http://static.lolesports.com/players/1655285139653_hypnos.png", + "role": "none" + }, + { + "id": "108443038173384703", + "summonerName": "merter77", + "firstName": "Merter", + "lastName": "Mustafa ", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + }, + { + "id": "108562774911312080", + "summonerName": "BBA", + "firstName": "Aydoğdu", + "lastName": "Barış ", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "jungle" + }, + { + "id": "108562774986685347", + "summonerName": "SoldierBird", + "firstName": "Erkuş", + "lastName": "Akın ", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "mid" + }, + { + "id": "105548729942598268", + "summonerName": "150", + "firstName": "Deniz", + "lastName": "Yılmaz", + "image": "http://static.lolesports.com/players/eSports_male_NoPlayer.png", + "role": "support" + }, + { + "id": "108562774820465646", + "summonerName": "Maunter", + "firstName": "Buğrahan", + "lastName": "Urhan", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "top" + }, + { + "id": "108761118728948025", + "summonerName": "siey", + "firstName": "Mustafa", + "lastName": "Halaç", + "image": "https://static.lolesports.com/players/download.png", + "role": "mid" + } + ] + }, + { + "id": "103535282119620510", + "slug": "fukuoka-softbank-hawks-gaming", + "name": "Fukuoka SoftBank HAWKS gaming", + "code": "SHG", + "image": "http://static.lolesports.com/teams/1725885083108_SHG_White_Main.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCP", + "region": "PACIFIC" + }, + "players": [ + { + "id": "98767975944639514", + "summonerName": "Evi", + "firstName": "Shunsuke", + "lastName": "Murase", + "image": "http://static.lolesports.com/players/1744279845866_SHG_Evi.png", + "role": "top" + }, + { + "id": "103678738910712347", + "summonerName": "Marble", + "firstName": "Rei ", + "lastName": "Shimaya", + "image": "http://static.lolesports.com/players/1744279971805_SHG_Marble.png", + "role": "bottom" + }, + { + "id": "114533301242660910", + "summonerName": "Van1", + "firstName": "Seunghu", + "lastName": "Kim", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "103535282076301190", + "summonerName": "Aria", + "firstName": "Gaeul", + "lastName": "Lee", + "image": "http://static.lolesports.com/players/1744280134039_DFM_Aria.png", + "role": "mid" + }, + { + "id": "103495716560217968", + "summonerName": "Vsta", + "firstName": "Hyoseong", + "lastName": "Oh", + "image": "http://static.lolesports.com/players/1725885165785_LJL_Portraits_lolesports_SHG_Vsta.png", + "role": "support" + } + ] + }, + { + "id": "103535282124208038", + "slug": "pentanetgg", + "name": "Pentanet.GG", + "code": "PGG", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/pentanetgg-3vnqnv03.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/pentanetgg-3d4g4sbh.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCO", + "region": "OCEANIA" + }, + "players": [ + { + "id": "98767975960315466", + "summonerName": "Chippys", + "firstName": "Ryan", + "lastName": "Short", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/chippys-75s1x3vu.png", + "role": "top" + }, + { + "id": "98767975963407611", + "summonerName": "Shernfire", + "firstName": "Shern", + "lastName": "Tai", + "image": "http://static.lolesports.com/players/1655828444744_OPLON_SHERNFIRE-picture.png", + "role": "jungle" + }, + { + "id": "109675698771867688", + "summonerName": "DONGGY", + "firstName": "Donggeun", + "lastName": "Kim", + "image": "http://static.lolesports.com/players/1673518351236_placeholder.png", + "role": "mid" + }, + { + "id": "103643243250697054", + "summonerName": "Violet", + "firstName": "Vincent", + "lastName": "Wong", + "image": "http://static.lolesports.com/players/1745997118665_CHF_Violet.png", + "role": "bottom" + }, + { + "id": "105709428644866635", + "summonerName": "Apii", + "firstName": "Jianjing", + "lastName": "Yao", + "image": "http://static.lolesports.com/players/silhouette.png", + "role": "support" + }, + { + "id": "109675704367584411", + "summonerName": "Udysof", + "firstName": "Toby", + "lastName": "Horne", + "image": "http://static.lolesports.com/players/1673518436464_placeholder.png", + "role": "none" + }, + { + "id": "107634941727734818", + "summonerName": "foreigner", + "firstName": "Jeremy", + "lastName": "Lim", + "image": "https://static.lolesports.com/players/download.png", + "role": "none" + }, + { + "id": "110559376388957968", + "summonerName": "Chopley", + "firstName": "Ethan", + "lastName": "Hopley", + "image": "http://static.lolesports.com/players/1687002199686_placeholder.png", + "role": "none" + } + ] + }, + { + "id": "103535282135552642", + "slug": "papara-supermassive-blaze-akademi", + "name": "Papara SuperMassive Blaze Akademi", + "code": "SMB", + "image": "http://static.lolesports.com/teams/1628521896643_SMBA_WHITE.png", + "alternativeImage": "http://static.lolesports.com/teams/1628521896646_SMBA_BLACK.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "101978171829669684", + "summonerName": "Pop", + "firstName": "Minwook", + "lastName": "Ha", + "image": "http://static.lolesports.com/players/1655284299402_pop.png", + "role": "none" + }, + { + "id": "108443043319317183", + "summonerName": "Reeibu", + "firstName": "Bahça", + "lastName": "Muhammed ", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + }, + { + "id": "104400038818739298", + "summonerName": "Meshade", + "firstName": "Metin", + "lastName": "Yıldırım", + "image": "http://static.lolesports.com/players/meshade.png", + "role": "none" + } + ] + }, + { + "id": "103535282138043022", + "slug": "fenerbahce-espor-akademi", + "name": "Fenerbahçe Espor Akademi", + "code": "FB", + "image": "http://static.lolesports.com/teams/1642680283028_BANPICK_FB.png", + "alternativeImage": "http://static.lolesports.com/teams/1642680283035_BANPICK_FB.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "105548542489453020", + "summonerName": "361efe", + "firstName": "Efehan", + "lastName": "Ordulu", + "image": "http://static.lolesports.com/players/FB_361efe.png", + "role": "none" + }, + { + "id": "108443040578692452", + "summonerName": "NaakNako", + "firstName": "Okan", + "lastName": "Kaan ", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + }, + { + "id": "99566404559755136", + "summonerName": "SeongHwan", + "firstName": "Yun", + "lastName": "Seong Hwan", + "image": "http://static.lolesports.com/players/1655286514548_seonhwan.png", + "role": "none" + }, + { + "id": "108443040889696083", + "summonerName": "Awful", + "firstName": "Ersöz", + "lastName": "Ege ", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + } + ] + }, + { + "id": "103535282140533402", + "slug": "besiktas-akademi", + "name": "Beşiktaş Akademi", + "code": "BJK", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/besiktas-akademi-6dlbk21d.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/besiktas-akademi-fobrhai9.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "105548663662236443", + "summonerName": "Merciless", + "firstName": "Teker", + "lastName": "Cengizhan", + "image": "http://static.lolesports.com/players/Merciles.png", + "role": "none" + }, + { + "id": "101471983581051272", + "summonerName": "Robin", + "firstName": "Emray", + "lastName": "Kurt", + "image": "http://static.lolesports.com/players/1658229070533_BJK-Robin.png", + "role": "none" + } + ] + }, + { + "id": "103535282143744679", + "slug": "dark-passage-akademi", + "name": "Dark Passage Akademi", + "code": "DP", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/dark-passage-akademi-9ehs6q0l.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/dark-passage-akademi-h4x5hq6.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "100174488533148944", + "summonerName": "Pbd", + "firstName": "Alihan", + "lastName": "Ocaklı", + "image": "http://static.lolesports.com/players/1687252853414_Pbd.png", + "role": "none" + } + ] + }, + { + "id": "103535282146169523", + "slug": "info-yatrm-aurora-akademi", + "name": "Info Yatırım Aurora Akademi", + "code": "AUR", + "image": "http://static.lolesports.com/teams/1642680351930_BANPICK_AUR.png", + "alternativeImage": "http://static.lolesports.com/teams/1642680351936_BANPICK_AUR.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "104360097296530591", + "summonerName": "Kunduz", + "firstName": "Yiğit", + "lastName": "Öztürk", + "image": "http://static.lolesports.com/players/1655285939677_kunduz.png", + "role": "none" + }, + { + "id": "108443043780900367", + "summonerName": "Pat", + "firstName": "Yong", + "lastName": "Lee Seung ", + "image": "http://static.lolesports.com/players/1655285959846_pat.png", + "role": "none" + }, + { + "id": "108443092728571288", + "summonerName": "AzizYildirm", + "firstName": "Aziz Yıldırım", + "lastName": "Oruç", + "image": "http://static.lolesports.com/players/1654710275682_silhouette_transparent1.png", + "role": "none" + }, + { + "id": "108443043909796548", + "summonerName": "peop", + "firstName": "Hakan", + "lastName": "Bozoğlu", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + } + ] + }, + { + "id": "103535282148790975", + "slug": "galakticos-akademi", + "name": "GALAKTICOS Akademi", + "code": "GAL", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/galakticos-akademi-4x1ww2pc.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/galakticos-akademi-dv3kn0pg.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "108443041194004491", + "summonerName": "Zzk", + "firstName": "Won", + "lastName": "Kwen Hee ", + "image": "http://static.lolesports.com/players/1716914901979_Zzk.png", + "role": "none" + }, + { + "id": "105548547511563234", + "summonerName": "BroCColi", + "firstName": "Yoon-jae", + "lastName": "Kim", + "image": "http://static.lolesports.com/players/1655285658210_broccoli.png", + "role": "none" + }, + { + "id": "108443041309681001", + "summonerName": "yzn", + "firstName": "Akça", + "lastName": "Emre ", + "image": "http://static.lolesports.com/players/1655285681528_yzn.png", + "role": "none" + }, + { + "id": "107605527460569273", + "summonerName": "MOMER", + "firstName": "Muhammet Ömer", + "lastName": "Sefa", + "image": "http://static.lolesports.com/players/1641930042183_placeholder.png", + "role": "none" + }, + { + "id": "105548733442937653", + "summonerName": "SunShine", + "firstName": "Ali Rıza", + "lastName": "Aslan", + "image": "http://static.lolesports.com/players/eSports_male_NoPlayer.png", + "role": "none" + }, + { + "id": "108397469254679023", + "summonerName": "Phraser", + "firstName": "Vatansever", + "lastName": "Berk", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "top" + }, + { + "id": "108721377259532166", + "summonerName": "Rame", + "firstName": "Arda", + "lastName": "Arıkan", + "image": "http://static.lolesports.com/players/1658959043695_silhouette_transparent1.png", + "role": "jungle" + }, + { + "id": "108721462524857342", + "summonerName": "Hosto", + "firstName": "Ali Kaan", + "lastName": "Dağ", + "image": "http://static.lolesports.com/players/1658959074281_silhouette_transparent1.png", + "role": "mid" + }, + { + "id": "108443044098881047", + "summonerName": "Fynox", + "firstName": "Yiğit", + "lastName": "Doğan", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "bottom" + }, + { + "id": "108761125913594173", + "summonerName": "carium", + "firstName": "İsmail", + "lastName": "Tülü", + "image": "https://static.lolesports.com/players/download.png", + "role": "support" + } + ] + }, + { + "id": "103535282151674574", + "slug": "royal-youth-akademi", + "name": "Royal Youth Akademi", + "code": "RYLA", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/royal-youth-akademi-ik7q4hsk.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/royal-youth-akademi-aq66cvx9.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "TCL", + "region": "EMEA" + }, + "players": [ + { + "id": "112880372381731252", + "summonerName": "Ben01", + "firstName": "Ben", + "lastName": "Ben", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + } + ] + }, + { + "id": "103535282158162659", + "slug": "fastpay-wildcats-akademi", + "name": "DenizBank İstanbul Wildcats Akademi", + "code": "IW", + "image": "http://static.lolesports.com/teams/1654773553363_DenizBankIstanbulWildcatsWhite1.png", + "alternativeImage": "http://static.lolesports.com/teams/1654773553364_DenizBankIstanbulWildcatsWhite1.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "103743100364537565", + "slug": "falkol", + "name": "Falkol", + "code": "FKL", + "image": "http://static.lolesports.com/teams/1582994083390_Logo%20Falkol.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [] + }, + { + "id": "103743103374986730", + "slug": "havan-liberty", + "name": "Havan Liberty", + "code": "HL", + "image": "http://static.lolesports.com/teams/1582994128849_HL%20Logo.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "CBLOL", + "region": "BRAZIL" + }, + "players": [ + { + "id": "112880372381731252", + "summonerName": "Ben01", + "firstName": "Ben", + "lastName": "Ben", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + } + ] + }, + { + "id": "103743106731085292", + "slug": "intergalaxy-tigers", + "name": "Intergalaxy Tigers", + "code": "ITX", + "image": "http://static.lolesports.com/teams/1582994180864_LogoTigers.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "103743605928031045", + "summonerName": "Eradan", + "firstName": "André", + "lastName": "Santos", + "image": "http://static.lolesports.com/players/1686346730258_Eradan.png", + "role": "top" + }, + { + "id": "103743607020404502", + "summonerName": "nanoooooo", + "firstName": "Antonio", + "lastName": "Neto", + "image": "http://static.lolesports.com/players/1684834795040_placeholder.png", + "role": "support" + }, + { + "id": "103743608285957663", + "summonerName": "Bgob", + "firstName": "Bruno", + "lastName": "Botelho", + "image": "https://static.lolesports.com/players/download.png", + "role": "jungle" + }, + { + "id": "103743610776908619", + "summonerName": "Inoue", + "firstName": "Nikollas", + "lastName": "Inoue", + "image": "https://static.lolesports.com/players/download.png", + "role": "bottom" + }, + { + "id": "103743612797776718", + "summonerName": "Snowlz", + "firstName": "Guilherme", + "lastName": "Neves", + "image": "https://static.lolesports.com/players/download.png", + "role": "mid" + }, + { + "id": "103743614021537314", + "summonerName": "Deoxys", + "firstName": "Luis", + "lastName": "Gustavo", + "image": "https://static.lolesports.com/players/download.png", + "role": "mid" + } + ] + }, + { + "id": "103743162394217975", + "slug": "santos-hotforex", + "name": "Santos HotForex", + "code": "SAN", + "image": "http://static.lolesports.com/teams/1591044344020_LogoSantosHotForex.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "CBLOL", + "region": "BRAZIL" + }, + "players": [ + { + "id": "112880372381731252", + "summonerName": "Ben01", + "firstName": "Ben", + "lastName": "Ben", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + } + ] + }, + { + "id": "103877554246714848", + "slug": "fc-schalke-04-evolution", + "name": "FC Schalke 04 Evolution", + "code": "S04X", + "image": "http://static.lolesports.com/teams/1585045687592_220px-FC_Schalke_04_Esportslogo_square.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "Prime League", + "region": "EMEA" + }, + "players": [ + { + "id": "112880372381731252", + "summonerName": "Ben01", + "firstName": "Ben", + "lastName": "Ben", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + } + ] + }, + { + "id": "103877554248683116", + "slug": "schalke-04-evolution", + "name": "Schalke 04 Evolution", + "code": "S04E", + "image": "http://static.lolesports.com/teams/S04_Standard_Logo1.png", + "alternativeImage": "http://static.lolesports.com/teams/S04_Standard_Logo1.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Prime League", + "region": "EMEA" + }, + "players": [ + { + "id": "100238780555290735", + "summonerName": "Yoppa", + "firstName": "Pavle", + "lastName": "Kostíc", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/yoppa-f5mhomx2.png", + "role": "top" + }, + { + "id": "103889878162215346", + "summonerName": "Obsess", + "firstName": "Patrick ", + "lastName": "Engelmann", + "image": "http://static.lolesports.com/players/1674835234407_EWI_Obsess.png", + "role": "jungle" + }, + { + "id": "105554438549198842", + "summonerName": "Kynetic", + "firstName": "Leander", + "lastName": "Sydekum", + "image": "http://static.lolesports.com/players/1674834764815_MOUZ_Kynetic.png", + "role": "bottom" + }, + { + "id": "99566405666840029", + "summonerName": "Tolerant", + "firstName": "Barış", + "lastName": "Çepnioğlu", + "image": "http://static.lolesports.com/players/1591438488067_tolerant.png", + "role": "support" + }, + { + "id": "105554439426664062", + "summonerName": "Rodrigo", + "firstName": "Rodrigo", + "lastName": "Domingues Oliveira", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "101422616391248613", + "summonerName": "Zwyroo", + "firstName": "Artur", + "lastName": "Trojan", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/zwyroo-gwwkccjm.png", + "role": "mid" + } + ] + }, + { + "id": "103877589042434434", + "slug": "gamerlegion", + "name": "GamerLegion", + "code": "GL1", + "image": "http://static.lolesports.com/teams/1674832741057_PRM_GL-FullColorDarkBG.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "Prime League", + "region": "EMEA" + }, + "players": [ + { + "id": "106302871842509777", + "summonerName": "Akabane", + "firstName": "Philippe", + "lastName": "Le", + "image": "http://static.lolesports.com/players/1655827189056_GAMEWARD_AKABANE-picture.png", + "role": "jungle" + }, + { + "id": "103877770392998515", + "summonerName": "Phantomles", + "firstName": "Kim ", + "lastName": "Storm", + "image": "http://static.lolesports.com/players/placeholder.png", + "role": "mid" + }, + { + "id": "106272980284019109", + "summonerName": "jinjo", + "firstName": "Ronan", + "lastName": "Swingler", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "bottom" + }, + { + "id": "105321453610920052", + "summonerName": "Winter 7", + "firstName": "Yohan", + "lastName": "Kim", + "image": "http://static.lolesports.com/players/1632939116759_hle-yohan-w21.png", + "role": "jungle" + }, + { + "id": "110378536038331882", + "summonerName": "zlaksd", + "firstName": "Hoangphuc", + "lastName": "To", + "image": "http://static.lolesports.com/players/1684242795347_placeholder.png", + "role": "none" + }, + { + "id": "107156544177574787", + "summonerName": "Tracyn", + "firstName": "Sebastian", + "lastName": "Wojtoń", + "image": "http://static.lolesports.com/players/1674834923978_GL_Tracyn.png", + "role": "top" + }, + { + "id": "103877599618926100", + "summonerName": "Visdom", + "firstName": "Benjamin ", + "lastName": "Ruberg Larsen", + "image": "http://static.lolesports.com/players/1674834922235_GL_Visdom.png", + "role": "support" + } + ] + }, + { + "id": "103877625775457850", + "slug": "movistar-riders", + "name": "Movistar Riders", + "code": "MRS", + "image": "http://static.lolesports.com/teams/1585046777741_220px-Movistar_Riderslogo_square.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "SuperLiga", + "region": "EMEA" + }, + "players": [ + { + "id": "111584551599144799", + "summonerName": "Emvipi", + "firstName": "Agustín", + "lastName": "Romero Bueno", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "jungle" + } + ] + }, + { + "id": "103877675241047720", + "slug": "ldlc-ol", + "name": "LDLC OL", + "code": "LDLC", + "image": "http://static.lolesports.com/teams/LFL-LDLC-logo.png", + "alternativeImage": "http://static.lolesports.com/teams/LFL-LDLC-logo.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "La Ligue Française", + "region": "EMEA" + }, + "players": [ + { + "id": "99591585009210856", + "summonerName": "Backlund", + "firstName": "Jonathan", + "lastName": "Bäcklund", + "image": "http://static.lolesports.com/players/1674125175307_Backlund.png", + "role": "mid" + }, + { + "id": "109485133366537150", + "summonerName": "Greedyz", + "firstName": "Cyril", + "lastName": "Magakian", + "image": "http://static.lolesports.com/players/1670610553222_placeholder.png", + "role": "none" + }, + { + "id": "103889905542957250", + "summonerName": "Jeskla", + "firstName": "Jesper Klarin ", + "lastName": "Stromberg", + "image": "http://static.lolesports.com/players/1674125197939_Jeskla.png", + "role": "bottom" + } + ] + }, + { + "id": "103877737868887783", + "slug": "saim-se", + "name": "SAIM SE", + "code": "SSBB", + "image": "http://static.lolesports.com/teams/1585048488568_220px-SAIM_SElogo_square.png", + "alternativeImage": "http://static.lolesports.com/teams/1585048488582_220px-SAIM_SElogo_square.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Esports Balkan League", + "region": "EMEA" + }, + "players": [ + { + "id": "103877733238936104", + "summonerName": "Darlik", + "firstName": "Aymeric", + "lastName": "Garcon", + "image": "http://static.lolesports.com/players/1655828402868_OPLON_DARLIK-picture.png", + "role": "top" + }, + { + "id": "100238780554581129", + "summonerName": "Kashtelan", + "firstName": "Gawel ", + "lastName": "Paprzycki", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/kashtelan-b2avz82u.png", + "role": "mid" + } + ] + }, + { + "id": "103877756742242918", + "slug": "racoon", + "name": "Racoon", + "code": "RCN", + "image": "http://static.lolesports.com/teams/1585048776551_220px-Racoon_(Italian_Team)logo_square.png", + "alternativeImage": "http://static.lolesports.com/teams/1585048776564_220px-Racoon_(Italian_Team)logo_square.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "103877750742126405", + "summonerName": "Ploxy", + "firstName": "Ole Martin ", + "lastName": "Glomsaas", + "image": "https://static.lolesports.com/players/download.png", + "role": "jungle" + }, + { + "id": "103877752616912627", + "summonerName": "Rharesh", + "firstName": "Riccardo ", + "lastName": "Tata", + "image": "https://static.lolesports.com/players/download.png", + "role": "bottom" + }, + { + "id": "103877754104484436", + "summonerName": "Lurian", + "firstName": "Rosario ", + "lastName": "Iovino", + "image": "https://static.lolesports.com/players/download.png", + "role": "bottom" + }, + { + "id": "102808549559809228", + "summonerName": "Deidara", + "firstName": "Silverio ", + "lastName": "Masi", + "image": "https://static.lolesports.com/players/download.png", + "role": "top" + }, + { + "id": "104711049101664016", + "summonerName": "Fresskowy", + "firstName": "Bartłomiej", + "lastName": "Przewoźnik", + "image": "http://static.lolesports.com/players/1705026622019_fresskowy.png", + "role": "mid" + }, + { + "id": "104711156397896410", + "summonerName": "Darkchri", + "firstName": "Christian", + "lastName": "Devo", + "image": "http://static.lolesports.com/players/1597765443454_czekolad-51vwzmjl.png", + "role": "support" + } + ] + }, + { + "id": "103877774634323825", + "slug": "ydn-gamers", + "name": "YDN Gamers", + "code": "YDN", + "image": "http://static.lolesports.com/teams/1587638409857_LOGO_YDN_-trasp.png", + "alternativeImage": "http://static.lolesports.com/teams/1587638409876_LOGO_YDN_-trasp.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "103877768631718512", + "summonerName": "Gabbo", + "firstName": "Gabriel ", + "lastName": "Olivieri", + "image": "http://static.lolesports.com/players/1671449397438_placeholder.png", + "role": "top" + }, + { + "id": "103877769654699780", + "summonerName": "Tabasko", + "firstName": "Wojciech", + "lastName": "Kruza", + "image": "http://static.lolesports.com/players/pobrane2.png", + "role": "jungle" + }, + { + "id": "103877770392998515", + "summonerName": "Phantomles", + "firstName": "Kim ", + "lastName": "Storm", + "image": "http://static.lolesports.com/players/placeholder.png", + "role": "mid" + }, + { + "id": "102787200066355908", + "summonerName": "Cospect", + "firstName": "Janar ", + "lastName": "Mändsalu", + "image": "http://static.lolesports.com/players/1675185421032_placeholder.png", + "role": "support" + }, + { + "id": "103889996269425173", + "summonerName": "Occlumats", + "firstName": "Alessandro ", + "lastName": "Di Bartolo", + "image": "https://static.lolesports.com/players/download.png", + "role": "top" + }, + { + "id": "103890014776920379", + "summonerName": "Endz", + "firstName": "Lauri ", + "lastName": "Tarkus", + "image": "http://static.lolesports.com/players/1642067830481_placeholder.png", + "role": "bottom" + } + ] + }, + { + "id": "103877879209300619", + "slug": "vipers-inc", + "name": "Vipers Inc", + "code": "VIPX", + "image": "http://static.lolesports.com/teams/1585050644953_220px-Vipers_Inclogo_square.png", + "alternativeImage": "http://static.lolesports.com/teams/1585050644968_220px-Vipers_Inclogo_square.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "103877786921898631", + "summonerName": "BeBopBulli", + "firstName": "David ", + "lastName": "Siira", + "image": "https://static.lolesports.com/players/download.png", + "role": "support" + }, + { + "id": "102787200033981028", + "summonerName": "Quincidence", + "firstName": "Markus ", + "lastName": "Tobin", + "image": "https://static.lolesports.com/players/download.png", + "role": "top" + }, + { + "id": "103935346652592532", + "summonerName": "Legions", + "firstName": "Páll", + "lastName": "Minh Phuong Jakobsson", + "image": "https://static.lolesports.com/players/download.png", + "role": "mid" + }, + { + "id": "103935350730345429", + "summonerName": "Kalhira", + "firstName": "David ", + "lastName": "Lyngbye", + "image": "https://static.lolesports.com/players/download.png", + "role": "support" + } + ] + }, + { + "id": "103877891572305836", + "slug": "team-singularity", + "name": "Team Singularity", + "code": "SNG", + "image": "http://static.lolesports.com/teams/NLC_SNG-light.png", + "alternativeImage": "http://static.lolesports.com/teams/NLC_SNG-logo.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "NLC", + "region": "EMEA" + }, + "players": [] + }, + { + "id": "103877908090914662", + "slug": "kenty", + "name": "Kenty", + "code": "KEN", + "image": "http://static.lolesports.com/teams/1585051086000_220px-Kentylogo_square.png", + "alternativeImage": "http://static.lolesports.com/teams/1585051086014_220px-Kentylogo_square.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "103877897062123350", + "summonerName": "Smacl3r", + "firstName": "Dalius", + "lastName": "Žukauskas", + "image": "https://static.lolesports.com/players/download.png", + "role": "top" + }, + { + "id": "103877897979891635", + "summonerName": "Barsas", + "firstName": "Aironas", + "lastName": "Rajunčius", + "image": "https://static.lolesports.com/players/download.png", + "role": "jungle" + }, + { + "id": "103877899887972296", + "summonerName": "Rimtuolis", + "firstName": "Ernestas ", + "lastName": "Labanauskas", + "image": "https://static.lolesports.com/players/download.png", + "role": "mid" + }, + { + "id": "103877900686135244", + "summonerName": "Nemky", + "firstName": "Nemanja ", + "lastName": "Josimov", + "image": "https://static.lolesports.com/players/download.png", + "role": "bottom" + }, + { + "id": "103877904936142684", + "summonerName": "SpieleAufDe", + "firstName": "Kevin", + "lastName": "Gärtner", + "image": "https://static.lolesports.com/players/download.png", + "role": "support" + }, + { + "id": "103935409702268246", + "summonerName": "Warden", + "firstName": "Lukas", + "lastName": "Lenikas", + "image": "https://static.lolesports.com/players/download.png", + "role": "jungle" + } + ] + }, + { + "id": "103877925817094140", + "slug": "pigsports", + "name": "PIGSPORTS", + "code": "PIG", + "image": "http://static.lolesports.com/teams/PIGSPORTS_PIG-Logo1.png", + "alternativeImage": "http://static.lolesports.com/teams/PIGSPORTS_PIG-Logo1.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "103877915901072133", + "summonerName": "Godux", + "firstName": "Jānis", + "lastName": "Kamergrauzis", + "image": "https://static.lolesports.com/players/download.png", + "role": "top" + }, + { + "id": "103877918499574543", + "summonerName": "HmlssMaster", + "firstName": "Gints", + "lastName": "Gaismiņš", + "image": "https://static.lolesports.com/players/download.png", + "role": "jungle" + }, + { + "id": "103877922435239917", + "summonerName": "bAZZILISKS", + "firstName": "Edgars ", + "lastName": "Salmiņš", + "image": "https://static.lolesports.com/players/download.png", + "role": "support" + }, + { + "id": "103877923901083633", + "summonerName": "Klydex", + "firstName": "Mārtiņš ", + "lastName": "Zālītis", + "image": "https://static.lolesports.com/players/download.png", + "role": "bottom" + }, + { + "id": "105521207356457513", + "summonerName": "Facen", + "firstName": "Jānis", + "lastName": "Lauskis", + "image": "https://static.lolesports.com/players/download.png", + "role": "mid" + }, + { + "id": "103877920947570542", + "summonerName": "mag1cian", + "firstName": "Fricis ", + "lastName": "Krūmiņš", + "image": "https://static.lolesports.com/players/download.png", + "role": "jungle" + }, + { + "id": "105735970660359786", + "summonerName": "mata1", + "firstName": "Edgars Dmitrijs", + "lastName": "Cepurnieks", + "image": "http://static.lolesports.com/players/placeholder.png", + "role": "jungle" + } + ] + }, + { + "id": "103877951616192529", + "slug": "cyber-gaming", + "name": "Cyber Gaming", + "code": "CYBG", + "image": "http://static.lolesports.com/teams/1585051749524_220px-Cyber_Gaminglogo_square.png", + "alternativeImage": "http://static.lolesports.com/teams/1585051749529_220px-Cyber_Gaminglogo_square.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "Hitpoint Masters", + "region": "EMEA" + }, + "players": [ + { + "id": "102808654052887958", + "summonerName": "Wondro", + "firstName": "Ondrej ", + "lastName": "Kenda", + "image": "https://static.lolesports.com/players/download.png", + "role": "top" + }, + { + "id": "103877933600411651", + "summonerName": "Lylajn", + "firstName": "Martin", + "lastName": "Tonka", + "image": "https://static.lolesports.com/players/download.png", + "role": "jungle" + }, + { + "id": "103877934266454022", + "summonerName": "Proker", + "firstName": "Libor ", + "lastName": "Král", + "image": "http://static.lolesports.com/players/kova-proker-lol.png", + "role": "mid" + }, + { + "id": "102808670736472083", + "summonerName": "PiOk", + "firstName": "Lukas ", + "lastName": "Lorinc", + "image": "https://static.lolesports.com/players/download.png", + "role": "bottom" + }, + { + "id": "103877936172959634", + "summonerName": "Pitress", + "firstName": "Petr ", + "lastName": "Heinzke", + "image": "https://static.lolesports.com/players/download.png", + "role": "support" + }, + { + "id": "103935388074986458", + "summonerName": "Kyoshi", + "firstName": "Erik ", + "lastName": "Toman", + "image": "http://static.lolesports.com/players/download.png", + "role": "top" + } + ] + }, + { + "id": "103877976717529187", + "slug": "intrepid-fox-gaming", + "name": "Intrepid Fox Gaming", + "code": "IF", + "image": "http://static.lolesports.com/teams/1585052132267_220px-Intrepid_Fox_Gaminglogo_square.png", + "alternativeImage": "http://static.lolesports.com/teams/1585052132281_220px-Intrepid_Fox_Gaminglogo_square.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107065253980471657", + "summonerName": "Ardenein", + "firstName": "Ardenein", + "lastName": "Ardenein", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "105655740244843805", + "summonerName": "Fame", + "firstName": "Basilis", + "lastName": "Amoiridis", + "image": "http://static.lolesports.com/players/1633689643853_silhouette.png", + "role": "none" + }, + { + "id": "107179443167668057", + "summonerName": "dan1hl", + "firstName": "Danihl", + "lastName": "Salgkamis", + "image": "https://static.lolesports.com/players/download.png", + "role": "top" + } + ] + }, + { + "id": "103878020539746273", + "slug": "egn-esports", + "name": "EGN Esports", + "code": "EGN", + "image": "http://static.lolesports.com/teams/1684952015639_EGN.png", + "alternativeImage": "http://static.lolesports.com/teams/1684952015640_EGN.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "98767991750309549", + "summonerName": "Diamondprox", + "firstName": "Danil", + "lastName": "Reshetnikov", + "image": "http://static.lolesports.com/players/Diamondproxcopy.png", + "role": "jungle" + }, + { + "id": "105589313365492310", + "summonerName": "Vortum", + "firstName": "Diogo", + "lastName": "Couto", + "image": "https://static.lolesports.com/players/download.png", + "role": "top" + }, + { + "id": "103890051128726728", + "summonerName": "Own3r", + "firstName": "Tiago ", + "lastName": "Mendes", + "image": "https://static.lolesports.com/players/download.png", + "role": "jungle" + }, + { + "id": "104727112992514172", + "summonerName": "NOMA", + "firstName": "Paulo", + "lastName": "Rebocho", + "image": "https://static.lolesports.com/players/download.png", + "role": "mid" + }, + { + "id": "112455349063495579", + "summonerName": "SoIdier", + "firstName": "Thomas", + "lastName": "Haudecoeur", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "107610020225673259", + "summonerName": "Joao", + "firstName": "João", + "lastName": "Loureiro", + "image": "http://static.lolesports.com/players/1646765465395_Joao.png", + "role": "support" + } + ] + }, + { + "id": "103935421249833954", + "slug": "mad-lions-madrid", + "name": "MAD Lions Madrid", + "code": "MADM", + "image": "http://static.lolesports.com/teams/SL_MADM-Logo_white.png", + "alternativeImage": "http://static.lolesports.com/teams/SL_MADM-Logo_dark.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "SuperLiga", + "region": "EMEA" + }, + "players": [] + }, + { + "id": "103935446548920777", + "slug": "misfits-premier", + "name": "Misfits Premier", + "code": "MSFP", + "image": "http://static.lolesports.com/teams/LFL-MSFP-logo.png", + "alternativeImage": "http://static.lolesports.com/teams/LFL-MSFP-logo.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "La Ligue Française", + "region": "EMEA" + }, + "players": [] + }, + { + "id": "103935468920814040", + "slug": "galions", + "name": "Galions", + "code": "GL", + "image": "http://static.lolesports.com/teams/1734090136444_WHITE_GALIONS_LOGO.png", + "alternativeImage": "http://static.lolesports.com/teams/1734090136444_WHITE_GALIONS_LOGO-FULL.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "La Ligue Française", + "region": "EMEA" + }, + "players": [ + { + "id": "108531184775091361", + "summonerName": "Thayger", + "firstName": "Francisco ", + "lastName": "Mazo Sánchez", + "image": "http://static.lolesports.com/players/1754473208611_image6525.png", + "role": "jungle" + }, + { + "id": "105593236438009434", + "summonerName": "OMON", + "firstName": "Šimon", + "lastName": "Říháček", + "image": "http://static.lolesports.com/players/placeholder_.jpg", + "role": "mid" + }, + { + "id": "105646098955896397", + "summonerName": "Carlsen", + "firstName": "Carl Ulsted", + "lastName": "Carlsen", + "image": "http://static.lolesports.com/players/1754474144629_image6136.png", + "role": "top" + }, + { + "id": "105830677772400941", + "summonerName": "Zoelys", + "firstName": "Théo", + "lastName": "Le Scornec", + "image": "http://static.lolesports.com/players/1705026900955_zoelys.png", + "role": "support" + }, + { + "id": "105530924527575757", + "summonerName": "HARPOON", + "firstName": "Franek", + "lastName": "Gryszkiewicz", + "image": "http://static.lolesports.com/players/1674835759819_BIG_Harpoon.png", + "role": "bottom" + } + ] + }, + { + "id": "103935523328473675", + "slug": "k1ck-neosurf", + "name": "K1CK Neosurf", + "code": "K1", + "image": "http://static.lolesports.com/teams/1585930223604_K1ck_Neosurflogo_square.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "103946717109415892", + "summonerName": "Puki Style", + "firstName": "Łukasz", + "lastName": "Zygmunciak", + "image": "http://static.lolesports.com/players/1590671683051_Puki.png", + "role": "bottom" + } + ] + }, + { + "id": "103935530333072898", + "slug": "ago-rogue", + "name": "AGO Rogue", + "code": "RGO", + "image": "http://static.lolesports.com/teams/1585930330127_AGO_ROGUElogo_square.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "102808840667875469", + "summonerName": "Sinmivak", + "firstName": "Jakub", + "lastName": "Rucki", + "image": "https://static.lolesports.com/players/download.png", + "role": "top" + }, + { + "id": "103877598722756999", + "summonerName": "Rabble", + "firstName": "Jochem", + "lastName": "van Graafeiland", + "image": "https://static.lolesports.com/players/download.png", + "role": "jungle" + }, + { + "id": "102808727764396981", + "summonerName": "Nite", + "firstName": "Ardian ", + "lastName": "Spahiu", + "image": "http://static.lolesports.com/players/1674835236394_EWI_Nite.png", + "role": "mid" + }, + { + "id": "102787200103252739", + "summonerName": "Lucker", + "firstName": "Damian", + "lastName": "Konefał", + "image": "http://static.lolesports.com/players/1591036330572_silhouette.png", + "role": "bottom" + }, + { + "id": "99322214243134013", + "summonerName": "promisq", + "firstName": "Hampus ", + "lastName": "Abrahamsson", + "image": "http://static.lolesports.com/players/1642003205916_promisq.png", + "role": "support" + }, + { + "id": "102181576087728793", + "summonerName": "Blueknight", + "firstName": "Nico ", + "lastName": "Jannet", + "image": "http://static.lolesports.com/players/1633541954936_rge-blueknight-w21.png", + "role": "mid" + } + ] + }, + { + "id": "103935567188806885", + "slug": "energypot-wizards", + "name": "Energypot Wizards", + "code": "EWIZ", + "image": "http://static.lolesports.com/teams/1585930892362_Energypot_Wizardslogo_square.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Esports Balkan League", + "region": "EMEA" + }, + "players": [ + { + "id": "112880372381731252", + "summonerName": "Ben01", + "firstName": "Ben", + "lastName": "Ben", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + } + ] + }, + { + "id": "103935642731826448", + "slug": "sector-one", + "name": "Sector One", + "code": "S1", + "image": "http://static.lolesports.com/teams/1641288621852_1024x1024_sector_one_nameless_white.png", + "alternativeImage": "http://static.lolesports.com/teams/1641288621854_1024x1024_sector_one_nameless_black.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "103963647433204351", + "slug": "m19", + "name": "M19", + "code": "M19", + "image": "http://static.lolesports.com/teams/1586359360406_M19logo_square.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCL", + "region": "COMMONWEALTH OF INDEPENDENT STATES" + }, + "players": [ + { + "id": "103963602289454924", + "summonerName": "Shellkunchi", + "firstName": "Nikita", + "lastName": "Iulskii", + "image": "https://static.lolesports.com/players/download.png", + "role": "top" + }, + { + "id": "103963603891806719", + "summonerName": "FallenAngel", + "firstName": "Viktor", + "lastName": "Kordanovski", + "image": "https://static.lolesports.com/players/download.png", + "role": "jungle" + }, + { + "id": "103963605322785298", + "summonerName": "Shlyapojor", + "firstName": "Nikita", + "lastName": "Gudkov", + "image": "https://static.lolesports.com/players/download.png", + "role": "mid" + }, + { + "id": "103963624619798483", + "summonerName": "Miracle", + "firstName": "Ruslan", + "lastName": "Zainulin", + "image": "http://static.lolesports.com/players/1644409575406_miracle.png", + "role": "support" + } + ] + }, + { + "id": "103963715924353674", + "slug": "dragon-army", + "name": "Dragon Army", + "code": "DARM", + "image": "http://static.lolesports.com/teams/1586360405423_440px-Dragon_Armylogo_square.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCL", + "region": "COMMONWEALTH OF INDEPENDENT STATES" + }, + "players": [ + { + "id": "103963697576547635", + "summonerName": "Dimonko", + "firstName": "Dmitry", + "lastName": "Korovushkin", + "image": "http://static.lolesports.com/players/1644409175167_Dimonko.png", + "role": "support" + }, + { + "id": "105700897129502225", + "summonerName": "Balkane", + "firstName": "Kristian", + "lastName": "Lendiel", + "image": "http://static.lolesports.com/players/1644409385272_Balkane.png", + "role": "jungle" + }, + { + "id": "107688967653885858", + "summonerName": "Lunarage", + "firstName": "Dmitrii", + "lastName": "Gachayev", + "image": "http://static.lolesports.com/players/1643203235212_placeholder.png", + "role": "mid" + }, + { + "id": "107688965510203294", + "summonerName": "Punisher88", + "firstName": "Nikita", + "lastName": "Lavrinov", + "image": "http://static.lolesports.com/players/1644409249904_Punisher.png", + "role": "jungle" + }, + { + "id": "103963624619798483", + "summonerName": "Miracle", + "firstName": "Ruslan", + "lastName": "Zainulin", + "image": "http://static.lolesports.com/players/1644409575406_miracle.png", + "role": "support" + }, + { + "id": "106467183702433432", + "summonerName": "Imperial", + "firstName": "Yevhenii", + "lastName": "Sorokin", + "image": "http://static.lolesports.com/players/1644409436066_Imperial.png", + "role": "bottom" + }, + { + "id": "105519812395588370", + "summonerName": "Silk", + "firstName": "Ivan", + "lastName": "Gantsyuk Korol", + "image": "http://static.lolesports.com/players/1644409493753_Silk.png", + "role": "mid" + }, + { + "id": "107688960045460307", + "summonerName": "kPr", + "firstName": "Maxim", + "lastName": "Grebonos", + "image": "http://static.lolesports.com/players/1644409534247_kPr.png", + "role": "top" + }, + { + "id": "107950410801073193", + "summonerName": "Coldfeeling", + "firstName": "Sergei", + "lastName": "Chuvankin", + "image": "http://static.lolesports.com/players/1647192539046_placeholder.png", + "role": "bottom" + } + ] + }, + { + "id": "103963753080578719", + "slug": "crowcrowd-moscow", + "name": "CrowCrowd Moscow", + "code": "CC", + "image": "http://static.lolesports.com/teams/Logo_CC.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCL", + "region": "COMMONWEALTH OF INDEPENDENT STATES" + }, + "players": [ + { + "id": "107614620822269031", + "summonerName": "T1moha", + "firstName": "Timofey", + "lastName": "Dmitriev", + "image": "http://static.lolesports.com/players/1642068795014_placeholder.png", + "role": "top" + }, + { + "id": "106550309111534158", + "summonerName": "Dimill", + "firstName": "Dmitry", + "lastName": "Timofeev", + "image": "https://static.lolesports.com/players/download.png", + "role": "support" + } + ] + }, + { + "id": "103963768923385902", + "slug": "elements-pro-gaming", + "name": "Elements Pro Gaming", + "code": "EPG", + "image": "http://static.lolesports.com/teams/1586361213717_440px-Elements_Pro_Gaminglogo_square.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCL", + "region": "COMMONWEALTH OF INDEPENDENT STATES" + }, + "players": [ + { + "id": "103963755649003545", + "summonerName": "Smurf", + "firstName": "Dmitrii", + "lastName": "Ivanov", + "image": "https://static.lolesports.com/players/download.png", + "role": "top" + }, + { + "id": "103963756736114716", + "summonerName": "Kreox", + "firstName": "Ilia", + "lastName": "Grom", + "image": "http://static.lolesports.com/players/1644587735109_11.png", + "role": "jungle" + }, + { + "id": "98767975932190334", + "summonerName": "Kiraxx", + "firstName": "Mikhail", + "lastName": "Harmash", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/kira-1hbq8qmj.png", + "role": "mid" + }, + { + "id": "100312025680783620", + "summonerName": "Kinzu", + "firstName": "Peter ", + "lastName": "Thomsen", + "image": "https://static.lolesports.com/players/download.png", + "role": "bottom" + }, + { + "id": "103963762142221772", + "summonerName": "Jestkui Max", + "firstName": "Maxim", + "lastName": "Filipenko", + "image": "http://static.lolesports.com/players/1644407119139_Max_784x621.png", + "role": "support" + } + ] + }, + { + "id": "104016416551172375", + "slug": "seorabeol-gaming", + "name": "Seorabeol Gaming", + "code": "SRB", + "image": "http://static.lolesports.com/teams/1587164557209_seorabeol.png", + "alternativeImage": "http://static.lolesports.com/teams/1587164557223_seorabeol.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "LCK", + "region": "KOREA" + }, + "players": [ + { + "id": "112880372381731252", + "summonerName": "Ben01", + "firstName": "Ben", + "lastName": "Ben", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + } + ] + }, + { + "id": "104202382255290736", + "slug": "rensga", + "name": "RENSGA", + "code": "RNS", + "image": "http://static.lolesports.com/teams/LogoRensgaEsports.png", + "alternativeImage": "http://static.lolesports.com/teams/LogoRensgaEsports.png", + "backgroundImage": "http://static.lolesports.com/teams/RensgaRNS.png", + "status": "archived", + "homeLeague": { + "name": "CBLOL", + "region": "BRAZIL" + }, + "players": [] + }, + { + "id": "104211666442891296", + "slug": "ogaming", + "name": "O'Gaming", + "code": "OGA", + "image": "http://static.lolesports.com/teams/1590143833802_Ays7Gjmu_400x400.jpg", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107468086773048579", + "summonerName": "Nono", + "firstName": "Rim-Raimon", + "lastName": "Amanieu", + "image": "http://static.lolesports.com/players/1639832863018_placeholder.jpg", + "role": "none" + } + ] + }, + { + "id": "104211677548295324", + "slug": "double-crunch-team-italy-pg-esports", + "name": "Double Crunch Team Italy", + "code": "DCTI", + "image": "http://static.lolesports.com/teams/1590507541178_DoubleCrunchTeamItaly1.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "104212455500985426", + "slug": "lec-team", + "name": "LEC Kings", + "code": "RITO", + "image": "http://static.lolesports.com/teams/1590486652282_ezgif.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "101157821340062756", + "summonerName": "Wickd", + "firstName": "Mike", + "lastName": "Petersen", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/wickd-fepizouc.png", + "role": "top" + }, + { + "id": "104234217771120981", + "summonerName": "Vedius", + "firstName": "Andrew", + "lastName": "Day", + "image": "http://static.lolesports.com/players/1590674356596_Vedius.png", + "role": "mid" + }, + { + "id": "104234218836408676", + "summonerName": "Ender", + "firstName": "Christy", + "lastName": "Frierson", + "image": "http://static.lolesports.com/players/1590674325968_Ender.png", + "role": "jungle" + }, + { + "id": "99322214653265200", + "summonerName": "Upset", + "firstName": "Elias", + "lastName": "Lipp", + "image": "http://static.lolesports.com/players/1754469994553_image6522.png", + "role": "bottom" + }, + { + "id": "104234225970883960", + "summonerName": "MedicCasts", + "firstName": "Aaron", + "lastName": "Chamberlain", + "image": "http://static.lolesports.com/players/1590674341822_Medic.png", + "role": "support" + } + ] + }, + { + "id": "104212474149188693", + "slug": "lvp", + "name": "Altokekw Españita", + "code": "OLE", + "image": "http://static.lolesports.com/teams/1590582163378_Logo-Altokekw-Espaita.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "104234241266068924", + "summonerName": "Ibai", + "firstName": "Ibai", + "lastName": "Llanos", + "image": "http://static.lolesports.com/players/1590681292084_EMPPhotoPlaceholderImage.png", + "role": "top" + }, + { + "id": "101797000983658646", + "summonerName": "Noa", + "firstName": "Ainhoa", + "lastName": "Campos", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/noa-49hdh2kr.png", + "role": "support" + }, + { + "id": "103461966879623046", + "summonerName": "Flakked", + "firstName": "Victor ", + "lastName": "Lirola", + "image": "http://static.lolesports.com/players/1754474220170_image6232.png", + "role": "bottom" + }, + { + "id": "103889920053283022", + "summonerName": "Th3Antonio", + "firstName": "Antonio", + "lastName": "Espinosa Bejarano", + "image": "http://static.lolesports.com/players/1587644280364_download.png", + "role": "top" + }, + { + "id": "100238780551262852", + "summonerName": "Razork", + "firstName": "Iván", + "lastName": "Martín", + "image": "http://static.lolesports.com/players/1754469877128_image6423.png", + "role": "jungle" + }, + { + "id": "104234268296428039", + "summonerName": "Champi", + "firstName": "David", + "lastName": "Pérez", + "image": "http://static.lolesports.com/players/1590670986824_Champi14.png", + "role": "support" + }, + { + "id": "104234269298539089", + "summonerName": "Skain", + "firstName": "David", + "lastName": "Carbó Ferrer", + "image": "http://static.lolesports.com/players/1590681350430_EMPPhotoPlaceholderImage.png", + "role": "support" + }, + { + "id": "104234288198334993", + "summonerName": "xPeke", + "firstName": "Enrique", + "lastName": "Cedeño Martínez", + "image": "http://static.lolesports.com/players/1590672893890_xPekeEnriqueCedeno.png", + "role": "mid" + }, + { + "id": "104234291822738004", + "summonerName": "Jandro", + "firstName": "Alejandro", + "lastName": "Fernández", + "image": "http://static.lolesports.com/players/1590671049687_Jandro.png", + "role": "support" + }, + { + "id": "104239709821689624", + "summonerName": "Extorsus", + "firstName": "Alejandro", + "lastName": "Fernández", + "image": "http://static.lolesports.com/players/1590671002485_Extorsus.png", + "role": "support" + }, + { + "id": "104246406490227756", + "summonerName": "Future", + "firstName": "Cristian ", + "lastName": "Duarte", + "image": "http://static.lolesports.com/players/1590674432625_Future.png", + "role": "support" + } + ] + }, + { + "id": "104228817622043824", + "slug": "the-french-zoo", + "name": "The French Zoo", + "code": "FZO", + "image": "http://static.lolesports.com/teams/1590410996052_frenchzoo.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "104229211797527031", + "summonerName": "Chips", + "firstName": "Fabien", + "lastName": "Culié", + "image": "http://static.lolesports.com/players/1590680753282_Chips.png", + "role": "top" + }, + { + "id": "104229212766309922", + "summonerName": "Noi", + "firstName": "Charles", + "lastName": "Lapassat", + "image": "http://static.lolesports.com/players/1590680780516_Noi.png", + "role": "top" + }, + { + "id": "104229213706394346", + "summonerName": "Chap", + "firstName": "Alexis", + "lastName": "Barret", + "image": "http://static.lolesports.com/players/1590680843565_Chap-Gorge.png", + "role": "mid" + }, + { + "id": "104229214473653798", + "summonerName": "Tweekzz", + "firstName": "Kevin", + "lastName": "Remy", + "image": "http://static.lolesports.com/players/1590680889243_Tweekz.png", + "role": "jungle" + }, + { + "id": "103536980547674776", + "summonerName": "Jezu", + "firstName": "Jean", + "lastName": "Massol", + "image": "http://static.lolesports.com/players/1674125642124_Jezu.png", + "role": "bottom" + }, + { + "id": "101389808351886788", + "summonerName": "TraYtoN", + "firstName": "Jean", + "lastName": "Medzadourian", + "image": "http://static.lolesports.com/players/1590680866940_TrayTon.png", + "role": "support" + } + ] + }, + { + "id": "104234144258996303", + "slug": "polska-gurom", + "name": "POLSKA GUROM", + "code": "POL", + "image": "http://static.lolesports.com/teams/1590833406972_Puki_Style.jpg", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "104234305350512105", + "summonerName": "Myha", + "firstName": "Michał", + "lastName": "Francuz", + "image": "http://static.lolesports.com/players/1590671617187_Myha.png", + "role": "top" + }, + { + "id": "104234308118395495", + "summonerName": "Overpow", + "firstName": "Remigiusz", + "lastName": "Pusch", + "image": "http://static.lolesports.com/players/1641978637098_placeholder.png", + "role": "mid" + }, + { + "id": "104234311322450469", + "summonerName": "TheFakeOne", + "firstName": "Tomasz", + "lastName": "Milaniuk", + "image": "http://static.lolesports.com/players/1590671659517_TheFakeOne.png", + "role": "jungle" + }, + { + "id": "103946717109415892", + "summonerName": "Puki Style", + "firstName": "Łukasz", + "lastName": "Zygmunciak", + "image": "http://static.lolesports.com/players/1590671683051_Puki.png", + "role": "bottom" + }, + { + "id": "104234318085896744", + "summonerName": "Magvayer", + "firstName": "Tomasz", + "lastName": "Filipiuk", + "image": "http://static.lolesports.com/players/1590671732998_Magvayer.png", + "role": "support" + }, + { + "id": "99124844325223302", + "summonerName": "Jankos", + "firstName": "Marcin", + "lastName": "Jankowski", + "image": "http://static.lolesports.com/players/1705027140986_jankos.png", + "role": "jungle" + }, + { + "id": "104234324629040627", + "summonerName": "Goniu Bug", + "firstName": "Bartosz", + "lastName": "Brykała", + "image": "https://static.lolesports.com/players/download.png", + "role": "support" + } + ] + }, + { + "id": "104234362586443283", + "slug": "team-frenzy", + "name": "German Pingus", + "code": "PNGU", + "image": "http://static.lolesports.com/teams/1590573988690_DACH.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "99485558922270088", + "summonerName": "kev1n", + "firstName": "Kevin", + "lastName": "Rubiszewski", + "image": "http://static.lolesports.com/players/1590671856186_Kevin.png", + "role": "top" + }, + { + "id": "104234343015135892", + "summonerName": "Don NoWay", + "firstName": "Frederik ", + "lastName": "Hinteregger", + "image": "http://static.lolesports.com/players/1590671903843_Noway.png", + "role": "mid" + }, + { + "id": "104234348809697869", + "summonerName": "J0HNNY", + "firstName": "Jona", + "lastName": "Schmitt", + "image": "http://static.lolesports.com/players/1590671924777_Johnny.png", + "role": "jungle" + }, + { + "id": "104234351739484823", + "summonerName": "Sola", + "firstName": "Nico", + "lastName": "Linke", + "image": "http://static.lolesports.com/players/1590671942415_Sola.png", + "role": "bottom" + }, + { + "id": "104234358717758040", + "summonerName": "Eis", + "firstName": "Christian", + "lastName": "Thamm", + "image": "http://static.lolesports.com/players/1590671969637_Eis.png", + "role": "support" + } + ] + }, + { + "id": "104251016988118464", + "slug": "galatasaray-espor-akademi", + "name": "Galatasaray Espor Akademi", + "code": "GS", + "image": "http://static.lolesports.com/teams/1590744274730_GS.png", + "alternativeImage": "http://static.lolesports.com/teams/1590744274754_GS.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "108443042405180788", + "summonerName": "Leoo", + "firstName": "Bilgin", + "lastName": "Furkan ", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + }, + { + "id": "99566404562013167", + "summonerName": "Crazy", + "firstName": "Chaehee", + "lastName": "Kim", + "image": "http://static.lolesports.com/players/1655286700902_crazy.png", + "role": "none" + }, + { + "id": "107605545455706915", + "summonerName": "Kurama Cat", + "firstName": "Eren Alp", + "lastName": "Öğdem", + "image": "http://static.lolesports.com/players/1641930315672_placeholder.png", + "role": "none" + } + ] + }, + { + "id": "104270958001747936", + "slug": "one-breath-gaming", + "name": "One Breath Gaming", + "code": "OBG", + "image": "http://static.lolesports.com/teams/1643705997409_12.png", + "alternativeImage": "http://static.lolesports.com/teams/1643705997410_12.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCL", + "region": "COMMONWEALTH OF INDEPENDENT STATES" + }, + "players": [ + { + "id": "105700869624784693", + "summonerName": "Maynter", + "firstName": "Volodymyr", + "lastName": "Sorokin", + "image": "http://static.lolesports.com/players/1644587885330_14.png", + "role": "top" + }, + { + "id": "105700966990964605", + "summonerName": "Mercenary", + "firstName": "Ali", + "lastName": "Musaev", + "image": "http://static.lolesports.com/players/1644587997900_15.png", + "role": "support" + }, + { + "id": "105700963357470990", + "summonerName": "cyraXx", + "firstName": "VADIM", + "lastName": "Averin", + "image": "http://static.lolesports.com/players/1644588161942_12.png", + "role": "bottom" + }, + { + "id": "106467177167077464", + "summonerName": "Madrid1st", + "firstName": "Danil", + "lastName": "Nemchenko", + "image": "http://static.lolesports.com/players/1644588224811_13.png", + "role": "mid" + }, + { + "id": "106714086835811257", + "summonerName": "Kinsey Star", + "firstName": "Stanislav", + "lastName": "Nemniugin", + "image": "http://static.lolesports.com/players/1642070928198_placeholder.png", + "role": "top" + }, + { + "id": "103963756736114716", + "summonerName": "Kreox", + "firstName": "Ilia", + "lastName": "Grom", + "image": "http://static.lolesports.com/players/1644587735109_11.png", + "role": "jungle" + } + ] + }, + { + "id": "104367068120825486", + "slug": "psg-talon", + "name": "PSG Talon", + "code": "PSG", + "image": "http://static.lolesports.com/teams/1752559016251_PSG_TALON_COLOR.png", + "alternativeImage": "http://static.lolesports.com/teams/1752559016251_PSG_TALON_COLOR.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCP", + "region": "PACIFIC" + }, + "players": [] + }, + { + "id": "104367072827489994", + "slug": "berjaya-dragons", + "name": "Berjaya Dragons", + "code": "BJD", + "image": "http://static.lolesports.com/teams/1592588696027_BerjayaDragonsBJD-01-FullonDark.png", + "alternativeImage": "http://static.lolesports.com/teams/1592588696036_BerjayaDragonsBJD-03-FullonLight.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "PCS", + "region": "HONG KONG, MACAU, TAIWAN" + }, + "players": [ + { + "id": "104573210012169189", + "summonerName": "Keres", + "firstName": "Chi Kit", + "lastName": "Law", + "image": "http://static.lolesports.com/players/1687500575896_BYGKeres.png", + "role": "none" + }, + { + "id": "106469127253934385", + "summonerName": "yijie", + "firstName": "Khor", + "lastName": "Jiet", + "image": "http://static.lolesports.com/players/silhouette.png", + "role": "none" + } + ] + }, + { + "id": "104367077419533265", + "slug": "resurgence", + "name": "Resurgence", + "code": "RSG", + "image": "http://static.lolesports.com/teams/1600107133106_ResurgenceRSG-01-FullonDark.png", + "alternativeImage": "http://static.lolesports.com/teams/1600107133115_ResurgenceRSG-03-FullonLight.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "PCS", + "region": "HONG KONG, MACAU, TAIWAN" + }, + "players": [ + { + "id": "104573344409507289", + "summonerName": "Shinsekai", + "firstName": "Yew Ming", + "lastName": "Tan", + "image": "http://static.lolesports.com/players/1595662658335_silhouette.png", + "role": "top" + }, + { + "id": "104573346590992902", + "summonerName": "Raven", + "firstName": "Kenneth", + "lastName": "Goh", + "image": "http://static.lolesports.com/players/1595662691793_silhouette.png", + "role": "mid" + }, + { + "id": "104573354620171380", + "summonerName": "Quake", + "firstName": "Kenneth", + "lastName": "Chan", + "image": "http://static.lolesports.com/players/1595662813999_silhouette.png", + "role": "mid" + }, + { + "id": "104573348320105949", + "summonerName": "Mexi", + "firstName": "Martin", + "lastName": "Lew", + "image": "http://static.lolesports.com/players/1595662718037_silhouette.png", + "role": "bottom" + }, + { + "id": "104573352845224474", + "summonerName": "BoxeR", + "firstName": "Yu Kit", + "lastName": "Cheng", + "image": "http://static.lolesports.com/players/1595662787704_silhouette.png", + "role": "support" + }, + { + "id": "104573351377218071", + "summonerName": "Kusuo", + "firstName": "Jordan", + "lastName": "Lum", + "image": "http://static.lolesports.com/players/1595662764527_silhouette.png", + "role": "support" + } + ] + }, + { + "id": "104367082616536883", + "slug": "nova-esports", + "name": "Nova Esports", + "code": "NOV", + "image": "http://static.lolesports.com/teams/1592588738660_NovaEsportsNOV-01-FullonDark.png", + "alternativeImage": "http://static.lolesports.com/teams/1592588738665_NovaEsportsNOV-03-FullonLight.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "PCS", + "region": "HONG KONG, MACAU, TAIWAN" + }, + "players": [ + { + "id": "100205572948945427", + "summonerName": "Rockky", + "firstName": "Atit", + "lastName": "Phaomuang", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/rockky-68bk1726.png", + "role": "top" + }, + { + "id": "104573319734810047", + "summonerName": "Merlyy", + "firstName": "Thanadon", + "lastName": "Lekhakul ", + "image": "http://static.lolesports.com/players/1595662281587_silhouette.png", + "role": "jungle" + }, + { + "id": "101909007442078587", + "summonerName": "Ryan", + "firstName": "Lee", + "lastName": "Junseok", + "image": "http://static.lolesports.com/players/Ryancopy..png", + "role": "jungle" + }, + { + "id": "100205572949580614", + "summonerName": "G4", + "firstName": "Nuttapong", + "lastName": "Menkasikan", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/g4-h63dhpkv.png", + "role": "mid" + }, + { + "id": "104573314151470523", + "summonerName": "Coldenfeet", + "firstName": "Pongsatorn", + "lastName": "Kornrat", + "image": "http://static.lolesports.com/players/1595662196278_silhouette.png", + "role": "bottom" + }, + { + "id": "101978171829669684", + "summonerName": "Pop", + "firstName": "Minwook", + "lastName": "Ha", + "image": "http://static.lolesports.com/players/1655284299402_pop.png", + "role": "support" + } + ] + }, + { + "id": "104367099322647716", + "slug": "liyab-esports", + "name": "Liyab Esports", + "code": "LYB", + "image": "http://static.lolesports.com/teams/1592588789533_LiyabEsportsLYB-01-FullonDark.png", + "alternativeImage": "http://static.lolesports.com/teams/1592588789535_LiyabEsportsLYB-03-FullonLight.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "PCS", + "region": "HONG KONG, MACAU, TAIWAN" + }, + "players": [ + { + "id": "104573273341965357", + "summonerName": "DoeDoii", + "firstName": "Edrian", + "lastName": "Brancia", + "image": "http://static.lolesports.com/players/1595661573651_silhouette.png", + "role": "jungle" + }, + { + "id": "106470378679693595", + "summonerName": "Speltz", + "firstName": "Jay", + "lastName": "Tabarangao", + "image": "http://static.lolesports.com/players/silhouette.png", + "role": "top" + }, + { + "id": "104573264688460834", + "summonerName": "Kanji", + "firstName": "Ren", + "lastName": "Motomitsu", + "image": "http://static.lolesports.com/players/1595661441472_silhouette.png", + "role": "mid" + }, + { + "id": "106470382116553158", + "summonerName": "Xyliath", + "firstName": "Jhon Mike", + "lastName": "Tungol", + "image": "http://static.lolesports.com/players/silhouette.png", + "role": "mid" + }, + { + "id": "104573278630827423", + "summonerName": "Dawn PCS", + "firstName": "Kyle", + "lastName": "Leird Somera", + "image": "http://static.lolesports.com/players/1595661654325_silhouette.png", + "role": "support" + }, + { + "id": "106470383810396620", + "summonerName": "Aeiden ARCH", + "firstName": "Matthew Aeiden", + "lastName": "Rogando", + "image": "http://static.lolesports.com/players/silhouette.png", + "role": "support" + } + ] + }, + { + "id": "104710316579222193", + "slug": "g2-arctic", + "name": "G2 Arctic", + "code": "G2AR", + "image": "http://static.lolesports.com/teams/1597752630042_G2Arctic.png", + "alternativeImage": "http://static.lolesports.com/teams/1597752630057_G2Arctic.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "SuperLiga", + "region": "EMEA" + }, + "players": [ + { + "id": "105537666725285552", + "summonerName": "Alexx", + "firstName": "Alexander", + "lastName": "Österlind", + "image": "http://static.lolesports.com/players/1674834770672_MOUZ_Alexx.png", + "role": "jungle" + } + ] + }, + { + "id": "104710343016706538", + "slug": "7more7-pompa-team", + "name": "7more7 Pompa Team", + "code": "PT7", + "image": "http://static.lolesports.com/teams/1597753033536_1500_PT7_COLOR.png", + "alternativeImage": "http://static.lolesports.com/teams/1597753033541_1500_PT7_COLOR.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [] + }, + { + "id": "104710354840711661", + "slug": "riddle", + "name": "Riddle Esports", + "code": "RDL", + "image": "http://static.lolesports.com/teams/1639655045912_Riddle.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "NLC", + "region": "EMEA" + }, + "players": [] + }, + { + "id": "104710359142494900", + "slug": "samsung-morning-stars", + "name": "Samsung Morning Stars", + "code": "SMS", + "image": "http://static.lolesports.com/teams/PGNATS_SMS-logo.png", + "alternativeImage": "http://static.lolesports.com/teams/PGNATS_SMS-logo.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "105547923019321732", + "summonerName": "Conse", + "firstName": "David", + "lastName": "Schreiner", + "image": "https://static.lolesports.com/players/download.png", + "role": "top" + }, + { + "id": "106301973324812723", + "summonerName": "Yusa", + "firstName": "Jo", + "lastName": "Cortez", + "image": "http://static.lolesports.com/players/godsent-yusa-lol.png", + "role": "bottom" + }, + { + "id": "108370560337599667", + "summonerName": "Engak", + "firstName": "Calderone", + "lastName": "Luca", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "jungle" + }, + { + "id": "108370560392174697", + "summonerName": "Kazuki", + "firstName": "Chen", + "lastName": "Alessandro", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "mid" + }, + { + "id": "105536998993136831", + "summonerName": "Counter", + "firstName": "Giacomo", + "lastName": "Manconi", + "image": "https://static.lolesports.com/players/download.png", + "role": "bottom" + }, + { + "id": "107616249306475686", + "summonerName": "coing", + "firstName": "Jakob", + "lastName": "Johannsen", + "image": "http://static.lolesports.com/players/1642093644697_placeholder.png", + "role": "mid" + } + ] + }, + { + "id": "104710369093939895", + "slug": "suppup-esports", + "name": "SuppUp eSports", + "code": "SSU", + "image": "http://static.lolesports.com/teams/EBL_SSU-Logo.png", + "alternativeImage": "http://static.lolesports.com/teams/EBL_SSU-Logo.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Esports Balkan League", + "region": "EMEA" + }, + "players": [ + { + "id": "105554118091466196", + "summonerName": "Baka Prase", + "firstName": "Bogdan", + "lastName": "Ilić", + "image": "https://static.lolesports.com/players/download.png", + "role": "top" + } + ] + }, + { + "id": "104710373370426042", + "slug": "cr4zy", + "name": "CR4ZY", + "code": "C4", + "image": "http://static.lolesports.com/teams/1597753497055_cr4zy000.png", + "alternativeImage": "http://static.lolesports.com/teams/EBL_C4-Logo.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "Esports Balkan League", + "region": "EMEA" + }, + "players": [ + { + "id": "105553517487645853", + "summonerName": "Zeiko", + "firstName": "Ansari", + "lastName": "Ansari", + "image": "https://static.lolesports.com/players/download.png", + "role": "top" + }, + { + "id": "105553518410130592", + "summonerName": "OmulFinn", + "firstName": "Andrei-Ionel", + "lastName": "Lăbonț-Pop", + "image": "http://static.lolesports.com/players/1641513631102_placeholder.png", + "role": "jungle" + }, + { + "id": "105553519316580032", + "summonerName": "j3lly", + "firstName": "Sebastian", + "lastName": "Vican", + "image": "https://static.lolesports.com/players/download.png", + "role": "mid" + }, + { + "id": "105553520447120547", + "summonerName": "Paladin", + "firstName": "Ivan", + "lastName": "Delac", + "image": "https://static.lolesports.com/players/download.png", + "role": "bottom" + }, + { + "id": "105553521358660787", + "summonerName": "Unlucky", + "firstName": "Luca", + "lastName": "Santos", + "image": "https://static.lolesports.com/players/download.png", + "role": "support" + }, + { + "id": "105553522159335120", + "summonerName": "Mudblaster", + "firstName": "Nikola", + "lastName": "Curak", + "image": "https://static.lolesports.com/players/download.png", + "role": "jungle" + }, + { + "id": "105787612315726852", + "summonerName": "Jacob", + "firstName": "Jacob", + "lastName": "Nielsen", + "image": "http://static.lolesports.com/players/placeholder.png", + "role": "mid" + } + ] + }, + { + "id": "104710383210356454", + "slug": "lowlandlions", + "name": "LowLandLions", + "code": "LLLS", + "image": "http://static.lolesports.com/teams/DL_LLL-Logo.png", + "alternativeImage": "http://static.lolesports.com/teams/DL_LLL-Logo.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "108396619458634466", + "summonerName": "YallaSafSaf", + "firstName": "Safien ", + "lastName": "Godthelp", + "image": "http://static.lolesports.com/players/1654001143716_placeholder.png", + "role": "jungle" + }, + { + "id": "108396621124736210", + "summonerName": "Achilles", + "firstName": "Afidullah ", + "lastName": "Hamid", + "image": "http://static.lolesports.com/players/1654001169528_placeholder.png", + "role": "mid" + }, + { + "id": "108396624784507383", + "summonerName": "Ninja Tiger", + "firstName": "Aidan ", + "lastName": "Doelman", + "image": "http://static.lolesports.com/players/1654001225563_placeholder.png", + "role": "top" + }, + { + "id": "108396627803202279", + "summonerName": "Powages", + "firstName": "Thien ", + "lastName": "Vu", + "image": "http://static.lolesports.com/players/1654001271188_placeholder.png", + "role": "support" + } + ] + }, + { + "id": "104710419905376957", + "slug": "samclan-esports", + "name": "SAMCLAN Esports", + "code": "SAM", + "image": "http://static.lolesports.com/teams/1715885824017_SAM_1000x1000.png", + "alternativeImage": "http://static.lolesports.com/teams/1715885824017_SAM_1000x1000.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "110712716091095937", + "summonerName": "AmExx", + "firstName": "Vladimir ", + "lastName": "Jovic", + "image": "http://static.lolesports.com/players/1689342018439_placeholder.png", + "role": "none" + }, + { + "id": "106312605281690369", + "summonerName": "Campello", + "firstName": "João", + "lastName": "Silva", + "image": "https://static.lolesports.com/players/download.png", + "role": "top" + }, + { + "id": "112455334888708440", + "summonerName": "Abow", + "firstName": "Anton", + "lastName": "Andersson", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "110462450662409659", + "summonerName": "Exduardo", + "firstName": "Eduardo", + "lastName": "Alves", + "image": "http://static.lolesports.com/players/1685523233514_placeholder.png", + "role": "bottom" + }, + { + "id": "108438976981578859", + "summonerName": "September14", + "firstName": "Frutuoso", + "lastName": "Pedro", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "top" + }, + { + "id": "110462509478828459", + "summonerName": "afonso", + "firstName": "Afonso", + "lastName": "Camacho", + "image": "http://static.lolesports.com/players/1685524130461_placeholder.png", + "role": "top" + }, + { + "id": "112601182227305208", + "summonerName": "po", + "firstName": "Gonçalo", + "lastName": "Cerqueira", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + } + ] + }, + { + "id": "104710429139492585", + "slug": "five-kings", + "name": "Five Kings", + "code": "5K", + "image": "http://static.lolesports.com/teams/1597754347761_5Kingslogo.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "104738261368370757", + "summonerName": "Onyoz", + "firstName": "Dainis", + "lastName": "Strautiņš", + "image": "http://static.lolesports.com/players/1598179033852_czekolad-51vwzmjl.png", + "role": "top" + }, + { + "id": "104738263141381413", + "summonerName": "Fokkus", + "firstName": "Ignas", + "lastName": "Lesevičius", + "image": "http://static.lolesports.com/players/1598179060955_czekolad-51vwzmjl.png", + "role": "jungle" + }, + { + "id": "104738264639272522", + "summonerName": "tibor", + "firstName": "Tibor", + "lastName": "Trošelj", + "image": "http://static.lolesports.com/players/galaxy-racer-tibor-lol.png", + "role": "mid" + }, + { + "id": "104738268184114780", + "summonerName": "Lakinther", + "firstName": "Rauno", + "lastName": "Veski", + "image": "http://static.lolesports.com/players/1598179137915_czekolad-51vwzmjl.png", + "role": "bottom" + }, + { + "id": "104738266617279784", + "summonerName": "Pattarek", + "firstName": "Patrick", + "lastName": "Nickel", + "image": "http://static.lolesports.com/players/1598179108796_czekolad-51vwzmjl.png", + "role": "support" + }, + { + "id": "104738269801149740", + "summonerName": "Teogen", + "firstName": "Vladimir", + "lastName": "Koleda", + "image": "http://static.lolesports.com/players/1598179162665_czekolad-51vwzmjl.png", + "role": "jungle" + } + ] + }, + { + "id": "104710678170825211", + "slug": "sinners-esports", + "name": "SINNERS Esports", + "code": "SIN", + "image": "http://static.lolesports.com/teams/Sinners_mark-color-transp.png", + "alternativeImage": "http://static.lolesports.com/teams/HM_SIN_logo1.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "Hitpoint Masters", + "region": "EMEA" + }, + "players": [ + { + "id": "103877964193402932", + "summonerName": "Rufus", + "firstName": "Radovan ", + "lastName": "Moravec", + "image": "http://static.lolesports.com/players/download.png", + "role": "none" + } + ] + }, + { + "id": "104710682193583854", + "slug": "topo-centras-iron-wolves", + "name": "Iron Wolves", + "code": "WOLF", + "image": "http://static.lolesports.com/teams/1683618986784_z9VyIKc.png", + "alternativeImage": "http://static.lolesports.com/teams/1639395005520_iron_wolves_black.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "105531008555453005", + "summonerName": "Jenxas", + "firstName": "Liutauras", + "lastName": "Macius", + "image": "https://static.lolesports.com/players/download.png", + "role": "top" + }, + { + "id": "102808828185428636", + "summonerName": "Arnaxas", + "firstName": "Arnas", + "lastName": "Stepanauskas", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "102808828187787936", + "summonerName": "Domas", + "firstName": "Domantas", + "lastName": "Musinas", + "image": "https://static.lolesports.com/players/download.png", + "role": "mid" + }, + { + "id": "105786916477059553", + "summonerName": "Ruf", + "firstName": "Rolf", + "lastName": "Hein", + "image": "http://static.lolesports.com/players/placeholder.png", + "role": "bottom" + }, + { + "id": "103890014776920379", + "summonerName": "Endz", + "firstName": "Lauri ", + "lastName": "Tarkus", + "image": "http://static.lolesports.com/players/1642067830481_placeholder.png", + "role": "support" + } + ] + }, + { + "id": "104841890701948065", + "slug": "estral-esports", + "name": "Estral Esports", + "code": "EST", + "image": "http://static.lolesports.com/teams/EST.png", + "alternativeImage": "http://static.lolesports.com/teams/EST.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LRN", + "region": "LATIN AMERICA NORTH" + }, + "players": [ + { + "id": "99566404538979273", + "summonerName": "Summit", + "firstName": "Wootae", + "lastName": "Park", + "image": "http://static.lolesports.com/players/1745996322736_templkatka21heads.png", + "role": "top" + }, + { + "id": "99566408542840078", + "summonerName": "SolidSnake", + "firstName": "Diego", + "lastName": "Vallejo", + "image": "http://static.lolesports.com/players/1704992817971_EMP.png", + "role": "jungle" + }, + { + "id": "102825747663199158", + "summonerName": "cody", + "firstName": "Cristian", + "lastName": "Quispe", + "image": "http://static.lolesports.com/players/1737722701112_image620.png", + "role": "mid" + }, + { + "id": "99566404556524630", + "summonerName": "Ghost", + "firstName": "Yongjun", + "lastName": "Jang", + "image": "http://static.lolesports.com/players/1655457270313_NS_Ghost_784x621.png", + "role": "bottom" + }, + { + "id": "107424739201710992", + "summonerName": "Winsome", + "firstName": "Dong Kun", + "lastName": "Kim", + "image": "http://static.lolesports.com/players/1737724147366_image627.png", + "role": "support" + }, + { + "id": "106467867233083165", + "summonerName": "Shintalx", + "firstName": "Alejandro", + "lastName": "Quintanilla", + "image": "http://static.lolesports.com/players/1626803009164_EST-Shintalx-July.png", + "role": "mid" + }, + { + "id": "106977120557171934", + "summonerName": "Snok", + "firstName": "Roberto", + "lastName": "Coello", + "image": "http://static.lolesports.com/players/1654801516267_EMP.png", + "role": "none" + }, + { + "id": "114911254464332908", + "summonerName": "Yang", + "firstName": "Pyo Yang", + "lastName": "Gwang", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "none" + } + ] + }, + { + "id": "104843437139220481", + "slug": "undead-bk", + "name": "Undead BK", + "code": "UBK", + "image": "http://static.lolesports.com/teams/1643795782111_UNDEAD-White.png", + "alternativeImage": "http://static.lolesports.com/teams/1643795782113_UNDEAD-Black.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "109676643687338509", + "summonerName": "Koira", + "firstName": "RAMIRO", + "lastName": "MATA", + "image": "http://static.lolesports.com/players/1673532768271_placeholder.png", + "role": "bottom" + }, + { + "id": "112091621539557147", + "summonerName": "Izk", + "firstName": "Franco", + "lastName": "Campanari Antunez", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "99566408307919824", + "summonerName": "Acce", + "firstName": "Edgardo Emmanuel", + "lastName": "Juarez Medina", + "image": "http://static.lolesports.com/players/1704994442157_EMP.png", + "role": "top" + } + ] + }, + { + "id": "105193385417106233", + "slug": "llaallstars", + "name": "LLA All-Stars", + "code": "LLA", + "image": "http://static.lolesports.com/teams/LLA-03-FullonLight.png", + "alternativeImage": "http://static.lolesports.com/teams/Vector.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "105193481874236222", + "slug": "lcl-all-stars", + "name": "LCL-All-Stars", + "code": "LCL", + "image": "http://static.lolesports.com/teams/LCL-01-FullonDark.png", + "alternativeImage": "http://static.lolesports.com/teams/LCL-03-FullonLight.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "101978171824164654", + "summonerName": "BOSS", + "firstName": "Vladislav", + "lastName": "Fomin", + "image": "http://static.lolesports.com/players/1633538720764_uol-boss-w21.png", + "role": "top" + }, + { + "id": "101978171825868592", + "summonerName": "AHaHaCiK", + "firstName": "Kirill", + "lastName": "Skvortsov", + "image": "http://static.lolesports.com/players/1633538690711_uol-ahahacik-w21.png", + "role": "jungle" + }, + { + "id": "101978171799457579", + "summonerName": "Nomanz", + "firstName": "Lev", + "lastName": "Yakshin", + "image": "http://static.lolesports.com/players/1674553772453_G29.png", + "role": "mid" + }, + { + "id": "100312190813777745", + "summonerName": "Gadget", + "firstName": "Ilya ", + "lastName": "Makavchuk", + "image": "http://static.lolesports.com/players/1600450390859_uol-gadget.png", + "role": "bottom" + } + ] + }, + { + "id": "105193554293818475", + "slug": "ljlallstars", + "name": "LJL All-Stars", + "code": "LJL", + "image": "http://static.lolesports.com/teams/LJL-01-FullonDark.png", + "alternativeImage": "http://static.lolesports.com/teams/LJL-03-FullonLight.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "98767975944639514", + "summonerName": "Evi", + "firstName": "Shunsuke", + "lastName": "Murase", + "image": "http://static.lolesports.com/players/1744279845866_SHG_Evi.png", + "role": "top" + }, + { + "id": "98767975952532107", + "summonerName": "Blank", + "firstName": "Sungu", + "lastName": "Kang", + "image": "http://static.lolesports.com/players/1686139061327_shg_blank.png", + "role": "jungle" + }, + { + "id": "100285330141230212", + "summonerName": "Ceros", + "firstName": "Kyohei ", + "lastName": "Yoshida", + "image": "http://static.lolesports.com/players/1632939757807_dfm-ceros-w21.png", + "role": "mid" + }, + { + "id": "100285330144336367", + "summonerName": "Yutapon", + "firstName": "Yuta", + "lastName": "Sugiura", + "image": "http://static.lolesports.com/players/1695628801065_DFM_Yutapon_face.png", + "role": "bottom" + }, + { + "id": "100205572958145522", + "summonerName": "Gaeng", + "firstName": "Gwangyu", + "lastName": "Yang", + "image": "http://static.lolesports.com/players/1744280009328_SHG_Gaeng.png", + "role": "support" + } + ] + }, + { + "id": "105193571520283762", + "slug": "opl-all-stars", + "name": "OPL All-Stars", + "code": "OPLO", + "image": "http://static.lolesports.com/teams/opl-white.png", + "alternativeImage": "http://static.lolesports.com/teams/OPL3.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "103877733238936104", + "summonerName": "Darlik", + "firstName": "Aymeric", + "lastName": "Garcon", + "image": "http://static.lolesports.com/players/1655828402868_OPLON_DARLIK-picture.png", + "role": "top" + }, + { + "id": "104738020689179820", + "summonerName": "Bruness", + "firstName": "Bruno", + "lastName": "Freund", + "image": "http://static.lolesports.com/players/1598175361168_czekolad-51vwzmjl.png", + "role": "jungle" + }, + { + "id": "104275723094946928", + "summonerName": "Peng", + "firstName": "Pengcheng", + "lastName": "Shen", + "image": "http://static.lolesports.com/players/1674126023781_Peng.png", + "role": "mid" + }, + { + "id": "99566406308773775", + "summonerName": "Tiger", + "firstName": "Alan", + "lastName": "Roger", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/tiger-8xxeoxbf.png", + "role": "bottom" + }, + { + "id": "99566405672409608", + "summonerName": "Absolute", + "firstName": "Batuhan", + "lastName": "Okta", + "image": "http://static.lolesports.com/players/1687252356761_Absolute.png", + "role": "support" + } + ] + }, + { + "id": "105272738560738425", + "slug": "queuekingsred", + "name": "Queue Kings Red", + "code": "QKR", + "image": "http://static.lolesports.com/teams/ASERed.png", + "alternativeImage": "http://static.lolesports.com/teams/ASERed.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [] + }, + { + "id": "105272741199545468", + "slug": "queuekingsblue", + "name": "Queue Kings Blue", + "code": "QKB", + "image": "http://static.lolesports.com/teams/ASEBlue.png", + "alternativeImage": "http://static.lolesports.com/teams/ASEBlue.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [] + }, + { + "id": "105272752575218816", + "slug": "legendsred", + "name": "Legends Red", + "code": "LGR", + "image": "http://static.lolesports.com/teams/ASERed.png", + "alternativeImage": "http://static.lolesports.com/teams/ASERed.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [] + }, + { + "id": "105272756377879683", + "slug": "legendsblue", + "name": "Legends Blue", + "code": "LGB", + "image": "http://static.lolesports.com/teams/ASEBlue.png", + "alternativeImage": "http://static.lolesports.com/teams/ASEBlue.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [] + }, + { + "id": "105301755072677196", + "slug": "lckqueuekings", + "name": "LCK Queue Kings", + "code": "LCKQ", + "image": "http://static.lolesports.com/teams/LCK.png", + "alternativeImage": "http://static.lolesports.com/teams/LCK-2.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "105351771772281160", + "summonerName": "jisoo girl", + "firstName": " ", + "lastName": " ", + "image": "http://static.lolesports.com/players/silhouette-female.png", + "role": "jungle" + }, + { + "id": "105301758936213441", + "summonerName": "Hojin", + "firstName": " ", + "lastName": " ", + "image": "http://static.lolesports.com/players/silhouette.png", + "role": "top" + }, + { + "id": "105301761584326602", + "summonerName": "so urf", + "firstName": " ", + "lastName": " ", + "image": "http://static.lolesports.com/players/silhouette.png", + "role": "mid" + }, + { + "id": "103241395129820951", + "summonerName": "NaRaKyle", + "firstName": " ", + "lastName": " ", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/narakyle-ewx508ui.png", + "role": "bottom" + }, + { + "id": "99566404541748447", + "summonerName": "JeIIy", + "firstName": "Hokyeong", + "lastName": "Son", + "image": "http://static.lolesports.com/players/1674669963709_EMP.png", + "role": "support" + } + ] + }, + { + "id": "105301773561628001", + "slug": "lcklegends", + "name": "LCK Legends", + "code": "LCKL", + "image": "http://static.lolesports.com/teams/LCK.png", + "alternativeImage": "http://static.lolesports.com/teams/LCK-2.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "98767975922221493", + "summonerName": "Ambition", + "firstName": "Chanyong", + "lastName": "Kang", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/ambition-c6ryvr2g.png", + "role": "jungle" + }, + { + "id": "99566404530651694", + "summonerName": "Pawn", + "firstName": "Wonseok", + "lastName": "Heo", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/pawn-1ibco5lc.png", + "role": "mid" + }, + { + "id": "98767975925797621", + "summonerName": "PraY", + "firstName": "Jongin", + "lastName": "Kim", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/pray-50bd4k72.png", + "role": "bottom" + }, + { + "id": "99566404529717522", + "summonerName": "Mata", + "firstName": "Sehyoung", + "lastName": "Cho", + "image": "http://static.lolesports.com/players/1718363604998_1_GEN_Mata_784.png", + "role": "support" + } + ] + }, + { + "id": "105301786369976273", + "slug": "leclegends", + "name": "LEC Legends", + "code": "LECL", + "image": "http://static.lolesports.com/teams/LEC-01-FullonDark.png", + "alternativeImage": "http://static.lolesports.com/teams/LEC-03-FullonLight.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "99322214604295671", + "summonerName": "Vizicsacsi", + "firstName": "Tamás", + "lastName": "Kiss", + "image": "http://static.lolesports.com/players/1674835723473_BIG_Vizicsacsi.png", + "role": "top" + }, + { + "id": "100125291362652497", + "summonerName": "Amazing", + "firstName": "Maurice", + "lastName": "Stückenschneider", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/amazing-j84hbmzj.png", + "role": "jungle" + }, + { + "id": "99322214641403713", + "summonerName": "Exile", + "firstName": "Fabian", + "lastName": "Schubert", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/exile-fehlfuq1.png", + "role": "mid" + }, + { + "id": "99322214615055863", + "summonerName": "Samux", + "firstName": "Samuel", + "lastName": "Fernández Fort", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/samux-dr83t2e0.png", + "role": "bottom" + }, + { + "id": "98767991802971822", + "summonerName": "Mithy", + "firstName": "Alfonso", + "lastName": "Rodriguez", + "image": "http://static.lolesports.com/players/1633540339567_c9-mithy-w21.png", + "role": "support" + } + ] + }, + { + "id": "105301791701328923", + "slug": "lecqueuekings", + "name": "LEC Queue Kings", + "code": "LECQ", + "image": "http://static.lolesports.com/teams/LEC-01-FullonDark.png", + "alternativeImage": "http://static.lolesports.com/teams/LEC-03-FullonLight.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "105301794706621822", + "summonerName": "SivHD", + "firstName": " ", + "lastName": " ", + "image": "http://static.lolesports.com/players/silhouette.png", + "role": "top" + }, + { + "id": "104234308118395495", + "summonerName": "Overpow", + "firstName": "Remigiusz", + "lastName": "Pusch", + "image": "http://static.lolesports.com/players/1641978637098_placeholder.png", + "role": "jungle" + }, + { + "id": "101157821365097517", + "summonerName": "Noway", + "firstName": " Frederik", + "lastName": " Hinteregger", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/noway4u-a7d9nhe0.png", + "role": "mid" + }, + { + "id": "105301808272311686", + "summonerName": "Corobizar", + "firstName": " ", + "lastName": " ", + "image": "http://static.lolesports.com/players/silhouette.png", + "role": "bottom" + }, + { + "id": "99566406037526956", + "summonerName": "Elwind", + "firstName": "Kaan", + "lastName": "Atıcı", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/elwind-es712vju.png", + "role": "support" + } + ] + }, + { + "id": "105301877841257613", + "slug": "vcs-all-stars", + "name": "VCS All Stars", + "code": "VCS", + "image": "http://static.lolesports.com/teams/VCS-01-FullonDark.png", + "alternativeImage": "http://static.lolesports.com/teams/VCS-03-FullonLight.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [] + }, + { + "id": "105351724613755142", + "slug": "lpl-queue-kings", + "name": "LPL Queue Kings", + "code": "LPLQ", + "image": "http://static.lolesports.com/teams/LPL-01-FullonDark.png", + "alternativeImage": "http://static.lolesports.com/teams/LPL-03-FullonLight.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "105351727187617936", + "summonerName": "YuxiaoC", + "firstName": " ", + "lastName": " ", + "image": "http://static.lolesports.com/players/silhouette.png", + "role": "top" + }, + { + "id": "105351728469368547", + "summonerName": "Gouyu", + "firstName": " ", + "lastName": " ", + "image": "http://static.lolesports.com/players/silhouette.png", + "role": "jungle" + }, + { + "id": "105351729523449577", + "summonerName": "Zhixun", + "firstName": " ", + "lastName": " ", + "image": "http://static.lolesports.com/players/silhouette.png", + "role": "mid" + }, + { + "id": "99566404812992432", + "summonerName": "kRYST4L", + "firstName": "Pan", + "lastName": "Yang", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/kryst4l-e69s99ma.png", + "role": "bottom" + }, + { + "id": "99566404797325600", + "summonerName": "xiyang", + "firstName": "Bin", + "lastName": "Hu", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/xiyang-gk6koeub.png", + "role": "support" + } + ] + }, + { + "id": "105351737774956843", + "slug": "lpl-legends", + "name": "LPL Legends", + "code": "LPLL", + "image": "http://static.lolesports.com/teams/LPL-01-FullonDark.png", + "alternativeImage": "http://static.lolesports.com/teams/LPL-03-FullonLight.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "105351745859872958", + "summonerName": "gogoing", + "firstName": "Di-Ping", + "lastName": "Gao", + "image": "http://static.lolesports.com/players/silhouette.png", + "role": "top" + }, + { + "id": "98767975913610880", + "summonerName": "Mlxg", + "firstName": "Shiyu", + "lastName": "Liu", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/mlxg-ar14580m.png", + "role": "jungle" + }, + { + "id": "100205572929954027", + "summonerName": "Zz1tai", + "firstName": "Zhihao", + "lastName": "Liu", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/zz1tai-hadyl6ic.png", + "role": "mid" + }, + { + "id": "103241453999965822", + "summonerName": "WEIXIAO", + "firstName": " ", + "lastName": " ", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/weixiao-i06r4xzq.png", + "role": "bottom" + }, + { + "id": "99566404816521797", + "summonerName": "Pyl", + "firstName": "Bo", + "lastName": "Chen", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/pyl-djukytrp.png", + "role": "support" + } + ] + }, + { + "id": "105351757244721361", + "slug": "allstars", + "name": "All-Stars", + "code": "XXX", + "image": "http://static.lolesports.com/teams/ase-fullcolor.png", + "alternativeImage": "http://static.lolesports.com/teams/ase-fullcolor.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "105351727187617936", + "summonerName": "YuxiaoC", + "firstName": " ", + "lastName": " ", + "image": "http://static.lolesports.com/players/silhouette.png", + "role": "top" + }, + { + "id": "105351728469368547", + "summonerName": "Gouyu", + "firstName": " ", + "lastName": " ", + "image": "http://static.lolesports.com/players/silhouette.png", + "role": "jungle" + }, + { + "id": "105351729523449577", + "summonerName": "Zhixun", + "firstName": " ", + "lastName": " ", + "image": "http://static.lolesports.com/players/silhouette.png", + "role": "mid" + }, + { + "id": "99566404812992432", + "summonerName": "kRYST4L", + "firstName": "Pan", + "lastName": "Yang", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/kryst4l-e69s99ma.png", + "role": "bottom" + }, + { + "id": "99566404797325600", + "summonerName": "xiyang", + "firstName": "Bin", + "lastName": "Hu", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/xiyang-gk6koeub.png", + "role": "support" + }, + { + "id": "105351771772281160", + "summonerName": "jisoo girl", + "firstName": " ", + "lastName": " ", + "image": "http://static.lolesports.com/players/silhouette-female.png", + "role": "top" + }, + { + "id": "105301761584326602", + "summonerName": "so urf", + "firstName": " ", + "lastName": " ", + "image": "http://static.lolesports.com/players/silhouette.png", + "role": "mid" + }, + { + "id": "103241395129820951", + "summonerName": "NaRaKyle", + "firstName": " ", + "lastName": " ", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/narakyle-ewx508ui.png", + "role": "bottom" + }, + { + "id": "99566404541748447", + "summonerName": "JeIIy", + "firstName": "Hokyeong", + "lastName": "Son", + "image": "http://static.lolesports.com/players/1674669963709_EMP.png", + "role": "support" + }, + { + "id": "103241300684286596", + "summonerName": "Tyler1", + "firstName": " ", + "lastName": " ", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/tyler1-j4ysvnf6.png", + "role": "top" + }, + { + "id": "103241300685466246", + "summonerName": "Yassuo", + "firstName": " ", + "lastName": " ", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/yassuo-7jq30aoy.png", + "role": "mid" + }, + { + "id": "105351856828768667", + "summonerName": "Trick2g", + "firstName": " ", + "lastName": " ", + "image": "http://static.lolesports.com/players/silhouette.png", + "role": "bottom" + }, + { + "id": "105351857728317717", + "summonerName": "Starsmitten", + "firstName": " ", + "lastName": " ", + "image": "http://static.lolesports.com/players/silhouette.png", + "role": "support" + }, + { + "id": "105301794706621822", + "summonerName": "SivHD", + "firstName": " ", + "lastName": " ", + "image": "http://static.lolesports.com/players/silhouette.png", + "role": "top" + }, + { + "id": "104234308118395495", + "summonerName": "Overpow", + "firstName": "Remigiusz", + "lastName": "Pusch", + "image": "http://static.lolesports.com/players/1641978637098_placeholder.png", + "role": "jungle" + }, + { + "id": "101157821365097517", + "summonerName": "Noway", + "firstName": " Frederik", + "lastName": " Hinteregger", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/noway4u-a7d9nhe0.png", + "role": "mid" + }, + { + "id": "105301808272311686", + "summonerName": "Corobizar", + "firstName": " ", + "lastName": " ", + "image": "http://static.lolesports.com/players/silhouette.png", + "role": "bottom" + }, + { + "id": "99566406037526956", + "summonerName": "Elwind", + "firstName": "Kaan", + "lastName": "Atıcı", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/elwind-es712vju.png", + "role": "support" + } + ] + }, + { + "id": "105351835580819729", + "slug": "lcs-queue-kings", + "name": "LCS Queue Kings", + "code": "LCSQ", + "image": "http://static.lolesports.com/teams/LCS-05-FullonDark.png", + "alternativeImage": "http://static.lolesports.com/teams/LCS-07-FullonLight.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "103241300684286596", + "summonerName": "Tyler1", + "firstName": " ", + "lastName": " ", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/tyler1-j4ysvnf6.png", + "role": "top" + }, + { + "id": "101196442875625194", + "summonerName": "Voyboy", + "firstName": "Joedat", + "lastName": "Esfahani", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/voyboy-35qifbhc.png", + "role": "jungle" + }, + { + "id": "103241300685466246", + "summonerName": "Yassuo", + "firstName": " ", + "lastName": " ", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/yassuo-7jq30aoy.png", + "role": "mid" + }, + { + "id": "105351856828768667", + "summonerName": "Trick2g", + "firstName": " ", + "lastName": " ", + "image": "http://static.lolesports.com/players/silhouette.png", + "role": "bottom" + }, + { + "id": "105351857728317717", + "summonerName": "Starsmitten", + "firstName": " ", + "lastName": " ", + "image": "http://static.lolesports.com/players/silhouette.png", + "role": "support" + } + ] + }, + { + "id": "105352091319919029", + "slug": "lcs-legends", + "name": "LCS Legends", + "code": "LCSL", + "image": "http://static.lolesports.com/teams/LCS-05-FullonDark.png", + "alternativeImage": "http://static.lolesports.com/teams/LCS-07-FullonLight.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "101196442875625194", + "summonerName": "Voyboy", + "firstName": "Joedat", + "lastName": "Esfahani", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/voyboy-35qifbhc.png", + "role": "top" + }, + { + "id": "98926509752357099", + "summonerName": "Meteos XXD", + "firstName": "William", + "lastName": "Hartman", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/meteos-e17ea8ha.png", + "role": "jungle" + }, + { + "id": "101196466443266155", + "summonerName": "Shiphtur", + "firstName": "Danny", + "lastName": "Le", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/shiphtur-592aplau.png", + "role": "mid" + }, + { + "id": "98767991766960790", + "summonerName": "Sneaky", + "firstName": "Zachary", + "lastName": "Scuderi", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/sneaky-gizgdotm.png", + "role": "bottom" + }, + { + "id": "105352096546152305", + "summonerName": "BunnyFuFuu", + "firstName": " ", + "lastName": " ", + "image": "http://static.lolesports.com/players/silhouette.png", + "role": "support" + } + ] + }, + { + "id": "105357803054359120", + "slug": "bwipo-dream-team", + "name": "Bwipo Dream Team", + "code": "BWI", + "image": "http://static.lolesports.com/teams/team-bwipo.png", + "alternativeImage": "http://static.lolesports.com/teams/team-bwipo.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "105357804699574324", + "slug": "corejj-dream-team", + "name": "CoreJJ Dream Team", + "code": "CJJ", + "image": "http://static.lolesports.com/teams/team-corejj.png", + "alternativeImage": "http://static.lolesports.com/teams/team-corejj.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "98767991789638893", + "summonerName": "CoreJJ", + "firstName": "Yongin", + "lastName": "Jo", + "image": "http://static.lolesports.com/players/1726214772049_TL_1500x1500_COREJJ_03.png", + "role": "support" + }, + { + "id": "98926509838831804", + "summonerName": "Licorice", + "firstName": "Eric", + "lastName": "Ritchie", + "image": "http://static.lolesports.com/players/1739478991789_ggsdgs6.png", + "role": "top" + }, + { + "id": "100356590519370319", + "summonerName": "Humanoid", + "firstName": " Marek", + "lastName": "Brázda", + "image": "http://static.lolesports.com/players/1737733891965_humanoid.png", + "role": "jungle" + }, + { + "id": "98767991798919851", + "summonerName": "Jensen", + "firstName": "Nicolaj", + "lastName": "Jensen", + "image": "http://static.lolesports.com/players/1674832180299_DIG_JENSEN.png", + "role": "mid" + }, + { + "id": "98767975961872793", + "summonerName": "Hans Sama", + "firstName": "Steven", + "lastName": "Liv", + "image": "http://static.lolesports.com/players/1754470386508_image6326.png", + "role": "bottom" + } + ] + }, + { + "id": "105397399468432537", + "slug": "netshoes-miners", + "name": "Miners", + "code": "NMG", + "image": "http://static.lolesports.com/teams/1653399163957_miners_logo.png", + "alternativeImage": "http://static.lolesports.com/teams/1653399163959_miners_logo.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "CBLOL", + "region": "BRAZIL" + }, + "players": [] + }, + { + "id": "105397404796640412", + "slug": "loud", + "name": "LOUD", + "code": "LOUD", + "image": "http://static.lolesports.com/teams/Logo-LOUD-Esports_Original.png", + "alternativeImage": "http://static.lolesports.com/teams/Logo-LOUD-Esports_Original.png", + "backgroundImage": "http://static.lolesports.com/teams/LOUDLLL.png", + "status": "active", + "homeLeague": { + "name": "LTA South", + "region": "AMERICAS" + }, + "players": [ + { + "id": "107577675767857598", + "summonerName": "Gryffinn", + "firstName": "Johnson", + "lastName": "Hoang le", + "image": "http://static.lolesports.com/players/1753429869537_image622.png", + "role": "jungle" + }, + { + "id": "104016422094844578", + "summonerName": "Jool", + "firstName": "Dong su", + "lastName": "Kang", + "image": "http://static.lolesports.com/players/1753429973769_image6323.png", + "role": "mid" + }, + { + "id": "98767975947296513", + "summonerName": "RedBert", + "firstName": "Ygor", + "lastName": "Freitas", + "image": "http://static.lolesports.com/players/1753430140743_image669.png", + "role": "support" + }, + { + "id": "100174429498252618", + "summonerName": "Route", + "firstName": "Geomsoo", + "lastName": "Mun", + "image": "http://static.lolesports.com/players/1753430222258_image679.png", + "role": "bottom" + } + ] + }, + { + "id": "105503535895066182", + "slug": "wave-esports", + "name": "Wave Esports", + "code": "WAVE", + "image": "http://static.lolesports.com/teams/PRM_WAVE-Logo.png", + "alternativeImage": "http://static.lolesports.com/teams/PRM_WAVE-Logo.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Prime League", + "region": "EMEA" + }, + "players": [ + { + "id": "102808797699767815", + "summonerName": "Adept", + "firstName": "Andreas", + "lastName": "Blikfeldt", + "image": "http://static.lolesports.com/players/1591121443381_silhouette.png", + "role": "support" + }, + { + "id": "105503552183590671", + "summonerName": "Jakobobbi", + "firstName": "Jakob", + "lastName": "Waich", + "image": "https://static.lolesports.com/players/download.png", + "role": "none" + }, + { + "id": "107677948437402654", + "summonerName": "MiraiX", + "firstName": "Salah", + "lastName": "Lmimouni", + "image": "http://static.lolesports.com/players/1643035093452_placeholder.png", + "role": "jungle" + }, + { + "id": "108328106717503885", + "summonerName": "Quinncidenc", + "firstName": "Markus", + "lastName": "Tobin", + "image": "http://static.lolesports.com/players/1652955729305_placeholder.png", + "role": "top" + }, + { + "id": "105504060874340131", + "summonerName": "Envy Carry", + "firstName": "Erkan", + "lastName": "Senol", + "image": "http://static.lolesports.com/players/placeholder.png", + "role": "mid" + }, + { + "id": "108328099315835833", + "summonerName": "silkysmath", + "firstName": "Markus", + "lastName": "Bendtsen", + "image": "http://static.lolesports.com/players/1652955615647_placeholder.png", + "role": "bottom" + } + ] + }, + { + "id": "105503778424809514", + "slug": "euronics-gaming", + "name": "EURONICS Gaming", + "code": "ESG", + "image": "http://static.lolesports.com/teams/PRM_ESG-Logo.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Prime League", + "region": "EMEA" + }, + "players": [ + { + "id": "101389737442655643", + "summonerName": "Ventair", + "firstName": "Simon", + "lastName": "Tschammer", + "image": "http://static.lolesports.com/players/1674835228382_EWI_Ventair.png", + "role": "top" + }, + { + "id": "103889926445533397", + "summonerName": "Lamabear", + "firstName": "Leon", + "lastName": "Krüger", + "image": "http://static.lolesports.com/players/1674834622249_NNO_Lamabear.png", + "role": "jungle" + }, + { + "id": "102787200069501640", + "summonerName": "Pandar", + "firstName": "Yannick", + "lastName": "Greff", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/panda-7ss7yc37.png", + "role": "support" + }, + { + "id": "105503789139222319", + "summonerName": "InDeed", + "firstName": "Timo", + "lastName": "Götz", + "image": "http://static.lolesports.com/players/placeholder.png", + "role": "mid" + }, + { + "id": "105503790864525364", + "summonerName": "Tazaku", + "firstName": "Adrian", + "lastName": "Steiner", + "image": "http://static.lolesports.com/players/1674835230376_EWI_Tazaku.png", + "role": "bottom" + }, + { + "id": "105503792594675767", + "summonerName": "Shantao", + "firstName": "Frederik", + "lastName": "Krojniak", + "image": "http://static.lolesports.com/players/placeholder.png", + "role": "bottom" + }, + { + "id": "105503794368145469", + "summonerName": "Stormfury", + "firstName": "Maximilian Johannes", + "lastName": "Schaller", + "image": "http://static.lolesports.com/players/placeholder.png", + "role": "none" + }, + { + "id": "100115112838321482", + "summonerName": "Nukes", + "firstName": "Risto ", + "lastName": "Luuri", + "image": "http://static.lolesports.com/players/1591900382058_Risto-NUKES-Luuri-1.png", + "role": "support" + }, + { + "id": "103946702525726916", + "summonerName": "Matislaw", + "firstName": "Mateusz ", + "lastName": "Zagórski", + "image": "http://static.lolesports.com/players/1674834620774_NNO_Matislaw.png", + "role": "mid" + } + ] + }, + { + "id": "105503848339138647", + "slug": "penta-1860", + "name": "PENTA 1860", + "code": "PTA", + "image": "http://static.lolesports.com/teams/PRM_PTA-Logo_white.png", + "alternativeImage": "http://static.lolesports.com/teams/PRM_PTA-Logo_dark.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Prime League", + "region": "EMEA" + }, + "players": [ + { + "id": "99566406303181174", + "summonerName": "Sleeping", + "firstName": "Christian ", + "lastName": "Tiensuu", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/sleeping-7x8zwp3z.png", + "role": "top" + }, + { + "id": "105503892038410121", + "summonerName": "Rulfchen", + "firstName": "Tom", + "lastName": "Ruckh", + "image": "http://static.lolesports.com/players/1674835725120_BIG_Rulfchen.png", + "role": "jungle" + }, + { + "id": "105503878796929117", + "summonerName": "Fun K3y", + "firstName": "Johannes", + "lastName": "Werner", + "image": "http://static.lolesports.com/players/1674833432798_USE_FUNk3y.png", + "role": "bottom" + }, + { + "id": "99566405666840029", + "summonerName": "Tolerant", + "firstName": "Barış", + "lastName": "Çepnioğlu", + "image": "http://static.lolesports.com/players/1591438488067_tolerant.png", + "role": "support" + }, + { + "id": "104738162581501484", + "summonerName": "Looca", + "firstName": "Luca", + "lastName": "Hansen", + "image": "http://static.lolesports.com/players/1598177521912_czekolad-51vwzmjl.png", + "role": "top" + }, + { + "id": "103890052389802609", + "summonerName": "Xaky", + "firstName": "Marcos André", + "lastName": "Pinto Letras", + "image": "http://static.lolesports.com/players/1639753032301_placeholder.png", + "role": "mid" + }, + { + "id": "105537492720848423", + "summonerName": "Tonerre", + "firstName": "Scott", + "lastName": "Menard", + "image": "https://static.lolesports.com/players/download.png", + "role": "mid" + }, + { + "id": "106528201026891726", + "summonerName": "Wenbo", + "firstName": "Marc Vincent", + "lastName": "Ostner", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "none" + } + ] + }, + { + "id": "105503948999800557", + "slug": "e-wie-einfach-e-sports", + "name": "E Wie Einfach E-Sports", + "code": "EWI", + "image": "http://static.lolesports.com/teams/1674832938539_MicrosoftTeams-image14.png", + "alternativeImage": "http://static.lolesports.com/teams/1674832938540_PRM_EWI-MonochromeDarkBG.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Prime League", + "region": "EMEA" + }, + "players": [ + { + "id": "105503953704105719", + "summonerName": "Rocklho", + "firstName": "Felix Bao Duy", + "lastName": "Ho", + "image": "http://static.lolesports.com/players/placeholder.png", + "role": "top" + }, + { + "id": "108401872207177088", + "summonerName": "Relative", + "firstName": "Leon", + "lastName": "Van", + "image": "http://static.lolesports.com/players/1654081299570_placeholder.png", + "role": "mid" + }, + { + "id": "107560307087499379", + "summonerName": "Afroboi", + "firstName": "Adrian", + "lastName": "Kaymer", + "image": "http://static.lolesports.com/players/1674834530011_S04_Afroboi.png", + "role": "jungle" + }, + { + "id": "111578184282276278", + "summonerName": "noz2k", + "firstName": "Noah", + "lastName": "Richter", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "110417418238671931", + "summonerName": "Tockimo", + "firstName": "Timo", + "lastName": "Bock", + "image": "http://static.lolesports.com/players/1684836093516_placeholder.png", + "role": "support" + } + ] + }, + { + "id": "105504044166670507", + "slug": "unicorns-of-love-sexy-edition", + "name": "Unicorns of Love Sexy Edition", + "code": "USE", + "image": "http://static.lolesports.com/teams/1674832383233_PRM_USE-FullColorDarkBG.png", + "alternativeImage": "http://static.lolesports.com/teams/PRM_USE-Logo.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Prime League", + "region": "EMEA" + }, + "players": [ + { + "id": "109907677402992796", + "summonerName": "Fornoreason", + "firstName": "Felix", + "lastName": "Schummel", + "image": "http://static.lolesports.com/players/1677058060317_placeholder.png", + "role": "top" + }, + { + "id": "105519573596232348", + "summonerName": "Simpli", + "firstName": "Anselmi", + "lastName": "Rintanen", + "image": "http://static.lolesports.com/players/1674834523720_S04_Simpli.png", + "role": "mid" + }, + { + "id": "103877785966088076", + "summonerName": "DenVoksne", + "firstName": "Nikolaj ", + "lastName": "Asbjørn Meilby", + "image": "http://static.lolesports.com/players/tricked-denvoksne-lol.png", + "role": "bottom" + }, + { + "id": "105502737444943340", + "summonerName": "seaz", + "firstName": "Daniel", + "lastName": "Binderhofer", + "image": "http://static.lolesports.com/players/placeholder.png", + "role": "support" + }, + { + "id": "107444848898952246", + "summonerName": "White", + "firstName": "Aslan", + "lastName": "Panglose", + "image": "http://static.lolesports.com/players/1674125251484_White.png", + "role": "jungle" + } + ] + }, + { + "id": "105505619546859895", + "slug": "fredit-brion", + "name": "OKSavingsBank BRION", + "code": "BRO", + "image": "http://static.lolesports.com/teams/1716454325887_Nowyprojekt.png", + "alternativeImage": "http://static.lolesports.com/teams/1716454325888_Nowyprojekt.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCK", + "region": "KOREA" + }, + "players": [ + { + "id": "114861710240389269", + "summonerName": "Dinai", + "firstName": "ChihYun", + "lastName": "Hwang", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "111658292156711839", + "summonerName": "OddEye", + "firstName": "Cho", + "lastName": "Hyungjin", + "image": "http://static.lolesports.com/players/1718365660131_CL_NS_OddEye_784.png", + "role": "bottom" + }, + { + "id": "108284732073917232", + "summonerName": "Tempester", + "firstName": "Yeongwoong", + "lastName": "Oh", + "image": "http://static.lolesports.com/players/1758214131120_tempest.png", + "role": "mid" + }, + { + "id": "109549750903142546", + "summonerName": "Casting", + "firstName": "Minje", + "lastName": "Shin", + "image": "http://static.lolesports.com/players/1758212529081_casting.png", + "role": "top" + }, + { + "id": "105501713673270508", + "summonerName": "GIDEON", + "firstName": "Minsung", + "lastName": "Kim", + "image": "http://static.lolesports.com/players/1758213224420_gideon-Photoroom.png", + "role": "jungle" + }, + { + "id": "108511159661913839", + "summonerName": "Fisher", + "firstName": "Jeongtae", + "lastName": "Lee", + "image": "http://static.lolesports.com/players/1758213176229_fisher.png", + "role": "mid" + }, + { + "id": "99566404526777331", + "summonerName": "Teddy", + "firstName": "Jinsung", + "lastName": "Park", + "image": "http://static.lolesports.com/players/1758214113822_teddy.png", + "role": "bottom" + }, + { + "id": "111521549050142935", + "summonerName": "Namgung", + "firstName": "Namgung", + "lastName": "Seonghoon", + "image": "http://static.lolesports.com/players/1739356739077_image683.png", + "role": "support" + }, + { + "id": "109523135464568456", + "summonerName": "PlanB", + "firstName": "Hong", + "lastName": "Junseok", + "image": "http://static.lolesports.com/players/1686473515663_CL_LSB_PlanB.png", + "role": "support" + }, + { + "id": "108205131563823136", + "summonerName": "DDahyuk", + "firstName": "Minhyuk", + "lastName": "Ahn", + "image": "http://static.lolesports.com/players/1686473455230_CL_LSB_DDahyuk.png", + "role": "top" + } + ] + }, + { + "id": "105514907449611976", + "slug": "team-bds-academy", + "name": "Team BDS Academy", + "code": "BDSA", + "image": "http://static.lolesports.com/teams/1641944663689_bdslogo.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "La Ligue Française", + "region": "EMEA" + }, + "players": [ + { + "id": "106312671242541724", + "summonerName": "Papiteero", + "firstName": "Antero", + "lastName": "Baldaia", + "image": "http://static.lolesports.com/players/1646765364491_Papiteero.png", + "role": "top" + }, + { + "id": "105520721795341467", + "summonerName": "Mishi", + "firstName": "Kevin", + "lastName": "Westerbacka", + "image": "http://static.lolesports.com/players/1674834528450_S04_Mishigu.png", + "role": "bottom" + }, + { + "id": "109540143306160988", + "summonerName": "Hiro1", + "firstName": "Alexandre", + "lastName": "El Hodebey", + "image": "http://static.lolesports.com/players/1671449939753_placeholder.png", + "role": "top" + }, + { + "id": "103946689343291585", + "summonerName": "Shlatan", + "firstName": "Lucjan Daniel ", + "lastName": "Ahmad", + "image": "http://static.lolesports.com/players/1674126050772_Shlatan.png", + "role": "jungle" + }, + { + "id": "109665702844353777", + "summonerName": "Toffe", + "firstName": "Tautvydas", + "lastName": "Gegeckas", + "image": "https://static.lolesports.com/players/download.png", + "role": "mid" + }, + { + "id": "105526979263717853", + "summonerName": "Piwek", + "firstName": "Kamil", + "lastName": "Staroń", + "image": "https://static.lolesports.com/players/download.png", + "role": "bottom" + }, + { + "id": "109517035670145050", + "summonerName": "Myrtus", + "firstName": "Mohamed", + "lastName": "Rahli", + "image": "http://static.lolesports.com/players/1671097329238_placeholder.png", + "role": "support" + } + ] + }, + { + "id": "105514967858969605", + "slug": "gameward", + "name": "GameWard", + "code": "GW", + "image": "http://static.lolesports.com/teams/LFL-GW-logo.png", + "alternativeImage": "http://static.lolesports.com/teams/LFL-GW-logo.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "La Ligue Française", + "region": "EMEA" + }, + "players": [ + { + "id": "105515090104211227", + "summonerName": "Stormax", + "firstName": "Valentin", + "lastName": "Garnier", + "image": "http://static.lolesports.com/players/pobrane2.png", + "role": "jungle" + }, + { + "id": "99591585009210856", + "summonerName": "Backlund", + "firstName": "Jonathan", + "lastName": "Bäcklund", + "image": "http://static.lolesports.com/players/1674125175307_Backlund.png", + "role": "mid" + }, + { + "id": "107423326605489692", + "summonerName": "HONOR", + "firstName": "Théo", + "lastName": "Magania", + "image": "http://static.lolesports.com/players/1639149876726_placeholder.jpg", + "role": "support" + }, + { + "id": "114811728254662643", + "summonerName": "Sostsy", + "firstName": "John", + "lastName": "Sicre", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "109516799820461126", + "summonerName": "Sotsy", + "firstName": "Sicre", + "lastName": "John", + "image": "http://static.lolesports.com/players/1671093729420_placeholder.png", + "role": "top" + }, + { + "id": "109500850001879714", + "summonerName": "Matias", + "firstName": "Manchin-Opheltes", + "lastName": "Matias", + "image": "http://static.lolesports.com/players/1670850375869_placeholder.png", + "role": "bottom" + } + ] + }, + { + "id": "105515109012592449", + "slug": "izidream", + "name": "IZIDREAM", + "code": "IZI", + "image": "http://static.lolesports.com/teams/LFL-IZI-logo.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "108526085777543763", + "summonerName": "Misanthiel", + "firstName": "Antony", + "lastName": "Garcia", + "image": "http://static.lolesports.com/players/1655976644578_placeholder.png", + "role": "top" + }, + { + "id": "103771688971531722", + "summonerName": "Croniik", + "firstName": "Sergi", + "lastName": "Señé Molist", + "image": "http://static.lolesports.com/players/1583430311106_silhouette.png", + "role": "jungle" + }, + { + "id": "111686577469205695", + "summonerName": "Blidzy", + "firstName": "PAUL", + "lastName": "Ianis", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + }, + { + "id": "103771690403362253", + "summonerName": "Kamikaze", + "firstName": "Oscar", + "lastName": "Pedrosa Gonzalez", + "image": "http://static.lolesports.com/players/1583430333584_silhouette.png", + "role": "none" + } + ] + }, + { + "id": "105515219038427019", + "slug": "karmine-corp-blue", + "name": "Karmine Corp Blue", + "code": "KCB", + "image": "http://static.lolesports.com/teams/1765897112519_WHITE.png", + "alternativeImage": "http://static.lolesports.com/teams/1765897112519_WHITE.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "La Ligue Française", + "region": "EMEA" + }, + "players": [ + { + "id": "106302003665923326", + "summonerName": "SlowQ", + "firstName": "Yebit", + "lastName": "Seo", + "image": "http://static.lolesports.com/players/riddle-slowQ-lol.png", + "role": "mid" + }, + { + "id": "113741971222479798", + "summonerName": "3XA", + "firstName": "Thomas", + "lastName": "Foucou", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "108366451874360829", + "summonerName": "Piero", + "firstName": "Junghoon", + "lastName": "Kim", + "image": "https://static.lolesports.com/players/download.png", + "role": "support" + }, + { + "id": "109710705987430108", + "summonerName": "Nsurr", + "firstName": "Gergaud", + "lastName": "Emilien", + "image": "http://static.lolesports.com/players/1674856372633_5GTZ-Nsurr.png", + "role": "support" + }, + { + "id": "105700869624784693", + "summonerName": "Maynter", + "firstName": "Volodymyr", + "lastName": "Sorokin", + "image": "http://static.lolesports.com/players/1644587885330_14.png", + "role": "top" + }, + { + "id": "107828127997785926", + "summonerName": "Yukino", + "firstName": "Johnny", + "lastName": "Dang", + "image": "http://static.lolesports.com/players/1674831136631_100_YUKINO.png", + "role": "jungle" + } + ] + }, + { + "id": "105515266817621145", + "slug": "team-mces", + "name": "Team MCES", + "code": "MCES", + "image": "http://static.lolesports.com/teams/LFL-MCES-logo.png", + "alternativeImage": "http://static.lolesports.com/teams/LFL-MCES-logo.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "108316701647764173", + "summonerName": "Vespa", + "firstName": "Marley", + "lastName": "Benezech", + "image": "http://static.lolesports.com/players/1652781701111_placeholder.png", + "role": "bottom" + }, + { + "id": "105700676882640978", + "summonerName": "Frappii", + "firstName": "Antonio", + "lastName": "Botezatu", + "image": "http://static.lolesports.com/players/silhouette.png", + "role": "bottom" + }, + { + "id": "107423326605489692", + "summonerName": "HONOR", + "firstName": "Théo", + "lastName": "Magania", + "image": "http://static.lolesports.com/players/1639149876726_placeholder.jpg", + "role": "support" + }, + { + "id": "107423320999343635", + "summonerName": "Lingwi", + "firstName": "Raphaël", + "lastName": "Claudé", + "image": "http://static.lolesports.com/players/1639149791731_placeholder.jpg", + "role": "top" + }, + { + "id": "107423323709453847", + "summonerName": "Moutarde", + "firstName": "Louis", + "lastName": "Ramond", + "image": "http://static.lolesports.com/players/1639149832579_placeholder.jpg", + "role": "mid" + }, + { + "id": "105830670848411185", + "summonerName": "Zicssi", + "firstName": "Lanzo", + "lastName": "Ciajolo", + "image": "http://static.lolesports.com/players/placeholder.png", + "role": "jungle" + } + ] + }, + { + "id": "105515345386578249", + "slug": "solary", + "name": "Solary", + "code": "SLY", + "image": "http://static.lolesports.com/teams/LFL-SLY-logo.png", + "alternativeImage": "http://static.lolesports.com/teams/LFL-SLY-logo.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "La Ligue Française", + "region": "EMEA" + }, + "players": [ + { + "id": "107464181551123782", + "summonerName": "TakeSet", + "firstName": "Belan", + "lastName": "Ahour", + "image": "http://static.lolesports.com/players/1674126084897_TakeSet.png", + "role": "bottom" + }, + { + "id": "102787200003726479", + "summonerName": "Kryze", + "firstName": "Felix", + "lastName": "Hellström", + "image": "http://static.lolesports.com/players/1674125225257_Kryze.png", + "role": "top" + }, + { + "id": "103478281310155270", + "summonerName": "Decay", + "firstName": "Nicolas", + "lastName": "Gawron", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/decay-dqavrdgt.png", + "role": "mid" + }, + { + "id": "113588882471750833", + "summonerName": "Dandan", + "firstName": "Danny", + "lastName": "Le Comte", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "none" + }, + { + "id": "113588883731846490", + "summonerName": "DIEMdodo", + "firstName": "Dominik", + "lastName": "MANSCH", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "none" + }, + { + "id": "105519722481834694", + "summonerName": "Markoon", + "firstName": "Mark", + "lastName": "van Woensel", + "image": "http://static.lolesports.com/players/1705026831731_markoon.png", + "role": "jungle" + }, + { + "id": "104711186576765525", + "summonerName": "Mersa", + "firstName": "Mertai", + "lastName": "Sari", + "image": "http://static.lolesports.com/players/1674151110974_mersa.png", + "role": "support" + } + ] + }, + { + "id": "105519562229907355", + "slug": "barrage-esports", + "name": "Barrage Esports", + "code": "BRG", + "image": "http://static.lolesports.com/teams/NLC_BRG-logo-png.png", + "alternativeImage": "http://static.lolesports.com/teams/NLC_BRG-logo-png.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "NLC", + "region": "EMEA" + }, + "players": [] + }, + { + "id": "105519746234964687", + "slug": "dusty", + "name": "Dusty", + "code": "DY", + "image": "http://static.lolesports.com/teams/NLC_DY-Light.png", + "alternativeImage": "http://static.lolesports.com/teams/NLC_DY-Dark.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "NLC", + "region": "EMEA" + }, + "players": [] + }, + { + "id": "105519846782566525", + "slug": "mnm-gaming", + "name": "MnM Gaming", + "code": "MNM", + "image": "http://static.lolesports.com/teams/NLC_MNM-white.png", + "alternativeImage": "http://static.lolesports.com/teams/NLC_MNM-Dark.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "NLC", + "region": "EMEA" + }, + "players": [] + }, + { + "id": "105519945593890595", + "slug": "kova-esports", + "name": "KOVA Esports", + "code": "KOVA", + "image": "http://static.lolesports.com/teams/NLC_KOVA-White.png", + "alternativeImage": "http://static.lolesports.com/teams/NLC_KOVA-Black.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "NLC", + "region": "EMEA" + }, + "players": [] + }, + { + "id": "105519977854458717", + "slug": "nordavind", + "name": "Nordavind", + "code": "NVD", + "image": "http://static.lolesports.com/teams/NLC_NVD-White.png", + "alternativeImage": "http://static.lolesports.com/teams/NLC_NVD-black.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "NLC", + "region": "EMEA" + }, + "players": [] + }, + { + "id": "105520077508552574", + "slug": "tricked-esport", + "name": "Tricked Esport", + "code": "TRC", + "image": "http://static.lolesports.com/teams/NLC_TRC-logo.png", + "alternativeImage": "http://static.lolesports.com/teams/NLC_TRC-logo.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "NLC", + "region": "EMEA" + }, + "players": [] + }, + { + "id": "105520713962793016", + "slug": "granit-gaming", + "name": "Granit Gaming", + "code": "GRNT", + "image": "http://static.lolesports.com/teams/NLC_GG-logo.png", + "alternativeImage": "http://static.lolesports.com/teams/NLC_GG-logo.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "NLC", + "region": "EMEA" + }, + "players": [] + }, + { + "id": "105520781900097659", + "slug": "4-elements", + "name": "4 Elements", + "code": "4E", + "image": "http://static.lolesports.com/teams/4Elements_Esportslogo_square.png", + "alternativeImage": "http://static.lolesports.com/teams/4Elements_Esportslogo_square.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "105526525262005908", + "summonerName": "Atlas", + "firstName": "Finn", + "lastName": "Tempelaar", + "image": "https://static.lolesports.com/players/download.png", + "role": "mid" + }, + { + "id": "105526528456515630", + "summonerName": "Xaragonas", + "firstName": "Raimo", + "lastName": "Bakker", + "image": "https://static.lolesports.com/players/download.png", + "role": "jungle" + }, + { + "id": "105526529293803569", + "summonerName": "Gennie", + "firstName": "Genaro", + "lastName": "Huiswoud", + "image": "https://static.lolesports.com/players/download.png", + "role": "mid" + } + ] + }, + { + "id": "105520784254806142", + "slug": "ion-squad", + "name": "ION SQUAD", + "code": "ION1", + "image": "http://static.lolesports.com/teams/1641288089992_IONSQUAD.png", + "alternativeImage": "http://static.lolesports.com/teams/1641288089994_IONSQUAD.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "105526572014624919", + "summonerName": "Flif", + "firstName": "Filip", + "lastName": "Krstić", + "image": "https://static.lolesports.com/players/download.png", + "role": "bottom" + }, + { + "id": "108669272925180353", + "summonerName": "Suzu", + "firstName": "Marc", + "lastName": "Fábregas de Miguel", + "image": "https://static.lolesports.com/players/download.png", + "role": "top" + }, + { + "id": "107648374730916715", + "summonerName": "xGenesis", + "firstName": "Pablo", + "lastName": "Jimenez Calderon", + "image": "http://static.lolesports.com/players/1642583839794_placeholder.png", + "role": "top" + }, + { + "id": "106302544704838432", + "summonerName": "Crow", + "firstName": "Luca", + "lastName": "Nucci", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "support" + }, + { + "id": "105527040271049269", + "summonerName": "Makelaar", + "firstName": "Thijmen", + "lastName": "van den Bilt", + "image": "https://static.lolesports.com/players/download.png", + "role": "jungle" + }, + { + "id": "102787200101155585", + "summonerName": "MarrowOoze", + "firstName": "Luka", + "lastName": "Cvetkovic", + "image": "http://static.lolesports.com/players/1655733957240_placeholder.png", + "role": "mid" + }, + { + "id": "105553549102364404", + "summonerName": "Saintsu", + "firstName": "Konstantin", + "lastName": "Stikic", + "image": "https://static.lolesports.com/players/download.png", + "role": "jungle" + } + ] + }, + { + "id": "105520786527322647", + "slug": "krc-genk-esports", + "name": "KRC Genk Esports", + "code": "GENK", + "image": "http://static.lolesports.com/teams/1671442731956_KRCGenkEsports.png", + "alternativeImage": "http://static.lolesports.com/teams/1671442731957_KRCGenkEsports.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "112458338476550727", + "summonerName": "Koenraad", + "firstName": "Olivier", + "lastName": "Verheyen", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + }, + { + "id": "112458362720656821", + "summonerName": "RBP", + "firstName": "Ruben", + "lastName": "Peeters", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + }, + { + "id": "112458362804548994", + "summonerName": "Zeanqo", + "firstName": "Lotfi", + "lastName": "Redouane", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + }, + { + "id": "112458338340746600", + "summonerName": "BramGyBhoo", + "firstName": "Bram", + "lastName": "Blockken", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "105526599154917540", + "summonerName": "Cisse", + "firstName": "Cisse", + "lastName": "Lemmens", + "image": "http://static.lolesports.com/players/1642538762979_placeholder.png", + "role": "support" + }, + { + "id": "109902876452756224", + "summonerName": "Gremy", + "firstName": "Jean-Philippe", + "lastName": "Van Ingh", + "image": "http://static.lolesports.com/players/1676984805414_placeholder.png", + "role": "jungle" + }, + { + "id": "112458338408599499", + "summonerName": "Unchainedd", + "firstName": "Kenneth", + "lastName": "Frederickx", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "105526594415865451", + "summonerName": "DrSaw", + "firstName": "Brilman", + "lastName": "Tom", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "112671856732858955", + "summonerName": "Smebber", + "firstName": "Tim Alexander", + "lastName": "Finger", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + } + ] + }, + { + "id": "105520788833075738", + "slug": "kv-mechelen-esports", + "name": "KV Mechelen Esports", + "code": "KVM", + "image": "http://static.lolesports.com/teams/1641905895072_LightMode.png", + "alternativeImage": "http://static.lolesports.com/teams/1641905895073_FullColor.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "108396615574419780", + "summonerName": "Tobi4", + "firstName": "Louis ", + "lastName": "Spiser", + "image": "http://static.lolesports.com/players/1654001084794_placeholder.png", + "role": "top" + }, + { + "id": "105526976784609342", + "summonerName": "Dragflick", + "firstName": "Peter", + "lastName": "Dekker", + "image": "http://static.lolesports.com/players/pobrane2.png", + "role": "mid" + }, + { + "id": "105526632962187492", + "summonerName": "Tuomari", + "firstName": "Jan-Willem", + "lastName": "van Wingerden", + "image": "http://static.lolesports.com/players/pobrane2.png", + "role": "top" + } + ] + }, + { + "id": "105520796734358045", + "slug": "team-7am", + "name": "One Way Esports", + "code": "OWE", + "image": "http://static.lolesports.com/teams/1706862212751_LOLESPORTSICON.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "105520816474194464", + "slug": "dynasty", + "name": "Dynasty esports", + "code": "DYN", + "image": "http://static.lolesports.com/teams/1704706719036_Dynasty_Logo_Orange_1000x1000.png", + "alternativeImage": "http://static.lolesports.com/teams/1704706719037_Dynasty_Logo_Orange_1000x1000.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "112749724829127632", + "summonerName": "Shigatsu", + "firstName": "Onur", + "lastName": "Dumlu", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + }, + { + "id": "112749730060138237", + "summonerName": "Rice1", + "firstName": "Huy", + "lastName": "Nguyen", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + }, + { + "id": "109630251485149741", + "summonerName": "MaiYuk", + "firstName": "Constantine", + "lastName": "de Jong", + "image": "http://static.lolesports.com/players/1675090999875_Maiyuk.png", + "role": "top" + }, + { + "id": "110490659704164494", + "summonerName": "FIuffy", + "firstName": "Kadir", + "lastName": "Adımutlu", + "image": "http://static.lolesports.com/players/1685953673135_placeholder.png", + "role": "jungle" + }, + { + "id": "105526631082340033", + "summonerName": "Slyv3r", + "firstName": "Job", + "lastName": "Goossens", + "image": "http://static.lolesports.com/players/1675091088027_Slyver.png", + "role": "bottom" + }, + { + "id": "105526631939629278", + "summonerName": "Stookbeer", + "firstName": "Mick", + "lastName": "op den Akker", + "image": "http://static.lolesports.com/players/1675090856041_stookbeer.png", + "role": "support" + }, + { + "id": "112496019430254855", + "summonerName": "Rexat", + "firstName": "Levin", + "lastName": "Kaminski", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + }, + { + "id": "109146898089227862", + "summonerName": "Marty", + "firstName": "Martin", + "lastName": "Dimitrov", + "image": "https://static.lolesports.com/players/download.png", + "role": "mid" + } + ] + }, + { + "id": "105520819263036609", + "slug": "echo-zulu", + "name": "The Agency", + "code": "AGC", + "image": "http://static.lolesports.com/teams/1653997148080_DarkBG-Square.png", + "alternativeImage": "http://static.lolesports.com/teams/1653997148082_LightBG-Square.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [] + }, + { + "id": "105520822049210915", + "slug": "mcon-lg-ultragear", + "name": "mCon Esports", + "code": "MCON", + "image": "http://static.lolesports.com/teams/MCon_esportslogo_square.png", + "alternativeImage": "http://static.lolesports.com/teams/MCon_esportslogo_square.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Road of Legends", + "region": "EMEA" + }, + "players": [ + { + "id": "106306506431426795", + "summonerName": "Guertas", + "firstName": "Romain ", + "lastName": "Polo", + "image": "http://static.lolesports.com/players/1687376821211_Guertas.png", + "role": "jungle" + }, + { + "id": "110467131927968978", + "summonerName": "Boykuh", + "firstName": "Boy ", + "lastName": "Kemps", + "image": "http://static.lolesports.com/players/1685594662921_placeholder.png", + "role": "none" + }, + { + "id": "112433925341996347", + "summonerName": "C7", + "firstName": "Mebarki", + "lastName": "Ilias", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "105526630132932827", + "summonerName": "Mikkel", + "firstName": "Michael", + "lastName": "Nguyen", + "image": "http://static.lolesports.com/players/1675090413893_Mikkel.png", + "role": "mid" + }, + { + "id": "105526631082340033", + "summonerName": "Slyv3r", + "firstName": "Job", + "lastName": "Goossens", + "image": "http://static.lolesports.com/players/1675091088027_Slyver.png", + "role": "bottom" + }, + { + "id": "105526631939629278", + "summonerName": "Stookbeer", + "firstName": "Mick", + "lastName": "op den Akker", + "image": "http://static.lolesports.com/players/1675090856041_stookbeer.png", + "role": "support" + }, + { + "id": "114971736379186625", + "summonerName": "Tobio", + "firstName": "Louis", + "lastName": "Spiser", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "103495716723402637", + "summonerName": "Kruimel", + "firstName": "Brayan", + "lastName": "van Oosten", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/kruimel-cnj427b3.png", + "role": "mid" + }, + { + "id": "115140263014042917", + "summonerName": "MrHB1804", + "firstName": "Hidde", + "lastName": "Bakker", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "bottom" + } + ] + }, + { + "id": "105520824521753126", + "slug": "psv-esports", + "name": "PSV Esports", + "code": "PSV", + "image": "http://static.lolesports.com/teams/PSV_Esportslogo_square.png", + "alternativeImage": "http://static.lolesports.com/teams/PSV_Esportslogo_square.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "101585276941002708", + "summonerName": "Flaxxish", + "firstName": "Olof", + "lastName": "Medin", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/flaxxish-83m7g1pr.png", + "role": "top" + }, + { + "id": "106302937082614818", + "summonerName": "Korokke", + "firstName": "Elwin ", + "lastName": "Schoofs", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "top" + }, + { + "id": "106302938379546400", + "summonerName": "Franky", + "firstName": "Frank ", + "lastName": "Temminck", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "mid" + } + ] + }, + { + "id": "105520826536746180", + "slug": "team-thrll", + "name": "Team THRLL", + "code": "TRL", + "image": "http://static.lolesports.com/teams/Team_THRLLlogo_square.png", + "alternativeImage": "http://static.lolesports.com/teams/Team_THRLLlogo_square.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "105526836088440826", + "summonerName": "Dummyxx", + "firstName": "Rik", + "lastName": "Haring", + "image": "https://static.lolesports.com/players/download.png", + "role": "support" + } + ] + }, + { + "id": "105521201981545679", + "slug": "the-spawn-esports", + "name": "The Spawn Esports", + "code": "SPN", + "image": "http://static.lolesports.com/teams/TheSpawn.png", + "alternativeImage": "http://static.lolesports.com/teams/TheSpawn.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107633796959272971", + "summonerName": "Zebron", + "firstName": "Antreas", + "lastName": "Georgiou", + "image": "http://static.lolesports.com/players/1642361400004_placeholder.png", + "role": "bottom" + }, + { + "id": "107065252316367085", + "summonerName": "Centulion", + "firstName": "Centulion", + "lastName": "Centulion", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "support" + }, + { + "id": "107633845403645874", + "summonerName": "Azakana", + "firstName": "Radu", + "lastName": "Dobra", + "image": "http://static.lolesports.com/players/1642362138782_placeholder.png", + "role": "jungle" + }, + { + "id": "107633852045195191", + "summonerName": "Ciudi", + "firstName": "Dumitru Victor", + "lastName": "Alexandru", + "image": "http://static.lolesports.com/players/1642362240834_placeholder.png", + "role": "support" + }, + { + "id": "107779662612331268", + "summonerName": "Hellish", + "firstName": "Paulius", + "lastName": "Kartavcevas", + "image": "http://static.lolesports.com/players/1644587130502_placeholder.png", + "role": "jungle" + }, + { + "id": "107853188442628015", + "summonerName": "Zolazy", + "firstName": "Sebastian", + "lastName": "Fex", + "image": "http://static.lolesports.com/players/1645709045779_placeholder.png", + "role": "top" + }, + { + "id": "107065254694130592", + "summonerName": "RUSHEX", + "firstName": "Filip", + "lastName": "Larionesi", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "support" + }, + { + "id": "107128053571953080", + "summonerName": "RaiZeR", + "firstName": "David", + "lastName": "Heins", + "image": "http://static.lolesports.com/players/1634644368730_placeholder.jpg", + "role": "mid" + } + ] + }, + { + "id": "105521239281281237", + "slug": "cowboysquad-imperials-esports", + "name": "CowBoySquad Imperials Esports", + "code": "CBI", + "image": "http://static.lolesports.com/teams/CowBoySquadImperialsEsports.png", + "alternativeImage": "http://static.lolesports.com/teams/CowBoySquadImperialsEsports.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Hellenic Legends League", + "region": "EMEA" + }, + "players": [ + { + "id": "106250637109320037", + "summonerName": "F1V5", + "firstName": "Matúš", + "lastName": "Rusňák", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "mid" + }, + { + "id": "106250646314113405", + "summonerName": "Noxus", + "firstName": "Stavros", + "lastName": "Xiarchogiannopoulos", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "jungle" + }, + { + "id": "106250653606697354", + "summonerName": "Shaunna", + "firstName": "Adamos", + "lastName": "Charalampous", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "bottom" + }, + { + "id": "105521205462752466", + "summonerName": "Br0kk", + "firstName": "Georgios", + "lastName": "Varvarezos", + "image": "http://static.lolesports.com/players/pobrane2.png", + "role": "top" + }, + { + "id": "106405621949440399", + "summonerName": "Raitch", + "firstName": "Nick", + "lastName": "Rollinger", + "image": "http://static.lolesports.com/players/pobrane2.png", + "role": "mid" + }, + { + "id": "106405623825060663", + "summonerName": "KushArch", + "firstName": "Georgios", + "lastName": "Semertzidis", + "image": "http://static.lolesports.com/players/pobrane2.png", + "role": "bottom" + }, + { + "id": "105791093586325572", + "summonerName": "Furkoazki", + "firstName": "Nejdet Furkan", + "lastName": "Altıntop", + "image": "http://static.lolesports.com/players/eSports_male_NoPlayer.png", + "role": "support" + } + ] + }, + { + "id": "105521293297166647", + "slug": "zerolag-esports", + "name": "Hell ZeroLag", + "code": "HELL", + "image": "http://static.lolesports.com/teams/ZRLLogowhite600x600.png", + "alternativeImage": "http://static.lolesports.com/teams/ZRLLogoblack600x600.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Hellenic Legends League", + "region": "EMEA" + }, + "players": [ + { + "id": "114818408666833767", + "summonerName": "Dragneel", + "firstName": "Ioannis", + "lastName": "Damas", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "114818410189300587", + "summonerName": "247", + "firstName": "Konstantinos", + "lastName": "Chairetakis", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "104711227672883806", + "summonerName": "Heroic", + "firstName": "Francisco", + "lastName": "Ribeiro", + "image": "http://static.lolesports.com/players/1687001070525_GTZ_HEROIC.png", + "role": "mid" + }, + { + "id": "110528674833321985", + "summonerName": "MrPhant0m", + "firstName": "Markos", + "lastName": "Katsikas", + "image": "http://static.lolesports.com/players/1686533727337_placeholder.png", + "role": "bottom" + }, + { + "id": "106346031544282111", + "summonerName": "Leo D Aras", + "firstName": "Christodoulos", + "lastName": "Leontaras", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "support" + }, + { + "id": "101422616400489209", + "summonerName": "Kituruken", + "firstName": "Umut", + "lastName": "Ceylan", + "image": "http://static.lolesports.com/players/Kituruken.png", + "role": "jungle" + } + ] + }, + { + "id": "105521402545275594", + "slug": "gentlemens-gaming", + "name": "Gentlemen's Gaming", + "code": "GGM", + "image": "http://static.lolesports.com/teams/Gentlemen27s_Gaminglogo_square.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "105530985154863910", + "summonerName": "Grzybek", + "firstName": "Jakub", + "lastName": "Jagiełka", + "image": "https://static.lolesports.com/players/download.png", + "role": "top" + }, + { + "id": "107463804015266737", + "summonerName": "Badlyyga", + "firstName": "Tomasz", + "lastName": "Bałdyga", + "image": "http://static.lolesports.com/players/1639767514353_placeholder.png", + "role": "jungle" + }, + { + "id": "107156526641685473", + "summonerName": "Adison", + "firstName": "Adrian", + "lastName": "Głuszczenko", + "image": "http://static.lolesports.com/players/1635078833645_placeholder.jpg", + "role": "bottom" + }, + { + "id": "105530891494744762", + "summonerName": "Slipper", + "firstName": "Hubert", + "lastName": "Burzec", + "image": "http://static.lolesports.com/players/1671444940727_placeholder.png", + "role": "support" + }, + { + "id": "107637790611143656", + "summonerName": "Kaka", + "firstName": "Kacper", + "lastName": "Bukowski", + "image": "http://static.lolesports.com/players/1642422339879_placeholder.png", + "role": "none" + } + ] + }, + { + "id": "105521408363571548", + "slug": "illuminar-gaming", + "name": "Illuminar Gaming", + "code": "IHG", + "image": "http://static.lolesports.com/teams/1671447356949_Qaj7cc8.png", + "alternativeImage": "http://static.lolesports.com/teams/1671447356952_Qaj7cc8.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "109862313001822780", + "summonerName": "Samul3k", + "firstName": "Kamil", + "lastName": "Samulewski", + "image": "http://static.lolesports.com/players/1676365859075_placeholder.png", + "role": "none" + }, + { + "id": "107599458056590825", + "summonerName": "PolskiKoz", + "firstName": "Jarosław", + "lastName": "Marchewka", + "image": "http://static.lolesports.com/players/1641837430360_placeholder.png", + "role": "top" + }, + { + "id": "107156512664982378", + "summonerName": "Mrozku", + "firstName": "Adrian", + "lastName": "Skonieczny", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "109539989429400532", + "summonerName": "Tuksiarz", + "firstName": "Patryk", + "lastName": "Ewertowski", + "image": "http://static.lolesports.com/players/1671447591739_placeholder.png", + "role": "none" + } + ] + }, + { + "id": "105521412995449549", + "slug": "team-esca-gaming", + "name": "Team ESCA Gaming", + "code": "ESCA", + "image": "http://static.lolesports.com/teams/1671446791990_7GZyEuO.png", + "alternativeImage": "http://static.lolesports.com/teams/1671446791991_7GZyEuO.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "111757973524925239", + "summonerName": "DesoLinee", + "firstName": "Adrian", + "lastName": "Kaube", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "105521724000666603", + "summonerName": "Mazi", + "firstName": "Bartosz", + "lastName": "Mazur", + "image": "http://static.lolesports.com/players/pobrane2.png", + "role": "jungle" + }, + { + "id": "109659424519582746", + "summonerName": "buffi", + "firstName": "Zabiegaj", + "lastName": "Kamil", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "mid" + }, + { + "id": "107599605445482634", + "summonerName": "GGiler", + "firstName": "Szymon", + "lastName": "Trocka", + "image": "http://static.lolesports.com/players/1641839679201_placeholder.png", + "role": "bottom" + }, + { + "id": "111757979004379778", + "summonerName": "UFO", + "firstName": "Aleks", + "lastName": "Dudziak", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "105521719642742462", + "summonerName": "kubYD", + "firstName": "Jakub", + "lastName": "Grobelny", + "image": "https://static.lolesports.com/players/download.png", + "role": "none" + }, + { + "id": "108353503108590464", + "summonerName": "Don Ponk", + "firstName": "Kramdi", + "lastName": "Mohammed", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "support" + } + ] + }, + { + "id": "105521419784127190", + "slug": "komilfriends", + "name": "Komil&Friends", + "code": "KNF", + "image": "http://static.lolesports.com/teams/1671449320276_LjgDGg2.png", + "alternativeImage": "http://static.lolesports.com/teams/1671449320278_LjgDGg2.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "108353513683792949", + "summonerName": "Yeti", + "firstName": "Szymon", + "lastName": "Wójcicki", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "top" + }, + { + "id": "105616142446099523", + "summonerName": "Gerro", + "firstName": "Gerard", + "lastName": "Grzeszkowiak", + "image": "http://static.lolesports.com/players/placeholder.png", + "role": "support" + }, + { + "id": "110378822586890038", + "summonerName": "WRub3L", + "firstName": "Mateusz", + "lastName": "Kauffmann", + "image": "http://static.lolesports.com/players/1684247167859_placeholder.png", + "role": "none" + }, + { + "id": "107599616229299912", + "summonerName": "Makony", + "firstName": "Bartosz", + "lastName": "Dąbrowski", + "image": "http://static.lolesports.com/players/1641839842773_placeholder.png", + "role": "top" + }, + { + "id": "109540076550950727", + "summonerName": "Ketim", + "firstName": "Nikodem", + "lastName": "Spółka", + "image": "http://static.lolesports.com/players/1671448921306_placeholder.png", + "role": "jungle" + }, + { + "id": "107156546374407047", + "summonerName": "lee sang", + "firstName": "Patryk", + "lastName": "Kozłowski", + "image": "http://static.lolesports.com/players/1635079127107_placeholder.jpg", + "role": "mid" + }, + { + "id": "109540083571211090", + "summonerName": "MIK0", + "firstName": "Mikołaj", + "lastName": "Żołek", + "image": "http://static.lolesports.com/players/1671449028123_placeholder.png", + "role": "bottom" + }, + { + "id": "109540085648527179", + "summonerName": "Catra", + "firstName": "Jakub", + "lastName": "Rożek", + "image": "http://static.lolesports.com/players/1671449060431_placeholder.png", + "role": "support" + }, + { + "id": "109540089904828239", + "summonerName": "Salami", + "firstName": "Jakub", + "lastName": "Wójtowicz", + "image": "http://static.lolesports.com/players/1671449124975_placeholder.png", + "role": "none" + }, + { + "id": "109857317926915507", + "summonerName": "Minemany11", + "firstName": "Dominik", + "lastName": "Nowacki", + "image": "http://static.lolesports.com/players/1676289635208_placeholder.png", + "role": "none" + } + ] + }, + { + "id": "105521426070232498", + "slug": "rejects-gaming", + "name": "Rejects Gaming", + "code": "RJX", + "image": "http://static.lolesports.com/teams/RejectsGaming.png", + "alternativeImage": "http://static.lolesports.com/teams/RejectsGaming.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Hellenic Legends League", + "region": "EMEA" + }, + "players": [ + { + "id": "105521435700092354", + "summonerName": "Mr Miks", + "firstName": "Mihajlo", + "lastName": "Djordjevic", + "image": "https://static.lolesports.com/players/download.png", + "role": "bottom" + }, + { + "id": "105521438934346124", + "summonerName": "Vala", + "firstName": "Alexandros-Stavros", + "lastName": "Mpolofis", + "image": "https://static.lolesports.com/players/download.png", + "role": "support" + } + ] + }, + { + "id": "105521451717484016", + "slug": "hive-athens-ec", + "name": "Hive Athens EC", + "code": "HIVE", + "image": "http://static.lolesports.com/teams/HiveAthensEC.png", + "alternativeImage": "http://static.lolesports.com/teams/HiveAthensEC.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Hellenic Legends League", + "region": "EMEA" + }, + "players": [ + { + "id": "103935349187431378", + "summonerName": "Missclick", + "firstName": "Yannick ", + "lastName": "Hiller", + "image": "https://static.lolesports.com/players/download.png", + "role": "bottom" + }, + { + "id": "105521506835226161", + "summonerName": "NL", + "firstName": "Spiros", + "lastName": "Diavatis", + "image": "http://static.lolesports.com/players/1633689311982_silhouette.png", + "role": "top" + } + ] + }, + { + "id": "105521504308341229", + "slug": "team-refuse", + "name": "Team Refuse", + "code": "RFS", + "image": "http://static.lolesports.com/teams/1736362515790_Team-Refuse-2024-Logo.png", + "alternativeImage": "http://static.lolesports.com/teams/1736362515790_Team-Refuse-2024-Logo.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "Hellenic Legends League", + "region": "EMEA" + }, + "players": [] + }, + { + "id": "105521637552587612", + "slug": "team-phantasma", + "name": "Team Phantasma", + "code": "TP", + "image": "http://static.lolesports.com/teams/TeamPhantasma.png", + "alternativeImage": "http://static.lolesports.com/teams/TeamPhantasma.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Hellenic Legends League", + "region": "EMEA" + }, + "players": [ + { + "id": "105515253867707529", + "summonerName": "Manaty", + "firstName": "Stephane", + "lastName": "Dimier", + "image": "http://static.lolesports.com/players/pobrane2.png", + "role": "jungle" + }, + { + "id": "107065257649242509", + "summonerName": "REAVER", + "firstName": "Giannis", + "lastName": "Dimitrelis", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "support" + }, + { + "id": "105521300963305788", + "summonerName": "Peppe", + "firstName": "Petros", + "lastName": "Berdempes", + "image": "http://static.lolesports.com/players/pobrane2.png", + "role": "mid" + }, + { + "id": "104727029057544258", + "summonerName": "Bako", + "firstName": "Theodoros", + "lastName": "Bakogiannis", + "image": "http://static.lolesports.com/players/1598007641281_czekolad-51vwzmjl.png", + "role": "none" + }, + { + "id": "105521508319865335", + "summonerName": "Vaynedeta", + "firstName": "Stavros", + "lastName": "Giannoulakis", + "image": "http://static.lolesports.com/players/1642163961595_placeholder.png", + "role": "bottom" + }, + { + "id": "108403323724987346", + "summonerName": "Spooder", + "firstName": "Sharad", + "lastName": "Muhanad", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "top" + } + ] + }, + { + "id": "105521674055625312", + "slug": "gamespace-mediterranean-college-esports", + "name": "Gamespace M.C.", + "code": "GSMC", + "image": "http://static.lolesports.com/teams/GameSpaceMediterraneanCollegeeSports.png", + "alternativeImage": "http://static.lolesports.com/teams/GameSpaceMediterraneanCollegeeSports.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Hellenic Legends League", + "region": "EMEA" + }, + "players": [ + { + "id": "105521268389085794", + "summonerName": "Tsiperakos", + "firstName": "Vassilis", + "lastName": "Lalas", + "image": "https://static.lolesports.com/players/download.png", + "role": "mid" + }, + { + "id": "107694475587007316", + "summonerName": "Nawa", + "firstName": "Mahmut", + "lastName": "Zitto", + "image": "http://static.lolesports.com/players/1717747096269_nawa.png", + "role": "bottom" + }, + { + "id": "103935372831930781", + "summonerName": "IceBreaker", + "firstName": "Dimitris ", + "lastName": "Chatzitsobanis", + "image": "http://static.lolesports.com/players/pobrane2.png", + "role": "none" + }, + { + "id": "111772103436655131", + "summonerName": "Nikiyas", + "firstName": "NIKITAS", + "lastName": "STEFANAKIS ", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "106314064472890339", + "summonerName": "Aytekn", + "firstName": "Aytekin", + "lastName": "Tekin", + "image": "http://static.lolesports.com/players/1717747811935_aytekin.png", + "role": "top" + }, + { + "id": "111181835912388432", + "summonerName": "CENTU", + "firstName": "SPIRIDON", + "lastName": "PANDELOPOULOS", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "107065257052115904", + "summonerName": "Pallet", + "firstName": "Aggelos", + "lastName": "Visvikis", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "jungle" + } + ] + }, + { + "id": "105521706535388095", + "slug": "anorthosis-famagusta-esports", + "name": "Anorthosis Esports", + "code": "ANO", + "image": "http://static.lolesports.com/teams/1704285846732_ANO_LOGO.png", + "alternativeImage": "http://static.lolesports.com/teams/1704285846734_ANO_LOGO.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Hellenic Legends League", + "region": "EMEA" + }, + "players": [ + { + "id": "105520112147553289", + "summonerName": "Furuy", + "firstName": "Mike", + "lastName": "Wils", + "image": "http://static.lolesports.com/players/1744004170302_image6-2025-04-07T073550.688.png", + "role": "mid" + }, + { + "id": "103877979734184783", + "summonerName": "Pun1sher", + "firstName": "Konstantinos ", + "lastName": "Katsikadakos", + "image": "https://static.lolesports.com/players/download.png", + "role": "mid" + }, + { + "id": "102147202400808332", + "summonerName": "Ryuzaki", + "firstName": "Dušan", + "lastName": "Petković", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/czv-ryuzaki-b75of4cq.png", + "role": "jungle" + }, + { + "id": "106297437266974349", + "summonerName": "Soap", + "firstName": "Konstantinos", + "lastName": "Andreadis", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "support" + } + ] + }, + { + "id": "105532791598779236", + "slug": "ucam-esports-club", + "name": "UCAM Esports", + "code": "UCAM", + "image": "http://static.lolesports.com/teams/SL_UCAM-Logo.png", + "alternativeImage": "http://static.lolesports.com/teams/SL_UCAM-Logo.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "SuperLiga", + "region": "EMEA" + }, + "players": [ + { + "id": "105589292050372795", + "summonerName": "ESCIK", + "firstName": "Tomasz", + "lastName": "Skwarczyński", + "image": "http://static.lolesports.com/players/1674834928122_GL_Escik.png", + "role": "mid" + }, + { + "id": "104251402967330496", + "summonerName": "ANDARIEL", + "firstName": "Mert", + "lastName": "Kılıç", + "image": "http://static.lolesports.com/players/1687252305255_Andariel.png", + "role": "bottom" + }, + { + "id": "105554098262562524", + "summonerName": "iLevi", + "firstName": "Besmir", + "lastName": "Jakupi", + "image": "https://static.lolesports.com/players/download.png", + "role": "support" + }, + { + "id": "110350119932285020", + "summonerName": "Gromix", + "firstName": "Gonzalo ", + "lastName": "Bernal López", + "image": "http://static.lolesports.com/players/1683809203983_placeholder.png", + "role": "jungle" + }, + { + "id": "103935317076176149", + "summonerName": "bluerzor", + "firstName": "Subicz ", + "lastName": "Dániel", + "image": "http://static.lolesports.com/players/1639753311454_placeholder.png", + "role": "jungle" + }, + { + "id": "109541363140595639", + "summonerName": "Lisbd", + "firstName": "Lis López", + "lastName": "Jose", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "support" + }, + { + "id": "102808840667875469", + "summonerName": "Sinmivak", + "firstName": "Jakub", + "lastName": "Rucki", + "image": "https://static.lolesports.com/players/download.png", + "role": "top" + } + ] + }, + { + "id": "105532840001188717", + "slug": "s2v-esports", + "name": "S2V Esports", + "code": "S2V", + "image": "http://static.lolesports.com/teams/SL_S2V-Logo_white.png", + "alternativeImage": "http://static.lolesports.com/teams/SL_S2V-Logo_dark.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "SuperLiga", + "region": "EMEA" + }, + "players": [ + { + "id": "105532922945309599", + "summonerName": "Jaeger", + "firstName": "Lennart", + "lastName": "Warkus", + "image": "http://static.lolesports.com/players/1673514726432_placeholder.png", + "role": "top" + }, + { + "id": "105532924148157346", + "summonerName": "Gavan", + "firstName": "Robert Erik", + "lastName": "Lennart", + "image": "https://static.lolesports.com/players/download.png", + "role": "jungle" + }, + { + "id": "105532925520819081", + "summonerName": "Jervo", + "firstName": "Javier", + "lastName": "Ruiz Martinez", + "image": "https://static.lolesports.com/players/download.png", + "role": "top" + }, + { + "id": "105532927512720281", + "summonerName": "Thream", + "firstName": "Eder", + "lastName": "Mohedas Plaza", + "image": "https://static.lolesports.com/players/download.png", + "role": "support" + }, + { + "id": "106302713414970959", + "summonerName": "Toyejo", + "firstName": "Antonio David ", + "lastName": "Gil Oltra", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "mid" + }, + { + "id": "106302711068367788", + "summonerName": "Ibai0", + "firstName": "Ibai", + "lastName": "Yuste Martín", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "jungle" + }, + { + "id": "101389631542115715", + "summonerName": "Prosfair", + "firstName": "Tom", + "lastName": "Willis", + "image": "http://static.lolesports.com/players/prosfair.png", + "role": "support" + }, + { + "id": "107105589484703972", + "summonerName": "PauFerran", + "firstName": "Pau ", + "lastName": "Ferran", + "image": "https://static.lolesports.com/players/download.png", + "role": "support" + } + ] + }, + { + "id": "105536643047197642", + "slug": "nasr-esports", + "name": "NASR Esports", + "code": "NASR", + "image": "http://static.lolesports.com/teams/red.png", + "alternativeImage": "http://static.lolesports.com/teams/red.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "TCL", + "region": "EMEA" + }, + "players": [ + { + "id": "107605512476418835", + "summonerName": "CAPE", + "firstName": "Bedirhan", + "lastName": "Çalışkan", + "image": "http://static.lolesports.com/players/1641929813682_placeholder.png", + "role": "jungle" + }, + { + "id": "108640695970381330", + "summonerName": "Alix", + "firstName": "Alihan ", + "lastName": "Özdemir", + "image": "http://static.lolesports.com/players/1657725459375_placeholder.png", + "role": "mid" + }, + { + "id": "107694475587007316", + "summonerName": "Nawa", + "firstName": "Mahmut", + "lastName": "Zitto", + "image": "http://static.lolesports.com/players/1717747096269_nawa.png", + "role": "bottom" + }, + { + "id": "111698349604420282", + "summonerName": "XMV2", + "firstName": "Berent", + "lastName": "Uyguner", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "111686531260879329", + "summonerName": "Gakgos", + "firstName": "Bulut", + "lastName": "Ibrahim Samet", + "image": "http://static.lolesports.com/players/1753348399682_image6125.png", + "role": "top" + }, + { + "id": "111719719176586010", + "summonerName": "Yohan", + "firstName": "Yohan", + "lastName": "Kim", + "image": "http://static.lolesports.com/players/1755157355696_SHG_Yohan.png", + "role": "jungle" + }, + { + "id": "112457465896570471", + "summonerName": "dispel", + "firstName": "Jangwon", + "lastName": "Lee", + "image": "http://static.lolesports.com/players/1717747043455_dispel.png", + "role": "support" + }, + { + "id": "105711576007645496", + "summonerName": "Berkan", + "firstName": "Yusuf Emir", + "lastName": "Türkden", + "image": "http://static.lolesports.com/players/1717747006054_berkan.png", + "role": "mid" + }, + { + "id": "110429742934986202", + "summonerName": "Whistle", + "firstName": "Jong-hwi", + "lastName": "Jo", + "image": "http://static.lolesports.com/players/1705672863738_WHISTLE.png", + "role": "mid" + } + ] + }, + { + "id": "105536738266035235", + "slug": "cyberground-gaming", + "name": "Cyberground Gaming", + "code": "CGG", + "image": "http://static.lolesports.com/teams/LOGOUFFICIALE.png", + "alternativeImage": "http://static.lolesports.com/teams/LOGOUFFICIALE.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "103877768631718512", + "summonerName": "Gabbo", + "firstName": "Gabriel ", + "lastName": "Olivieri", + "image": "http://static.lolesports.com/players/1671449397438_placeholder.png", + "role": "top" + }, + { + "id": "99682959195915061", + "summonerName": "MGX", + "firstName": "Mert", + "lastName": "Güvercin", + "image": "http://static.lolesports.com/players/1674553075224_G11.png", + "role": "mid" + }, + { + "id": "107614555394665473", + "summonerName": "MxDragon", + "firstName": "Yaroslav", + "lastName": "Svystun", + "image": "http://static.lolesports.com/players/1642067794798_placeholder.png", + "role": "jungle" + }, + { + "id": "99124844346233375", + "summonerName": "Zergsting", + "firstName": "Onur", + "lastName": "Ünalan", + "image": "http://static.lolesports.com/players/1655286828762_zersting.png", + "role": "support" + }, + { + "id": "109748952485279435", + "summonerName": "MattyNarcy", + "firstName": "Giuseppe", + "lastName": "Capogrosso", + "image": "http://static.lolesports.com/players/1674636117605_placeholder.png", + "role": "none" + }, + { + "id": "106301604423127167", + "summonerName": "Gama", + "firstName": "Mauro", + "lastName": "Bruno", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "none" + }, + { + "id": "110490402883722968", + "summonerName": "BlackV", + "firstName": "Manuel Marcial", + "lastName": "Riveros Argomedo", + "image": "http://static.lolesports.com/players/1685949754131_placeholder.png", + "role": "none" + }, + { + "id": "105553550005228941", + "summonerName": "Crocomux", + "firstName": "Davide", + "lastName": "Gioan", + "image": "http://static.lolesports.com/players/1644827168307_placeholder.png", + "role": "none" + } + ] + }, + { + "id": "105536773074826367", + "slug": "ggesports", + "name": "GGEsports", + "code": "GGE", + "image": "http://static.lolesports.com/teams/PGNATS_GGE-logo.png", + "alternativeImage": "http://static.lolesports.com/teams/PGNATS_GGE-logo.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107603205958689433", + "summonerName": "gtrik", + "firstName": "Rok", + "lastName": "Fišer", + "image": "http://static.lolesports.com/players/1641894617899_placeholder.png", + "role": "mid" + }, + { + "id": "109705443073925123", + "summonerName": "Forsaken1", + "firstName": "Cheng", + "lastName": "Yiji", + "image": "http://static.lolesports.com/players/1673972213344_placeholder.png", + "role": "top" + }, + { + "id": "107464145620487455", + "summonerName": "JeppeHou", + "firstName": "Jeppe", + "lastName": "Hougaard", + "image": "http://static.lolesports.com/players/1639772726198_placeholder.png", + "role": "support" + } + ] + }, + { + "id": "105536918475957734", + "slug": "macko-esports", + "name": "Macko Esports", + "code": "MCK", + "image": "http://static.lolesports.com/teams/MACKOESPORTSLOGO.png", + "alternativeImage": "http://static.lolesports.com/teams/MACKOESPORTSLOGO.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LoL Italian Tournament", + "region": "EMEA" + }, + "players": [ + { + "id": "106250766596825684", + "summonerName": "Shredder", + "firstName": "Gabriele", + "lastName": "Iannarelli", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "support" + }, + { + "id": "108404607430446490", + "summonerName": "FlickeR", + "firstName": "de Oliveira", + "lastName": "Rodrigo", + "image": "http://static.lolesports.com/players/1744005007943_image6-2025-04-07T074926.202.png", + "role": "bottom" + }, + { + "id": "105520112147553289", + "summonerName": "Furuy", + "firstName": "Mike", + "lastName": "Wils", + "image": "http://static.lolesports.com/players/1744004170302_image6-2025-04-07T073550.688.png", + "role": "mid" + }, + { + "id": "108404241877151289", + "summonerName": "Mafro", + "firstName": "Čorić", + "lastName": "Lovre", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "jungle" + }, + { + "id": "103536980522155001", + "summonerName": "Color", + "firstName": "Sebastian", + "lastName": "Czyżyk", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/color-fyxezou8.png", + "role": "top" + }, + { + "id": "111694475981174425", + "summonerName": "Rikale", + "firstName": "Alessio", + "lastName": "Tata", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "111694476111713925", + "summonerName": "Bluumiie", + "firstName": "Valentina", + "lastName": "Fammiano", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + } + ] + }, + { + "id": "105536952747658409", + "slug": "mkers", + "name": "MKERS", + "code": "MKRS", + "image": "http://static.lolesports.com/teams/1642580912478_Mkers_Logo-YahyaOuhlichou.jpeg", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "EMEA Masters", + "region": "EMEA" + }, + "players": [ + { + "id": "107648392099136375", + "summonerName": "Piskhello", + "firstName": "Mattia", + "lastName": "Scandroglio", + "image": "http://static.lolesports.com/players/1642584105056_placeholder.png", + "role": "bottom" + }, + { + "id": "107065250098170073", + "summonerName": "Duszkis", + "firstName": "Kamil", + "lastName": "Kacprzyk", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "jungle" + }, + { + "id": "107648400895378300", + "summonerName": "Hosin", + "firstName": "Houcine", + "lastName": "Baccari", + "image": "http://static.lolesports.com/players/1642584238193_placeholder.png", + "role": "mid" + }, + { + "id": "107648402252956544", + "summonerName": "MatJhonny", + "firstName": "Matteo", + "lastName": "Sivi", + "image": "http://static.lolesports.com/players/1642584260815_placeholder.png", + "role": "mid" + }, + { + "id": "106301654742101043", + "summonerName": "Ethixcy", + "firstName": "Ivan", + "lastName": "Manasiev", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "support" + }, + { + "id": "107648405773026913", + "summonerName": "Finicky", + "firstName": "Filip", + "lastName": "Muller", + "image": "http://static.lolesports.com/players/1642584313652_placeholder.png", + "role": "top" + }, + { + "id": "107648407456188005", + "summonerName": "ManaZ", + "firstName": "Atdhe", + "lastName": "Bela", + "image": "http://static.lolesports.com/players/1642584339378_placeholder.png", + "role": "top" + } + ] + }, + { + "id": "105536980594429116", + "slug": "romulea-esport", + "name": "Romulea eSport", + "code": "RML", + "image": "http://static.lolesports.com/teams/Romulea_Off.png", + "alternativeImage": "http://static.lolesports.com/teams/Romulea_Off.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "112880372381731252", + "summonerName": "Ben01", + "firstName": "Ben", + "lastName": "Ben", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + } + ] + }, + { + "id": "105537149834356301", + "slug": "anc-outplayed", + "name": "aNc Legends", + "code": "ANC", + "image": "http://static.lolesports.com/teams/1743088399990_logo-anc-legends-sq-y25-AlessandroSesani.png", + "alternativeImage": "http://static.lolesports.com/teams/1743088399990_logo-anc-legends-sq-y25-AlessandroSesani.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "109705497794178774", + "summonerName": "Brizz", + "firstName": "Luca", + "lastName": "Brizzante", + "image": "http://static.lolesports.com/players/1673973048067_placeholder.png", + "role": "bottom" + }, + { + "id": "114235137994815330", + "summonerName": "Fragola", + "firstName": "Alessandro", + "lastName": "Zappala", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "104234199191599216", + "summonerName": "Paulcannon", + "firstName": "Paolo", + "lastName": "Marcucci", + "image": "http://static.lolesports.com/players/1590670619435_1.png", + "role": "support" + }, + { + "id": "105536897723239521", + "summonerName": "Vyctor", + "firstName": "diego", + "lastName": "piccardi", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "102808549559809228", + "summonerName": "Deidara", + "firstName": "Silverio ", + "lastName": "Masi", + "image": "https://static.lolesports.com/players/download.png", + "role": "top" + }, + { + "id": "105553550005228941", + "summonerName": "Crocomux", + "firstName": "Davide", + "lastName": "Gioan", + "image": "http://static.lolesports.com/players/1644827168307_placeholder.png", + "role": "mid" + }, + { + "id": "107648392099136375", + "summonerName": "Piskhello", + "firstName": "Mattia", + "lastName": "Scandroglio", + "image": "http://static.lolesports.com/players/1642584105056_placeholder.png", + "role": "bottom" + } + ] + }, + { + "id": "105537226118106446", + "slug": "axolotl", + "name": "AVE Axolotl", + "code": "AAXL", + "image": "http://static.lolesports.com/teams/1705525129905_LogoAxolotl.png", + "alternativeImage": "http://static.lolesports.com/teams/1705525129907_LogoAxolotl.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LoL Italian Tournament", + "region": "EMEA" + }, + "players": [ + { + "id": "114794786252949084", + "summonerName": "Mario", + "firstName": "Mario", + "lastName": "D'agostino", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "110490410994065117", + "summonerName": "Shack", + "firstName": "Umberto", + "lastName": "Capurro", + "image": "http://static.lolesports.com/players/1685949877298_placeholder.png", + "role": "mid" + }, + { + "id": "114794788245898856", + "summonerName": "Padawii", + "firstName": "Gerald", + "lastName": "Evangelista", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "114794789412340790", + "summonerName": "Davyyy", + "firstName": "David", + "lastName": "Crnjac", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "114794790560892533", + "summonerName": "Tigrot", + "firstName": "Thiago", + "lastName": "Solfrini", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "110490478480814263", + "summonerName": "TheMountain", + "firstName": "Marco", + "lastName": "Benvenuto", + "image": "http://static.lolesports.com/players/1685950907290_placeholder.png", + "role": "top" + }, + { + "id": "113905674737562264", + "summonerName": "Retiveo", + "firstName": "Renim", + "lastName": "Altala", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + } + ] + }, + { + "id": "105537408539332006", + "slug": "emonkeyz-sdh", + "name": "eMonkeyz SDH", + "code": "EMZ", + "image": "http://static.lolesports.com/teams/1641298122921_61bccb45ba7a1390766437.png", + "alternativeImage": "http://static.lolesports.com/teams/1641298122923_61bccb4558125559649401.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107563993085306574", + "summonerName": "San", + "firstName": "Santiago", + "lastName": "Sorribas Carpani", + "image": "http://static.lolesports.com/players/1641296273639_placeholder.png", + "role": "none" + } + ] + }, + { + "id": "105537444152141556", + "slug": "herbalife-real-betis", + "name": "Herbalife Real Betis", + "code": "BTS", + "image": "http://static.lolesports.com/teams/1641299180901_61c1e1c884243532687770.png", + "alternativeImage": "http://static.lolesports.com/teams/1641299180903_61c1e1c82560a839522409.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "104275715339482162", + "summonerName": "Jorx", + "firstName": "Jordi", + "lastName": "Pi", + "image": "http://static.lolesports.com/players/1591121141966_silhouette.png", + "role": "jungle" + }, + { + "id": "103536968832302067", + "summonerName": "FeeNiixZ", + "firstName": "Sergio", + "lastName": "Garcia", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/feenixz-3s5q2xmn.png", + "role": "mid" + }, + { + "id": "107564458712229808", + "summonerName": "Ermin", + "firstName": "Ermin", + "lastName": "Osmancevic", + "image": "http://static.lolesports.com/players/1641303376682_placeholder.png", + "role": "support" + }, + { + "id": "107564467079051798", + "summonerName": "Togep1", + "firstName": "Miguel", + "lastName": "López Martín", + "image": "http://static.lolesports.com/players/1641303505666_placeholder.png", + "role": "top" + }, + { + "id": "107564468988274621", + "summonerName": "Gravity", + "firstName": "Javier", + "lastName": "Carrera Rodríguez", + "image": "http://static.lolesports.com/players/1641303533751_placeholder.png", + "role": "bottom" + }, + { + "id": "105515297977835814", + "summonerName": "DrftR", + "firstName": "Thomas", + "lastName": "Roguet", + "image": "http://static.lolesports.com/players/placeholder.png", + "role": "bottom" + }, + { + "id": "101422616435342652", + "summonerName": "Brolia", + "firstName": "Murat Mert", + "lastName": "İlgün", + "image": "http://static.lolesports.com/players/BROLIA.png", + "role": "support" + }, + { + "id": "108321440791939245", + "summonerName": "Klowd", + "firstName": "Kiriam", + "lastName": "Campobadal Forés", + "image": "http://static.lolesports.com/players/1652854014087_placeholder.png", + "role": "mid" + }, + { + "id": "107564435557377947", + "summonerName": "Soul", + "firstName": "Víctor", + "lastName": "Ganga Martínez", + "image": "http://static.lolesports.com/players/1641303023723_placeholder.png", + "role": "jungle" + }, + { + "id": "108589285158821845", + "summonerName": "Abner", + "firstName": "Abner", + "lastName": "Orbe Flores", + "image": "http://static.lolesports.com/players/1656940991631_placeholder.png", + "role": "bottom" + }, + { + "id": "108452656425548953", + "summonerName": "Fouka", + "firstName": "Foukinha ", + "lastName": "Gostosa", + "image": "http://static.lolesports.com/players/1654856205120_placeholder.png", + "role": "top" + } + ] + }, + { + "id": "105537621677160078", + "slug": "team-queso", + "name": "Team Queso", + "code": "TQ", + "image": "http://static.lolesports.com/teams/SL_TQ-Logo.png", + "alternativeImage": "http://static.lolesports.com/teams/SL_TQ-Logo.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "SuperLiga", + "region": "EMEA" + }, + "players": [ + { + "id": "105537626853914257", + "summonerName": "Send0o", + "firstName": "Rosendo", + "lastName": "Fuentes Bóveda", + "image": "https://static.lolesports.com/players/download.png", + "role": "top" + }, + { + "id": "105537633471401603", + "summonerName": "Prod1gy", + "firstName": "Iván", + "lastName": "Villanueva Soto", + "image": "https://static.lolesports.com/players/download.png", + "role": "none" + }, + { + "id": "106302724231385953", + "summonerName": "Berni", + "firstName": "Álvaro ", + "lastName": "Bernal Díaz", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "bottom" + }, + { + "id": "105537160375874960", + "summonerName": "Lotus23", + "firstName": "Dušan", + "lastName": "Nedeljković", + "image": "https://static.lolesports.com/players/download.png", + "role": "jungle" + } + ] + }, + { + "id": "105537947396116202", + "slug": "nasr-esports-akademi", + "name": "NASR ESPORTS Akademi", + "code": "NSR", + "image": "http://static.lolesports.com/teams/red.png", + "alternativeImage": "http://static.lolesports.com/teams/red.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "110429742934986202", + "summonerName": "Whistle", + "firstName": "Jong-hwi", + "lastName": "Jo", + "image": "http://static.lolesports.com/players/1705672863738_WHISTLE.png", + "role": "mid" + } + ] + }, + { + "id": "105543843212923183", + "slug": "goskilla", + "name": "Goskilla", + "code": "GSK", + "image": "http://static.lolesports.com/teams/1671448192430_lzVmumu.png", + "alternativeImage": "http://static.lolesports.com/teams/1671448192432_lzVmumu.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "105547976546505145", + "slug": "team-infamous", + "name": "Team Infamous", + "code": "IFM", + "image": "http://static.lolesports.com/teams/TeamInfamous_INF-white1.png", + "alternativeImage": "http://static.lolesports.com/teams/TeamInfamous_INF-white1.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "105547981566042448", + "summonerName": "yOFT", + "firstName": "Martin", + "lastName": "Robert", + "image": "https://static.lolesports.com/players/download.png", + "role": "top" + }, + { + "id": "105547982562185660", + "summonerName": "Chuffylol", + "firstName": "Rain", + "lastName": "Nõulik", + "image": "https://static.lolesports.com/players/download.png", + "role": "jungle" + }, + { + "id": "105547983549707092", + "summonerName": "Slowla", + "firstName": "Rasmus", + "lastName": "Teppo", + "image": "https://static.lolesports.com/players/download.png", + "role": "mid" + }, + { + "id": "105547984402108863", + "summonerName": "Jabuticaba", + "firstName": "Robert", + "lastName": "Pirs", + "image": "https://static.lolesports.com/players/download.png", + "role": "bottom" + }, + { + "id": "105547985275179471", + "summonerName": "Warizar", + "firstName": "Kristjan", + "lastName": "Rikas", + "image": "http://static.lolesports.com/players/1641830692488_placeholder.png", + "role": "support" + }, + { + "id": "105547987911627221", + "summonerName": "Jarro Light", + "firstName": "Yu", + "lastName": "Aslan", + "image": "https://static.lolesports.com/players/download.png", + "role": "top" + }, + { + "id": "105547989424329179", + "summonerName": "Dingo", + "firstName": "Siim", + "lastName": "Mansberg", + "image": "https://static.lolesports.com/players/download.png", + "role": "support" + }, + { + "id": "104726734144954255", + "summonerName": "Dethron", + "firstName": "Rokas", + "lastName": "Galinauskas", + "image": "http://static.lolesports.com/players/1598003142534_czekolad-51vwzmjl.png", + "role": "top" + }, + { + "id": "105786916477059553", + "summonerName": "Ruf", + "firstName": "Rolf", + "lastName": "Hein", + "image": "http://static.lolesports.com/players/placeholder.png", + "role": "jungle" + } + ] + }, + { + "id": "105548000936710641", + "slug": "method2madness", + "name": "Method2Madness", + "code": "M2XX", + "image": "http://static.lolesports.com/teams/Method2Madness_M2-logo.png", + "alternativeImage": "http://static.lolesports.com/teams/Method2Madness_M2-logo2.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "105548003698725367", + "summonerName": "Eonis", + "firstName": "Adam", + "lastName": "Biernacki", + "image": "https://static.lolesports.com/players/download.png", + "role": "bottom" + }, + { + "id": "104738261368370757", + "summonerName": "Onyoz", + "firstName": "Dainis", + "lastName": "Strautiņš", + "image": "http://static.lolesports.com/players/1598179033852_czekolad-51vwzmjl.png", + "role": "top" + }, + { + "id": "105593189301050462", + "summonerName": "Goksi", + "firstName": "Jakub", + "lastName": "Goga", + "image": "http://static.lolesports.com/players/placeholder_.jpg", + "role": "jungle" + }, + { + "id": "105719298412583781", + "summonerName": "Sin ARCH", + "firstName": "Alin Valentin", + "lastName": "Sin", + "image": "http://static.lolesports.com/players/placeholder.png", + "role": "mid" + }, + { + "id": "106334820084054037", + "summonerName": "Lacis", + "firstName": "Raivis", + "lastName": "Šmelds", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "mid" + }, + { + "id": "106334815074154501", + "summonerName": "xmar", + "firstName": "Toms", + "lastName": "Enģelis", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "bottom" + }, + { + "id": "106334818610280457", + "summonerName": "Djulo", + "firstName": "Jules", + "lastName": "Marcillaud", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "support" + }, + { + "id": "105547983549707092", + "summonerName": "Slowla", + "firstName": "Rasmus", + "lastName": "Teppo", + "image": "https://static.lolesports.com/players/download.png", + "role": "mid" + }, + { + "id": "106453914652241001", + "summonerName": "Beaupere", + "firstName": "Geoffrey", + "lastName": "Claisse", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "mid" + }, + { + "id": "104726734144954255", + "summonerName": "Dethron", + "firstName": "Rokas", + "lastName": "Galinauskas", + "image": "http://static.lolesports.com/players/1598003142534_czekolad-51vwzmjl.png", + "role": "top" + } + ] + }, + { + "id": "105548019132871601", + "slug": "medieval-riga", + "name": "Medieval Riga", + "code": "MDVL", + "image": "http://static.lolesports.com/teams/Medieval_Riga_MDLV-white1.png", + "alternativeImage": "http://static.lolesports.com/teams/Medieval_Riga_MDLV-white1.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "106345984226044880", + "summonerName": "ZupZup", + "firstName": "Sandis", + "lastName": "Stikāns", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "top" + }, + { + "id": "106345986008558549", + "summonerName": "Opelis", + "firstName": "Artūrs", + "lastName": "Opolcenskis", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "jungle" + }, + { + "id": "106345989498790343", + "summonerName": "Capsey", + "firstName": "Ēriks", + "lastName": "Ignatjevs", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "support" + }, + { + "id": "106346003494284256", + "summonerName": "DoubleG", + "firstName": "Giedrius", + "lastName": "Giedrius", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "bottom" + }, + { + "id": "105521214192527524", + "summonerName": "Rudzkooo", + "firstName": "Reinis", + "lastName": "Rudzītis", + "image": "https://static.lolesports.com/players/download.png", + "role": "support" + }, + { + "id": "105548021446271392", + "summonerName": "Pugnare", + "firstName": "Renāts", + "lastName": "Baltusevičs", + "image": "https://static.lolesports.com/players/download.png", + "role": "top" + }, + { + "id": "105548022326022674", + "summonerName": "GN0MAS", + "firstName": "Daniels", + "lastName": "Vahruševs", + "image": "https://static.lolesports.com/players/download.png", + "role": "jungle" + }, + { + "id": "105548023092797862", + "summonerName": "Spozhais", + "firstName": "Edgars", + "lastName": "Gulbis", + "image": "https://static.lolesports.com/players/download.png", + "role": "mid" + }, + { + "id": "105548024010781620", + "summonerName": "Helvisk", + "firstName": "Helvijs", + "lastName": "Kostāns", + "image": "https://static.lolesports.com/players/download.png", + "role": "bottom" + }, + { + "id": "105548024796205589", + "summonerName": "Ultimater", + "firstName": "Mārcis", + "lastName": "Čaupjonoks", + "image": "https://static.lolesports.com/players/download.png", + "role": "support" + } + ] + }, + { + "id": "105549984475833252", + "slug": "cruzeiro-academy", + "name": "Cruzeiro Academy", + "code": "CRZA", + "image": "http://static.lolesports.com/teams/cruzeiro_white.png", + "alternativeImage": "http://static.lolesports.com/teams/cruzeiro_blue.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "112880372381731252", + "summonerName": "Ben01", + "firstName": "Ben", + "lastName": "Ben", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + } + ] + }, + { + "id": "105549988405523871", + "slug": "flamengo-academy", + "name": "Flamengo Academy", + "code": "FLA", + "image": "http://static.lolesports.com/teams/1642954027627_Monograma_Branco-Vermelho.png", + "alternativeImage": "http://static.lolesports.com/teams/1642954027630_Monograma_Branco-Vermelho.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "107559255871511679", + "summonerName": "Mito", + "firstName": "Giovani", + "lastName": "Baldan", + "image": "http://static.lolesports.com/players/1674154117059_Mito-1copy.png", + "role": "top" + }, + { + "id": "104275702591900615", + "summonerName": "Gyeong", + "firstName": "Leonardo", + "lastName": "Lima", + "image": "http://static.lolesports.com/players/1654468046243_Silhueta.png", + "role": "support" + } + ] + }, + { + "id": "105549991104165282", + "slug": "furia-academy", + "name": "FURIA Academy", + "code": "FUR", + "image": "http://static.lolesports.com/teams/FUR-FullonDark-7.png", + "alternativeImage": "http://static.lolesports.com/teams/FUR-FullonLight-6.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "111986481258891829", + "summonerName": "Vinicete", + "firstName": "Vinícius", + "lastName": "Brito", + "image": "http://static.lolesports.com/players/1718065637795_base.png", + "role": "jungle" + }, + { + "id": "111734538835730170", + "summonerName": "lolo", + "firstName": "Lorenzo", + "lastName": "Mariano", + "image": "http://static.lolesports.com/players/1717429809195_Lolo.png", + "role": "mid" + } + ] + }, + { + "id": "105549993449477104", + "slug": "intz-academy", + "name": "INTZ Academy", + "code": "ITZ", + "image": "http://static.lolesports.com/teams/1643056777663_INTZ_Logo_Principal_20221.png", + "alternativeImage": "http://static.lolesports.com/teams/1643056777665_INTZ_Logo_Principal_20221.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "111734539200315308", + "summonerName": "Lellis", + "firstName": "Pedro", + "lastName": "Henrique", + "image": "http://static.lolesports.com/players/1717432648553_Lellis.png", + "role": "top" + }, + { + "id": "111734539296970340", + "summonerName": "Namiru", + "firstName": "Daniel", + "lastName": "Lisboa", + "image": "http://static.lolesports.com/players/1717432498685_Namiru.png", + "role": "mid" + }, + { + "id": "111734539454717694", + "summonerName": "Rosa", + "firstName": "Davi", + "lastName": "Luiz", + "image": "http://static.lolesports.com/players/1717432270059_Rosa.png", + "role": "bottom" + }, + { + "id": "105397213952271308", + "summonerName": "Taara", + "firstName": "Leandro", + "lastName": "Monteiro", + "image": "http://static.lolesports.com/players/1717432423192_Taara.png", + "role": "bottom" + }, + { + "id": "99566407762355869", + "summonerName": "Jockster", + "firstName": "Luan", + "lastName": "Cardoso", + "image": "http://static.lolesports.com/players/1705515638883_Silhueta1.png", + "role": "support" + }, + { + "id": "111734539545821104", + "summonerName": "Sthe", + "firstName": "Sthefany", + "lastName": "Silva", + "image": "http://static.lolesports.com/players/1717432584655_Sthe.png", + "role": "support" + }, + { + "id": "105397226281231317", + "summonerName": "Dioge", + "firstName": "Diogenes", + "lastName": "Bispo", + "image": "http://static.lolesports.com/players/1717071757332_Dioge.png", + "role": "mid" + } + ] + }, + { + "id": "105549995617170853", + "slug": "kabum-academy", + "name": "KaBuM! IDL", + "code": "KBM", + "image": "http://static.lolesports.com/teams/1741770829365_COLORFUL_WHITE.png", + "alternativeImage": "http://static.lolesports.com/teams/1741770829365_COLORFUL_WHITE.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Circuito Desafiante", + "region": "BRAZIL" + }, + "players": [ + { + "id": "103495716693930864", + "summonerName": "HiRit", + "firstName": "Shin", + "lastName": "Tae-min", + "image": "http://static.lolesports.com/players/1717746743038_hirit.png", + "role": "top" + }, + { + "id": "101388913288334773", + "summonerName": "Seize", + "firstName": "Kim", + "lastName": "Chan", + "image": "http://static.lolesports.com/players/1717084040897_Seize.png", + "role": "jungle" + }, + { + "id": "109519061710277829", + "summonerName": "Reaper", + "firstName": "Matheus", + "lastName": "Silva", + "image": "http://static.lolesports.com/players/1674157923197_Reaper-1copy.png", + "role": "support" + }, + { + "id": "99566407771166805", + "summonerName": "Ranger", + "firstName": "Filipe", + "lastName": "Brombilla", + "image": "http://static.lolesports.com/players/1686348033728_Ranger.png", + "role": "jungle" + }, + { + "id": "99566404538001940", + "summonerName": "Wiz", + "firstName": "Na", + "lastName": "Yujun", + "image": "http://static.lolesports.com/players/1737724354501_image628.png", + "role": "jungle" + }, + { + "id": "103743619023893329", + "summonerName": "Grevthar", + "firstName": "Daniel", + "lastName": "Ferreira", + "image": "http://static.lolesports.com/players/1737726420299_image638.png", + "role": "mid" + }, + { + "id": "112462169706118570", + "summonerName": "Duduhh", + "firstName": "Wallyson", + "lastName": "Silva", + "image": "http://static.lolesports.com/players/1717435174723_Duduh.png", + "role": "bottom" + }, + { + "id": "106276251959912540", + "summonerName": "Guigs", + "firstName": "Guilherme", + "lastName": "Soares", + "image": "http://static.lolesports.com/players/1738736952860_image649.png", + "role": "support" + } + ] + }, + { + "id": "105549997263803379", + "slug": "loud-academy", + "name": "LOUD Academy", + "code": "LLL", + "image": "http://static.lolesports.com/teams/LOUD-FullonDark-4.png", + "alternativeImage": "http://static.lolesports.com/teams/LOUD-FullonLight-4.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "109519063190408393", + "summonerName": "Strix", + "firstName": "Douglas", + "lastName": "Assis", + "image": "http://static.lolesports.com/players/1718063976432_base.png", + "role": "none" + }, + { + "id": "111734812721889388", + "summonerName": "curty", + "firstName": "Pedro", + "lastName": "Curty", + "image": "http://static.lolesports.com/players/1753345976145_image6120.png", + "role": "top" + }, + { + "id": "98767975947296513", + "summonerName": "RedBert", + "firstName": "Ygor", + "lastName": "Freitas", + "image": "http://static.lolesports.com/players/1753430140743_image669.png", + "role": "support" + }, + { + "id": "111734812789522544", + "summonerName": "Bulecha", + "firstName": "Lucas", + "lastName": "Adriel", + "image": "http://static.lolesports.com/players/1718063367917_Bulecha.png", + "role": "support" + }, + { + "id": "111734812949758087", + "summonerName": "SrVenancio", + "firstName": "Victor", + "lastName": "Santos", + "image": "http://static.lolesports.com/players/1718064496854_base.png", + "role": "support" + }, + { + "id": "106279668107187055", + "summonerName": "Hugato", + "firstName": "Hugo", + "lastName": "Dias", + "image": "http://static.lolesports.com/players/1718062969894_Hugato.png", + "role": "jungle" + }, + { + "id": "110434691941186965", + "summonerName": "Sant", + "firstName": "Matheus", + "lastName": "Santana", + "image": "http://static.lolesports.com/players/1718063093326_Sant.png", + "role": "bottom" + }, + { + "id": "100205576296653806", + "summonerName": "Anyyy", + "firstName": "Ruan", + "lastName": "Cardoso", + "image": "http://static.lolesports.com/players/1718063427778_anyyy.png", + "role": "mid" + }, + { + "id": "99566407763820708", + "summonerName": "Robo", + "firstName": "Leonardo", + "lastName": "Souza", + "image": "http://static.lolesports.com/players/1753430049019_image6520.png", + "role": "top" + }, + { + "id": "103525195752578562", + "summonerName": "Croc", + "firstName": "Park", + "lastName": "Jong-hoon", + "image": "http://static.lolesports.com/players/1705516101391_Croc-1copy.png", + "role": "jungle" + }, + { + "id": "99566407748213242", + "summonerName": "tinowns1", + "firstName": "Thiago", + "lastName": "Sartori", + "image": "http://static.lolesports.com/players/1737723956679_image626.png", + "role": "mid" + }, + { + "id": "100174429498252618", + "summonerName": "Route", + "firstName": "Geomsoo", + "lastName": "Mun", + "image": "http://static.lolesports.com/players/1753430222258_image679.png", + "role": "bottom" + } + ] + }, + { + "id": "105549998884468136", + "slug": "pain-academy", + "name": "paiN Academy", + "code": "PNG", + "image": "http://static.lolesports.com/teams/1675609745517_paiN_para_fundo_preto.png", + "alternativeImage": "http://static.lolesports.com/teams/1675609745520_paiNcolorida.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "111734845137386352", + "summonerName": "Luna", + "firstName": "Giovana", + "lastName": "Lunardeli", + "image": "http://static.lolesports.com/players/1718061790710_Luna.png", + "role": "support" + }, + { + "id": "111734845011017901", + "summonerName": "Nallari", + "firstName": "Allexandra", + "lastName": "Aguiar", + "image": "http://static.lolesports.com/players/1718063649158_Nallari.png", + "role": "mid" + } + ] + }, + { + "id": "105550001032913831", + "slug": "red-academy", + "name": "RED Kalunga Academy", + "code": "RED", + "image": "http://static.lolesports.com/teams/1642969030123_REDlogo_REDCanids-RGB-linhabranca1.png", + "alternativeImage": "http://static.lolesports.com/teams/1642969030125_LOGO_REDCanids_FINAL_esc1.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Circuito Desafiante", + "region": "BRAZIL" + }, + "players": [ + { + "id": "112462284750329945", + "summonerName": "Rabelo", + "firstName": "Guilherme", + "lastName": "Muniz", + "image": "http://static.lolesports.com/players/1753347887725_image6421.png", + "role": "bottom" + }, + { + "id": "111734845200890741", + "summonerName": "zynts", + "firstName": "Matheus", + "lastName": "Emanuel", + "image": "http://static.lolesports.com/players/1717437332679_Zynts.png", + "role": "top" + }, + { + "id": "110434822594728434", + "summonerName": "DOOM", + "firstName": "Raí", + "lastName": "Yamada", + "image": "http://static.lolesports.com/players/1753347732786_image6222.png", + "role": "jungle" + }, + { + "id": "111734785295350533", + "summonerName": "Nero", + "firstName": "Otávio ", + "lastName": "Ribeiro", + "image": "http://static.lolesports.com/players/1717434940690_Nero.png", + "role": "jungle" + }, + { + "id": "113684241495506037", + "summonerName": "Mago", + "firstName": " Jean", + "lastName": " Dias ", + "image": "http://static.lolesports.com/players/1743851846626_mago.png", + "role": "mid" + }, + { + "id": "109518621083964549", + "summonerName": "Kojima", + "firstName": "Caio", + "lastName": "Kojima", + "image": "http://static.lolesports.com/players/1705512023037_Kojima-1copy.png", + "role": "bottom" + }, + { + "id": "111734539087870444", + "summonerName": "uZent", + "firstName": "Matheus", + "lastName": "Ferreira", + "image": "http://static.lolesports.com/players/1717436592048_Uzent.png", + "role": "none" + }, + { + "id": "109656280616610105", + "summonerName": "Kaze", + "firstName": "Lucas", + "lastName": "Sebastian", + "image": "http://static.lolesports.com/players/1753347816072_image6321.png", + "role": "none" + } + ] + }, + { + "id": "105550003470349739", + "slug": "rensga-academy", + "name": "Rensga Academy", + "code": "RNS", + "image": "http://static.lolesports.com/teams/1642968400889_LogoRensgaEsports2.png", + "alternativeImage": "http://static.lolesports.com/teams/1642968400892_LogoRensgaEsports2.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [] + }, + { + "id": "105550005698683818", + "slug": "liberty-academy", + "name": "Liberty Academy", + "code": "LBR", + "image": "http://static.lolesports.com/teams/1643305747654_RXfNcFMU.png", + "alternativeImage": "http://static.lolesports.com/teams/1643305843983_qiCw-xgg.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "105397207118950800", + "summonerName": "SkB", + "firstName": "Arthur", + "lastName": "Cruz", + "image": "http://static.lolesports.com/players/1717434233327_Skb.png", + "role": "top" + }, + { + "id": "111734539646539371", + "summonerName": "Levizin", + "firstName": "Levi", + "lastName": "Pedutti", + "image": "http://static.lolesports.com/players/1717434156811_Levi.png", + "role": "jungle" + }, + { + "id": "110434481071273383", + "summonerName": "carlins", + "firstName": "Brenno", + "lastName": "Teixeira", + "image": "http://static.lolesports.com/players/1705673337506_Silhueta1.png", + "role": "mid" + }, + { + "id": "111734539751595793", + "summonerName": "Kina", + "firstName": "Mauricio", + "lastName": "Alberti", + "image": "http://static.lolesports.com/players/1717434473789_Kina.png", + "role": "mid" + }, + { + "id": "111734539815360111", + "summonerName": "Leandrinn", + "firstName": "Leandro", + "lastName": "Zaneta", + "image": "http://static.lolesports.com/players/1717434278402_Leandrinn.png", + "role": "bottom" + }, + { + "id": "105397244556008388", + "summonerName": "Eryon", + "firstName": "Márcio", + "lastName": "Reis", + "image": "https://static.lolesports.com/players/download.png", + "role": "bottom" + } + ] + }, + { + "id": "105550024238752685", + "slug": "kwangdong-freecs-challengers", + "name": "DNF Challengers", + "code": "DNF", + "image": "http://static.lolesports.com/teams/1735905174386_600px-DN_Freecs_full_allmode.png", + "alternativeImage": "http://static.lolesports.com/teams/1735905174387_600px-DN_Freecs_full_allmode.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCK Challengers", + "region": "KOREA" + }, + "players": [ + { + "id": "104266795407626462", + "summonerName": "DuDu", + "firstName": "Dongju", + "lastName": "Lee", + "image": "http://static.lolesports.com/players/1758213067140_dudu.png", + "role": "top" + }, + { + "id": "108205130029559792", + "summonerName": "Lancer", + "firstName": "Jeongheum", + "lastName": "Han", + "image": "http://static.lolesports.com/players/1758213497389_lancer.png", + "role": "top" + }, + { + "id": "111521915459246530", + "summonerName": "Quantum ", + "firstName": "Son", + "lastName": "Junghwan", + "image": "http://static.lolesports.com/players/1758213844839_quantrum.png", + "role": "support" + }, + { + "id": "103495716563691380", + "summonerName": "Pyosik", + "firstName": "Changhyeon", + "lastName": "Hong", + "image": "http://static.lolesports.com/players/1758213828770_pyosik.png", + "role": "none" + }, + { + "id": "100205573444701958", + "summonerName": "Life", + "firstName": "Jeongmin", + "lastName": "Kim", + "image": "http://static.lolesports.com/players/1758213555970_life.png", + "role": "none" + }, + { + "id": "109619813466553788", + "summonerName": "DDoiV", + "firstName": "Moonyoung", + "lastName": "Bang", + "image": "http://static.lolesports.com/players/1758212993151_ddoiv.png", + "role": "none" + }, + { + "id": "104284310661848687", + "summonerName": "Clozer", + "firstName": "Juhyeon", + "lastName": "Lee", + "image": "http://static.lolesports.com/players/1758212595327_clozer.png", + "role": "mid" + }, + { + "id": "102483272156027229", + "summonerName": "deokdam", + "firstName": "Daegil", + "lastName": "Seo", + "image": "http://static.lolesports.com/players/1758213021407_deokdam.png", + "role": "bottom" + }, + { + "id": "106267619732229182", + "summonerName": "Peter", + "firstName": "Yoon su", + "lastName": "Jeong", + "image": "http://static.lolesports.com/players/1758213739070_peter.png", + "role": "support" + }, + { + "id": "107151368646534014", + "summonerName": "Flip", + "firstName": "Sanguk", + "lastName": "Kim", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "108205132580169451", + "summonerName": "Enosh", + "firstName": "Kyujun", + "lastName": "Kwak", + "image": "http://static.lolesports.com/players/1758213137643_enosh.png", + "role": "bottom" + } + ] + }, + { + "id": "105550026570060790", + "slug": "dwg-kia-challengers", + "name": "DK Challengers", + "code": "DK", + "image": "http://static.lolesports.com/teams/1673259409468_DPlusKIALOGO1.png", + "alternativeImage": "http://static.lolesports.com/teams/1673259409471_DPlusKIALOGO.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCK Challengers", + "region": "KOREA" + }, + "players": [ + { + "id": "108205129774185945", + "summonerName": "Smash", + "firstName": "Gunmjae", + "lastName": "Sin", + "image": "http://static.lolesports.com/players/1758214017059_smash.png", + "role": "bottom" + }, + { + "id": "108284721867904137", + "summonerName": "Career", + "firstName": "HyungSuk", + "lastName": "Oh", + "image": "http://static.lolesports.com/players/1758212463189_career.png", + "role": "support" + }, + { + "id": "107492028745476512", + "summonerName": "Loopy", + "firstName": "Donghyeon", + "lastName": "Kim", + "image": "http://static.lolesports.com/players/1754473911897_image6526.png", + "role": "support" + }, + { + "id": "114697949393287385", + "summonerName": "Nevid", + "firstName": "Minwoo", + "lastName": "Park", + "image": "http://static.lolesports.com/players/1758213649516_nevid.png", + "role": "top" + }, + { + "id": "105501707243664614", + "summonerName": "Wayne", + "firstName": "Seohyeon", + "lastName": "Hwang", + "image": "http://static.lolesports.com/players/1758214310091_wayne.png", + "role": "bottom" + }, + { + "id": "112822770322732675", + "summonerName": "Garden", + "firstName": "Jeongwon", + "lastName": "Seol", + "image": "http://static.lolesports.com/players/1758213201923_garned.png", + "role": "mid" + }, + { + "id": "113543956179181753", + "summonerName": "Jaehyuk", + "firstName": "Jaehyuk", + "lastName": "Kwon", + "image": "http://static.lolesports.com/players/1758213344720_jaehyuk.png", + "role": "top" + }, + { + "id": "106267599829820917", + "summonerName": "Lucid", + "firstName": "Yonghyeok", + "lastName": "Choi", + "image": "http://static.lolesports.com/players/1758213578050_lucid.png", + "role": "jungle" + }, + { + "id": "100725844988653773", + "summonerName": "ShowMaker", + "firstName": "Su", + "lastName": "Heo", + "image": "http://static.lolesports.com/players/1758213970807_showmaker.png", + "role": "mid" + }, + { + "id": "111658291900451423", + "summonerName": "Sharvel", + "firstName": "Kim", + "lastName": "Danwoo", + "image": "http://static.lolesports.com/players/1758213957768_sharvel.png", + "role": "jungle" + }, + { + "id": "111658292064356964", + "summonerName": "Siwoo", + "firstName": "Jeon", + "lastName": "Siwoo", + "image": "http://static.lolesports.com/players/1758213983369_siwoo.png", + "role": "top" + } + ] + }, + { + "id": "105550033967461806", + "slug": "drx-challengers", + "name": "DRX Challengers", + "code": "DRX", + "image": "http://static.lolesports.com/teams/1672910744570_01.Basic_W.png", + "alternativeImage": "http://static.lolesports.com/teams/1672910744572_01.Basic_B.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCK Challengers", + "region": "KOREA" + }, + "players": [ + { + "id": "114850386783533462", + "summonerName": "AKaJe", + "firstName": "Suhyeok", + "lastName": "Choi", + "image": "http://static.lolesports.com/players/1758212156718_akaje.png", + "role": "none" + }, + { + "id": "108205131858552538", + "summonerName": "Vincenzo", + "firstName": "Seungmin", + "lastName": "Ha", + "image": "http://static.lolesports.com/players/1758214257085_vincenzo.png", + "role": "jungle" + }, + { + "id": "106267386230851795", + "summonerName": "Willer", + "firstName": "Junghyeun", + "lastName": "Kim", + "image": "http://static.lolesports.com/players/1718367678827_CL_FOX_Willer_784.png", + "role": "jungle" + }, + { + "id": "108205129853202408", + "summonerName": "Minous", + "firstName": "Minwoo", + "lastName": "Kang", + "image": "http://static.lolesports.com/players/1758213624215_minous.png", + "role": "support" + }, + { + "id": "107492072900515430", + "summonerName": "Winner", + "firstName": "JOOSUNG", + "lastName": "Woo", + "image": "http://static.lolesports.com/players/1686472041391_CL_GEN_Winner.png", + "role": "jungle" + }, + { + "id": "108205131402932252", + "summonerName": "Jiwoo", + "firstName": "Jiwoo", + "lastName": "Jung", + "image": "http://static.lolesports.com/players/1758213348318_jiwoo.png", + "role": "bottom" + }, + { + "id": "108205130568869560", + "summonerName": "Frog", + "firstName": "Minhoi", + "lastName": "Lee", + "image": "http://static.lolesports.com/players/1758213197451_frog.png", + "role": "top" + }, + { + "id": "102186438403674539", + "summonerName": "Rich", + "firstName": "Jaewon", + "lastName": "Lee", + "image": "http://static.lolesports.com/players/1758213898835_rich.png", + "role": "top" + }, + { + "id": "99566404534366144", + "summonerName": "Ucal", + "firstName": "Woohyun", + "lastName": "Son", + "image": "http://static.lolesports.com/players/1758214182600_ucal.png", + "role": "mid" + }, + { + "id": "105548653898118261", + "summonerName": "Andil", + "firstName": "Gwan-bin", + "lastName": "Mun", + "image": "http://static.lolesports.com/players/1758212240136_andil.png", + "role": "support" + }, + { + "id": "113560602730848023", + "summonerName": "LazyFeel", + "firstName": "Bao Minh", + "lastName": "Tran", + "image": "http://static.lolesports.com/players/1758213508073_lazyfeel.png", + "role": "bottom" + } + ] + }, + { + "id": "105550036134585264", + "slug": "bro-challengers", + "name": "BRO Challengers", + "code": "BRO", + "image": "http://static.lolesports.com/teams/1716454310243_Nowyprojekt.png", + "alternativeImage": "http://static.lolesports.com/teams/1716454310243_Nowyprojekt.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCK Challengers", + "region": "KOREA" + }, + "players": [ + { + "id": "108205131563823136", + "summonerName": "DDahyuk", + "firstName": "Minhyuk", + "lastName": "Ahn", + "image": "http://static.lolesports.com/players/1686473455230_CL_LSB_DDahyuk.png", + "role": "top" + }, + { + "id": "109549750903142546", + "summonerName": "Casting", + "firstName": "Minje", + "lastName": "Shin", + "image": "http://static.lolesports.com/players/1758212529081_casting.png", + "role": "top" + }, + { + "id": "105501713673270508", + "summonerName": "GIDEON", + "firstName": "Minsung", + "lastName": "Kim", + "image": "http://static.lolesports.com/players/1758213224420_gideon-Photoroom.png", + "role": "jungle" + }, + { + "id": "108511159661913839", + "summonerName": "Fisher", + "firstName": "Jeongtae", + "lastName": "Lee", + "image": "http://static.lolesports.com/players/1758213176229_fisher.png", + "role": "mid" + }, + { + "id": "99566404526777331", + "summonerName": "Teddy", + "firstName": "Jinsung", + "lastName": "Park", + "image": "http://static.lolesports.com/players/1758214113822_teddy.png", + "role": "bottom" + }, + { + "id": "111521549050142935", + "summonerName": "Namgung", + "firstName": "Namgung", + "lastName": "Seonghoon", + "image": "http://static.lolesports.com/players/1739356739077_image683.png", + "role": "support" + }, + { + "id": "109523135464568456", + "summonerName": "PlanB", + "firstName": "Hong", + "lastName": "Junseok", + "image": "http://static.lolesports.com/players/1686473515663_CL_LSB_PlanB.png", + "role": "support" + }, + { + "id": "108284732073917232", + "summonerName": "Tempester", + "firstName": "Yeongwoong", + "lastName": "Oh", + "image": "http://static.lolesports.com/players/1758214131120_tempest.png", + "role": "mid" + }, + { + "id": "111658292156711839", + "summonerName": "OddEye", + "firstName": "Cho", + "lastName": "Hyungjin", + "image": "http://static.lolesports.com/players/1718365660131_CL_NS_OddEye_784.png", + "role": "bottom" + }, + { + "id": "114861710240389269", + "summonerName": "Dinai", + "firstName": "ChihYun", + "lastName": "Hwang", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + } + ] + }, + { + "id": "105550042327365041", + "slug": "gen-challengers", + "name": "Gen.G Global Academy", + "code": "GEN", + "image": "http://static.lolesports.com/teams/1672911977540_GGA_2023ver_LOGO_GGA_simplyA_W1.png", + "alternativeImage": "http://static.lolesports.com/teams/1672911977542_GGA_2023ver_LOGO_GGA_simplyA_B1.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCK Challengers", + "region": "KOREA" + }, + "players": [ + { + "id": "113740943728096233", + "summonerName": "SIRIUSS", + "firstName": "Kun", + "lastName": "Ko", + "image": "http://static.lolesports.com/players/1739356606316_image682.png", + "role": "support" + }, + { + "id": "115740909072304963", + "summonerName": "Ripple", + "firstName": "Jongmin", + "lastName": "Byeon", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "108366460978884097", + "summonerName": "Courage", + "firstName": "Hyunmin", + "lastName": "Jeon", + "image": "http://static.lolesports.com/players/1744279876825_SHG_Courage.png", + "role": "jungle" + }, + { + "id": "115740899235923933", + "summonerName": "MUDAI", + "firstName": "SUNGYU", + "lastName": "LEE", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "115740899326939236", + "summonerName": "Lumos", + "firstName": "JAEMIN", + "lastName": "KIM", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "none" + }, + { + "id": "113560610683314243", + "summonerName": "Kemish", + "firstName": "Sihun", + "lastName": "Kim", + "image": "http://static.lolesports.com/players/1739356892698_image684.png", + "role": "mid" + }, + { + "id": "98767975906852059", + "summonerName": "Ruler", + "firstName": "Jaehyeok", + "lastName": "Park", + "image": "http://static.lolesports.com/players/1758213914983_ruler.png", + "role": "bottom" + }, + { + "id": "107454956790371682", + "summonerName": "Duro", + "firstName": "Mingyu", + "lastName": "Ju", + "image": "http://static.lolesports.com/players/1758213092149_duro.png", + "role": "support" + }, + { + "id": "99566404532924465", + "summonerName": "Kiin", + "firstName": "Kiin", + "lastName": "Kim", + "image": "http://static.lolesports.com/players/1758213448905_kiin.png", + "role": "top" + }, + { + "id": "100725844994345151", + "summonerName": "Canyon", + "firstName": "Gunbu", + "lastName": "Kim", + "image": "http://static.lolesports.com/players/1758212470925_canyon.png", + "role": "jungle" + }, + { + "id": "99871276342168416", + "summonerName": "Chovy", + "firstName": "Jihun", + "lastName": "Jung", + "image": "http://static.lolesports.com/players/1758212535327_chovu.png", + "role": "mid" + } + ] + }, + { + "id": "105550047979361273", + "slug": "hle-challengers", + "name": "HLE Challengers", + "code": "HLE", + "image": "http://static.lolesports.com/teams/hle-2021-color-on-dark.png", + "alternativeImage": "http://static.lolesports.com/teams/hle-2021-color-on-light2.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCK Challengers", + "region": "KOREA" + }, + "players": [ + { + "id": "103478281361900912", + "summonerName": "Zeka", + "firstName": "Geon-Woo", + "lastName": "Kim", + "image": "http://static.lolesports.com/players/1739365717974_image6-2025-02-12T140808.083.png", + "role": "mid" + }, + { + "id": "105501709748188393", + "summonerName": "Delight", + "firstName": "Hwanjung", + "lastName": "Yu", + "image": "http://static.lolesports.com/players/1758212999582_delight.png", + "role": "support" + }, + { + "id": "109523141015834041", + "summonerName": "Grizzly", + "firstName": "Seunghoon", + "lastName": "Jo", + "image": "http://static.lolesports.com/players/1758213228504_grizzly.png", + "role": "support" + }, + { + "id": "105320680474347057", + "summonerName": "Zeus", + "firstName": "Wooje", + "lastName": "Choi", + "image": "http://static.lolesports.com/players/1758214359004_zeus.png", + "role": "top" + }, + { + "id": "113740949736514801", + "summonerName": "Pyeonsik", + "firstName": "Mingi", + "lastName": "Pyeon", + "image": "http://static.lolesports.com/players/1758213807740_pyeonsik.png", + "role": "bottom" + }, + { + "id": "113740952132760566", + "summonerName": "Bluffing", + "firstName": "Gyuyong", + "lastName": "Park", + "image": "http://static.lolesports.com/players/1758212309405_blufiing.png", + "role": "support" + }, + { + "id": "113740953522201854", + "summonerName": "Jackal", + "firstName": "Sumin", + "lastName": "Lee", + "image": "http://static.lolesports.com/players/1758213323334_jackal.png", + "role": "jungle" + }, + { + "id": "115740899104327635", + "summonerName": "Cracker", + "firstName": "Jeongwook", + "lastName": "Lee", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "115740899171305432", + "summonerName": "Valiant", + "firstName": "Kanghyun", + "lastName": "Han", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "101671284628761661", + "summonerName": "Kanavi", + "firstName": "Jinhhyeok ", + "lastName": "Seo", + "image": "http://static.lolesports.com/players/1753284334003_image6115.png", + "role": "jungle" + }, + { + "id": "103495716775975785", + "summonerName": "Gumayusi", + "firstName": "Minhyung", + "lastName": "Lee", + "image": "http://static.lolesports.com/players/1758213249170_gumayusi.png", + "role": "bottom" + } + ] + }, + { + "id": "105550049871017396", + "slug": "kt-challengers", + "name": "kt Challengers", + "code": "KT", + "image": "http://static.lolesports.com/teams/kt_darkbackground.png", + "alternativeImage": "http://static.lolesports.com/teams/kt_whitebackground.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCK Challengers", + "region": "KOREA" + }, + "players": [ + { + "id": "99566404541006806", + "summonerName": "Aiming", + "firstName": "Haram", + "lastName": "Kim", + "image": "http://static.lolesports.com/players/1758212132435_aiming.png", + "role": "bottom" + }, + { + "id": "99566404556524630", + "summonerName": "Ghost", + "firstName": "Yongjun", + "lastName": "Jang", + "image": "http://static.lolesports.com/players/1655457270313_NS_Ghost_784x621.png", + "role": "support" + }, + { + "id": "108284723448093299", + "summonerName": "Pollu", + "firstName": "DongGyu", + "lastName": "Oh", + "image": "http://static.lolesports.com/players/1758213774429_pollu.png", + "role": "support" + }, + { + "id": "105501846040405864", + "summonerName": "Sylvie", + "firstName": "Seungbok", + "lastName": "Lee", + "image": "http://static.lolesports.com/players/1758214101879_sylvie.png", + "role": "jungle" + }, + { + "id": "115609835379287175", + "summonerName": "Hwichan", + "firstName": "Hwichan", + "lastName": "Jeong", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "115609835794891478", + "summonerName": "FenRir", + "firstName": "Kangjun", + "lastName": "Park", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "99566404535234175", + "summonerName": "Effort", + "firstName": "Sangho", + "lastName": "Lee", + "image": "http://static.lolesports.com/players/1718364957106_BRO_Effort_F_784.png", + "role": "support" + }, + { + "id": "113740958697763850", + "summonerName": "Sero", + "firstName": "Hyochan", + "lastName": "Ahn", + "image": "http://static.lolesports.com/players/1758213945373_sero.png", + "role": "top" + }, + { + "id": "98767975940969117", + "summonerName": "Cuzz", + "firstName": "Uchan", + "lastName": "Mun", + "image": "http://static.lolesports.com/players/1758212647132_cuzz.png", + "role": "jungle" + }, + { + "id": "98767975949926165", + "summonerName": "Bdd", + "firstName": " Bo seong", + "lastName": "Gwak", + "image": "http://static.lolesports.com/players/1758212255881_bdd.png", + "role": "mid" + }, + { + "id": "107492121209956865", + "summonerName": "PerfecT", + "firstName": "Seungmin", + "lastName": "Lee", + "image": "http://static.lolesports.com/players/1758213717937_perfect.png", + "role": "top" + } + ] + }, + { + "id": "105550051809743868", + "slug": "fearx-youth", + "name": "BNK FEARX Youth", + "code": "BFX", + "image": "http://static.lolesports.com/teams/1734691838858_BFXfullcolorfordarkbg.png", + "alternativeImage": "http://static.lolesports.com/teams/1734691838858_BFXfullcolorfordarkbg.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCK Challengers", + "region": "KOREA" + }, + "players": [ + { + "id": "109523135356383683", + "summonerName": "Diable", + "firstName": "Nam", + "lastName": "Daegeun", + "image": "http://static.lolesports.com/players/1758213034126_diable.png", + "role": "bottom" + }, + { + "id": "105501790021137688", + "summonerName": "Clear", + "firstName": "Hyunmin", + "lastName": "Song", + "image": "http://static.lolesports.com/players/1758212563732_clear.png", + "role": "top" + }, + { + "id": "111521549323573788", + "summonerName": "Janus", + "firstName": "Um", + "lastName": "Yejun", + "image": "http://static.lolesports.com/players/1708512218481_CL_FOX_Janus_F.png", + "role": "top" + }, + { + "id": "109675673940491206", + "summonerName": "Daystar", + "firstName": "Ji-Myeong", + "lastName": "Yoo", + "image": "http://static.lolesports.com/players/1758212856310_daystart.png", + "role": "mid" + }, + { + "id": "107492130895812257", + "summonerName": "Raptor", + "firstName": "Eojin", + "lastName": "Jeon", + "image": "http://static.lolesports.com/players/1758213857139_raptor.png", + "role": "jungle" + }, + { + "id": "105501715923396261", + "summonerName": "VicLa", + "firstName": "Deakwang", + "lastName": "Lee", + "image": "http://static.lolesports.com/players/1758214202499_vicla.png", + "role": "mid" + }, + { + "id": "101388913291808185", + "summonerName": "Kellin", + "firstName": "Hyeonggyu", + "lastName": "Kim", + "image": "http://static.lolesports.com/players/1758213403226_kellin.png", + "role": "support" + }, + { + "id": "110660139298018837", + "summonerName": "Kangin", + "firstName": "Kangin", + "lastName": "Choi", + "image": "http://static.lolesports.com/players/1758213384949_kangin.png", + "role": "top" + }, + { + "id": "112489761307532435", + "summonerName": "Zephyr", + "firstName": "Hyeoksu", + "lastName": "Hwang", + "image": "http://static.lolesports.com/players/1718370907973_CL_DRX_Zephyr_784.png", + "role": "jungle" + }, + { + "id": "105501850450507181", + "summonerName": "FIESTA", + "firstName": "Hyeonseo", + "lastName": "Ahn", + "image": "http://static.lolesports.com/players/1717747316436_fiesta.png", + "role": "mid" + }, + { + "id": "111521895921812004", + "summonerName": "Slayer", + "firstName": "Kim", + "lastName": "Jinyoung", + "image": "http://static.lolesports.com/players/1758213995655_slayer.png", + "role": "bottom" + }, + { + "id": "112518918607721192", + "summonerName": "Luon", + "firstName": "Hyunho", + "lastName": "Lee", + "image": "http://static.lolesports.com/players/1744279331170_CHF_Luon.png", + "role": "support" + } + ] + }, + { + "id": "105550054006182911", + "slug": "ns-challengers", + "name": "NS Challengers", + "code": "NS", + "image": "http://static.lolesports.com/teams/NSFullonDark.png", + "alternativeImage": "http://static.lolesports.com/teams/NSFullonLight.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCK Challengers", + "region": "KOREA" + }, + "players": [ + { + "id": "108366332471078988", + "summonerName": "Sponge", + "firstName": "Youngjun", + "lastName": "Bae", + "image": "http://static.lolesports.com/players/1758214044295_sponge.png", + "role": "jungle" + }, + { + "id": "98767975951139628", + "summonerName": "Scout", + "firstName": "Yechan", + "lastName": "Lee", + "image": "http://static.lolesports.com/players/1753280760711_image639.png", + "role": "mid" + }, + { + "id": "105501797931408936", + "summonerName": "Taeyoon", + "firstName": "Taeyun", + "lastName": "Kim", + "image": "http://static.lolesports.com/players/1753286405598_image6217.png", + "role": "bottom" + }, + { + "id": "111521549323573788", + "summonerName": "Janus", + "firstName": "Um", + "lastName": "Yejun", + "image": "http://static.lolesports.com/players/1708512218481_CL_FOX_Janus_F.png", + "role": "top" + }, + { + "id": "107492116585043595", + "summonerName": "SeTab", + "firstName": "Kyeongjin", + "lastName": "Song", + "image": "http://static.lolesports.com/players/1753284974617_image6214.png", + "role": "mid" + }, + { + "id": "105388980252039870", + "summonerName": "Pleata", + "firstName": "Minwoo", + "lastName": "Son", + "image": "http://static.lolesports.com/players/1758213747559_pleata.png", + "role": "support" + }, + { + "id": "114973639474141631", + "summonerName": "MihawK", + "firstName": "Joohyung", + "lastName": "Kim", + "image": "http://static.lolesports.com/players/1758213619771_mihawk.png", + "role": "jungle" + }, + { + "id": "99871276332909841", + "summonerName": "Lehends", + "firstName": "Siu", + "lastName": "Son", + "image": "http://static.lolesports.com/players/1739363299935_image6-2025-02-12T132743.340.png", + "role": "none" + }, + { + "id": "108205131295210982", + "summonerName": "Calix", + "firstName": "Hyun Bin", + "lastName": "Syun", + "image": "http://static.lolesports.com/players/1758212423023_calis.png", + "role": "mid" + }, + { + "id": "100428088879195423", + "summonerName": "Kingen", + "firstName": "Sunghoon ", + "lastName": "Hwang", + "image": "http://static.lolesports.com/players/1758213465738_kingen.png", + "role": "top" + }, + { + "id": "112636754844846666", + "summonerName": "Lucy", + "firstName": "Soohoon", + "lastName": "Hyun", + "image": "http://static.lolesports.com/players/1758213591926_lucy.png", + "role": "bottom" + } + ] + }, + { + "id": "105550059790656435", + "slug": "t1-challengers", + "name": "T1 Esports Academy", + "code": "T1", + "image": "http://static.lolesports.com/teams/T1-FullonDark.png", + "alternativeImage": "http://static.lolesports.com/teams/T1-FullonLight.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCK Challengers", + "region": "KOREA" + }, + "players": [ + { + "id": "102186485482484390", + "summonerName": "Doran", + "firstName": "Hyeonjun", + "lastName": "Choi", + "image": "http://static.lolesports.com/players/1758213061784_doran.png", + "role": "top" + }, + { + "id": "113560604011392262", + "summonerName": "Haetae", + "firstName": "Suhyeon", + "lastName": "Sim", + "image": "http://static.lolesports.com/players/1758213285389_haetae.png", + "role": "top" + }, + { + "id": "111658337799244461", + "summonerName": "Cloud ", + "firstName": "Moon", + "lastName": "Hyunho", + "image": "http://static.lolesports.com/players/1758212570277_cloud.png", + "role": "support" + }, + { + "id": "109523134874809981", + "summonerName": "Guti", + "firstName": "Moon", + "lastName": "Jeonghwan", + "image": "http://static.lolesports.com/players/1758213254748_guti.png", + "role": "mid" + }, + { + "id": "115643633228772231", + "summonerName": "Painter", + "firstName": "Eunhu", + "lastName": "Kim", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "108205155000821521", + "summonerName": "Cypher", + "firstName": "Yoojun", + "lastName": "Kim", + "image": "http://static.lolesports.com/players/1758212652642_cypher.png", + "role": "bottom" + }, + { + "id": "115643633313408264", + "summonerName": "Guardian", + "firstName": "Taehyo", + "lastName": "Seong", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "98767991747728851", + "summonerName": "Faker", + "firstName": "Sanghyeok", + "lastName": "Lee", + "image": "http://static.lolesports.com/players/1758213169113_faker.png", + "role": "mid" + }, + { + "id": "103495716561790834", + "summonerName": "Keria", + "firstName": "Minseok", + "lastName": "Ryu", + "image": "http://static.lolesports.com/players/1758213418301_keria.png", + "role": "support" + }, + { + "id": "105320682452092471", + "summonerName": "Oner", + "firstName": "Hyunjun", + "lastName": "Mun", + "image": "http://static.lolesports.com/players/1758213680084_oner.png", + "role": "jungle" + } + ] + }, + { + "id": "105553606349477427", + "slug": "zero-tenacity", + "name": "Zero Tenacity", + "code": "Z10", + "image": "http://static.lolesports.com/teams/1671446120643_JafqYYq.png", + "alternativeImage": "http://static.lolesports.com/teams/1671446120645_JafqYYq.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Rift Legends", + "region": "EMEA" + }, + "players": [ + { + "id": "114040922152349465", + "summonerName": "Huubiii", + "firstName": "Hubert", + "lastName": "Molenda", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "none" + }, + { + "id": "111720201452406537", + "summonerName": "Kozi", + "firstName": "Jarosław", + "lastName": "Marchewka", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "106382523448750526", + "summonerName": "Zubac", + "firstName": "Tomáš", + "lastName": "Kyselák", + "image": "http://static.lolesports.com/players/1644585689147_placeholder.png", + "role": "jungle" + }, + { + "id": "109749360853268219", + "summonerName": "Vasco", + "firstName": "Paweł", + "lastName": "Machnik", + "image": "http://static.lolesports.com/players/1674642348734_placeholder.png", + "role": "mid" + }, + { + "id": "101389713985551761", + "summonerName": "Woolite", + "firstName": "Paweł ", + "lastName": "Pruski", + "image": "http://static.lolesports.com/players/1655828280813_MSFP_WOOLITE-picture.png", + "role": "bottom" + }, + { + "id": "99322214622041698", + "summonerName": "JACTROLL", + "firstName": "Jakub", + "lastName": "Skurzyński", + "image": "http://static.lolesports.com/players/1705672003655_JACTROLL.png", + "role": "support" + }, + { + "id": "110412332568376175", + "summonerName": "Enkil", + "firstName": "Mateusz", + "lastName": "Krauz", + "image": "http://static.lolesports.com/players/1684758489792_placeholder.png", + "role": "support" + }, + { + "id": "112749532037835063", + "summonerName": "Birkyy", + "firstName": "Kacper", + "lastName": "Niemiec", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "mid" + } + ] + }, + { + "id": "105553684493690219", + "slug": "split-raiders", + "name": "Split Raiders", + "code": "STR", + "image": "http://static.lolesports.com/teams/1643116088298_EBL_STR-FullColorDarkBG.png", + "alternativeImage": "http://static.lolesports.com/teams/1643116088300_EBL_STR-FullColorDarkBG.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Esports Balkan League", + "region": "EMEA" + }, + "players": [ + { + "id": "108404254492008132", + "summonerName": "Skye1", + "firstName": "Jovanović", + "lastName": "Nikola", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "top" + }, + { + "id": "108404255375724679", + "summonerName": "Frozen2", + "firstName": "Popović", + "lastName": "Lazar", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "mid" + }, + { + "id": "108404241138094205", + "summonerName": "Mali Mrav", + "firstName": "Lukić", + "lastName": "Miloš", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "bottom" + }, + { + "id": "106371075977505926", + "summonerName": "Alleex", + "firstName": "Aleksandar", + "lastName": "Matic", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "support" + }, + { + "id": "103877900686135244", + "summonerName": "Nemky", + "firstName": "Nemanja ", + "lastName": "Josimov", + "image": "https://static.lolesports.com/players/download.png", + "role": "bottom" + }, + { + "id": "105553575812322790", + "summonerName": "Dmitar", + "firstName": "Lazar", + "lastName": "Dmitrović", + "image": "https://static.lolesports.com/players/download.png", + "role": "jungle" + } + ] + }, + { + "id": "105553729458550723", + "slug": "nexus-ktrl", + "name": "Nexus KTRL", + "code": "NXK", + "image": "http://static.lolesports.com/teams/EBL_NXT-Logo.png", + "alternativeImage": "http://static.lolesports.com/teams/EBL_NXT-Logo.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Esports Balkan League", + "region": "EMEA" + }, + "players": [ + { + "id": "107667616521982163", + "summonerName": "KeTa", + "firstName": "Robert", + "lastName": "Mocanu", + "image": "http://static.lolesports.com/players/1642877436849_placeholder.png", + "role": "bottom" + }, + { + "id": "106306524748586841", + "summonerName": "KASAPINA", + "firstName": "Rostislav ", + "lastName": "Shabarkov", + "image": "http://static.lolesports.com/players/1647873632882_placeholder.png", + "role": "jungle" + }, + { + "id": "105576916849153487", + "summonerName": "Sintax", + "firstName": "Damir", + "lastName": "Galovac", + "image": "http://static.lolesports.com/players/1642597201671_placeholder.png", + "role": "mid" + }, + { + "id": "107127290425431751", + "summonerName": "Falleo", + "firstName": "Karlo ", + "lastName": "Kovačić", + "image": "http://static.lolesports.com/players/1634632724649_placeholder.jpg", + "role": "support" + }, + { + "id": "107603186729147291", + "summonerName": "Xaiyen", + "firstName": "Alexandru", + "lastName": "Tocea", + "image": "http://static.lolesports.com/players/1641894324705_placeholder.png", + "role": "top" + }, + { + "id": "105554068595795347", + "summonerName": "Evil", + "firstName": "Bogdan", + "lastName": "Huber", + "image": "https://static.lolesports.com/players/download.png", + "role": "bottom" + } + ] + }, + { + "id": "105554088239949229", + "slug": "x25-esports", + "name": "x25 Esports", + "code": "X25", + "image": "http://static.lolesports.com/teams/EBL_X25-Logo_white.png", + "alternativeImage": "http://static.lolesports.com/teams/EBL_X25-Logo_dark.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Esports Balkan League", + "region": "EMEA" + }, + "players": [ + { + "id": "106664212842276639", + "summonerName": "Teodor", + "firstName": "Teodor", + "lastName": "Milošević", + "image": "http://static.lolesports.com/players/1627566720845_placeholder.jpg", + "role": "support" + }, + { + "id": "106371055529290845", + "summonerName": "Xeanny", + "firstName": "Bálint", + "lastName": "Szaniszló", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "top" + }, + { + "id": "105526524309702289", + "summonerName": "Frenzy", + "firstName": "Dániel", + "lastName": "Csönge", + "image": "http://static.lolesports.com/players/1644831968711_placeholder.png", + "role": "jungle" + }, + { + "id": "106371058318359852", + "summonerName": "Sk1nzor", + "firstName": "Krisztián", + "lastName": "Kerékgyártó", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "mid" + }, + { + "id": "106371064062328088", + "summonerName": "Tadeusz", + "firstName": "Szlachányi", + "lastName": "Tádé", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "mid" + }, + { + "id": "106371059851574541", + "summonerName": "Matebuff", + "firstName": "Máté", + "lastName": "Biró", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "bottom" + }, + { + "id": "106371061422144818", + "summonerName": "hextasy", + "firstName": "Gergő", + "lastName": "Kecskés", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "support" + }, + { + "id": "106371062778346806", + "summonerName": "Flamerrrr", + "firstName": "Darko", + "lastName": "Krstanoski", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "top" + }, + { + "id": "106584997463706598", + "summonerName": "Frost4", + "firstName": "Mátyus", + "lastName": "Mátyás", + "image": "http://static.lolesports.com/players/1626357990339_placeholder.jpg", + "role": "jungle" + } + ] + }, + { + "id": "105559480124455983", + "slug": "sk-gaming-prime", + "name": "SK Gaming Prime", + "code": "SKP", + "image": "http://static.lolesports.com/teams/1674832544726_SK_logo_white.png", + "alternativeImage": "http://static.lolesports.com/teams/1674832544728_SK_logo.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "Prime League", + "region": "EMEA" + }, + "players": [ + { + "id": "113202590943443621", + "summonerName": "Sanah", + "firstName": "Sarah", + "lastName": "Breton", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "113202591020218458", + "summonerName": "Emprez", + "firstName": "Ida", + "lastName": "Pedersen", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "108373641442063108", + "summonerName": "Apollonia", + "firstName": "Daphne", + "lastName": "Gerveni", + "image": "http://static.lolesports.com/players/1653650528820_placeholder.png", + "role": "mid" + }, + { + "id": "113202591091473652", + "summonerName": "Zavee", + "firstName": "Luna", + "lastName": "Lochmann", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "113202600631924840", + "summonerName": "Lumi", + "firstName": "Gina", + "lastName": "Kircher", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + } + ] + }, + { + "id": "105593129376630217", + "slug": "vikingekrig-esports", + "name": "Vikingekrig Esports", + "code": "VIK", + "image": "http://static.lolesports.com/teams/Vikingekrig_Esportslogo_square.png", + "alternativeImage": "http://static.lolesports.com/teams/Vikingekrig_Esportslogo_square.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Hitpoint Masters", + "region": "EMEA" + }, + "players": [ + { + "id": "105593192004476004", + "summonerName": "Mauss", + "firstName": "Martin", + "lastName": "Kuhajda", + "image": "http://static.lolesports.com/players/placeholder_.jpg", + "role": "bottom" + }, + { + "id": "106482825529848685", + "summonerName": "Meager", + "firstName": "Kamil", + "lastName": "Pękacki", + "image": "https://static.lolesports.com/players/download.png", + "role": "support" + }, + { + "id": "105593141599099929", + "summonerName": "Krakeer", + "firstName": "David", + "lastName": "Bruk", + "image": "http://static.lolesports.com/players/placeholder_.jpg", + "role": "none" + }, + { + "id": "105593142930261486", + "summonerName": "DON LAFFSON", + "firstName": "Radek", + "lastName": "Mikušovský", + "image": "http://static.lolesports.com/players/placeholder_.jpg", + "role": "none" + }, + { + "id": "105647948060927443", + "summonerName": "Majkkl", + "firstName": "Michal", + "lastName": "Čermák", + "image": "http://static.lolesports.com/players/download.png", + "role": "bottom" + }, + { + "id": "105910330398251933", + "summonerName": "Davros", + "firstName": "Šimon", + "lastName": "Koritar", + "image": "http://static.lolesports.com/players/placeholder.png", + "role": "mid" + } + ] + }, + { + "id": "105593161016793151", + "slug": "inside-games", + "name": "Inside Games", + "code": "ING", + "image": "http://static.lolesports.com/teams/1641466035586_ing_shield_WHITE.png", + "alternativeImage": "http://static.lolesports.com/teams/1641466035588_ing_shield_BLACK.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Hitpoint Masters", + "region": "EMEA" + }, + "players": [ + { + "id": "110412140692118123", + "summonerName": "Koczis", + "firstName": "Łukasz", + "lastName": "Koczwara", + "image": "http://static.lolesports.com/players/1684755561615_placeholder.png", + "role": "jungle" + }, + { + "id": "107186943941089172", + "summonerName": "Demoncior", + "firstName": "Daniel", + "lastName": "Frankowski", + "image": "http://static.lolesports.com/players/1635542963092_pobrane3.png", + "role": "bottom" + }, + { + "id": "113202956032179710", + "summonerName": "Prachoun", + "firstName": "Martin", + "lastName": "Prachař", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "107693932067622577", + "summonerName": "Toumes", + "firstName": "Tomáš", + "lastName": "Svoboda", + "image": "http://static.lolesports.com/players/1643278983271_placeholder.png", + "role": "mid" + }, + { + "id": "113858356912190024", + "summonerName": "HuBiTeL", + "firstName": "Daniel", + "lastName": "Martinát", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "110462452993707412", + "summonerName": "Luknom", + "firstName": "Lukáš", + "lastName": "Soukup", + "image": "http://static.lolesports.com/players/1685523268714_placeholder.png", + "role": "support" + }, + { + "id": "112610975098904933", + "summonerName": "Reshiram1", + "firstName": "Kevin", + "lastName": "Durst", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "jungle" + } + ] + }, + { + "id": "105593182576105603", + "slug": "brute", + "name": "BRUTE", + "code": "BRT", + "image": "http://static.lolesports.com/teams/1643479836323_HM_BRT_white.png", + "alternativeImage": "http://static.lolesports.com/teams/BRUTE_B.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Hitpoint Masters", + "region": "EMEA" + }, + "players": [ + { + "id": "105647915578689271", + "summonerName": "Kars", + "firstName": "Šimon", + "lastName": "Sedlák", + "image": "http://static.lolesports.com/players/download.png", + "role": "top" + }, + { + "id": "114868083754376038", + "summonerName": "WeeDnek", + "firstName": "Mario", + "lastName": "Ertibauer", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "111759058431936653", + "summonerName": "WalliR", + "firstName": "Dominik", + "lastName": "Blatný", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "105647966312769029", + "summonerName": "KNEZA", + "firstName": "Vojtěch", + "lastName": "Kněžíček", + "image": "http://static.lolesports.com/players/download.png", + "role": "bottom" + }, + { + "id": "114868088174195515", + "summonerName": "Speedy2", + "firstName": "Dominik", + "lastName": "Hanus", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "104738218454508096", + "summonerName": "Adiss", + "firstName": "Petr", + "lastName": "Pavlíček", + "image": "http://static.lolesports.com/players/1598178379164_czekolad-51vwzmjl.png", + "role": "top" + }, + { + "id": "114876263378953959", + "summonerName": "Tada", + "firstName": "Tadeáš", + "lastName": "Trýzubský", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "105707175421438151", + "summonerName": "Munet", + "firstName": "Alex", + "lastName": "Míka", + "image": "http://static.lolesports.com/players/placeholder.png", + "role": "support" + } + ] + }, + { + "id": "105593213115128994", + "slug": "dark-tigers", + "name": "Dark Tigers", + "code": "DTG", + "image": "http://static.lolesports.com/teams/Dark_Tigerslogo_square.png", + "alternativeImage": "http://static.lolesports.com/teams/Dark_Tigerslogo_square.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Hitpoint Masters", + "region": "EMEA" + }, + "players": [ + { + "id": "108603076371252535", + "summonerName": "Galers", + "firstName": "Andrey", + "lastName": "Galesa", + "image": "http://static.lolesports.com/players/1657151429890_silhouette_transparent.png", + "role": "jungle" + }, + { + "id": "108396065890465552", + "summonerName": "Marlley", + "firstName": "Jakub", + "lastName": "Urban", + "image": "http://static.lolesports.com/players/1653992698790_placeholder.png", + "role": "support" + }, + { + "id": "108469407331729283", + "summonerName": "DailomeR", + "firstName": "Josef", + "lastName": "Gnida", + "image": "http://static.lolesports.com/players/1655111799429_placeholder.png", + "role": "none" + }, + { + "id": "108469409445534094", + "summonerName": "void", + "firstName": "Oleksandr", + "lastName": "Romanov", + "image": "http://static.lolesports.com/players/1655111831247_placeholder.png", + "role": "none" + } + ] + }, + { + "id": "105593278887024877", + "slug": "inaequalis", + "name": "Inaequalis", + "code": "INAE", + "image": "http://static.lolesports.com/teams/INAE-LOGO-white.png", + "alternativeImage": "http://static.lolesports.com/teams/Inaequalislogo_square.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "105647893461075654", + "summonerName": "Trungi", + "firstName": "Martin", + "lastName": "Trungel", + "image": "http://static.lolesports.com/players/download.png", + "role": "none" + }, + { + "id": "105593314423593216", + "summonerName": "MikePerwait", + "firstName": "Mikuláš", + "lastName": "Rázga", + "image": "http://static.lolesports.com/players/placeholder_.jpg", + "role": "support" + }, + { + "id": "108525629970279722", + "summonerName": "MyCash", + "firstName": "Ondřej", + "lastName": "Mikeš", + "image": "http://static.lolesports.com/players/1655969690634_placeholder.png", + "role": "none" + }, + { + "id": "106425073913685810", + "summonerName": "Dejvos", + "firstName": "David", + "lastName": "Válek", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "support" + }, + { + "id": "107693794517585511", + "summonerName": "Klofan", + "firstName": "Jan", + "lastName": "Hrbáč", + "image": "http://static.lolesports.com/players/1643276890816_placeholder.png", + "role": "top" + }, + { + "id": "107693797574357443", + "summonerName": "Discoland", + "firstName": "Václav", + "lastName": "Maxa", + "image": "http://static.lolesports.com/players/1643276936984_placeholder.png", + "role": "mid" + }, + { + "id": "107693799655773601", + "summonerName": "WorstAdc", + "firstName": "Václav", + "lastName": "Šrajer", + "image": "http://static.lolesports.com/players/1643276969087_placeholder.png", + "role": "bottom" + }, + { + "id": "107693804175602119", + "summonerName": "Siso", + "firstName": "Martin", + "lastName": "Máchal", + "image": "http://static.lolesports.com/players/1643277036358_placeholder.png", + "role": "support" + }, + { + "id": "107746936076949757", + "summonerName": "Awakerino", + "firstName": "Martin", + "lastName": "Maxa", + "image": "http://static.lolesports.com/players/1644087766055_placeholder.png", + "role": "bottom" + } + ] + }, + { + "id": "105593311172904657", + "slug": "eclot-gaming", + "name": "Eclot Gaming", + "code": "ECT", + "image": "http://static.lolesports.com/teams/HM_ECT_white1.png", + "alternativeImage": "http://static.lolesports.com/teams/HM_ECT_black4.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Hitpoint Masters", + "region": "EMEA" + }, + "players": [ + { + "id": "105593315945367252", + "summonerName": "keve", + "firstName": "Samuel", + "lastName": "Koráb", + "image": "http://static.lolesports.com/players/placeholder_.jpg", + "role": "jungle" + }, + { + "id": "105593322712352484", + "summonerName": "Sufon", + "firstName": "Dominik", + "lastName": "Dvořák", + "image": "http://static.lolesports.com/players/placeholder_.jpg", + "role": "support" + }, + { + "id": "105593324089170208", + "summonerName": "Micro", + "firstName": "Richard", + "lastName": "Mendl", + "image": "http://static.lolesports.com/players/placeholder_.jpg", + "role": "none" + }, + { + "id": "105593325257776425", + "summonerName": "Xspecial1", + "firstName": "Martin", + "lastName": "Stříbný", + "image": "http://static.lolesports.com/players/placeholder_.jpg", + "role": "none" + }, + { + "id": "105647957884492706", + "summonerName": "Kalushi", + "firstName": "Karel", + "lastName": "Kohout", + "image": "http://static.lolesports.com/players/download.png", + "role": "jungle" + }, + { + "id": "105647964952004524", + "summonerName": "Unicornlead", + "firstName": "Michal", + "lastName": "Van", + "image": "http://static.lolesports.com/players/download.png", + "role": "mid" + }, + { + "id": "105647967378540463", + "summonerName": "Dawerko", + "firstName": "David", + "lastName": "Lexa", + "image": "http://static.lolesports.com/players/download.png", + "role": "support" + }, + { + "id": "105707177636639295", + "summonerName": "CptJacob", + "firstName": "Jakub", + "lastName": "Milý", + "image": "http://static.lolesports.com/players/placeholder_.jpg", + "role": "jungle" + } + ] + }, + { + "id": "105593951536470384", + "slug": "gtz-bulls", + "name": "GTZ Esports", + "code": "GTZ", + "image": "http://static.lolesports.com/teams/1738418639441_GTZ_c.png", + "alternativeImage": "http://static.lolesports.com/teams/1738418639441_GTZ_c.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Liga Portuguesa", + "region": "EMEA" + }, + "players": [ + { + "id": "108438978365645842", + "summonerName": "Wuanted", + "firstName": "André", + "lastName": "Henriques", + "image": "http://static.lolesports.com/players/1753917243955_wuantedrdy.png", + "role": "jungle" + }, + { + "id": "114337064148542579", + "summonerName": "Ihebic", + "firstName": "Iheb", + "lastName": "Zaalani", + "image": "http://static.lolesports.com/players/1753918043389_ihebicrdy.png", + "role": "support" + }, + { + "id": "111782178171125226", + "summonerName": "Shakur", + "firstName": "Luca", + "lastName": "Frochte", + "image": "http://static.lolesports.com/players/1753918070549_shakurrdy.png", + "role": "bottom" + }, + { + "id": "111782178716272105", + "summonerName": "Carros 2", + "firstName": "Rodrigo", + "lastName": "Pinto", + "image": "http://static.lolesports.com/players/1753918165250_carros2rdy.png", + "role": "bottom" + }, + { + "id": "105589326261016816", + "summonerName": "RapMonsters", + "firstName": "Gabriel", + "lastName": "Rocha", + "image": "http://static.lolesports.com/players/1753918202228_rapmonstersrdy.png", + "role": "mid" + }, + { + "id": "106312619767657299", + "summonerName": "Darky", + "firstName": "Nuno", + "lastName": "Esteves", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "top" + }, + { + "id": "114944819898335106", + "summonerName": "Spy2", + "firstName": "Pavlos", + "lastName": "Soulemezis", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "114539914111874886", + "summonerName": "BrotherLuis", + "firstName": "Luis", + "lastName": "Busch", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "support" + } + ] + }, + { + "id": "105594101461473671", + "slug": "karma-clan-esports", + "name": "Karma Clan Esports", + "code": "KRM", + "image": "http://static.lolesports.com/teams/LPLOL_KRM-Logo1.png", + "alternativeImage": "http://static.lolesports.com/teams/LPLOL_KRM-Logo1.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "108636630995320108", + "summonerName": "Pepito", + "firstName": "Théo", + "lastName": "Viroulaud", + "image": "https://static.lolesports.com/players/download.png", + "role": "mid" + }, + { + "id": "108126522160614891", + "summonerName": "Gongas", + "firstName": "Rodrigues", + "lastName": "Gonçalo", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "top" + }, + { + "id": "108404608985839892", + "summonerName": "Cdric", + "firstName": "Cédric", + "lastName": "Ratier", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "mid" + }, + { + "id": "107444839654313010", + "summonerName": "Tito", + "firstName": "Tito", + "lastName": "Chiquita de Barros", + "image": "http://static.lolesports.com/players/1639478140609_placeholder.jpg", + "role": "bottom" + } + ] + }, + { + "id": "105594116005157262", + "slug": "offset-esports", + "name": "OFFSET Esports", + "code": "OFF7", + "image": "http://static.lolesports.com/teams/LPLOL_OFF7-Logo1.png", + "alternativeImage": "http://static.lolesports.com/teams/LPLOL_OFF7-Logo1.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "103878017114310607", + "summonerName": "Blizz", + "firstName": "Guilherme", + "lastName": "Rodrigues", + "image": "http://static.lolesports.com/players/1646765413999_Blizz.png", + "role": "none" + }, + { + "id": "107609957656750022", + "summonerName": "Karoq", + "firstName": "Jorge", + "lastName": "Silva", + "image": "http://static.lolesports.com/players/1646764863789_Karoq.png", + "role": "mid" + }, + { + "id": "107105631664970737", + "summonerName": "Jonhy", + "firstName": "João ", + "lastName": "Azevedo", + "image": "http://static.lolesports.com/players/1646764887240_Jonhy.png", + "role": "bottom" + } + ] + }, + { + "id": "105594135137147298", + "slug": "white-dragons", + "name": "White Dragons", + "code": "WD", + "image": "http://static.lolesports.com/teams/1738418431166_WD.png", + "alternativeImage": "http://static.lolesports.com/teams/1738418431166_WD.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "Liga Portuguesa", + "region": "EMEA" + }, + "players": [ + { + "id": "106312666308354872", + "summonerName": "FRED", + "firstName": "Frederico", + "lastName": "Galvão", + "image": "http://static.lolesports.com/players/1674856183574_3EGN-Fred.png", + "role": "mid" + }, + { + "id": "107609969613368989", + "summonerName": "Henra", + "firstName": "Henrique", + "lastName": "Antunes", + "image": "https://static.lolesports.com/players/download.png", + "role": "mid" + }, + { + "id": "107655474276993836", + "summonerName": "REDFERNAL", + "firstName": "Marcos", + "lastName": "Oliveira", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "support" + } + ] + }, + { + "id": "105594163014588871", + "slug": "boavista-fc", + "name": "Boavista F.C", + "code": "BFC", + "image": "http://static.lolesports.com/teams/1705720825651_bfc_1.png", + "alternativeImage": "http://static.lolesports.com/teams/1705720825651_bfc_1.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "111879862556366016", + "summonerName": "Sami", + "firstName": "Samuel", + "lastName": "Fernandes", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "106312612669479503", + "summonerName": "Rezso", + "firstName": "Rúben", + "lastName": "Sousa", + "image": "http://static.lolesports.com/players/1687001434944_BFC-Rezso.png", + "role": "support" + }, + { + "id": "107655341550864730", + "summonerName": "Gajo", + "firstName": "André", + "lastName": "Carita", + "image": "https://static.lolesports.com/players/download.png", + "role": "support" + }, + { + "id": "111782179602545716", + "summonerName": "ItzFrozen", + "firstName": "Diogo", + "lastName": "Pereira", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "107151369837992038", + "summonerName": "Phoxie", + "firstName": "Miguel", + "lastName": "Pacheco", + "image": "http://static.lolesports.com/players/1686931203143_placeholder.png", + "role": "mid" + }, + { + "id": "109711135438360667", + "summonerName": "ritmo", + "firstName": "Tomás", + "lastName": "Cardoso", + "image": "http://static.lolesports.com/players/1674059073890_placeholder.png", + "role": "support" + }, + { + "id": "111782179827072076", + "summonerName": "Glorious", + "firstName": "Alexandre", + "lastName": "Moreno", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "111811198265799171", + "summonerName": "Imp1", + "firstName": "Joao", + "lastName": "Vasconcelos", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "109716969923236478", + "summonerName": "Islaa", + "firstName": "Diogo", + "lastName": "Inês", + "image": "http://static.lolesports.com/players/1674856737252_1VAE-Islaa.png", + "role": "top" + } + ] + }, + { + "id": "105594176887807460", + "slug": "efive-esports", + "name": "EFIVE Esports", + "code": "E5", + "image": "http://static.lolesports.com/teams/LPLOL_E5-Logo2.png", + "alternativeImage": "http://static.lolesports.com/teams/LPLOL_E5-Logo2.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "106312625465795344", + "summonerName": "Haze", + "firstName": "Afonso", + "lastName": "Maia", + "image": "http://static.lolesports.com/players/1633711147139_silhouette.png", + "role": "top" + }, + { + "id": "106312638703104859", + "summonerName": "Alba", + "firstName": "Hugo", + "lastName": "Canteiro", + "image": "http://static.lolesports.com/players/1633712193476_silhouette.png", + "role": "jungle" + }, + { + "id": "105554096484243158", + "summonerName": "BLINDNESS", + "firstName": "Martin", + "lastName": "Ivanovski", + "image": "https://static.lolesports.com/players/download.png", + "role": "mid" + }, + { + "id": "106312632917107483", + "summonerName": "Yamato0", + "firstName": "Nuno", + "lastName": "Moutinho", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "bottom" + }, + { + "id": "106312635279661691", + "summonerName": "Kiddo", + "firstName": "João", + "lastName": "Rodrigues", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "support" + }, + { + "id": "106364179427093021", + "summonerName": "Dandom", + "firstName": "Domonkos", + "lastName": "Dániel", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "jungle" + }, + { + "id": "105589323771073653", + "summonerName": "Renas", + "firstName": "Renato", + "lastName": "Ferreira", + "image": "https://static.lolesports.com/players/download.png", + "role": "none" + }, + { + "id": "106449125233978203", + "summonerName": "Pacou", + "firstName": "Lucas", + "lastName": "Mongella", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "mid" + }, + { + "id": "106449127133010589", + "summonerName": "Meraiel", + "firstName": "Merlin", + "lastName": "Morverand", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "jungle" + }, + { + "id": "106562884479740612", + "summonerName": "Pyton", + "firstName": "Tomás", + "lastName": "Cordoso", + "image": "http://static.lolesports.com/players/1646766386567_Pyton.png", + "role": "bottom" + } + ] + }, + { + "id": "105647890918693540", + "slug": "gaming-team-kravae", + "name": "Gaming Team Kravaře", + "code": "GTK", + "image": "http://static.lolesports.com/teams/Gaming_Team_Krava3Felogo_square.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "112880372381731252", + "summonerName": "Ben01", + "firstName": "Ben", + "lastName": "Ben", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + } + ] + }, + { + "id": "105663527959374033", + "slug": "ctrl-play-team", + "name": "CTRL PLAY Team", + "code": "CPT", + "image": "http://static.lolesports.com/teams/CPT.png", + "alternativeImage": "http://static.lolesports.com/teams/CPT.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCL", + "region": "COMMONWEALTH OF INDEPENDENT STATES" + }, + "players": [ + { + "id": "105700996419137829", + "summonerName": "Valhalla", + "firstName": "Ilia", + "lastName": "Atnazhev", + "image": "https://static.lolesports.com/players/download.png", + "role": "bottom" + }, + { + "id": "106297414883350107", + "summonerName": "CblpHuK", + "firstName": "Aleksandr", + "lastName": "Sidorov Aleksandrovich", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "support" + }, + { + "id": "107721943229603121", + "summonerName": "Asakura", + "firstName": "Egor", + "lastName": "Yakovlev", + "image": "http://static.lolesports.com/players/1644593659569_CPT___lolesports.png", + "role": "mid" + }, + { + "id": "107614778788377598", + "summonerName": "Shin", + "firstName": "Kirill", + "lastName": "Shurkin", + "image": "http://static.lolesports.com/players/1644478260225_Shin_lolesports.png", + "role": "top" + }, + { + "id": "107614782359006526", + "summonerName": "Yur4ik", + "firstName": "Yurii", + "lastName": "Lyferenko", + "image": "http://static.lolesports.com/players/1644406646700_Yur4ik_lolesports.png", + "role": "bottom" + }, + { + "id": "105700942283695947", + "summonerName": "Maxim", + "firstName": "Maxim", + "lastName": "Tarasov", + "image": "http://static.lolesports.com/players/1644406771375_Maxim_lolesports.png", + "role": "mid" + }, + { + "id": "107614792241179972", + "summonerName": "BullyMguire", + "firstName": "Stepan", + "lastName": "Leontiev", + "image": "http://static.lolesports.com/players/1644406837874_BullyMaguire_lolesports.png", + "role": "jungle" + } + ] + }, + { + "id": "105709099258505657", + "slug": "peace", + "name": "PEACE", + "code": "PCE", + "image": "http://static.lolesports.com/teams/1631820668117_peace-2021-worlds.png", + "alternativeImage": "http://static.lolesports.com/teams/1631820668117_peace-2021-worlds.png", + "backgroundImage": "http://static.lolesports.com/teams/1632940793600_PeacePCE.png", + "status": "active", + "homeLeague": { + "name": "LCO", + "region": "OCEANIA" + }, + "players": [ + { + "id": "107568623664164633", + "summonerName": "Weizhe", + "firstName": "WEI-ZHE", + "lastName": "LIN", + "image": "https://static.lolesports.com/players/download.png", + "role": "top" + }, + { + "id": "109675752512061621", + "summonerName": "sHAKa", + "firstName": "Chen-yu", + "lastName": "Yang", + "image": "http://static.lolesports.com/players/1673519171244_placeholder.png", + "role": "jungle" + }, + { + "id": "107568562442006243", + "summonerName": "NuL1", + "firstName": "Heygele", + "lastName": "Keanu", + "image": "http://static.lolesports.com/players/1705750729053_WPNul1.png", + "role": "mid" + }, + { + "id": "105714267311249927", + "summonerName": "Chayon", + "firstName": "Yuncheng", + "lastName": "Wang", + "image": "http://static.lolesports.com/players/silhouette.png", + "role": "bottom" + }, + { + "id": "109675769550330537", + "summonerName": "CL0UD", + "firstName": "Zhenwei", + "lastName": "Hu", + "image": "http://static.lolesports.com/players/1673519431050_placeholder.png", + "role": "support" + }, + { + "id": "109758330273362736", + "summonerName": "Chillness", + "firstName": "Wei", + "lastName": "Li", + "image": "http://static.lolesports.com/players/1674779207593_silhouette_transparent.png", + "role": "support" + } + ] + }, + { + "id": "105913111502565010", + "slug": "zoos-gaming", + "name": "Zoos Gaming", + "code": "ZOOS", + "image": "http://static.lolesports.com/teams/zoos-color.png", + "alternativeImage": "http://static.lolesports.com/teams/zoos-color.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "105913332617566003", + "summonerName": "Raheen", + "firstName": "Sami", + "lastName": "Raheen", + "image": "http://static.lolesports.com/players/silhouette.png", + "role": "bottom" + }, + { + "id": "98926509856279072", + "summonerName": "Tuesday", + "firstName": "Jean", + "lastName": "Sebastien", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/tuesday-4glqmqve.png", + "role": "mid" + }, + { + "id": "106857881211926810", + "summonerName": "Draxyr", + "firstName": "Richard", + "lastName": "Yuan", + "image": "http://static.lolesports.com/players/1630521867360_silhouette.png", + "role": "none" + } + ] + }, + { + "id": "105913221137618666", + "slug": "no-org", + "name": "No Org", + "code": "NOR", + "image": "http://static.lolesports.com/teams/no-org-white.png", + "alternativeImage": "http://static.lolesports.com/teams/no-org.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "99101098214987800", + "summonerName": "Value", + "firstName": "Ross", + "lastName": "Luppino", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/value-89q6qtmb.png", + "role": "bottom" + }, + { + "id": "98926509803844880", + "summonerName": "Big", + "firstName": "Terry", + "lastName": "Chuong", + "image": "http://static.lolesports.com/players/1591816590506_fly-big.png", + "role": "support" + }, + { + "id": "108626985503125540", + "summonerName": "Big T", + "firstName": "Terry", + "lastName": "Chuong", + "image": "http://static.lolesports.com/players/1657516265586_placeholder.png", + "role": "none" + }, + { + "id": "108369200459804947", + "summonerName": "LE0", + "firstName": "Kang", + "lastName": "Seung Wan", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + }, + { + "id": "103537074956928254", + "summonerName": "5fire", + "firstName": "Aidan", + "lastName": "Reckamp", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/5fire-718hw3gs.png", + "role": "none" + }, + { + "id": "108642427504705273", + "summonerName": "Figurative", + "firstName": "Record", + "lastName": "Figurative", + "image": "https://static.lolesports.com/players/download.png", + "role": "none" + } + ] + }, + { + "id": "105913228076297879", + "slug": "solafide-esports", + "name": "SolaFide Esports", + "code": "SF", + "image": "http://static.lolesports.com/teams/solafide.png", + "alternativeImage": "http://static.lolesports.com/teams/solafide.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "112880372381731252", + "summonerName": "Ben01", + "firstName": "Ben", + "lastName": "Ben", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + } + ] + }, + { + "id": "105913232697120493", + "slug": "eg-prodigies", + "name": "EG Prodigies", + "code": "EG", + "image": "http://static.lolesports.com/teams/1641603800336_EGP.png", + "alternativeImage": "http://static.lolesports.com/teams/1641603800338_EGP.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "105913238372341488", + "slug": "wildcard-gaming", + "name": "Wildcard", + "code": "WCAR", + "image": "http://static.lolesports.com/teams/1641961179748_Wildcard_Gaming_Logo-CollinRoe.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [] + }, + { + "id": "105957578868644876", + "slug": "dignitas-mirage", + "name": "Dignitas Mirage", + "code": "DIG", + "image": "http://static.lolesports.com/teams/dig-mirage.png", + "alternativeImage": "http://static.lolesports.com/teams/dig-mirage.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [] + }, + { + "id": "105957603362200620", + "slug": "dignitas-mirage", + "name": "Dignitas Mirage", + "code": "DIGM", + "image": "http://static.lolesports.com/teams/dig-mirage.png", + "alternativeImage": "http://static.lolesports.com/teams/dig-mirage.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [] + }, + { + "id": "105957640798249312", + "slug": "barragena", + "name": "Barrage.NA", + "code": "BRG", + "image": "http://static.lolesports.com/teams/barrage.png", + "alternativeImage": "http://static.lolesports.com/teams/barrage.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "99101098205435716", + "summonerName": "winter", + "firstName": "Olivier", + "lastName": "Lapointe", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/winter-j89sdy58.png", + "role": "support" + } + ] + }, + { + "id": "106222632206917342", + "slug": "resolve", + "name": "Resolve", + "code": "RSV", + "image": "http://static.lolesports.com/teams/rsv.png", + "alternativeImage": "http://static.lolesports.com/teams/rsv.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "NLC", + "region": "EMEA" + }, + "players": [] + }, + { + "id": "106250729133367861", + "slug": "olympiacos-alimou-esports", + "name": "GOAL esports", + "code": "GOAL", + "image": "http://static.lolesports.com/teams/1741780171372_GOAL.png", + "alternativeImage": "http://static.lolesports.com/teams/1642077274024_GOAL_Logo_600600.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Hellenic Legends League", + "region": "EMEA" + }, + "players": [ + { + "id": "114216594516088406", + "summonerName": "Gatoulhs", + "firstName": "Dionysios", + "lastName": "Biazis", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "none" + }, + { + "id": "107045102544850688", + "summonerName": "TheSerius", + "firstName": "Antonis", + "lastName": "Tsiaousis", + "image": "http://static.lolesports.com/players/1633378636124_placeholder.jpg", + "role": "top" + }, + { + "id": "114216590070467616", + "summonerName": "Drofan", + "firstName": "Avraam", + "lastName": "Tsakiridis", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "none" + }, + { + "id": "105536931575860354", + "summonerName": "Sebekx", + "firstName": "Sebastian", + "lastName": "Smejkal", + "image": "https://static.lolesports.com/players/download.png", + "role": "mid" + }, + { + "id": "114172530644303645", + "summonerName": "kkero", + "firstName": "Kaan", + "lastName": "Soyuner", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "107044958960796612", + "summonerName": "DRUXY", + "firstName": "Apostolos", + "lastName": "Kamposos", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "bottom" + } + ] + }, + { + "id": "106250732506012141", + "slug": "umbra-divinus-gaming", + "name": "Umbra Divinus Gaming", + "code": "UDGG", + "image": "http://static.lolesports.com/teams/UDG_Logo.png", + "alternativeImage": "http://static.lolesports.com/teams/UDG_Logo.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107633956130388813", + "summonerName": "AGGRESSION", + "firstName": "Vasilis", + "lastName": "Konstantinakos", + "image": "http://static.lolesports.com/players/1642363828612_placeholder.png", + "role": "bottom" + }, + { + "id": "107633864975876153", + "summonerName": "diabolica", + "firstName": "Athanasios", + "lastName": "Plomaritis", + "image": "http://static.lolesports.com/players/1642362437847_placeholder.png", + "role": "mid" + } + ] + }, + { + "id": "106269804045322803", + "slug": "mega-bank-beyond-gaming", + "name": "Beyond Gaming", + "code": "BYG", + "image": "http://static.lolesports.com/teams/1686826371701_beyondGaming_logo_W.png", + "alternativeImage": null, + "backgroundImage": "http://static.lolesports.com/teams/1632941129592_BeyondGamingBYG.png", + "status": "active", + "homeLeague": { + "name": "PCS", + "region": "HONG KONG, MACAU, TAIWAN" + }, + "players": [] + }, + { + "id": "106269818143576465", + "slug": "boom-esports", + "name": "BOOM Esports", + "code": "BME", + "image": "http://static.lolesports.com/teams/boom-color.png", + "alternativeImage": "http://static.lolesports.com/teams/boom-color.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "PCS", + "region": "HONG KONG, MACAU, TAIWAN" + }, + "players": [ + { + "id": "104573231995499518", + "summonerName": "Holo", + "firstName": "Dek Lam", + "lastName": "Tsang", + "image": "http://static.lolesports.com/players/1687502435333_FAKHolo.png", + "role": "jungle" + }, + { + "id": "100205572948945427", + "summonerName": "Rockky", + "firstName": "Atit", + "lastName": "Phaomuang", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/rockky-68bk1726.png", + "role": "top" + }, + { + "id": "102804906401419932", + "summonerName": "Alex", + "firstName": "Yu-Ming", + "lastName": "Chen", + "image": "http://static.lolesports.com/players/1675251778733_IMPAlex.png", + "role": "jungle" + } + ] + }, + { + "id": "106269859169658575", + "slug": "impunity-esports", + "name": "Impunity Esports", + "code": "IMP", + "image": "http://static.lolesports.com/teams/impunity.png", + "alternativeImage": "http://static.lolesports.com/teams/impunity.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "PCS", + "region": "HONG KONG, MACAU, TAIWAN" + }, + "players": [ + { + "id": "99566406461735045", + "summonerName": "Taizan", + "firstName": "Ching-Chia", + "lastName": "Lin", + "image": "http://static.lolesports.com/players/1676538436906_IMPTaizan.png", + "role": "jungle" + }, + { + "id": "99566406484560238", + "summonerName": "Atlen", + "firstName": "Ya-Lun", + "lastName": "Sung", + "image": "http://static.lolesports.com/players/1675251823563_IMPAtlen.png", + "role": "bottom" + }, + { + "id": "110548002908903469", + "summonerName": "LJW", + "firstName": "JACK WAI", + "lastName": "LEE", + "image": "http://static.lolesports.com/players/1688257198751_IMPLJW.png", + "role": "top" + }, + { + "id": "106469100072525666", + "summonerName": "Arashi", + "firstName": "Ang", + "lastName": "En", + "image": "http://static.lolesports.com/players/1688257229502_IMPArashi.png", + "role": "jungle" + }, + { + "id": "110548040198127155", + "summonerName": "Shera", + "firstName": "WINSTON YI SHENG", + "lastName": "TAI", + "image": "http://static.lolesports.com/players/1688257272045_IMPShera.png", + "role": "mid" + }, + { + "id": "106470366839758782", + "summonerName": "Blaze", + "firstName": "Jia Xiang", + "lastName": "Teo", + "image": "http://static.lolesports.com/players/1688257295964_IMPBlaze.png", + "role": "bottom" + }, + { + "id": "106470368396369858", + "summonerName": "Smerv", + "firstName": "Mervyn", + "lastName": "Yee", + "image": "http://static.lolesports.com/players/1688257319084_IMPSmerv.png", + "role": "support" + }, + { + "id": "106470311122977099", + "summonerName": "Felia", + "firstName": "Alvin", + "lastName": "Lim", + "image": "http://static.lolesports.com/players/1688257341039_IMPFelia.png", + "role": "support" + } + ] + }, + { + "id": "106295024192678387", + "slug": "gaia-esports", + "name": "Gaia Esports", + "code": "GAIA", + "image": "http://static.lolesports.com/teams/PGNATS_GE-logo.png", + "alternativeImage": "http://static.lolesports.com/teams/PGNATS_GE-logo.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "102787200027361888", + "summonerName": "Chapapi ", + "firstName": "Randy ", + "lastName": "Van den Bemt", + "image": "https://static.lolesports.com/players/download.png", + "role": "mid" + }, + { + "id": "106301634102153364", + "summonerName": "Vulatskee", + "firstName": "Gaetano", + "lastName": "Venuto", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "jungle" + }, + { + "id": "106301635757501466", + "summonerName": "Ereshkigal", + "firstName": "Matteo", + "lastName": "Meo", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "mid" + }, + { + "id": "106301640821952677", + "summonerName": "APDRONE", + "firstName": "Daniel", + "lastName": "Padrone", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "support" + }, + { + "id": "106301648056275113", + "summonerName": "Morokei", + "firstName": "Andrea", + "lastName": "Esposito", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "top" + } + ] + }, + { + "id": "106300533256999014", + "slug": "starlan-gaming-club", + "name": "Starlan Gaming Club", + "code": "SGC", + "image": "http://static.lolesports.com/teams/BL_SGC-Logo_white.png", + "alternativeImage": "http://static.lolesports.com/teams/BL_SGC-Logo_black.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "106250628606089560", + "summonerName": "Aristo", + "firstName": "Thomas", + "lastName": "Durdu", + "image": "http://static.lolesports.com/players/1687000701713_FTW-ARISTO.png", + "role": "top" + }, + { + "id": "106306486094491831", + "summonerName": "Patate", + "firstName": "Clément ", + "lastName": "Coron", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "jungle" + }, + { + "id": "106306488051946931", + "summonerName": "Water", + "firstName": "Emilien ", + "lastName": "Godeau", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "mid" + }, + { + "id": "106306489510338323", + "summonerName": "Dimeh", + "firstName": "Mehdi ", + "lastName": "Karouay", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "bottom" + }, + { + "id": "106306490811031319", + "summonerName": "Grindyzer", + "firstName": "Bilain ", + "lastName": "Jaber", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "support" + }, + { + "id": "106306491855302843", + "summonerName": "Dunks ARCH", + "firstName": "Julien ", + "lastName": "Pelege", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "top" + }, + { + "id": "106306496487694108", + "summonerName": "Maxx", + "firstName": "Maxime ", + "lastName": "Issa", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "jungle" + }, + { + "id": "106306497731810751", + "summonerName": "Nathell", + "firstName": "Ethan ", + "lastName": "Diaz", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "mid" + }, + { + "id": "106306498821674435", + "summonerName": "Xemon", + "firstName": "Gaël ", + "lastName": "Catino", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "bottom" + }, + { + "id": "106306499987927253", + "summonerName": "Mirai", + "firstName": "Nicolas ", + "lastName": "Virnino", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "support" + } + ] + }, + { + "id": "106301891501674861", + "slug": "pdw", + "name": "PDW", + "code": "PDW", + "image": "http://static.lolesports.com/teams/ULTRALIGA_PDW-Logo1.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "112880372381731252", + "summonerName": "Ben01", + "firstName": "Ben", + "lastName": "Ben", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + } + ] + }, + { + "id": "106302119383559530", + "slug": "galaxy-racer", + "name": "Galaxy Racer", + "code": "GXR", + "image": "http://static.lolesports.com/teams/blobid0.png", + "alternativeImage": "http://static.lolesports.com/teams/blobid0.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "NLC", + "region": "EMEA" + }, + "players": [] + }, + { + "id": "106302593752767294", + "slug": "netshoes-miners-academy", + "name": "Miners Academy", + "code": "NMG", + "image": "http://static.lolesports.com/teams/1653399228994_miners_logo.png", + "alternativeImage": "http://static.lolesports.com/teams/1653399228995_miners_logo.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [] + }, + { + "id": "106334794714373670", + "slug": "goexanimo", + "name": "Goexanimo", + "code": "GOEX", + "image": "http://static.lolesports.com/teams/Goexanimo_GOEX-dark.png", + "alternativeImage": "http://static.lolesports.com/teams/Goexanimo_GOEX-white.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "105786916477059553", + "summonerName": "Ruf", + "firstName": "Rolf", + "lastName": "Hein", + "image": "http://static.lolesports.com/players/placeholder.png", + "role": "mid" + }, + { + "id": "103877915901072133", + "summonerName": "Godux", + "firstName": "Jānis", + "lastName": "Kamergrauzis", + "image": "https://static.lolesports.com/players/download.png", + "role": "top" + }, + { + "id": "103877918499574543", + "summonerName": "HmlssMaster", + "firstName": "Gints", + "lastName": "Gaismiņš", + "image": "https://static.lolesports.com/players/download.png", + "role": "jungle" + }, + { + "id": "105521207356457513", + "summonerName": "Facen", + "firstName": "Jānis", + "lastName": "Lauskis", + "image": "https://static.lolesports.com/players/download.png", + "role": "mid" + }, + { + "id": "103877923901083633", + "summonerName": "Klydex", + "firstName": "Mārtiņš ", + "lastName": "Zālītis", + "image": "https://static.lolesports.com/players/download.png", + "role": "bottom" + }, + { + "id": "103877922435239917", + "summonerName": "bAZZILISKS", + "firstName": "Edgars ", + "lastName": "Salmiņš", + "image": "https://static.lolesports.com/players/download.png", + "role": "support" + }, + { + "id": "106334806906101289", + "summonerName": "medaluslv", + "firstName": "ARNOLDS", + "lastName": "ĶĪVĪTIS", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "top" + } + ] + }, + { + "id": "106334802515490809", + "slug": "wortex", + "name": "Wortex", + "code": "WTX", + "image": "http://static.lolesports.com/teams/Wortex_WTX-logo.png", + "alternativeImage": "http://static.lolesports.com/teams/Wortex_WTX-logo.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "106334808162183130", + "summonerName": "theblindboy", + "firstName": "Edgar Gerhard James", + "lastName": "Trumm", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "top" + }, + { + "id": "105547982562185660", + "summonerName": "Chuffylol", + "firstName": "Rain", + "lastName": "Nõulik", + "image": "https://static.lolesports.com/players/download.png", + "role": "jungle" + }, + { + "id": "105786916477059553", + "summonerName": "Ruf", + "firstName": "Rolf", + "lastName": "Hein", + "image": "http://static.lolesports.com/players/placeholder.png", + "role": "mid" + }, + { + "id": "106334810983311327", + "summonerName": "MrFreezed", + "firstName": "Tom", + "lastName": "Teslon", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "bottom" + }, + { + "id": "105547985275179471", + "summonerName": "Warizar", + "firstName": "Kristjan", + "lastName": "Rikas", + "image": "http://static.lolesports.com/players/1641830692488_placeholder.png", + "role": "support" + }, + { + "id": "106345943361839526", + "summonerName": "Sufleks", + "firstName": "Caspar", + "lastName": "Kodar", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "support" + }, + { + "id": "106499071380285153", + "summonerName": "Teh", + "firstName": "Kevin Henry", + "lastName": "Kindsigo", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "jungle" + }, + { + "id": "105547984402108863", + "summonerName": "Jabuticaba", + "firstName": "Robert", + "lastName": "Pirs", + "image": "https://static.lolesports.com/players/download.png", + "role": "jungle" + } + ] + }, + { + "id": "106371141659311452", + "slug": "valiance-pro-game", + "name": "Valiance PRO GAME", + "code": "VPG", + "image": "http://static.lolesports.com/teams/EBL_VPG-Logo_white.png.png", + "alternativeImage": "http://static.lolesports.com/teams/EBL_VPG-Logo.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "Esports Balkan League", + "region": "EMEA" + }, + "players": [ + { + "id": "110548992846895564", + "summonerName": "kiloxx", + "firstName": "Žiga", + "lastName": "Šetrajčič", + "image": "http://static.lolesports.com/players/1686843751520_placeholder.png", + "role": "mid" + }, + { + "id": "106371066008890473", + "summonerName": "Boras", + "firstName": "Domagoj", + "lastName": "Boras", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "top" + }, + { + "id": "109697774254218451", + "summonerName": "Komandata", + "firstName": "Kristiyan", + "lastName": "Kanchev", + "image": "http://static.lolesports.com/players/1673855196928_placeholder.png", + "role": "bottom" + }, + { + "id": "102808885106514958", + "summonerName": "meight", + "firstName": "Máté", + "lastName": "Török", + "image": "https://static.lolesports.com/players/download.png", + "role": "none" + }, + { + "id": "107813101196438507", + "summonerName": "Flawlesss", + "firstName": " Andrija", + "lastName": "Ratković", + "image": "http://static.lolesports.com/players/1645097360955_placeholder.png", + "role": "none" + } + ] + }, + { + "id": "106371176555003349", + "slug": "nk-osijek-esport", + "name": "NK Osijek Esport", + "code": "NKOS", + "image": "http://static.lolesports.com/teams/EBL_NKOS-Logo.png", + "alternativeImage": "http://static.lolesports.com/teams/EBL_NKOS-Logo.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Esports Balkan League", + "region": "EMEA" + }, + "players": [ + { + "id": "106371066008890473", + "summonerName": "Boras", + "firstName": "Domagoj", + "lastName": "Boras", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "top" + }, + { + "id": "106371067543665993", + "summonerName": "Fiko", + "firstName": "Filip", + "lastName": "Jovanović", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "jungle" + }, + { + "id": "106371072381533518", + "summonerName": "Feit", + "firstName": "Milan", + "lastName": "Cveticanin", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "mid" + }, + { + "id": "106371073405074718", + "summonerName": "Pitar", + "firstName": "Petar", + "lastName": "Čaleta", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "bottom" + }, + { + "id": "106371074769153147", + "summonerName": "Nedara", + "firstName": "Nikola", + "lastName": "Nedić", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "support" + }, + { + "id": "106371075977505926", + "summonerName": "Alleex", + "firstName": "Aleksandar", + "lastName": "Matic", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "support" + }, + { + "id": "106371077499567443", + "summonerName": "Koxira", + "firstName": "Dominik", + "lastName": "Kecman", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "jungle" + } + ] + }, + { + "id": "106382545123328648", + "slug": "dynamo-eclot", + "name": "Dynamo Eclot", + "code": "DNE", + "image": "http://static.lolesports.com/teams/dynamo-logo-2021.png", + "alternativeImage": "http://static.lolesports.com/teams/dynamo-logo-2021.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "Hitpoint Masters", + "region": "EMEA" + }, + "players": [ + { + "id": "107179663221382254", + "summonerName": "BlackSwan", + "firstName": "René", + "lastName": "Souček", + "image": "http://static.lolesports.com/players/1675799435856_placeholder.png", + "role": "bottom" + }, + { + "id": "110441520929122105", + "summonerName": "Guli", + "firstName": "Igor", + "lastName": "Oblizajek", + "image": "http://static.lolesports.com/players/1685203871697_placeholder.png", + "role": "jungle" + }, + { + "id": "106301968496553164", + "summonerName": "Furby", + "firstName": "Casper", + "lastName": "Sedergren", + "image": "http://static.lolesports.com/players/1739203178521_GNGFurby.png", + "role": "support" + } + ] + }, + { + "id": "106421708401759879", + "slug": "black-star-gaming", + "name": "Black Star Gaming", + "code": "BSGG", + "image": "http://static.lolesports.com/teams/blackstar-gaming-2021-notext.png", + "alternativeImage": "http://static.lolesports.com/teams/blackstar-gaming-2021-notext.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCL", + "region": "COMMONWEALTH OF INDEPENDENT STATES" + }, + "players": [ + { + "id": "107721949665828150", + "summonerName": "SaDJesteRRR", + "firstName": "Evgenii", + "lastName": "Starosvetskii", + "image": "http://static.lolesports.com/players/1644407430104_sadjesterrr_784x621.png", + "role": "none" + }, + { + "id": "105700980971057429", + "summonerName": "Romuka", + "firstName": "Roman ", + "lastName": "Vlasov", + "image": "http://static.lolesports.com/players/1644406941110_Romuka_784x621.png", + "role": "top" + }, + { + "id": "106466536685100550", + "summonerName": "Vakulich", + "firstName": "Vadim", + "lastName": "Vakulich", + "image": "http://static.lolesports.com/players/1644407366403_Vakulich_784x621.png", + "role": "jungle" + }, + { + "id": "106466539059363742", + "summonerName": "Get Lost", + "firstName": "Kirill", + "lastName": "Rybakov", + "image": "http://static.lolesports.com/players/1644407278616_Get_Lost_784x621.png", + "role": "mid" + }, + { + "id": "106466542935818153", + "summonerName": "Kenal", + "firstName": "Michael ", + "lastName": "Karpenko", + "image": "http://static.lolesports.com/players/1644407030168_Kenal_784x621.png", + "role": "bottom" + }, + { + "id": "103963762142221772", + "summonerName": "Jestkui Max", + "firstName": "Maxim", + "lastName": "Filipenko", + "image": "http://static.lolesports.com/players/1644407119139_Max_784x621.png", + "role": "support" + } + ] + }, + { + "id": "106806773698472633", + "slug": "team-aze", + "name": "Team Aze", + "code": "AZE", + "image": "http://static.lolesports.com/teams/1643739781349_AzeBlanco1.png", + "alternativeImage": "http://static.lolesports.com/teams/1643739781349_AzeNegro.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LLA", + "region": "LATIN AMERICA" + }, + "players": [ + { + "id": "100118511917058602", + "summonerName": "Aloned", + "firstName": "Tomas Antonio", + "lastName": "Díaz Valiente", + "image": "http://static.lolesports.com/players/1717437223367_Aloned.png", + "role": "mid" + }, + { + "id": "103495716773682023", + "summonerName": "Ellim", + "firstName": "Ellim", + "lastName": "Choi", + "image": "http://static.lolesports.com/players/1758213097077_ellim.png", + "role": "jungle" + }, + { + "id": "105320659681601631", + "summonerName": "Cheoni", + "firstName": "Seungmo", + "lastName": "Jo", + "image": "http://static.lolesports.com/players/1674825592696_axz_cheoni.png", + "role": "bottom" + }, + { + "id": "99566405793083799", + "summonerName": "Straight", + "firstName": "Roberto", + "lastName": "Guallichico ", + "image": "http://static.lolesports.com/players/1643048065147_Straight-4.png", + "role": "support" + } + ] + }, + { + "id": "106806779752531762", + "slug": "globant-emerald-team", + "name": "Globant Emerald Team", + "code": "GET", + "image": "http://static.lolesports.com/teams/1629742118863_GET-Black-BG.png", + "alternativeImage": "http://static.lolesports.com/teams/1629742118866_GET-White-BG.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LLA", + "region": "LATIN AMERICA" + }, + "players": [ + { + "id": "99566408330936418", + "summonerName": "Kindless", + "firstName": "Benjamín Ignacio", + "lastName": "Fuenzalida Barrera", + "image": "http://static.lolesports.com/players/1660238618106_EMP.png", + "role": "bottom" + }, + { + "id": "107583616575754570", + "summonerName": "QQMore", + "firstName": "Diego Alonso", + "lastName": "Apablaza Abarzúa", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "jungle" + }, + { + "id": "109676292246175975", + "summonerName": "Marto", + "firstName": "Martin Rafael", + "lastName": "Añaña", + "image": "http://static.lolesports.com/players/1673527405371_placeholder.png", + "role": "jungle" + }, + { + "id": "107684408475648714", + "summonerName": "Iso", + "firstName": "Matias Dario", + "lastName": "Isolani", + "image": "http://static.lolesports.com/players/1643133669456_placeholder.png", + "role": "bottom" + }, + { + "id": "103658626118392139", + "summonerName": "Zerito", + "firstName": "Tomás", + "lastName": "Colángelo", + "image": "http://static.lolesports.com/players/1674669586818_EMP.png", + "role": "top" + } + ] + }, + { + "id": "106827765448944398", + "slug": "dfm-academy", + "name": "DFM Academy", + "code": "DFM", + "image": "http://static.lolesports.com/teams/1686804533828_dfm_logo_white.png", + "alternativeImage": "http://static.lolesports.com/teams/1686804533830_dfm_logo_black.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [] + }, + { + "id": "106827766465356396", + "slug": "tbd-tbd", + "name": "to be deleted", + "code": "DFM", + "image": "http://static.lolesports.com/teams/1630063718385_dfm_512px.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "LJL", + "region": "JAPAN" + }, + "players": [ + { + "id": "100115112811436141", + "summonerName": "MOUZObsess", + "firstName": "Patrick", + "lastName": "Engelmann", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/obsess-gfw2hrdn.png", + "role": "none" + } + ] + }, + { + "id": "106827815539026710", + "slug": "rj-academy", + "name": "RJ Academy", + "code": "RJ", + "image": "http://static.lolesports.com/teams/1630063098996_rj_512px.png", + "alternativeImage": "http://static.lolesports.com/teams/1630063098996_rj_512px.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "105576915272679101", + "summonerName": "Sirotama", + "firstName": "Hikaru", + "lastName": "Kiyonaga", + "image": "http://static.lolesports.com/players/1644905544254_rj_sirotama.png", + "role": "bottom" + }, + { + "id": "106803906751189833", + "summonerName": "Shakespeare", + "firstName": "Miyu", + "lastName": "Otomo", + "image": "http://static.lolesports.com/players/1686138515042_fl_shakespeare.png", + "role": "support" + }, + { + "id": "107635686337740023", + "summonerName": "R1ngoKun", + "firstName": "Shyuto", + "lastName": "Yoshida", + "image": "http://static.lolesports.com/players/1644905446934_rj_r1ngokun.png", + "role": "top" + }, + { + "id": "107635689777265916", + "summonerName": "Tatsu", + "firstName": "Tomomitsu", + "lastName": "Tanaka", + "image": "http://static.lolesports.com/players/1644905583953_rj_tatsu.png", + "role": "jungle" + }, + { + "id": "108553450969769750", + "summonerName": "eguto", + "firstName": "Hayato", + "lastName": "Eguchi", + "image": "http://static.lolesports.com/players/1686137972113_sg_eguto.png", + "role": "mid" + } + ] + }, + { + "id": "106827823550343961", + "slug": "axz-academy", + "name": "AXZ Academy", + "code": "AXZ", + "image": "http://static.lolesports.com/teams/1630063222273_axz_512px.png", + "alternativeImage": "http://static.lolesports.com/teams/1630063222276_axz_512px.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "109682853490267977", + "summonerName": "96NKtaityo", + "firstName": "Takuho", + "lastName": "Yasue", + "image": "http://static.lolesports.com/players/1673627521720_Dammy.png", + "role": "top" + }, + { + "id": "110536777090396446", + "summonerName": "HALdesu", + "firstName": "Haru", + "lastName": "Yamashita", + "image": "http://static.lolesports.com/players/1686657362615_Dammy.png", + "role": "jungle" + }, + { + "id": "110536783764146522", + "summonerName": "kentakki", + "firstName": "Kenta", + "lastName": "Saito", + "image": "http://static.lolesports.com/players/1686657464481_Dammy.png", + "role": "support" + }, + { + "id": "110536796541677893", + "summonerName": "1buki", + "firstName": "Ibuki", + "lastName": "Ichikawa", + "image": "http://static.lolesports.com/players/1686657659451_Dammy.png", + "role": "mid" + }, + { + "id": "110540264433553284", + "summonerName": "evol", + "firstName": "Yori", + "lastName": "Tabuchi", + "image": "http://static.lolesports.com/players/1686710575009_Dammy.png", + "role": "bottom" + } + ] + }, + { + "id": "106827827857159558", + "slug": "v3-academy", + "name": "V3 Academy", + "code": "V3", + "image": "http://static.lolesports.com/teams/1630063288304_v3_512px.png", + "alternativeImage": "http://static.lolesports.com/teams/1630063288306_v3_512px.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "108611982795381397", + "summonerName": "Pinnnk", + "firstName": "Souya", + "lastName": "Koizumi", + "image": "http://static.lolesports.com/players/1657287331425_image.png", + "role": "top" + }, + { + "id": "110535478367289339", + "summonerName": "Brucee", + "firstName": "BRUCE SCOTT", + "lastName": "TORRES NANO", + "image": "http://static.lolesports.com/players/1686637544739_Dammy.png", + "role": "jungle" + }, + { + "id": "108611826180700352", + "summonerName": "Enapon", + "firstName": "Ryosuke", + "lastName": "Noguchi", + "image": "http://static.lolesports.com/players/1657284931118_image.png", + "role": "mid" + }, + { + "id": "107818971114243601", + "summonerName": "L0SER", + "firstName": "Hiroki", + "lastName": "Yanagawa", + "image": "http://static.lolesports.com/players/1645186923679_image.png", + "role": "support" + } + ] + }, + { + "id": "106827832203113865", + "slug": "shg-academy", + "name": "SHG Academy", + "code": "SHG", + "image": "http://static.lolesports.com/teams/1630063354653_shg_512px.png", + "alternativeImage": "http://static.lolesports.com/teams/1630063354656_shg_512px1.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "105755998147832536", + "summonerName": "YellowYoshi", + "firstName": "Yoshiki", + "lastName": "Fujimoto", + "image": "http://static.lolesports.com/players/1747471835082_SHG_YellowYoshi.png", + "role": "top" + }, + { + "id": "104317304448983053", + "summonerName": "kaito", + "firstName": "Kaito", + "lastName": "Mitsufuji", + "image": "http://static.lolesports.com/players/1674829260003_shg_kaito.png", + "role": "mid" + }, + { + "id": "106803926423226143", + "summonerName": "HowLa", + "firstName": "Yuki", + "lastName": "Ishizuka", + "image": "http://static.lolesports.com/players/1713340654131_LJL_Portraits_lolesports_BCT_HOWLA.png", + "role": "bottom" + }, + { + "id": "106820458279578238", + "summonerName": "Charley", + "firstName": "Ryugo", + "lastName": "Nishimura", + "image": "http://static.lolesports.com/players/1713340672234_LJL_Portraits_lolesports_BCT_CHARLEY.png", + "role": "support" + } + ] + }, + { + "id": "106827839261303409", + "slug": "cga-academy", + "name": "CGA Academy", + "code": "CGA", + "image": "http://static.lolesports.com/teams/1686804488030_cga_logo.png", + "alternativeImage": "http://static.lolesports.com/teams/1686804488031_cga_logo.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "110536819719244763", + "summonerName": "Perle", + "firstName": "SEIJU", + "lastName": "TAKASU", + "image": "http://static.lolesports.com/players/1686658013173_Dammy.png", + "role": "top" + }, + { + "id": "110536821680082132", + "summonerName": "Tima", + "firstName": "MANATO", + "lastName": "IWAMI", + "image": "http://static.lolesports.com/players/1686658042909_Dammy.png", + "role": "jungle" + }, + { + "id": "110536823096052962", + "summonerName": "suzuki", + "firstName": "TATSUMI", + "lastName": "SUZUKI", + "image": "http://static.lolesports.com/players/1686658065056_Dammy.png", + "role": "mid" + }, + { + "id": "110536825647942004", + "summonerName": "Tele", + "firstName": "KEIHIRO", + "lastName": "TOKUYAMA", + "image": "http://static.lolesports.com/players/1686658103977_Dammy.png", + "role": "bottom" + }, + { + "id": "110536826999049446", + "summonerName": "Odessa", + "firstName": "IRIYA", + "lastName": "SATOU", + "image": "http://static.lolesports.com/players/1686658124752_Dammy.png", + "role": "support" + } + ] + }, + { + "id": "106827844148688268", + "slug": "sg-academy", + "name": "SG Academy", + "code": "SG", + "image": "http://static.lolesports.com/teams/1686804429134_sg_logo.png", + "alternativeImage": "http://static.lolesports.com/teams/1686804429136_sg_logo.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "106531357917376712", + "summonerName": "Funahwi", + "firstName": "Shou", + "lastName": "Oomura", + "image": "http://static.lolesports.com/players/1686804361416_Dammy.png", + "role": "jungle" + }, + { + "id": "106809071541449757", + "summonerName": "rre", + "firstName": "Kota", + "lastName": "Tamura", + "image": "http://static.lolesports.com/players/1629777086540_darkimage_1.png", + "role": "mid" + }, + { + "id": "106412329213272770", + "summonerName": "chico", + "firstName": "Hibiki", + "lastName": "Yamane", + "image": "http://static.lolesports.com/players/darkimage_1.png", + "role": "bottom" + }, + { + "id": "108611759931551270", + "summonerName": "fonix", + "firstName": "Yuta", + "lastName": "Takasawa", + "image": "http://static.lolesports.com/players/1657283920442_image.png", + "role": "support" + } + ] + }, + { + "id": "106827848618374543", + "slug": "bc-academy", + "name": "BC Academy", + "code": "BC", + "image": "http://static.lolesports.com/teams/1630063604891_bc_512px.png", + "alternativeImage": "http://static.lolesports.com/teams/1630063604894_bc_512px.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "110541316136788001", + "summonerName": "Ussii", + "firstName": "Syoma", + "lastName": "Kii", + "image": "http://static.lolesports.com/players/1686726622622_Dammy.png", + "role": "top" + }, + { + "id": "107635689777265916", + "summonerName": "Tatsu", + "firstName": "Tomomitsu", + "lastName": "Tanaka", + "image": "http://static.lolesports.com/players/1644905583953_rj_tatsu.png", + "role": "jungle" + }, + { + "id": "110541319032037422", + "summonerName": "Yosida", + "firstName": "Kentaro", + "lastName": "Tanaka", + "image": "http://static.lolesports.com/players/1686726667329_Dammy.png", + "role": "mid" + }, + { + "id": "110541320575815956", + "summonerName": "besu", + "firstName": "Takuya", + "lastName": "Takeshima", + "image": "http://static.lolesports.com/players/1686726690515_Dammy.png", + "role": "support" + }, + { + "id": "108611831454049354", + "summonerName": "Sunleaf", + "firstName": "Shuntaro", + "lastName": "Shimane", + "image": "http://static.lolesports.com/players/1657285012459_image.png", + "role": "bottom" + } + ] + }, + { + "id": "106857724782292541", + "slug": "c9-amateur", + "name": "C9 Amateur", + "code": "C9AM", + "image": "http://static.lolesports.com/teams/1630519480451_Cloud9C9-01-FullonDark.png", + "alternativeImage": "http://static.lolesports.com/teams/1630519480453_Cloud9C9-03-FullonLight.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "106857832776248991", + "summonerName": "Speed", + "firstName": "Lawrence", + "lastName": "Harvey Yap", + "image": "http://static.lolesports.com/players/1630521128358_silhouette.png", + "role": "top" + } + ] + }, + { + "id": "106857734387052095", + "slug": "aoe-esports", + "name": "AOE", + "code": "AOEE", + "image": "http://static.lolesports.com/teams/1653465991163_rZ2wRdo.png", + "alternativeImage": "http://static.lolesports.com/teams/1653465991164_rZ2wRdo.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107828217272563683", + "summonerName": "SiddyWiddy", + "firstName": "Siddhant", + "lastName": "Nath", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "jungle" + }, + { + "id": "108369187970806021", + "summonerName": "MooseHater", + "firstName": "Murray", + "lastName": "Austin", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "top" + }, + { + "id": "105504929492494649", + "summonerName": "Nxi", + "firstName": "Xin", + "lastName": "Dinh", + "image": "http://static.lolesports.com/players/silhouette.png", + "role": "jungle" + }, + { + "id": "110734230187809381", + "summonerName": "Cupic", + "firstName": "John", + "lastName": "Lowe", + "image": "http://static.lolesports.com/players/1689670257846_placeholder.png", + "role": "mid" + }, + { + "id": "105504934624551000", + "summonerName": "RoseThorn", + "firstName": "Tae Ho", + "lastName": "Kim", + "image": "http://static.lolesports.com/players/1674833562676_GG_ROSETHORN.png", + "role": "none" + }, + { + "id": "107828129079238914", + "summonerName": "Onat", + "firstName": "Onat", + "lastName": "Karacan", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "mid" + } + ] + }, + { + "id": "106857739520697600", + "slug": "100-next", + "name": "100 Next", + "code": "100X", + "image": "http://static.lolesports.com/teams/1647477401624_1631819887423_100t-2021-worlds.png", + "alternativeImage": "http://static.lolesports.com/teams/1647477401625_1631819887423_100t-2021-worlds.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "105913345271181100", + "summonerName": "Mist", + "firstName": "Zi-Lan", + "lastName": "Lin", + "image": "http://static.lolesports.com/players/silhouette.png", + "role": "none" + } + ] + }, + { + "id": "106857755268998406", + "slug": "resolve", + "name": "Resolve", + "code": "RSV", + "image": "http://static.lolesports.com/teams/1630519946289_resolve-esports-2021.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "99101098205435716", + "summonerName": "winter", + "firstName": "Olivier", + "lastName": "Lapointe", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/winter-j89sdy58.png", + "role": "support" + } + ] + }, + { + "id": "106857761435870473", + "slug": "supernova", + "name": "Supernova", + "code": "SN", + "image": "http://static.lolesports.com/teams/1641603984263_SN.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "NACL", + "region": "NORTH AMERICA" + }, + "players": [ + { + "id": "106857848294045939", + "summonerName": "Sketch", + "firstName": "Brady", + "lastName": "Holmich", + "image": "http://static.lolesports.com/players/1630521364593_silhouette.png", + "role": "none" + }, + { + "id": "110501502211416286", + "summonerName": "Horder", + "firstName": "Chris", + "lastName": "Feng", + "image": "http://static.lolesports.com/players/1686119120459_placeholder.png", + "role": "top" + }, + { + "id": "98926509797315114", + "summonerName": "Dardoch", + "firstName": "Joshua", + "lastName": "Hartnett", + "image": "http://static.lolesports.com/players/dig-dardoch.png", + "role": "jungle" + }, + { + "id": "99101098206728963", + "summonerName": "Ablazeolive", + "firstName": "Nicholas", + "lastName": "Abbott", + "image": "http://static.lolesports.com/players/1674833731086_IMT_ABLAZEOLIVE.png", + "role": "mid" + }, + { + "id": "108359200177346106", + "summonerName": "ScaryJerry", + "firstName": "Leathe", + "lastName": "Jeremiah", + "image": "http://static.lolesports.com/players/1737571940877_SC_LTAMediaDay_DSG-Broadcast_ScaryJerry_049.png", + "role": "bottom" + }, + { + "id": "103478281354850842", + "summonerName": "Breezy", + "firstName": "Brindon", + "lastName": "Keesey", + "image": "http://static.lolesports.com/players/1674831675864_CLG_BREEZY.png", + "role": "support" + }, + { + "id": "106857845200039597", + "summonerName": "Faisal", + "firstName": "Faisal", + "lastName": "Kakar", + "image": "http://static.lolesports.com/players/1630521317937_silhouette.png", + "role": "top" + }, + { + "id": "114928753243345739", + "summonerName": "xRoyal", + "firstName": "Kevin", + "lastName": "Zheng", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "top" + } + ] + }, + { + "id": "106911054856646129", + "slug": "korea-ecea", + "name": "Korea ECEA", + "code": "KOR", + "image": "http://static.lolesports.com/teams/1631333229670_ecealogo.png", + "alternativeImage": "http://static.lolesports.com/teams/1631333229680_ecealogo.png", + "backgroundImage": "http://static.lolesports.com/teams/1631333229687_ecealogo.png", + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "110547865297590237", + "summonerName": "Bonnie", + "firstName": "GWANSU", + "lastName": "LEE", + "image": "http://static.lolesports.com/players/1758212338690_bonnie.png", + "role": "none" + } + ] + }, + { + "id": "106972751203500705", + "slug": "team-impulse", + "name": "Team Impulse", + "code": "TIP", + "image": "http://static.lolesports.com/teams/1632274641864_tip.jpg", + "alternativeImage": "http://static.lolesports.com/teams/1632274641865_tip.jpg", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCS", + "region": "NORTH AMERICA" + }, + "players": [] + }, + { + "id": "106972778172351142", + "slug": "nrg-esports", + "name": "NRG Kia", + "code": "NRG", + "image": "http://static.lolesports.com/teams/1705723539817_NRGKiaWhite1.png", + "alternativeImage": "http://static.lolesports.com/teams/1705722370124_NRGKiaBlack.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCS", + "region": "NORTH AMERICA" + }, + "players": [] + }, + { + "id": "106972784308566040", + "slug": "renegades", + "name": "Renegades", + "code": "REN2", + "image": "http://static.lolesports.com/teams/1632275147625_ren.png", + "alternativeImage": "http://static.lolesports.com/teams/1632275147625_ren.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCS", + "region": "NORTH AMERICA" + }, + "players": [] + }, + { + "id": "107044951062646444", + "slug": "gravity", + "name": "Gravity", + "code": "GV", + "image": "http://static.lolesports.com/teams/1633376327102_Gravity_North_American_Teamlogo_square.png", + "alternativeImage": "http://static.lolesports.com/teams/1633376327103_Gravity_North_American_Teamlogo_square.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCS", + "region": "NORTH AMERICA" + }, + "players": [] + }, + { + "id": "107044955612300225", + "slug": "team-8", + "name": "Team 8", + "code": "T8", + "image": "http://static.lolesports.com/teams/1633376396291_t8.png", + "alternativeImage": "http://static.lolesports.com/teams/1633376396293_t8.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCS", + "region": "NORTH AMERICA" + }, + "players": [] + }, + { + "id": "107044965163896500", + "slug": "team-coast", + "name": "Team Coast", + "code": "CST", + "image": "http://static.lolesports.com/teams/1633376542614_COAST.png", + "alternativeImage": "http://static.lolesports.com/teams/1633376542615_COAST.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCS", + "region": "NORTH AMERICA" + }, + "players": [] + }, + { + "id": "107044968545881783", + "slug": "winterfox", + "name": "Winterfox", + "code": "WFX", + "image": "http://static.lolesports.com/teams/1633376593408_Winterfox_Logo_Update.png", + "alternativeImage": "http://static.lolesports.com/teams/1633376593410_Winterfox_Logo_Update.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCS", + "region": "NORTH AMERICA" + }, + "players": [] + }, + { + "id": "107067065368380132", + "slug": "wild-panther-esports", + "name": "Wild Panthers Esports", + "code": "WPE", + "image": "http://static.lolesports.com/teams/1673905019200_WPE.png", + "alternativeImage": "http://static.lolesports.com/teams/1673905019202_WPE.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Hellenic Legends League", + "region": "EMEA" + }, + "players": [ + { + "id": "105521350435790211", + "summonerName": "Psilakhs", + "firstName": "Aggelos", + "lastName": "Lolos", + "image": "http://static.lolesports.com/players/pobrane2.png", + "role": "jungle" + }, + { + "id": "105548593156776442", + "summonerName": "Libra", + "firstName": "Emre Ercan", + "lastName": "Güler", + "image": "http://static.lolesports.com/players/eSports_male_NoPlayer.png", + "role": "top" + }, + { + "id": "104711227672883806", + "summonerName": "Heroic", + "firstName": "Francisco", + "lastName": "Ribeiro", + "image": "http://static.lolesports.com/players/1687001070525_GTZ_HEROIC.png", + "role": "mid" + }, + { + "id": "107722015948711900", + "summonerName": "ardaffler", + "firstName": "Alexander", + "lastName": "Bogatkov", + "image": "http://static.lolesports.com/players/1753918257568_ardafflerrdy.png", + "role": "bottom" + }, + { + "id": "111770581129679962", + "summonerName": "Edvard", + "firstName": "Gard", + "lastName": "Myhr", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "111719451499962580", + "summonerName": "MEHRIO", + "firstName": "MARIOS", + "lastName": "KOURETA", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "107105626021862371", + "summonerName": "Tziz", + "firstName": "Mathias ", + "lastName": "Lorétan", + "image": "https://static.lolesports.com/players/download.png", + "role": "mid" + } + ] + }, + { + "id": "107067095500559682", + "slug": "zerolag-academy", + "name": "Zerolag Academy", + "code": "ZRLA", + "image": "http://static.lolesports.com/teams/1633714223204_zrla.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107065249722597709", + "summonerName": "H1ghPresure", + "firstName": "H1ghPresure", + "lastName": "H1ghPresure", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "106297383638472194", + "summonerName": "sheefto", + "firstName": "Paweł", + "lastName": "Miozga", + "image": "http://static.lolesports.com/players/1633689277595_silhouette.png", + "role": "none" + }, + { + "id": "107065250486391684", + "summonerName": "Billus", + "firstName": "Billus", + "lastName": "Billus", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107065250690812129", + "summonerName": "Crystalerr", + "firstName": "Crystalerr", + "lastName": "Crystalerr", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107217825668012094", + "summonerName": "AgesAmin", + "firstName": "Alexandros", + "lastName": "Mpolofis", + "image": "http://static.lolesports.com/players/1636014182831_placeholder.jpg", + "role": "support" + } + ] + }, + { + "id": "107067113573319473", + "slug": "kroivance-esport-club", + "name": "Kroivance Esport Club", + "code": "KEC", + "image": "http://static.lolesports.com/teams/1633714500021_images.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107065251657009381", + "summonerName": "LagMyFace", + "firstName": "LagMyFace", + "lastName": "LagMyFace", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107065251967046548", + "summonerName": "Lyden", + "firstName": "Lyden", + "lastName": "Lyden", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107065252087908585", + "summonerName": "Cosme", + "firstName": "Cosme", + "lastName": "Cosme", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107065252222140765", + "summonerName": "Ololhs", + "firstName": "Ololhs", + "lastName": "Ololhs", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107065252316367085", + "summonerName": "Centulion", + "firstName": "Centulion", + "lastName": "Centulion", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107065252405889265", + "summonerName": "BeYovd", + "firstName": "BeYovd", + "lastName": "BeYovd", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107065252492855541", + "summonerName": "RySe", + "firstName": "RySe", + "lastName": "RySe", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + } + ] + }, + { + "id": "107067121074686667", + "slug": "kroivance-esport-club", + "name": "Kroivance Esport Club", + "code": "KCE", + "image": "http://static.lolesports.com/teams/1633714613283_images.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107065251657009381", + "summonerName": "LagMyFace", + "firstName": "LagMyFace", + "lastName": "LagMyFace", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107065251967046548", + "summonerName": "Lyden", + "firstName": "Lyden", + "lastName": "Lyden", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107065251808280921", + "summonerName": "Norwegian", + "firstName": "Matthieu", + "lastName": "Sauvage", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107065252087908585", + "summonerName": "Cosme", + "firstName": "Cosme", + "lastName": "Cosme", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107065252222140765", + "summonerName": "Ololhs", + "firstName": "Ololhs", + "lastName": "Ololhs", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107065252316367085", + "summonerName": "Centulion", + "firstName": "Centulion", + "lastName": "Centulion", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107065252405889265", + "summonerName": "BeYovd", + "firstName": "BeYovd", + "lastName": "BeYovd", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107065252492855541", + "summonerName": "RySe", + "firstName": "RySe", + "lastName": "RySe", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107065252624138593", + "summonerName": "Ludigite", + "firstName": " Théo", + "lastName": "Schirmann", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107065252890055576", + "summonerName": "Banned IRL", + "firstName": "Panagiotis", + "lastName": "Saltidis", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + } + ] + }, + { + "id": "107067134300703472", + "slug": "team-phantasma-community", + "name": "Team Phantasma Community", + "code": "TPC", + "image": "http://static.lolesports.com/teams/1633714815021_TPC.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107065253386453349", + "summonerName": "Ragnar", + "firstName": "Ragnar", + "lastName": "Ragnar", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107065253527524252", + "summonerName": "GVR8", + "firstName": "GVR8", + "lastName": "GVR8", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107116088678682259", + "summonerName": "Azazel", + "firstName": "Christos", + "lastName": "Spiropoulos", + "image": "https://static.lolesports.com/players/download.png", + "role": "mid" + } + ] + }, + { + "id": "107067134707406206", + "slug": "team-phantasma-community", + "name": "Team Phantasma Community", + "code": "TPC", + "image": "http://static.lolesports.com/teams/1633714822399_TPC.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "107065252890055576", + "summonerName": "Banned IRL", + "firstName": "Panagiotis", + "lastName": "Saltidis", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "106312638703104859", + "summonerName": "Alba", + "firstName": "Hugo", + "lastName": "Canteiro", + "image": "http://static.lolesports.com/players/1633712193476_silhouette.png", + "role": "none" + }, + { + "id": "105647895096351401", + "summonerName": "Vasekfel", + "firstName": "Václav", + "lastName": "Felcman", + "image": "http://static.lolesports.com/players/download.png", + "role": "none" + }, + { + "id": "107065253176002809", + "summonerName": "Unkn0wn5", + "firstName": "Paris", + "lastName": "Fragkos", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107065253279287549", + "summonerName": "Bawsi", + "firstName": "Georgios", + "lastName": "Mpousias", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107065253386453349", + "summonerName": "Ragnar", + "firstName": "Ragnar", + "lastName": "Ragnar", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107065253527524252", + "summonerName": "GVR8", + "firstName": "GVR8", + "lastName": "GVR8", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107065253733124353", + "summonerName": "Infe", + "firstName": "Jorgo", + "lastName": "Dhimojani", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + } + ] + }, + { + "id": "107067191804545854", + "slug": "to-army", + "name": "To Army", + "code": "ARMY", + "image": "http://static.lolesports.com/teams/1633715693037_lolesports.png", + "alternativeImage": "http://static.lolesports.com/teams/1633715693039_lolesports.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107065255205770152", + "summonerName": "Elitex", + "firstName": "Nikos", + "lastName": "Aspropotamitis", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "105521208333206060", + "summonerName": "Amino", + "firstName": "Panagiotis", + "lastName": "Logothetis", + "image": "http://static.lolesports.com/players/1633689787541_silhouette.png", + "role": "none" + }, + { + "id": "107065255401788332", + "summonerName": "Raigos", + "firstName": "Orfeas", + "lastName": "Tasopoulos", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107065255501992880", + "summonerName": "HappyButSad", + "firstName": "HappyButSad", + "lastName": "HappyButSad", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107065255602787252", + "summonerName": "Whoami", + "firstName": "Whoami", + "lastName": "Whoami", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107065255717161229", + "summonerName": "Ch", + "firstName": "Ch", + "lastName": "Ch", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107065255813944248", + "summonerName": "Alexcyp", + "firstName": "Alexcyp", + "lastName": "Alexcyp", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "106297395575089836", + "summonerName": "Alvanai", + "firstName": "Giannis", + "lastName": "Hasanai", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "mid" + } + ] + }, + { + "id": "107067201935311790", + "slug": "visualperception-esports", + "name": "VisualPerception Esports", + "code": "VPE", + "image": "http://static.lolesports.com/teams/1634676600908_VP.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "108645106539379847", + "summonerName": "Immersive", + "firstName": "Kosmas", + "lastName": "Papadopoulos", + "image": "http://static.lolesports.com/players/1657792761154_placeholder.png", + "role": "jungle" + }, + { + "id": "108397470486362623", + "summonerName": "Visible", + "firstName": "Kostidis", + "lastName": "Christos", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "jungle" + } + ] + }, + { + "id": "107067211908580301", + "slug": "pentagon-maze-esports", + "name": "Pentagon Maze Esports", + "code": "PM", + "image": "http://static.lolesports.com/teams/1633715999126_lolesports.png", + "alternativeImage": "http://static.lolesports.com/teams/1633715999128_lolesports.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "108397468735448070", + "summonerName": "Fitty", + "firstName": "Parikoglou", + "lastName": "Nikolaos", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "jungle" + }, + { + "id": "108397468829049690", + "summonerName": "WildRabbit", + "firstName": "Yankov", + "lastName": "Todor", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "bottom" + }, + { + "id": "107065253733124353", + "summonerName": "Infe", + "firstName": "Jorgo", + "lastName": "Dhimojani", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "top" + }, + { + "id": "108475358582889917", + "summonerName": "Sickdy", + "firstName": "Sotiris", + "lastName": "Aggelopoulos", + "image": "http://static.lolesports.com/players/1655202614047_placeholder.png", + "role": "bottom" + }, + { + "id": "108515214235887489", + "summonerName": "Za3blawy", + "firstName": "Karim", + "lastName": "Elsayed", + "image": "http://static.lolesports.com/players/1655810761523_placeholder.png", + "role": "jungle" + } + ] + }, + { + "id": "107078318095322038", + "slug": "anorthosis-esports-revolution", + "name": "Anorthosis Esports Revolution ", + "code": "1911", + "image": "http://static.lolesports.com/teams/1633885466456_download5.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Hellenic Legends League", + "region": "EMEA" + }, + "players": [ + { + "id": "105521206494223573", + "summonerName": "Dandriel", + "firstName": "Daniel", + "lastName": "Paukku", + "image": "https://static.lolesports.com/players/download.png", + "role": "jungle" + }, + { + "id": "107186949486979206", + "summonerName": "Padelius", + "firstName": "Pantelis", + "lastName": "Xatzitheodorou", + "image": "http://static.lolesports.com/players/1635543049075_pobrane3.png", + "role": "bottom" + }, + { + "id": "106297437266974349", + "summonerName": "Soap", + "firstName": "Konstantinos", + "lastName": "Andreadis", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "support" + }, + { + "id": "107065247001069756", + "summonerName": "RektLess", + "firstName": "Stavros", + "lastName": "Tzaneris", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "104872987676362425", + "summonerName": "Mo1", + "firstName": "JIN", + "lastName": "MO", + "image": "http://static.lolesports.com/players/1633712840481_silhouette.png", + "role": "none" + }, + { + "id": "106250717429127641", + "summonerName": "Rigas", + "firstName": "Rigas", + "lastName": "Papadopoulos", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "none" + }, + { + "id": "107065247325459304", + "summonerName": "AIRFLARE", + "firstName": "AIRFLARE", + "lastName": "AIRFLARE", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107065247433410752", + "summonerName": "L1l1th", + "firstName": "L1l1th", + "lastName": "L1l1th", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107065247538610484", + "summonerName": "Mvou", + "firstName": "Mvou", + "lastName": "Mvou", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107128057923084736", + "summonerName": "Lowzy", + "firstName": "Giorgos", + "lastName": "Ntoulo", + "image": "http://static.lolesports.com/players/1634644436389_placeholder.jpg", + "role": "support" + } + ] + }, + { + "id": "107098989477038445", + "slug": "austrian-force", + "name": "Austrian Force", + "code": "AFF", + "image": "http://static.lolesports.com/teams/1642145552733_AustrianForce.png", + "alternativeImage": "http://static.lolesports.com/teams/1642145552735_AustrianForce.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "108401720458815144", + "summonerName": "Zero Impact", + "firstName": "Julian", + "lastName": "Laux", + "image": "http://static.lolesports.com/players/1654078983848_placeholder.png", + "role": "jungle" + }, + { + "id": "108401732361135788", + "summonerName": "Buddy", + "firstName": "Manuel", + "lastName": "Steiner", + "image": "http://static.lolesports.com/players/1654079165790_placeholder.png", + "role": "support" + }, + { + "id": "108401735726777567", + "summonerName": "TeaLeaf", + "firstName": "Alexander", + "lastName": "Zschernitz", + "image": "http://static.lolesports.com/players/1654079216596_placeholder.png", + "role": "none" + }, + { + "id": "107643554035531477", + "summonerName": "Valkyr1e", + "firstName": "Alexander", + "lastName": "Bachmann", + "image": "http://static.lolesports.com/players/1642510281580_placeholder.png", + "role": "top" + } + ] + }, + { + "id": "107110686951738484", + "slug": "esports-empire", + "name": "Esports Empire", + "code": "EEL", + "image": "http://static.lolesports.com/teams/1634379374001_Esport_Empirelogo_square.png", + "alternativeImage": "http://static.lolesports.com/teams/1634379374003_Esport_Empirelogo_square.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "108617184757425418", + "summonerName": "Creon2", + "firstName": "Riccardo", + "lastName": "Santarelli", + "image": "https://static.lolesports.com/players/download.png", + "role": "bottom" + }, + { + "id": "108617181773969817", + "summonerName": "Bananiasty", + "firstName": "Jakub", + "lastName": "Banasiak", + "image": "https://static.lolesports.com/players/download.png", + "role": "jungle" + }, + { + "id": "108617179412667262", + "summonerName": "Pes3", + "firstName": "Mattia", + "lastName": "Pesenti", + "image": "https://static.lolesports.com/players/download.png", + "role": "top" + }, + { + "id": "103935367169076550", + "summonerName": "Lmzs", + "firstName": "Iliya ", + "lastName": "Rajgev", + "image": "https://static.lolesports.com/players/download.png", + "role": "mid" + }, + { + "id": "106306526029050111", + "summonerName": "Fenz1", + "firstName": "Lachezar ", + "lastName": "Iliev", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "mid" + }, + { + "id": "106301604423127167", + "summonerName": "Gama", + "firstName": "Mauro", + "lastName": "Bruno", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "bottom" + }, + { + "id": "105537001537910115", + "summonerName": "Paradox", + "firstName": "Federico", + "lastName": "Princiotta Cariddi", + "image": "https://static.lolesports.com/players/download.png", + "role": "support" + }, + { + "id": "107614611505640201", + "summonerName": "Sandolas", + "firstName": "Filippo", + "lastName": "Laghi", + "image": "http://static.lolesports.com/players/1642068651164_placeholder.png", + "role": "bottom" + } + ] + }, + { + "id": "107110691234159963", + "slug": "esports-empire-archived", + "name": "Esports Empire (Archived)", + "code": "EEM", + "image": "http://static.lolesports.com/teams/1634379439728_Esport_Empirelogo_square.png", + "alternativeImage": "http://static.lolesports.com/teams/1634379439729_Esport_Empirelogo_square.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "107105623720382721", + "summonerName": "Dream Maker", + "firstName": "Ivan ", + "lastName": "Chiodo", + "image": "http://static.lolesports.com/players/1677689184994_placeholder.png", + "role": "mid" + }, + { + "id": "107105624724736547", + "summonerName": "Berto", + "firstName": "Filippo ", + "lastName": "Bertozzi", + "image": "https://static.lolesports.com/players/download.png", + "role": "bottom" + }, + { + "id": "102787200071402190", + "summonerName": "Khema", + "firstName": "Emanuele", + "lastName": "Conti", + "image": "https://static.lolesports.com/players/download.png", + "role": "jungle" + }, + { + "id": "107105626021862371", + "summonerName": "Tziz", + "firstName": "Mathias ", + "lastName": "Lorétan", + "image": "https://static.lolesports.com/players/download.png", + "role": "mid" + } + ] + }, + { + "id": "107110712778558598", + "slug": "baecon", + "name": "Baecon", + "code": "BAE", + "image": "http://static.lolesports.com/teams/1634379767847_Baecon_Gaming_Group_2020_allmode.png", + "alternativeImage": "http://static.lolesports.com/teams/1634379767849_Baecon_Gaming_Group_2020_allmode.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "100115112811436141", + "summonerName": "MOUZObsess", + "firstName": "Patrick", + "lastName": "Engelmann", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/obsess-gfw2hrdn.png", + "role": "none" + } + ] + }, + { + "id": "107125044350591316", + "slug": "epik-gamer", + "name": "EPIK Gamer", + "code": "EPIK", + "image": "http://static.lolesports.com/teams/1634598453664_EPIKdark.webp", + "alternativeImage": "http://static.lolesports.com/teams/1634598453664_epik.png", + "backgroundImage": "http://static.lolesports.com/teams/1634598453665_epik.png", + "status": "archived", + "homeLeague": { + "name": "Worlds", + "region": "INTERNATIONAL" + }, + "players": [] + }, + { + "id": "107125045186188951", + "slug": "epik-gamer", + "name": "EPIK Gamer", + "code": "EPIK", + "image": "http://static.lolesports.com/teams/1634598564645_EPIKdark.webp", + "alternativeImage": "http://static.lolesports.com/teams/1634598564645_epik.png", + "backgroundImage": "http://static.lolesports.com/teams/1634598564646_epik.png", + "status": "active", + "homeLeague": { + "name": "Worlds", + "region": "INTERNATIONAL" + }, + "players": [] + }, + { + "id": "107125058951160151", + "slug": "team-gamedde", + "name": "Team GAMED.DE", + "code": "GDE", + "image": "http://static.lolesports.com/teams/1634598676613_GDEdark.png", + "alternativeImage": "http://static.lolesports.com/teams/1634598676614_GDElight.jpg", + "backgroundImage": "http://static.lolesports.com/teams/1634598676616_GDElight.jpg", + "status": "active", + "homeLeague": { + "name": "Worlds", + "region": "INTERNATIONAL" + }, + "players": [] + }, + { + "id": "107125070345408946", + "slug": "against-all-authority", + "name": "against All authority", + "code": "AAA", + "image": "http://static.lolesports.com/teams/1634598848765_AAA.png", + "alternativeImage": "http://static.lolesports.com/teams/1634598848769_AAA.png", + "backgroundImage": "http://static.lolesports.com/teams/1634598848770_AAA.png", + "status": "active", + "homeLeague": { + "name": "Worlds", + "region": "INTERNATIONAL" + }, + "players": [] + }, + { + "id": "107125080370975157", + "slug": "pacific-esports", + "name": "Pacific eSports", + "code": "PCFC", + "image": "http://static.lolesports.com/teams/1634599002906_PCFCDark.png", + "alternativeImage": "http://static.lolesports.com/teams/1634599002908_pcfc.png", + "backgroundImage": "http://static.lolesports.com/teams/1634599002909_pcfc.png", + "status": "active", + "homeLeague": { + "name": "Worlds", + "region": "INTERNATIONAL" + }, + "players": [] + }, + { + "id": "107125087138652506", + "slug": "xan", + "name": "Xan", + "code": "XAN", + "image": "http://static.lolesports.com/teams/1634599106405_lolesportsdark.png", + "alternativeImage": "http://static.lolesports.com/teams/1634599106407_lolesportslight.png", + "backgroundImage": "http://static.lolesports.com/teams/1634599106410_lolesportslight.png", + "status": "active", + "homeLeague": { + "name": "Worlds", + "region": "INTERNATIONAL" + }, + "players": [] + }, + { + "id": "107127848667881875", + "slug": "falleos-angels", + "name": "Falleo's Angels", + "code": "FAA", + "image": "http://static.lolesports.com/teams/1634641243030_FA-Logo_Dark.png", + "alternativeImage": "http://static.lolesports.com/teams/1634641243031_FA-Logo_Dark.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "SuperLiga", + "region": "EMEA" + }, + "players": [ + { + "id": "107127290425431751", + "summonerName": "Falleo", + "firstName": "Karlo ", + "lastName": "Kovačić", + "image": "http://static.lolesports.com/players/1634632724649_placeholder.jpg", + "role": "top" + }, + { + "id": "103935290409437970", + "summonerName": "WidowMaker", + "firstName": "Iyán ", + "lastName": "Fernández", + "image": "https://static.lolesports.com/players/download.png", + "role": "jungle" + }, + { + "id": "105519812395588370", + "summonerName": "Silk", + "firstName": "Ivan", + "lastName": "Gantsyuk Korol", + "image": "http://static.lolesports.com/players/1644409493753_Silk.png", + "role": "mid" + }, + { + "id": "105537497177165376", + "summonerName": "Viketox", + "firstName": "Victor", + "lastName": "Navarro Ramos", + "image": "https://static.lolesports.com/players/download.png", + "role": "support" + } + ] + }, + { + "id": "107128093558481418", + "slug": "zennit-gaming", + "name": "ZennIT", + "code": "ZNT", + "image": "http://static.lolesports.com/teams/1671442841824_ZennIT.png", + "alternativeImage": "http://static.lolesports.com/teams/1671442841825_ZennIT.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Road of Legends", + "region": "EMEA" + }, + "players": [ + { + "id": "110467144044264674", + "summonerName": "Whip", + "firstName": "Mateo ", + "lastName": "Ropero", + "image": "http://static.lolesports.com/players/1685594847877_placeholder.png", + "role": "top" + }, + { + "id": "107693484400882014", + "summonerName": "shibi", + "firstName": "Jakub", + "lastName": "Przybylski", + "image": "http://static.lolesports.com/players/1643272158809_placeholder.png", + "role": "jungle" + }, + { + "id": "110494684110133175", + "summonerName": "J3rkie", + "firstName": "Erik", + "lastName": "Polák", + "image": "http://static.lolesports.com/players/1686015074901_silhouette_transparent.png", + "role": "support" + }, + { + "id": "105593168057325647", + "summonerName": "Defflok", + "firstName": "Michal", + "lastName": "Kratochvíla", + "image": "http://static.lolesports.com/players/placeholder_.jpg", + "role": "none" + }, + { + "id": "113873106896144911", + "summonerName": "Bcan", + "firstName": "Bcan", + "lastName": "Kasoglu", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "114172531231543287", + "summonerName": "Evangelyne", + "firstName": "Sauvage", + "lastName": "Pierre", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "bottom" + } + ] + }, + { + "id": "107133963320431195", + "slug": "teamorangegaming", + "name": "TeamOrangeGaming", + "code": "TOG", + "image": "http://static.lolesports.com/teams/1758889281207_TOG.png", + "alternativeImage": "http://static.lolesports.com/teams/1758889281207_TOG.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Prime League", + "region": "EMEA" + }, + "players": [ + { + "id": "107564389969852840", + "summonerName": "Smurfe", + "firstName": "Felix", + "lastName": "Rivedal Hylleseth", + "image": "http://static.lolesports.com/players/1641302138776_placeholder.png", + "role": "top" + }, + { + "id": "105536930572842229", + "summonerName": "Cboi", + "firstName": "Casper Bo", + "lastName": "Simonsen", + "image": "https://static.lolesports.com/players/download.png", + "role": "jungle" + }, + { + "id": "106301975219458494", + "summonerName": "Six10", + "firstName": "Sixten", + "lastName": "Hull", + "image": "http://static.lolesports.com/players/godsent-sixten-lol.png", + "role": "mid" + }, + { + "id": "103935361633728922", + "summonerName": "Vzz", + "firstName": "Teodor ", + "lastName": "Cholakov", + "image": "https://static.lolesports.com/players/download.png", + "role": "bottom" + }, + { + "id": "106302928316952346", + "summonerName": "Infoneral", + "firstName": "Radoslav ", + "lastName": "Georgiev", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "support" + } + ] + }, + { + "id": "107135288413116276", + "slug": "taipei-assassins", + "name": "Taipei Assassins", + "code": "TPA", + "image": "http://static.lolesports.com/teams/1634754762339_Taipei_Assassinslogo_square.png", + "alternativeImage": "http://static.lolesports.com/teams/1634754762339_Taipei_Assassinslogo_square.png", + "backgroundImage": "http://static.lolesports.com/teams/1634754762340_Taipei_Assassinslogo_square.png", + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "107135349592625778", + "slug": "azubu-frost", + "name": "Azubu Frost", + "code": "AZF", + "image": "http://static.lolesports.com/teams/1669820647966_Azubu_Frostlogo_square.png", + "alternativeImage": "http://static.lolesports.com/teams/1669820647967_Azubu_Frostlogo_square.png", + "backgroundImage": "http://static.lolesports.com/teams/1634755698779_Azubu_Frost_Logo.jpg", + "status": "active", + "homeLeague": { + "name": "LCK", + "region": "KOREA" + }, + "players": [] + }, + { + "id": "107135395445135226", + "slug": "moscow-five", + "name": "Moscow Five", + "code": "M5", + "image": "http://static.lolesports.com/teams/1634756398783_Moscow_Fivelogo_square.png", + "alternativeImage": "http://static.lolesports.com/teams/1634756398784_Moscow_Fivelogo_square.png", + "backgroundImage": "http://static.lolesports.com/teams/1634756398785_Moscow_Fivelogo_square.png", + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "107135463802591101", + "slug": "moscow-five", + "name": "Moscow Five", + "code": "M5", + "image": "http://static.lolesports.com/teams/1634757441088_Moscow_Fivelogo_square.png", + "alternativeImage": "http://static.lolesports.com/teams/1634757441088_Moscow_Fivelogo_square.png", + "backgroundImage": "http://static.lolesports.com/teams/1634757441090_Moscow_Fivelogo_square.png", + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "107135737190326977", + "slug": "counter-logic-gaming-europe", + "name": "Counter Logic Gaming Europe", + "code": "CLG EU", + "image": "http://static.lolesports.com/teams/1634761612113_CLG_Europelogo_square.png", + "alternativeImage": "http://static.lolesports.com/teams/1634761612113_CLG_Europelogo_square.png", + "backgroundImage": "http://static.lolesports.com/teams/1634761612114_CLG_Europelogo_square.png", + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "107135747935244917", + "slug": "najin-black-sword", + "name": "NaJin Black Sword", + "code": "NBSW", + "image": "http://static.lolesports.com/teams/1669838305409_NaJin_Black_Swordlogo_square.png", + "alternativeImage": "http://static.lolesports.com/teams/1669838305411_NaJin_Black_Swordlogo_square.png", + "backgroundImage": "http://static.lolesports.com/teams/1669838305411_NaJin_Black_Swordlogo_square.png", + "status": "active", + "homeLeague": { + "name": "LCK", + "region": "KOREA" + }, + "players": [] + }, + { + "id": "107135771760187266", + "slug": "saigon-jokers", + "name": "Saigon Jokers", + "code": "SAJ", + "image": "http://static.lolesports.com/teams/1634762139902_Saigon_Jokerslogo_square.png", + "alternativeImage": "http://static.lolesports.com/teams/1634762139902_Saigon_Jokerslogo_square.png", + "backgroundImage": "http://static.lolesports.com/teams/1634762139903_Saigon_Jokerslogo_square.png", + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "107135794822161092", + "slug": "saigon-jokers", + "name": "Saigon Jokers", + "code": "SAJ", + "image": "http://static.lolesports.com/teams/1634762492701_Saigon_Jokerslogo_square.png", + "alternativeImage": "http://static.lolesports.com/teams/1634762492701_Saigon_Jokerslogo_square.png", + "backgroundImage": "http://static.lolesports.com/teams/1634762492702_Saigon_Jokerslogo_square.png", + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "107156481620157383", + "slug": "elo-turysci", + "name": "elo turyści", + "code": "ELO", + "image": "http://static.lolesports.com/teams/1635078144826_1500_ELO_COLOR.png", + "alternativeImage": "http://static.lolesports.com/teams/1635078144829_1500_ELO_COLOR.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "105537226684992853", + "summonerName": "Sater", + "firstName": "Bartosz", + "lastName": "Szabliński", + "image": "https://static.lolesports.com/players/download.png", + "role": "top" + }, + { + "id": "107156515468204194", + "summonerName": "Greg House", + "firstName": "Soren", + "lastName": "Kroon", + "image": "http://static.lolesports.com/players/1635078662985_placeholder.jpg", + "role": "bottom" + }, + { + "id": "107156518964433774", + "summonerName": "Kaseko", + "firstName": "Konrad", + "lastName": "Szewczak", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "107156521353861287", + "summonerName": "Koti", + "firstName": "Ania", + "lastName": "Potykus", + "image": "http://static.lolesports.com/players/1635078752042_placeholder.jpg", + "role": "none" + } + ] + }, + { + "id": "107156487727850442", + "slug": "piratesports", + "name": "piratesports", + "code": "ARR", + "image": "http://static.lolesports.com/teams/1635078238971_1500_ARR_COLOR-2.png", + "alternativeImage": "http://static.lolesports.com/teams/1635078238972_1500_ARR_COLOR-2.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "108600621129046093", + "summonerName": "Gymrat", + "firstName": "Bartosz", + "lastName": "Dąbrowski", + "image": "http://static.lolesports.com/players/1657113968531_placeholder.png", + "role": "top" + }, + { + "id": "108353503599658675", + "summonerName": "Arcziks", + "firstName": "Szymczak", + "lastName": "Artur", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "top" + }, + { + "id": "108353653415810344", + "summonerName": "SaIami", + "firstName": "Jakub", + "lastName": "Wójtowicz", + "image": "http://static.lolesports.com/players/1653345540530_silhouette_transparent1.png", + "role": "bottom" + } + ] + }, + { + "id": "107156490138461133", + "slug": "dragon-enjoyers", + "name": "Dragon Enjoyers", + "code": "PET", + "image": "http://static.lolesports.com/teams/1635078276792_1500_PET_COLOR.png", + "alternativeImage": "http://static.lolesports.com/teams/1635078276793_1500_PET_COLOR.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "105530887205925177", + "summonerName": "sheru", + "firstName": "Dawid", + "lastName": "Wojewoda", + "image": "http://static.lolesports.com/players/1671446916665_placeholder.png", + "role": "top" + }, + { + "id": "107156534700595378", + "summonerName": "Witek", + "firstName": "Wiktor", + "lastName": "Dzęgiel", + "image": "http://static.lolesports.com/players/1635078956265_placeholder.jpg", + "role": "jungle" + }, + { + "id": "107156539599463410", + "summonerName": "GEPARDD", + "firstName": "Jakub", + "lastName": "Kowasz", + "image": "http://static.lolesports.com/players/1635079030984_placeholder.jpg", + "role": "support" + }, + { + "id": "107156541013285046", + "summonerName": "TOXICNESS", + "firstName": "Kacper", + "lastName": "Helak", + "image": "http://static.lolesports.com/players/1635079052709_placeholder.jpg", + "role": "none" + } + ] + }, + { + "id": "107156493180314576", + "slug": "kopniecie", + "name": "Kopnięcie", + "code": "KO", + "image": "http://static.lolesports.com/teams/1635078322846_1500_KO_COLOR.png", + "alternativeImage": "http://static.lolesports.com/teams/1635078322848_1500_KO_COLOR.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107156550104294396", + "summonerName": "Jacob0", + "firstName": "Jakub", + "lastName": "Przewoźniczuk", + "image": "http://static.lolesports.com/players/1635079190273_placeholder.jpg", + "role": "bottom" + }, + { + "id": "105531044321878899", + "summonerName": "Adii", + "firstName": "Adrian", + "lastName": "Jackowski", + "image": "https://static.lolesports.com/players/download.png", + "role": "none" + } + ] + }, + { + "id": "107156495266994335", + "slug": "ricardo-and-friends", + "name": "Ricardo and Friends", + "code": "RNF", + "image": "http://static.lolesports.com/teams/1635078354956_1500_RNF_COLOR.png", + "alternativeImage": "http://static.lolesports.com/teams/1635078354957_1500_RNF_COLOR.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "107157551094568043", + "slug": "esport-academy", + "name": "Esport Academy ", + "code": "EAC", + "image": "http://static.lolesports.com/teams/1635094464398_placeholder.jpg", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Hitpoint Masters", + "region": "EMEA" + }, + "players": [ + { + "id": "107151348143166207", + "summonerName": "Penniey", + "firstName": "Hugo", + "lastName": "Lundell", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "jungle" + } + ] + }, + { + "id": "107157617353546290", + "slug": "stopwatch", + "name": "Stopwatch", + "code": "STW", + "image": "http://static.lolesports.com/teams/1675063743305_SW_transp.png", + "alternativeImage": "http://static.lolesports.com/teams/1675063743307_SW_transp.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "110494606081808479", + "summonerName": "Monkeking", + "firstName": "Adam", + "lastName": "Vakoč", + "image": "http://static.lolesports.com/players/1686013884168_silhouette_transparent.png", + "role": "jungle" + }, + { + "id": "110494616060672772", + "summonerName": "Shinn", + "firstName": "Kirill", + "lastName": "Shurkin", + "image": "http://static.lolesports.com/players/1686014036728_silhouette_transparent.png", + "role": "top" + } + ] + }, + { + "id": "107179676438027379", + "slug": "giftedurage", + "name": "Gifted.uRage", + "code": "GFTD", + "image": "http://static.lolesports.com/teams/1635432069797_KbDSTasA.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Hitpoint Masters", + "region": "EMEA" + }, + "players": [ + { + "id": "107151350378256470", + "summonerName": "Adyyy", + "firstName": "Adam", + "lastName": "Kop", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "mid" + }, + { + "id": "105647905496827621", + "summonerName": "Sobak", + "firstName": "Sebastian", + "lastName": "Nesét", + "image": "http://static.lolesports.com/players/download.png", + "role": "support" + }, + { + "id": "106425065164716116", + "summonerName": "Onlyx", + "firstName": "Michal", + "lastName": "Hudec", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "bottom" + }, + { + "id": "107179650771311722", + "summonerName": "Pluto", + "firstName": "David", + "lastName": "Hrabánek", + "image": "http://static.lolesports.com/players/1643267539541_placeholder.png", + "role": "jungle" + }, + { + "id": "107179652789413782", + "summonerName": "Formes", + "firstName": "Luboš", + "lastName": "Forman", + "image": "https://static.lolesports.com/players/download.png", + "role": "top" + }, + { + "id": "107179656666879639", + "summonerName": "Lukys", + "firstName": "Lukáš", + "lastName": "Drahota", + "image": "https://static.lolesports.com/players/download.png", + "role": "mid" + } + ] + }, + { + "id": "107179722233063345", + "slug": "cryptova", + "name": "Cryptova", + "code": "OVA", + "image": "http://static.lolesports.com/teams/1642691309384_HM_OVA_white_1_1_use_this.png", + "alternativeImage": "http://static.lolesports.com/teams/1642691309386_HM_OVA_white_1_1_use_this.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "Hitpoint Masters", + "region": "EMEA" + }, + "players": [ + { + "id": "105530925544497872", + "summonerName": "Meleks", + "firstName": "Symeon", + "lastName": "Smejkal", + "image": "https://static.lolesports.com/players/download.png", + "role": "support" + }, + { + "id": "110473357277149314", + "summonerName": "Hiro Hai", + "firstName": "Dai Hai", + "lastName": "Nguyen", + "image": "http://static.lolesports.com/players/1685689650685_placeholder.png", + "role": "bottom" + } + ] + }, + { + "id": "107179740624168899", + "slug": "heet", + "name": "HEET", + "code": "HEET", + "image": "http://static.lolesports.com/teams/1671442691640_HEET1.png", + "alternativeImage": "http://static.lolesports.com/teams/1671442691642_HEET1.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "110467022355401099", + "summonerName": "Luiku", + "firstName": "Théo", + "lastName": "Chianella", + "image": "http://static.lolesports.com/players/1685592990614_placeholder.png", + "role": "top" + }, + { + "id": "109701737239945135", + "summonerName": "Paul227", + "firstName": "Paul", + "lastName": "Gurisch", + "image": "http://static.lolesports.com/players/1673915665164_silhouette_transparent.png", + "role": "mid" + }, + { + "id": "107648269344179644", + "summonerName": "EastGoblin", + "firstName": "Jeroen", + "lastName": "van Dijk", + "image": "http://static.lolesports.com/players/1675091111815_Eastgoblin.png", + "role": "support" + }, + { + "id": "110467030460944772", + "summonerName": "JariDST", + "firstName": "Jari ", + "lastName": "Jansen", + "image": "http://static.lolesports.com/players/1685593114560_placeholder.png", + "role": "none" + }, + { + "id": "102787200054493869", + "summonerName": "Joekie", + "firstName": "Michael", + "lastName": "Gielisse", + "image": "http://static.lolesports.com/players/1642538739452_placeholder.png", + "role": "jungle" + } + ] + }, + { + "id": "107179754925448343", + "slug": "rulers-esports", + "name": "Rulers Esports", + "code": "RLS", + "image": "http://static.lolesports.com/teams/1635433267868_wjp_lMxM.png", + "alternativeImage": "http://static.lolesports.com/teams/1635433267870_wjp_lMxM.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "108449777530041119", + "summonerName": "Patosh", + "firstName": "Patolán", + "lastName": "Tomáš", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "mid" + }, + { + "id": "105593193287468608", + "summonerName": "Annyeong", + "firstName": "Dominik", + "lastName": "Honzák", + "image": "http://static.lolesports.com/players/placeholder_.jpg", + "role": "jungle" + }, + { + "id": "107179650771311722", + "summonerName": "Pluto", + "firstName": "David", + "lastName": "Hrabánek", + "image": "http://static.lolesports.com/players/1643267539541_placeholder.png", + "role": "jungle" + }, + { + "id": "107693187453653754", + "summonerName": "Chimer", + "firstName": "Josef", + "lastName": "Kovář", + "image": "http://static.lolesports.com/players/1643267628229_placeholder.png", + "role": "bottom" + }, + { + "id": "107693265148227208", + "summonerName": "Krosak", + "firstName": "Jáchym", + "lastName": "Kroš", + "image": "http://static.lolesports.com/players/1643268814168_placeholder.png", + "role": "top" + } + ] + }, + { + "id": "107179762356247720", + "slug": "stopwatch", + "name": "STOPWATCH", + "code": "STWT", + "image": "http://static.lolesports.com/teams/1635433382329_U_vbQ9e8.png", + "alternativeImage": "http://static.lolesports.com/teams/1635433382330_U_vbQ9e8.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "Hitpoint Masters", + "region": "EMEA" + }, + "players": [ + { + "id": "112880372381731252", + "summonerName": "Ben01", + "firstName": "Ben", + "lastName": "Ben", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + } + ] + }, + { + "id": "107251231972989211", + "slug": "sbtc-esports", + "name": "SBTC ESPORTS", + "code": "SE", + "image": "http://static.lolesports.com/teams/1656693279140_LOGOFINALKHNGCH-13.png", + "alternativeImage": "http://static.lolesports.com/teams/1656693279142_LOGOFINALKHNGCH-15.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "VCS", + "region": "VIETNAM" + }, + "players": [ + { + "id": "107251383938441076", + "summonerName": "Nper", + "firstName": "Tuan", + "lastName": "Tran Dinh", + "image": "http://static.lolesports.com/players/1675846229676_placeholder.png", + "role": "top" + }, + { + "id": "102848965907008705", + "summonerName": "DNK", + "firstName": "Do", + "lastName": "Ngoc Khai", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/dnk-e9spoha5.png", + "role": "jungle" + }, + { + "id": "102300322396525713", + "summonerName": "Dia1", + "firstName": "Phú Quý", + "lastName": "Lê", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/dia1-ajffcbr.png", + "role": "mid" + }, + { + "id": "107642470610994763", + "summonerName": "Vinboiz", + "firstName": "Vinh", + "lastName": "Le Tran Quang", + "image": "http://static.lolesports.com/players/1675846486698_placeholder.png", + "role": "bottom" + }, + { + "id": "107251402876037771", + "summonerName": "Penguin", + "firstName": "Khoa ", + "lastName": "Dang Nguyen", + "image": "http://static.lolesports.com/players/1675848201955_placeholder.png", + "role": "jungle" + }, + { + "id": "98767975954252935", + "summonerName": "Palette", + "firstName": "Trung", + "lastName": "Nguyen Hai", + "image": "http://static.lolesports.com/players/1695367771848_GAM_Palette.png", + "role": "support" + } + ] + }, + { + "id": "107251245690956393", + "slug": "saigon-buffalo-esports", + "name": "MGN Vikings Esports", + "code": "MVKE", + "image": "http://static.lolesports.com/teams/1704789745043_1280X1280color.png", + "alternativeImage": "http://static.lolesports.com/teams/1704789745044_1280X1280color.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCP", + "region": "PACIFIC" + }, + "players": [ + { + "id": "115254322161332512", + "summonerName": "Seany", + "firstName": "Huu Tai", + "lastName": "Ho", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "99566404826019424", + "summonerName": "SofM", + "firstName": "Quang-Duy", + "lastName": "Le", + "image": "http://static.lolesports.com/players/1593134786030_sn-sofm-web.png", + "role": "jungle" + }, + { + "id": "109828407662355333", + "summonerName": "Kratos", + "firstName": "Khanh", + "lastName": "Ngo Duc", + "image": "http://static.lolesports.com/players/1755156652246_MVKE_Kratos.png", + "role": "top" + }, + { + "id": "109828289393968653", + "summonerName": "Gury", + "firstName": "Luong Hai", + "lastName": "Long", + "image": "http://static.lolesports.com/players/1755156714868_MVKE_Gury.png", + "role": "jungle" + }, + { + "id": "107251572267658009", + "summonerName": "Kati", + "firstName": "Phe", + "lastName": "Dang Thanh ", + "image": "http://static.lolesports.com/players/1755156751981_MVKE_Kati.png", + "role": "mid" + }, + { + "id": "112834609700454416", + "summonerName": "SiuLoong", + "firstName": "Hoang Lam", + "lastName": "Nguyen", + "image": "http://static.lolesports.com/players/1755156835226_MVKE_SiuLoong.png", + "role": "support" + } + ] + }, + { + "id": "107251295460371069", + "slug": "team-secret", + "name": "Saigon Secret", + "code": "TS", + "image": "http://static.lolesports.com/teams/1656693717651_TS.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "VCS", + "region": "VIETNAM" + }, + "players": [] + }, + { + "id": "107251307514079872", + "slug": "lxe-esports", + "name": "LXE ESPORTS", + "code": "LX", + "image": "http://static.lolesports.com/teams/1636525075589_Luxury_Esports_2020_Logo.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "VCS", + "region": "VIETNAM" + }, + "players": [ + { + "id": "100312344066738501", + "summonerName": "CBL", + "firstName": "Luan", + "lastName": "Nguyen Vo Thanh", + "image": "http://static.lolesports.com/players/1695367945405_TW_CBL.png", + "role": "support" + }, + { + "id": "107251726945594253", + "summonerName": "Coated", + "firstName": "Trang", + "lastName": "Dinh Van", + "image": "https://static.lolesports.com/players/download.png", + "role": "top" + }, + { + "id": "107251729643346473", + "summonerName": "Killerqueen", + "firstName": "Dat", + "lastName": "Le Luu Bach ", + "image": "http://static.lolesports.com/players/1675848691196_placeholder.png", + "role": "jungle" + }, + { + "id": "107251733033130549", + "summonerName": "Blazes", + "firstName": "Sang", + "lastName": "Do Dinh ", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "107251734588612664", + "summonerName": "Shine", + "firstName": "Long", + "lastName": "Ton Nguyen Phi ", + "image": "https://static.lolesports.com/players/download.png", + "role": "bottom" + }, + { + "id": "107251740652055443", + "summonerName": "Vit", + "firstName": "An", + "lastName": "Le Hoai", + "image": "http://static.lolesports.com/players/1695368009701_TW_Vit.png", + "role": "bottom" + }, + { + "id": "107251745436969879", + "summonerName": "Calm", + "firstName": "Quyet", + "lastName": "Dinh Trong", + "image": "https://static.lolesports.com/players/download.png", + "role": "none" + }, + { + "id": "107330044662638470", + "summonerName": "H3", + "firstName": "Hai", + "lastName": "Le Hoang", + "image": "https://static.lolesports.com/players/download.png", + "role": "support" + } + ] + }, + { + "id": "107251374793416561", + "slug": "cerberus-esports", + "name": "CERBERUS ESPORTS", + "code": "CES", + "image": "http://static.lolesports.com/teams/1636526090059_900px-CERBERUS_Esports.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "VCS", + "region": "VIETNAM" + }, + "players": [ + { + "id": "109828291562848749", + "summonerName": "Richard I", + "firstName": "Nguyen Hoang", + "lastName": "Phu", + "image": "http://static.lolesports.com/players/1675846735121_placeholder.png", + "role": "mid" + }, + { + "id": "110489684323028620", + "summonerName": "TT789", + "firstName": "Thanh", + "lastName": "Trần", + "image": "http://static.lolesports.com/players/1685938788818_placeholder.png", + "role": "mid" + }, + { + "id": "102849319864045953", + "summonerName": "Hieu3", + "firstName": "Minh Hieu", + "lastName": "Ngo", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/hieu3-2x0x59oa.png", + "role": "support" + }, + { + "id": "109828498583555725", + "summonerName": "Slowz", + "firstName": "Hung", + "lastName": "Nguyen Huy", + "image": "http://static.lolesports.com/players/1675849893974_placeholder.png", + "role": "bottom" + }, + { + "id": "111697804753850920", + "summonerName": "Tahahy", + "firstName": "Huy", + "lastName": "Tran", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "100787602258069870", + "summonerName": "Meliodas", + "firstName": "Tien Nhat", + "lastName": "Hoang", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/meliodas-e0crauc9.png", + "role": "jungle" + }, + { + "id": "112603554771672884", + "summonerName": "Yume", + "firstName": "Kim Bao", + "lastName": " Chau", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "107251636998679351", + "summonerName": "Pun", + "firstName": "Dang Khoa", + "lastName": "Nguyen", + "image": "http://static.lolesports.com/players/1755157165990_TSW_Pun.png", + "role": "top" + } + ] + }, + { + "id": "107251941920386009", + "slug": "bts-esports", + "name": "BTS ESPORTS", + "code": "SKY", + "image": "http://static.lolesports.com/teams/1636534755855_900px-Burst_the_Sky.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "VCS", + "region": "VIETNAM" + }, + "players": [ + { + "id": "107255597014392378", + "summonerName": "Aomine", + "firstName": "Tuan", + "lastName": "Huynh Thiec ", + "image": "https://static.lolesports.com/players/download.png", + "role": "bottom" + }, + { + "id": "107255599789289077", + "summonerName": "Means", + "firstName": "Nghia ", + "lastName": "Trinh Thanh", + "image": "https://static.lolesports.com/players/download.png", + "role": "none" + }, + { + "id": "107255601477066302", + "summonerName": "Karma", + "firstName": "Bao", + "lastName": "Ho Phan Gia", + "image": "https://static.lolesports.com/players/download.png", + "role": "none" + }, + { + "id": "107255605711463071", + "summonerName": "Cehin", + "firstName": "Chien", + "lastName": "Nguyen Ngoc", + "image": "https://static.lolesports.com/players/download.png", + "role": "top" + }, + { + "id": "108005876069480155", + "summonerName": "Boong", + "firstName": "Binh", + "lastName": "Luong Hoan", + "image": "https://static.lolesports.com/players/download.png", + "role": "none" + }, + { + "id": "108005877402854602", + "summonerName": "Yuh", + "firstName": "Huy", + "lastName": "Le Viet", + "image": "https://static.lolesports.com/players/download.png", + "role": "none" + } + ] + }, + { + "id": "107258254469504696", + "slug": "team-flash", + "name": "TP.HCM Team Flash", + "code": "TF", + "image": "http://static.lolesports.com/teams/1737109056884_logoteamflash.png", + "alternativeImage": "http://static.lolesports.com/teams/1737109056884_logoteamflash.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "VCS", + "region": "VIETNAM" + }, + "players": [ + { + "id": "107251646222113259", + "summonerName": "Jane", + "firstName": "Hoang Khanh", + "lastName": "Nguyen", + "image": "http://static.lolesports.com/players/1675849190928_placeholder.png", + "role": "mid" + }, + { + "id": "107251638451612475", + "summonerName": "Puddin", + "firstName": "Tai", + "lastName": "Luong Thanh", + "image": "https://static.lolesports.com/players/download.png", + "role": "bottom" + } + ] + }, + { + "id": "107282025084137801", + "slug": "flayn-esports", + "name": "Flayn eSports", + "code": "FYN", + "image": "http://static.lolesports.com/teams/1636993789136_Flayn.png", + "alternativeImage": "http://static.lolesports.com/teams/1636993789138_Flayn.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "112880372381731252", + "summonerName": "Ben01", + "firstName": "Ben", + "lastName": "Ben", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + } + ] + }, + { + "id": "107380494843637223", + "slug": "samsung-blue", + "name": "Samsung Blue", + "code": "SSB", + "image": "http://static.lolesports.com/teams/1638496318179_Samsung_Bluelogo_profile.png", + "alternativeImage": "http://static.lolesports.com/teams/1638496318183_Samsung_Bluelogo_profile.png", + "backgroundImage": "http://static.lolesports.com/teams/1638496318184_Samsung_Bluelogo_profile.png", + "status": "active", + "homeLeague": { + "name": "LCK", + "region": "KOREA" + }, + "players": [] + }, + { + "id": "107385211290331909", + "slug": "samsung-white", + "name": "Samsung White", + "code": "SSW", + "image": "http://static.lolesports.com/teams/1638568285937_Samsung_Whitelogo_profile.png", + "alternativeImage": "http://static.lolesports.com/teams/1638568285939_Samsung_Whitelogo_profile.png", + "backgroundImage": "http://static.lolesports.com/teams/1638568285941_Samsung_Whitelogo_profile.png", + "status": "active", + "homeLeague": { + "name": "LCK", + "region": "KOREA" + }, + "players": [] + }, + { + "id": "107385265228921843", + "slug": "alliance", + "name": "Alliance", + "code": "ALL", + "image": "http://static.lolesports.com/teams/1638569108275_Alliancelogo_square.png", + "alternativeImage": "http://static.lolesports.com/teams/1638569108278_Alliancelogo_square.png", + "backgroundImage": "http://static.lolesports.com/teams/1638569108279_Alliancelogo_square.png", + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "107385407461075721", + "slug": "alliance", + "name": "Alliance", + "code": "ALL", + "image": "http://static.lolesports.com/teams/1638571276630_Alliancelogo_square.png", + "alternativeImage": "http://static.lolesports.com/teams/1638571276630_Alliancelogo_square.png", + "backgroundImage": "http://static.lolesports.com/teams/1638571276632_Alliancelogo_square.png", + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "107385421206530828", + "slug": "lmq", + "name": "LMQ", + "code": "LMQ", + "image": "http://static.lolesports.com/teams/1638571489257_LMQ_Logo.png", + "alternativeImage": "http://static.lolesports.com/teams/1638571489259_LMQ_Logo.png", + "backgroundImage": "http://static.lolesports.com/teams/1638571489261_LMQ_Logo.png", + "status": "active", + "homeLeague": { + "name": "LCS", + "region": "NORTH AMERICA" + }, + "players": [] + }, + { + "id": "107385500799806223", + "slug": "najin-white-shield", + "name": "NaJin White Shield", + "code": "NWS", + "image": "http://static.lolesports.com/teams/1669838207962_NaJin_White_Shieldlogo_square.png", + "alternativeImage": "http://static.lolesports.com/teams/1669838207965_NaJin_White_Shieldlogo_square.png", + "backgroundImage": "http://static.lolesports.com/teams/1669838207966_NaJin_White_Shieldlogo_square.png", + "status": "active", + "homeLeague": { + "name": "LCK", + "region": "KOREA" + }, + "players": [] + }, + { + "id": "107385769105341437", + "slug": "star-horn-royal-club", + "name": "Star Horn Royal Club", + "code": "SHR", + "image": "http://static.lolesports.com/teams/1638576797331_SHRoyal_Clublogo_profile.png", + "alternativeImage": "http://static.lolesports.com/teams/1638576797334_SHRoyal_Clublogo_profile.png", + "backgroundImage": "http://static.lolesports.com/teams/1638576797336_SHRoyal_Clublogo_profile.png", + "status": "active", + "homeLeague": { + "name": "LPL", + "region": "CHINA" + }, + "players": [ + { + "id": "112880372381731252", + "summonerName": "Ben01", + "firstName": "Ben", + "lastName": "Ben", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + } + ] + }, + { + "id": "107401536028406391", + "slug": "fc-nantes", + "name": "FC NANTES", + "code": "FCN", + "image": "http://static.lolesports.com/teams/1638832875594_fcn_logo_jaune_rvb.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "102459029234786431", + "summonerName": "Vichen", + "firstName": "Victor", + "lastName": "Lahnstein", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/vichen-181tf7fe.png", + "role": "jungle" + }, + { + "id": "107850695332601566", + "summonerName": "Louis", + "firstName": "Louis", + "lastName": "COING", + "image": "http://static.lolesports.com/players/1645671007860_silhouette_transparent.png", + "role": "mid" + }, + { + "id": "107852496261690908", + "summonerName": "nrmn", + "firstName": "Norman", + "lastName": "Richard", + "image": "http://static.lolesports.com/players/1645698484832_placeholder.png", + "role": "none" + }, + { + "id": "108684932124682554", + "summonerName": "Jawa", + "firstName": "Hugo", + "lastName": "Van Der Mey", + "image": "http://static.lolesports.com/players/1658400451502_placeholder.png", + "role": "mid" + }, + { + "id": "107401340917198487", + "summonerName": "Seminol", + "firstName": "Lucas", + "lastName": "Laisne", + "image": "http://static.lolesports.com/players/1638814402450_placeholder.png", + "role": "top" + }, + { + "id": "107401345957768859", + "summonerName": "Showkz", + "firstName": "Yann", + "lastName": "Singvongsa", + "image": "http://static.lolesports.com/players/1638814479187_placeholder.png", + "role": "jungle" + }, + { + "id": "107401339144237646", + "summonerName": "Filou", + "firstName": "Nino", + "lastName": "Hamel", + "image": "http://static.lolesports.com/players/1638814376236_placeholder.png", + "role": "bottom" + }, + { + "id": "107401337954905747", + "summonerName": "Dengel", + "firstName": "Arthur", + "lastName": "Eymard", + "image": "http://static.lolesports.com/players/1638814357062_placeholder.png", + "role": "support" + } + ] + }, + { + "id": "107416342401528388", + "slug": "forsaken", + "name": "Forsaken Team", + "code": "FSK", + "image": "http://static.lolesports.com/teams/1702894248711_1500_FSK_MONO.png", + "alternativeImage": "http://static.lolesports.com/teams/1639390964341_Forsaken-MascotLogoPNG.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Rift Legends", + "region": "EMEA" + }, + "players": [ + { + "id": "100356590519370319", + "summonerName": "Humanoid", + "firstName": " Marek", + "lastName": "Brázda", + "image": "http://static.lolesports.com/players/1737733891965_humanoid.png", + "role": "top" + }, + { + "id": "105655983474630014", + "summonerName": "Ben3k", + "firstName": "Szymon", + "lastName": "Przygoński", + "image": "http://static.lolesports.com/players/placeholder_.jpg", + "role": "jungle" + }, + { + "id": "102787200080511709", + "summonerName": "Cinkrof", + "firstName": "Jakub ", + "lastName": "Rokicki", + "image": "http://static.lolesports.com/players/1655318380887_cinkrof.png", + "role": "jungle" + }, + { + "id": "105530949465715076", + "summonerName": "Odi11", + "firstName": "Adrian", + "lastName": "Kruk", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "107156518964433774", + "summonerName": "Kaseko", + "firstName": "Konrad", + "lastName": "Szewczak", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "105530944081277304", + "summonerName": "Melonik", + "firstName": "Dawid", + "lastName": "Ślęczka", + "image": "http://static.lolesports.com/players/1674125996485_Melonik.png", + "role": "top" + }, + { + "id": "107858280280505549", + "summonerName": "Secrett", + "firstName": "Maciej", + "lastName": "Charzyński", + "image": "http://static.lolesports.com/players/1739198645175_ANBSecret.png", + "role": "mid" + } + ] + }, + { + "id": "107416483509696259", + "slug": "eintracht-spandau", + "name": "Eintracht Spandau", + "code": "EINS", + "image": "http://static.lolesports.com/teams/1674832820210_PRM_EINS-FullColorDarkBG.png", + "alternativeImage": "http://static.lolesports.com/teams/1674832820212_PRM_EINS-MonochromeDarkBG.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Prime League", + "region": "EMEA" + }, + "players": [ + { + "id": "98926509766240677", + "summonerName": "Santorin", + "firstName": "Lucas", + "lastName": "Larsen", + "image": "http://static.lolesports.com/players/1674832219242_DIG_SANTORIN.png", + "role": "jungle" + }, + { + "id": "105554482191853256", + "summonerName": "Lilipp", + "firstName": "Philipp", + "lastName": "Samuel Englert", + "image": "http://static.lolesports.com/players/1674835631645_EINS_Lilipp.png", + "role": "support" + }, + { + "id": "98767991776374577", + "summonerName": "PowerOfEvil", + "firstName": "Tristan", + "lastName": "Schrage", + "image": "http://static.lolesports.com/players/1657828051147_IMT_POWEROFEVIL.png", + "role": "mid" + }, + { + "id": "99322214246040423", + "summonerName": "Innaxe", + "firstName": "Nihat ", + "lastName": "Aliev", + "image": "http://static.lolesports.com/players/1674124998033_Innaxe.png", + "role": "bottom" + }, + { + "id": "103537039526273848", + "summonerName": "Pride", + "firstName": "Mahdi", + "lastName": "Nasserzadeh", + "image": "http://static.lolesports.com/players/1674835629122_EINS_Pride.png", + "role": "top" + }, + { + "id": "107648410041517675", + "summonerName": "jokaa", + "firstName": "Jordan", + "lastName": "Ochs", + "image": "http://static.lolesports.com/players/1642584378136_placeholder.png", + "role": "jungle" + }, + { + "id": "107616294219445687", + "summonerName": "Broeki", + "firstName": "Daniel", + "lastName": "Broekmann", + "image": "http://static.lolesports.com/players/1642094329470_placeholder.png", + "role": "bottom" + } + ] + }, + { + "id": "107422385694193066", + "slug": "barca-esports", + "name": "Barça Esports", + "code": "BAR", + "image": "http://static.lolesports.com/teams/1639828813946_61b778236a9c9995719028.png", + "alternativeImage": "http://static.lolesports.com/teams/1639828813948_61b778236a9c9995719028.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "SuperLiga", + "region": "EMEA" + }, + "players": [ + { + "id": "102181670376678547", + "summonerName": "Czekolad", + "firstName": "Pavel ", + "lastName": "Szczepanik", + "image": "http://static.lolesports.com/players/1674126897252_Czekolad.png", + "role": "mid" + }, + { + "id": "103935363652349248", + "summonerName": "whiteinn", + "firstName": "Alexandru ", + "lastName": "Kolozsvari", + "image": "http://static.lolesports.com/players/1674126814385_WhiteInn.png", + "role": "support" + }, + { + "id": "103495716715079553", + "summonerName": "113", + "firstName": "Doğukan", + "lastName": "Balcı", + "image": "http://static.lolesports.com/players/1737733765521_113.png", + "role": "jungle" + }, + { + "id": "112410855058021467", + "summonerName": "Pauporter", + "firstName": "Pau ", + "lastName": "Vintró Nogué", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "105532772496106458", + "summonerName": "Legolas", + "firstName": "Sergio", + "lastName": "Vicente Gispert", + "image": "https://static.lolesports.com/players/download.png", + "role": "bottom" + }, + { + "id": "99322214668103078", + "summonerName": "WhiteKnight", + "firstName": "Matti", + "lastName": "Sormunen", + "image": "http://static.lolesports.com/players/1642003243059_white-knight.png", + "role": "top" + } + ] + }, + { + "id": "107423075317119707", + "slug": "x7", + "name": "X7", + "code": "X7", + "image": "http://static.lolesports.com/teams/1639655275488_x7logo.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "NLC", + "region": "EMEA" + }, + "players": [] + }, + { + "id": "107423083507599175", + "slug": "vanir", + "name": "Vanir", + "code": "VNR", + "image": "http://static.lolesports.com/teams/1639146167788_Vanir_Logo_Gold_RGB.png", + "alternativeImage": "http://static.lolesports.com/teams/1639146167789_Vanir_Logo_Gold_RGB.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "NLC", + "region": "EMEA" + }, + "players": [] + }, + { + "id": "107423086908356081", + "slug": "nyyrikki", + "name": "Nyyrikki", + "code": "NKI", + "image": "http://static.lolesports.com/teams/1639146219014_Nyyrikki_Logo.png", + "alternativeImage": "http://static.lolesports.com/teams/1639146219020_Nyyrikki_Logo.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "NLC", + "region": "EMEA" + }, + "players": [] + }, + { + "id": "107423109717243380", + "slug": "bifrost", + "name": "Bifrost", + "code": "BFR", + "image": "http://static.lolesports.com/teams/1639654953876_bifrost.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "NLC", + "region": "EMEA" + }, + "players": [] + }, + { + "id": "107437032053655867", + "slug": "kanga-esports", + "name": "Kanga Esports", + "code": "KNG", + "image": "http://static.lolesports.com/teams/1643079892147_Dark_BG_Logo_Icon.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCO", + "region": "OCEANIA" + }, + "players": [ + { + "id": "110462937178590834", + "summonerName": "Woodon", + "firstName": "Kim", + "lastName": "Doowon", + "image": "http://static.lolesports.com/players/1685530646508_placeholder.png", + "role": "top" + }, + { + "id": "109758314971921663", + "summonerName": "Invictis", + "firstName": "Carter", + "lastName": "Brewer", + "image": "http://static.lolesports.com/players/1674778973254_silhouette_transparent.png", + "role": "jungle" + }, + { + "id": "107635918452357647", + "summonerName": "Reufury", + "firstName": "Reuben", + "lastName": "Best", + "image": "https://static.lolesports.com/players/download.png", + "role": "mid" + }, + { + "id": "109675733286091757", + "summonerName": "Realer", + "firstName": "Riley", + "lastName": "Walton", + "image": "http://static.lolesports.com/players/1673518877561_placeholder.png", + "role": "bottom" + }, + { + "id": "111720027901143523", + "summonerName": "Styx", + "firstName": "Samuel", + "lastName": "Blanchard", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "112477373979171280", + "summonerName": "Cadence", + "firstName": "Hugo", + "lastName": "Chang", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "111720122152475827", + "summonerName": "9God", + "firstName": "Frank", + "lastName": "Fei", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "112477352770135560", + "summonerName": "Sovereign", + "firstName": "Alexander", + "lastName": "Folley", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "112477356024384776", + "summonerName": "Yojin", + "firstName": "Natasak", + "lastName": "Srikusalanukul", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "112477359430703555", + "summonerName": "VENDRICK", + "firstName": "Jakib", + "lastName": "Isherwood", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "112477363277522452", + "summonerName": "gabn", + "firstName": "Alexander", + "lastName": "West-Clement", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + } + ] + }, + { + "id": "107444707109325651", + "slug": "stpetersburg-polytechnic-university", + "name": "St.Petersburg Polytechnic University", + "code": "SPB", + "image": "http://static.lolesports.com/teams/1639476118377_logo.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCL", + "region": "COMMONWEALTH OF INDEPENDENT STATES" + }, + "players": [ + { + "id": "107444673363759778", + "summonerName": "Sparkiii", + "firstName": "Artem", + "lastName": "Bednarskyi", + "image": "https://static.lolesports.com/players/download.png", + "role": "bottom" + }, + { + "id": "107444675165637436", + "summonerName": "Op4uH", + "firstName": "Alexandr", + "lastName": "Porokhin\t", + "image": "https://static.lolesports.com/players/download.png", + "role": "jungle" + }, + { + "id": "107444678469503812", + "summonerName": "Yuichiro", + "firstName": "Daniil", + "lastName": "Eremenko\t", + "image": "https://static.lolesports.com/players/download.png", + "role": "support" + }, + { + "id": "107444680013435559", + "summonerName": "Stelya", + "firstName": "Sergei", + "lastName": "Stelya\t", + "image": "https://static.lolesports.com/players/download.png", + "role": "top" + }, + { + "id": "107444681879472968", + "summonerName": "ts2011", + "firstName": "Timur", + "lastName": "Salimov\t", + "image": "https://static.lolesports.com/players/download.png", + "role": "bottom" + }, + { + "id": "107444683818783403", + "summonerName": "Cogito", + "firstName": "Alexandr", + "lastName": "Jigulin", + "image": "https://static.lolesports.com/players/download.png", + "role": "bottom" + }, + { + "id": "107444676884056896", + "summonerName": "OlegaTr", + "firstName": "Oleg", + "lastName": "Borisov\t", + "image": "https://static.lolesports.com/players/download.png", + "role": "mid" + } + ] + }, + { + "id": "107444893599379878", + "slug": "moscow-aviation-institute", + "name": "Moscow Aviation Institute", + "code": "MAI", + "image": "http://static.lolesports.com/teams/1639478962323_1200px-Emblem_of_Moscow_Aviation_Institute.svg.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCL", + "region": "COMMONWEALTH OF INDEPENDENT STATES" + }, + "players": [ + { + "id": "107444874298905386", + "summonerName": "En0tPlosKun", + "firstName": "Egor", + "lastName": "Balashov", + "image": "https://static.lolesports.com/players/download.png", + "role": "mid" + }, + { + "id": "107444660736183091", + "summonerName": "Cringeed", + "firstName": "Orozbai", + "lastName": "Tairjanov", + "image": "https://static.lolesports.com/players/download.png", + "role": "support" + }, + { + "id": "107444662978794138", + "summonerName": "Sir Jekyll", + "firstName": "Dmitrii", + "lastName": "Pimenov", + "image": "https://static.lolesports.com/players/download.png", + "role": "top" + }, + { + "id": "107444664825327803", + "summonerName": "Arcueid", + "firstName": "Ivan", + "lastName": "Lavrentiev", + "image": "https://static.lolesports.com/players/download.png", + "role": "jungle" + }, + { + "id": "107444667301810846", + "summonerName": "ILUXA2011", + "firstName": "Ilia", + "lastName": "Samyilov", + "image": "https://static.lolesports.com/players/download.png", + "role": "bottom" + }, + { + "id": "107444669242755896", + "summonerName": "Kody", + "firstName": "Daniil", + "lastName": "Fedyanin", + "image": "https://static.lolesports.com/players/download.png", + "role": "bottom" + }, + { + "id": "107444671400227009", + "summonerName": "Serjolik", + "firstName": "Sergei", + "lastName": "Visockyi", + "image": "https://static.lolesports.com/players/download.png", + "role": "mid" + } + ] + }, + { + "id": "107445024926157963", + "slug": "begenius", + "name": "beGenius", + "code": "BGN", + "image": "http://static.lolesports.com/teams/1671466011512_CopyofLogobeGenius.png", + "alternativeImage": "http://static.lolesports.com/teams/1671466011514_CopyofLogobeGenius.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "107065251808280921", + "summonerName": "Norwegian", + "firstName": "Matthieu", + "lastName": "Sauvage", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "jungle" + }, + { + "id": "107455896227632782", + "summonerName": "Oshiro", + "firstName": "Arnaud", + "lastName": "ACKER", + "image": "http://static.lolesports.com/players/1639646851876_placeholder.png", + "role": "mid" + }, + { + "id": "107455860012531852", + "summonerName": " Bliio", + "firstName": "Antonin", + "lastName": "Autant ", + "image": "http://static.lolesports.com/players/1639646299175_placeholder.png", + "role": "support" + }, + { + "id": "105515088324829402", + "summonerName": "Octomalus", + "firstName": "Téo", + "lastName": "Bertiau", + "image": "http://static.lolesports.com/players/pobrane2.png", + "role": "top" + }, + { + "id": "107650322095474224", + "summonerName": "Kiddowo", + "firstName": "Gruber", + "lastName": "Ruben", + "image": "http://static.lolesports.com/players/1642613553711_placeholder.png", + "role": "support" + }, + { + "id": "105521681952071314", + "summonerName": "Kinn", + "firstName": "Alexandru", + "lastName": "Dumitrescu", + "image": "http://static.lolesports.com/players/1642613606949_placeholder.png", + "role": "none" + }, + { + "id": "108396611086193856", + "summonerName": "William4", + "firstName": "William ", + "lastName": "Nørbygaard", + "image": "http://static.lolesports.com/players/1654001015708_placeholder.png", + "role": "none" + } + ] + }, + { + "id": "107445036178256370", + "slug": "pcs-taran", + "name": "PCS", + "code": "PCS", + "image": "http://static.lolesports.com/teams/1766134169864_projectConquerors.png", + "alternativeImage": "http://static.lolesports.com/teams/1671466561486_PCS1.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "La Ligue Française", + "region": "EMEA" + }, + "players": [] + }, + { + "id": "107445039953326581", + "slug": "tp-adequat-academy", + "name": "TP Adequat Academy", + "code": "TPAA", + "image": "http://static.lolesports.com/teams/1639481198267_Tony_Parker_Adequat_Academylogo_square.png", + "alternativeImage": "http://static.lolesports.com/teams/1639481198273_Tony_Parker_Adequat_Academylogo_square.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "104727155692888237", + "summonerName": "Lounet", + "firstName": "Léo", + "lastName": "Maurice", + "image": "http://static.lolesports.com/players/1598009565452_czekolad-51vwzmjl.png", + "role": "support" + }, + { + "id": "107455900932030621", + "summonerName": "Skoryss", + "firstName": "Margaux", + "lastName": "Mulot", + "image": "http://static.lolesports.com/players/1639646924535_placeholder.png", + "role": "none" + } + ] + }, + { + "id": "107450819235010833", + "slug": "bkrog-gamerorigin", + "name": "BK ROG Esports", + "code": "BKR", + "image": "http://static.lolesports.com/teams/1674127552169_BK-Rog-Esports-red.png", + "alternativeImage": "http://static.lolesports.com/teams/1674127552171_BK-Rog-Esports-red.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "La Ligue Française", + "region": "EMEA" + }, + "players": [ + { + "id": "105548731617719496", + "summonerName": "Rhilech", + "firstName": "Enes", + "lastName": "Uçan", + "image": "http://static.lolesports.com/players/eSports_male_NoPlayer.png", + "role": "jungle" + }, + { + "id": "102181564372406674", + "summonerName": "Szygenda", + "firstName": "Mathias ", + "lastName": "Jensen", + "image": "http://static.lolesports.com/players/1705026805919_szygenda.png", + "role": "top" + }, + { + "id": "105593236438009434", + "summonerName": "OMON", + "firstName": "Šimon", + "lastName": "Říháček", + "image": "http://static.lolesports.com/players/placeholder_.jpg", + "role": "mid" + }, + { + "id": "101389760981745081", + "summonerName": "Doss", + "firstName": "Mads", + "lastName": "Jensen", + "image": "http://static.lolesports.com/players/1705027090590_doss.png", + "role": "support" + }, + { + "id": "106544654239535161", + "summonerName": "XnS", + "firstName": "Enes", + "lastName": "Hansu", + "image": "http://static.lolesports.com/players/1717747599926_xns.png", + "role": "jungle" + }, + { + "id": "111624628006358201", + "summonerName": "BOOSHI", + "firstName": "Theo", + "lastName": "Mouchiroud", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "bottom" + } + ] + }, + { + "id": "107455711494100456", + "slug": "lille-esport", + "name": "Lille Esport", + "code": "LIL", + "image": "http://static.lolesports.com/teams/1766134201581_LilleEsport.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "La Ligue Française", + "region": "EMEA" + }, + "players": [] + }, + { + "id": "107455737853099802", + "slug": "joblife", + "name": "Joblife", + "code": "JL", + "image": "http://static.lolesports.com/teams/1734359529263_JoblifeRed.png", + "alternativeImage": "http://static.lolesports.com/teams/1639644436112_Plandetravail1copie.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "La Ligue Française", + "region": "EMEA" + }, + "players": [ + { + "id": "111719524576215744", + "summonerName": "Leny", + "firstName": "Albertini", + "lastName": "Leny", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "104251866878130069", + "summonerName": "RAMES", + "firstName": "Mustafa", + "lastName": "Korkmaz", + "image": "http://static.lolesports.com/players/1687252449892_Rames.png", + "role": "jungle" + }, + { + "id": "105515378463711595", + "summonerName": "Diplex", + "firstName": "Dimitri", + "lastName": "Ponomarev", + "image": "http://static.lolesports.com/players/1674831382713_C9_DIPLEX.png", + "role": "mid" + }, + { + "id": "100238780548957608", + "summonerName": "Deadly", + "firstName": "Matthew ", + "lastName": "LUKE SMITH", + "image": "http://static.lolesports.com/players/bt-excel-deadly-lol.png", + "role": "bottom" + }, + { + "id": "103877921700775793", + "summonerName": "Twiizt", + "firstName": "Elton ", + "lastName": "Spetsig", + "image": "http://static.lolesports.com/players/1674126507005_Twiizt.png", + "role": "support" + } + ] + }, + { + "id": "107456284318482723", + "slug": "mirage-elyandra", + "name": "Mirage-Elyandra", + "code": "ME", + "image": "http://static.lolesports.com/teams/1653568398599_MIRAGEELYANDRA-MONOCHROMEDARK.png", + "alternativeImage": "http://static.lolesports.com/teams/1653568398601_MIRAGEELYANDRA-MONOCHROMEDARK.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "La Ligue Française", + "region": "EMEA" + }, + "players": [ + { + "id": "105705424701600291", + "summonerName": "RangJun", + "firstName": "Sang Jun", + "lastName": "Kim", + "image": "http://static.lolesports.com/players/1655828097954_MIRAGEELYANDRA_RANGJUN-picture.png", + "role": "mid" + }, + { + "id": "98767975927317955", + "summonerName": "Cody Sun", + "firstName": "Sun", + "lastName": "Liyu", + "image": "http://static.lolesports.com/players/1655828053256_MIRAGEELYANDRA_CODYSUN-picture.png", + "role": "bottom" + }, + { + "id": "107455857060266120", + "summonerName": "Herazor", + "firstName": "Gauthier", + "lastName": "Peuvion", + "image": "http://static.lolesports.com/players/1639646254514_placeholder.png", + "role": "none" + } + ] + }, + { + "id": "107456327744799091", + "slug": "atletec", + "name": "Atletec", + "code": "ATLE", + "image": "http://static.lolesports.com/teams/1671465951770_CopyofVectorial_ATLETEC_LOGO_WhiteRed.png", + "alternativeImage": "http://static.lolesports.com/teams/1671465951770_CopyofVectorialATLETECLOGOBlack_Red.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "102174499082445892", + "summonerName": "Anthrax", + "firstName": "Robbe", + "lastName": "Dobbeleers", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/anthrax-jdvryegz.png", + "role": "support" + }, + { + "id": "109516856122020677", + "summonerName": "Aiko", + "firstName": "Bastos", + "lastName": "Lucas", + "image": "http://static.lolesports.com/players/1671094605427_placeholder.png", + "role": "top" + }, + { + "id": "107451838524480512", + "summonerName": "Rift", + "firstName": "Jérémie", + "lastName": "Lüthy", + "image": "http://static.lolesports.com/players/1639584932716_placeholder.png", + "role": "support" + }, + { + "id": "109948909647977527", + "summonerName": "BlueBeast", + "firstName": "Benoit", + "lastName": "Roussel", + "image": "http://static.lolesports.com/players/1677687216426_placeholder.png", + "role": "none" + }, + { + "id": "107455903601088152", + "summonerName": "Draptix", + "firstName": "Corentin", + "lastName": "COLIN", + "image": "http://static.lolesports.com/players/1639646964862_placeholder.png", + "role": "top" + }, + { + "id": "107455911036829871", + "summonerName": "Helaz", + "firstName": "Jérémy", + "lastName": "FRANCOIS", + "image": "http://static.lolesports.com/players/1639647078747_placeholder.png", + "role": "support" + } + ] + }, + { + "id": "107456332942301016", + "slug": "atletec", + "name": "Atletec", + "code": "XXAT", + "image": "http://static.lolesports.com/teams/1639653518187_Atleteclogo_square.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "107455903601088152", + "summonerName": "Draptix", + "firstName": "Corentin", + "lastName": "COLIN", + "image": "http://static.lolesports.com/players/1639646964862_placeholder.png", + "role": "top" + }, + { + "id": "102459029234786431", + "summonerName": "Vichen", + "firstName": "Victor", + "lastName": "Lahnstein", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/vichen-181tf7fe.png", + "role": "jungle" + }, + { + "id": "104002543019966321", + "summonerName": "PAK", + "firstName": "Tristan ", + "lastName": "Bourquelot", + "image": "http://static.lolesports.com/players/1684838004140_placeholder.png", + "role": "mid" + }, + { + "id": "107455911036829871", + "summonerName": "Helaz", + "firstName": "Jérémy", + "lastName": "FRANCOIS", + "image": "http://static.lolesports.com/players/1639647078747_placeholder.png", + "role": "support" + } + ] + }, + { + "id": "107456343586920318", + "slug": "cowana-gaming", + "name": "Cowana Gaming", + "code": "CWG", + "image": "http://static.lolesports.com/teams/1639653677981_CowanaGaming.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "107456346573789064", + "slug": "myinsanity", + "name": "mYinsanity", + "code": "MYI", + "image": "http://static.lolesports.com/teams/1642145477770_mYinsanity.png", + "alternativeImage": "http://static.lolesports.com/teams/1642145477772_mYinsanity.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107995048875587010", + "summonerName": "Akkers", + "firstName": "Harry", + "lastName": "Akrill", + "image": "http://static.lolesports.com/players/1647873662367_placeholder.png", + "role": "top" + }, + { + "id": "103935622852857101", + "summonerName": "DIBU", + "firstName": "Janne ", + "lastName": "Heikkonen", + "image": "http://static.lolesports.com/players/1641501252164_placeholder.png", + "role": "jungle" + }, + { + "id": "107892802562399873", + "summonerName": "Alcaffee", + "firstName": "Carsten", + "lastName": "Thiedig", + "image": "http://static.lolesports.com/players/1646313511712_placeholder.png", + "role": "mid" + }, + { + "id": "105519957472411842", + "summonerName": "Tiara", + "firstName": "Ilmo", + "lastName": "Rapeli", + "image": "http://static.lolesports.com/players/kova-tiara-lol.png", + "role": "support" + }, + { + "id": "108402016559572826", + "summonerName": "sioser", + "firstName": "Silvan", + "lastName": "Loser", + "image": "http://static.lolesports.com/players/1654083501789_placeholder.png", + "role": "none" + }, + { + "id": "107560296588501094", + "summonerName": "Marcel", + "firstName": "Marcel", + "lastName": "Majchrzak", + "image": "http://static.lolesports.com/players/1641239872924_placeholder.png", + "role": "top" + }, + { + "id": "102787200049382045", + "summonerName": "Yashiro", + "firstName": "Eimantas", + "lastName": "Šniukas", + "image": "http://static.lolesports.com/players/1672740099346_placeholder.png", + "role": "bottom" + } + ] + }, + { + "id": "107456352597333899", + "slug": "noneedorga", + "name": "NNO Prime", + "code": "NNO", + "image": "http://static.lolesports.com/teams/1674832672635_NNO.png", + "alternativeImage": "http://static.lolesports.com/teams/1674832672637_NNO_dark.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "Prime League", + "region": "EMEA" + }, + "players": [ + { + "id": "105503867494981476", + "summonerName": "Scarface", + "firstName": "Daniel", + "lastName": "Aitbelkacem", + "image": "http://static.lolesports.com/players/placeholder.png", + "role": "top" + }, + { + "id": "103946689343291585", + "summonerName": "Shlatan", + "firstName": "Lucjan Daniel ", + "lastName": "Ahmad", + "image": "http://static.lolesports.com/players/1674126050772_Shlatan.png", + "role": "jungle" + }, + { + "id": "102174699705191142", + "summonerName": "SeRiN", + "firstName": "Tolga", + "lastName": "Ölmez", + "image": "http://static.lolesports.com/players/1687251851348_Serin.png", + "role": "mid" + }, + { + "id": "106302016711938578", + "summonerName": "Lucky", + "firstName": "Luca", + "lastName": "Santos Fontinha", + "image": "http://static.lolesports.com/players/tricked-lucky-lol.png", + "role": "support" + }, + { + "id": "102808574329876915", + "summonerName": "Kanani", + "firstName": "Lamine-Lounis", + "lastName": "Khouani", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/kanani-3j520rfz.png", + "role": "none" + } + ] + }, + { + "id": "107456355516438414", + "slug": "eintracht-frankfurt", + "name": "Eintracht Frankfurt", + "code": "SGE", + "image": "http://static.lolesports.com/teams/1674832854605_SGE.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "99322214241694525", + "summonerName": "Sacre", + "firstName": "Toni", + "lastName": "Sabalić", + "image": "http://static.lolesports.com/players/1674834526716_S04_Sacre.png", + "role": "top" + }, + { + "id": "106301969842885030", + "summonerName": "Techoteco", + "firstName": "Teo", + "lastName": "Barliba", + "image": "http://static.lolesports.com/players/granit-techoteco-lol.png", + "role": "jungle" + }, + { + "id": "108401982138705338", + "summonerName": "Varry", + "firstName": "Maurice", + "lastName": "Herberg", + "image": "http://static.lolesports.com/players/1654082976759_placeholder.png", + "role": "bottom" + }, + { + "id": "107450769953280129", + "summonerName": "Veignorem", + "firstName": "Đai-vinh", + "lastName": "Lussiez", + "image": "http://static.lolesports.com/players/1674126967966_Veignorem.png", + "role": "support" + }, + { + "id": "100312190807221865", + "summonerName": "Zanzarah", + "firstName": "Nikolay ", + "lastName": "Akatov", + "image": "http://static.lolesports.com/players/1744004091622_image6-2025-04-07T073426.679.png", + "role": "jungle" + }, + { + "id": "113931955969511690", + "summonerName": "Unkn0wn", + "firstName": "Paraskevas", + "lastName": "Fragkos", + "image": "http://static.lolesports.com/players/1739198292950_1MUnkn0wn.png", + "role": "bottom" + }, + { + "id": "102787200042631820", + "summonerName": "ZaZee", + "firstName": "Dirk", + "lastName": "Mallner", + "image": "http://static.lolesports.com/players/1674834386478_SGE_ZaZee.png", + "role": "mid" + } + ] + }, + { + "id": "107456359624562577", + "slug": "sprout", + "name": "Sprout", + "code": "SPT", + "image": "http://static.lolesports.com/teams/1639653922732_Sprout.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107564506334329421", + "summonerName": "Raider", + "firstName": "Fabijan", + "lastName": "Mandarić", + "image": "http://static.lolesports.com/players/1641304103688_placeholder.png", + "role": "top" + }, + { + "id": "105515253867707529", + "summonerName": "Manaty", + "firstName": "Stephane", + "lastName": "Dimier", + "image": "http://static.lolesports.com/players/pobrane2.png", + "role": "jungle" + }, + { + "id": "109552503596134046", + "summonerName": "Eg0", + "firstName": "Hoarau", + "lastName": "Christony", + "image": "http://static.lolesports.com/players/1671638543102_placeholder.png", + "role": "none" + }, + { + "id": "109552506178354300", + "summonerName": "ZwiS", + "firstName": "Lovro", + "lastName": "Zeljko", + "image": "http://static.lolesports.com/players/1671638582169_placeholder.png", + "role": "none" + }, + { + "id": "104002543019966321", + "summonerName": "PAK", + "firstName": "Tristan ", + "lastName": "Bourquelot", + "image": "http://static.lolesports.com/players/1684838004140_placeholder.png", + "role": "mid" + }, + { + "id": "101196422549297203", + "summonerName": "Riku", + "firstName": "Leon", + "lastName": "Ali", + "image": "http://static.lolesports.com/players/1639774498414_placeholder.png", + "role": "bottom" + }, + { + "id": "107560250311565369", + "summonerName": "Ephekles", + "firstName": "Marc ", + "lastName": "Küchler ", + "image": "http://static.lolesports.com/players/1641239165419_placeholder.png", + "role": "support" + } + ] + }, + { + "id": "107456365241352597", + "slug": "hertha-bsc", + "name": "Hertha BSC", + "code": "BSC", + "image": "http://static.lolesports.com/teams/1639654007415_HerthaBSC.png", + "alternativeImage": "http://static.lolesports.com/teams/1642145778785_HerthaBSC.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "107456367793297300", + "slug": "tt-willhaben", + "name": "TT willhaben ", + "code": "TTW", + "image": "http://static.lolesports.com/teams/1642145861694_TTwilhaben.png", + "alternativeImage": "http://static.lolesports.com/teams/1642145861696_TTwilhaben.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "109036438767327168", + "summonerName": "qLibali", + "firstName": "Zouani", + "lastName": "Samir", + "image": "http://static.lolesports.com/players/1663764016483_placeholder.png", + "role": "jungle" + }, + { + "id": "109036440744536224", + "summonerName": "Tensor", + "firstName": "Keim", + "lastName": "Benedikt", + "image": "http://static.lolesports.com/players/1663764046858_placeholder.png", + "role": "support" + }, + { + "id": "108646905782549780", + "summonerName": "Vango", + "firstName": "Antoine", + "lastName": "Tinguely", + "image": "https://static.lolesports.com/players/download.png", + "role": "support" + }, + { + "id": "108956149366891529", + "summonerName": "Baxe", + "firstName": "Marius", + "lastName": "Mueller", + "image": "https://static.lolesports.com/players/download.png", + "role": "none" + } + ] + }, + { + "id": "107456370312266136", + "slug": "wesports", + "name": "WeSports", + "code": "WES", + "image": "http://static.lolesports.com/teams/1639654085395_WeSports.png", + "alternativeImage": "http://static.lolesports.com/teams/1642145916327_WeSports.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "111844279396062286", + "summonerName": "Faun", + "firstName": "Mark", + "lastName": "Uhl", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "112433870818147745", + "summonerName": "atomicnoxus", + "firstName": "Ait", + "lastName": "Sellamet Rayane", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "111692190533111124", + "summonerName": "Dome ", + "firstName": "Dominik", + "lastName": "Christensen", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "112433874852885999", + "summonerName": "Lychee", + "firstName": "Daniel", + "lastName": "Arne", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "108403367908408505", + "summonerName": "LIMITLESS", + "firstName": "Niklas", + "lastName": "Lex", + "image": "http://static.lolesports.com/players/1654104123157_silhouette_transparent1.png", + "role": "bottom" + }, + { + "id": "108403325944948272", + "summonerName": "Fine4Ever", + "firstName": "Lundin", + "lastName": "Lukas", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "support" + }, + { + "id": "112608161511090766", + "summonerName": "D3vi", + "firstName": "Max", + "lastName": "Naujoks", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "110417291266206107", + "summonerName": "Veyytix", + "firstName": "Raik", + "lastName": "Hilpsch", + "image": "http://static.lolesports.com/players/1684834155372_placeholder.png", + "role": "bottom" + }, + { + "id": "112648323334883037", + "summonerName": "Mr Jackson", + "firstName": "Mustafa", + "lastName": "Yilmaz", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "110417289500993943", + "summonerName": "corvus", + "firstName": "Korbinian", + "lastName": "Domnick", + "image": "http://static.lolesports.com/players/1684834128942_placeholder.png", + "role": "mid" + }, + { + "id": "112717275494106660", + "summonerName": "PeateeSD", + "firstName": "Paul", + "lastName": "Thiele", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "top" + } + ] + }, + { + "id": "107456372775999383", + "slug": "404-multigaming", + "name": "404 Multigaming", + "code": "404", + "image": "http://static.lolesports.com/teams/1639654122869_404Multigaming.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "107456419134134246", + "slug": "astralis-talent", + "name": "Astralis Talent", + "code": "ASTL", + "image": "http://static.lolesports.com/teams/1639654830691_ast.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "NLC", + "region": "EMEA" + }, + "players": [] + }, + { + "id": "107456442720240082", + "slug": "xl-academy", + "name": "XL Academy", + "code": "XLA", + "image": "http://static.lolesports.com/teams/1639655190810_XLlogo.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "NLC", + "region": "EMEA" + }, + "players": [] + }, + { + "id": "107456994699991548", + "slug": "atleta-esport", + "name": "Atleta Esport", + "code": "ATE", + "image": "http://static.lolesports.com/teams/1639663611907_Atleta.png", + "alternativeImage": "http://static.lolesports.com/teams/1639663611909_Atleta.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "112445055133522985", + "summonerName": "Sfakendaken", + "firstName": "Pietro", + "lastName": "Bottiglieri", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "107105622359149087", + "summonerName": "Instant", + "firstName": "Andrea ", + "lastName": "Bono", + "image": "https://static.lolesports.com/players/download.png", + "role": "none" + } + ] + }, + { + "id": "107467794614674479", + "slug": "fnatictq", + "name": "FnaticTQ", + "code": "FNTQ", + "image": "http://static.lolesports.com/teams/1639828406200_61bcc19126090227265597.png", + "alternativeImage": "http://static.lolesports.com/teams/1639828406203_61bcc19126090227265597.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "SuperLiga", + "region": "EMEA" + }, + "players": [] + }, + { + "id": "107467803833323099", + "slug": "team-heretics-sl", + "name": "Los Heretics", + "code": "HRTS", + "image": "http://static.lolesports.com/teams/1661502137823_LOGOHERETICSPNG.png", + "alternativeImage": "http://static.lolesports.com/teams/1661502137826_LOGOHERETICSPNG.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "SuperLiga", + "region": "EMEA" + }, + "players": [ + { + "id": "107156544177574787", + "summonerName": "Tracyn", + "firstName": "Sebastian", + "lastName": "Wojtoń", + "image": "http://static.lolesports.com/players/1674834923978_GL_Tracyn.png", + "role": "top" + }, + { + "id": "107621095379170267", + "summonerName": "Daglas", + "firstName": "Kacper", + "lastName": "Dagiel", + "image": "http://static.lolesports.com/players/1705027284789_daglas.png", + "role": "jungle" + }, + { + "id": "109696722643910603", + "summonerName": "Rin", + "firstName": "Khalil", + "lastName": "Sahraoui", + "image": "http://static.lolesports.com/players/1673839148779_silhouette_transparent.png", + "role": "bottom" + }, + { + "id": "103461966878377860", + "summonerName": "Kaiser", + "firstName": "Norman", + "lastName": "Kaiser", + "image": "http://static.lolesports.com/players/1705027241584_kaiser.png", + "role": "support" + }, + { + "id": "112457510874048736", + "summonerName": "Mercy9", + "firstName": "Cengizhan", + "lastName": "Teker", + "image": "http://static.lolesports.com/players/1717747541041_mercy.png", + "role": "mid" + }, + { + "id": "110350191462480298", + "summonerName": "Naau", + "firstName": "Arnau ", + "lastName": "Fores Garcia", + "image": "http://static.lolesports.com/players/1683810295387_placeholder.png", + "role": "jungle" + } + ] + }, + { + "id": "107467827374313054", + "slug": "finetwork-koi", + "name": "Finetwork KOI", + "code": "FNK", + "image": "http://static.lolesports.com/teams/1639828904190_61b740d5e05ac236934201.png", + "alternativeImage": "http://static.lolesports.com/teams/1639828904197_61b740d5e05ac236934201.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "SuperLiga", + "region": "EMEA" + }, + "players": [ + { + "id": "105553696718837337", + "summonerName": "Jopa", + "firstName": "Josip", + "lastName": "Čančar", + "image": "http://static.lolesports.com/players/1642510087502_placeholder.png", + "role": "bottom" + }, + { + "id": "107462755349678558", + "summonerName": "Stend", + "firstName": "Paul", + "lastName": "Lardin", + "image": "http://static.lolesports.com/players/1754474542542_image6614.png", + "role": "support" + }, + { + "id": "102787200103252739", + "summonerName": "Lucker", + "firstName": "Damian", + "lastName": "Konefał", + "image": "http://static.lolesports.com/players/1591036330572_silhouette.png", + "role": "none" + }, + { + "id": "105502737444943340", + "summonerName": "seaz", + "firstName": "Daniel", + "lastName": "Binderhofer", + "image": "http://static.lolesports.com/players/placeholder.png", + "role": "none" + }, + { + "id": "102808840667875469", + "summonerName": "Sinmivak", + "firstName": "Jakub", + "lastName": "Rucki", + "image": "https://static.lolesports.com/players/download.png", + "role": "top" + }, + { + "id": "105589342465251658", + "summonerName": "Aziado", + "firstName": "Tiago", + "lastName": "Correia Rodrigues", + "image": "http://static.lolesports.com/players/pobrane1.png", + "role": "none" + }, + { + "id": "105532803085558758", + "summonerName": "Baca", + "firstName": "João Miguel", + "lastName": "Novais Bigas", + "image": "http://static.lolesports.com/players/1639756127996_placeholder.png", + "role": "mid" + }, + { + "id": "102181576087728793", + "summonerName": "Blueknight", + "firstName": "Nico ", + "lastName": "Jannet", + "image": "http://static.lolesports.com/players/1633541954936_rge-blueknight-w21.png", + "role": "none" + }, + { + "id": "103461966929364884", + "summonerName": "Koldo", + "firstName": "Luis ", + "lastName": "Perez Garcia", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/ftw-koldo-cr6vjtdj.png", + "role": "jungle" + } + ] + }, + { + "id": "107467834753797729", + "slug": "bisons-eclub", + "name": "Bisons", + "code": "BSO", + "image": "http://static.lolesports.com/teams/1639829017451_618bec7c49c31172742131.png", + "alternativeImage": "http://static.lolesports.com/teams/1639829017457_618bec7c49c31172742131.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "SuperLiga", + "region": "EMEA" + }, + "players": [ + { + "id": "105672441522229073", + "summonerName": "Oscure", + "firstName": "Víctor", + "lastName": "Guzmán Fernández", + "image": "http://static.lolesports.com/players/placeholder_.jpg", + "role": "support" + }, + { + "id": "107564414351079872", + "summonerName": "Rubenxico", + "firstName": "Rubén", + "lastName": "Sánchez Grima", + "image": "http://static.lolesports.com/players/1641302700997_placeholder.png", + "role": "top" + } + ] + }, + { + "id": "107468079354897663", + "slug": "team-oplon", + "name": "Team Oplon", + "code": "OPL", + "image": "http://static.lolesports.com/teams/1653568446370_TEAMOPLON-MONOCHROMELIGHT.png", + "alternativeImage": "http://static.lolesports.com/teams/1653568446371_TEAMOPLON-MONOCHROMELIGHT.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "La Ligue Française", + "region": "EMEA" + }, + "players": [ + { + "id": "103877921700775793", + "summonerName": "Twiizt", + "firstName": "Elton ", + "lastName": "Spetsig", + "image": "http://static.lolesports.com/players/1674126507005_Twiizt.png", + "role": "support" + }, + { + "id": "104275723094946928", + "summonerName": "Peng", + "firstName": "Pengcheng", + "lastName": "Shen", + "image": "http://static.lolesports.com/players/1674126023781_Peng.png", + "role": "top" + }, + { + "id": "98767975963407611", + "summonerName": "Shernfire", + "firstName": "Shern", + "lastName": "Tai", + "image": "http://static.lolesports.com/players/1655828444744_OPLON_SHERNFIRE-picture.png", + "role": "jungle" + }, + { + "id": "107772441154411284", + "summonerName": "Xicor", + "firstName": "Fares", + "lastName": "Saidana", + "image": "http://static.lolesports.com/players/1655828499158_OPLON_XICOR-picture.png", + "role": "mid" + }, + { + "id": "103877733238936104", + "summonerName": "Darlik", + "firstName": "Aymeric", + "lastName": "Garcon", + "image": "http://static.lolesports.com/players/1655828402868_OPLON_DARLIK-picture.png", + "role": "bottom" + }, + { + "id": "106302873774707670", + "summonerName": "Bung", + "firstName": "Jakob", + "lastName": "Gramm", + "image": "http://static.lolesports.com/players/1674126414658_Bung.png", + "role": "bottom" + } + ] + }, + { + "id": "107563714667537640", + "slug": "team-bds", + "name": "Shifters", + "code": "SHFT", + "image": "http://static.lolesports.com/teams/1765897071435_600px-Shifters_allmode.png", + "alternativeImage": "http://static.lolesports.com/teams/1765897071435_600px-Shifters_allmode.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LEC", + "region": "EMEA" + }, + "players": [ + { + "id": "105501834624360050", + "summonerName": "Ice", + "firstName": "Sang-hoon", + "lastName": "Yoon", + "image": "http://static.lolesports.com/players/1754469015564_image61281.png", + "role": "bottom" + }, + { + "id": "105554437688383476", + "summonerName": "nuc", + "firstName": "Ilias", + "lastName": "Bizriken", + "image": "http://static.lolesports.com/players/1754469110746_image6-2025-08-06T102650.710.png", + "role": "mid" + }, + { + "id": "107455908655055017", + "summonerName": "JuJuTw0", + "firstName": "Julien", + "lastName": "IZZO", + "image": "http://static.lolesports.com/players/1639647042551_placeholder.png", + "role": "bottom" + }, + { + "id": "107767810249714879", + "summonerName": "Rooster", + "firstName": "Yunhwan", + "lastName": "Shin", + "image": "http://static.lolesports.com/players/1754469511982_image6521.png", + "role": "top" + }, + { + "id": "105515296576479523", + "summonerName": "Boukada", + "firstName": "Lahlou", + "lastName": "Mehdi", + "image": "http://static.lolesports.com/players/1754468963364_image6-2025-08-06T102003.0121.png", + "role": "jungle" + }, + { + "id": "103805069759346933", + "summonerName": "Parus", + "firstName": "Polat Furkan", + "lastName": "Çiçek", + "image": "http://static.lolesports.com/players/1754469415091_image6324.png", + "role": "support" + } + ] + }, + { + "id": "107564120359954189", + "slug": "falcons", + "name": "Falcons", + "code": "FAL", + "image": "http://static.lolesports.com/teams/1641298200728_618bed0ba3a91541975487.png", + "alternativeImage": "http://static.lolesports.com/teams/1641298200729_618bed0b5a4ba986396191.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "106312643295867752", + "summonerName": "Sapphire", + "firstName": "Jakob", + "lastName": "Rietschel", + "image": "http://static.lolesports.com/players/1633689599879_silhouette.png", + "role": "jungle" + }, + { + "id": "112455030131103811", + "summonerName": "JaVa", + "firstName": " Francisco javier ", + "lastName": "Martinez Luque", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "112454997662865456", + "summonerName": "Skynet", + "firstName": "Manuel", + "lastName": "Romero Abad", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "108321348271472112", + "summonerName": "Zaiiche", + "firstName": "Javier", + "lastName": "Moreno Rodríguez", + "image": "http://static.lolesports.com/players/1652852602350_placeholder.png", + "role": "top" + }, + { + "id": "113045186872236406", + "summonerName": "Zherathor", + "firstName": "Ignacio ", + "lastName": "Lázaro", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "108208859538892926", + "summonerName": "Pinkmin", + "firstName": "Javier", + "lastName": "Fernández Galindo", + "image": "http://static.lolesports.com/players/1651136157357_placeholder.png", + "role": "support" + } + ] + }, + { + "id": "107564128430684482", + "slug": "case-esports", + "name": "Case Esports", + "code": "CASE", + "image": "http://static.lolesports.com/teams/1701682479864_654cac03a4384838025159.png", + "alternativeImage": "http://static.lolesports.com/teams/1701682479866_654cac03a4384838025159.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "105537497177165376", + "summonerName": "Viketox", + "firstName": "Victor", + "lastName": "Navarro Ramos", + "image": "https://static.lolesports.com/players/download.png", + "role": "support" + } + ] + }, + { + "id": "107564135791716115", + "slug": "guasones", + "name": "Guasones", + "code": "GSNS", + "image": "http://static.lolesports.com/teams/1701682424353_guasones-team-logo-white.png", + "alternativeImage": "http://static.lolesports.com/teams/1701682424355_Guasones_Team_2022_lightmode.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "111544629109918653", + "summonerName": "Selenex", + "firstName": "Eric", + "lastName": "Lozano Gutierrez", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "111658421815755816", + "summonerName": "Macaquino", + "firstName": "Sergio ", + "lastName": "Bouzende Rodrigues", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "105537410828121591", + "summonerName": "Nyx", + "firstName": "Oscar", + "lastName": "Ruiz Vargas", + "image": "https://static.lolesports.com/players/download.png", + "role": "jungle" + }, + { + "id": "107603154795354983", + "summonerName": "Lelouch2", + "firstName": "Luca Cristian", + "lastName": "Alexandrescu", + "image": "http://static.lolesports.com/players/1675089609272_LeLouch.png", + "role": "bottom" + }, + { + "id": "111719530155033288", + "summonerName": "Passzi", + "firstName": "Vencel", + "lastName": "Urbin", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "111544628785115608", + "summonerName": "Ardo", + "firstName": "Guillermo", + "lastName": "Gómez Atienza", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "bottom" + } + ] + }, + { + "id": "107564159457290005", + "slug": "zeta", + "name": "ZETA Gaming", + "code": "ZTA", + "image": "http://static.lolesports.com/teams/1641298812556_61d4224ec29e7694061589.png", + "alternativeImage": "http://static.lolesports.com/teams/1641298812558_61d4224e6c84d502780623.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "SuperLiga", + "region": "EMEA" + }, + "players": [ + { + "id": "108396643302446310", + "summonerName": "CPM", + "firstName": "Zidaru ", + "lastName": "Laurentiu-Dodel", + "image": "http://static.lolesports.com/players/1687001127247_GTZ_CPM.png", + "role": "top" + }, + { + "id": "112458338268604979", + "summonerName": "Afriibi", + "firstName": "Atis", + "lastName": "Fridensteins-Bridins", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "112569651791217319", + "summonerName": "Babuleh", + "firstName": "MARTINIUC", + "lastName": "ARTIOM", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "103877629735470655", + "summonerName": "Xico", + "firstName": "Francisco ", + "lastName": "Cruz Antunes", + "image": "http://static.lolesports.com/players/1649085091723_BDSACADEMY_XICO-picture.png", + "role": "mid" + }, + { + "id": "112454997742235219", + "summonerName": "escoX", + "firstName": "Javier", + "lastName": "Escobedo Sevilla", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "114363822103810761", + "summonerName": "ALNSHT", + "firstName": "Alonso", + "lastName": "Hernández Ballesteros", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "103811115867310732", + "summonerName": "Nasser", + "firstName": "Nasser", + "lastName": " Rifai", + "image": "http://static.lolesports.com/players/1584031919634_silhouette.png", + "role": "jungle" + } + ] + }, + { + "id": "107564167676290839", + "slug": "rebels-gaming", + "name": "Rebels Gaming", + "code": "RBLS", + "image": "http://static.lolesports.com/teams/1671467127897_61b86da4283b5904699323.png", + "alternativeImage": "http://static.lolesports.com/teams/1641298937304_61b86da4283b5904699323.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "111720201452406537", + "summonerName": "Kozi", + "firstName": "Jarosław", + "lastName": "Marchewka", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "110350191462480298", + "summonerName": "Naau", + "firstName": "Arnau ", + "lastName": "Fores Garcia", + "image": "http://static.lolesports.com/players/1683810295387_placeholder.png", + "role": "jungle" + }, + { + "id": "105537412419401210", + "summonerName": "Javier", + "firstName": "Javier", + "lastName": "Carmona Garcia", + "image": "https://static.lolesports.com/players/download.png", + "role": "mid" + }, + { + "id": "112056402429662988", + "summonerName": "SORROW", + "firstName": "David ", + "lastName": "Pombo", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "108396087581669529", + "summonerName": "Sw3ry", + "firstName": "Denis", + "lastName": "Neumann", + "image": "http://static.lolesports.com/players/1653993029605_placeholder.png", + "role": "bottom" + } + ] + }, + { + "id": "107564194061973851", + "slug": "movistar-riders-academy", + "name": "Movistar Riders Academy", + "code": "MRSA", + "image": "http://static.lolesports.com/teams/1641299326248_5bd87bf57e646992372238.png", + "alternativeImage": "http://static.lolesports.com/teams/1641299285681_5bd87bf57e646992372238.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107462832516483620", + "summonerName": "Harald", + "firstName": "Eduardo", + "lastName": "Cruz Rodriguez", + "image": "http://static.lolesports.com/players/1639752689298_placeholder.png", + "role": "top" + }, + { + "id": "107467858205724293", + "summonerName": "Duduu", + "firstName": "Eduardo Federico ", + "lastName": "García Mero", + "image": "http://static.lolesports.com/players/1639829372555_placeholder.jpg", + "role": "jungle" + }, + { + "id": "106302714837324627", + "summonerName": "Izeman", + "firstName": "Alejandro ", + "lastName": "Rivas González", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "bottom" + }, + { + "id": "105532745016324766", + "summonerName": "Vega", + "firstName": "Alberto", + "lastName": "Vega García", + "image": "https://static.lolesports.com/players/download.png", + "role": "bottom" + }, + { + "id": "108321341774323636", + "summonerName": "Fourex", + "firstName": "Ayman", + "lastName": "Bahi Hosain", + "image": "http://static.lolesports.com/players/1652852502375_placeholder.png", + "role": "jungle" + }, + { + "id": "107757108787921201", + "summonerName": "Tikyl", + "firstName": "Ivan", + "lastName": "Morales", + "image": "http://static.lolesports.com/players/1644242989350_placeholder.png", + "role": "jungle" + } + ] + }, + { + "id": "107564209545247072", + "slug": "wizards", + "name": "Wizards", + "code": "WIZ", + "image": "http://static.lolesports.com/teams/1641299578297_61b86dcc46bbc885635223.png", + "alternativeImage": "http://static.lolesports.com/teams/1641299578298_61b86dcc46bbc885635223.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "109664343977150757", + "summonerName": "Alonshot", + "firstName": "Hernández Ballesteros", + "lastName": "Alonshot", + "image": "https://static.lolesports.com/players/download.png", + "role": "bottom" + }, + { + "id": "105519782893889124", + "summonerName": "LINDGARDE", + "firstName": "Hugo", + "lastName": "Lindgärde", + "image": "http://static.lolesports.com/players/fnatic-lingard-lol.png", + "role": "bottom" + } + ] + }, + { + "id": "107564214109305186", + "slug": "aym-esports", + "name": "AYM Esports", + "code": "AYM", + "image": "http://static.lolesports.com/teams/1641299646991_61d42287217e1061324184.png", + "alternativeImage": "http://static.lolesports.com/teams/1641299646992_61d4228657714705831296.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "110356015172375011", + "summonerName": "Domi", + "firstName": "Pablo", + "lastName": " Tarí Sánchez", + "image": "http://static.lolesports.com/players/1683899154777_placeholder.png", + "role": "mid" + } + ] + }, + { + "id": "107565415488781840", + "slug": "aab-esport", + "name": "AaB esport", + "code": "AAB", + "image": "http://static.lolesports.com/teams/1641317981451_AaBesport.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "107565448721890834", + "slug": "dmg-esports", + "name": "DMG Esports", + "code": "DMG", + "image": "http://static.lolesports.com/teams/1736207774024_DMG1.png", + "alternativeImage": "http://static.lolesports.com/teams/1736207774024_DMG1.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "NLC", + "region": "EMEA" + }, + "players": [ + { + "id": "105589288619463689", + "summonerName": "Lulas", + "firstName": "Luís", + "lastName": "Azevedo", + "image": "http://static.lolesports.com/players/1687000909646_EGN-Lulas.png", + "role": "jungle" + }, + { + "id": "113112607245809202", + "summonerName": "Fantomisto", + "firstName": "Folcher", + "lastName": "Thomas", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "114823023882359366", + "summonerName": "Chance2Win", + "firstName": "Atalay", + "lastName": "Aydan", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "104727118125031562", + "summonerName": "Calmsky", + "firstName": "Diogo", + "lastName": "Sousa", + "image": "http://static.lolesports.com/players/1687000310775_WD-Calmsky.png", + "role": "support" + }, + { + "id": "108695832513234621", + "summonerName": "Faetski", + "firstName": "Jakob", + "lastName": "Skovmand", + "image": "https://static.lolesports.com/players/download.png", + "role": "bottom" + } + ] + }, + { + "id": "107565456309714452", + "slug": "flong-esports", + "name": "Flong Esports", + "code": "FLG", + "image": "http://static.lolesports.com/teams/1641318604227_FlongEsports22.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "107565460652260886", + "slug": "lucent", + "name": "Lucent", + "code": "LCT", + "image": "http://static.lolesports.com/teams/1641318671555_Lucent.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "107565467039661592", + "slug": "ldn-utd", + "name": "LDN UTD", + "code": "LDNU", + "image": "http://static.lolesports.com/teams/1641318768602_LDNUTD1.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "107565473980214294", + "slug": "lundqvist-lightside", + "name": "Lundqvist Lightside", + "code": "LLS", + "image": "http://static.lolesports.com/teams/1736207650239_LLS1.png", + "alternativeImage": "http://static.lolesports.com/teams/1736207650240_LLS1.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "NLC", + "region": "EMEA" + }, + "players": [ + { + "id": "107156523307111283", + "summonerName": "Makk", + "firstName": "Mikołaj", + "lastName": "Makówka", + "image": "http://static.lolesports.com/players/1635078781466_placeholder.jpg", + "role": "top" + }, + { + "id": "110441666551929085", + "summonerName": "Slice", + "firstName": "ANGELO", + "lastName": "YOUSEF", + "image": "http://static.lolesports.com/players/1685206094003_placeholder.png", + "role": "jungle" + }, + { + "id": "113794163895829313", + "summonerName": "Bisgaard", + "firstName": "Sebastian", + "lastName": "Sørensen", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "105521657678506569", + "summonerName": "Nikolex", + "firstName": "Nickos", + "lastName": "Kechris", + "image": "http://static.lolesports.com/players/pobrane2.png", + "role": "none" + }, + { + "id": "106250861628875432", + "summonerName": "Jovian", + "firstName": "Alexandros", + "lastName": "Saroglou", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "none" + }, + { + "id": "109897089125370726", + "summonerName": "Goldenpenny", + "firstName": "Hugo", + "lastName": "Pilström", + "image": "http://static.lolesports.com/players/1676896504753_placeholder.png", + "role": "bottom" + }, + { + "id": "108353503108590464", + "summonerName": "Don Ponk", + "firstName": "Kramdi", + "lastName": "Mohammed", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + }, + { + "id": "108448763829893731", + "summonerName": "Samson", + "firstName": "Samson", + "lastName": "Jonathan", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + } + ] + }, + { + "id": "107565477822627354", + "slug": "verdant", + "name": "Verdant", + "code": "VER", + "image": "http://static.lolesports.com/teams/1736206402275_VER1.png", + "alternativeImage": "http://static.lolesports.com/teams/1736206402275_VER1.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "NLC", + "region": "EMEA" + }, + "players": [ + { + "id": "105554393869007083", + "summonerName": "Sencux", + "firstName": "Chres", + "lastName": "Laursen", + "image": "http://static.lolesports.com/players/1739201198347_FOGSencux.png", + "role": "mid" + }, + { + "id": "107217815918221367", + "summonerName": "Erolle", + "firstName": "Erol", + "lastName": "Bajramovic", + "image": "http://static.lolesports.com/players/1687377007483_Erolle.png", + "role": "none" + }, + { + "id": "105502730551080406", + "summonerName": "SLT", + "firstName": "Enzo", + "lastName": "Gonzales", + "image": "http://static.lolesports.com/players/VIT_SLT2021_summer.png", + "role": "top" + }, + { + "id": "105503955410413696", + "summonerName": "D4nKa", + "firstName": "Daniel", + "lastName": "Golzmann", + "image": "http://static.lolesports.com/players/placeholder.png", + "role": "jungle" + }, + { + "id": "111731623174618763", + "summonerName": "Devn", + "firstName": "Jürgen", + "lastName": "Nguyen Nam", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "103478281369596452", + "summonerName": "Tore", + "firstName": "Tore", + "lastName": "Hoel Eilertsen", + "image": "http://static.lolesports.com/players/1674834714933_MOUZ_Tore.png", + "role": "support" + }, + { + "id": "105589339880506016", + "summonerName": "Obstinatus", + "firstName": "Guilherme", + "lastName": "Cruz", + "image": "http://static.lolesports.com/players/pobrane1.png", + "role": "support" + } + ] + }, + { + "id": "107565484436220952", + "slug": "munster-rugby-gaming", + "name": "Munster Rugby Gaming", + "code": "MRG", + "image": "http://static.lolesports.com/teams/1641319033456_MunsterRugbyGaming.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "107565491287288872", + "slug": "nox-esports", + "name": "Nox Esports", + "code": "NOXE", + "image": "http://static.lolesports.com/teams/1641319138301_NoxEsports.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "NLC", + "region": "EMEA" + }, + "players": [ + { + "id": "112880372381731252", + "summonerName": "Ben01", + "firstName": "Ben", + "lastName": "Ben", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + } + ] + }, + { + "id": "107565493716773932", + "slug": "nativz", + "name": "Nativz", + "code": "NTZZ", + "image": "http://static.lolesports.com/teams/1715988495159_NativzNTZ.png", + "alternativeImage": "http://static.lolesports.com/teams/1715988495159_NativzNTZ.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [] + }, + { + "id": "107568522662440666", + "slug": "vanung-university", + "name": "Vanung University", + "code": "VNU", + "image": "http://static.lolesports.com/teams/1641365393356_LSCPlaceholder.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "PCS", + "region": "HONG KONG, MACAU, TAIWAN" + }, + "players": [] + }, + { + "id": "107568527232696441", + "slug": "hungkuang-university-falcon", + "name": "Hungkuang University Falcon", + "code": "HKFF", + "image": "http://static.lolesports.com/teams/1641365463856_LSCPlaceholder.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "PCS", + "region": "HONG KONG, MACAU, TAIWAN" + }, + "players": [ + { + "id": "112880372381731252", + "summonerName": "Ben01", + "firstName": "Ben", + "lastName": "Ben", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + } + ] + }, + { + "id": "107568538258435804", + "slug": "lee-ming-institute-of-technology", + "name": "Lee-Ming Institute of Technology", + "code": "LITS", + "image": "http://static.lolesports.com/teams/1641365633145_LSCPlaceholder.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "PCS", + "region": "HONG KONG, MACAU, TAIWAN" + }, + "players": [ + { + "id": "107568621293793045", + "summonerName": "DreamSha", + "firstName": "JUN-YUAN", + "lastName": "FEI", + "image": "https://static.lolesports.com/players/download.png", + "role": "none" + }, + { + "id": "107568623664164633", + "summonerName": "Weizhe", + "firstName": "WEI-ZHE", + "lastName": "LIN", + "image": "https://static.lolesports.com/players/download.png", + "role": "none" + }, + { + "id": "107568627512213686", + "summonerName": "RB1", + "firstName": "SHI-CHENG", + "lastName": "LIAN", + "image": "https://static.lolesports.com/players/download.png", + "role": "none" + }, + { + "id": "107568629753086138", + "summonerName": "Kanashim1", + "firstName": "XIU-YU", + "lastName": "LIN", + "image": "https://static.lolesports.com/players/download.png", + "role": "none" + }, + { + "id": "107568631685115686", + "summonerName": "RweiQQ", + "firstName": "GUAN-WEI", + "lastName": "ZHAN", + "image": "https://static.lolesports.com/players/download.png", + "role": "none" + }, + { + "id": "107568636690689834", + "summonerName": "Tuna1", + "firstName": "YU-WEI", + "lastName": "XIAO", + "image": "https://static.lolesports.com/players/download.png", + "role": "none" + }, + { + "id": "107568642955145014", + "summonerName": "Breeze1", + "firstName": "JIAN-YUAN", + "lastName": "HUANG", + "image": "https://static.lolesports.com/players/download.png", + "role": "none" + } + ] + }, + { + "id": "107568542043504763", + "slug": "li-chih-valuable-school", + "name": "Li-Chih Valuable School", + "code": "LCVS", + "image": "http://static.lolesports.com/teams/1641365690121_LSCPlaceholder.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "PCS", + "region": "HONG KONG, MACAU, TAIWAN" + }, + "players": [ + { + "id": "107568861060001689", + "summonerName": "TopRed", + "firstName": "SHANG-HONG", + "lastName": "WU", + "image": "https://static.lolesports.com/players/download.png", + "role": "none" + }, + { + "id": "107568863855608135", + "summonerName": "Pizza", + "firstName": "JIN-QUAN", + "lastName": "HUANG", + "image": "https://static.lolesports.com/players/download.png", + "role": "none" + }, + { + "id": "107568865915432862", + "summonerName": "WhosGone", + "firstName": "YI-CHENG", + "lastName": "KE", + "image": "https://static.lolesports.com/players/download.png", + "role": "none" + }, + { + "id": "107568868871696290", + "summonerName": "1026", + "firstName": "WEI-MING", + "lastName": "HUANG", + "image": "https://static.lolesports.com/players/download.png", + "role": "none" + }, + { + "id": "107568871205498790", + "summonerName": "Kazee", + "firstName": "TING-YE", + "lastName": "HU", + "image": "https://static.lolesports.com/players/download.png", + "role": "none" + }, + { + "id": "107568874645193035", + "summonerName": "Overtaker", + "firstName": "ZHENG-WEI", + "lastName": "CHEN", + "image": "https://static.lolesports.com/players/download.png", + "role": "none" + } + ] + }, + { + "id": "107574959289974368", + "slug": "odivelas-sports-club", + "name": "Odivelas Sports Club", + "code": "OSC", + "image": "http://static.lolesports.com/teams/1738418481925_osc.png", + "alternativeImage": "http://static.lolesports.com/teams/1738418481926_osc.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Liga Portuguesa", + "region": "EMEA" + }, + "players": [ + { + "id": "107609990080030048", + "summonerName": "D4SH", + "firstName": "João", + "lastName": "Gomes", + "image": "https://static.lolesports.com/players/download.png", + "role": "jungle" + }, + { + "id": "109711048218119044", + "summonerName": "Shourdy", + "firstName": "Lucas", + "lastName": "dos Santos", + "image": "http://static.lolesports.com/players/1753918230444_shourdyrdy.png", + "role": "top" + }, + { + "id": "113794431250116750", + "summonerName": "Zuhy", + "firstName": "Tariq", + "lastName": "Sami", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "107722015948711900", + "summonerName": "ardaffler", + "firstName": "Alexander", + "lastName": "Bogatkov", + "image": "http://static.lolesports.com/players/1753918257568_ardafflerrdy.png", + "role": "bottom" + }, + { + "id": "107610096828672138", + "summonerName": "towhat", + "firstName": "Tomás", + "lastName": "Pereira", + "image": "http://static.lolesports.com/players/1686930806571_placeholder.png", + "role": "support" + }, + { + "id": "105589323771073653", + "summonerName": "Renas", + "firstName": "Renato", + "lastName": "Ferreira", + "image": "https://static.lolesports.com/players/download.png", + "role": "top" + }, + { + "id": "113794433024459653", + "summonerName": "Rutzou", + "firstName": "Rützou", + "lastName": "Patrick", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "support" + } + ] + }, + { + "id": "107575082591536093", + "slug": "entropiq", + "name": "Entropiq", + "code": "EIQ", + "image": "http://static.lolesports.com/teams/1642690673730_HM_EIQ_logo_1_1_use_this.png", + "alternativeImage": "http://static.lolesports.com/teams/1642690673733_HM_EIQ_logo_1_1_use_this.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Hitpoint Masters", + "region": "EMEA" + }, + "players": [ + { + "id": "109659425140870069", + "summonerName": "Shift", + "firstName": "Bąk", + "lastName": "Marcel", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "jungle" + }, + { + "id": "102787200009142846", + "summonerName": "Robocop", + "firstName": "Ondřej ", + "lastName": "Sklenička", + "image": "https://static.lolesports.com/players/download.png", + "role": "top" + }, + { + "id": "111686267623123873", + "summonerName": "Wolorz", + "firstName": "Krzysztof", + "lastName": "Kasprzak", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "113981042245325718", + "summonerName": "Yen", + "firstName": "Fadi", + "lastName": "Behnam", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "102787200106595079", + "summonerName": "denyk", + "firstName": "Petr", + "lastName": "Haramach", + "image": "http://static.lolesports.com/players/XL_DENYK2021_summer.png", + "role": "none" + }, + { + "id": "106425058222401309", + "summonerName": "BrokenSword", + "firstName": "Filip", + "lastName": "Reiter", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "top" + } + ] + }, + { + "id": "107580444745581889", + "slug": "immortals-aoe", + "name": "Immortals AOE", + "code": "IMA", + "image": "http://static.lolesports.com/teams/1647477021350_immortals_aoe.png", + "alternativeImage": "http://static.lolesports.com/teams/1647477021352_immortals_aoe.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "98926509832738485", + "summonerName": "Brandini", + "firstName": "Brandon", + "lastName": "Chen", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/brandini-bw7nsdeq.png", + "role": "none" + }, + { + "id": "107577675052663305", + "summonerName": "animegirl", + "firstName": "Cheng", + "lastName": "Luo", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107577675394695693", + "summonerName": "Julius", + "firstName": "Jalen", + "lastName": "Key", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + } + ] + }, + { + "id": "107580455322240324", + "slug": "no-team", + "name": "No Team", + "code": "NOT", + "image": "http://static.lolesports.com/teams/1641604777609_NoTeam.png", + "alternativeImage": "http://static.lolesports.com/teams/1641604777611_NoTeam.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [] + }, + { + "id": "107580464493872335", + "slug": "radiance-dignitas", + "name": "Radiance Dignitas", + "code": "RAD", + "image": "http://static.lolesports.com/teams/1641547611287_LOLESPORTSICON.png", + "alternativeImage": "http://static.lolesports.com/teams/1641547611289_LOLESPORTSICON.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107577676134269382", + "summonerName": "Bluster", + "firstName": "Vinh", + "lastName": "Nguyen", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "105913332617566003", + "summonerName": "Raheen", + "firstName": "Sami", + "lastName": "Raheen", + "image": "http://static.lolesports.com/players/silhouette.png", + "role": "none" + }, + { + "id": "107577676348802820", + "summonerName": "Lightpulse", + "firstName": "Brett", + "lastName": "Narkiewicz", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + } + ] + }, + { + "id": "107580470307112265", + "slug": "bay-state-college-maroon", + "name": "Bay State College Maroon", + "code": "BAY", + "image": "http://static.lolesports.com/teams/1641603909157_BayState.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "104348845335505602", + "summonerName": "Dragonmin", + "firstName": "Yongmin", + "lastName": "Kim", + "image": "http://static.lolesports.com/players/1592686208198_FG-Dragonmin.png", + "role": "none" + }, + { + "id": "107578130738234393", + "summonerName": "SophistSage", + "firstName": "Tahyn", + "lastName": "Min", + "image": "http://static.lolesports.com/players/1675152837786_placeholder.png", + "role": "none" + }, + { + "id": "107584049724544086", + "summonerName": "Braine", + "firstName": "Braine", + "lastName": "Sales", + "image": "https://static.lolesports.com/players/download.png", + "role": "none" + }, + { + "id": "99566405785638494", + "summonerName": "Seranok", + "firstName": "Roodman", + "lastName": "Moron ", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/seranok-bmskjiuv.png", + "role": "none" + }, + { + "id": "107577676903662109", + "summonerName": "Bejjaniii", + "firstName": "Gerardo Andres Leon", + "lastName": "Bijani", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + } + ] + }, + { + "id": "107580475800733004", + "slug": "third-party", + "name": "Third Party", + "code": "3P", + "image": "http://static.lolesports.com/teams/1641604040961_3Plogo.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107828193298642891", + "summonerName": "Lunar", + "firstName": "Vincent", + "lastName": "Lin", + "image": "http://static.lolesports.com/players/1645327655074_silhouette_transparent.png", + "role": "none" + }, + { + "id": "106857861992787648", + "summonerName": "Dinka", + "firstName": "John", + "lastName": "Dinka", + "image": "http://static.lolesports.com/players/1630521573859_silhouette.png", + "role": "none" + }, + { + "id": "108369187155701442", + "summonerName": "Just", + "firstName": "Kim", + "lastName": "Andy", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + }, + { + "id": "108369187203739334", + "summonerName": "Dymon", + "firstName": "Bains", + "lastName": "Chloe", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + }, + { + "id": "108369187247995307", + "summonerName": "Traffi", + "firstName": "Lusk", + "lastName": "Nikolas", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + } + ] + }, + { + "id": "107580478675338454", + "slug": "dinka-neverhomelessagain", + "name": "Dinka NeverHomelessAgain", + "code": "DNHA", + "image": "http://static.lolesports.com/teams/1641604179752_LOLESPORTSICON.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "106857861992787648", + "summonerName": "Dinka", + "firstName": "John", + "lastName": "Dinka", + "image": "http://static.lolesports.com/players/1630521573859_silhouette.png", + "role": "none" + }, + { + "id": "106857836152939873", + "summonerName": "CptShrimps", + "firstName": "Daniel", + "lastName": "Yang", + "image": "http://static.lolesports.com/players/1630521179601_silhouette.png", + "role": "none" + }, + { + "id": "106857839058609509", + "summonerName": "Ino1", + "firstName": "Joe", + "lastName": "Miao", + "image": "http://static.lolesports.com/players/1630521224122_silhouette.png", + "role": "none" + }, + { + "id": "107577678085079603", + "summonerName": "Duoking1", + "firstName": "James", + "lastName": "Stephenson", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + } + ] + }, + { + "id": "107580481273119961", + "slug": "taco-gaming", + "name": "Taco Gaming", + "code": "TGGG", + "image": "http://static.lolesports.com/teams/1647477259074_taco_gaming.png", + "alternativeImage": "http://static.lolesports.com/teams/1647477259076_taco_gaming.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [] + }, + { + "id": "107580483738977500", + "slug": "winthrop-university", + "name": "Winthrop University", + "code": "WU", + "image": "http://static.lolesports.com/teams/1675157784150_WinthropUniversity.png", + "alternativeImage": "http://static.lolesports.com/teams/1675157784152_WinthropUniversity.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "NACL", + "region": "NORTH AMERICA" + }, + "players": [ + { + "id": "105504937746753855", + "summonerName": "Sword", + "firstName": "Rico", + "lastName": "Chen", + "image": "http://static.lolesports.com/players/tsm-sword.png", + "role": "mid" + }, + { + "id": "112606878573102145", + "summonerName": "Wilson", + "firstName": "Willy", + "lastName": "Benoit", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "108577048539332729", + "summonerName": "Mobility", + "firstName": "David", + "lastName": "Rigely Jr.", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "bottom" + }, + { + "id": "112606998393619681", + "summonerName": "Artem1s", + "firstName": "Connor", + "lastName": "Doyle", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "99591620723806690", + "summonerName": "Only35", + "firstName": "Mehmet", + "lastName": "Aydın", + "image": "http://static.lolesports.com/players/only35.png", + "role": "support" + }, + { + "id": "109783328469560319", + "summonerName": "papa", + "firstName": "Zachary", + "lastName": "Papanicolas", + "image": "http://static.lolesports.com/players/1675160650410_placeholder.png", + "role": "mid" + }, + { + "id": "114175369507652149", + "summonerName": "Tails", + "firstName": "Zixing", + "lastName": "Jie", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "107577680385917533", + "summonerName": "Chookies", + "firstName": "Charles", + "lastName": "Thornburgh", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "support" + }, + { + "id": "108577048167390593", + "summonerName": "Denathor", + "firstName": "Erikson", + "lastName": "Noah", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "top" + } + ] + }, + { + "id": "107580486722307295", + "slug": "nameless-randoms", + "name": "Nameless Randoms", + "code": "NR", + "image": "http://static.lolesports.com/teams/1641547950134_LOLESPORTSICON.png", + "alternativeImage": "http://static.lolesports.com/teams/1641547950135_LOLESPORTSICON.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107577679262992193", + "summonerName": "Jango", + "firstName": "Murad", + "lastName": "Malik", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107577679405105630", + "summonerName": "Detention", + "firstName": "Bentley", + "lastName": "Kozlowski", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107577679548826193", + "summonerName": "Zscore", + "firstName": "Debraj", + "lastName": "Bhowmik", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107577679355791173", + "summonerName": "Luck", + "firstName": "Jeremy", + "lastName": "Luckman", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107828128502980850", + "summonerName": "Z Score", + "firstName": "Debraj", + "lastName": "Bhowmik", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + }, + { + "id": "107828187016951751", + "summonerName": "Sin", + "firstName": "Ra'sor", + "lastName": "Woods", + "image": "http://static.lolesports.com/players/1645327558246_silhouette_transparent.png", + "role": "none" + }, + { + "id": "107828128638771446", + "summonerName": "Aero", + "firstName": "Daniel", + "lastName": "Wall", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + } + ] + }, + { + "id": "107580497041999074", + "slug": "team-ambition", + "name": "Team Ambition", + "code": "TA", + "image": "http://static.lolesports.com/teams/1675235626712_TeamAmbition.png", + "alternativeImage": "http://static.lolesports.com/teams/1675235626712_TeamAmbition.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107577681489871461", + "summonerName": "Leemo", + "firstName": "Liam", + "lastName": "Hodson", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "jungle" + }, + { + "id": "108369186859781506", + "summonerName": "Jisung", + "firstName": "Lee", + "lastName": "Justin", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "support" + }, + { + "id": "110536408550492347", + "summonerName": "Heretic", + "firstName": "Nicolas", + "lastName": "van Dolder", + "image": "http://static.lolesports.com/players/1686651743405_placeholder.png", + "role": "support" + }, + { + "id": "107577681865785858", + "summonerName": "Snow2", + "firstName": "Nicholas", + "lastName": "Sherrer", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "support" + }, + { + "id": "107577676059296194", + "summonerName": "porsche", + "firstName": "Shane", + "lastName": "Higgenbottom", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "mid" + }, + { + "id": "110535880045031281", + "summonerName": "deamon", + "firstName": "Samuel", + "lastName": "Moralejo", + "image": "http://static.lolesports.com/players/1686643679151_placeholder.png", + "role": "none" + }, + { + "id": "109981767653069815", + "summonerName": "Newby", + "firstName": "William", + "lastName": "Shen", + "image": "http://static.lolesports.com/players/1678188586871_placeholder.png", + "role": "none" + }, + { + "id": "109981770816880776", + "summonerName": "DK", + "firstName": "Yuot ", + "lastName": "Jacob Mayuom", + "image": "http://static.lolesports.com/players/1678188635154_placeholder.png", + "role": "none" + }, + { + "id": "108369194162712842", + "summonerName": "Plut0", + "firstName": "Jones", + "lastName": "Nicholas", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "support" + } + ] + }, + { + "id": "107580499570181349", + "slug": "wildcard-aces", + "name": "Wildcard Aces", + "code": "WCA", + "image": "http://static.lolesports.com/teams/1641604386605_Wildcard_Gaming_Logo-CollinRoe.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "107584097870238931", + "summonerName": "Jeremy", + "firstName": "Jeremy", + "lastName": "Gnas", + "image": "http://static.lolesports.com/players/1641603054141_silhouette.png", + "role": "none" + }, + { + "id": "107577680552478553", + "summonerName": "toastyalex", + "firstName": "Victor", + "lastName": "Chea", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107828128767244124", + "summonerName": "Min", + "firstName": "Seung", + "lastName": "Eon Min", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + } + ] + }, + { + "id": "107580502173795560", + "slug": "glaive-esports-prime", + "name": "Glaive Esports Prime", + "code": "GLV", + "image": "http://static.lolesports.com/teams/1641548186132_LOLESPORTSICON.png", + "alternativeImage": "http://static.lolesports.com/teams/1641548186133_LOLESPORTSICON.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107577680848536161", + "summonerName": "Tibs2", + "firstName": "Andrew", + "lastName": "Bayless", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107577680989831666", + "summonerName": "Zhadox", + "firstName": "Gunner", + "lastName": "Alsbury", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107577681088431969", + "summonerName": "Diomarr", + "firstName": "Diomarr", + "lastName": "Vicente", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107577681160421878", + "summonerName": "Cendilion", + "firstName": "Ian", + "lastName": "Ford", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "106042626069247955", + "summonerName": "Yasin", + "firstName": "Yasin", + "lastName": "Elshamy", + "image": "http://static.lolesports.com/players/silhouette.png", + "role": "none" + }, + { + "id": "107577681263313402", + "summonerName": "BTang", + "firstName": "Brandon", + "lastName": "Tang", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107577681320888165", + "summonerName": "rachet00", + "firstName": "Yaseen", + "lastName": "Ghani", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + } + ] + }, + { + "id": "107580504339335849", + "slug": "dare-red", + "name": "Dare Red", + "code": "DARE", + "image": "http://static.lolesports.com/teams/1641604465183_DARE.png", + "alternativeImage": "http://static.lolesports.com/teams/1641604465185_DARE.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107584101809442156", + "summonerName": "Censored", + "firstName": "Badhan", + "lastName": "Dasgupta", + "image": "http://static.lolesports.com/players/1641603113570_silhouette.png", + "role": "none" + }, + { + "id": "107577681489871461", + "summonerName": "Leemo", + "firstName": "Liam", + "lastName": "Hodson", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107577681565827689", + "summonerName": "Enigma", + "firstName": "Julien", + "lastName": "Mayrand", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107577681646274409", + "summonerName": "BMFX", + "firstName": "Bradley", + "lastName": "Lawson", + "image": "http://static.lolesports.com/players/1655452513821_BMFX.png", + "role": "none" + }, + { + "id": "107577681784652286", + "summonerName": "Blossoms", + "firstName": "Justin", + "lastName": "Guo", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107577681865785858", + "summonerName": "Snow2", + "firstName": "Nicholas", + "lastName": "Sherrer", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + } + ] + }, + { + "id": "107580506699777259", + "slug": "redbird-esports", + "name": "ISU Redbirds", + "code": "ISU", + "image": "http://static.lolesports.com/teams/1675158027629_RedbirdEsports.png", + "alternativeImage": "http://static.lolesports.com/teams/1675158027631_RedbirdEsports.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "107580510079272174", + "slug": "grand-view-university", + "name": "Grand View University", + "code": "GVU", + "image": "http://static.lolesports.com/teams/1650738414569_GrandView.png", + "alternativeImage": "http://static.lolesports.com/teams/1650738414572_GrandView.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107577682404295282", + "summonerName": "Prankuru", + "firstName": "Dalton", + "lastName": "Swaino", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107577682502926966", + "summonerName": "Kolthro", + "firstName": "Devin", + "lastName": "Drzewucki", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107577682586584955", + "summonerName": "Meslo", + "firstName": "Spencer", + "lastName": "Gega", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107577682684527120", + "summonerName": "airren", + "firstName": "Aaron", + "lastName": "Li", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107577682776408698", + "summonerName": "Plutx", + "firstName": "Nicholas", + "lastName": "Jones", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + } + ] + }, + { + "id": "107580513901038254", + "slug": "mount-olympus", + "name": "Mount Olympus", + "code": "MOGG", + "image": "http://static.lolesports.com/teams/1641604533869_MOGG.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107584112815723794", + "summonerName": "Edi", + "firstName": "Edison", + "lastName": "Er", + "image": "http://static.lolesports.com/players/1641603281778_silhouette.png", + "role": "none" + }, + { + "id": "107584116304432925", + "summonerName": "Subaruu", + "firstName": "Jack", + "lastName": "Pederson", + "image": "http://static.lolesports.com/players/1641603335234_silhouette.png", + "role": "none" + }, + { + "id": "107577682912395902", + "summonerName": "mode 0", + "firstName": "Jonathan", + "lastName": "Ju", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107577682999886466", + "summonerName": "Vace", + "firstName": "TJ", + "lastName": "Emmerman", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107577683106416511", + "summonerName": "LittleChimp", + "firstName": "Tyrus", + "lastName": "Martin", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107577683177685638", + "summonerName": "Turc", + "firstName": "Tyler", + "lastName": "Turcotte", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + } + ] + }, + { + "id": "107580516171991729", + "slug": "goose-gaming", + "name": "Goose Gaming", + "code": "GOOS", + "image": "http://static.lolesports.com/teams/1641604589009_GooseGaming.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107577683272909332", + "summonerName": "DarkX", + "firstName": "Kevin", + "lastName": "Cho", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107577683363252099", + "summonerName": "usephysics", + "firstName": "Ryan", + "lastName": "Tan", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107577683415943047", + "summonerName": "Callum Koi", + "firstName": "Callum", + "lastName": "Choi", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107577683463849867", + "summonerName": "Sai Desu", + "firstName": "Simon", + "lastName": "Yang", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107584119260337437", + "summonerName": "Nxhaustive", + "firstName": "Eric", + "lastName": "Jun", + "image": "http://static.lolesports.com/players/1641603380281_silhouette.png", + "role": "none" + } + ] + }, + { + "id": "107580518665143537", + "slug": "supernova-dark-matter", + "name": "Supernova Dark Matter", + "code": "SNDM", + "image": "http://static.lolesports.com/teams/1641548437277_LOLESPORTSICON.png", + "alternativeImage": "http://static.lolesports.com/teams/1641548437278_LOLESPORTSICON.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "107577683525191567", + "summonerName": "Boil", + "firstName": "Brock", + "lastName": "Hanson", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107577683636961930", + "summonerName": "Onehan", + "firstName": "Jehan", + "lastName": "Teveos", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107577683781633939", + "summonerName": "Han Jae", + "firstName": "Pao Meng", + "lastName": "Yang", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107577683835601550", + "summonerName": "Yaayeet", + "firstName": "Morgan", + "lastName": "Ferguson", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107577683962447767", + "summonerName": "Bellow", + "firstName": "Cameron", + "lastName": "Mason", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + } + ] + }, + { + "id": "107580522397025524", + "slug": "michigan-esports", + "name": "Michigan Esports", + "code": "MICH", + "image": "http://static.lolesports.com/teams/1641604643736_UMich.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107577684055015960", + "summonerName": "Shamwwow", + "firstName": "Miguel", + "lastName": "Magno", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107577684155844507", + "summonerName": "Jouzef", + "firstName": "Jouzef", + "lastName": "Barkho", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107577684222788124", + "summonerName": "omly", + "firstName": "Paul", + "lastName": "Davis", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107577684409959058", + "summonerName": "Tae", + "firstName": "Tae", + "lastName": "Ahn", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107577684491585439", + "summonerName": "Soma", + "firstName": "Angel", + "lastName": "Martinez", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107584125196784958", + "summonerName": "Maximos", + "firstName": "Maximos", + "lastName": "Nolan", + "image": "http://static.lolesports.com/players/1641603469831_silhouette.png", + "role": "none" + }, + { + "id": "107584126795797826", + "summonerName": "Cthulhu", + "firstName": "Adam", + "lastName": "Sak", + "image": "http://static.lolesports.com/players/1641603495454_silhouette.png", + "role": "none" + } + ] + }, + { + "id": "107580529604871415", + "slug": "no-ace", + "name": "No Ace", + "code": "NACE", + "image": "http://static.lolesports.com/teams/1641604694300_NoAce_Logo.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107584129018058061", + "summonerName": "Corgi Dorgi", + "firstName": "Quang", + "lastName": "Hoang", + "image": "http://static.lolesports.com/players/1641603529501_silhouette.png", + "role": "none" + }, + { + "id": "107577684635174819", + "summonerName": "Topo", + "firstName": "Charles", + "lastName": "Uram", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "99322380962940029", + "summonerName": "Kitzuo", + "firstName": "Thanh Dat", + "lastName": "Nguyen Tran", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/kitzuo-fcqvlwj2.png", + "role": "none" + }, + { + "id": "107577684746093206", + "summonerName": "Arguments", + "firstName": "Deion", + "lastName": "Cabahug", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107577684878279200", + "summonerName": "JOSS", + "firstName": "Wade", + "lastName": "Stanley", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + } + ] + }, + { + "id": "107580532321207546", + "slug": "uoft-blue", + "name": "UofT Blue", + "code": "UOTB", + "image": "http://static.lolesports.com/teams/1641548646245_LOLESPORTSICON.png", + "alternativeImage": "http://static.lolesports.com/teams/1641548646246_LOLESPORTSICON.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107577684930970266", + "summonerName": "Red Eclipse", + "firstName": "Daniel", + "lastName": "Priezjev", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107577684979500967", + "summonerName": "Spect", + "firstName": "Richard", + "lastName": "Gao", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107577685024589739", + "summonerName": "Pyoneer", + "firstName": "Aleks", + "lastName": "Todorov", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107577685120631454", + "summonerName": "Lancrize", + "firstName": "Alan", + "lastName": "Zhang", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107577685193017263", + "summonerName": "Regent", + "firstName": "Regent", + "lastName": "Wang", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + } + ] + }, + { + "id": "107580538776700241", + "slug": "verity-esports", + "name": "Verity Esports", + "code": "VES", + "image": "http://static.lolesports.com/teams/1641604740706_VE.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107577685791064738", + "summonerName": "Solitified", + "firstName": "Chad", + "lastName": "Randell", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107577685879341616", + "summonerName": "Riversided", + "firstName": "Otto", + "lastName": "Eulert", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107577685971616422", + "summonerName": "Nhavilay", + "firstName": "Lucas", + "lastName": "Nhavilay", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107577686017753652", + "summonerName": "Xav", + "firstName": "Xavier", + "lastName": "Vaillancourt", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107577686082568874", + "summonerName": "Legacy", + "firstName": "Andy", + "lastName": "Ejim", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107584132392834385", + "summonerName": "Matthew1924", + "firstName": "Mitchell", + "lastName": "Mullen", + "image": "http://static.lolesports.com/players/1641603581094_silhouette.png", + "role": "none" + } + ] + }, + { + "id": "107580542409426260", + "slug": "zodiac-esports", + "name": "Zodiac eSports", + "code": "ZDC", + "image": "http://static.lolesports.com/teams/1641548799921_LOLESPORTSICON.png", + "alternativeImage": "http://static.lolesports.com/teams/1641548799922_LOLESPORTSICON.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107577686163505720", + "summonerName": "ButterFan3", + "firstName": "Eric", + "lastName": "Choi", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107577686231663164", + "summonerName": "Gotoe11", + "firstName": "Ethan", + "lastName": "Neece", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107577686292349504", + "summonerName": "404", + "firstName": "Sicheng", + "lastName": "Fan", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107577686422996923", + "summonerName": "Khappa", + "firstName": "Kha", + "lastName": "Nguyen", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107577686495904324", + "summonerName": "Lefasa", + "firstName": "Kai", + "lastName": "Tsubakitani", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107577686604956334", + "summonerName": "FutureSelf", + "firstName": "David", + "lastName": "Le", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + } + ] + }, + { + "id": "107580544674612567", + "slug": "meme-city-esports", + "name": "Meme City Esports", + "code": "MCE", + "image": "http://static.lolesports.com/teams/1641548834544_LOLESPORTSICON.png", + "alternativeImage": "http://static.lolesports.com/teams/1641548834546_LOLESPORTSICON.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107577686671016520", + "summonerName": "Nappy", + "firstName": "Henry", + "lastName": "Li", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107577686727180876", + "summonerName": "Apathing", + "firstName": "David", + "lastName": "Rogers", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107577686795010640", + "summonerName": "Radar", + "firstName": "Eli", + "lastName": "Nelson", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107577687000762303", + "summonerName": "Caspian 9", + "firstName": "Cas", + "lastName": "Silva", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107577687080682068", + "summonerName": "Special Kay", + "firstName": "Karl", + "lastName": "Lepp", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + } + ] + }, + { + "id": "107581178720470377", + "slug": "arctic-gaming", + "name": "Arctic Gaming", + "code": "ARC", + "image": "http://static.lolesports.com/teams/1641752273349_ARCTIC-ColorLight.png", + "alternativeImage": "http://static.lolesports.com/teams/1641752273351_ARCTIC-ColorDark.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107581971668846395", + "summonerName": "Hierro", + "firstName": "Axel", + "lastName": "Arce Zúñiga", + "image": "http://static.lolesports.com/players/1641570602382_placeholder.png", + "role": "support" + }, + { + "id": "108293865484966296", + "summonerName": "Betosky", + "firstName": "Carlos Alberto", + "lastName": "Mendoza Hernández", + "image": "http://static.lolesports.com/players/1652433247722_placeholder.png", + "role": "support" + }, + { + "id": "107581310368859515", + "summonerName": "Steellar", + "firstName": "Francisco Antonio", + "lastName": "Taba Hueramo", + "image": "http://static.lolesports.com/players/1641560513875_placeholder.png", + "role": "top" + }, + { + "id": "107581340691645834", + "summonerName": "Chente", + "firstName": "Jesus Vicente", + "lastName": "Salto Malfavon", + "image": "http://static.lolesports.com/players/1641560976498_placeholder.png", + "role": "jungle" + }, + { + "id": "107581314399488706", + "summonerName": "Fayo", + "firstName": "Ángel Rodrigo", + "lastName": "Nandayapa Hernández", + "image": "http://static.lolesports.com/players/1641560574852_placeholder.png", + "role": "mid" + }, + { + "id": "108319684934892672", + "summonerName": "Had3s", + "firstName": "Axel Eduardo", + "lastName": "Abelar Álvarez", + "image": "https://static.lolesports.com/players/download.png", + "role": "bottom" + }, + { + "id": "107581319255999766", + "summonerName": "Hadez", + "firstName": "Axel Eduardo", + "lastName": "Abelar Álvarez", + "image": "http://static.lolesports.com/players/1641560649417_placeholder.png", + "role": "bottom" + }, + { + "id": "107581391114847695", + "summonerName": "Lio", + "firstName": "José Leonardo", + "lastName": "Rojas Mora", + "image": "http://static.lolesports.com/players/1641561745124_placeholder.png", + "role": "jungle" + } + ] + }, + { + "id": "107581206998502078", + "slug": "atheris-esports", + "name": "Atheris Esports", + "code": "ATH", + "image": "http://static.lolesports.com/teams/1641751879611_ATHERIS-ColorDark.png", + "alternativeImage": "http://static.lolesports.com/teams/1641751879613_ATHERIS-ColorLight.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "106614349987586968", + "summonerName": "Messi", + "firstName": "Sergio", + "lastName": "Hernandez", + "image": "http://static.lolesports.com/players/1675974915947_placeholder.png", + "role": "none" + }, + { + "id": "107797570623435850", + "summonerName": "Uprising", + "firstName": "Zurich", + "lastName": "Smith", + "image": "http://static.lolesports.com/players/1644860387230_placeholder.png", + "role": "top" + }, + { + "id": "109631367169030997", + "summonerName": "Fayonix", + "firstName": "Nandayapa Hernández", + "lastName": "Ángel Rodrigo", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "mid" + }, + { + "id": "99566405789497240", + "summonerName": "boLa", + "firstName": "Hector Manuel", + "lastName": "Delgado Jaramillo", + "image": "http://static.lolesports.com/players/1705340768582_EMP.png", + "role": "bottom" + }, + { + "id": "108293887940403506", + "summonerName": "Meteoro", + "firstName": "Angel Jonathan", + "lastName": "Bautista Espinosa", + "image": "http://static.lolesports.com/players/1652433590726_placeholder.png", + "role": "support" + }, + { + "id": "109631384602744226", + "summonerName": "Skyy", + "firstName": "Iván", + "lastName": "García Rivera", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "support" + }, + { + "id": "99566408545249117", + "summonerName": "Acerola", + "firstName": "Daniel ", + "lastName": "Villalobos", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/acerola-gdq0jtys.png", + "role": "jungle" + } + ] + }, + { + "id": "107581209070519555", + "slug": "atomic-esports", + "name": "Atomic Esports", + "code": "MC2", + "image": "http://static.lolesports.com/teams/1641751954441_ATOMIC-ColorDark.png", + "alternativeImage": "http://static.lolesports.com/teams/1641751954442_ATOMIC-ColorLight.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107581319255999766", + "summonerName": "Hadez", + "firstName": "Axel Eduardo", + "lastName": "Abelar Álvarez", + "image": "http://static.lolesports.com/players/1641560649417_placeholder.png", + "role": "bottom" + }, + { + "id": "107581392557819347", + "summonerName": "Kyoto", + "firstName": "Epxon", + "lastName": "Suanez Landa", + "image": "http://static.lolesports.com/players/1641561768822_placeholder.png", + "role": "mid" + }, + { + "id": "108293872810107175", + "summonerName": "Luu", + "firstName": "Javier", + "lastName": "Ventura Diaz", + "image": "http://static.lolesports.com/players/1652433359449_placeholder.png", + "role": "bottom" + }, + { + "id": "107582272137251011", + "summonerName": "ManuelCap", + "firstName": "Manuel Alejandro", + "lastName": "Cola Rodriguez", + "image": "http://static.lolesports.com/players/1641575194155_placeholder.png", + "role": "support" + }, + { + "id": "107582826301016673", + "summonerName": "Allerz", + "firstName": "Alvaro Paul", + "lastName": "Leyva Rodriguez", + "image": "http://static.lolesports.com/players/1641583650091_placeholder.png", + "role": "top" + } + ] + }, + { + "id": "107581212180071788", + "slug": "peek-gaming", + "name": "Xibalbá Esports", + "code": "XBA", + "image": "http://static.lolesports.com/teams/1752137022986_png.png", + "alternativeImage": "http://static.lolesports.com/teams/1752137022986_png.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LRN", + "region": "LATIN AMERICA NORTH" + }, + "players": [ + { + "id": "114861728835477893", + "summonerName": "Shinji", + "firstName": "Jafeth Noe ", + "lastName": "Herrera Morales", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "none" + }, + { + "id": "107581354951165339", + "summonerName": "Loers", + "firstName": "Hector", + "lastName": "Serrania", + "image": "http://static.lolesports.com/players/1641561194028_placeholder.png", + "role": "mid" + }, + { + "id": "114828353016313848", + "summonerName": "UC Escanor", + "firstName": "André", + "lastName": "Montesinos", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "114828354498991537", + "summonerName": "Kai1", + "firstName": "Angel Santiago", + "lastName": "saens aguilar", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "103658791348804139", + "summonerName": "Grimm", + "firstName": "Mariano", + "lastName": "Bueno", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/grimm-6nh1r4vz.png", + "role": "bottom" + }, + { + "id": "107581324146296090", + "summonerName": "Lyng", + "firstName": "Liyuan Tony", + "lastName": "Ng Feng", + "image": "http://static.lolesports.com/players/1641560723833_placeholder.png", + "role": "support" + }, + { + "id": "114911255343620824", + "summonerName": "Plush", + "firstName": "Juan", + "lastName": "Sánchez", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "none" + } + ] + }, + { + "id": "107581284487120142", + "slug": "six-karma", + "name": "Six Karma", + "code": "6K", + "image": "http://static.lolesports.com/teams/1705347064525_logo6k1-1.png", + "alternativeImage": "http://static.lolesports.com/teams/1705347064527_logo6k1-1.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LLA", + "region": "LATIN AMERICA" + }, + "players": [ + { + "id": "107582138681444331", + "summonerName": "IgnaVilu", + "firstName": "Nicolas", + "lastName": "Viluron", + "image": "http://static.lolesports.com/players/1718124927918_IgnaVilu.png", + "role": "support" + }, + { + "id": "106105043525540824", + "summonerName": "Dimitry", + "firstName": "Juan Dimitry", + "lastName": "Hernandez Gonzalez", + "image": "http://static.lolesports.com/players/1718124873090_Dimitry.png", + "role": "none" + }, + { + "id": "105320665816491252", + "summonerName": "5kid", + "firstName": "Jeonghyeon", + "lastName": "Park", + "image": "http://static.lolesports.com/players/1718124810535_5KID.png", + "role": "bottom" + }, + { + "id": "111705070493967329", + "summonerName": "ChinX", + "firstName": "Sergio", + "lastName": "Perez", + "image": "http://static.lolesports.com/players/1704994604580_EMP.png", + "role": "none" + } + ] + }, + { + "id": "107581287168722290", + "slug": "the-kings", + "name": "The Kings", + "code": "TK", + "image": "http://static.lolesports.com/teams/1641751989165_THE-KINGS-ColorDark.png", + "alternativeImage": "http://static.lolesports.com/teams/1641751989166_THE-KINGS-ColorLight.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "LLA", + "region": "LATIN AMERICA" + }, + "players": [ + { + "id": "112880372381731252", + "summonerName": "Ben01", + "firstName": "Ben", + "lastName": "Ben", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + } + ] + }, + { + "id": "107581296208168309", + "slug": "tomorrow-esports", + "name": "Tomorrow Esports", + "code": "TMR", + "image": "http://static.lolesports.com/teams/1684477219994_2morrocolor_white.png", + "alternativeImage": "http://static.lolesports.com/teams/1684477219996_2morrowcolor_black1.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107581371163788732", + "summonerName": "MrLemon", + "firstName": "Martín Eduardo", + "lastName": "Limon Hernández", + "image": "http://static.lolesports.com/players/1641561441238_placeholder.png", + "role": "jungle" + }, + { + "id": "112088672581535639", + "summonerName": "Icy1", + "firstName": "Andres Marcelo", + "lastName": "Barba Rodriguez", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "107581399620961759", + "summonerName": "Tempest", + "firstName": "Christian Andrés", + "lastName": "Martínez Álvarez", + "image": "http://static.lolesports.com/players/1641561876669_placeholder.png", + "role": "bottom" + } + ] + }, + { + "id": "107581300297680248", + "slug": "zylant-esports", + "name": "Zylant Esports", + "code": "ZLT", + "image": "http://static.lolesports.com/teams/1641752351089_ZYLANT-ColorDark.png", + "alternativeImage": "http://static.lolesports.com/teams/1641752351091_ZYLANT-ColorLight.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107741251636345247", + "summonerName": "SlayerSupr", + "firstName": "Angel Santiago", + "lastName": "Saens Aguilar", + "image": "http://static.lolesports.com/players/1644001028204_placeholder.png", + "role": "jungle" + }, + { + "id": "101422616479710577", + "summonerName": "Mayhem", + "firstName": "Homero", + "lastName": "Barrera", + "image": "http://static.lolesports.com/players/1592686049865_XTN-Mayhem.png", + "role": "top" + }, + { + "id": "99566408333803032", + "summonerName": "Nobody", + "firstName": "Nicolás", + "lastName": "Ale", + "image": "http://static.lolesports.com/players/1718124761836_Nobody.png", + "role": "mid" + }, + { + "id": "98767975933568904", + "summonerName": "Whitelotus", + "firstName": "Matías", + "lastName": "Musso", + "image": "http://static.lolesports.com/players/1704992886664_EMP.png", + "role": "bottom" + }, + { + "id": "109631373249249541", + "summonerName": "Ross", + "firstName": "Luna Rosas", + "lastName": "Carlos Gerardo", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "support" + }, + { + "id": "107581405069396736", + "summonerName": "Vares", + "firstName": "Adrián", + "lastName": "Olivares Olivares", + "image": "http://static.lolesports.com/players/1641561959168_placeholder.png", + "role": "mid" + } + ] + }, + { + "id": "107581689894520368", + "slug": "bandits", + "name": "Bandits Gaming", + "code": "BAND", + "image": "http://static.lolesports.com/teams/1760942250567_LOLESPORTSICON.png", + "alternativeImage": "http://static.lolesports.com/teams/1642594034711_BANDITS-ColorDark.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [] + }, + { + "id": "107581733744920199", + "slug": "goat-esports", + "name": "Goat Esports", + "code": "GOT", + "image": "http://static.lolesports.com/teams/1642594200821_GOAT-ESPORTS-ColorLight.png", + "alternativeImage": "http://static.lolesports.com/teams/1642594200821_GOAT-ESPORTS-Colordark.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107581845425245153", + "summonerName": "Umy", + "firstName": "Brandon Andres", + "lastName": "Zárate Murillo", + "image": "http://static.lolesports.com/players/1641568676567_placeholder.png", + "role": "top" + }, + { + "id": "107581854168599532", + "summonerName": "Peche", + "firstName": "José Alejandro", + "lastName": "Alvarado Tamayo", + "image": "http://static.lolesports.com/players/1641568808905_placeholder.png", + "role": "jungle" + }, + { + "id": "107581856382209008", + "summonerName": "Alen", + "firstName": "Giovanni", + "lastName": "Hernández Fragoso", + "image": "http://static.lolesports.com/players/1641568842320_placeholder.png", + "role": "mid" + }, + { + "id": "107581875252152013", + "summonerName": "Khaendis", + "firstName": "Steven", + "lastName": "Piedra Morales", + "image": "http://static.lolesports.com/players/1641569131062_placeholder.png", + "role": "bottom" + }, + { + "id": "107701348631885966", + "summonerName": "Cryps", + "firstName": "Brandon ", + "lastName": "Rodríguez Sánchez", + "image": "http://static.lolesports.com/players/1643392148949_placeholder.png", + "role": "jungle" + } + ] + }, + { + "id": "107581738783262346", + "slug": "gravity-elite", + "name": "Gravity Elite", + "code": "GVE", + "image": "http://static.lolesports.com/teams/1642594233575_GRAVITY-ColorLight.png", + "alternativeImage": "http://static.lolesports.com/teams/1642594233576_GRAVITY-ColorDark.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "108318783102050120", + "summonerName": "Orion1", + "firstName": "Garcia Montoya", + "lastName": "Santiago", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "mid" + }, + { + "id": "107876408648222200", + "summonerName": "Lustboy", + "firstName": "Aldrin Lenin", + "lastName": "Caballero Bonilla", + "image": "http://static.lolesports.com/players/1646063357685_silhouette_transparent.png", + "role": "support" + }, + { + "id": "107581866401384046", + "summonerName": "Varon", + "firstName": "Daniel Roberto", + "lastName": "Pineda Moreno", + "image": "http://static.lolesports.com/players/1641568995226_placeholder.png", + "role": "support" + }, + { + "id": "107581888518342292", + "summonerName": "Blindwalker", + "firstName": "Luis Alfredo", + "lastName": "Avendaño Tobal", + "image": "http://static.lolesports.com/players/1641569332027_placeholder.png", + "role": "jungle" + }, + { + "id": "107581941003110154", + "summonerName": "Godles", + "firstName": "David Alejandro", + "lastName": "Gonzalez", + "image": "http://static.lolesports.com/players/1641570134513_placeholder.png", + "role": "bottom" + }, + { + "id": "108489060108664623", + "summonerName": "iMinions", + "firstName": "Christian Alonso ", + "lastName": "Goti Alvarez", + "image": "http://static.lolesports.com/players/1655411682320_silhouette_transparent1.png", + "role": "support" + }, + { + "id": "107599452994035200", + "summonerName": "Pinky", + "firstName": "Oscar Adrian", + "lastName": "Gómez Morales", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "top" + } + ] + }, + { + "id": "107581750701049485", + "slug": "janus-esports", + "name": "Janus Panter", + "code": "JNS", + "image": "http://static.lolesports.com/teams/1711010192896_Panter_white.png", + "alternativeImage": "http://static.lolesports.com/teams/1711010192896_Panter_blak.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "112179927104446707", + "summonerName": "Timmer", + "firstName": "Alejandro Esteban", + "lastName": "Bernate Ashton", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "112255092379165614", + "summonerName": "1CE", + "firstName": "Gerardo", + "lastName": "Arroyo Vazquez", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "109631373249249541", + "summonerName": "Ross", + "firstName": "Luna Rosas", + "lastName": "Carlos Gerardo", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "support" + }, + { + "id": "99566405772696700", + "summonerName": "LiquidDiego", + "firstName": "Diego ", + "lastName": "Padilla", + "image": "http://static.lolesports.com/players/EST-LiquidDiego.png", + "role": "jungle" + }, + { + "id": "107581963636754167", + "summonerName": "Haka", + "firstName": "Rogelio Ivan", + "lastName": "Giles Gandarilla", + "image": "http://static.lolesports.com/players/1641570479940_placeholder.png", + "role": "top" + }, + { + "id": "112088564163977128", + "summonerName": "Nannini", + "firstName": "David Gabriel ", + "lastName": "Nannini Torres", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "112088583485081353", + "summonerName": "Oliver", + "firstName": "Oliver Jose", + "lastName": "Sufia Velasquez", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "112088584857863949", + "summonerName": "Gowhter", + "firstName": "Jien Liang", + "lastName": "Zeng Zheng ", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + } + ] + }, + { + "id": "107581755241449104", + "slug": "red-rooster", + "name": "Red Rooster", + "code": "RRR", + "image": "http://static.lolesports.com/teams/1642594296518_RED-ROSTER-ColorDark.png", + "alternativeImage": "http://static.lolesports.com/teams/1642594296520_RED-ROSTER-ColorDark.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107581968431367989", + "summonerName": "Alpha", + "firstName": "Derick Alexander", + "lastName": "Reyes Anzueto", + "image": "http://static.lolesports.com/players/1641570552473_placeholder.png", + "role": "mid" + }, + { + "id": "107581339117667718", + "summonerName": "Wrecking", + "firstName": "Khenmelt Omar", + "lastName": "Izaguirre Castillo", + "image": "http://static.lolesports.com/players/1641560951770_placeholder.png", + "role": "top" + }, + { + "id": "99566408545954947", + "summonerName": "Manu", + "firstName": "Manuel", + "lastName": "Villa", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/manu-6txji3d4.png", + "role": "bottom" + }, + { + "id": "108318778569656627", + "summonerName": "Godteddy", + "firstName": "Canales Rubi", + "lastName": "Max Donovan", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "support" + }, + { + "id": "107582071766797488", + "summonerName": "Merciful", + "firstName": "Joseph William", + "lastName": "Sánchez Bermudez", + "image": "http://static.lolesports.com/players/1641572129211_placeholder.png", + "role": "top" + }, + { + "id": "107876411811076705", + "summonerName": "Orange", + "firstName": "Alfredo", + "lastName": "Teran Perez", + "image": "http://static.lolesports.com/players/1646063405759_silhouette_transparent.png", + "role": "mid" + }, + { + "id": "107582070323070815", + "summonerName": "Andathy", + "firstName": "Alexis Efraín", + "lastName": "Ríos Bono", + "image": "http://static.lolesports.com/players/1641572106256_placeholder.png", + "role": "jungle" + }, + { + "id": "107582077180102556", + "summonerName": "Quasar", + "firstName": "Jean Luis", + "lastName": "Ramos Rivera", + "image": "http://static.lolesports.com/players/1641572211072_placeholder.png", + "role": "mid" + } + ] + }, + { + "id": "107581759470356115", + "slug": "saprissa-esports", + "name": "Saprissa Esports", + "code": "SAP", + "image": "http://static.lolesports.com/teams/1642594331651_SAPRISA-ColorLight.png", + "alternativeImage": "http://static.lolesports.com/teams/1642594331652_SAPRISA-ColorLight.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107582250533439637", + "summonerName": "Xpontaneous", + "firstName": "André Fernando", + "lastName": "Calvo Carvajal", + "image": "http://static.lolesports.com/players/1641574863847_placeholder.png", + "role": "bottom" + }, + { + "id": "99566408529296078", + "summonerName": "1an", + "firstName": "Ian", + "lastName": "Espinosa", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/1an-39per7qn.png", + "role": "jungle" + }, + { + "id": "109631669091964590", + "summonerName": "Adsiit", + "firstName": "Fenton Mayers", + "lastName": "Caleb", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "jungle" + } + ] + }, + { + "id": "107581761958954646", + "slug": "vandals-esports", + "name": "Vandals Esports", + "code": "VAN", + "image": "http://static.lolesports.com/teams/1642594369878_VANDALS-ColorLight.png", + "alternativeImage": "http://static.lolesports.com/teams/1642594369879_VANDALS-ColorDark.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "108334873569485808", + "summonerName": "Electric", + "firstName": "Ronald Tomas", + "lastName": "De Leon Infante", + "image": "http://static.lolesports.com/players/1653058982669_placeholder.png", + "role": "top" + }, + { + "id": "107581837051348653", + "summonerName": "Blackengel", + "firstName": "Engel", + "lastName": "Martínez González", + "image": "http://static.lolesports.com/players/1641568548554_placeholder.png", + "role": "mid" + }, + { + "id": "107581807747778204", + "summonerName": "Lance", + "firstName": "Rafael Enmanuel", + "lastName": "Romero Peña", + "image": "http://static.lolesports.com/players/1641568101069_placeholder.png", + "role": "support" + }, + { + "id": "109631670224011841", + "summonerName": "Sharp30", + "firstName": "Sharp Rodríguez", + "lastName": "Michael Moises", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "support" + }, + { + "id": "109675102379971264", + "summonerName": "GATO", + "firstName": "Sergio Steven", + "lastName": "Bautista Grajales", + "image": "http://static.lolesports.com/players/1673509250709_placeholder.png", + "role": "jungle" + }, + { + "id": "108318778636191295", + "summonerName": "Lullaby", + "firstName": "Lara de Leon", + "lastName": "Sebastian", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "jungle" + }, + { + "id": "108318778684759358", + "summonerName": "Daycrow", + "firstName": "Mercado Padilla", + "lastName": "Sebastian Emil", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "bottom" + } + ] + }, + { + "id": "107581765633427097", + "slug": "fuego", + "name": "Fuego", + "code": "FUE", + "image": "http://static.lolesports.com/teams/1711010140737_FUEGO-C.png", + "alternativeImage": "http://static.lolesports.com/teams/1642594085878_FUEGO-ColorDark.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LRN", + "region": "LATIN AMERICA NORTH" + }, + "players": [ + { + "id": "107599454276408797", + "summonerName": "Yesidku", + "firstName": "Yesid Esneider", + "lastName": "Rodriguez Olaya", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "114911254549062348", + "summonerName": "Mwf", + "firstName": "Martin ", + "lastName": "Botero", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "none" + }, + { + "id": "114911254619382480", + "summonerName": "Kouke", + "firstName": "Jorge Eduardo ", + "lastName": "Bravo Gonzalez", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "none" + }, + { + "id": "114911254689758066", + "summonerName": "Soren", + "firstName": "Carlos Alan ", + "lastName": "Ibarra Larraga", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "none" + }, + { + "id": "99566408548798069", + "summonerName": "Zelt", + "firstName": "Jairo", + "lastName": "Urbina", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/zelt-b05dx6m.png", + "role": "mid" + }, + { + "id": "114828213665478253", + "summonerName": "Jelly1", + "firstName": "Ho Kyeong", + "lastName": "Son", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "114194564351011213", + "summonerName": "Devost", + "firstName": "Jairo Camilo", + "lastName": "Urbina Orozco", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "114194572740209046", + "summonerName": "Booki", + "firstName": "Omar Andre", + "lastName": "Gavotto Felix", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "103727753345856483", + "summonerName": "Gavotto", + "firstName": "Omar", + "lastName": "Gavotto", + "image": "http://static.lolesports.com/players/1718125476797_Gavotto.png", + "role": "bottom" + } + ] + }, + { + "id": "107582150625414483", + "slug": "aces-gaming", + "name": "AceS GaminG", + "code": "ACS", + "image": "http://static.lolesports.com/teams/1643106711669_ACES-GAMING-ColorDark.png", + "alternativeImage": "http://static.lolesports.com/teams/1643106711671_ACES-GAMING-ColorLight.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107582218931193963", + "summonerName": "Nuclex", + "firstName": "José Andrés", + "lastName": "Garzón Izquierdo", + "image": "http://static.lolesports.com/players/1641574380780_placeholder.png", + "role": "mid" + }, + { + "id": "107582225029515312", + "summonerName": "Neith", + "firstName": "Diego Alessandro", + "lastName": "Guillén Gutierréz", + "image": "http://static.lolesports.com/players/1641574474842_placeholder.png", + "role": "support" + }, + { + "id": "108319754520682666", + "summonerName": "Jhoel", + "firstName": "Espiritu Papa", + "lastName": "Jhoel Jhordan", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "jungle" + }, + { + "id": "107599451867895221", + "summonerName": "Gary", + "firstName": "Juan José", + "lastName": "Esmeral Flórez", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "bottom" + }, + { + "id": "107582227788384392", + "summonerName": "Senshi", + "firstName": "Angello German", + "lastName": "Molina Quiroga", + "image": "http://static.lolesports.com/players/1641574517684_placeholder.png", + "role": "support" + }, + { + "id": "107887740993645182", + "summonerName": "Rhal", + "firstName": "Fernando", + "lastName": "Salazar Rios", + "image": "http://static.lolesports.com/players/1646236282531_placeholder.png", + "role": "top" + }, + { + "id": "107582373166434586", + "summonerName": "Eggsy", + "firstName": "Joseph Alexander", + "lastName": "Sanchez Rios", + "image": "http://static.lolesports.com/players/1641576735157_placeholder.png", + "role": "bottom" + }, + { + "id": "108121085260600546", + "summonerName": "Carita", + "firstName": "Pardo Avendaño", + "lastName": "Carlos Eduardo ", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "top" + }, + { + "id": "108432158401683787", + "summonerName": "Cabrito", + "firstName": "Juan José ", + "lastName": "Cabrera Becerra", + "image": "http://static.lolesports.com/players/1654543431261_silhouette_transparent1.png", + "role": "support" + } + ] + }, + { + "id": "107582157086477662", + "slug": "descuydado-esports", + "name": "DSC 3V", + "code": "D3V", + "image": "http://static.lolesports.com/teams/1711010091875_3v_white.png", + "alternativeImage": "http://static.lolesports.com/teams/1711010091875_3v_blak.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "112088558868149498", + "summonerName": "Winder", + "firstName": "Winder Jose", + "lastName": "Sousa Trillo ", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "107581837051348653", + "summonerName": "Blackengel", + "firstName": "Engel", + "lastName": "Martínez González", + "image": "http://static.lolesports.com/players/1641568548554_placeholder.png", + "role": "mid" + }, + { + "id": "99566405795854686", + "summonerName": "Kitin", + "firstName": "Carlos", + "lastName": "Zhong", + "image": "https://static.lolesports.com/players/download.png", + "role": "bottom" + }, + { + "id": "112088562875146146", + "summonerName": "Ermoke", + "firstName": "Juan Carlos", + "lastName": "Camargo Salazar", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "107576630774775790", + "summonerName": "yerikan", + "firstName": "Richard", + "lastName": "Torres", + "image": "http://static.lolesports.com/players/1704992924443_EMP.png", + "role": "support" + }, + { + "id": "112260446749208748", + "summonerName": "Mitir", + "firstName": "Juan Diego", + "lastName": "Orozco Orozco", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "jungle" + } + ] + }, + { + "id": "107582169874155554", + "slug": "gods-plan", + "name": "God's Plan", + "code": "GDP", + "image": "http://static.lolesports.com/teams/1643106743740_GODS-PLAN-ColorDark.png", + "alternativeImage": "http://static.lolesports.com/teams/1643106743742_GODS-PLAN-ColorLight.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "99921042946981024", + "summonerName": "Kanra", + "firstName": "Pedro", + "lastName": "Abad", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/kanra-cvghrg2a.png", + "role": "top" + }, + { + "id": "107684503737437142", + "summonerName": "No One", + "firstName": "Santiago", + "lastName": "Echavarria Rojas", + "image": "http://static.lolesports.com/players/1643135123075_placeholder.png", + "role": "jungle" + }, + { + "id": "107582306813921447", + "summonerName": "Jason", + "firstName": "Kevin Jason", + "lastName": "Yuquilema Lema", + "image": "http://static.lolesports.com/players/1641575723061_placeholder.png", + "role": "mid" + }, + { + "id": "107582338424721077", + "summonerName": "Rex", + "firstName": "Emilio David", + "lastName": "Gómez Arias", + "image": "http://static.lolesports.com/players/1641576206629_placeholder.png", + "role": "bottom" + }, + { + "id": "107582291121098310", + "summonerName": "Macucho", + "firstName": "Marlon Gabriel", + "lastName": "Machuca Mena", + "image": "http://static.lolesports.com/players/1641575483409_placeholder.png", + "role": "support" + }, + { + "id": "108319755069947109", + "summonerName": "Chokem", + "firstName": "García Guerrero", + "lastName": "Isaac", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "support" + } + ] + }, + { + "id": "107582173169864040", + "slug": "geekside-esports", + "name": "GeekSide Esports", + "code": "GSE", + "image": "http://static.lolesports.com/teams/1643106755632_GEEKSIDE-ESPORTS-ColorLight.png", + "alternativeImage": "http://static.lolesports.com/teams/1643106755635_GEEKSIDE-ESPORTS-ColorDark.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107582758782324715", + "summonerName": "PiuPiu", + "firstName": "Sergio Alberto", + "lastName": "Nakaya Yamashiro", + "image": "http://static.lolesports.com/players/1641582619423_placeholder.png", + "role": "bottom" + }, + { + "id": "107582291121098310", + "summonerName": "Macucho", + "firstName": "Marlon Gabriel", + "lastName": "Machuca Mena", + "image": "http://static.lolesports.com/players/1641575483409_placeholder.png", + "role": "support" + }, + { + "id": "109716208470583967", + "summonerName": "Infamous", + "firstName": "Abner", + "lastName": "Díaz Galván", + "image": "http://static.lolesports.com/players/1674136480861_placeholder.png", + "role": "mid" + }, + { + "id": "107582263087188132", + "summonerName": "Akemi", + "firstName": "Joseph Anthony", + "lastName": "Romero Naranjo", + "image": "http://static.lolesports.com/players/1641575055842_placeholder.png", + "role": "top" + }, + { + "id": "109698215305354050", + "summonerName": "Samriser", + "firstName": "Dioggo Samuel", + "lastName": "Alarcon Zambrano", + "image": "http://static.lolesports.com/players/1673861926687_placeholder.png", + "role": "jungle" + }, + { + "id": "107582373166434586", + "summonerName": "Eggsy", + "firstName": "Joseph Alexander", + "lastName": "Sanchez Rios", + "image": "http://static.lolesports.com/players/1641576735157_placeholder.png", + "role": "bottom" + }, + { + "id": "109698222342275356", + "summonerName": "Whiplash", + "firstName": "Carlos Eduardo", + "lastName": "Lopez Tarazona", + "image": "http://static.lolesports.com/players/1673862034150_placeholder.png", + "role": "support" + }, + { + "id": "108562794357750717", + "summonerName": "Cuchi", + "firstName": "Jose Eduardo ", + "lastName": "Santamaria Suarez", + "image": "https://static.lolesports.com/players/download.png", + "role": "support" + } + ] + }, + { + "id": "107582176093752697", + "slug": "hooked-esports", + "name": "Hooked Esports", + "code": "HK", + "image": "http://static.lolesports.com/teams/1643106766805_HOOKED-ESPORTS-ColorLight.png", + "alternativeImage": "http://static.lolesports.com/teams/1643106766807_HOOKED-ESPORTS-ColorDark.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107582300749482271", + "summonerName": "Tiann", + "firstName": "Cristian David", + "lastName": "Garcia Fuentes", + "image": "http://static.lolesports.com/players/1641575630527_placeholder.png", + "role": "jungle" + }, + { + "id": "107582308570745144", + "summonerName": "Duel", + "firstName": "Jim Henry", + "lastName": "Alvear Pizarro", + "image": "http://static.lolesports.com/players/1641575750162_placeholder.png", + "role": "bottom" + }, + { + "id": "107582310524963152", + "summonerName": "Minalup", + "firstName": "Emilio Roberto", + "lastName": "Shive Delgado", + "image": "http://static.lolesports.com/players/1641575779145_placeholder.png", + "role": "support" + }, + { + "id": "107582312354597046", + "summonerName": "Krazus", + "firstName": "Galo Jair", + "lastName": "Enriquez Ojeda", + "image": "http://static.lolesports.com/players/1641575805503_placeholder.png", + "role": "support" + }, + { + "id": "107701318069827707", + "summonerName": "BitterBit", + "firstName": "Daniel Sebastian", + "lastName": "Silva Paredes", + "image": "http://static.lolesports.com/players/1643391682698_placeholder.png", + "role": "bottom" + }, + { + "id": "108005996564428531", + "summonerName": "Cezz", + "firstName": "Cesar Augusto", + "lastName": "Caputo Tammarao", + "image": "https://static.lolesports.com/players/download.png", + "role": "support" + }, + { + "id": "108006000694617329", + "summonerName": "Mistt", + "firstName": "Michael Alexander", + "lastName": "Parra Guerrero", + "image": "https://static.lolesports.com/players/download.png", + "role": "jungle" + }, + { + "id": "108006002215904309", + "summonerName": "Bojji", + "firstName": "JOSUE ISAIAS", + "lastName": "FIERRO GONZALEZ", + "image": "https://static.lolesports.com/players/download.png", + "role": "bottom" + }, + { + "id": "108006011841832189", + "summonerName": "Rexuss", + "firstName": "Marco Nicolás", + "lastName": "Maldonado Aguirre", + "image": "https://static.lolesports.com/players/download.png", + "role": "top" + }, + { + "id": "107615825276925121", + "summonerName": "Tiansito", + "firstName": "Cristian David", + "lastName": "Garcia Fuentes", + "image": "http://static.lolesports.com/players/1642087167703_placeholder.png", + "role": "jungle" + } + ] + }, + { + "id": "107582178455767077", + "slug": "pirate-dream", + "name": "Pirate Dream", + "code": "PD", + "image": "http://static.lolesports.com/teams/1673859566656_PIRATE-DREAM.png", + "alternativeImage": "http://static.lolesports.com/teams/1673859566657_PIRATE-DREAM.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "104308349418195961", + "summonerName": "Nagi", + "firstName": "Genta", + "lastName": "Tada", + "image": "http://static.lolesports.com/players/1592294324422_RJ_Nagi.png", + "role": "top" + }, + { + "id": "107582087189350313", + "summonerName": "Renyu", + "firstName": "Renato Josue", + "lastName": "Gallegos Muñoz", + "image": "http://static.lolesports.com/players/1641572364617_placeholder.png", + "role": "bottom" + }, + { + "id": "107615823293246498", + "summonerName": "Zzzofia", + "firstName": "Paolo Alexander", + "lastName": "Falconi Cachimuel", + "image": "http://static.lolesports.com/players/1642087137569_placeholder.png", + "role": "support" + }, + { + "id": "107582218931193963", + "summonerName": "Nuclex", + "firstName": "José Andrés", + "lastName": "Garzón Izquierdo", + "image": "http://static.lolesports.com/players/1641574380780_placeholder.png", + "role": "mid" + }, + { + "id": "109698276293008934", + "summonerName": "Nagii", + "firstName": "William", + "lastName": "Caiza", + "image": "http://static.lolesports.com/players/1673862857647_placeholder.png", + "role": "top" + }, + { + "id": "109698345269090063", + "summonerName": "Joxardo", + "firstName": "Yashi Joshua", + "lastName": "Cordova Matango", + "image": "http://static.lolesports.com/players/1673863909992_placeholder.png", + "role": "top" + }, + { + "id": "107582348101570242", + "summonerName": "iFrix", + "firstName": "Jean Carlos", + "lastName": "Cedeño Gonzaga", + "image": "http://static.lolesports.com/players/1641576352338_placeholder.png", + "role": "jungle" + }, + { + "id": "107581405069396736", + "summonerName": "Vares", + "firstName": "Adrián", + "lastName": "Olivares Olivares", + "image": "http://static.lolesports.com/players/1641561959168_placeholder.png", + "role": "mid" + } + ] + }, + { + "id": "107582181197106556", + "slug": "skull-cracker-clan", + "name": "Skull Cracker Clan", + "code": "SKC", + "image": "http://static.lolesports.com/teams/1643106792367_SKULL-CRACKER-ColorLight.png", + "alternativeImage": "http://static.lolesports.com/teams/1643106792369_SKULL-CRACKER-ColorDark.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "108319755698167983", + "summonerName": "Lit King", + "firstName": "Díaz Lozano", + "lastName": "Harold Alexander", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "jungle" + }, + { + "id": "108319755861319279", + "summonerName": "Medevv", + "firstName": "Montenegro Arteaga", + "lastName": "Eddy Jordano", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "mid" + }, + { + "id": "109843183559264200", + "summonerName": "Azomali", + "firstName": "Carlos", + "lastName": "Martinez", + "image": "http://static.lolesports.com/players/1676073965395_silhouette_transparent1.png", + "role": "bottom" + }, + { + "id": "109698306469287659", + "summonerName": "Sherkaan", + "firstName": "Ricardo Alejandro", + "lastName": "Suárez Tapia", + "image": "http://static.lolesports.com/players/1673863318158_placeholder.png", + "role": "top" + }, + { + "id": "109698311481910493", + "summonerName": "Whoshills", + "firstName": "Aron Axel", + "lastName": "Espinoza vivas", + "image": "http://static.lolesports.com/players/1673863394539_placeholder.png", + "role": "bottom" + }, + { + "id": "109698314427620916", + "summonerName": "StarDragon", + "firstName": "Andres Enrique", + "lastName": "Escate Cordova", + "image": "http://static.lolesports.com/players/1673863439658_placeholder.png", + "role": "support" + }, + { + "id": "107582227788384392", + "summonerName": "Senshi", + "firstName": "Angello German", + "lastName": "Molina Quiroga", + "image": "http://static.lolesports.com/players/1641574517684_placeholder.png", + "role": "mid" + } + ] + }, + { + "id": "107582184905264520", + "slug": "waia-snikt", + "name": "Waia Snikt", + "code": "WS", + "image": "http://static.lolesports.com/teams/1643106805734_WAIA-ColorLight.png", + "alternativeImage": "http://static.lolesports.com/teams/1643106805736_WAIA-ColorDark.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "108319314330410420", + "summonerName": "Felkros ", + "firstName": "Yanquen Jaime", + "lastName": "Alex Felipe", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "support" + }, + { + "id": "107581882772179967", + "summonerName": "JTL", + "firstName": "Juan David", + "lastName": "Torrente Lopez", + "image": "http://static.lolesports.com/players/1641569245728_placeholder.png", + "role": "top" + }, + { + "id": "107581965653265494", + "summonerName": "Jean", + "firstName": "Jean Carlos", + "lastName": "Ortega Palma", + "image": "http://static.lolesports.com/players/1641570510465_placeholder.png", + "role": "jungle" + }, + { + "id": "108318778293896762", + "summonerName": "Kobrq", + "firstName": "Arce Venegas", + "lastName": "José Julián", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "mid" + }, + { + "id": "107581858880210538", + "summonerName": "Catan", + "firstName": "Dylan", + "lastName": "Bravo Polo", + "image": "http://static.lolesports.com/players/1641568881020_placeholder.png", + "role": "bottom" + }, + { + "id": "109716192364259988", + "summonerName": "Kase", + "firstName": "Juan Fernando", + "lastName": "Bernal Garzón", + "image": "http://static.lolesports.com/players/1674136234584_placeholder.png", + "role": "jungle" + }, + { + "id": "112285298088910809", + "summonerName": "Conta", + "firstName": "Emiliano", + "lastName": "Diaz Arellano Sanchez", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "top" + } + ] + }, + { + "id": "107582591908138922", + "slug": "cienciano", + "name": "Cienciano", + "code": "CCC", + "image": "http://static.lolesports.com/teams/1642595295545_CIENCIANO-White.png", + "alternativeImage": "http://static.lolesports.com/teams/1642595295546_CIENCIANO-Black.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107582835316804436", + "summonerName": "Perseo", + "firstName": "Luis Enrique", + "lastName": "Quinto Nuñovero", + "image": "http://static.lolesports.com/players/1641583787516_placeholder.png", + "role": "top" + }, + { + "id": "107582836635585368", + "summonerName": "TsunTsun", + "firstName": "Dylan", + "lastName": "Pecho Gonzales", + "image": "http://static.lolesports.com/players/1641583808528_placeholder.png", + "role": "jungle" + }, + { + "id": "107582822912249933", + "summonerName": "DINASTIK", + "firstName": "Jaime Andres", + "lastName": "Ramirez Quezada", + "image": "http://static.lolesports.com/players/1641583597922_placeholder.png", + "role": "mid" + }, + { + "id": "107582824781729880", + "summonerName": "Xamexx", + "firstName": "Andres Eduardo", + "lastName": "Colan Gutierrez", + "image": "http://static.lolesports.com/players/1641583624770_placeholder.png", + "role": "bottom" + }, + { + "id": "107582717762128607", + "summonerName": "Pyro", + "firstName": "Anthony", + "lastName": "Gonzales Cosavalente", + "image": "http://static.lolesports.com/players/1641581994101_placeholder.png", + "role": "top" + }, + { + "id": "108319774511794863", + "summonerName": "Vepc", + "firstName": "Diaz Pardo", + "lastName": "Israel David", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "mid" + }, + { + "id": "107582812432419390", + "summonerName": "Alex Mercer", + "firstName": "Giomar Alfredo", + "lastName": "Ojeda Molina", + "image": "http://static.lolesports.com/players/1641583438644_placeholder.png", + "role": "top" + }, + { + "id": "107598797866849433", + "summonerName": "CUEST1ON", + "firstName": "JESÚS AARON", + "lastName": "GONZÁLEZ AVENDAÑO", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "bottom" + } + ] + }, + { + "id": "107582598621022934", + "slug": "club-deportivo-municipal", + "name": "Club Deportivo Municipal", + "code": "CDM", + "image": "http://static.lolesports.com/teams/1642595396011_CLUB-DEPORTIVO-MUNICIPAL-White.png", + "alternativeImage": "http://static.lolesports.com/teams/1642595396012_CLUB-DEPORTIVO-MUNICIPAL-Black.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107582737635658240", + "summonerName": "Terco", + "firstName": "Gianfranco Raul", + "lastName": "Olivares Ogusuki", + "image": "http://static.lolesports.com/players/1641582297313_placeholder.png", + "role": "top" + }, + { + "id": "99921042949122311", + "summonerName": "Skanito", + "firstName": "Harold", + "lastName": "Quispe", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/skanito-89p8kbhg.png", + "role": "support" + }, + { + "id": "107812736701371235", + "summonerName": "Leocich", + "firstName": "Leonardo", + "lastName": "Leiva Munoz", + "image": "http://static.lolesports.com/players/1645091800655_placeholder.png", + "role": "top" + }, + { + "id": "107933666861237074", + "summonerName": "Janghy", + "firstName": "Leonardo", + "lastName": "Leiva Muñoz", + "image": "http://static.lolesports.com/players/1646937050482_placeholder.png", + "role": "jungle" + }, + { + "id": "107582735999093244", + "summonerName": "ElOjoInka", + "firstName": "HARVEY DYLAN", + "lastName": "ROLDAN FERNÁNDEZ", + "image": "http://static.lolesports.com/players/1641582272044_placeholder.png", + "role": "jungle" + } + ] + }, + { + "id": "107582609836036013", + "slug": "diamond-doves", + "name": "Diamond Doves", + "code": "DD", + "image": "http://static.lolesports.com/teams/1642595485741_DIAMOND-DOVES-White.png", + "alternativeImage": "http://static.lolesports.com/teams/1642595485742_DIAMOND-DOVES-Black.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "108319775488649492", + "summonerName": "deathleap", + "firstName": "Ramirez Pantoja", + "lastName": "Gonzalo Ignacio", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "top" + }, + { + "id": "109698626872204991", + "summonerName": "Kalium", + "firstName": "Fernando Nicolás", + "lastName": "Rosales Urrutia", + "image": "http://static.lolesports.com/players/1673868207212_placeholder.png", + "role": "jungle" + }, + { + "id": "109698630983697673", + "summonerName": "Toady", + "firstName": "Bruno Maximiliano", + "lastName": "Guechaqueo Quintana", + "image": "http://static.lolesports.com/players/1673868270026_placeholder.png", + "role": "mid" + }, + { + "id": "109698643625829770", + "summonerName": "Kasamura", + "firstName": "Adrian Alejandro", + "lastName": "Cerna Tamara", + "image": "http://static.lolesports.com/players/1673868462886_placeholder.png", + "role": "bottom" + }, + { + "id": "109698648844289309", + "summonerName": "Edo", + "firstName": "Johan Daniel", + "lastName": "Diaz Vasquez", + "image": "http://static.lolesports.com/players/1673868543000_placeholder.png", + "role": "support" + }, + { + "id": "107582760687718383", + "summonerName": "Adryyyyh", + "firstName": "Adrian Rahí", + "lastName": "Herrera Otero", + "image": "http://static.lolesports.com/players/1641582649016_placeholder.png", + "role": "support" + }, + { + "id": "107582764822253555", + "summonerName": "HarryLaCruu", + "firstName": "Harryson Hugo", + "lastName": "Cordero Castillo", + "image": "http://static.lolesports.com/players/1641582711526_placeholder.png", + "role": "jungle" + }, + { + "id": "109953697350472432", + "summonerName": "Khl", + "firstName": "Carlos Enrique", + "lastName": "Vilchez Medina", + "image": "http://static.lolesports.com/players/1677760271826_placeholder.png", + "role": "support" + }, + { + "id": "108319838691461960", + "summonerName": "Pet", + "firstName": "Leonardo Roberto", + "lastName": "Silva Seminario", + "image": "https://static.lolesports.com/players/download.png", + "role": "top" + } + ] + }, + { + "id": "107582613263241138", + "slug": "deliverance-esports", + "name": "Deliverance Esports", + "code": "DVE", + "image": "http://static.lolesports.com/teams/1642595447584_DELIVERANCE-ESPORTS-White.png", + "alternativeImage": "http://static.lolesports.com/teams/1642595447585_DELIVERANCE-ESPORTS-Black.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107769375841076732", + "summonerName": "DarkMoon", + "firstName": "Jorge Salvador", + "lastName": "Baca Paz", + "image": "http://static.lolesports.com/players/1644430172813_placeholder.png", + "role": "top" + }, + { + "id": "107769377722527374", + "summonerName": "Yatooo", + "firstName": "Walter David Julio", + "lastName": "Vargas Soto", + "image": "http://static.lolesports.com/players/1644430201070_placeholder.png", + "role": "jungle" + }, + { + "id": "107729977311545959", + "summonerName": "Thoughless", + "firstName": "Eduardo Arturo", + "lastName": "Anchi Campos", + "image": "http://static.lolesports.com/players/1643828996639_placeholder.png", + "role": "top" + }, + { + "id": "107729979793780150", + "summonerName": "XTegos", + "firstName": "Edwards Joaquin", + "lastName": "Bustinza Mamani", + "image": "http://static.lolesports.com/players/1643829035367_placeholder.png", + "role": "jungle" + }, + { + "id": "107729981647866482", + "summonerName": "Tymchuk", + "firstName": "Cristian Anthony", + "lastName": "Flores Tymchuk", + "image": "http://static.lolesports.com/players/1643829063168_placeholder.png", + "role": "mid" + }, + { + "id": "107729984338774646", + "summonerName": "Lefty", + "firstName": "Matias Ezequiel", + "lastName": "Bondone", + "image": "http://static.lolesports.com/players/1643829104181_placeholder.png", + "role": "bottom" + }, + { + "id": "107729986383621572", + "summonerName": "1Bicho", + "firstName": "Liam", + "lastName": "Morando", + "image": "http://static.lolesports.com/players/1643829134555_placeholder.png", + "role": "support" + }, + { + "id": "107729988911834061", + "summonerName": "Tortu", + "firstName": "Braian Jonatan", + "lastName": "Muro", + "image": "http://static.lolesports.com/players/1643829167707_placeholder.png", + "role": "top" + }, + { + "id": "107891289380592217", + "summonerName": "Pio", + "firstName": "Diego Saul", + "lastName": "Solis", + "image": "http://static.lolesports.com/players/1646290424798_placeholder.png", + "role": "top" + }, + { + "id": "108131924891046587", + "summonerName": "Reiner", + "firstName": "Lara Moreno", + "lastName": "Paul Cesar", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + }, + { + "id": "107582773523958538", + "summonerName": "Raglem", + "firstName": "Juan Carlos Raul", + "lastName": "Cervantes Almonte", + "image": "http://static.lolesports.com/players/1641582843909_placeholder.png", + "role": "top" + }, + { + "id": "107582779244367870", + "summonerName": "Sann", + "firstName": "Jose Luis", + "lastName": "Caceres Cuellar", + "image": "http://static.lolesports.com/players/1641582931738_placeholder.png", + "role": "mid" + }, + { + "id": "107582790489000739", + "summonerName": "Zaary", + "firstName": "Frank Pieres", + "lastName": "Noreño Reynaga", + "image": "http://static.lolesports.com/players/1641583103575_placeholder.png", + "role": "top" + } + ] + }, + { + "id": "107582615829368757", + "slug": "fantasy-gaming", + "name": "Fantasy Gaming", + "code": "FSY", + "image": "http://static.lolesports.com/teams/1642595525515_FANTASY-White.png", + "alternativeImage": "http://static.lolesports.com/teams/1642595525517_FANTASY-Black.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "108605422389390579", + "summonerName": "Guidoxi", + "firstName": "Guido", + "lastName": "Merad", + "image": "https://static.lolesports.com/players/download.png", + "role": "jungle" + }, + { + "id": "108605425411321086", + "summonerName": "Akyro", + "firstName": "Camilo Alexander", + "lastName": "Flores Arriagada", + "image": "https://static.lolesports.com/players/download.png", + "role": "bottom" + }, + { + "id": "107582773523958538", + "summonerName": "Raglem", + "firstName": "Juan Carlos Raul", + "lastName": "Cervantes Almonte", + "image": "http://static.lolesports.com/players/1641582843909_placeholder.png", + "role": "top" + }, + { + "id": "108131924984566467", + "summonerName": "ScarHope", + "firstName": "Quispe Ortiz", + "lastName": "Willie Imanol", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "top" + }, + { + "id": "108131925035931999", + "summonerName": "kraM", + "firstName": "Albornoz Valdivia", + "lastName": "Mark Enrique", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "jungle" + }, + { + "id": "108319782955599909", + "summonerName": "S4n", + "firstName": "Caceres Cuellar", + "lastName": "Jose Luis", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "mid" + }, + { + "id": "107582783368744962", + "summonerName": "Nou", + "firstName": "Fabian Alejandro", + "lastName": "Silva Rivas", + "image": "http://static.lolesports.com/players/1641582994452_placeholder.png", + "role": "bottom" + }, + { + "id": "107582784831377414", + "summonerName": "LupinoBate", + "firstName": "Victor Luciano", + "lastName": "Franco Vela ", + "image": "http://static.lolesports.com/players/1641583017528_placeholder.png", + "role": "support" + }, + { + "id": "107582786904115999", + "summonerName": "lFreeSoull", + "firstName": "Anthony Kengo", + "lastName": "Davila Morales", + "image": "http://static.lolesports.com/players/1641583048692_placeholder.png", + "role": "support" + } + ] + }, + { + "id": "107582618156093368", + "slug": "incubus", + "name": "Incubus", + "code": "INC", + "image": "http://static.lolesports.com/teams/1642595563820_INCUBUS-White.png", + "alternativeImage": "http://static.lolesports.com/teams/1642595563821_INCUBUS-Black.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107582753454903267", + "summonerName": "JuanDeDios", + "firstName": "Pablo", + "lastName": "Sandoval Garnica", + "image": "http://static.lolesports.com/players/1641582538339_placeholder.png", + "role": "top" + }, + { + "id": "107582813961833026", + "summonerName": "Scenari0", + "firstName": "Edwin", + "lastName": "Tapia Vilca", + "image": "http://static.lolesports.com/players/1641583461851_placeholder.png", + "role": "bottom" + }, + { + "id": "109698674614622175", + "summonerName": "Shalll", + "firstName": "Jorge Alexander Keny", + "lastName": "Mendoza Mori", + "image": "http://static.lolesports.com/players/1673868935485_placeholder.png", + "role": "jungle" + }, + { + "id": "107582822912249933", + "summonerName": "DINASTIK", + "firstName": "Jaime Andres", + "lastName": "Ramirez Quezada", + "image": "http://static.lolesports.com/players/1641583597922_placeholder.png", + "role": "mid" + }, + { + "id": "109698679850550598", + "summonerName": "CevicheMonx", + "firstName": "Angelo Silvestre", + "lastName": "Loayza Sanchez", + "image": "http://static.lolesports.com/players/1673869015570_placeholder.png", + "role": "support" + }, + { + "id": "109698682290438625", + "summonerName": "LetoneY", + "firstName": "Fabricio Martin Eloy", + "lastName": "Guzman Herrera", + "image": "http://static.lolesports.com/players/1673869053150_placeholder.png", + "role": "top" + }, + { + "id": "109698684530515691", + "summonerName": "Diosmatik", + "firstName": "Giovanni Piero", + "lastName": "Zorilla Galarza", + "image": "http://static.lolesports.com/players/1673869087079_placeholder.png", + "role": "jungle" + }, + { + "id": "107582810750996528", + "summonerName": "Shall", + "firstName": "Jorge Alexander Ken", + "lastName": "Mendoza Mori", + "image": "http://static.lolesports.com/players/1641583412911_placeholder.png", + "role": "jungle" + }, + { + "id": "107582815365255220", + "summonerName": "Ceviche", + "firstName": "Angelo Silvestre", + "lastName": "Loayza Sanchez", + "image": "http://static.lolesports.com/players/1641583483199_placeholder.png", + "role": "support" + } + ] + }, + { + "id": "107582638341246907", + "slug": "instinct-gaming", + "name": "Instinct Gaming", + "code": "INS", + "image": "http://static.lolesports.com/teams/1642595602197_INSTINCT-GAMING-White.png", + "alternativeImage": "http://static.lolesports.com/teams/1642595602198_INSTINCT-GAMING-Black.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "108319774511794863", + "summonerName": "Vepc", + "firstName": "Diaz Pardo", + "lastName": "Israel David", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "top" + }, + { + "id": "108605448796859650", + "summonerName": "Mapu", + "firstName": "Piero Alonso ", + "lastName": "Cafferata Pachas", + "image": "https://static.lolesports.com/players/download.png", + "role": "mid" + }, + { + "id": "107582797267651374", + "summonerName": "Sinner Crow", + "firstName": "Satoshi Luis", + "lastName": "Kou Kishimoto", + "image": "http://static.lolesports.com/players/1641583207314_placeholder.png", + "role": "top" + }, + { + "id": "107582798999408664", + "summonerName": "iOC", + "firstName": "Angello Uber", + "lastName": "Garcia Garay", + "image": "http://static.lolesports.com/players/1641583233496_placeholder.png", + "role": "jungle" + }, + { + "id": "107582760687718383", + "summonerName": "Adryyyyh", + "firstName": "Adrian Rahí", + "lastName": "Herrera Otero", + "image": "http://static.lolesports.com/players/1641582649016_placeholder.png", + "role": "mid" + }, + { + "id": "108319783031037602", + "summonerName": "G0ld", + "firstName": "Ariza Nieves", + "lastName": "Sergio", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "bottom" + }, + { + "id": "108319838691461960", + "summonerName": "Pet", + "firstName": "Leonardo Roberto", + "lastName": "Silva Seminario", + "image": "https://static.lolesports.com/players/download.png", + "role": "none" + }, + { + "id": "108319837836257690", + "summonerName": "Yoyomax", + "firstName": "Juan David", + "lastName": "Indigoyen Roncal", + "image": "https://static.lolesports.com/players/download.png", + "role": "none" + } + ] + }, + { + "id": "107582641798795198", + "slug": "spectacled-bears", + "name": "Spectacled Bears", + "code": "SB", + "image": "http://static.lolesports.com/teams/1642595649122_SPECTACLED-BEARS-White.png", + "alternativeImage": "http://static.lolesports.com/teams/1642595649123_SPECTACLED-BEARS-Black.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107598801193194694", + "summonerName": "Sabaneti", + "firstName": "Alex Jorge", + "lastName": "Rodriguez", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "jungle" + }, + { + "id": "107598803557178172", + "summonerName": "skewy", + "firstName": "Benjmin Matias", + "lastName": "Rodriguez Orellana", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "mid" + }, + { + "id": "107582087189350313", + "summonerName": "Renyu", + "firstName": "Renato Josue", + "lastName": "Gallegos Muñoz", + "image": "http://static.lolesports.com/players/1641572364617_placeholder.png", + "role": "bottom" + }, + { + "id": "107582755247706087", + "summonerName": "Leinad", + "firstName": "Juan Daniel", + "lastName": "Villalba Castillo", + "image": "http://static.lolesports.com/players/1641582565592_placeholder.png", + "role": "jungle" + }, + { + "id": "109807890482619918", + "summonerName": "Saifer", + "firstName": "Gaston", + "lastName": "Pedalino Vera", + "image": "http://static.lolesports.com/players/1675535435749_silhouette_transparent.png", + "role": "mid" + }, + { + "id": "107582753454903267", + "summonerName": "JuanDeDios", + "firstName": "Pablo", + "lastName": "Sandoval Garnica", + "image": "http://static.lolesports.com/players/1641582538339_placeholder.png", + "role": "top" + }, + { + "id": "109716554374057462", + "summonerName": "Shiku", + "firstName": "Carlo Andre", + "lastName": "Carrion Zapata", + "image": "http://static.lolesports.com/players/1674141759030_placeholder.png", + "role": "support" + } + ] + }, + { + "id": "107597858964689090", + "slug": "soveja", + "name": "SOVEJA", + "code": "SVJ", + "image": "http://static.lolesports.com/teams/1641813031619_EBL_SVJ-FullColorDarkBG.png", + "alternativeImage": "http://static.lolesports.com/teams/1641813031628_EBL_SVJ-MonochromeLightBG.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "Esports Balkan League", + "region": "EMEA" + }, + "players": [ + { + "id": "107603146535494194", + "summonerName": "v1SaG3", + "firstName": "Hristo", + "lastName": "Vangelov", + "image": "http://static.lolesports.com/players/1641893712590_placeholder.png", + "role": "top" + }, + { + "id": "107603148396485463", + "summonerName": "Acrozo", + "firstName": "Mohamad", + "lastName": "El-Lakkis", + "image": "http://static.lolesports.com/players/1641893740509_placeholder.png", + "role": "jungle" + }, + { + "id": "107603151252740962", + "summonerName": "Ghastly", + "firstName": "Bartosz", + "lastName": "Szczesiak", + "image": "http://static.lolesports.com/players/1641893783538_placeholder.png", + "role": "mid" + }, + { + "id": "107603154795354983", + "summonerName": "Lelouch2", + "firstName": "Luca Cristian", + "lastName": "Alexandrescu", + "image": "http://static.lolesports.com/players/1675089609272_LeLouch.png", + "role": "bottom" + }, + { + "id": "105553697605957532", + "summonerName": "F1ko", + "firstName": "Filip", + "lastName": "Gnjidić", + "image": "https://static.lolesports.com/players/download.png", + "role": "support" + } + ] + }, + { + "id": "107597866344501908", + "slug": "auxesis-esports", + "name": "Auxesis Esports", + "code": "AUX", + "image": "http://static.lolesports.com/teams/1641813143155_EBL_AUX-MonochromeDarkBG.png.png", + "alternativeImage": "http://static.lolesports.com/teams/1641813143162_EBL_AUX-FullColorDarkBG.png.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Esports Balkan League", + "region": "EMEA" + }, + "players": [ + { + "id": "108404243648902278", + "summonerName": "Alexandazar", + "firstName": "Dinev", + "lastName": "Aleksandar", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "bottom" + }, + { + "id": "107065254108201325", + "summonerName": "Leviathan", + "firstName": "Alexandros", + "lastName": "Mamasoulas", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + } + ] + }, + { + "id": "107597870621708485", + "slug": "cyber-wolves-esports", + "name": "Cyber Wolves Esports", + "code": "CWE", + "image": "http://static.lolesports.com/teams/1641813209296_EBL_CWE-MonochromeDarkBG.png", + "alternativeImage": "http://static.lolesports.com/teams/1641813209298_EBL_CWE-MonochromeLightBG.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "Esports Balkan League", + "region": "EMEA" + }, + "players": [ + { + "id": "107603203943553430", + "summonerName": "kingggggg", + "firstName": "Luka", + "lastName": "Kralj", + "image": "http://static.lolesports.com/players/1641894587117_placeholder.png", + "role": "jungle" + }, + { + "id": "106301587749148742", + "summonerName": "King0", + "firstName": "Luka", + "lastName": "Kralj", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "jungle" + }, + { + "id": "111776298064737674", + "summonerName": "Endless", + "firstName": "Bence", + "lastName": "Tóth-Szeles", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "111776312651478420", + "summonerName": "Bala", + "firstName": "Aron", + "lastName": "Balogh", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + }, + { + "id": "111776317161230013", + "summonerName": "Disillusion", + "firstName": "Marko", + "lastName": "Manasiev", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + }, + { + "id": "110641779984816687", + "summonerName": "Paresz", + "firstName": "Balint", + "lastName": "Paksai", + "image": "http://static.lolesports.com/players/1688259578192_silhouette_transparent.png", + "role": "jungle" + }, + { + "id": "111776292775148932", + "summonerName": "XYZ", + "firstName": "Sebastian", + "lastName": "Rinner", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "108404243896082112", + "summonerName": "Rule", + "firstName": "Bologna", + "lastName": "Antonio", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "jungle" + }, + { + "id": "111776296280437756", + "summonerName": "Robenong", + "firstName": "Róbert", + "lastName": "Malecz", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "112461682679672834", + "summonerName": "tomoRRR", + "firstName": "Dániel", + "lastName": "Tomor", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + }, + { + "id": "112461700059698611", + "summonerName": "Baki", + "firstName": "Nikola", + "lastName": "Bakić", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "106312624152566367", + "summonerName": "Tochas", + "firstName": "Duarte", + "lastName": "Vieira", + "image": "http://static.lolesports.com/players/1753918483688_tochasrdy.png", + "role": "support" + }, + { + "id": "112461716256911380", + "summonerName": "Sora5", + "firstName": "Hunor", + "lastName": "Suba", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + }, + { + "id": "112461721297265539", + "summonerName": "Ap4ch3", + "firstName": "Márton", + "lastName": "Gyöngyösi", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + }, + { + "id": "111776305637969585", + "summonerName": "Astalia", + "firstName": "Aljaž", + "lastName": "Lukman", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + }, + { + "id": "107065248659785937", + "summonerName": "Lagolinas", + "firstName": "Marton", + "lastName": "Petrucz", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "109897089125370726", + "summonerName": "Goldenpenny", + "firstName": "Hugo", + "lastName": "Pilström", + "image": "http://static.lolesports.com/players/1676896504753_placeholder.png", + "role": "none" + } + ] + }, + { + "id": "107597875833524424", + "slug": "diamant-esports", + "name": "Diamant Esports", + "code": "DIA", + "image": "http://static.lolesports.com/teams/1641813288438_EBL_DIA-MonochromeDarkBG.png", + "alternativeImage": "http://static.lolesports.com/teams/1641813288445_EBL_DIA-FullColorDarkBG.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "Esports Balkan League", + "region": "EMEA" + }, + "players": [] + }, + { + "id": "107598479562953190", + "slug": "trances-tyrants", + "name": "Trance's Tyrants", + "code": "TTNC", + "image": "http://static.lolesports.com/teams/1641822494937_LOLESPORTSICON.png", + "alternativeImage": "http://static.lolesports.com/teams/1641822494939_LOLESPORTSICON.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107577685307277860", + "summonerName": "Pingpaddler", + "firstName": "Matthew", + "lastName": "Zakelji", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107577685433500200", + "summonerName": "evileyes", + "firstName": "David", + "lastName": "Parrish", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107577685511225900", + "summonerName": "Stiifo", + "firstName": "Nick", + "lastName": "Restifo", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107577685604124595", + "summonerName": "Tomeito", + "firstName": "Xiaodong", + "lastName": "Chen", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107577685666449335", + "summonerName": "Wounds", + "firstName": "Carlos", + "lastName": "Ayala", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + } + ] + }, + { + "id": "107598482698361413", + "slug": "trances-tyrants", + "name": "Trance's Tyrants", + "code": "TTSA", + "image": "http://static.lolesports.com/teams/1641822543779_LOLESPORTSICON.png", + "alternativeImage": "http://static.lolesports.com/teams/1641822543780_LOLESPORTSICON.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "107577685307277860", + "summonerName": "Pingpaddler", + "firstName": "Matthew", + "lastName": "Zakelji", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107577685433500200", + "summonerName": "evileyes", + "firstName": "David", + "lastName": "Parrish", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107577685511225900", + "summonerName": "Stiifo", + "firstName": "Nick", + "lastName": "Restifo", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107577685604124595", + "summonerName": "Tomeito", + "firstName": "Xiaodong", + "lastName": "Chen", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107577685666449335", + "summonerName": "Wounds", + "firstName": "Carlos", + "lastName": "Ayala", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + } + ] + }, + { + "id": "107598484715166290", + "slug": "trances-tyrants", + "name": "Trance's Tyrants", + "code": "TTS", + "image": "http://static.lolesports.com/teams/1641822574469_LOLESPORTSICON.png", + "alternativeImage": "http://static.lolesports.com/teams/1641822574470_LOLESPORTSICON.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107577685307277860", + "summonerName": "Pingpaddler", + "firstName": "Matthew", + "lastName": "Zakelji", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107577685433500200", + "summonerName": "evileyes", + "firstName": "David", + "lastName": "Parrish", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107577685511225900", + "summonerName": "Stiifo", + "firstName": "Nick", + "lastName": "Restifo", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107577685604124595", + "summonerName": "Tomeito", + "firstName": "Xiaodong", + "lastName": "Chen", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107577685666449335", + "summonerName": "Wounds", + "firstName": "Carlos", + "lastName": "Ayala", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + } + ] + }, + { + "id": "107598651997213225", + "slug": "9z-gaming", + "name": "9z Gaming", + "code": "9Z", + "image": "http://static.lolesports.com/teams/1643794523130_9Z-White.png", + "alternativeImage": "http://static.lolesports.com/teams/1643794523132_9Z-Black.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "108288650751393049", + "summonerName": "isaN", + "firstName": "Martin Rafael", + "lastName": "Añaña Gomez", + "image": "http://static.lolesports.com/players/1652353678440_placeholder.png", + "role": "jungle" + }, + { + "id": "99566408523020743", + "summonerName": "Regi", + "firstName": "Juan ", + "lastName": "Curto", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/regi-fyopbuk5.png", + "role": "mid" + }, + { + "id": "108288653764718820", + "summonerName": "LeitoF", + "firstName": "Leonel Alexis", + "lastName": "Fernandez Rojas", + "image": "http://static.lolesports.com/players/1652353726107_placeholder.png", + "role": "bottom" + }, + { + "id": "109315764388202787", + "summonerName": "bauti", + "firstName": "Bautista", + "lastName": "Ulecia", + "image": "http://static.lolesports.com/players/1668026187833_placeholder.png", + "role": "top" + } + ] + }, + { + "id": "107598683861013570", + "slug": "boca-juniors-gaming", + "name": "Boca Juniors Gaming", + "code": "BOC", + "image": "http://static.lolesports.com/teams/1643794741844_BOCA-White.png", + "alternativeImage": "http://static.lolesports.com/teams/1643794741845_BOCA-Black.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107583616472076614", + "summonerName": "IzaenK", + "firstName": "Franco", + "lastName": "Campanari Antunez", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "top" + }, + { + "id": "107582137008540959", + "summonerName": "trashy", + "firstName": "Alejo Valentin Miguel", + "lastName": "Rivero", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "jungle" + }, + { + "id": "109676254820579553", + "summonerName": "Didi", + "firstName": "Mariano Gaston", + "lastName": "Masolini", + "image": "http://static.lolesports.com/players/1673526834398_placeholder.png", + "role": "mid" + }, + { + "id": "109676267198888165", + "summonerName": "notdefused", + "firstName": "Juan Agustin", + "lastName": "Martinez", + "image": "http://static.lolesports.com/players/1673527023054_placeholder.png", + "role": "bottom" + }, + { + "id": "107582134775236562", + "summonerName": "Tufi", + "firstName": "Thomas Agustin", + "lastName": "Rösler", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "support" + }, + { + "id": "107678244798600454", + "summonerName": "Kb", + "firstName": "Matias", + "lastName": "Gonzalez", + "image": "http://static.lolesports.com/players/1643039620519_placeholder.png", + "role": "support" + } + ] + }, + { + "id": "107598699275015260", + "slug": "leviatan-esports", + "name": "LEVIATÁN", + "code": "LEV", + "image": "http://static.lolesports.com/teams/1643795049372_LEV-CLAROWhite.png", + "alternativeImage": "http://static.lolesports.com/teams/1643795049373_LEV-OSCUROBlack.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LTA South", + "region": "AMERICAS" + }, + "players": [ + { + "id": "105516185566739968", + "summonerName": "Zothve", + "firstName": "Cristóbal", + "lastName": "Arróspide", + "image": "http://static.lolesports.com/players/1737723229563_image623.png", + "role": "top" + }, + { + "id": "105397130782159175", + "summonerName": "SCARY", + "firstName": "Artur", + "lastName": "Scalabrin", + "image": "http://static.lolesports.com/players/1737723042068_image622.png", + "role": "jungle" + }, + { + "id": "105512438075390766", + "summonerName": "ceo", + "firstName": "Lorenzo", + "lastName": "Tevez", + "image": "http://static.lolesports.com/players/1737722326955_image619.png", + "role": "bottom" + }, + { + "id": "100131567589299245", + "summonerName": "Hauz", + "firstName": "Bruno", + "lastName": "Ferreira", + "image": "http://static.lolesports.com/players/1753347492582_image6123.png", + "role": "mid" + }, + { + "id": "99921042943959644", + "summonerName": "TopLop", + "firstName": "Nicolás", + "lastName": "Marinoni", + "image": "http://static.lolesports.com/players/1753347565533_image6221.png", + "role": "support" + } + ] + }, + { + "id": "107598700335356591", + "slug": "leviatan-esports-archived", + "name": "Leviatán Esports", + "code": "LEV", + "image": "http://static.lolesports.com/teams/1641825864496_LOLESPORTSICON.png", + "alternativeImage": "http://static.lolesports.com/teams/1641825864497_LOLESPORTSICON.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "LLA", + "region": "LATIN AMERICA" + }, + "players": [ + { + "id": "112880372381731252", + "summonerName": "Ben01", + "firstName": "Ben", + "lastName": "Ben", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + } + ] + }, + { + "id": "107598704067400262", + "slug": "stone-movistar", + "name": "Stone Movistar", + "code": "STM", + "image": "http://static.lolesports.com/teams/1643795613214_STONE-White.png", + "alternativeImage": "http://static.lolesports.com/teams/1643795613215_STONE-Black.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "108455072047232266", + "summonerName": "1Dany", + "firstName": "Daniel Tadeo", + "lastName": "Serrano", + "image": "http://static.lolesports.com/players/1654893065515_silhouette_transparent1.png", + "role": "jungle" + }, + { + "id": "108551413732676618", + "summonerName": "Deliria", + "firstName": "Agustin Leonel", + "lastName": "Savino", + "image": "https://static.lolesports.com/players/download.png", + "role": "mid" + }, + { + "id": "108288692311727300", + "summonerName": "Vann", + "firstName": "Ivan", + "lastName": "Dellanque", + "image": "http://static.lolesports.com/players/1652354313594_placeholder.png", + "role": "jungle" + }, + { + "id": "107583617075956804", + "summonerName": "Geveze", + "firstName": "Dylan Andres", + "lastName": "Rocha", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "bottom" + }, + { + "id": "108288718816582880", + "summonerName": "Farhn", + "firstName": "Franco Agustin", + "lastName": "Herrera", + "image": "http://static.lolesports.com/players/1652354718106_placeholder.png", + "role": "support" + } + ] + }, + { + "id": "107598712583969458", + "slug": "ebro-gaming", + "name": "EBRO", + "code": "EBG", + "image": "http://static.lolesports.com/teams/1643794863955_EBRO-White.png", + "alternativeImage": "http://static.lolesports.com/teams/1643794863956_EBRO-Black.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107583616472076614", + "summonerName": "IzaenK", + "firstName": "Franco", + "lastName": "Campanari Antunez", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "top" + }, + { + "id": "105512211299358169", + "summonerName": "Style", + "firstName": "Ignacio Ivan", + "lastName": "Lopez Pezoa", + "image": "http://static.lolesports.com/players/_Default222.png", + "role": "jungle" + }, + { + "id": "109676267198888165", + "summonerName": "notdefused", + "firstName": "Juan Agustin", + "lastName": "Martinez", + "image": "http://static.lolesports.com/players/1673527023054_placeholder.png", + "role": "bottom" + }, + { + "id": "108288704599817446", + "summonerName": "Krenashh", + "firstName": "Martin Nahuel", + "lastName": "Castro", + "image": "http://static.lolesports.com/players/1652354501518_placeholder.png", + "role": "top" + } + ] + }, + { + "id": "107598764318774383", + "slug": "kru-esports", + "name": "KRÜ Esports", + "code": "KRU", + "image": "http://static.lolesports.com/teams/1643794976184_KRU-CLAROLight.png", + "alternativeImage": "http://static.lolesports.com/teams/1643794976186_KRU-OSCUROBlack.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "108290636984418314", + "summonerName": "Famus", + "firstName": "Jonathan Alexander", + "lastName": "Dutra", + "image": "https://static.lolesports.com/players/download.png", + "role": "top" + } + ] + }, + { + "id": "107598767299089535", + "slug": "kru-esports", + "name": "KRÜ Esports", + "code": "KRU", + "image": "http://static.lolesports.com/teams/1641826885231_LOLESPORTSICON.png", + "alternativeImage": "http://static.lolesports.com/teams/1641826885232_LOLESPORTSICON.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "LLA", + "region": "LATIN AMERICA" + }, + "players": [] + }, + { + "id": "107598773733776091", + "slug": "kru-esports", + "name": "KRÜ Esports", + "code": "KRU", + "image": "http://static.lolesports.com/teams/1641826982881_LOLESPORTSICON.png", + "alternativeImage": "http://static.lolesports.com/teams/1641826982881_LOLESPORTSICON.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "LLA", + "region": "LATIN AMERICA" + }, + "players": [] + }, + { + "id": "107598780504331406", + "slug": "maycam-evolve", + "name": "Maycam Evolve", + "code": "EVLV", + "image": "http://static.lolesports.com/teams/1643795494261_MAYCAM-White.png", + "alternativeImage": "http://static.lolesports.com/teams/1643795494263_MAYCAM-Black.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "109676376986714368", + "summonerName": "kuuhaku", + "firstName": "caua", + "lastName": "galvao araujo", + "image": "http://static.lolesports.com/players/1673528698417_placeholder.png", + "role": "top" + }, + { + "id": "107582134531180490", + "summonerName": "17", + "firstName": "Agustin Nicolas", + "lastName": "Armoa", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "mid" + }, + { + "id": "100174429515098833", + "summonerName": "Crush", + "firstName": "Junseo", + "lastName": "Kim", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/crush-g64ejv1w.png", + "role": "support" + }, + { + "id": "109676430354823594", + "summonerName": "Venhamin", + "firstName": "benjamin ignacio", + "lastName": "ramirez vera", + "image": "http://static.lolesports.com/players/1673529512662_placeholder.png", + "role": "top" + }, + { + "id": "109676434963894579", + "summonerName": "Alone1", + "firstName": "CrisTOPher Nicolas", + "lastName": "Catalán Arias", + "image": "http://static.lolesports.com/players/1673529583149_placeholder.png", + "role": "bottom" + }, + { + "id": "109836645377624163", + "summonerName": "Capii", + "firstName": "Franco", + "lastName": "Licitra", + "image": "http://static.lolesports.com/players/1675974195853_placeholder.png", + "role": "bottom" + }, + { + "id": "108288687035470391", + "summonerName": "Xam", + "firstName": "Brandon Onam", + "lastName": "Moretto", + "image": "http://static.lolesports.com/players/1652354232967_placeholder.png", + "role": "mid" + }, + { + "id": "107598797961190127", + "summonerName": "CREATORE", + "firstName": "MANUEL", + "lastName": "SANCHEZ LUJAN", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "support" + } + ] + }, + { + "id": "107598785733448849", + "slug": "river-plate-gaming", + "name": "River Plate Gaming", + "code": "RIV", + "image": "http://static.lolesports.com/teams/1643795558880_RIVER-White.png", + "alternativeImage": "http://static.lolesports.com/teams/1643795558882_RIVER-Black.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "99566408306352454", + "summonerName": "Nipphu", + "firstName": "Franco", + "lastName": "Funes", + "image": "http://static.lolesports.com/players/KLG-Nipphu.png", + "role": "top" + }, + { + "id": "99566408346501165", + "summonerName": "Tomnam", + "firstName": "Enzo", + "lastName": "Ferreira", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/tomnam-14n5h9s7.png", + "role": "bottom" + } + ] + }, + { + "id": "107598788926820994", + "slug": "pampas", + "name": "Macro Pampas", + "code": "PAM", + "image": "http://static.lolesports.com/teams/1643795725786_UALAPAMPAS-White.png", + "alternativeImage": "http://static.lolesports.com/teams/1643795725788_UALAPAMPAS-Black.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "109676573340434903", + "summonerName": "Z03N", + "firstName": "Enzo Rafael", + "lastName": "Ganino", + "image": "http://static.lolesports.com/players/1673531694522_placeholder.png", + "role": "top" + }, + { + "id": "109676585090684245", + "summonerName": "Sawayama", + "firstName": "Anderson Marcelo", + "lastName": "Valle Soto", + "image": "http://static.lolesports.com/players/1673531874037_placeholder.png", + "role": "mid" + } + ] + }, + { + "id": "107598805167594304", + "slug": "wap-esports", + "name": "Wap Esports", + "code": "WAP", + "image": "http://static.lolesports.com/teams/1643795834172_WAP-White.png", + "alternativeImage": "http://static.lolesports.com/teams/1643795834173_WAP-Black.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LRS", + "region": "LATIN AMERICA SOUTH" + }, + "players": [ + { + "id": "107582822912249933", + "summonerName": "DINASTIK", + "firstName": "Jaime Andres", + "lastName": "Ramirez Quezada", + "image": "http://static.lolesports.com/players/1641583597922_placeholder.png", + "role": "top" + }, + { + "id": "99566408302308705", + "summonerName": "Sunblast", + "firstName": "Juan Manuel", + "lastName": "Chapacu", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/sunblast-788epxg9.png", + "role": "top" + }, + { + "id": "107583616175360840", + "summonerName": "Shookz", + "firstName": "Nicolas", + "lastName": "Vozzi", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "jungle" + }, + { + "id": "109836636453937656", + "summonerName": "Zheir", + "firstName": "Ignacio", + "lastName": "Concha", + "image": "http://static.lolesports.com/players/1675974047923_placeholder.png", + "role": "top" + }, + { + "id": "99566408310768239", + "summonerName": "WARANGELUS", + "firstName": "Fabián", + "lastName": "Llanos", + "image": "http://static.lolesports.com/players/1654805347836_EMP.png", + "role": "mid" + }, + { + "id": "114282825973458109", + "summonerName": "Zeycce", + "firstName": "Enzo", + "lastName": "Velarde", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "107582137008540959", + "summonerName": "trashy", + "firstName": "Alejo Valentin Miguel", + "lastName": "Rivero", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "jungle" + }, + { + "id": "107582137142037795", + "summonerName": "Termo", + "firstName": "Santiago", + "lastName": "Terminello", + "image": "http://static.lolesports.com/players/1654805480691_EMP.png", + "role": "mid" + }, + { + "id": "107582134651766734", + "summonerName": "Hika", + "firstName": "Hika Bautista", + "lastName": "Reid", + "image": "http://static.lolesports.com/players/1674671020840_EMP.png", + "role": "bottom" + }, + { + "id": "108288713943104822", + "summonerName": "Fortu", + "firstName": "Franco", + "lastName": "Fortunato", + "image": "http://static.lolesports.com/players/1652354644201_placeholder.png", + "role": "support" + }, + { + "id": "114923639840549234", + "summonerName": "Vacamon", + "firstName": "Matias ", + "lastName": "Sarapura", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "none" + }, + { + "id": "107583784990395240", + "summonerName": "Kobra", + "firstName": "Jesus Franco", + "lastName": "Jacobi", + "image": "https://static.lolesports.com/players/download.png", + "role": "mid" + } + ] + }, + { + "id": "107598840547235130", + "slug": "malvinas-gaming", + "name": "Malvinas Gaming", + "code": "MVG", + "image": "http://static.lolesports.com/teams/1641828001883_LOLESPORTSICON.png", + "alternativeImage": "http://static.lolesports.com/teams/1641828001884_LOLESPORTSICON.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "LLA", + "region": "LATIN AMERICA" + }, + "players": [ + { + "id": "107598808733504754", + "summonerName": "Scrappy", + "firstName": "Jose Fernando", + "lastName": "Chavez Huamani", + "image": "http://static.lolesports.com/players/1641827516099_placeholder.png", + "role": "top" + }, + { + "id": "107598810463034191", + "summonerName": "SryNotSry", + "firstName": "Nicolás", + "lastName": "Carnevale", + "image": "http://static.lolesports.com/players/1641827541223_placeholder.png", + "role": "jungle" + }, + { + "id": "107598812263076571", + "summonerName": "Fersito", + "firstName": "Francisco Gabriel", + "lastName": "Fernandez Sanjurjo", + "image": "http://static.lolesports.com/players/1641827570165_placeholder.png", + "role": "mid" + }, + { + "id": "99566408304881665", + "summonerName": "kiMi", + "firstName": "Cristian", + "lastName": "Aparicio", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/kimi-i0ow19tm.png", + "role": "bottom" + }, + { + "id": "99566408305908636", + "summonerName": "Nekha", + "firstName": "Franco", + "lastName": "Martínez", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/nekhazten-77619gyh.png", + "role": "support" + }, + { + "id": "99566408303900050", + "summonerName": "Magico", + "firstName": "Matías", + "lastName": "Muñoz", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/magico-90jivp0i.png", + "role": "mid" + } + ] + }, + { + "id": "107598878262940546", + "slug": "malvinas-gaming", + "name": "Malvinas Gaming", + "code": "MVG", + "image": "http://static.lolesports.com/teams/1684220708770_MALVINASBLANCO.png", + "alternativeImage": "http://static.lolesports.com/teams/1684220708771_MALVINAS-NEGRO.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LRS", + "region": "LATIN AMERICA SOUTH" + }, + "players": [ + { + "id": "105397186917489455", + "summonerName": "Skeeto", + "firstName": "Javier Eugenio Manuel", + "lastName": "Fuentes Nicoletti", + "image": "http://static.lolesports.com/players/1654801809368_EMP.png", + "role": "top" + }, + { + "id": "99921042942435093", + "summonerName": "Unforgiven", + "firstName": "Maximiliano Gastón", + "lastName": "Utrero", + "image": "http://static.lolesports.com/players/XTN-Unforgiven.png", + "role": "none" + }, + { + "id": "114194232774748676", + "summonerName": "Doni1", + "firstName": "Javier", + "lastName": "Fuentes", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "99921042944629053", + "summonerName": "Horus", + "firstName": "Facundo", + "lastName": "Utrero", + "image": "http://static.lolesports.com/players/1674668354490_EMP.png", + "role": "bottom" + }, + { + "id": "99566408533678280", + "summonerName": "Akunma", + "firstName": "Miguel ", + "lastName": "Aylas ", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/akunma-ayi3i24r.png", + "role": "top" + }, + { + "id": "99566408333803032", + "summonerName": "Nobody", + "firstName": "Nicolás", + "lastName": "Ale", + "image": "http://static.lolesports.com/players/1718124761836_Nobody.png", + "role": "mid" + }, + { + "id": "105512471232674626", + "summonerName": "Nottingham", + "firstName": "Alan", + "lastName": "Spikerman", + "image": "http://static.lolesports.com/players/XTN-Nottinghan.png", + "role": "support" + }, + { + "id": "106568321205278659", + "summonerName": "Brayaron", + "firstName": "Brayan Erick", + "lastName": "Pereda Cordova", + "image": "http://static.lolesports.com/players/1643048113997_Brayaron-2.png", + "role": "none" + }, + { + "id": "107582137380685791", + "summonerName": "Keishao", + "firstName": "Franco Valentin", + "lastName": "Cotrone", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "support" + }, + { + "id": "107581367195256248", + "summonerName": "Piqueos", + "firstName": "Antony Gabriel", + "lastName": "Siapo Perez", + "image": "http://static.lolesports.com/players/1641561380323_placeholder.png", + "role": "mid" + }, + { + "id": "112296601474220139", + "summonerName": "PEY", + "firstName": "Ignacio Román", + "lastName": "Hernández", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "114904671910249699", + "summonerName": "sSephix", + "firstName": "Francisco ", + "lastName": "Fernández", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "none" + }, + { + "id": "114923599685640611", + "summonerName": "Piscis", + "firstName": "Alan Spikerman", + "lastName": "Alan Spikerman", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "none" + } + ] + }, + { + "id": "107598976046488689", + "slug": "method2madness", + "name": "Method2Madness", + "code": "M2", + "image": "http://static.lolesports.com/teams/1641830075852_Logo-Png-2000x2000.png", + "alternativeImage": "http://static.lolesports.com/teams/1641830075854_Logo-Png-2000x2000.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "106334815074154501", + "summonerName": "xmar", + "firstName": "Toms", + "lastName": "Enģelis", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "bottom" + }, + { + "id": "108353503108590464", + "summonerName": "Don Ponk", + "firstName": "Kramdi", + "lastName": "Mohammed", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "support" + }, + { + "id": "108353503156573343", + "summonerName": "ImFurby", + "firstName": "Sedergren", + "lastName": "Casper", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "mid" + }, + { + "id": "108508978878511610", + "summonerName": "pil", + "firstName": "Dominik", + "lastName": "Wysocki", + "image": "http://static.lolesports.com/players/1655715615795_placeholder.png", + "role": "jungle" + } + ] + }, + { + "id": "107598982142057588", + "slug": "cruzados-esports", + "name": "Cruzados Esports", + "code": "UC", + "image": "http://static.lolesports.com/teams/1643036732682_cruzados-White.png", + "alternativeImage": "http://static.lolesports.com/teams/1643036732684_cruzados-ColorDark.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107598800068334774", + "summonerName": "Wandering", + "firstName": "Hans Alejandro", + "lastName": "Fritz Quinteros", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "mid" + }, + { + "id": "109676512731468199", + "summonerName": "TANO", + "firstName": "Marambio Godoy", + "lastName": "Maximiliano Sebastían", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "mid" + }, + { + "id": "109676512848544153", + "summonerName": "Saravinho", + "firstName": "Saravia Alegria", + "lastName": "Nicolás Alejandro", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "support" + } + ] + }, + { + "id": "107598984777421827", + "slug": "cruzados-esports", + "name": "Cruzados Esports", + "code": "UC", + "image": "http://static.lolesports.com/teams/1641830202857_LOLESPORTSICON.png", + "alternativeImage": "http://static.lolesports.com/teams/1641830202857_LOLESPORTSICON.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "102825747658480562", + "summonerName": "IceBox", + "firstName": "Bastían", + "lastName": "Almonacid", + "image": "http://static.lolesports.com/players/KLG-IceBox.png", + "role": "top" + }, + { + "id": "107598797739184774", + "summonerName": "AMBAN", + "firstName": "Amaro", + "lastName": "López", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "jungle" + }, + { + "id": "107598797804852373", + "summonerName": "Daedra", + "firstName": "JOAQUIN", + "lastName": "VIANA", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "mid" + }, + { + "id": "107598797866849433", + "summonerName": "CUEST1ON", + "firstName": "JESÚS AARON", + "lastName": "GONZÁLEZ AVENDAÑO", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "bottom" + }, + { + "id": "107598797961190127", + "summonerName": "CREATORE", + "firstName": "MANUEL", + "lastName": "SANCHEZ LUJAN", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "support" + }, + { + "id": "107598798099043486", + "summonerName": "LINKER", + "firstName": "VALENTIN ANDRES", + "lastName": "VERA GONZALEZ", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "bottom" + } + ] + }, + { + "id": "107599040773840060", + "slug": "meta-gaming", + "name": "Meta Gaming", + "code": "META", + "image": "http://static.lolesports.com/teams/1643036774764_meta-White.png", + "alternativeImage": "http://static.lolesports.com/teams/1643036774766_meta-Black.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "107599061926073885", + "slug": "newstar", + "name": "Newstar", + "code": "N5R", + "image": "http://static.lolesports.com/teams/1654197796362_Newstar-White.png", + "alternativeImage": "http://static.lolesports.com/teams/1654197796363_Newstar-Black.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "102825747658480562", + "summonerName": "IceBox", + "firstName": "Bastían", + "lastName": "Almonacid", + "image": "http://static.lolesports.com/players/KLG-IceBox.png", + "role": "top" + }, + { + "id": "109676515422900666", + "summonerName": "lilded", + "firstName": "Carvallo Salgado", + "lastName": "Carlos Antonio", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "jungle" + }, + { + "id": "107598800640529598", + "summonerName": "Kearzy", + "firstName": "Nicolas Matias", + "lastName": "Aguirre Catalan", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "mid" + }, + { + "id": "109676532701860297", + "summonerName": "Akira ", + "firstName": "Sebastian Fernando", + "lastName": "Diaz nuñez", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "top" + }, + { + "id": "109676516121393636", + "summonerName": "Kiara", + "firstName": "Alod", + "lastName": "Kiara Nailea", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + }, + { + "id": "109716319345911023", + "summonerName": "Coow", + "firstName": "Martín Alonso", + "lastName": "Contreras Aguilar", + "image": "http://static.lolesports.com/players/1674138172857_placeholder.png", + "role": "jungle" + } + ] + }, + { + "id": "107599089191671351", + "slug": "santiago-wanderers", + "name": "Santiago Wanderers", + "code": "SW", + "image": "http://static.lolesports.com/teams/1643036795942_santiagowanderers-ColorLight.png", + "alternativeImage": "http://static.lolesports.com/teams/1643036795944_santiagowanderers-Black.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107598802697376455", + "summonerName": "Dyla", + "firstName": "Diego", + "lastName": "Lago Torterolo", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107598799886310168", + "summonerName": "Deratero", + "firstName": "Matias Eduardo", + "lastName": "Garcia Saez", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107598802463806682", + "summonerName": "CosmoZ", + "firstName": "Gustavo Sebastian", + "lastName": "Zurita Espinoza", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "109676532808604444", + "summonerName": "Elijah ", + "firstName": "Lucas Julian", + "lastName": "Quintanilla", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + }, + { + "id": "109676532897209121", + "summonerName": "Husky ", + "firstName": "Javiera Soledad", + "lastName": "Machado Hernández", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + }, + { + "id": "107598802892053304", + "summonerName": "Zwitch", + "firstName": "Pablo Gaspar Antonio", + "lastName": "Bustamante Abdo", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "109676520835135983", + "summonerName": "Fyte", + "firstName": "Oñate Orellana", + "lastName": "Kevin Benjamin", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + }, + { + "id": "107598799766117140", + "summonerName": "FANG", + "firstName": "Ignacio Andres", + "lastName": "Gutierrez Tobar", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "mid" + } + ] + }, + { + "id": "107599112065439311", + "slug": "dark-horse", + "name": "Dark Horse", + "code": "DHX", + "image": "http://static.lolesports.com/teams/1643036807909_darkhorse-White.png", + "alternativeImage": "http://static.lolesports.com/teams/1643036807911_darkhorse-ColorDark.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107598800767769376", + "summonerName": "Perro", + "firstName": "Sebastian Gabriel", + "lastName": "Cataldo Barraza", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "bottom" + }, + { + "id": "106803918506044056", + "summonerName": "Charlie", + "firstName": "Benjamin Cristobal", + "lastName": "Soto Gonzalez", + "image": "http://static.lolesports.com/players/1629698456715_darkimage_1.png", + "role": "support" + }, + { + "id": "107598799005274774", + "summonerName": "Ex1", + "firstName": "Julián Enrique", + "lastName": "Aravena Mendez", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "jungle" + } + ] + }, + { + "id": "107599144012469862", + "slug": "maze-gaming", + "name": "Maze Gaming Esports", + "code": "MAZ", + "image": "http://static.lolesports.com/teams/1643036820055_maze-ColorLight.png", + "alternativeImage": "http://static.lolesports.com/teams/1643036820057_maze-ColorLight.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LRS", + "region": "LATIN AMERICA SOUTH" + }, + "players": [ + { + "id": "109676430354823594", + "summonerName": "Venhamin", + "firstName": "benjamin ignacio", + "lastName": "ramirez vera", + "image": "http://static.lolesports.com/players/1673529512662_placeholder.png", + "role": "none" + }, + { + "id": "107582136899127281", + "summonerName": "Wamu", + "firstName": "Nicolas Osvaldo", + "lastName": "Garrido Romero", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "top" + }, + { + "id": "112091621802005885", + "summonerName": "Funky", + "firstName": "Aaron ", + "lastName": "Sterzer", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "109676254820579553", + "summonerName": "Didi", + "firstName": "Mariano Gaston", + "lastName": "Masolini", + "image": "http://static.lolesports.com/players/1673526834398_placeholder.png", + "role": "mid" + }, + { + "id": "107582137795431723", + "summonerName": "LAC", + "firstName": "Elias Nahuel", + "lastName": "Gonzalez Castelli", + "image": "http://static.lolesports.com/players/1704994731797_EMP.png", + "role": "bottom" + }, + { + "id": "104843448196838874", + "summonerName": "Gastruks", + "firstName": "Gaston", + "lastName": "Nuñez", + "image": "http://static.lolesports.com/players/1704992183230_EMP.png", + "role": "support" + } + ] + }, + { + "id": "107599156601411192", + "slug": "movistar-optix", + "name": "Movistar Optix", + "code": "MOX", + "image": "http://static.lolesports.com/teams/1643036831020_movistaroptix-White.png", + "alternativeImage": "http://static.lolesports.com/teams/1643036831022_movistaroptix-Black.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "102825747661364148", + "summonerName": "koughi", + "firstName": "Víctor", + "lastName": "Yever", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/koughi-d3u4f3d.png", + "role": "jungle" + }, + { + "id": "107598801843966655", + "summonerName": "Kryzpo", + "firstName": "Matias Daniel", + "lastName": "Cifuentes Castillo", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "top" + } + ] + }, + { + "id": "107599174108436104", + "slug": "rebirth-esports", + "name": "Rebirth Esports", + "code": "RBTX", + "image": "http://static.lolesports.com/teams/1643036841496_rebirth-ColorLight.png", + "alternativeImage": "http://static.lolesports.com/teams/1643036841498_rebirth-Black.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [] + }, + { + "id": "107599188771591359", + "slug": "wolf-club-gaming", + "name": "Wolf Club Gaming", + "code": "WCE", + "image": "http://static.lolesports.com/teams/1645117284888_1644916646869_wolf-White.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "108288438877133895", + "summonerName": "Kenius", + "firstName": "Matias Sebastian", + "lastName": "Ascoy Ybañez", + "image": "http://static.lolesports.com/players/1652350445567_placeholder.png", + "role": "top" + }, + { + "id": "107598799484015263", + "summonerName": "negroNE", + "firstName": "Axel alejandro", + "lastName": "Vivanco Aguirre", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "jungle" + }, + { + "id": "107582756741761781", + "summonerName": "ANDROM", + "firstName": "Sebastián Esteban", + "lastName": "Reyes Valenzuela", + "image": "http://static.lolesports.com/players/1641582587735_placeholder.png", + "role": "mid" + }, + { + "id": "108288445493538968", + "summonerName": "Misstery", + "firstName": "Rodrigo Joel", + "lastName": "Gutierrez Martinez", + "image": "http://static.lolesports.com/players/1652350546221_placeholder.png", + "role": "bottom" + } + ] + }, + { + "id": "107599248594359606", + "slug": "et-cetera", + "name": "Et cetera", + "code": "ETC", + "image": "http://static.lolesports.com/teams/1641834234545_etclogo.png", + "alternativeImage": "http://static.lolesports.com/teams/1641834234547_etclogo.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107767921301116613", + "summonerName": "Liivek", + "firstName": "Piotr", + "lastName": "Grinholc", + "image": "http://static.lolesports.com/players/1644407976213_placeholder.png", + "role": "mid" + }, + { + "id": "107835299209051470", + "summonerName": "ModyKrokiet", + "firstName": "Mateusz", + "lastName": "Hajda", + "image": "http://static.lolesports.com/players/1645436076807_placeholder.png", + "role": "bottom" + }, + { + "id": "106302546285501221", + "summonerName": "Szafa", + "firstName": "Jakub", + "lastName": "Szafarczyk", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "top" + }, + { + "id": "106382514979324513", + "summonerName": "bedi", + "firstName": "Piotr", + "lastName": "Bedorf", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "jungle" + }, + { + "id": "107156537708909439", + "summonerName": "mumek", + "firstName": "Paweł", + "lastName": "Janiak", + "image": "http://static.lolesports.com/players/1635079001671_placeholder.jpg", + "role": "support" + }, + { + "id": "106453711527296184", + "summonerName": "Ejsner", + "firstName": "Wiktor", + "lastName": "Świderski", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "bottom" + }, + { + "id": "107599123914185964", + "summonerName": "Lucan", + "firstName": "Oscar", + "lastName": "Jarząbek", + "image": "http://static.lolesports.com/players/1641832331457_placeholder.png", + "role": "bottom" + } + ] + }, + { + "id": "107599285006554929", + "slug": "gr1nd", + "name": "GR1ND", + "code": "GR1", + "image": "http://static.lolesports.com/teams/1641834790431_GR1ND.jpg", + "alternativeImage": "http://static.lolesports.com/teams/1641834790432_GR1ND.jpg", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "108353503892073355", + "summonerName": "Dark", + "firstName": "Laskowski", + "lastName": "Filip", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "mid" + } + ] + }, + { + "id": "107599485973747723", + "slug": "grypciocraft-esports", + "name": "GRP Esport", + "code": "GRP", + "image": "http://static.lolesports.com/teams/1671448791753_DqtYZgB.png", + "alternativeImage": "http://static.lolesports.com/teams/1671448791756_DqtYZgB.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "112709941216459193", + "summonerName": "Noivex", + "firstName": "Bartłomiej", + "lastName": "Ślubowski", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + }, + { + "id": "110412405363383184", + "summonerName": "Mietek", + "firstName": "Nikolas", + "lastName": "Nowak", + "image": "http://static.lolesports.com/players/1684759600358_placeholder.png", + "role": "top" + }, + { + "id": "108353503235631224", + "summonerName": "belit", + "firstName": "Swereda", + "lastName": "Marcin", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "jungle" + }, + { + "id": "109517025487758872", + "summonerName": "Artoria", + "firstName": "Alexis", + "lastName": "Diebold", + "image": "http://static.lolesports.com/players/1671097178504_placeholder.png", + "role": "mid" + }, + { + "id": "108695832513234621", + "summonerName": "Faetski", + "firstName": "Jakob", + "lastName": "Skovmand", + "image": "https://static.lolesports.com/players/download.png", + "role": "bottom" + }, + { + "id": "111181835912388432", + "summonerName": "CENTU", + "firstName": "SPIRIDON", + "lastName": "PANDELOPOULOS", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + } + ] + }, + { + "id": "107599535519488096", + "slug": "internaziomale", + "name": "Internaziomale", + "code": "WK", + "image": "http://static.lolesports.com/teams/1641838612176_ANTENANIEBIESKA.png", + "alternativeImage": "http://static.lolesports.com/teams/1641838612177_ANTENANIEBIESKA.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "109659429077945277", + "summonerName": "wysek", + "firstName": "Damian", + "lastName": "Adamczyk", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "jungle" + }, + { + "id": "109659428581906534", + "summonerName": "pukistyle", + "firstName": "Łukasz", + "lastName": "Zygmuciak", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "bottom" + }, + { + "id": "105526527697464812", + "summonerName": "xCharm", + "firstName": "Kamil", + "lastName": "Linchard", + "image": "https://static.lolesports.com/players/download.png", + "role": "support" + }, + { + "id": "107599516789299263", + "summonerName": "ArQuel", + "firstName": "Krzysztof", + "lastName": "Sauć", + "image": "http://static.lolesports.com/players/1641838325735_placeholder.png", + "role": "top" + }, + { + "id": "107599518219490930", + "summonerName": "Rybson", + "firstName": "Artur", + "lastName": "Gębicz", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "104234308118395495", + "summonerName": "Overpow", + "firstName": "Remigiusz", + "lastName": "Pusch", + "image": "http://static.lolesports.com/players/1641978637098_placeholder.png", + "role": "mid" + }, + { + "id": "107897279509247244", + "summonerName": "Kubon1", + "firstName": "Jakub", + "lastName": "Turewicz", + "image": "http://static.lolesports.com/players/1646381825240_silhouette_transparent.png", + "role": "top" + } + ] + }, + { + "id": "107599593771458304", + "slug": "maroon-bells", + "name": "Maroon Bells", + "code": "MAR", + "image": "http://static.lolesports.com/teams/1641839501088_maroon.png", + "alternativeImage": "http://static.lolesports.com/teams/1641839501089_maroon.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107599563206909681", + "summonerName": "BartekToJa", + "firstName": "Bartosz", + "lastName": "Ignasiak", + "image": "http://static.lolesports.com/players/1641839034766_placeholder.png", + "role": "top" + }, + { + "id": "105655983474630014", + "summonerName": "Ben3k", + "firstName": "Szymon", + "lastName": "Przygoński", + "image": "http://static.lolesports.com/players/placeholder_.jpg", + "role": "jungle" + }, + { + "id": "107599304137824052", + "summonerName": "Oran", + "firstName": "Szymon", + "lastName": "Faryj", + "image": "http://static.lolesports.com/players/1641835081618_placeholder.png", + "role": "mid" + }, + { + "id": "105521275045403962", + "summonerName": "Biosun", + "firstName": "Patryk", + "lastName": "Kołkiewicz", + "image": "http://static.lolesports.com/players/1641839209963_placeholder.png", + "role": "bottom" + }, + { + "id": "107156528557265783", + "summonerName": "Robertoos", + "firstName": "Robert", + "lastName": "Krzyżanowski", + "image": "http://static.lolesports.com/players/1687376826424_Robertoos.png", + "role": "support" + }, + { + "id": "107835308288447230", + "summonerName": "Trenie", + "firstName": "Mateusz", + "lastName": "Zabielski", + "image": "http://static.lolesports.com/players/1645436216541_placeholder.png", + "role": "bottom" + } + ] + }, + { + "id": "107599655638425387", + "slug": "nrax-esports", + "name": "NRAX ESPORTS", + "code": "NRAX", + "image": "http://static.lolesports.com/teams/1641840446683_222.png", + "alternativeImage": "http://static.lolesports.com/teams/1641840446683_222.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "110412146457866961", + "summonerName": "Al0ne", + "firstName": "Kamil", + "lastName": "Furgał", + "image": "http://static.lolesports.com/players/1684755649990_placeholder.png", + "role": "bottom" + }, + { + "id": "108353503053350570", + "summonerName": "Nakar", + "firstName": "Kępiński", + "lastName": "Jakub", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "support" + }, + { + "id": "110412159992165091", + "summonerName": "Monnr", + "firstName": "Juliusz", + "lastName": "Sadowski", + "image": "http://static.lolesports.com/players/1684755855822_placeholder.png", + "role": "top" + }, + { + "id": "110412153903096622", + "summonerName": "Akvender", + "firstName": "Robert", + "lastName": "Świeboda", + "image": "http://static.lolesports.com/players/1684755763490_placeholder.png", + "role": "mid" + }, + { + "id": "110412161570550921", + "summonerName": "Mario29c", + "firstName": "Szymon", + "lastName": "Połaski", + "image": "http://static.lolesports.com/players/1684755880853_placeholder.png", + "role": "bottom" + }, + { + "id": "110412188126288566", + "summonerName": "GFP1", + "firstName": "Perkus", + "lastName": "Balsys", + "image": "http://static.lolesports.com/players/1684756285528_placeholder.png", + "role": "jungle" + } + ] + }, + { + "id": "107599701268158635", + "slug": "piratesports", + "name": "piratesports", + "code": "ARRR", + "image": "http://static.lolesports.com/teams/1641841142779_LOLESPORTSICON.png", + "alternativeImage": "http://static.lolesports.com/teams/1641841142779_LOLESPORTSICON.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "107156542416921591", + "summonerName": "HeavyDream", + "firstName": "Mateusz", + "lastName": "Tomski", + "image": "http://static.lolesports.com/players/1635079072637_placeholder.jpg", + "role": "jungle" + }, + { + "id": "107599671450719969", + "summonerName": "Herod", + "firstName": "Grzegorz", + "lastName": "Rajpold", + "image": "http://static.lolesports.com/players/1641840686582_placeholder.png", + "role": "support" + }, + { + "id": "107599678493742824", + "summonerName": "Mikkell", + "firstName": "Michał", + "lastName": "Dąbrowski", + "image": "http://static.lolesports.com/players/1641840791617_placeholder.png", + "role": "top" + }, + { + "id": "107599681977309342", + "summonerName": "MNT", + "firstName": "Mateusz", + "lastName": "Gajos", + "image": "http://static.lolesports.com/players/1641840847376_placeholder.png", + "role": "bottom" + }, + { + "id": "105531142394251943", + "summonerName": "Rawil", + "firstName": "Szymon", + "lastName": "Zakrzewicz", + "image": "http://static.lolesports.com/players/1641840898932_placeholder.png", + "role": "mid" + } + ] + }, + { + "id": "107599749389342475", + "slug": "thunderflash", + "name": "Thunderflash", + "code": "TFH", + "image": "http://static.lolesports.com/teams/1641841876413_3bezta.png", + "alternativeImage": "http://static.lolesports.com/teams/1641841876414_3bezta.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "110412375926285118", + "summonerName": "Blesss", + "firstName": "Rafał", + "lastName": "Marek", + "image": "http://static.lolesports.com/players/1684759151438_placeholder.png", + "role": "mid" + }, + { + "id": "109835840947785876", + "summonerName": "Leosia", + "firstName": "Bartosz", + "lastName": "Jańczyk", + "image": "http://static.lolesports.com/players/1675961914208_placeholder.png", + "role": "jungle" + }, + { + "id": "110412382861794120", + "summonerName": "Ihsnet", + "firstName": "Patryk", + "lastName": "Zubow", + "image": "http://static.lolesports.com/players/1684759257199_placeholder.png", + "role": "none" + }, + { + "id": "110573278558991545", + "summonerName": "NemezIS", + "firstName": "Kamil", + "lastName": "Kryze", + "image": "http://static.lolesports.com/players/1687214329317_placeholder.png", + "role": "jungle" + }, + { + "id": "107858282264339540", + "summonerName": "JDMK", + "firstName": "Damian", + "lastName": "Ołdak", + "image": "http://static.lolesports.com/players/1645786771670_placeholder.png", + "role": "none" + } + ] + }, + { + "id": "107603544245460197", + "slug": "awake-gaming", + "name": "Ramo Awake Gaming", + "code": "AWK", + "image": "http://static.lolesports.com/teams/1642445663945_AWAKE-ColorDark.png", + "alternativeImage": "http://static.lolesports.com/teams/1642445663947_AWAKE-ColorLight.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "108131926691785338", + "summonerName": "Jotape", + "firstName": "Piracon Pinzon", + "lastName": "Juan Pablo", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "support" + }, + { + "id": "107581882772179967", + "summonerName": "JTL", + "firstName": "Juan David", + "lastName": "Torrente Lopez", + "image": "http://static.lolesports.com/players/1641569245728_placeholder.png", + "role": "top" + }, + { + "id": "107583616909036369", + "summonerName": "Heartless", + "firstName": "David Ezequiel", + "lastName": "Molina", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "jungle" + }, + { + "id": "107599453123010052", + "summonerName": "Araque", + "firstName": "Andrés Felipe", + "lastName": "Araque Sánchez", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "mid" + }, + { + "id": "108319755773337779", + "summonerName": "Zyzz", + "firstName": "Rodriguez Silva ", + "lastName": "Andres Felipe", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "bottom" + }, + { + "id": "109675107368449939", + "summonerName": "Joaquiin", + "firstName": "Angel Alexander", + "lastName": "Amezquita Vargas", + "image": "http://static.lolesports.com/players/1673509326593_placeholder.png", + "role": "support" + }, + { + "id": "109675109069502359", + "summonerName": "Giornito", + "firstName": "Pedro Alejandro", + "lastName": "Mendez Calderon", + "image": "http://static.lolesports.com/players/1673509352864_placeholder.png", + "role": "bottom" + } + ] + }, + { + "id": "107603548241713732", + "slug": "braves-rising", + "name": "Braves Rising", + "code": "BRR", + "image": "http://static.lolesports.com/teams/1642445708158_BRAVES-ColorLight.png", + "alternativeImage": "http://static.lolesports.com/teams/1642445708160_BRAVES-ColorDark.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "99566408548798069", + "summonerName": "Zelt", + "firstName": "Jairo", + "lastName": "Urbina", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/zelt-b05dx6m.png", + "role": "mid" + }, + { + "id": "108588683461473411", + "summonerName": "Dya", + "firstName": "Andres Felipe ", + "lastName": "Neira Quiroga", + "image": "http://static.lolesports.com/players/1656931814922_placeholder.png", + "role": "bottom" + }, + { + "id": "107581310368859515", + "summonerName": "Steellar", + "firstName": "Francisco Antonio", + "lastName": "Taba Hueramo", + "image": "http://static.lolesports.com/players/1641560513875_placeholder.png", + "role": "top" + }, + { + "id": "107599451577178034", + "summonerName": "Kantoshi", + "firstName": "Miguel Angel", + "lastName": "Escobar Blair", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "top" + }, + { + "id": "99566405936809582", + "summonerName": "Athyz", + "firstName": "Alejandro", + "lastName": "Nuñez", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/fuzion-aykb5xrb.png", + "role": "jungle" + }, + { + "id": "108319313307106256", + "summonerName": "Mianare", + "firstName": "ANAYA REYES", + "lastName": "MIGUEL ANGEL", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "bottom" + }, + { + "id": "107603688109956337", + "summonerName": "Melocoton", + "firstName": "Daniel Felipe", + "lastName": "Vargas Cifuentes", + "image": "http://static.lolesports.com/players/1641901974455_placeholder.png", + "role": "support" + }, + { + "id": "108319313376381387", + "summonerName": "M w F", + "firstName": "Botero", + "lastName": "Martín Lorenzo", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "support" + } + ] + }, + { + "id": "107603551467692884", + "slug": "elr-gaming", + "name": "ELR Gaming", + "code": "ELR", + "image": "http://static.lolesports.com/teams/1642445740208_ELR-ColorLight.png", + "alternativeImage": "http://static.lolesports.com/teams/1642445740210_ELR-ColorDark.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107599452186566116", + "summonerName": "Lara", + "firstName": "Santiago", + "lastName": "Castro Lara", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "top" + }, + { + "id": "107603686245522669", + "summonerName": "Melvln", + "firstName": "Kevin Ronaldo", + "lastName": "Concha Sanchez", + "image": "http://static.lolesports.com/players/1641901945865_placeholder.png", + "role": "jungle" + }, + { + "id": "107599452292830653", + "summonerName": "Sendoya", + "firstName": "Christian Fabrice", + "lastName": "Satabin Sendoya", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "mid" + }, + { + "id": "107599452339819969", + "summonerName": "Luckie", + "firstName": "Jhon Stevan", + "lastName": "Franco Vargas", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "bottom" + }, + { + "id": "107599452405521896", + "summonerName": "Jk", + "firstName": "Sebastian", + "lastName": "Rodriguez Leal", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "support" + }, + { + "id": "107599452492226028", + "summonerName": "Ohtori", + "firstName": "Andres Felipe", + "lastName": "Ramires Varela", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "bottom" + }, + { + "id": "107876408012850675", + "summonerName": "Davidd", + "firstName": "David", + "lastName": "Mendoza Angulo", + "image": "http://static.lolesports.com/players/1646063349826_placeholder.png", + "role": "mid" + }, + { + "id": "107876410269707588", + "summonerName": "Tiancito", + "firstName": "Cristian David", + "lastName": "Garcia Fuentes", + "image": "http://static.lolesports.com/players/1646063384259_placeholder.png", + "role": "jungle" + }, + { + "id": "107599454064107036", + "summonerName": "Pootis", + "firstName": "Kevin", + "lastName": "Arias Zuñiga", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "jungle" + } + ] + }, + { + "id": "107603554304287575", + "slug": "king-of-goats", + "name": "King of Goats", + "code": "KOG", + "image": "http://static.lolesports.com/teams/1642445862260_KINGS-OF-GOATS-C.png", + "alternativeImage": "http://static.lolesports.com/teams/1642445862261_KINGS-OF-GOATS-C.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107599452576308720", + "summonerName": "Darkin", + "firstName": "Santiago", + "lastName": "Rendón Romero", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "top" + }, + { + "id": "107599452695680453", + "summonerName": "Fallouch", + "firstName": "Hermann", + "lastName": "Finsterwalder Galvez", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "jungle" + }, + { + "id": "107599452765117940", + "summonerName": "Astronyx", + "firstName": "Gabor Joaquin", + "lastName": "Gonzales Gamboa", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "mid" + }, + { + "id": "107599452843761144", + "summonerName": "SkillHard", + "firstName": "Nicolas", + "lastName": "Gonzalez Corredor", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "mid" + }, + { + "id": "107599452890684924", + "summonerName": "Zantimon", + "firstName": "Edgar Santiago", + "lastName": "Parra Escobar", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "bottom" + }, + { + "id": "107599452947469769", + "summonerName": "Kunou", + "firstName": "Sebastián", + "lastName": "Rendón Romero", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "support" + } + ] + }, + { + "id": "107603566520687175", + "slug": "team-mayan-esports", + "name": "Team Mayan eSports", + "code": "MYN", + "image": "http://static.lolesports.com/teams/1642445971179_MAYAN-C.png", + "alternativeImage": "http://static.lolesports.com/teams/1642445971180_MAYAN-C.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "108588679327461774", + "summonerName": "Delawen", + "firstName": "Jorge Andrei", + "lastName": "Rodriguez Quesada", + "image": "http://static.lolesports.com/players/1656931751931_placeholder.png", + "role": "top" + }, + { + "id": "107581858880210538", + "summonerName": "Catan", + "firstName": "Dylan", + "lastName": "Bravo Polo", + "image": "http://static.lolesports.com/players/1641568881020_placeholder.png", + "role": "bottom" + }, + { + "id": "107581391114847695", + "summonerName": "Lio", + "firstName": "José Leonardo", + "lastName": "Rojas Mora", + "image": "http://static.lolesports.com/players/1641561745124_placeholder.png", + "role": "jungle" + }, + { + "id": "109675202849045207", + "summonerName": "William", + "firstName": "Williams", + "lastName": "Quiroz Serrato", + "image": "http://static.lolesports.com/players/1673510783351_placeholder.png", + "role": "bottom" + }, + { + "id": "107599453369294344", + "summonerName": "Lenpace", + "firstName": "Huberto Gabriel", + "lastName": "Pernilla Chacón", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "top" + } + ] + }, + { + "id": "107603586980602718", + "slug": "nocta", + "name": "NOCTA", + "code": "NOC", + "image": "http://static.lolesports.com/teams/1642445894747_NOCTA-B.png", + "alternativeImage": "http://static.lolesports.com/teams/1642445894748_NOCTA-N.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107599453455832529", + "summonerName": "Stibi", + "firstName": "Stibenson De Jesús", + "lastName": "Castillo Gutiérrez", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "top" + }, + { + "id": "107599453571210764", + "summonerName": "Raydell", + "firstName": "Delier Eliezer", + "lastName": "Velásquez Guillén", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "jungle" + }, + { + "id": "107599453633666576", + "summonerName": "Pelirrojo", + "firstName": "Pedro Alejandro", + "lastName": "Molina Ortiz", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "mid" + }, + { + "id": "107599453741045694", + "summonerName": "Gabenx", + "firstName": "Gabriel André", + "lastName": "Ordoñez Vergel", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "bottom" + }, + { + "id": "107599453815625173", + "summonerName": "Dreseul", + "firstName": "Andrés", + "lastName": "Jiménez Corrales", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "support" + }, + { + "id": "108319550541717581", + "summonerName": "Acevedo", + "firstName": "Carlos Jose", + "lastName": "Gonzalez Acevedo", + "image": "http://static.lolesports.com/players/1652825171862_silhouette_transparent1.png", + "role": "support" + } + ] + }, + { + "id": "107603596915629288", + "slug": "spirituals", + "name": "Spirituals", + "code": "STSS", + "image": "http://static.lolesports.com/teams/1642445935210_SPIRITUALS-C.png", + "alternativeImage": "http://static.lolesports.com/teams/1642446000063_SPIRITUALS-C.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "108319317826730999", + "summonerName": "Kim1", + "firstName": "Guerra Sánchez", + "lastName": "Nicolás", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "top" + }, + { + "id": "109675297218548283", + "summonerName": "Clasicoz", + "firstName": "Bayron Andres", + "lastName": "Zambrano Trillos", + "image": "http://static.lolesports.com/players/1673512223901_placeholder.png", + "role": "top" + }, + { + "id": "109675299768842174", + "summonerName": "Nops", + "firstName": "Victor Daniel", + "lastName": "Felix Leon", + "image": "http://static.lolesports.com/players/1673512262283_placeholder.png", + "role": "jungle" + }, + { + "id": "107599452765117940", + "summonerName": "Astronyx", + "firstName": "Gabor Joaquin", + "lastName": "Gonzales Gamboa", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "mid" + }, + { + "id": "107599452947469769", + "summonerName": "Kunou", + "firstName": "Sebastián", + "lastName": "Rendón Romero", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "support" + }, + { + "id": "107599453247690682", + "summonerName": "Granja", + "firstName": "Julio Alexander", + "lastName": "Peña Tovar", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "bottom" + }, + { + "id": "107599451198379437", + "summonerName": "Saya", + "firstName": "Arin Solir", + "lastName": "Pineda Vasquez", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "jungle" + }, + { + "id": "107599451298650026", + "summonerName": "Master Jos", + "firstName": "Jose Gabriel", + "lastName": "Beltrán Pimentel", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "mid" + }, + { + "id": "108121085109439257", + "summonerName": "Dantesito", + "firstName": "España Enríquez", + "lastName": "José Nicolás", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "bottom" + }, + { + "id": "107582713591582678", + "summonerName": "Jealow", + "firstName": "Jeancarlos Ivan", + "lastName": "Sanchez Jauregui", + "image": "http://static.lolesports.com/players/1641581929915_placeholder.png", + "role": "support" + }, + { + "id": "109675267658406129", + "summonerName": "Code", + "firstName": "Dilan Josue", + "lastName": "Andrade Salinas", + "image": "http://static.lolesports.com/players/1673511772695_placeholder.png", + "role": "top" + }, + { + "id": "109675275840749591", + "summonerName": "Argonauta", + "firstName": "Andres Felipe", + "lastName": "Parada Silva", + "image": "http://static.lolesports.com/players/1673511897575_placeholder.png", + "role": "support" + } + ] + }, + { + "id": "107603600826620492", + "slug": "zeu5-bogota", + "name": "Zeu5 Esports", + "code": "Z5", + "image": "http://static.lolesports.com/teams/1742462885664_FULL_COLOR_FOR_DARK_BG7.png", + "alternativeImage": "http://static.lolesports.com/teams/1742462885664_FULL_COLOR_FOR_DARK_BG7.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LRN", + "region": "LATIN AMERICA NORTH" + }, + "players": [ + { + "id": "99566405933319527", + "summonerName": "Grell", + "firstName": "Jesús", + "lastName": "Loya", + "image": "http://static.lolesports.com/players/1718125212677_Grell.png", + "role": "jungle" + }, + { + "id": "114194738161643175", + "summonerName": "Zhayend", + "firstName": "Julio Cesar", + "lastName": "Roldan Andrade", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "102825747673604890", + "summonerName": "Hobbler", + "firstName": "Felipe ", + "lastName": "Tobón", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/hobbler-2mtzpx8u.png", + "role": "none" + }, + { + "id": "114911300255515812", + "summonerName": "Juj0", + "firstName": "Juan Jose ", + "lastName": "Rodriguez Sanchez", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "none" + }, + { + "id": "114911254962969984", + "summonerName": "Falconz", + "firstName": "Juan Camilo ", + "lastName": "Franco", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "none" + }, + { + "id": "114103204378361291", + "summonerName": "Strai", + "firstName": "Roberto", + "lastName": "Guallichico", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "114103206750135934", + "summonerName": "asilah", + "firstName": "Amine", + "lastName": "Ez-zejjari", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "109783492667538764", + "summonerName": "Enthralled", + "firstName": "James", + "lastName": "Hernandez", + "image": "http://static.lolesports.com/players/1675163155748_placeholder.png", + "role": "bottom" + }, + { + "id": "110383783203108822", + "summonerName": "Crecre", + "firstName": "Gabriel", + "lastName": "Grimaldi Moreau", + "image": "http://static.lolesports.com/players/1684322863000_placeholder.png", + "role": "support" + } + ] + }, + { + "id": "107603608999191393", + "slug": "lodis-by-illuminar", + "name": "LODIS", + "code": "LDS", + "image": "http://static.lolesports.com/teams/1641900765750_lodis.png", + "alternativeImage": "http://static.lolesports.com/teams/1641900765752_lodis.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Rift Legends", + "region": "EMEA" + }, + "players": [ + { + "id": "109897086021852893", + "summonerName": "Xavi", + "firstName": "Ksawery", + "lastName": "Gurbada", + "image": "http://static.lolesports.com/players/1676896457207_placeholder.png", + "role": "none" + }, + { + "id": "111686070373598724", + "summonerName": "Dawciu", + "firstName": "Dawid", + "lastName": "Drzyzga", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "jungle" + } + ] + }, + { + "id": "107616186610872018", + "slug": "cowana-gaming", + "name": "Cowana Gaming", + "code": "COW", + "image": "http://static.lolesports.com/teams/1642092688849_CowanaGaming.png", + "alternativeImage": "http://static.lolesports.com/teams/1642092688851_CowanaGaming.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107616196676414595", + "summonerName": "TemptAzn", + "firstName": "Viet-Phong", + "lastName": "Ngo", + "image": "http://static.lolesports.com/players/1642092841358_placeholder.png", + "role": "top" + }, + { + "id": "107616249306475686", + "summonerName": "coing", + "firstName": "Jakob", + "lastName": "Johannsen", + "image": "http://static.lolesports.com/players/1642093644697_placeholder.png", + "role": "mid" + }, + { + "id": "105521269454383319", + "summonerName": "CHECKFIDER", + "firstName": "Lukáš", + "lastName": "Nevyjel", + "image": "http://static.lolesports.com/players/1642093697459_placeholder.png", + "role": "mid" + }, + { + "id": "105503551002162766", + "summonerName": "Rychly", + "firstName": "Kevin", + "lastName": "Rychly", + "image": "http://static.lolesports.com/players/placeholder.png", + "role": "support" + }, + { + "id": "105719291788401506", + "summonerName": "Foglik", + "firstName": "Dominik", + "lastName": "Trávníček", + "image": "http://static.lolesports.com/players/placeholder_.jpg", + "role": "none" + } + ] + }, + { + "id": "107616365141325353", + "slug": "ern-roar", + "name": "Spinebusters", + "code": "SPSS", + "image": "http://static.lolesports.com/teams/1704286519980_Spinebusters.png", + "alternativeImage": "http://static.lolesports.com/teams/1704286519982_Spinebusters.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "101383793884673305", + "summonerName": "Scarlet", + "firstName": "Marcel", + "lastName": "Wiederhofer", + "image": "http://static.lolesports.com/players/1655828638137_SOLARY_SCARLET-picture.png", + "role": "mid" + }, + { + "id": "101389631540411777", + "summonerName": "Shikari", + "firstName": "Jordan", + "lastName": "Pointon", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/shikari-7vn3n23l.png", + "role": "top" + }, + { + "id": "104738026199446713", + "summonerName": "Pyrka", + "firstName": "Łukasz", + "lastName": "Grześkowiak", + "image": "http://static.lolesports.com/players/1598175445373_czekolad-51vwzmjl.png", + "role": "support" + }, + { + "id": "111692231194973016", + "summonerName": "Sencesless", + "firstName": "Xavier-André", + "lastName": "Winiarski", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + }, + { + "id": "111692234276228460", + "summonerName": "Unglu", + "firstName": "Jan", + "lastName": "Ebert", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + } + ] + }, + { + "id": "107620501172253183", + "slug": "complexity-gaming", + "name": "compLexity Gaming", + "code": "COML", + "image": "http://static.lolesports.com/teams/1642158524706_CompLexity_Gaminglogo_square.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCS", + "region": "NORTH AMERICA" + }, + "players": [] + }, + { + "id": "107620528199430150", + "slug": "team-curse", + "name": "Team Curse", + "code": "CRS", + "image": "http://static.lolesports.com/teams/1642158936579_Curse_Gaminglogo_square.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCS", + "region": "NORTH AMERICA" + }, + "players": [] + }, + { + "id": "107620545270312969", + "slug": "good-game-university", + "name": "Good Game University", + "code": "GGU", + "image": "http://static.lolesports.com/teams/1642159564129_108398_1501415_95156_image.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCS", + "region": "NORTH AMERICA" + }, + "players": [] + }, + { + "id": "107620551944630284", + "slug": "team-vulcan", + "name": "Team Vulcan", + "code": "VUL", + "image": "http://static.lolesports.com/teams/1642159298375_Team_Vulcunlogo_square.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCS", + "region": "NORTH AMERICA" + }, + "players": [] + }, + { + "id": "107620556662174211", + "slug": "team-mrn", + "name": "Team MRN", + "code": "MRN", + "image": "http://static.lolesports.com/teams/1642159371126_Team_MRNlogo_square.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCS", + "region": "NORTH AMERICA" + }, + "players": [] + }, + { + "id": "107634018485795670", + "slug": "3d-revolution-esports", + "name": "3D Revolution Esports", + "code": "3DR", + "image": "http://static.lolesports.com/teams/1642364781083_3DR_Logo_1500x1500.png", + "alternativeImage": "http://static.lolesports.com/teams/1642364781085_3DR_Logo_1500x1500.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "107634062383415421", + "slug": "emperor-gaming", + "name": "Emperor Gaming", + "code": "ERG", + "image": "http://static.lolesports.com/teams/1642365450870_EmperorGaming.png", + "alternativeImage": "http://static.lolesports.com/teams/1642365450872_EmperorGaming.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107643508172652911", + "summonerName": "FattyP", + "firstName": "Elias", + "lastName": "Suomalainen", + "image": "http://static.lolesports.com/players/1642509581645_placeholder.png", + "role": "mid" + }, + { + "id": "108397487065790992", + "summonerName": "Edgar1", + "firstName": "Dziedzic", + "lastName": "Edgar", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "jungle" + }, + { + "id": "108435510557928626", + "summonerName": "Rudy", + "firstName": "Bartlomiej", + "lastName": "Pieklo", + "image": "http://static.lolesports.com/players/1654594580486_placeholder.png", + "role": "jungle" + }, + { + "id": "108645110281158593", + "summonerName": "FloKy", + "firstName": "Oscar", + "lastName": "Uceda", + "image": "http://static.lolesports.com/players/1657792818938_placeholder.png", + "role": "top" + } + ] + }, + { + "id": "107634109042326398", + "slug": "project-sinners", + "name": "Project Sinners", + "code": "PJS", + "image": "http://static.lolesports.com/teams/1642366150587_sinners_coloring_final.png", + "alternativeImage": "http://static.lolesports.com/teams/1642366150588_sinners_coloring_final.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "110542425263084349", + "summonerName": "Sriko", + "firstName": "PABLO", + "lastName": "GOMEZ", + "image": "http://static.lolesports.com/players/1686743548408_placeholder.png", + "role": "bottom" + }, + { + "id": "110542427323977881", + "summonerName": "Daskalos", + "firstName": "ALEXANDROS", + "lastName": "TSOUNIS", + "image": "http://static.lolesports.com/players/1686743580049_placeholder.png", + "role": "support" + }, + { + "id": "110592944187415043", + "summonerName": "Himeera", + "firstName": "DANIIL", + "lastName": "SAMUSHCHENKOV", + "image": "http://static.lolesports.com/players/1687514404671_placeholder.png", + "role": "support" + }, + { + "id": "109704678303931895", + "summonerName": "ReshH3H3", + "firstName": "KONSTANTINOS", + "lastName": "SPIROU", + "image": "http://static.lolesports.com/players/1673960543679_placeholder.png", + "role": "mid" + }, + { + "id": "110441774720424672", + "summonerName": "Rikos100", + "firstName": "ALEXANDROS", + "lastName": "EYTHIMIADIS", + "image": "http://static.lolesports.com/players/1685207745382_placeholder.png", + "role": "none" + } + ] + }, + { + "id": "107635420167535818", + "slug": "sem9", + "name": "SEM9", + "code": "S9", + "image": "http://static.lolesports.com/teams/1642386168294_SEM9logo_profile.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "PCS", + "region": "HONG KONG, MACAU, TAIWAN" + }, + "players": [ + { + "id": "106469100072525666", + "summonerName": "Arashi", + "firstName": "Ang", + "lastName": "En", + "image": "http://static.lolesports.com/players/1688257229502_IMPArashi.png", + "role": "jungle" + }, + { + "id": "106470311122977099", + "summonerName": "Felia", + "firstName": "Alvin", + "lastName": "Lim", + "image": "http://static.lolesports.com/players/1688257341039_IMPFelia.png", + "role": "support" + }, + { + "id": "107705430917912314", + "summonerName": "Lezar", + "firstName": "Wei Lun", + "lastName": "Lim", + "image": "http://static.lolesports.com/players/1656576521002_Lezar.png", + "role": "mid" + }, + { + "id": "100304817635135748", + "summonerName": "QaspieL", + "firstName": "Eric Sze Pin", + "lastName": "Sia", + "image": "http://static.lolesports.com/players/1656576475999_QaspieL.png", + "role": "jungle" + }, + { + "id": "108547756029282420", + "summonerName": "N0name", + "firstName": "Chen", + "lastName": "Jia Wei", + "image": "http://static.lolesports.com/players/1656576452821_N0name.png", + "role": "top" + }, + { + "id": "108547754232516920", + "summonerName": "XieDoDo", + "firstName": "Chiang", + "lastName": "Tung Chun", + "image": "http://static.lolesports.com/players/1656576545072_XieDoDo.png", + "role": "bottom" + }, + { + "id": "107636563300811412", + "summonerName": "Axin", + "firstName": "Teng Hsin", + "lastName": "Huang", + "image": "http://static.lolesports.com/players/1656576603932_Axin.png", + "role": "support" + } + ] + }, + { + "id": "107648151416997278", + "slug": "angry-bats", + "name": "Angry Bats", + "code": "BATS", + "image": "http://static.lolesports.com/teams/1642580432560_angrybats_bat_blue.png", + "alternativeImage": "http://static.lolesports.com/teams/1642580432563_bat_white.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "107648162279754621", + "slug": "atleta-esport-academy", + "name": "Atleta Esport Academy", + "code": "ATEA", + "image": "http://static.lolesports.com/teams/1642580598357_Atleta_Esport_Academy_Logo-DarioRizzo.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "108448762305074054", + "summonerName": "Impulse", + "firstName": "Wortmann", + "lastName": "Fabio", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "bottom" + }, + { + "id": "106301573735979056", + "summonerName": "Eagle", + "firstName": "Matteo", + "lastName": "Nerozzi", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "jungle" + }, + { + "id": "108448762474459746", + "summonerName": "Danifufu", + "firstName": "Stucchi", + "lastName": "Daniel", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "support" + }, + { + "id": "107599671450719969", + "summonerName": "Herod", + "firstName": "Grzegorz", + "lastName": "Rajpold", + "image": "http://static.lolesports.com/players/1641840686582_placeholder.png", + "role": "bottom" + }, + { + "id": "108448762585954909", + "summonerName": "Tommygun", + "firstName": "Diel", + "lastName": "Tom", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "top" + }, + { + "id": "105536895683103836", + "summonerName": "Thraex", + "firstName": "Andrea", + "lastName": "Sica", + "image": "https://static.lolesports.com/players/download.png", + "role": "mid" + } + ] + }, + { + "id": "107648165621924493", + "slug": "black-panthers-esports", + "name": "Black Panthers eSports", + "code": "BP", + "image": "http://static.lolesports.com/teams/1642580649136_logonuovo9-AlfredoMoscarino.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107648263775453858", + "summonerName": "Oceann", + "firstName": "João", + "lastName": "Martins", + "image": "http://static.lolesports.com/players/1642582147147_placeholder.png", + "role": "bottom" + }, + { + "id": "106301573735979056", + "summonerName": "Eagle", + "firstName": "Matteo", + "lastName": "Nerozzi", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "jungle" + }, + { + "id": "107648266807315386", + "summonerName": "Pain", + "firstName": "Giulio", + "lastName": "Siena", + "image": "http://static.lolesports.com/players/1642582192870_placeholder.png", + "role": "mid" + }, + { + "id": "107105621437436156", + "summonerName": "Smusi", + "firstName": "Livio", + "lastName": "Bassi", + "image": "https://static.lolesports.com/players/download.png", + "role": "mid" + }, + { + "id": "107648269344179644", + "summonerName": "EastGoblin", + "firstName": "Jeroen", + "lastName": "van Dijk", + "image": "http://static.lolesports.com/players/1675091111815_Eastgoblin.png", + "role": "support" + }, + { + "id": "107648270938115006", + "summonerName": "Lewar", + "firstName": "Arkadiusz", + "lastName": "Kamiński", + "image": "http://static.lolesports.com/players/1642582255583_placeholder.png", + "role": "top" + }, + { + "id": "107648272927556262", + "summonerName": "TopSadness", + "firstName": "Giovanni", + "lastName": "Podbersig", + "image": "http://static.lolesports.com/players/1642582286899_placeholder.png", + "role": "top" + } + ] + }, + { + "id": "107648168744912288", + "slug": "dren-esports", + "name": "DREN Esports", + "code": "DREN", + "image": "http://static.lolesports.com/teams/1642580697061_logocolor-SimoneZorzo.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "106301573735979056", + "summonerName": "Eagle", + "firstName": "Matteo", + "lastName": "Nerozzi", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "jungle" + }, + { + "id": "107648508938487442", + "summonerName": "Exnom", + "firstName": "Niccolò", + "lastName": "Camilli", + "image": "http://static.lolesports.com/players/1642585887327_placeholder.png", + "role": "bottom" + }, + { + "id": "111754119315073441", + "summonerName": "Kapo", + "firstName": "Mirco", + "lastName": "Maneggia", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "107633800761113335", + "summonerName": "Rassiel", + "firstName": "József", + "lastName": "Lőrincz", + "image": "http://static.lolesports.com/players/1642361457197_placeholder.png", + "role": "support" + }, + { + "id": "106301637051338905", + "summonerName": "Valton", + "firstName": "Valton", + "lastName": "Tahiraj", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "mid" + }, + { + "id": "112005397215123240", + "summonerName": "FatBenny", + "firstName": "Benito", + "lastName": "Marra", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "112518232298410071", + "summonerName": "Cloyy", + "firstName": "Douziech", + "lastName": "Clotaire", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "110462561913944326", + "summonerName": "Ssaiko", + "firstName": "Marcel", + "lastName": "Lin", + "image": "http://static.lolesports.com/players/1685524930812_placeholder.png", + "role": "jungle" + }, + { + "id": "109748952485279435", + "summonerName": "MattyNarcy", + "firstName": "Giuseppe", + "lastName": "Capogrosso", + "image": "http://static.lolesports.com/players/1674636117605_placeholder.png", + "role": "support" + }, + { + "id": "105536895683103836", + "summonerName": "Thraex", + "firstName": "Andrea", + "lastName": "Sica", + "image": "https://static.lolesports.com/players/download.png", + "role": "mid" + }, + { + "id": "112457277733473747", + "summonerName": "Pjames", + "firstName": "Pepe", + "lastName": "Alessandro Gennaro", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "112457266359242184", + "summonerName": "Ludwig", + "firstName": "Restuccia", + "lastName": "Ludovico", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "112457261230693163", + "summonerName": "Zeiss", + "firstName": "Petrossi", + "lastName": "Antonio", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "jungle" + } + ] + }, + { + "id": "107648178878874255", + "slug": "earth-revolution-gaming", + "name": "Earth Revolution Gaming", + "code": "ERGG", + "image": "http://static.lolesports.com/teams/1642580851886_ERGAMING__logofficial-LeonardoCosta.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "106528201026891726", + "summonerName": "Wenbo", + "firstName": "Marc Vincent", + "lastName": "Ostner", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "bottom" + }, + { + "id": "107648354375435083", + "summonerName": "TopSpin", + "firstName": "Mattia", + "lastName": "Comastri", + "image": "http://static.lolesports.com/players/1642583528998_placeholder.png", + "role": "bottom" + }, + { + "id": "107648356821632553", + "summonerName": "Jwic", + "firstName": "Jaehak", + "lastName": "Choi", + "image": "http://static.lolesports.com/players/1642583565973_placeholder.png", + "role": "jungle" + }, + { + "id": "107648366330250804", + "summonerName": "St0rm", + "firstName": "Mattia", + "lastName": "Lisciandrello", + "image": "http://static.lolesports.com/players/1642583711538_placeholder.png", + "role": "jungle" + }, + { + "id": "106301590489885682", + "summonerName": "Vyct0r", + "firstName": "Diego", + "lastName": "Piccardi", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "mid" + }, + { + "id": "107648370841551704", + "summonerName": "Mors", + "firstName": "Francesco", + "lastName": "Rossi", + "image": "http://static.lolesports.com/players/1642583779766_placeholder.png", + "role": "mid" + }, + { + "id": "106301630375991413", + "summonerName": "Cubo", + "firstName": "Pietro", + "lastName": "Giusti", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "support" + }, + { + "id": "107648373365343804", + "summonerName": "Fornari", + "firstName": "Gabriele", + "lastName": "Konstantinov", + "image": "http://static.lolesports.com/players/1642583819062_placeholder.png", + "role": "support" + }, + { + "id": "107648374730916715", + "summonerName": "xGenesis", + "firstName": "Pablo", + "lastName": "Jimenez Calderon", + "image": "http://static.lolesports.com/players/1642583839794_placeholder.png", + "role": "top" + }, + { + "id": "107648377536382532", + "summonerName": "Spasio", + "firstName": "Sergio", + "lastName": "Federico", + "image": "http://static.lolesports.com/players/1642583882842_placeholder.png", + "role": "top" + }, + { + "id": "107931091515325927", + "summonerName": "Ryujin", + "firstName": "Francesco", + "lastName": "Nordio", + "image": "http://static.lolesports.com/players/1646897755123_placeholder.png", + "role": "jungle" + } + ] + }, + { + "id": "107648188777728906", + "slug": "outplayed-academy", + "name": "Outplayed Academy", + "code": "OPA", + "image": "http://static.lolesports.com/teams/1642581003024_400_px_WHITE_foto_profilo_twitter-bernardinociucci.jpg", + "alternativeImage": "http://static.lolesports.com/teams/1642581003026_400_x_400_copia-bernardinociucci.jpg", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "108448763955341467", + "summonerName": "Tiwaz", + "firstName": "De Bellis", + "lastName": "Giordano ", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "bottom" + }, + { + "id": "107603165347471934", + "summonerName": "SQCRISTIAAN", + "firstName": "Cristian", + "lastName": "Sevac", + "image": "http://static.lolesports.com/players/1641893998825_placeholder.png", + "role": "mid" + } + ] + }, + { + "id": "107648194860583820", + "slug": "p11-esports", + "name": "P11 Esports", + "code": "P11", + "image": "http://static.lolesports.com/teams/1642581095276_Logo-Marcello1.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "108448820443350751", + "summonerName": "TAO", + "firstName": "Zhuo Zheng Tao", + "lastName": "Dai", + "image": "http://static.lolesports.com/players/1654797673928_silhouette_transparent1.png", + "role": "bottom" + }, + { + "id": "106301637051338905", + "summonerName": "Valton", + "firstName": "Valton", + "lastName": "Tahiraj", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "mid" + }, + { + "id": "108448779007906757", + "summonerName": "ThomasFate", + "firstName": "Nanjara ", + "lastName": "Tomislav ", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "support" + } + ] + }, + { + "id": "107649192576323016", + "slug": "team-orgless", + "name": "Team Orgless", + "code": "ORGG", + "image": "http://static.lolesports.com/teams/1642596320388_LOLESPORTSICON.png", + "alternativeImage": "http://static.lolesports.com/teams/1642596320390_LOLESPORTSICON.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [] + }, + { + "id": "107649197653855691", + "slug": "rate-gaming", + "name": "RATE Gaming", + "code": "RATE", + "image": "http://static.lolesports.com/teams/1642596397662_LOLESPORTSICON.png", + "alternativeImage": "http://static.lolesports.com/teams/1642596397663_LOLESPORTSICON.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "107655534225197927", + "slug": "zerozone-gaming", + "name": "ZeroZone Gaming", + "code": "ZZG", + "image": "http://static.lolesports.com/teams/1738418860840_ZZ_c.png", + "alternativeImage": "http://static.lolesports.com/teams/1738418860841_ZZ_c.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Liga Portuguesa", + "region": "EMEA" + }, + "players": [ + { + "id": "115110803490466237", + "summonerName": "Sh0ckZzi", + "firstName": "Marvin ", + "lastName": "Bröckel", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "111782179764878392", + "summonerName": "IMPP", + "firstName": "João", + "lastName": "Vasconcelos", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "114944475575995221", + "summonerName": "JoKozz", + "firstName": "Joël ", + "lastName": "Sequeira", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "113905464838350346", + "summonerName": "Pivolj", + "firstName": "Pavle", + "lastName": "Pejović", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "106312669885618840", + "summonerName": "Blackout", + "firstName": "Bernardo", + "lastName": "Fonseca", + "image": "http://static.lolesports.com/players/pobrane2.png", + "role": "mid" + }, + { + "id": "112456762299756787", + "summonerName": "JORDANN", + "firstName": "Giorgos", + "lastName": "Iordanidis", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + } + ] + }, + { + "id": "107655539755387391", + "slug": "varona-esports", + "name": "Varona Esports", + "code": "VAE", + "image": "http://static.lolesports.com/teams/1673860956111_LPLOL-VAE.png", + "alternativeImage": "http://static.lolesports.com/teams/1673860956113_LPLOL-VAE.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107633884701260574", + "summonerName": "Crunchy", + "firstName": "Danny", + "lastName": "Vlug", + "image": "http://static.lolesports.com/players/1642362738846_placeholder.png", + "role": "support" + }, + { + "id": "109710786512921314", + "summonerName": "Synapse", + "firstName": "Ethan", + "lastName": "Templeton", + "image": "http://static.lolesports.com/players/1674856774778_2VAE-Synapse.png", + "role": "top" + }, + { + "id": "109710795157546747", + "summonerName": "Sonzini", + "firstName": "Afonso", + "lastName": "Fernandes", + "image": "http://static.lolesports.com/players/1674856875204_7VAE-Sonzini.png", + "role": "bottom" + } + ] + }, + { + "id": "107655544289037162", + "slug": "geekcase-esports", + "name": "GeekCase eSports", + "code": "GCE", + "image": "http://static.lolesports.com/teams/1642693237425_Camada-6.png", + "alternativeImage": "http://static.lolesports.com/teams/1642693237425_Camada-6.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "109887254710800469", + "summonerName": "Bloom", + "firstName": "Denis-Lucian", + "lastName": "Ochis", + "image": "http://static.lolesports.com/players/1676746423115_placeholder.png", + "role": "mid" + } + ] + }, + { + "id": "107655677419653655", + "slug": "chip7-odivelas", + "name": "Chip7 Odivelas", + "code": "C7O", + "image": "http://static.lolesports.com/teams/1642695269937_wer234.png", + "alternativeImage": "http://static.lolesports.com/teams/1642695269938_wer234.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107655280872000217", + "summonerName": "Mexia", + "firstName": "Ricardo", + "lastName": "Mexia", + "image": "http://static.lolesports.com/players/1642689220664_placeholder.png", + "role": "top" + } + ] + }, + { + "id": "107655684013493109", + "slug": "leoes-de-porto-salvo-esports", + "name": "Leões de Porto Salvo Esports", + "code": "LPS", + "image": "http://static.lolesports.com/teams/1738418947589_lion_c.png", + "alternativeImage": "http://static.lolesports.com/teams/1738418947590_lion_c.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Liga Portuguesa", + "region": "EMEA" + }, + "players": [ + { + "id": "107655451128957727", + "summonerName": "BANKAI", + "firstName": "Flávio", + "lastName": "Neves", + "image": "http://static.lolesports.com/players/1753918362196_bankaiedy.png", + "role": "mid" + }, + { + "id": "109749022886529171", + "summonerName": "ILYXOU", + "firstName": "Iliane", + "lastName": "Bessa", + "image": "http://static.lolesports.com/players/1753918387077_ilyxourdy.png", + "role": "top" + }, + { + "id": "114228594538132654", + "summonerName": "Joki37", + "firstName": "Jakub", + "lastName": "Korzeniecki", + "image": "http://static.lolesports.com/players/1753918410301_joki37rdy.png", + "role": "jungle" + }, + { + "id": "112440591355509524", + "summonerName": "Royeq", + "firstName": "Jan", + "lastName": "Rojek", + "image": "http://static.lolesports.com/players/1753918440555_royeqrdy.png", + "role": "bottom" + }, + { + "id": "106312624152566367", + "summonerName": "Tochas", + "firstName": "Duarte", + "lastName": "Vieira", + "image": "http://static.lolesports.com/players/1753918483688_tochasrdy.png", + "role": "support" + } + ] + }, + { + "id": "107655690672015909", + "slug": "new-dawn-esports", + "name": "New Dawn eSports", + "code": "DWN", + "image": "http://static.lolesports.com/teams/1642695471726_ertre4.png", + "alternativeImage": "http://static.lolesports.com/teams/1642695471728_ertre4.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107655364700705145", + "summonerName": "Muka", + "firstName": "Samuel", + "lastName": "Dias", + "image": "http://static.lolesports.com/players/1642690499203_placeholder.png", + "role": "top" + }, + { + "id": "107105629505887212", + "summonerName": "rnz", + "firstName": "Renato ", + "lastName": "Santos", + "image": "http://static.lolesports.com/players/1687001389613_BFC-rnz.png", + "role": "jungle" + }, + { + "id": "107655382250000783", + "summonerName": "Tadow", + "firstName": "Ratier", + "lastName": "Cédric", + "image": "http://static.lolesports.com/players/1642690768040_placeholder.png", + "role": "mid" + }, + { + "id": "107655386441910640", + "summonerName": "Kumaiy", + "firstName": "David", + "lastName": "Luna", + "image": "http://static.lolesports.com/players/1642690831626_placeholder.png", + "role": "bottom" + }, + { + "id": "107065256353122585", + "summonerName": "insane", + "firstName": "Kuba", + "lastName": "Grzechnik", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "support" + } + ] + }, + { + "id": "107655701748910968", + "slug": "sailors-esports", + "name": "Sailors Esports", + "code": "SLS", + "image": "http://static.lolesports.com/teams/1642695641953_ery34.png", + "alternativeImage": "http://static.lolesports.com/teams/1642695641955_ery34.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107655409972515243", + "summonerName": "ViolaFactor", + "firstName": "Afonso", + "lastName": "Viola", + "image": "http://static.lolesports.com/players/1642691190649_placeholder.png", + "role": "bottom" + }, + { + "id": "107655413596555651", + "summonerName": "Tiagito", + "firstName": "João", + "lastName": "Rosa", + "image": "http://static.lolesports.com/players/1642691245525_placeholder.png", + "role": "support" + }, + { + "id": "108588512757246129", + "summonerName": "Rellik", + "firstName": "Ben ", + "lastName": "Carlisle", + "image": "http://static.lolesports.com/players/1656929210259_placeholder.png", + "role": "jungle" + }, + { + "id": "108622944773834982", + "summonerName": "Vorbex", + "firstName": "Artem ", + "lastName": "Chevelev", + "image": "http://static.lolesports.com/players/1657454606944_placeholder.png", + "role": "bottom" + }, + { + "id": "105837452824279496", + "summonerName": "Theop", + "firstName": "Dinis", + "lastName": "Ramos", + "image": "http://static.lolesports.com/players/placeholder.png", + "role": "none" + }, + { + "id": "109184666439789562", + "summonerName": "Guilherme", + "firstName": "Rosa", + "lastName": "Guilherme", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + }, + { + "id": "108438976866432103", + "summonerName": "Strawberry", + "firstName": "Matias", + "lastName": "Nuno", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "mid" + } + ] + }, + { + "id": "107655707737983528", + "slug": "oro-gg", + "name": "ORO Gaming Group", + "code": "OGG", + "image": "http://static.lolesports.com/teams/1654648455449_ORO-LOGO_notext-RicardoBarros.png", + "alternativeImage": "http://static.lolesports.com/teams/1654648455450_ORO-LOGO_notext-RicardoBarros.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "107656578247822628", + "slug": "team-velocity", + "name": "Team Velocity", + "code": "VELS", + "image": "http://static.lolesports.com/teams/1642709017012_Velocity_eSportslogo_square.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCS", + "region": "NORTH AMERICA" + }, + "players": [] + }, + { + "id": "107693698190316895", + "slug": "esuba-academy", + "name": "eSuba Academy", + "code": "ESB", + "image": "http://static.lolesports.com/teams/1643275420324_1C9eN4w0.png", + "alternativeImage": "http://static.lolesports.com/teams/1643275420325_1C9eN4w0.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "105647915578689271", + "summonerName": "Kars", + "firstName": "Šimon", + "lastName": "Sedlák", + "image": "http://static.lolesports.com/players/download.png", + "role": "top" + }, + { + "id": "107693386071715513", + "summonerName": "DVLK", + "firstName": "Marek", + "lastName": "Netrval", + "image": "http://static.lolesports.com/players/1643270657133_placeholder.png", + "role": "mid" + }, + { + "id": "105593137752529926", + "summonerName": "Koudys", + "firstName": "Jakub", + "lastName": "Koudela", + "image": "http://static.lolesports.com/players/download.png", + "role": "support" + } + ] + }, + { + "id": "107693716050515316", + "slug": "dark-tigers-academy", + "name": "Dark Tigers Academy", + "code": "DTG", + "image": "http://static.lolesports.com/teams/1643275690461_acKCtQWA.png", + "alternativeImage": "http://static.lolesports.com/teams/1643275690463_acKCtQWA.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107693446554817764", + "summonerName": "Peraxy", + "firstName": "Yasri Raouf", + "lastName": "Mohamed", + "image": "http://static.lolesports.com/players/1643271579935_placeholder.png", + "role": "mid" + }, + { + "id": "108449776536480211", + "summonerName": "Rambo", + "firstName": "Dimitrov", + "lastName": "Ivo", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + }, + { + "id": "108449779495811958", + "summonerName": "Jokerr", + "firstName": "Janků", + "lastName": "Lukáš", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + }, + { + "id": "108449776696165005", + "summonerName": "Immy", + "firstName": "Matras", + "lastName": "Milan", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + }, + { + "id": "108525596013122080", + "summonerName": "BunnyV", + "firstName": "Jan", + "lastName": "Vu", + "image": "http://static.lolesports.com/players/1655969173703_placeholder.png", + "role": "none" + }, + { + "id": "108525598324038214", + "summonerName": "Katy", + "firstName": "Kateřina", + "lastName": "Macháčová", + "image": "http://static.lolesports.com/players/1655969209137_silhouette_transparent.png", + "role": "none" + }, + { + "id": "108525600233168155", + "summonerName": "Eriee", + "firstName": "Erik", + "lastName": "Duba", + "image": "http://static.lolesports.com/players/1655969237112_placeholder.png", + "role": "none" + } + ] + }, + { + "id": "107693748373394826", + "slug": "inside-games-challengers", + "name": "Inside Games Challengers", + "code": "ING", + "image": "http://static.lolesports.com/teams/1643276185290_MJYaG4ww.png", + "alternativeImage": "http://static.lolesports.com/teams/1643276185292_MJYaG4ww.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "107693836459380354", + "slug": "sampi", + "name": "SAMPI", + "code": "SMP", + "image": "http://static.lolesports.com/teams/1643277531060__FdHNNmY.png", + "alternativeImage": "http://static.lolesports.com/teams/1643277531062__FdHNNmY.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "105647955934054284", + "summonerName": "Vizi", + "firstName": "Lukáš", + "lastName": "Chudý", + "image": "http://static.lolesports.com/players/download.png", + "role": "none" + }, + { + "id": "102808654052887958", + "summonerName": "Wondro", + "firstName": "Ondrej ", + "lastName": "Kenda", + "image": "https://static.lolesports.com/players/download.png", + "role": "none" + }, + { + "id": "105647920212911461", + "summonerName": "SyLees", + "firstName": "Marko", + "lastName": "Eisner", + "image": "http://static.lolesports.com/players/download.png", + "role": "mid" + } + ] + }, + { + "id": "107693908343328411", + "slug": "erko-esports", + "name": "ERKO Esports", + "code": "ERKO", + "image": "http://static.lolesports.com/teams/1643278626628_DuT33qpY.png", + "alternativeImage": "http://static.lolesports.com/teams/1643278626629_DuT33qpY.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "110648673412784156", + "summonerName": "SLIDE", + "firstName": "Jan", + "lastName": "Toszek", + "image": "http://static.lolesports.com/players/1688364765913_placeholder.png", + "role": "mid" + }, + { + "id": "110648670311061918", + "summonerName": "imbegd", + "firstName": "Miroslav", + "lastName": "Šic", + "image": "http://static.lolesports.com/players/1688364718654_placeholder.png", + "role": "support" + }, + { + "id": "110648668443923306", + "summonerName": "Jony1", + "firstName": "Jonáš", + "lastName": "Fischer", + "image": "http://static.lolesports.com/players/1688364690212_placeholder.png", + "role": "jungle" + }, + { + "id": "110494154050132134", + "summonerName": "Bambi7", + "firstName": "Arseniy", + "lastName": "Yaburov", + "image": "http://static.lolesports.com/players/1686006986864_silhouette_transparent.png", + "role": "top" + } + ] + }, + { + "id": "107693920221377070", + "slug": "ekovy", + "name": "eKoVy", + "code": "EKV", + "image": "http://static.lolesports.com/teams/1643278806951_F33vY2Kw.png", + "alternativeImage": "http://static.lolesports.com/teams/1643278806954_F33vY2Kw.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107179664800786331", + "summonerName": "Tasaa", + "firstName": "Tadeáš", + "lastName": "Nárovec", + "image": "http://static.lolesports.com/players/1643278934433_placeholder.png", + "role": "top" + }, + { + "id": "106533973777253109", + "summonerName": "Esgi", + "firstName": "Adrian", + "lastName": "Sulek", + "image": "http://static.lolesports.com/players/1643279021658_placeholder.png", + "role": "bottom" + }, + { + "id": "105647905496827621", + "summonerName": "Sobak", + "firstName": "Sebastian", + "lastName": "Nesét", + "image": "http://static.lolesports.com/players/download.png", + "role": "support" + } + ] + }, + { + "id": "107697365721420298", + "slug": "xdg-gaming", + "name": "XDG Gaming", + "code": "XDG", + "image": "http://static.lolesports.com/teams/1643331384434_XDGG.jpg", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCS", + "region": "NORTH AMERICA" + }, + "players": [] + }, + { + "id": "107700199633958891", + "slug": "ctbc-flying-oyster", + "name": "CTBC Flying Oyster", + "code": "CFO", + "image": "http://static.lolesports.com/teams/1656307849320_CFO_Logo.png", + "alternativeImage": "http://static.lolesports.com/teams/1656307849321_CFO_Logo.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCP", + "region": "PACIFIC" + }, + "players": [ + { + "id": "99566406483009320", + "summonerName": "Rest", + "firstName": "SHI-JIE", + "lastName": "XU", + "image": "http://static.lolesports.com/players/1744279638929_CFO_Rest.png", + "role": "top" + }, + { + "id": "104573129055417270", + "summonerName": "Doggo", + "firstName": "Tzu-Chuan", + "lastName": "Chiu", + "image": "http://static.lolesports.com/players/1744279758240_CFO_Doggo.png", + "role": "bottom" + }, + { + "id": "102808727762706248", + "summonerName": "Shad0w", + "firstName": "Zhiqian", + "lastName": "Zhao", + "image": "http://static.lolesports.com/players/1726482371621_LNG.shad0w-24--_0603-14_42.png", + "role": "jungle" + }, + { + "id": "109642948838393879", + "summonerName": "Orca", + "firstName": "GUO", + "lastName": "CHENG-HAN", + "image": "http://static.lolesports.com/players/1705752033156_DCGOrca.png", + "role": "support" + } + ] + }, + { + "id": "107700204561086446", + "slug": "deep-cross-gaming", + "name": "Deep Cross Gaming", + "code": "DCG", + "image": "http://static.lolesports.com/teams/1644502702164_DeepCrossGaming_W_1.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "PCS", + "region": "HONG KONG, MACAU, TAIWAN" + }, + "players": [ + { + "id": "107715200621484403", + "summonerName": "665", + "firstName": "YI-HAN", + "lastName": "WU", + "image": "http://static.lolesports.com/players/1705751980668_DCG665.png", + "role": "jungle" + }, + { + "id": "109642956405180458", + "summonerName": "Feng ", + "firstName": "Jun-Feng", + "lastName": "Chen", + "image": "http://static.lolesports.com/players/1705751371420_BYGFeng.png", + "role": "bottom" + }, + { + "id": "113956475907503780", + "summonerName": "Flauren", + "firstName": "Chak-Kin", + "lastName": "Lo", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "106470350672813985", + "summonerName": "HongSuo", + "firstName": "BEI YI", + "lastName": "GUO", + "image": "http://static.lolesports.com/players/1705752398259_PSGHongSuo.png", + "role": "mid" + }, + { + "id": "99566406485280528", + "summonerName": "ShiauC", + "firstName": "Jia-Hao ", + "lastName": "Liu", + "image": "http://static.lolesports.com/players/1687501725552_CFOShiauC.png", + "role": "support" + }, + { + "id": "103817013605434023", + "summonerName": "XiaoXiang", + "firstName": "YI-XIANG", + "lastName": "LIAO", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "mid" + } + ] + }, + { + "id": "107700208463820785", + "slug": "hurricane-gaming", + "name": "Hurricane Gaming", + "code": "HG", + "image": "http://static.lolesports.com/teams/1644502507541_HG_W.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "PCS", + "region": "HONG KONG, MACAU, TAIWAN" + }, + "players": [] + }, + { + "id": "107700211633200412", + "slug": "meta-falcon-team", + "name": "Meta Falcon Team", + "code": "MFT", + "image": "http://static.lolesports.com/teams/1643374804717_MFT.png", + "alternativeImage": "http://static.lolesports.com/teams/1643374804719_MFT.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "PCS", + "region": "HONG KONG, MACAU, TAIWAN" + }, + "players": [ + { + "id": "107715200621484403", + "summonerName": "665", + "firstName": "YI-HAN", + "lastName": "WU", + "image": "http://static.lolesports.com/players/1705751980668_DCG665.png", + "role": "jungle" + }, + { + "id": "107568586413146262", + "summonerName": "Taco", + "firstName": "ZHAO-FU", + "lastName": "FAN", + "image": "http://static.lolesports.com/players/1705751956397_DCGTaco.png", + "role": "top" + }, + { + "id": "106572026404718905", + "summonerName": "Wen", + "firstName": "Nai Wun", + "lastName": "Syu", + "image": "http://static.lolesports.com/players/1656576078869_Wen.png", + "role": "mid" + }, + { + "id": "107568612893032611", + "summonerName": "Whale", + "firstName": "ZI-HUA", + "lastName": "CHANG", + "image": "http://static.lolesports.com/players/1687503459825_JTWhale.png", + "role": "bottom" + }, + { + "id": "107760756434853754", + "summonerName": "RenHao", + "firstName": "JEN-HAO", + "lastName": "LIU", + "image": "http://static.lolesports.com/players/1656576151684_Renhao.png", + "role": "jungle" + }, + { + "id": "107568603509354241", + "summonerName": "Hong2", + "firstName": "YONG-HONG", + "lastName": "XU", + "image": "http://static.lolesports.com/players/1687502961081_HPSHong2.png", + "role": "mid" + }, + { + "id": "108547753941995828", + "summonerName": "1SSUE", + "firstName": "CHAO", + "lastName": "YI-CHIEH", + "image": "http://static.lolesports.com/players/1656576129032_1ssue.png", + "role": "support" + } + ] + }, + { + "id": "107741445382388194", + "slug": "team-dragon-knights", + "name": "Team Dragon Knights", + "code": "TTDK", + "image": "http://static.lolesports.com/teams/1644003986855_Team_Dragon_Knightslogo_square.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCS", + "region": "NORTH AMERICA" + }, + "players": [] + }, + { + "id": "107741452694443325", + "slug": "enemy", + "name": "Enemy", + "code": "NME", + "image": "http://static.lolesports.com/teams/1644004098099_Enemylogo_square.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCS", + "region": "NORTH AMERICA" + }, + "players": [] + }, + { + "id": "107744562540959455", + "slug": "apex-gaming", + "name": "Apex Gaming", + "code": "APEX", + "image": "http://static.lolesports.com/teams/1644051551362_Apex_Gaminglogo_square.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCS", + "region": "NORTH AMERICA" + }, + "players": [] + }, + { + "id": "107744589978851042", + "slug": "phoenix1", + "name": "Phoenix1", + "code": "PH1", + "image": "http://static.lolesports.com/teams/1644051967729_Phoenix1logo_square.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCS", + "region": "NORTH AMERICA" + }, + "players": [] + }, + { + "id": "107744602693162725", + "slug": "team-envyus", + "name": "Team EnVyUs", + "code": "ENV", + "image": "http://static.lolesports.com/teams/1644052162733_Team_EnVyUslogo_square.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCS", + "region": "NORTH AMERICA" + }, + "players": [] + }, + { + "id": "107760667929003738", + "slug": "frank-esports", + "name": "FRANK Esports", + "code": "FAK", + "image": "http://static.lolesports.com/teams/1656308269827_220621_FRANK_Final_Logo_W.png", + "alternativeImage": "http://static.lolesports.com/teams/1656308269828_220621_FRANK_Final_Logo_B.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "PCS", + "region": "HONG KONG, MACAU, TAIWAN" + }, + "players": [ + { + "id": "107705431058397645", + "summonerName": "Pretender", + "firstName": "CHEUK LUN JASON", + "lastName": "NG", + "image": "http://static.lolesports.com/players/1705749359359_FAKPretender.png", + "role": "mid" + }, + { + "id": "106470320886575308", + "summonerName": "Husha", + "firstName": "TZU WEI", + "lastName": "HUANG", + "image": "http://static.lolesports.com/players/1745997069856_CHF_Husha.png", + "role": "jungle" + }, + { + "id": "101428372795092403", + "summonerName": "MnM", + "firstName": "Ka Chun", + "lastName": "Wong", + "image": "http://static.lolesports.com/players/1705749389479_FAKMnM.png", + "role": "support" + }, + { + "id": "99566406476560672", + "summonerName": "Koala", + "firstName": "Zhi-Qiang", + "lastName": "Lin", + "image": "http://static.lolesports.com/players/1656573278481_Koala.png", + "role": "support" + }, + { + "id": "98767975915355341", + "summonerName": "Gemini", + "firstName": "Chu-Xuan", + "lastName": "Huang", + "image": "http://static.lolesports.com/players/1705749263215_FAKGemini.png", + "role": "jungle" + }, + { + "id": "108547753406304556", + "summonerName": "YSKM", + "firstName": "Chau", + "lastName": "Shu Tak", + "image": "http://static.lolesports.com/players/1656574350705_YSKM.png", + "role": "top" + }, + { + "id": "107760720477800166", + "summonerName": "Shunn", + "firstName": "Ying Shun", + "lastName": "Chao", + "image": "http://static.lolesports.com/players/1705751641916_CFOShunn1.png", + "role": "bottom" + } + ] + }, + { + "id": "107786478894645827", + "slug": "team-secret", + "name": "Team Secret", + "code": "TS", + "image": "http://static.lolesports.com/teams/1644691144448_NewProject1.png", + "alternativeImage": "http://static.lolesports.com/teams/1644691144450_TeamSecret.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "VCS", + "region": "VIETNAM" + }, + "players": [] + }, + { + "id": "107801257572759482", + "slug": "wolf-club-gaming-arch", + "name": "Wolf Club Gaming ARCH", + "code": "WCXX", + "image": "http://static.lolesports.com/teams/1644916646869_wolf-White.png", + "alternativeImage": "http://static.lolesports.com/teams/1644916646870_wolf-Black.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LLA", + "region": "LATIN AMERICA" + }, + "players": [ + { + "id": "112880372381731252", + "summonerName": "Ben01", + "firstName": "Ben", + "lastName": "Ben", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + } + ] + }, + { + "id": "107829548315015409", + "slug": "york-lions", + "name": "York Lions", + "code": "YU", + "image": "http://static.lolesports.com/teams/1650399072207_yuesportsw.png", + "alternativeImage": "http://static.lolesports.com/teams/1650399072208_yuesports.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107828130575382448", + "summonerName": "Le Khan", + "firstName": "Junhyeong", + "lastName": "Park", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + }, + { + "id": "107828130709441813", + "summonerName": "Wally", + "firstName": "Waeel", + "lastName": "Elhilali", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + }, + { + "id": "107828130840846630", + "summonerName": "Sweet", + "firstName": "Yousef", + "lastName": "rakabe", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + }, + { + "id": "107828201081632726", + "summonerName": "D1or", + "firstName": "Shayn", + "lastName": "Morgan", + "image": "http://static.lolesports.com/players/1645327773645_silhouette_transparent.png", + "role": "none" + }, + { + "id": "107828130969887018", + "summonerName": "Invent", + "firstName": "Jason", + "lastName": "Ji", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + }, + { + "id": "107828131119303970", + "summonerName": "Digitalotus", + "firstName": "Jonas", + "lastName": "Kraft", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + }, + { + "id": "107828205621420356", + "summonerName": "RickyLafleu", + "firstName": "Eric", + "lastName": "Moffitt", + "image": "http://static.lolesports.com/players/1645327843080_silhouette_transparent.png", + "role": "none" + }, + { + "id": "106297385074453139", + "summonerName": "Eeyoree", + "firstName": "Nathan", + "lastName": "Fennel", + "image": "http://static.lolesports.com/players/pobrane2.png", + "role": "none" + }, + { + "id": "107828131266240828", + "summonerName": "Misha", + "firstName": "Misha", + "lastName": "Tasic", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + } + ] + }, + { + "id": "107829558090277757", + "slug": "bogged", + "name": "Bogged", + "code": "BOG", + "image": "http://static.lolesports.com/teams/1645348478881_LOLESPORTSICON.png", + "alternativeImage": "http://static.lolesports.com/teams/1645348478882_LOLESPORTSICON.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107828216814636380", + "summonerName": "dshao", + "firstName": "Derek", + "lastName": "Shao", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + }, + { + "id": "98926509789380194", + "summonerName": "Inori", + "firstName": "Rami", + "lastName": "Charagh", + "image": "http://static.lolesports.com/players/1591811341104_C9_INORI_WEB.png", + "role": "none" + }, + { + "id": "98926509856279072", + "summonerName": "Tuesday", + "firstName": "Jean", + "lastName": "Sebastien", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/tuesday-4glqmqve.png", + "role": "none" + }, + { + "id": "107828234463180804", + "summonerName": "B3nji", + "firstName": "Benjamin", + "lastName": "deMunck", + "image": "http://static.lolesports.com/players/1645328282004_silhouette_transparent.png", + "role": "none" + }, + { + "id": "99566405104539703", + "summonerName": "Hooks", + "firstName": "Osama", + "lastName": "Alkhalaileh", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/auto-h2h9tyl8.png", + "role": "none" + } + ] + }, + { + "id": "107829578102541959", + "slug": "ginger-tumeric", + "name": "Ginger Tumeric", + "code": "GTC", + "image": "http://static.lolesports.com/teams/1645348783081_LOLESPORTSICON.png", + "alternativeImage": "http://static.lolesports.com/teams/1645348783082_LOLESPORTSICON.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107828217138258248", + "summonerName": "existence", + "firstName": "Taner", + "lastName": "Levendoglu", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + }, + { + "id": "107828217272563683", + "summonerName": "SiddyWiddy", + "firstName": "Siddhant", + "lastName": "Nath", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + }, + { + "id": "105957596293159958", + "summonerName": "DNA", + "firstName": "Cédric", + "lastName": "Beaulieu", + "image": "http://static.lolesports.com/players/silhouette.png", + "role": "none" + }, + { + "id": "107828217384471905", + "summonerName": "Le Grain", + "firstName": "Tristan", + "lastName": "Cote-lalumiere", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + }, + { + "id": "101383793875694850", + "summonerName": "Duoking", + "firstName": "James", + "lastName": "Stephenson", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/duoking-9pahwumy.png", + "role": "none" + }, + { + "id": "107828217500732780", + "summonerName": "Vakin", + "firstName": "Owen", + "lastName": "Ferrier", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + }, + { + "id": "107828224832441738", + "summonerName": "T3mpest", + "firstName": "Andrew", + "lastName": "Stark", + "image": "http://static.lolesports.com/players/1645328136077_silhouette_transparent.png", + "role": "none" + }, + { + "id": "107828217601794380", + "summonerName": "ArgentumSky", + "firstName": "Akash", + "lastName": "Gupta", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + } + ] + }, + { + "id": "107953988302037900", + "slug": "maryville-saints", + "name": "Maryville Saints", + "code": "MU", + "image": "http://static.lolesports.com/teams/1647541962687_200x200_MU_Logo.png", + "alternativeImage": "http://static.lolesports.com/teams/1647541962690_200x200_MU_Logo.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "107577676457789192", + "summonerName": "Kind Jungle", + "firstName": "Nathan", + "lastName": "Mosby", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "99566406280099065", + "summonerName": "Getback", + "firstName": "Jarod", + "lastName": "Tucker", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/getback-9rs491no.png", + "role": "none" + }, + { + "id": "106857849933915524", + "summonerName": "Zyko", + "firstName": "Ryan", + "lastName": "Jung", + "image": "http://static.lolesports.com/players/1630521390121_silhouette.png", + "role": "none" + }, + { + "id": "107577680457975637", + "summonerName": "Aizo", + "firstName": "Jon", + "lastName": "Street", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + } + ] + }, + { + "id": "108001254066086450", + "slug": "tft-emea", + "name": "TFT", + "code": "TFT", + "image": "http://static.lolesports.com/teams/1723029869132_TFT_GRADIENT_2.png", + "alternativeImage": "http://static.lolesports.com/teams/1723029869133_TFT_GRADIENT_2.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "TFT Esports ", + "region": "INTERNATIONAL" + }, + "players": [ + { + "id": "100118511917058602", + "summonerName": "Aloned", + "firstName": "Tomas Antonio", + "lastName": "Díaz Valiente", + "image": "http://static.lolesports.com/players/1717437223367_Aloned.png", + "role": "none" + } + ] + }, + { + "id": "108001255999862725", + "slug": "tft-emea", + "name": "TFT", + "code": "TFT", + "image": "http://static.lolesports.com/teams/1723029875030_TFT_GRADIENT_2.png", + "alternativeImage": "http://static.lolesports.com/teams/1723029875030_TFT_GRADIENT_2.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "TFT Esports ", + "region": "INTERNATIONAL" + }, + "players": [ + { + "id": "100118511917058602", + "summonerName": "Aloned", + "firstName": "Tomas Antonio", + "lastName": "Díaz Valiente", + "image": "http://static.lolesports.com/players/1717437223367_Aloned.png", + "role": "none" + } + ] + }, + { + "id": "108018634175049561", + "slug": "rx-esports", + "name": "RX Esports", + "code": "RX", + "image": "http://static.lolesports.com/teams/1648233552846_noteamlogo-lolesports.png", + "alternativeImage": "http://static.lolesports.com/teams/1648233552847_noteamlogo-lolesports.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "108018681119227254", + "summonerName": "Leshin", + "firstName": "Amaro Romero", + "lastName": "Mario Alexis", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "top" + }, + { + "id": "108018681174343034", + "summonerName": "Yasikof", + "firstName": "Marín Muñoz", + "lastName": "Giovanny Stevenson", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "jungle" + }, + { + "id": "108018684663852339", + "summonerName": "Hang2", + "firstName": "Duran Fonseca", + "lastName": "Santiago", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "mid" + }, + { + "id": "108018681360510227", + "summonerName": "Astolfo", + "firstName": "Parada Silva", + "lastName": "Andres Felipe", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "support" + }, + { + "id": "108018681408154903", + "summonerName": "Ankor", + "firstName": "Martinez Grisales", + "lastName": "Cristian Camilo", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "support" + }, + { + "id": "108018681289928543", + "summonerName": "Milo", + "firstName": "Gutiérrez Labrada", + "lastName": "Juan Camilo", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "bottom" + } + ] + }, + { + "id": "108018637503819612", + "slug": "pro42-esports", + "name": "PRO42 Esports", + "code": "P42", + "image": "http://static.lolesports.com/teams/1652820752315_PRO42-White.png", + "alternativeImage": "http://static.lolesports.com/teams/1652820752316_PRO42-C.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "99566405931955015", + "summonerName": "Foxy", + "firstName": "Ricardo Manuel", + "lastName": "Ríos Freitas", + "image": "https://static.lolesports.com/players/download.png", + "role": "bottom" + }, + { + "id": "108018681716698987", + "summonerName": "Dems", + "firstName": "Martínez Sánchez", + "lastName": "David Enrique José", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "support" + }, + { + "id": "108319313422180289", + "summonerName": "Ichik", + "firstName": "Llanas Romero", + "lastName": "Maximino Arturo", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "top" + }, + { + "id": "107837864353409038", + "summonerName": "Cott", + "firstName": "Sebastian", + "lastName": "Pinzon Torres", + "image": "http://static.lolesports.com/players/1645475223650_silhouette_transparent.png", + "role": "jungle" + }, + { + "id": "108319313570776767", + "summonerName": "Murillo", + "firstName": "Murillo Albernia", + "lastName": "Yordy", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "mid" + }, + { + "id": "108319317698935795", + "summonerName": "Libra1", + "firstName": "Acevedo Posada", + "lastName": "Cristian", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "support" + }, + { + "id": "107581391114847695", + "summonerName": "Lio", + "firstName": "José Leonardo", + "lastName": "Rojas Mora", + "image": "http://static.lolesports.com/players/1641561745124_placeholder.png", + "role": "none" + }, + { + "id": "108605402029255915", + "summonerName": "Falan", + "firstName": "Esteban", + "lastName": "Ocampo Ocampo", + "image": "https://static.lolesports.com/players/download.png", + "role": "none" + }, + { + "id": "107581398133425627", + "summonerName": "Juanma", + "firstName": "Juan Manuel", + "lastName": "Calderón Reveiz", + "image": "http://static.lolesports.com/players/1641561852463_placeholder.png", + "role": "none" + }, + { + "id": "108018681499250531", + "summonerName": "Vincent", + "firstName": "Lugo Hernández", + "lastName": "Daniel Fabricio", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "jungle" + }, + { + "id": "108005999148426477", + "summonerName": "Bl0oMi", + "firstName": "Santiago Alonso", + "lastName": "Cardenas Pineda", + "image": "https://static.lolesports.com/players/download.png", + "role": "mid" + } + ] + }, + { + "id": "108078422885368642", + "slug": "panathinaikos-esports", + "name": "Panathinaikos Esports", + "code": "PAO", + "image": "http://static.lolesports.com/teams/1673904956249_PAO.png", + "alternativeImage": "http://static.lolesports.com/teams/1673904956251_PAO.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "105521648113779564", + "summonerName": "Lotus", + "firstName": "Panagiotis Ignatios", + "lastName": "Psarros", + "image": "http://static.lolesports.com/players/1633886641679_silhouette.png", + "role": "mid" + }, + { + "id": "107802421879699658", + "summonerName": "Inferno", + "firstName": "Konstantinos-Nektarios", + "lastName": "Kontolios", + "image": "http://static.lolesports.com/players/1644934413022_placeholder.png", + "role": "none" + } + ] + }, + { + "id": "108121039511688388", + "slug": "dragones-carolina", + "name": "Dragones Carolina", + "code": "UCA", + "image": "http://static.lolesports.com/teams/1649796133841_noteamlogo-lolesports1.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "108121183767434681", + "summonerName": "Escanor", + "firstName": "André Alexander", + "lastName": "Montesinos Palomo", + "image": "http://static.lolesports.com/players/1649798334081_silhouette_transparent.png", + "role": "top" + }, + { + "id": "108121084450051278", + "summonerName": "Naros", + "firstName": "Salas Catari", + "lastName": "Leonardo Gabriel ", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "jungle" + }, + { + "id": "108121084573682449", + "summonerName": "kePt", + "firstName": "Cota Gallegos", + "lastName": "Angel Gabriel ", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "mid" + }, + { + "id": "108121084628470549", + "summonerName": "Kenu", + "firstName": " Mantilla Mera", + "lastName": "Miguel Alejandro ", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "bottom" + }, + { + "id": "108121084685063378", + "summonerName": "EpicReaper", + "firstName": "Alberto Gómez Suárez", + "lastName": "Carlos Alberto ", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "support" + }, + { + "id": "108121084742472918", + "summonerName": "Raaay", + "firstName": "Montesinos Palomo", + "lastName": "Raymundo Javier", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "jungle" + } + ] + }, + { + "id": "108121041773335751", + "slug": "el-cocas-uc", + "name": "El Cocas UC", + "code": "COC", + "image": "http://static.lolesports.com/teams/1649796168994_noteamlogo-lolesports1.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "108121084846069290", + "summonerName": "Benz", + "firstName": "Bencomo Treviño", + "lastName": "Daniel Alberto ", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "top" + }, + { + "id": "108121084940522714", + "summonerName": "Dabot", + "firstName": "Díaz Candia", + "lastName": "David", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "jungle" + }, + { + "id": "108121085109439257", + "summonerName": "Dantesito", + "firstName": "España Enríquez", + "lastName": "José Nicolás", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "bottom" + }, + { + "id": "108121085199389918", + "summonerName": "ElCocas", + "firstName": "Rosas Chaires", + "lastName": "Ariel", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "bottom" + }, + { + "id": "108121084996343342", + "summonerName": "Megumin", + "firstName": "Vega Sierra", + "lastName": "Kevin Cruz", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "mid" + }, + { + "id": "107581349517871834", + "summonerName": "Nym", + "firstName": "Rubén", + "lastName": "Rodríguez Carrizal", + "image": "http://static.lolesports.com/players/1641561111527_placeholder.png", + "role": "support" + } + ] + }, + { + "id": "108121045029738014", + "slug": "vatra-gaming", + "name": "Vatra Gaming", + "code": "VTR", + "image": "http://static.lolesports.com/teams/1649796218094_noteamlogo-lolesports1.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "108121085260600546", + "summonerName": "Carita", + "firstName": "Pardo Avendaño", + "lastName": "Carlos Eduardo ", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "top" + }, + { + "id": "108121092185839179", + "summonerName": "Che", + "firstName": "Ballesteros Guadarrama", + "lastName": "José Jabel ", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "jungle" + }, + { + "id": "108121092252964099", + "summonerName": "Pishilon", + "firstName": "Duran Zavala", + "lastName": "Sebastian ", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "mid" + }, + { + "id": "108121092314289743", + "summonerName": "Raeghal", + "firstName": "Medina Aguirre", + "lastName": "Emmanuel ", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "bottom" + }, + { + "id": "108121092380366087", + "summonerName": "Sophyre", + "firstName": "Lopez Vazquez", + "lastName": "Diana Kenia ", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "support" + }, + { + "id": "108121092435940619", + "summonerName": "Soradg", + "firstName": "Ramirez Lopez", + "lastName": "Daniel ", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "support" + } + ] + }, + { + "id": "108121047955658273", + "slug": "aurelius-esports", + "name": "Aurelius Esports", + "code": "AU", + "image": "http://static.lolesports.com/teams/1652811350625_Aurelius-ColorLight.png", + "alternativeImage": "http://static.lolesports.com/teams/1652811350628_Aurelius-Black.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "108121092864808229", + "summonerName": "Sun Tiger", + "firstName": "Hidalgo Flores", + "lastName": "Kevin Emmanuel ", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "bottom" + }, + { + "id": "104327530947769929", + "summonerName": "Tyr", + "firstName": "Héctor", + "lastName": "Godinez", + "image": "http://static.lolesports.com/players/1718125699285_Tyr.png", + "role": "support" + }, + { + "id": "108318778388667705", + "summonerName": "Illumi", + "firstName": "Hernandez", + "lastName": "Axel", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "top" + } + ] + }, + { + "id": "108121050151523530", + "slug": "cosver-esports", + "name": "CosVer Esports", + "code": "CVE", + "image": "http://static.lolesports.com/teams/1649796292771_noteamlogo-lolesports1.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "108121093108389491", + "summonerName": "lkoala", + "firstName": "Hernandez Alvarado", + "lastName": "Braulio ", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "top" + }, + { + "id": "108121093207823662", + "summonerName": "Toilet", + "firstName": "Dominguez Ramirez", + "lastName": "Jorge Francisco", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "jungle" + }, + { + "id": "108121093290448511", + "summonerName": "Afeto", + "firstName": "Ortega Arango", + "lastName": "Fernando Aaron", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "mid" + }, + { + "id": "108121093366617395", + "summonerName": "Godsi", + "firstName": "Reyes Carranza", + "lastName": "Ulises ", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "bottom" + }, + { + "id": "108121093466101047", + "summonerName": "Lalo", + "firstName": "Diego Valero", + "lastName": "Juan Eduardo", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "support" + }, + { + "id": "108121093613688130", + "summonerName": "Helcrank", + "firstName": "Arribasplata", + "lastName": "Bryan", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "top" + }, + { + "id": "108121093677323597", + "summonerName": "Hansu", + "firstName": "Ruano Martinez", + "lastName": "Juan Pablo", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "support" + } + ] + }, + { + "id": "108121051709036068", + "slug": "polar-squad", + "name": "Polar Squad", + "code": "PLSQ", + "image": "http://static.lolesports.com/teams/1673471548789_POLAR-B.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "108018681174343034", + "summonerName": "Yasikof", + "firstName": "Marín Muñoz", + "lastName": "Giovanny Stevenson", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "jungle" + }, + { + "id": "109675271282589715", + "summonerName": "Hangyaku", + "firstName": "Santiago", + "lastName": "Duran Fosneca", + "image": "http://static.lolesports.com/players/1673511828007_placeholder.png", + "role": "mid" + }, + { + "id": "108121093943907978", + "summonerName": "Rokecs", + "firstName": "Reyes Contreras", + "lastName": "Asaf ", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "bottom" + }, + { + "id": "109675277775000118", + "summonerName": "Astro", + "firstName": "Kewin Andres", + "lastName": "Becerra Fernandez", + "image": "http://static.lolesports.com/players/1673511927350_placeholder.png", + "role": "top" + }, + { + "id": "108033845851746480", + "summonerName": "Guzke", + "firstName": "Kevin Alexander", + "lastName": "Guzman Garcia", + "image": "http://static.lolesports.com/players/1648465659969_placeholder.png", + "role": "mid" + }, + { + "id": "108121093999548053", + "summonerName": "LupiyoElPiy", + "firstName": "Arreola Ruvalcaba", + "lastName": "Noe Guadalupe ", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + }, + { + "id": "109892678657940020", + "summonerName": "L0ki", + "firstName": "Juan Pablo", + "lastName": "Arenas Ocampo", + "image": "http://static.lolesports.com/players/1676829199437_silhouette_transparent1.png", + "role": "bottom" + }, + { + "id": "107581398133425627", + "summonerName": "Juanma", + "firstName": "Juan Manuel", + "lastName": "Calderón Reveiz", + "image": "http://static.lolesports.com/players/1641561852463_placeholder.png", + "role": "support" + }, + { + "id": "107599452576308720", + "summonerName": "Darkin", + "firstName": "Santiago", + "lastName": "Rendón Romero", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "top" + }, + { + "id": "107599451749930934", + "summonerName": "Melkior", + "firstName": "Anderson", + "lastName": "Montaño cueto", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "mid" + } + ] + }, + { + "id": "108121054112418574", + "slug": "tactical-esports", + "name": "Tactical Esports", + "code": "TAC", + "image": "http://static.lolesports.com/teams/1649796357188_noteamlogo-lolesports1.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "108121094240963441", + "summonerName": "Chibi Mtz", + "firstName": "Martínez Sánchez", + "lastName": "José Adrián", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "top" + }, + { + "id": "108121094449534311", + "summonerName": "Agosaurio", + "firstName": "Acoltzi Lopez", + "lastName": "Oscar Eduardo", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "jungle" + }, + { + "id": "108121094548362603", + "summonerName": "Willy", + "firstName": "Quiroz Serrato", + "lastName": "Williams ", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "mid" + }, + { + "id": "108121094641931959", + "summonerName": "Axtray", + "firstName": "García Cárdenas", + "lastName": "Iván ", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "bottom" + }, + { + "id": "108121094731470199", + "summonerName": "Gela1", + "firstName": "Gaxiola Galaviz", + "lastName": "Gerardo", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "support" + }, + { + "id": "108121094800332476", + "summonerName": "Pesobaby", + "firstName": "Gil Pérez", + "lastName": "Alonso", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "bottom" + }, + { + "id": "108121094857168267", + "summonerName": "AkiNiglet", + "firstName": "Gómez Suárez", + "lastName": "Gustavo", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "bottom" + } + ] + }, + { + "id": "108121057213928999", + "slug": "hot-n-ready", + "name": "HOT N READY", + "code": "HNR", + "image": "http://static.lolesports.com/teams/1649796404362_noteamlogo-lolesports1.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "108121094911219399", + "summonerName": "Xokas", + "firstName": "Moscoso Arevalo", + "lastName": "Daniel Eduardo", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "top" + }, + { + "id": "108121095020156303", + "summonerName": "Joelios", + "firstName": "Gutiérrez Franco", + "lastName": "Joel ", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "mid" + }, + { + "id": "108121095074878867", + "summonerName": "Walker", + "firstName": "Soto Manríquez", + "lastName": "Luis Fernando", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "bottom" + }, + { + "id": "108121095127700888", + "summonerName": "Pinita", + "firstName": "Piña May", + "lastName": "Francisco Antonio", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "support" + }, + { + "id": "108121095227870097", + "summonerName": "SkyRush", + "firstName": "Reyes Preciado", + "lastName": "Carlos ", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "jungle" + } + ] + }, + { + "id": "108126873538910736", + "slug": "cidade-curiosa", + "name": "Cidade Curiosa", + "code": "CCS", + "image": "http://static.lolesports.com/teams/1654648378899_CC_21.png", + "alternativeImage": "http://static.lolesports.com/teams/1654648378901_CC_21.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "108126522078648815", + "summonerName": "Davidao", + "firstName": "Alves", + "lastName": "David", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "top" + }, + { + "id": "104727111308473151", + "summonerName": "Travanques", + "firstName": "David", + "lastName": "Bonjardim", + "image": "https://static.lolesports.com/players/download.png", + "role": "jungle" + }, + { + "id": "108438978161882228", + "summonerName": "Rivayne", + "firstName": "Esteves", + "lastName": "Tiago", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "mid" + }, + { + "id": "108438978211558520", + "summonerName": "J1ferz", + "firstName": "Vidal", + "lastName": "Eduardo", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "bottom" + }, + { + "id": "108438978259727484", + "summonerName": "Beatlez", + "firstName": "Cotovio", + "lastName": "Bernardo", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "support" + }, + { + "id": "108438978365645842", + "summonerName": "Wuanted", + "firstName": "André", + "lastName": "Henriques", + "image": "http://static.lolesports.com/players/1753917243955_wuantedrdy.png", + "role": "jungle" + }, + { + "id": "108126522584078300", + "summonerName": "migix", + "firstName": "Andrade", + "lastName": "Miguel", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "support" + }, + { + "id": "104727116555154388", + "summonerName": "nuance", + "firstName": "Diogo", + "lastName": "Mesquita", + "image": "http://static.lolesports.com/players/1598008978145_czekolad-51vwzmjl.png", + "role": "bottom" + }, + { + "id": "108447736205537794", + "summonerName": "010", + "firstName": "Joaquim", + "lastName": "Alves", + "image": "http://static.lolesports.com/players/1654781129985_placeholder.png", + "role": "mid" + }, + { + "id": "105730187210111076", + "summonerName": "Flash", + "firstName": "Luís", + "lastName": "Cerqueira", + "image": "http://static.lolesports.com/players/placeholder.png", + "role": "none" + }, + { + "id": "107655212274520290", + "summonerName": "D4rtaine", + "firstName": "David", + "lastName": "Pires", + "image": "http://static.lolesports.com/players/1642688173109_placeholder.png", + "role": "none" + }, + { + "id": "109184666891622233", + "summonerName": "Vasooooo", + "firstName": "Almeida", + "lastName": "Vasco", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + } + ] + }, + { + "id": "108131947881519523", + "slug": "eternal-flame", + "name": "Eternal Flame", + "code": "EFL", + "image": "http://static.lolesports.com/teams/1649962582472_noteamlogo-lolesports1.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "108131925861620067", + "summonerName": "Crawl ", + "firstName": "Charris Ruiz", + "lastName": "Aldair Ricardo", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "jungle" + }, + { + "id": "108131925932333415", + "summonerName": "Duglas", + "firstName": "Rosas Domínguez", + "lastName": "Carlos Julián", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "mid" + }, + { + "id": "108131925994738387", + "summonerName": "Romio", + "firstName": "Loor", + "lastName": "Bryan", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "bottom" + }, + { + "id": "108131926076795483", + "summonerName": "PataDePollo", + "firstName": "Cobeña Cornejo", + "lastName": "Roberto Carlos", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "support" + }, + { + "id": "108131926166886765", + "summonerName": "Billrok", + "firstName": "Chilan Cruz", + "lastName": "Reny Ariel", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "top" + } + ] + }, + { + "id": "108131951488445104", + "slug": "agd-esports", + "name": "AGD Esports", + "code": "AGD", + "image": "http://static.lolesports.com/teams/1649962637968_noteamlogo-lolesports1.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "108131926212761969", + "summonerName": "Hater", + "firstName": "Sanchez Cagua", + "lastName": "Harold Josue", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "top" + }, + { + "id": "108131926324122341", + "summonerName": "KINGPOWER", + "firstName": "Cedeño Mieles", + "lastName": "Joel", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "jungle" + }, + { + "id": "108131926379375199", + "summonerName": "Joinlav", + "firstName": "Hernandez Ramirez", + "lastName": "Bryan Alexie", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "mid" + }, + { + "id": "108131926446090858", + "summonerName": "TheGelvic", + "firstName": "Gelder", + "lastName": "Victor Manuel", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "bottom" + }, + { + "id": "108131926550272383", + "summonerName": "Huevo Frito", + "firstName": "Poveda Martinez", + "lastName": "Ray", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "support" + }, + { + "id": "108131926614583926", + "summonerName": "SirFate ", + "firstName": "Argandoña Mendoza", + "lastName": "José", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "support" + } + ] + }, + { + "id": "108131965235538611", + "slug": "antares-esports", + "name": "Antares Esports", + "code": "ANTA", + "image": "http://static.lolesports.com/teams/1655796379986_ANTARES-700X700.png", + "alternativeImage": "http://static.lolesports.com/teams/1655796379988_ANTARES-N-700x700.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "108319774956341265", + "summonerName": "Wolffi", + "firstName": "Morilla Fuero", + "lastName": "Wolfgang Edgwang", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "top" + }, + { + "id": "109698536995363725", + "summonerName": "Bingus", + "firstName": "Luis Diego", + "lastName": "Canchari Huanca", + "image": "http://static.lolesports.com/players/1673866835790_placeholder.png", + "role": "top" + }, + { + "id": "107678255728432402", + "summonerName": "Encounters", + "firstName": "Kevin Danilo", + "lastName": "Lizarraga Elizalde", + "image": "http://static.lolesports.com/players/1643039786607_placeholder.png", + "role": "jungle" + }, + { + "id": "109698541765387571", + "summonerName": "Superbia", + "firstName": "Miguel", + "lastName": "Vargas Gutierrez", + "image": "http://static.lolesports.com/players/1673866908542_placeholder.png", + "role": "mid" + }, + { + "id": "109698548718851934", + "summonerName": "Zeldris", + "firstName": "Cristhian Alexandro", + "lastName": "Ticlavilca Tovar", + "image": "http://static.lolesports.com/players/1673867014588_placeholder.png", + "role": "bottom" + }, + { + "id": "109698550825753489", + "summonerName": "Jagger", + "firstName": "Esteban Alejo", + "lastName": "Alarcon", + "image": "http://static.lolesports.com/players/1673867046940_placeholder.png", + "role": "support" + }, + { + "id": "109698218231913998", + "summonerName": "WilBR", + "firstName": "Brando Wilber", + "lastName": "Tarazona Flores", + "image": "http://static.lolesports.com/players/1673861972199_placeholder.png", + "role": "mid" + }, + { + "id": "109847013040835550", + "summonerName": "6auci", + "firstName": "Marcelo José", + "lastName": "Condori", + "image": "http://static.lolesports.com/players/1676132398278_silhouette_transparent.png", + "role": "support" + } + ] + }, + { + "id": "108131968787700134", + "slug": "dia-libre", + "name": "Dia Libre", + "code": "DIL", + "image": "http://static.lolesports.com/teams/1649962901439_noteamlogo-lolesports1.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "108131924984566467", + "summonerName": "ScarHope", + "firstName": "Quispe Ortiz", + "lastName": "Willie Imanol", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "top" + }, + { + "id": "108131925035931999", + "summonerName": "kraM", + "firstName": "Albornoz Valdivia", + "lastName": "Mark Enrique", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "jungle" + }, + { + "id": "108131925085033159", + "summonerName": "Saan", + "firstName": "Caceres Cuellar", + "lastName": "Jose Luis", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "mid" + }, + { + "id": "107582783368744962", + "summonerName": "Nou", + "firstName": "Fabian Alejandro", + "lastName": "Silva Rivas", + "image": "http://static.lolesports.com/players/1641582994452_placeholder.png", + "role": "bottom" + }, + { + "id": "107582784831377414", + "summonerName": "LupinoBate", + "firstName": "Victor Luciano", + "lastName": "Franco Vela ", + "image": "http://static.lolesports.com/players/1641583017528_placeholder.png", + "role": "support" + }, + { + "id": "107582786904115999", + "summonerName": "lFreeSoull", + "firstName": "Anthony Kengo", + "lastName": "Davila Morales", + "image": "http://static.lolesports.com/players/1641583048692_placeholder.png", + "role": "support" + }, + { + "id": "108131925298162255", + "summonerName": "Nips", + "firstName": "Sanchez Cervantes", + "lastName": "Bruno Manuel", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "jungle" + } + ] + }, + { + "id": "108159809840323235", + "slug": "aquinas-esports", + "name": "Aquinas Esports", + "code": "AQ", + "image": "http://static.lolesports.com/teams/1650398523620_aqlogo-RileyLong.png", + "alternativeImage": "http://static.lolesports.com/teams/1650398523621_aqlogo-RileyLong.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "108159818787172051", + "slug": "arizona-state-university", + "name": "Arizona State University", + "code": "ASU", + "image": "http://static.lolesports.com/teams/1650398559252_ASULOL-MissyAscencion.png", + "alternativeImage": "http://static.lolesports.com/teams/1650398559253_ASULOL-MissyAscencion.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "108159827490151079", + "slug": "marist-red-foxes", + "name": "Marist Red Foxes", + "code": "MC", + "image": "http://static.lolesports.com/teams/1650737706561_Marist.png", + "alternativeImage": "http://static.lolesports.com/teams/1650737706563_Marist.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "108159838146173610", + "slug": "nau-lumberjax", + "name": "NAU LumberJax", + "code": "NAU", + "image": "http://static.lolesports.com/teams/1650388154558_noteamlogo-lolesports1.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "108159845095742125", + "slug": "saint-louis-university", + "name": "Saint Louis University", + "code": "SLU", + "image": "http://static.lolesports.com/teams/1650398653325_SLUEsportsNoOutline1-NicholasChiu.png", + "alternativeImage": "http://static.lolesports.com/teams/1650398653326_SLUEsportsNoOutline1-NicholasChiu.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "108159857058492118", + "slug": "hu-storm", + "name": "HU Storm", + "code": "HU", + "image": "http://static.lolesports.com/teams/1650399309107_hustorm.png", + "alternativeImage": "http://static.lolesports.com/teams/1650399309108_hustorm.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "108159885652963033", + "slug": "seton-hall-university", + "name": "Seton Hall University", + "code": "SHU", + "image": "http://static.lolesports.com/teams/1650399348229_Seton_Hall_Pirates_logo.svg-JacobPatrick.png", + "alternativeImage": "http://static.lolesports.com/teams/1650399348230_Seton_Hall_Pirates_logo.svg-JacobPatrick.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "108159890692353756", + "slug": "st-clair-college", + "name": "St. Clair College", + "code": "SCC", + "image": "http://static.lolesports.com/teams/1650399201573_SCS_Logo_COLOUR-yBlazin.png", + "alternativeImage": "http://static.lolesports.com/teams/1650399201574_SCS_Logo_COLOUR-yBlazin.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "109981752589812346", + "summonerName": "RickLafleur", + "firstName": "Eric", + "lastName": "Moffitt", + "image": "http://static.lolesports.com/players/1678188356661_placeholder.png", + "role": "top" + }, + { + "id": "106857895007203096", + "summonerName": "Matty", + "firstName": "Mathieu", + "lastName": "Breton", + "image": "http://static.lolesports.com/players/1630522077800_silhouette.png", + "role": "jungle" + }, + { + "id": "109981754757616615", + "summonerName": "BakeryBoy", + "firstName": "Eric", + "lastName": "Pitzel", + "image": "http://static.lolesports.com/players/1678188390062_placeholder.png", + "role": "mid" + }, + { + "id": "109981759279731693", + "summonerName": "Zefirot", + "firstName": "Felix", + "lastName": "Blais", + "image": "http://static.lolesports.com/players/1678188458764_placeholder.png", + "role": "bottom" + }, + { + "id": "109981761117094015", + "summonerName": "BoskETI", + "firstName": "Etienne", + "lastName": "Gaudet", + "image": "http://static.lolesports.com/players/1678188487438_placeholder.png", + "role": "support" + }, + { + "id": "109981763160451985", + "summonerName": "JON1", + "firstName": "Jon", + "lastName": "Husi", + "image": "http://static.lolesports.com/players/1678188518662_placeholder.png", + "role": "none" + }, + { + "id": "109981765351058325", + "summonerName": "Fresh", + "firstName": "Regan", + "lastName": "Davis", + "image": "http://static.lolesports.com/players/1678188551447_placeholder.png", + "role": "none" + } + ] + }, + { + "id": "108159895060191922", + "slug": "ubuffalo-esports", + "name": "UBuffalo Esports", + "code": "UB", + "image": "http://static.lolesports.com/teams/1650737677766_Buffalo.png", + "alternativeImage": "http://static.lolesports.com/teams/1650737677770_Buffalo.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "108159906656575497", + "slug": "cu-boulder", + "name": "CU Boulder", + "code": "CU", + "image": "http://static.lolesports.com/teams/1650398803901_CULOGO-CUEsports.png", + "alternativeImage": "http://static.lolesports.com/teams/1650398803901_CULOGO-CUEsports.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "108159909915499189", + "slug": "university-of-delaware", + "name": "University of Delaware", + "code": "UD", + "image": "http://static.lolesports.com/teams/1650398845219_UDEsports-JennyLuo.png", + "alternativeImage": "http://static.lolesports.com/teams/1650398845220_UDEsports-JennyLuo.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "108159913250086924", + "slug": "michigan-esports", + "name": "Michigan Esports", + "code": "UM", + "image": "http://static.lolesports.com/teams/1650737989244_Michigan.png", + "alternativeImage": "http://static.lolesports.com/teams/1650737989245_Michigan.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "108159917648031455", + "slug": "ust-esports", + "name": "UST Esports", + "code": "USTE", + "image": "http://static.lolesports.com/teams/1650398911265_UST2-JustinPelt.png", + "alternativeImage": "http://static.lolesports.com/teams/1650398911266_UST2-JustinPelt.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "108159921977465528", + "slug": "longhorn-gaming", + "name": "Longhorn Gaming", + "code": "UT", + "image": "http://static.lolesports.com/teams/1650389433745_noteamlogo-lolesports1.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "108159926619909858", + "slug": "uoft-blue", + "name": "UofT Blue", + "code": "UTB", + "image": "http://static.lolesports.com/teams/1650737843554_UofTBlue.png", + "alternativeImage": "http://static.lolesports.com/teams/1650737843555_UofTBlue.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "108159931194715877", + "slug": "vespa", + "name": "VESPA", + "code": "VSP", + "image": "http://static.lolesports.com/teams/1650737630077_VESPA.png", + "alternativeImage": "http://static.lolesports.com/teams/1650737630079_VESPA.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "108159940380634858", + "slug": "winthrop-eagles", + "name": "Winthrop Eagles", + "code": "WU", + "image": "http://static.lolesports.com/teams/1650399231228_1200px-Winthrop_Eagles_logo.svg-JoshuaSides.png", + "alternativeImage": "http://static.lolesports.com/teams/1650399231229_1200px-Winthrop_Eagles_logo.svg-JoshuaSides.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "108359208055664183", + "summonerName": "Grimm2", + "firstName": "Koslow", + "lastName": "Zachary", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + }, + { + "id": "108359202623130076", + "summonerName": "Srkenji", + "firstName": "Kanako", + "lastName": "Kenji", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + }, + { + "id": "107065249006326644", + "summonerName": "Paralisys", + "firstName": "Paralysis", + "lastName": "Paralysis", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "108359202860742326", + "summonerName": "Haebaragi", + "firstName": "Choi", + "lastName": "Jun Hyeok", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + }, + { + "id": "108359202936936019", + "summonerName": "CrabAppleBo", + "firstName": "Yang", + "lastName": "William", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + }, + { + "id": "107559869090853654", + "summonerName": "Dayos", + "firstName": "Mervin-Angelo", + "lastName": "Lachica", + "image": "http://static.lolesports.com/players/1641233350712_placeholder.png", + "role": "none" + }, + { + "id": "108577048167390593", + "summonerName": "Denathor", + "firstName": "Erikson", + "lastName": "Noah", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "top" + } + ] + }, + { + "id": "108159958519099117", + "slug": "bay-state-college", + "name": "Bay State College", + "code": "BAY", + "image": "http://static.lolesports.com/teams/1650737745061_BayState.png", + "alternativeImage": "http://static.lolesports.com/teams/1650737745064_BayState.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107577676903662109", + "summonerName": "Bejjaniii", + "firstName": "Gerardo Andres Leon", + "lastName": "Bijani", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "108359199138428536", + "summonerName": "Akira Hou", + "firstName": "Podraza", + "lastName": "Victor", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + }, + { + "id": "104348845335505602", + "summonerName": "Dragonmin", + "firstName": "Yongmin", + "lastName": "Kim", + "image": "http://static.lolesports.com/players/1592686208198_FG-Dragonmin.png", + "role": "none" + }, + { + "id": "99322408713516287", + "summonerName": "Jurassiq", + "firstName": "Robert", + "lastName": "Mabansag", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/jurassiq-iys049ey.png", + "role": "none" + }, + { + "id": "108359199398783820", + "summonerName": "Ralyk", + "firstName": "Vogt-Wheeler", + "lastName": "Brendan", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + }, + { + "id": "99566405785638494", + "summonerName": "Seranok", + "firstName": "Roodman", + "lastName": "Moron ", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/seranok-bmskjiuv.png", + "role": "none" + }, + { + "id": "108359199520634492", + "summonerName": "DevildeGrey", + "firstName": "Diaz", + "lastName": "Victor", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + }, + { + "id": "107578130738234393", + "summonerName": "SophistSage", + "firstName": "Tahyn", + "lastName": "Min", + "image": "http://static.lolesports.com/players/1675152837786_placeholder.png", + "role": "none" + }, + { + "id": "108359199652910903", + "summonerName": "Swordblue", + "firstName": "Sales", + "lastName": "Braine", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + } + ] + }, + { + "id": "108159964760727567", + "slug": "bethany-esports", + "name": "Bethany Esports", + "code": "BLE", + "image": "http://static.lolesports.com/teams/1650398589978_BethanyEsportsPrimaryLogo_TransparentBackground-LucasFricke.png", + "alternativeImage": "http://static.lolesports.com/teams/1650398589979_BethanyEsportsPrimaryLogo_TransparentBackground-LucasFricke.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "108159968741268165", + "slug": "converse-university", + "name": "Converse University", + "code": "CVU", + "image": "http://static.lolesports.com/teams/1650738024088_Converse.png", + "alternativeImage": "http://static.lolesports.com/teams/1650738024092_Converse.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107577686795010640", + "summonerName": "Radar", + "firstName": "Eli", + "lastName": "Nelson", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "108359199794730815", + "summonerName": "Alastair", + "firstName": "Park", + "lastName": "Alastair", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + }, + { + "id": "108359199859666388", + "summonerName": "Gummyhat", + "firstName": "Slade", + "lastName": "Caleb", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + }, + { + "id": "108359199944128128", + "summonerName": "Daydream7", + "firstName": "Irwin", + "lastName": "Kyler", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + }, + { + "id": "108359200011236996", + "summonerName": "Panther410", + "firstName": "Nelson", + "lastName": "Izaac", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + }, + { + "id": "108359200069891720", + "summonerName": "Coach Jad", + "firstName": "Haidar", + "lastName": "Jad", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + } + ] + }, + { + "id": "108159996371573462", + "slug": "maryville-university", + "name": "Maryville University", + "code": "MU", + "image": "http://static.lolesports.com/teams/1650398622565_200x200_MU_Logo-ThomasLaMarca.png", + "alternativeImage": "http://static.lolesports.com/teams/1650398622566_200x200_MU_Logo-ThomasLaMarca.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "107577676551702284", + "summonerName": "EvanRL", + "firstName": "Evan", + "lastName": "Lawson", + "image": "http://static.lolesports.com/players/1655144453083_neutralpfp.png", + "role": "none" + }, + { + "id": "99566406280099065", + "summonerName": "Getback", + "firstName": "Jarod", + "lastName": "Tucker", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/getback-9rs491no.png", + "role": "none" + }, + { + "id": "107577676457789192", + "summonerName": "Kind Jungle", + "firstName": "Nathan", + "lastName": "Mosby", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "108359200398988863", + "summonerName": "MU Niles", + "firstName": "Tidwell", + "lastName": "Aiden", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + }, + { + "id": "108359200447163216", + "summonerName": "TheOddOrang", + "firstName": "Ryan", + "lastName": "Nathan", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + }, + { + "id": "106857849933915524", + "summonerName": "Zyko", + "firstName": "Ryan", + "lastName": "Jung", + "image": "http://static.lolesports.com/players/1630521390121_silhouette.png", + "role": "none" + }, + { + "id": "108359200554937816", + "summonerName": "alwaysplana", + "firstName": "Stearns", + "lastName": "Eain", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + }, + { + "id": "108359200615716419", + "summonerName": "MU Azog", + "firstName": "Eckenroth", + "lastName": "Gabriel", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + }, + { + "id": "108359200661550737", + "summonerName": "alignmychak", + "firstName": "Robison", + "lastName": "Jordan", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + }, + { + "id": "98926509870376152", + "summonerName": "Shady", + "firstName": "Jordan", + "lastName": "Robison", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/shady-544vhzlz.png", + "role": "none" + }, + { + "id": "105957619949286329", + "summonerName": "APA", + "firstName": "Eain", + "lastName": "Stearns", + "image": "http://static.lolesports.com/players/1726214761765_TL_1500x1500_APA_04.png", + "role": "none" + } + ] + }, + { + "id": "108159999493642969", + "slug": "molloy-college-esports", + "name": "Molloy College Esports", + "code": "MLC", + "image": "http://static.lolesports.com/teams/1650737599891_Molloy.png", + "alternativeImage": "http://static.lolesports.com/teams/1650737599896_Molloy.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "108160009014193908", + "slug": "spartan-esports", + "name": "Spartan Esports", + "code": "SJS", + "image": "http://static.lolesports.com/teams/1650398680144_spartanesportslogo-CoelHorsfall.png", + "alternativeImage": "http://static.lolesports.com/teams/1650398680145_spartanesportslogo-CoelHorsfall.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "108160026618060825", + "slug": "uci-esports", + "name": "UCI Esports", + "code": "UCI", + "image": "http://static.lolesports.com/teams/1650398730046_AnteaterMedallion-DavidTu.png", + "alternativeImage": "http://static.lolesports.com/teams/1650398730047_AnteaterMedallion-DavidTu.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107577679630942805", + "summonerName": "Berik", + "firstName": "Erik", + "lastName": "Kim", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107577679733344073", + "summonerName": "duong pro", + "firstName": "Duong", + "lastName": "Tran", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "108359201384150693", + "summonerName": "CinnamonBre", + "firstName": "Chang", + "lastName": "Benjamin", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + }, + { + "id": "107577679867396578", + "summonerName": "sahori", + "firstName": "John", + "lastName": "Vu", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107577680061383146", + "summonerName": "Misterdot", + "firstName": "Andrew", + "lastName": "Liu", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107577680004170214", + "summonerName": "dtro", + "firstName": "Dylan", + "lastName": "Tran", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "108359201586419546", + "summonerName": "XiaoDanny", + "firstName": "Coyle", + "lastName": "Daniel", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + }, + { + "id": "108359201648668144", + "summonerName": "Dong ha", + "firstName": "Chen", + "lastName": "Dylan", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + } + ] + }, + { + "id": "108160044440853213", + "slug": "uc-san-diego", + "name": "UC San Diego", + "code": "UCSD", + "image": "http://static.lolesports.com/teams/1650737537182_USCD.png", + "alternativeImage": "http://static.lolesports.com/teams/1650737537188_USCD.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "108160048461159136", + "slug": "uofna-dragons", + "name": "UofNA Dragons", + "code": "UNA", + "image": "http://static.lolesports.com/teams/1650738308979_UoNA.png", + "alternativeImage": "http://static.lolesports.com/teams/1650738308981_UoNA.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "108160054279576291", + "slug": "university-of-toronto", + "name": "University of Toronto", + "code": "UOT", + "image": "http://static.lolesports.com/teams/1650738133918_Toronto.png", + "alternativeImage": "http://static.lolesports.com/teams/1650738133922_Toronto.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "108160427796377354", + "slug": "york-lions", + "name": "York Lions", + "code": "YU", + "image": "http://static.lolesports.com/teams/1650399118901_yuesportsw.png", + "alternativeImage": "http://static.lolesports.com/teams/1650399118902_yuesports.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "108160450260086541", + "slug": "grand-view-university", + "name": "Grand View University", + "code": "GVU", + "image": "http://static.lolesports.com/teams/1650738367887_GrandView.png", + "alternativeImage": "http://static.lolesports.com/teams/1650738367891_GrandView.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "108183932728352967", + "slug": "lcs", + "name": "LCS", + "code": "LCS", + "image": "http://static.lolesports.com/teams/1650755808646_download62.png", + "alternativeImage": "http://static.lolesports.com/teams/1650755808648_download61.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "MSI", + "region": "INTERNATIONAL" + }, + "players": [] + }, + { + "id": "108183935550202058", + "slug": "vcs", + "name": "VCS", + "code": "VCS", + "image": "http://static.lolesports.com/teams/1650755851562_download65.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "MSI", + "region": "INTERNATIONAL" + }, + "players": [] + }, + { + "id": "108183938575087900", + "slug": "vcs", + "name": "VCS", + "code": "VCSR", + "image": "http://static.lolesports.com/teams/1650755897737_download65.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "MSI", + "region": "INTERNATIONAL" + }, + "players": [] + }, + { + "id": "108203154514683518", + "slug": "t1-rookies", + "name": "T1 Rookies", + "code": "T1", + "image": "http://static.lolesports.com/teams/1651078718919_download99.png", + "alternativeImage": "http://static.lolesports.com/teams/1651078718920_download98.png", + "backgroundImage": "http://static.lolesports.com/teams/1651078718921_download-2022-04-27T095627.377.png", + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "108284716582083176", + "summonerName": "Test MID1", + "firstName": "Sungbum", + "lastName": "Kwon", + "image": "https://static.lolesports.com/players/download.png", + "role": "mid" + }, + { + "id": "108205129336536529", + "summonerName": "Dal", + "firstName": "Jeongwan", + "lastName": "Moon", + "image": "http://static.lolesports.com/players/1718365372119_CL_T1_Dal_784.png", + "role": "top" + }, + { + "id": "108205129569969840", + "summonerName": "Test JG1", + "firstName": "Sangwoo", + "lastName": "Kim", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "jungle" + }, + { + "id": "108205129661988309", + "summonerName": "Test JG2", + "firstName": "Seunghoo", + "lastName": "Kim", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "jungle" + }, + { + "id": "107492068702410338", + "summonerName": "Peyz", + "firstName": "SOOHWAN", + "lastName": "Kim", + "image": "http://static.lolesports.com/players/1753280959463_image657.png", + "role": "bottom" + } + ] + }, + { + "id": "108203159356403647", + "slug": "kwangdong-freecs-academy", + "name": "Kwangdong Freecs Academy", + "code": "KDF", + "image": "http://static.lolesports.com/teams/1651078749766_download71.png", + "alternativeImage": "http://static.lolesports.com/teams/1651078749767_download71.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "109284869083079821", + "summonerName": "AD", + "firstName": "Jisung", + "lastName": "Yang", + "image": "https://static.lolesports.com/players/download.png", + "role": "mid" + }, + { + "id": "108205129956618220", + "summonerName": "Dustin", + "firstName": "Yeongjun", + "lastName": "Kim", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "top" + }, + { + "id": "108205130029559792", + "summonerName": "Lancer", + "firstName": "Jeongheum", + "lastName": "Han", + "image": "http://static.lolesports.com/players/1758213497389_lancer.png", + "role": "top" + }, + { + "id": "108205130114574004", + "summonerName": "Pressure", + "firstName": "Sanghoon", + "lastName": "Kim", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "jungle" + }, + { + "id": "108205154823729322", + "summonerName": "Shun2", + "firstName": "Jaehyeon", + "lastName": "Han", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "bottom" + }, + { + "id": "108205130332270580", + "summonerName": "Acasia", + "firstName": "Sihoon", + "lastName": "Yoon", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "bottom" + }, + { + "id": "108205157300465840", + "summonerName": "Leon3", + "firstName": "Junhee", + "lastName": "Song", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "support" + }, + { + "id": "108284718146638981", + "summonerName": "Machete", + "firstName": "KyungJun", + "lastName": "Park", + "image": "https://static.lolesports.com/players/download.png", + "role": "jungle" + }, + { + "id": "108284720110063339", + "summonerName": "Friday", + "firstName": "Minseo", + "lastName": "Kang", + "image": "https://static.lolesports.com/players/download.png", + "role": "mid" + }, + { + "id": "98767975940969117", + "summonerName": "Cuzz", + "firstName": "Uchan", + "lastName": "Mun", + "image": "http://static.lolesports.com/players/1758212647132_cuzz.png", + "role": "jungle" + } + ] + }, + { + "id": "108203161924300737", + "slug": "drx-academy", + "name": "DRX Academy", + "code": "DRX", + "image": "http://static.lolesports.com/teams/1672910754120_01.Basic_W.png", + "alternativeImage": "http://static.lolesports.com/teams/1672910754122_01.Basic_B.png", + "backgroundImage": "http://static.lolesports.com/teams/1651078925652_download76.png", + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "99566404526777331", + "summonerName": "Teddy", + "firstName": "Jinsung", + "lastName": "Park", + "image": "http://static.lolesports.com/players/1758214113822_teddy.png", + "role": "bottom" + }, + { + "id": "108205130568869560", + "summonerName": "Frog", + "firstName": "Minhoi", + "lastName": "Lee", + "image": "http://static.lolesports.com/players/1758213197451_frog.png", + "role": "top" + }, + { + "id": "108205130628034556", + "summonerName": "Gyeom", + "firstName": "Mingyeom", + "lastName": "Kim", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "jungle" + }, + { + "id": "108205130857037281", + "summonerName": "Padeck", + "firstName": "Seokhyeon", + "lastName": "Park", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "bottom" + }, + { + "id": "108205130945818624", + "summonerName": "Maramu", + "firstName": "Gyeon", + "lastName": "Kim", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "support" + } + ] + }, + { + "id": "108203164850614211", + "slug": "ns-redforce-academy", + "name": "NS REDFORCE Academy", + "code": "NS", + "image": "http://static.lolesports.com/teams/1651079113888_download99.png", + "alternativeImage": "http://static.lolesports.com/teams/1651079113889_download98.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "108205131003111105", + "summonerName": "Haenam", + "firstName": "Myungan", + "lastName": "Lee", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "top" + }, + { + "id": "108205131143802891", + "summonerName": "Sounda", + "firstName": "Inhyuk", + "lastName": "Kong", + "image": "http://static.lolesports.com/players/1708513298056_CL_NS_Sounda_F.png", + "role": "jungle" + }, + { + "id": "108205131230834705", + "summonerName": "Carim", + "firstName": "Jae Seung", + "lastName": "Oh", + "image": "http://static.lolesports.com/players/1758212503543_carim.png", + "role": "jungle" + }, + { + "id": "108205131295210982", + "summonerName": "Calix", + "firstName": "Hyun Bin", + "lastName": "Syun", + "image": "http://static.lolesports.com/players/1758212423023_calis.png", + "role": "mid" + }, + { + "id": "108205131402932252", + "summonerName": "Jiwoo", + "firstName": "Jiwoo", + "lastName": "Jung", + "image": "http://static.lolesports.com/players/1758213348318_jiwoo.png", + "role": "bottom" + }, + { + "id": "108205131490043598", + "summonerName": "HH", + "firstName": "Hyunho", + "lastName": "Lee", + "image": "http://static.lolesports.com/players/1708513232912_CL_NS_HH_F.png", + "role": "support" + }, + { + "id": "114973639474141631", + "summonerName": "MihawK", + "firstName": "Joohyung", + "lastName": "Kim", + "image": "http://static.lolesports.com/players/1758213619771_mihawk.png", + "role": "jungle" + }, + { + "id": "112489761193007932", + "summonerName": "Midir", + "firstName": "Hyeonjun", + "lastName": "Na", + "image": "http://static.lolesports.com/players/1718365634380_CL_NS_Midir_784.png", + "role": "top" + } + ] + }, + { + "id": "108203166973601408", + "slug": "liiv-sandbox-academy", + "name": "Liiv SANDBOX Academy", + "code": "LSB", + "image": "http://static.lolesports.com/teams/1651079145972_download92.png", + "alternativeImage": "http://static.lolesports.com/teams/1651079145972_download92.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "108205131563823136", + "summonerName": "DDahyuk", + "firstName": "Minhyuk", + "lastName": "Ahn", + "image": "http://static.lolesports.com/players/1686473455230_CL_LSB_DDahyuk.png", + "role": "top" + }, + { + "id": "108205131644059128", + "summonerName": "Kichan", + "firstName": "Kichan", + "lastName": "Yoon", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "top" + }, + { + "id": "108205132030767147", + "summonerName": "Hangjoo", + "firstName": "Junyoung", + "lastName": "Lee", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "mid" + }, + { + "id": "108205132187018976", + "summonerName": "Carrot", + "firstName": "Daegeun", + "lastName": "Nam", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "bottom" + }, + { + "id": "108205132251315713", + "summonerName": "TAKON", + "firstName": "Geuntak", + "lastName": "Kim", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "support" + }, + { + "id": "111249148214295251", + "summonerName": "Online", + "firstName": "Solbin", + "lastName": "Kim", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "111521549323573788", + "summonerName": "Janus", + "firstName": "Um", + "lastName": "Yejun", + "image": "http://static.lolesports.com/players/1708512218481_CL_FOX_Janus_F.png", + "role": "top" + } + ] + }, + { + "id": "108203169709977541", + "slug": "fredit-brion-academy", + "name": "BRO Academy", + "code": "BRO", + "image": "http://static.lolesports.com/teams/1672911283895_BRIONlogo_profile1.png", + "alternativeImage": "http://static.lolesports.com/teams/1672911283897_BRIONlogo_profile1.png", + "backgroundImage": "http://static.lolesports.com/teams/1651079201872_download97.png", + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "108205155114067733", + "summonerName": "Semin", + "firstName": "Semin", + "lastName": "Yu", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "top" + }, + { + "id": "108205132333674550", + "summonerName": "Iras", + "firstName": "Hyeondo", + "lastName": "Choi", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "top" + }, + { + "id": "108205132376358405", + "summonerName": "kamel", + "firstName": "Eunkyu", + "lastName": "Park", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "jungle" + }, + { + "id": "108205132461797435", + "summonerName": "GoWonBin", + "firstName": "Wonbin", + "lastName": "Ko", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "mid" + }, + { + "id": "108205132634288198", + "summonerName": "Lepton", + "firstName": "Dowon", + "lastName": "Kim", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "support" + }, + { + "id": "108284723448093299", + "summonerName": "Pollu", + "firstName": "DongGyu", + "lastName": "Oh", + "image": "http://static.lolesports.com/players/1758213774429_pollu.png", + "role": "support" + } + ] + }, + { + "id": "108203173414485265", + "slug": "hle-academy", + "name": "HLE Academy", + "code": "HLE", + "image": "http://static.lolesports.com/teams/1651079240804_download82.png", + "alternativeImage": "http://static.lolesports.com/teams/1651079240805_download83.png", + "backgroundImage": "http://static.lolesports.com/teams/1651079240806_download86.png", + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "108205132706659849", + "summonerName": "Raccoon", + "firstName": "Hyeongyu", + "lastName": "Choi", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "top" + }, + { + "id": "108205133177136879", + "summonerName": "Chang", + "firstName": "Changwoo", + "lastName": "Choi", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "jungle" + }, + { + "id": "108284725207846646", + "summonerName": "star", + "firstName": "Suhyeon", + "lastName": "Sim", + "image": "https://static.lolesports.com/players/download.png", + "role": "top" + }, + { + "id": "108284732073917232", + "summonerName": "Tempester", + "firstName": "Yeongwoong", + "lastName": "Oh", + "image": "http://static.lolesports.com/players/1758214131120_tempest.png", + "role": "mid" + }, + { + "id": "105501823725188459", + "summonerName": "LJM", + "firstName": "Junmin", + "lastName": "Lee", + "image": "http://static.lolesports.com/players/DKJunmin.png", + "role": "bottom" + }, + { + "id": "108284737161263694", + "summonerName": "Poo", + "firstName": "JongHyun", + "lastName": "Lee", + "image": "https://static.lolesports.com/players/download.png", + "role": "support" + }, + { + "id": "108294251236841079", + "summonerName": "Jg Test0", + "firstName": "Seunghoon", + "lastName": "Jo", + "image": "https://static.lolesports.com/players/download.png", + "role": "jungle" + } + ] + }, + { + "id": "108242938631480253", + "slug": "as-esports", + "name": "AS Esports", + "code": "ASES", + "image": "http://static.lolesports.com/teams/1656693933077_ASESPORTS-01.png", + "alternativeImage": "http://static.lolesports.com/teams/1656693933079_ASESPORTS-01.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "VCS", + "region": "VIETNAM" + }, + "players": [ + { + "id": "107403452720492567", + "summonerName": "2T", + "firstName": "Tri", + "lastName": "Nguyen Trong", + "image": "https://static.lolesports.com/players/download.png", + "role": "none" + }, + { + "id": "108763320732565506", + "summonerName": "Biggi", + "firstName": "Le", + "lastName": "Dinh Tan", + "image": "https://static.lolesports.com/players/download.png", + "role": "none" + }, + { + "id": "108242847425119536", + "summonerName": "LLT", + "firstName": "Tuan", + "lastName": "Dao Van", + "image": "http://static.lolesports.com/players/1651654787485_placeholder.png", + "role": "top" + }, + { + "id": "108242850216338333", + "summonerName": "Hyo", + "firstName": "Hieu", + "lastName": "Trung Nguyen", + "image": "http://static.lolesports.com/players/1651654830983_placeholder.png", + "role": "jungle" + }, + { + "id": "108242890973463860", + "summonerName": "Ouzi", + "firstName": "Viet", + "lastName": "Lai Trong", + "image": "http://static.lolesports.com/players/1651655436421_placeholder.png", + "role": "mid" + }, + { + "id": "108242899618383167", + "summonerName": "Easylove", + "firstName": "An", + "lastName": "Hua Thanh", + "image": "http://static.lolesports.com/players/1755156554640_GAM_EasyLove.png", + "role": "bottom" + } + ] + }, + { + "id": "108242948392742955", + "slug": "as-esports", + "name": "AS Esports", + "code": "ASET", + "image": "http://static.lolesports.com/teams/1651656315006_LOLESPORTSICON.png", + "alternativeImage": "http://static.lolesports.com/teams/1651656315006_LOLESPORTSICON.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "VCS", + "region": "VIETNAM" + }, + "players": [ + { + "id": "112880372381731252", + "summonerName": "Ben01", + "firstName": "Ben", + "lastName": "Ben", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + } + ] + }, + { + "id": "108242953144452436", + "slug": "genius-esports", + "name": "Genius Esports", + "code": "GETS", + "image": "http://static.lolesports.com/teams/1656694097789_LogoiTuyn.png", + "alternativeImage": "http://static.lolesports.com/teams/1656694097791_LogoiTuyn.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "VCS", + "region": "VIETNAM" + }, + "players": [ + { + "id": "102300322399868053", + "summonerName": "Biob", + "firstName": "Lâm Việt Sinh", + "lastName": "Nguyễn", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/biob-76a7d4fj.png", + "role": "support" + }, + { + "id": "100205572945668253", + "summonerName": "Yijin", + "firstName": "Dang", + "lastName": "Nguyen Le Hai", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/yijin-1nixeika.png", + "role": "jungle" + }, + { + "id": "107251726945594253", + "summonerName": "Coated", + "firstName": "Trang", + "lastName": "Dinh Van", + "image": "https://static.lolesports.com/players/download.png", + "role": "top" + }, + { + "id": "107251733033130549", + "summonerName": "Blazes", + "firstName": "Sang", + "lastName": "Do Dinh ", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "105301884027266192", + "summonerName": "Slayder", + "firstName": "Linh Vuong", + "lastName": "Nguyen", + "image": "http://static.lolesports.com/players/1755157306990_CHF_Slayder.png", + "role": "bottom" + }, + { + "id": "107785501712772339", + "summonerName": "Zodiac", + "firstName": "Luong", + "lastName": "Tieu Quoc", + "image": "http://static.lolesports.com/players/1644676229363_1599762334741_silhouette.png", + "role": "none" + }, + { + "id": "108763324179824646", + "summonerName": "Bunzz", + "firstName": "Nguyen", + "lastName": "Trong Nghia", + "image": "https://static.lolesports.com/players/download.png", + "role": "none" + } + ] + }, + { + "id": "108316290233025831", + "slug": "team-flash", + "name": "Team Flash", + "code": "TF", + "image": "http://static.lolesports.com/teams/1652775422145_wre-tf.png", + "alternativeImage": "http://static.lolesports.com/teams/1652775422146_wre-tf.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "VCS", + "region": "VIETNAM" + }, + "players": [ + { + "id": "112880372381731252", + "summonerName": "Ben01", + "firstName": "Ben", + "lastName": "Ben", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + } + ] + }, + { + "id": "108319257932089006", + "slug": "osaka", + "name": "Osaka", + "code": "OSK", + "image": "http://static.lolesports.com/teams/1652820707039_OSAKA-C.png", + "alternativeImage": "http://static.lolesports.com/teams/1652820707040_OSAKA-Black.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "112088593716365073", + "summonerName": "Intensitive", + "firstName": "Moisés Alessandro", + "lastName": "Rodríguez Cardona", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "112088601266636574", + "summonerName": "INTIO", + "firstName": "Andres Felipe", + "lastName": "Rodriguez Silva ", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "112088605577557276", + "summonerName": "Choqomint", + "firstName": "Nazumi", + "lastName": "Camero Torres", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "112088611982521639", + "summonerName": "Guts1", + "firstName": "Ian Ernesto", + "lastName": "Parra Lugo", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "107582354963679654", + "summonerName": "Shieldworm", + "firstName": "Daniel Fernando", + "lastName": "Garcia", + "image": "http://static.lolesports.com/players/1641576457075_placeholder.png", + "role": "mid" + }, + { + "id": "109698729919928362", + "summonerName": "Melody", + "firstName": "Melissa", + "lastName": "Vargas Cifuentes", + "image": "https://static.lolesports.com/players/download.png", + "role": "support" + }, + { + "id": "109675194530936744", + "summonerName": "Cristonex", + "firstName": "Juan Carlos", + "lastName": "González Pontón", + "image": "http://static.lolesports.com/players/1673510656947_placeholder.png", + "role": "top" + }, + { + "id": "107581888518342292", + "summonerName": "Blindwalker", + "firstName": "Luis Alfredo", + "lastName": "Avendaño Tobal", + "image": "http://static.lolesports.com/players/1641569332027_placeholder.png", + "role": "jungle" + } + ] + }, + { + "id": "108319669531442279", + "slug": "aguilas-doradas", + "name": "Aguilas Doradas", + "code": "AD", + "image": "http://static.lolesports.com/teams/1652826987911_AGUILAS-DORADAS-White.png", + "alternativeImage": "http://static.lolesports.com/teams/1652826987913_AGUILAS-DORADAS-Black.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "109881038382418433", + "summonerName": "Sleep yume", + "firstName": "Erick", + "lastName": "Gomez", + "image": "http://static.lolesports.com/players/1676651569791_placeholder.png", + "role": "jungle" + }, + { + "id": "108605520057101586", + "summonerName": "Te Ka", + "firstName": "Fausto", + "lastName": "Lopez", + "image": "https://static.lolesports.com/players/download.png", + "role": "support" + }, + { + "id": "109716187825179953", + "summonerName": "Wiz1", + "firstName": "Jhoan Sebastian", + "lastName": "Diaz Balta", + "image": "http://static.lolesports.com/players/1674136165494_placeholder.png", + "role": "top" + }, + { + "id": "109716192364259988", + "summonerName": "Kase", + "firstName": "Juan Fernando", + "lastName": "Bernal Garzón", + "image": "http://static.lolesports.com/players/1674136234584_placeholder.png", + "role": "jungle" + }, + { + "id": "109716195011979928", + "summonerName": "Jackso", + "firstName": "Jewison Jhoccer", + "lastName": "Padilla Potosí", + "image": "http://static.lolesports.com/players/1674136275563_placeholder.png", + "role": "mid" + }, + { + "id": "109716197414676968", + "summonerName": "Ayakoso", + "firstName": "Isaac", + "lastName": "Guerrero García", + "image": "http://static.lolesports.com/players/1674136312061_placeholder.png", + "role": "bottom" + }, + { + "id": "109716198879537651", + "summonerName": "Lilac Wine", + "firstName": "Ariana Valeria", + "lastName": "Cerón Carrera", + "image": "http://static.lolesports.com/players/1674136335187_placeholder.png", + "role": "support" + }, + { + "id": "109716201202592254", + "summonerName": "Moroxito", + "firstName": "Giorgio Gabriel", + "lastName": "Morocho Holguin ", + "image": "http://static.lolesports.com/players/1674136369872_placeholder.png", + "role": "bottom" + }, + { + "id": "109716202971287996", + "summonerName": "Tempo", + "firstName": "Wilmer Josue", + "lastName": "Yuquilema Narajo", + "image": "http://static.lolesports.com/players/1674136396855_placeholder.png", + "role": "jungle" + }, + { + "id": "109757539045307062", + "summonerName": "Pobli", + "firstName": "Pablo Alexander", + "lastName": "Sandoval Vaca", + "image": "http://static.lolesports.com/players/1674767123442_placeholder.png", + "role": "mid" + }, + { + "id": "107615821617426025", + "summonerName": "Pastelito", + "firstName": "Joel Alejandro", + "lastName": "Andrade Dominguez ", + "image": "http://static.lolesports.com/players/1642087111966_placeholder.png", + "role": "support" + } + ] + }, + { + "id": "108352305932141947", + "slug": "dsyre", + "name": "DSYRE", + "code": "DSY", + "image": "http://static.lolesports.com/teams/1705526248146_LOGOMARK-DSYRE-REBRAND-white-NicoloMureddu.png", + "alternativeImage": "http://static.lolesports.com/teams/1705526248147_LOGOMARK-DSYRE-REBRAND-black-NicoloMureddu.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "103877751810134592", + "summonerName": "Cohle", + "firstName": "Matteo ", + "lastName": "Faoro", + "image": "https://static.lolesports.com/players/download.png", + "role": "mid" + } + ] + }, + { + "id": "108353580990051422", + "slug": "elementalist", + "name": "Elementalist", + "code": "EL", + "image": "http://static.lolesports.com/teams/1653344435530_1641935515834_lolesports_icon_white-01.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107603058401698253", + "summonerName": "Orzecz", + "firstName": "Mateusz", + "lastName": "Donocik", + "image": "http://static.lolesports.com/players/1641892367558_placeholder.png", + "role": "top" + }, + { + "id": "108353502142550905", + "summonerName": "Ravenno", + "firstName": "Owczarski", + "lastName": "Michał", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "mid" + }, + { + "id": "108353514446763072", + "summonerName": "Seraph2", + "firstName": "Romanowski", + "lastName": "Konrad", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "top" + } + ] + }, + { + "id": "108353618958806014", + "slug": "meavedron", + "name": "Meavedron", + "code": "MVE", + "image": "http://static.lolesports.com/teams/1704376811202_Meavedronlogo.png", + "alternativeImage": "http://static.lolesports.com/teams/1704376811203_Meavedronlogo.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Hitpoint Masters", + "region": "EMEA" + }, + "players": [ + { + "id": "113866837948478826", + "summonerName": "Bluealert", + "firstName": "Dominik", + "lastName": "Reck", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "107693386071715513", + "summonerName": "DVLK", + "firstName": "Marek", + "lastName": "Netrval", + "image": "http://static.lolesports.com/players/1643270657133_placeholder.png", + "role": "jungle" + }, + { + "id": "108353502252979069", + "summonerName": "XerRay", + "firstName": "Maciej", + "lastName": "Pytel", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "support" + } + ] + }, + { + "id": "108361537886099513", + "slug": "300", + "name": "300", + "code": "300", + "image": "http://static.lolesports.com/teams/1653465844323_ds1K709.png", + "alternativeImage": "http://static.lolesports.com/teams/1653465844326_ds1K709.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "108369186994319595", + "summonerName": "yumichi", + "firstName": "Casavant", + "lastName": "Gabrielle", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + }, + { + "id": "108369187045444999", + "summonerName": "Nyma", + "firstName": "Berrhouma", + "lastName": "Taha", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + } + ] + }, + { + "id": "108361545122797332", + "slug": "aoe-ginger-turmeric", + "name": "AOE Ginger Turmeric", + "code": "AGT", + "image": "http://static.lolesports.com/teams/1653465954636_yecotoQ.png", + "alternativeImage": "http://static.lolesports.com/teams/1653465954637_yecotoQ.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107828217138258248", + "summonerName": "existence", + "firstName": "Taner", + "lastName": "Levendoglu", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "top" + }, + { + "id": "106857836152939873", + "summonerName": "CptShrimps", + "firstName": "Daniel", + "lastName": "Yang", + "image": "http://static.lolesports.com/players/1630521179601_silhouette.png", + "role": "mid" + }, + { + "id": "108369194101468893", + "summonerName": "DeepLearn", + "firstName": "Miao", + "lastName": "Joe", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "bottom" + } + ] + }, + { + "id": "108361550364038935", + "slug": "aoe-randoms", + "name": "AOE Randoms", + "code": "AOER", + "image": "http://static.lolesports.com/teams/1653466035681_9Buwzwl.png", + "alternativeImage": "http://static.lolesports.com/teams/1653466035683_9Buwzwl.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "108369186541738788", + "summonerName": "Geiger", + "firstName": "Geiger", + "lastName": "Thomas", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + }, + { + "id": "107577680230859353", + "summonerName": "Nem9", + "firstName": "Ryan", + "lastName": "Saenz", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "108369186659654307", + "summonerName": "devin", + "firstName": "Yates", + "lastName": "Devin", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + }, + { + "id": "107577680634464093", + "summonerName": "Pockus", + "firstName": "Antoine", + "lastName": "Lafreniere", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "108369186731727657", + "summonerName": "Stevenator", + "firstName": "Figge", + "lastName": "Steve", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + }, + { + "id": "108369186787998119", + "summonerName": "Kyle", + "firstName": "Raposo", + "lastName": "Kyle", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + }, + { + "id": "107577677304317723", + "summonerName": "Saico", + "firstName": "Brandon", + "lastName": "Wolfgang", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107577682502926966", + "summonerName": "Kolthro", + "firstName": "Devin", + "lastName": "Drzewucki", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + } + ] + }, + { + "id": "108361552741927561", + "slug": "cincinnati-fear", + "name": "Cincinnati Fear", + "code": "FEAR", + "image": "http://static.lolesports.com/teams/1653466071326_J57Mp0y.png", + "alternativeImage": "http://static.lolesports.com/teams/1653466071327_J57Mp0y.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "108369185163382102", + "summonerName": "Clareetz", + "firstName": "Mathew", + "lastName": "Clarizio", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + }, + { + "id": "105913370048180040", + "summonerName": "Daption", + "firstName": "Sam", + "lastName": "Parsa Zarriz", + "image": "http://static.lolesports.com/players/silhouette.png", + "role": "support" + } + ] + }, + { + "id": "108361563004344389", + "slug": "the-last-dance", + "name": "The Last Dance", + "code": "LAST", + "image": "http://static.lolesports.com/teams/1681281407829_LOLESPORTSICON.png", + "alternativeImage": "http://static.lolesports.com/teams/1681281407830_LOLESPORTSICON.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "108361565719424734", + "slug": "dk-crew", + "name": "DK Crew", + "code": "DKC", + "image": "http://static.lolesports.com/teams/1653466269306_Tedk2CV.png", + "alternativeImage": "http://static.lolesports.com/teams/1653466269307_Tedk2CV.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "108369194227473202", + "summonerName": "Lawrence1", + "firstName": "Yap", + "lastName": "Lawrence", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "top" + }, + { + "id": "108369187328494987", + "summonerName": "ShorterACE", + "firstName": "Nget", + "lastName": "Ryan", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "jungle" + }, + { + "id": "108369194297047478", + "summonerName": "Savage1", + "firstName": "Marquez", + "lastName": "Francisco", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "mid" + }, + { + "id": "108577049916375170", + "summonerName": "HyBriDZz", + "firstName": "Nget", + "lastName": "Ryan Nget", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + }, + { + "id": "108577050019070086", + "summonerName": "Barlo", + "firstName": "Bisaillon", + "lastName": "Charles", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + }, + { + "id": "107577676551702284", + "summonerName": "EvanRL", + "firstName": "Evan", + "lastName": "Lawson", + "image": "http://static.lolesports.com/players/1655144453083_neutralpfp.png", + "role": "bottom" + }, + { + "id": "106857952763738419", + "summonerName": "Clyde", + "firstName": "Luis", + "lastName": "Ferrera", + "image": "http://static.lolesports.com/players/1630522958789_silhouette.png", + "role": "support" + }, + { + "id": "108369187462756784", + "summonerName": "Sandflame", + "firstName": "Collin", + "lastName": "Justin", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + } + ] + }, + { + "id": "108361570687544399", + "slug": "jakes-kittens", + "name": "Jake's Kittens", + "code": "JK", + "image": "http://static.lolesports.com/teams/1653466345608_1x7WUDb.png", + "alternativeImage": "http://static.lolesports.com/teams/1653466345610_1x7WUDb.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "108443853164774558", + "summonerName": "Dunks", + "firstName": "Matthew", + "lastName": "Do", + "image": "http://static.lolesports.com/players/1675163093635_placeholder.png", + "role": "none" + }, + { + "id": "107577676059296194", + "summonerName": "porsche", + "firstName": "Shane", + "lastName": "Higgenbottom", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "108369184894611661", + "summonerName": "Airawn", + "firstName": "Hubhachen", + "lastName": "Aaron", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + }, + { + "id": "107577675890640640", + "summonerName": "SCOOOOPED", + "firstName": "Kosta", + "lastName": "Lazaris", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + } + ] + }, + { + "id": "108361575122450254", + "slug": "team-fish-taco", + "name": "Team Fish Taco", + "code": "TACO", + "image": "http://static.lolesports.com/teams/1653466413643_yjei5Hy.png", + "alternativeImage": "http://static.lolesports.com/teams/1653466413643_yjei5Hy.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "108577049816871466", + "summonerName": "lunacia", + "firstName": "Cao", + "lastName": "Harry", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "top" + }, + { + "id": "109782641359813438", + "summonerName": "Red", + "firstName": "Fabian", + "lastName": "Suri", + "image": "http://static.lolesports.com/players/1675150166570_placeholder.png", + "role": "bottom" + }, + { + "id": "108316132748778567", + "summonerName": "S0ul", + "firstName": "Cheng", + "lastName": "Luo", + "image": "http://static.lolesports.com/players/1674833061505_EG_SOUL.png", + "role": "top" + } + ] + }, + { + "id": "108361578564310810", + "slug": "team-pending", + "name": "Team Pending", + "code": "TBA", + "image": "http://static.lolesports.com/teams/1653982511575_unknown.png", + "alternativeImage": "http://static.lolesports.com/teams/1653982511577_unknown.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107577684635174819", + "summonerName": "Topo", + "firstName": "Charles", + "lastName": "Uram", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + } + ] + }, + { + "id": "108396312583824081", + "slug": "necroraisers", + "name": "NecroRaisers", + "code": "NRS", + "image": "http://static.lolesports.com/teams/1653996463703_LOLESPORTSICON.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "108396091336041217", + "summonerName": "kvbixyz", + "firstName": "Jakub", + "lastName": "Makovický", + "image": "http://static.lolesports.com/players/1653993087032_placeholder.png", + "role": "none" + }, + { + "id": "108396094727132239", + "summonerName": "Endlave", + "firstName": "Marek", + "lastName": "Vlček", + "image": "http://static.lolesports.com/players/1653993139376_placeholder.png", + "role": "none" + } + ] + }, + { + "id": "108401627438015774", + "slug": "silent-revolution-gaming", + "name": "Team Zhonyas Revolution", + "code": "TZR", + "image": "http://static.lolesports.com/teams/1685199549638_LOLESPORTSICON.png", + "alternativeImage": "http://static.lolesports.com/teams/1685199549639_LOLESPORTSICON.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "110621905262292089", + "summonerName": "FrznNuggets", + "firstName": "VAGGELIS", + "lastName": "KRITOU", + "image": "http://static.lolesports.com/players/1687956314924_placeholder.png", + "role": "mid" + }, + { + "id": "110621906647070445", + "summonerName": "M1ta", + "firstName": "MATTIA", + "lastName": "MASOPUST", + "image": "http://static.lolesports.com/players/1687956336466_placeholder.png", + "role": "support" + }, + { + "id": "110441744973830862", + "summonerName": "JokerPtoker", + "firstName": "SEBASTIAN", + "lastName": "SZASTAK", + "image": "http://static.lolesports.com/players/1685207290590_placeholder.png", + "role": "none" + } + ] + }, + { + "id": "108401629249651895", + "slug": "ionikos-nikaias-esports", + "name": "Ionikos Nikaias Esports", + "code": "INE", + "image": "http://static.lolesports.com/teams/1715653265902_INEIonikosNikaiasEsports.png", + "alternativeImage": "http://static.lolesports.com/teams/1715653265903_INEIonikosNikaiasEsports.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "105521453653590800", + "summonerName": "Maxibillion", + "firstName": "Konstantinos", + "lastName": "Avgeropoulos", + "image": "http://static.lolesports.com/players/1642162314838_placeholder.png", + "role": "top" + }, + { + "id": "105521273205260914", + "summonerName": "Gjerg", + "firstName": "Nikos", + "lastName": "Gkerkis", + "image": "https://static.lolesports.com/players/download.png", + "role": "jungle" + }, + { + "id": "113196868141921793", + "summonerName": "Raizy", + "firstName": "DIMITRIS", + "lastName": "KATSIKADAKOS", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "113196868185813064", + "summonerName": "I Z", + "firstName": "IANIS", + "lastName": "ZICA", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "113196868231950413", + "summonerName": "M G", + "firstName": "GHERUNDA", + "lastName": "MIHAI", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + } + ] + }, + { + "id": "108401920350296031", + "slug": "kit-sc-smartwe", + "name": "KIT SC SmartWe", + "code": "KSC", + "image": "http://static.lolesports.com/teams/1654082035322_LOLESPORTSICON.png", + "alternativeImage": "http://static.lolesports.com/teams/1654082035324_LOLESPORTSICON.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "110416938856948207", + "summonerName": "Akirei", + "firstName": "Aaron", + "lastName": "Schillinger", + "image": "http://static.lolesports.com/players/1684828771338_placeholder.png", + "role": "top" + }, + { + "id": "110417287586381074", + "summonerName": "Milkshake", + "firstName": "Philipp", + "lastName": "Keyhani", + "image": "http://static.lolesports.com/players/1684834099129_placeholder.png", + "role": "jungle" + }, + { + "id": "110417289500993943", + "summonerName": "corvus", + "firstName": "Korbinian", + "lastName": "Domnick", + "image": "http://static.lolesports.com/players/1684834128942_placeholder.png", + "role": "mid" + }, + { + "id": "110417291266206107", + "summonerName": "Veyytix", + "firstName": "Raik", + "lastName": "Hilpsch", + "image": "http://static.lolesports.com/players/1684834155372_placeholder.png", + "role": "bottom" + }, + { + "id": "110417293397764511", + "summonerName": "Hyosha", + "firstName": "Leonardo", + "lastName": "Piazza", + "image": "http://static.lolesports.com/players/1684834188079_placeholder.png", + "role": "support" + }, + { + "id": "110417295035693532", + "summonerName": "Matinger", + "firstName": "Matthes", + "lastName": "Steckel", + "image": "http://static.lolesports.com/players/1684834213186_placeholder.png", + "role": "none" + } + ] + }, + { + "id": "108401923588757474", + "slug": "all-for-one-gaming", + "name": "All for One Gaming", + "code": "A41G", + "image": "http://static.lolesports.com/teams/1702284945457_a41glogo.png", + "alternativeImage": "http://static.lolesports.com/teams/1702284945458_a41glogo.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "111726670833857283", + "summonerName": "Novyy", + "firstName": "Lisa", + "lastName": "Janku", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "111726670936631951", + "summonerName": "Mokwaii", + "firstName": "Jesus", + "lastName": "Klingspor", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "109705338302948674", + "summonerName": "OBELISK", + "firstName": "Lennart", + "lastName": "Fix", + "image": "http://static.lolesports.com/players/1673970614910_placeholder.png", + "role": "top" + }, + { + "id": "103935622852857101", + "summonerName": "DIBU", + "firstName": "Janne ", + "lastName": "Heikkonen", + "image": "http://static.lolesports.com/players/1641501252164_placeholder.png", + "role": "jungle" + }, + { + "id": "111560930922794079", + "summonerName": "H0NEST", + "firstName": "Luca", + "lastName": "Dohle", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "107560278632461274", + "summonerName": "Notiko", + "firstName": "Nick", + "lastName": "Ceombitko", + "image": "http://static.lolesports.com/players/1674856349558_4GTZ-Notiko.png", + "role": "bottom" + }, + { + "id": "107560250311565369", + "summonerName": "Ephekles", + "firstName": "Marc ", + "lastName": "Küchler ", + "image": "http://static.lolesports.com/players/1641239165419_placeholder.png", + "role": "support" + }, + { + "id": "108401896945706387", + "summonerName": "UniqueCORN", + "firstName": "Lukas", + "lastName": "Bauer", + "image": "http://static.lolesports.com/players/1654081676416_placeholder.png", + "role": "mid" + }, + { + "id": "107605604013695279", + "summonerName": "Kazing", + "firstName": "Berkay", + "lastName": "Özyurt", + "image": "http://static.lolesports.com/players/1641931210268_placeholder.png", + "role": "none" + }, + { + "id": "112377355732988872", + "summonerName": "Rem21", + "firstName": "Leon", + "lastName": "Billali", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + }, + { + "id": "100115112838321482", + "summonerName": "Nukes", + "firstName": "Risto ", + "lastName": "Luuri", + "image": "http://static.lolesports.com/players/1591900382058_Risto-NUKES-Luuri-1.png", + "role": "support" + } + ] + }, + { + "id": "108403523079161354", + "slug": "guarp-gaming", + "name": "Guarp Gaming", + "code": "GUA", + "image": "http://static.lolesports.com/teams/1654106488556_LOLESPORTSICON.png", + "alternativeImage": "http://static.lolesports.com/teams/1654106488559_LOLESPORTSICON.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "108403357935933824", + "summonerName": "galem", + "firstName": "Tobias", + "lastName": "Jensen", + "image": "http://static.lolesports.com/players/1654103971120_silhouette_transparent1.png", + "role": "none" + }, + { + "id": "107643481862473587", + "summonerName": "Quicksie", + "firstName": "Nikolaj", + "lastName": "Kraft", + "image": "http://static.lolesports.com/players/1642509170279_placeholder.png", + "role": "none" + }, + { + "id": "108403323589977623", + "summonerName": "Ansigtssmer", + "firstName": "Wulff Gregersen", + "lastName": "Simon", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + }, + { + "id": "108403323660478382", + "summonerName": "DunkenMessi", + "firstName": "Hauch Pedersen", + "lastName": "Malthe", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + }, + { + "id": "108436392203275751", + "summonerName": "Kamaeleonen", + "firstName": "David", + "lastName": "Friis Jensen", + "image": "http://static.lolesports.com/players/1654608027905_placeholder.png", + "role": "none" + }, + { + "id": "108436393908109446", + "summonerName": "Tanline Tom", + "firstName": "Thor", + "lastName": "Juul", + "image": "http://static.lolesports.com/players/1654608053911_placeholder.png", + "role": "none" + } + ] + }, + { + "id": "108403525076412007", + "slug": "rising-dawn-esport", + "name": "Orgless", + "code": "ORLL", + "image": "http://static.lolesports.com/teams/1654106518873_LOLESPORTSICON.png", + "alternativeImage": "http://static.lolesports.com/teams/1654106518873_LOLESPORTSICON.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107643444802682472", + "summonerName": "Vangsted", + "firstName": "Mikkel", + "lastName": "Vangsted", + "image": "http://static.lolesports.com/players/1642508613806_placeholder.png", + "role": "none" + }, + { + "id": "108403325787773264", + "summonerName": "Fatirl", + "firstName": "Lundin", + "lastName": "Anton", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + }, + { + "id": "108403326017914320", + "summonerName": "Lundgrenss", + "firstName": "Lundgren", + "lastName": "Johan", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + } + ] + }, + { + "id": "108403526900459473", + "slug": "uniq", + "name": "UniQ Esports", + "code": "UNIQ", + "image": "http://static.lolesports.com/teams/1673014736863_UniQLogoWhite1.png", + "alternativeImage": "http://static.lolesports.com/teams/1673014736864_UniQLogoWhite1.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "108404211655217274", + "slug": "partizan-esports", + "name": "Partizan Sangal", + "code": "PXS", + "image": "http://static.lolesports.com/teams/1744190485577_EBL_PXS-MonochromeDarkBG.png", + "alternativeImage": "http://static.lolesports.com/teams/1744190485577_EBL_PXS-MonochromeLightBG.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Esports Balkan League", + "region": "EMEA" + }, + "players": [ + { + "id": "103889983720130825", + "summonerName": "Tasteless", + "firstName": "Igor", + "lastName": "Radusinović", + "image": "https://static.lolesports.com/players/download.png", + "role": "support" + }, + { + "id": "107105627153828391", + "summonerName": "Axelent", + "firstName": "Nikola ", + "lastName": "Petrushev", + "image": "https://static.lolesports.com/players/download.png", + "role": "bottom" + }, + { + "id": "103935377160301900", + "summonerName": "HungryPanda", + "firstName": "Nikos ", + "lastName": "Nikolaidis", + "image": "https://static.lolesports.com/players/download.png", + "role": "support" + }, + { + "id": "101422910053542691", + "summonerName": "Algos", + "firstName": "Ersin", + "lastName": "Sertbaş", + "image": "http://static.lolesports.com/players/1583939238922_silhouette.png", + "role": "none" + }, + { + "id": "114295675531205719", + "summonerName": "Chan ", + "firstName": "Chan-ho", + "lastName": "Jang", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "100205576934475691", + "summonerName": "Stefan", + "firstName": "Stefan ", + "lastName": "Nikolić", + "image": "http://static.lolesports.com/players/1591438420370_stefan.png", + "role": "jungle" + }, + { + "id": "110429742934986202", + "summonerName": "Whistle", + "firstName": "Jong-hwi", + "lastName": "Jo", + "image": "http://static.lolesports.com/players/1705672863738_WHISTLE.png", + "role": "mid" + } + ] + }, + { + "id": "108439036582886702", + "slug": "byteway-esports", + "name": "BWE Esports", + "code": "BWE", + "image": "http://static.lolesports.com/teams/1738418537085_BWE_c.png", + "alternativeImage": "http://static.lolesports.com/teams/1738418537087_BWE_c.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Liga Portuguesa", + "region": "EMEA" + }, + "players": [ + { + "id": "112456600103399630", + "summonerName": "Surdinz", + "firstName": "Hugo", + "lastName": "Magalhães", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "112456598692170925", + "summonerName": "SpookyFino", + "firstName": "Tiago", + "lastName": "Soares", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "113934662803183004", + "summonerName": "Errado", + "firstName": "Manuel", + "lastName": "Teixeira", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "112523947600142374", + "summonerName": "DarkBlue", + "firstName": "Alexander", + "lastName": "Vasilievich", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "111813496696702428", + "summonerName": "NBA", + "firstName": "Ruslan", + "lastName": "Rafikovic", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "112456599396748465", + "summonerName": "manuemdo", + "firstName": "Emanuel", + "lastName": "de Oliveira", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + } + ] + }, + { + "id": "108448919775963376", + "slug": "login-esports", + "name": "Login Esports", + "code": "LGN", + "image": "http://static.lolesports.com/teams/1654799190185_1_Fb_Instagram_Pinterest_profile_pic-LeonardoCosta.png", + "alternativeImage": "http://static.lolesports.com/teams/1654799190185_1_Fb_Instagram_Pinterest_profile_pic-LeonardoCosta.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "108622417495865869", + "summonerName": "TopSpin2", + "firstName": "Mattia", + "lastName": "Comastri", + "image": "https://static.lolesports.com/players/download.png", + "role": "bottom" + }, + { + "id": "108448763493675624", + "summonerName": "WeNeKappa", + "firstName": "Salade", + "lastName": "Mihai", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "bottom" + }, + { + "id": "108448776544061129", + "summonerName": "Blank III", + "firstName": "Schwarz", + "lastName": "Simon", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "jungle" + }, + { + "id": "107648370841551704", + "summonerName": "Mors", + "firstName": "Francesco", + "lastName": "Rossi", + "image": "http://static.lolesports.com/players/1642583779766_placeholder.png", + "role": "mid" + }, + { + "id": "105815753989348799", + "summonerName": "Sadaz", + "firstName": "Antonio", + "lastName": "Scalese", + "image": "http://static.lolesports.com/players/1687000794844_FTW-SADAZ.png", + "role": "mid" + }, + { + "id": "106301630375991413", + "summonerName": "Cubo", + "firstName": "Pietro", + "lastName": "Giusti", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "support" + }, + { + "id": "108448763752638608", + "summonerName": "Tash", + "firstName": "Hill-Tout", + "lastName": "Natasha", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "support" + }, + { + "id": "108448763829893731", + "summonerName": "Samson", + "firstName": "Samson", + "lastName": "Jonathan", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "top" + } + ] + }, + { + "id": "108448995754333242", + "slug": "webidoo-gaming", + "name": "webidoo Gaming", + "code": "WBD", + "image": "http://static.lolesports.com/teams/1654800349371_webidoo_gaming-03-NicolaGaglianoMedium.png", + "alternativeImage": "http://static.lolesports.com/teams/1654800349372_webidoo_gaming-03-NicolaGaglianoMedium.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [] + }, + { + "id": "108449790840493290", + "slug": "ikiseq", + "name": "IKISEQ", + "code": "IKQ", + "image": "http://static.lolesports.com/teams/1654812481405_noteamlogo-lolesports.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "105527043739912491", + "summonerName": "Emiw", + "firstName": "Emil", + "lastName": "Irga", + "image": "https://static.lolesports.com/players/download.png", + "role": "top" + }, + { + "id": "107801688465237213", + "summonerName": "Biotic", + "firstName": "Ruben", + "lastName": "Steinhaus", + "image": "http://static.lolesports.com/players/1644923223429_placeholder.png", + "role": "none" + }, + { + "id": "105521269454383319", + "summonerName": "CHECKFIDER", + "firstName": "Lukáš", + "lastName": "Nevyjel", + "image": "http://static.lolesports.com/players/1642093697459_placeholder.png", + "role": "none" + }, + { + "id": "108449777479793522", + "summonerName": "Xewix", + "firstName": "Gúth", + "lastName": "Dušan", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + } + ] + }, + { + "id": "108449792884304363", + "slug": "corax", + "name": "Corax", + "code": "CRX", + "image": "http://static.lolesports.com/teams/1654812512693_noteamlogo-lolesports.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "105647951086921180", + "summonerName": "Adamson", + "firstName": "Adam", + "lastName": "Langmaier", + "image": "http://static.lolesports.com/players/download.png", + "role": "top" + }, + { + "id": "105593239800077480", + "summonerName": "Zeussak", + "firstName": "Peter", + "lastName": "Gbelec", + "image": "http://static.lolesports.com/players/placeholder_.jpg", + "role": "support" + }, + { + "id": "102191993878979744", + "summonerName": "Curse", + "firstName": "Davide", + "lastName": "Renz", + "image": "http://static.lolesports.com/players/1593131717088_omg-curse-web.png", + "role": "top" + }, + { + "id": "108738596591738842", + "summonerName": "Trez", + "firstName": "Georgia", + "lastName": "Wheeler", + "image": "http://static.lolesports.com/players/1659219303642_silhouette_transparent1.png", + "role": "jungle" + } + ] + }, + { + "id": "108517492697602721", + "slug": "dewish-team", + "name": "Dewish Team", + "code": "DWT", + "image": "http://static.lolesports.com/teams/1656308173484_DWT_Logo_W.png", + "alternativeImage": "http://static.lolesports.com/teams/1656308173485_DWT_Logo.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "PCS", + "region": "HONG KONG, MACAU, TAIWAN" + }, + "players": [ + { + "id": "108547753319604926", + "summonerName": "WSL", + "firstName": "Le", + "lastName": "shao wei", + "image": "http://static.lolesports.com/players/1687502104022_DWTWSL.png", + "role": "jungle" + }, + { + "id": "107705432370779918", + "summonerName": "xiaotu", + "firstName": "Jun-Yao", + "lastName": "Le", + "image": "http://static.lolesports.com/players/1687502199126_DWTxiaotu.png", + "role": "mid" + }, + { + "id": "109691836694545033", + "summonerName": "Pepero", + "firstName": "Jia-Ming", + "lastName": "Kuo", + "image": "http://static.lolesports.com/players/1687502213991_DWTPepero.png", + "role": "bottom" + }, + { + "id": "110541982723891517", + "summonerName": "JP6RU8", + "firstName": "Wen-Jia", + "lastName": "Xie", + "image": "http://static.lolesports.com/players/1687502087095_DWTJP6RU8.png", + "role": "top" + }, + { + "id": "110541984645992408", + "summonerName": "Hako", + "firstName": "Xian-Jun", + "lastName": "Cao", + "image": "http://static.lolesports.com/players/1687502233582_DWTHako.png", + "role": "bottom" + } + ] + }, + { + "id": "108565997404381643", + "slug": "tempest-gaming", + "name": "Tempest Gaming", + "code": "TPG", + "image": "http://static.lolesports.com/teams/1656585648124_K1NKucy.png", + "alternativeImage": "http://static.lolesports.com/teams/1656585648126_K1NKucy.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "108577048457059717", + "summonerName": "Vuckae", + "firstName": "Her", + "lastName": "Brian", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "mid" + }, + { + "id": "107577683962447767", + "summonerName": "Bellow", + "firstName": "Cameron", + "lastName": "Mason", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "support" + }, + { + "id": "107577685511225900", + "summonerName": "Stiifo", + "firstName": "Nick", + "lastName": "Restifo", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107577686727180876", + "summonerName": "Apathing", + "firstName": "David", + "lastName": "Rogers", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "108577049072967049", + "summonerName": "HypheNA", + "firstName": "Haidar-Ahmed", + "lastName": "Jad", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + }, + { + "id": "108577049160148578", + "summonerName": "Paige", + "firstName": "Xiao", + "lastName": "Priscilla", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + } + ] + }, + { + "id": "108566004579728490", + "slug": "large", + "name": "LARGE", + "code": "LRG", + "image": "http://static.lolesports.com/teams/1656585757704_4LLHTKt.png", + "alternativeImage": "http://static.lolesports.com/teams/1656585757705_4LLHTKt.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "108604925967546229", + "summonerName": "Schoon", + "firstName": "Isaac", + "lastName": "Waltz", + "image": "http://static.lolesports.com/players/1657179654828_placeholder.png", + "role": "mid" + }, + { + "id": "108604928989686980", + "summonerName": "Lin", + "firstName": "William", + "lastName": "Lin", + "image": "http://static.lolesports.com/players/1657179700368_placeholder.png", + "role": "support" + }, + { + "id": "108604953238910848", + "summonerName": "rege", + "firstName": "Elias", + "lastName": "Lahrim", + "image": "http://static.lolesports.com/players/1657180069746_placeholder.png", + "role": "none" + }, + { + "id": "108604955420604292", + "summonerName": "wolverene", + "firstName": "William", + "lastName": "Harrison", + "image": "http://static.lolesports.com/players/1657180104282_placeholder.png", + "role": "none" + } + ] + }, + { + "id": "108573042084687884", + "slug": "team-whales", + "name": "TEAM WHALES", + "code": "TW", + "image": "http://static.lolesports.com/teams/1674646643550_TEAMWHALE_LOGO_VERSIONS_W_fullwhite-06-svg.png", + "alternativeImage": "http://static.lolesports.com/teams/1674646643551_Team_Whaleslogo_square.webp", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCP", + "region": "PACIFIC" + }, + "players": [] + }, + { + "id": "108696103340295905", + "slug": "kone", + "name": "KONEeee", + "code": "1235", + "image": "http://static.lolesports.com/teams/1658570910291_nologo-team-valorant.png", + "alternativeImage": null, + "backgroundImage": "http://static.lolesports.com/teams/1658570910291_nologo-team-valorant.png", + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "100115112811436141", + "summonerName": "MOUZObsess", + "firstName": "Patrick", + "lastName": "Engelmann", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/obsess-gfw2hrdn.png", + "role": "none" + } + ] + }, + { + "id": "108877578925874443", + "slug": "qlash", + "name": "QLASH", + "code": "QLS", + "image": "http://static.lolesports.com/teams/1705525427278_logoQlashbianco.png", + "alternativeImage": "http://static.lolesports.com/teams/1705525427280_LogoQlash.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "108321442725120177", + "summonerName": "YuJian", + "firstName": "Hui", + "lastName": "Min Wu", + "image": "http://static.lolesports.com/players/1652854043433_placeholder.png", + "role": "top" + }, + { + "id": "110355912028213675", + "summonerName": "Jiahao", + "firstName": "Chiyuan ", + "lastName": "Jiang", + "image": "http://static.lolesports.com/players/1683897580500_placeholder.png", + "role": "jungle" + }, + { + "id": "110355916948197815", + "summonerName": "Oriloler", + "firstName": "Oriol ", + "lastName": "Villar Hernandez", + "image": "http://static.lolesports.com/players/1683897655337_placeholder.png", + "role": "jungle" + } + ] + }, + { + "id": "108901102112066596", + "slug": "arkangel", + "name": "ArkAngel", + "code": "ARK", + "image": "http://static.lolesports.com/teams/1661698940339_ArkAngellogo_square.webp", + "alternativeImage": "http://static.lolesports.com/teams/1661698940340_ArkAngellogo_square.webp", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "108901108857574270", + "slug": "team-anything", + "name": "Team Anything", + "code": "TATX", + "image": "http://static.lolesports.com/teams/1661699046984_Team_Anythinglogo_square.webp", + "alternativeImage": "http://static.lolesports.com/teams/1661699046985_Team_Anythinglogo_square.webp", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "108901117887406731", + "slug": "bigetron-esports", + "name": "Bigetron E-Sports", + "code": "BGE", + "image": "http://static.lolesports.com/teams/1661699184451_Bigetron_E-Sportslogo_square.webp", + "alternativeImage": "http://static.lolesports.com/teams/1661699184452_Bigetron_E-Sportslogo_square.webp", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "108901132092574910", + "slug": "armored-project", + "name": "Armored Project", + "code": "AP", + "image": "http://static.lolesports.com/teams/1661709907399_Armored_Projectlogo_square.png", + "alternativeImage": "http://static.lolesports.com/teams/1661709907400_Armored_Projectlogo_square.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "108901141250184065", + "slug": "axis-empire", + "name": "Axis Empire", + "code": "AXE", + "image": "http://static.lolesports.com/teams/1661699540774_Team_Empire_29logo_square.webp", + "alternativeImage": "http://static.lolesports.com/teams/1661699540775_Team_Empire_29logo_square.webp", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "108901144368028690", + "slug": "steelwolves-gaia", + "name": "SteelWolves Gaia", + "code": "XSW", + "image": "http://static.lolesports.com/teams/1661699588437_SteelWolves_Gaialogo_square.webp", + "alternativeImage": "http://static.lolesports.com/teams/1661699588439_SteelWolves_Gaialogo_square.webp", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "108901180665461951", + "slug": "insurgent", + "name": "Insurgent", + "code": "ISR", + "image": "http://static.lolesports.com/teams/1661700141742_Insurgentlogo_square.webp", + "alternativeImage": "http://static.lolesports.com/teams/1661700141743_Insurgentlogo_square.webp", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "108901185023495213", + "slug": "win-esports", + "name": "WIN Esports", + "code": "WINN", + "image": "http://static.lolesports.com/teams/1661700208442_WIN_Esportslogo_square.webp", + "alternativeImage": "http://static.lolesports.com/teams/1661700208443_WIN_Esportslogo_square.webp", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "108901193638640834", + "slug": "dream-or-reality", + "name": "Dream or Reality", + "code": "DOR", + "image": "http://static.lolesports.com/teams/1661700340296_Dream_or_Realitylogo_square.webp", + "alternativeImage": "http://static.lolesports.com/teams/1661700340296_Dream_or_Realitylogo_square.webp", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "108901197080788165", + "slug": "midnight-sun-esports", + "name": "Midnight Sun Esports", + "code": "MSE", + "image": "http://static.lolesports.com/teams/1661700392936_Midnight_Sun_Esportslogo_square.webp", + "alternativeImage": "http://static.lolesports.com/teams/1661700392937_Midnight_Sun_Esportslogo_square.webp", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "108901200561070736", + "slug": "never-give-up", + "name": "Never Give Up", + "code": "NGUX", + "image": "http://static.lolesports.com/teams/1661700446359_Never_Give_Uplogo_square.webp", + "alternativeImage": "http://static.lolesports.com/teams/1661700446359_Never_Give_Uplogo_square.webp", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "108901206116164243", + "slug": "logitech-g-snipers", + "name": "Logitech G Snipers", + "code": "LGS", + "image": "http://static.lolesports.com/teams/1661700530515_Logitech_G_Sniperslogo_square.webp", + "alternativeImage": "http://static.lolesports.com/teams/1661700530516_Logitech_G_Sniperslogo_square.webp", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "108901213335260361", + "slug": "assassin-sniper", + "name": "Assassin Sniper", + "code": "AS", + "image": "http://static.lolesports.com/teams/1661700641024_Assassin_Sniperlogo_square.webp", + "alternativeImage": "http://static.lolesports.com/teams/1661700641025_Assassin_Sniperlogo_square.webp", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "108901224352566323", + "slug": "fireball", + "name": "Fireball", + "code": "FBL", + "image": "http://static.lolesports.com/teams/1661700807972_Fireballlogo_square.webp", + "alternativeImage": "http://static.lolesports.com/teams/1661700807974_Fireballlogo_square.webp", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "108901230710586570", + "slug": "cougar-esport", + "name": "Cougar E-Sport", + "code": "CGE", + "image": "http://static.lolesports.com/teams/1661700905665_COUGAR_E-Sportlogo_square.webp", + "alternativeImage": "http://static.lolesports.com/teams/1661700905666_COUGAR_E-Sportlogo_square.webp", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "108901241204100150", + "slug": "wayi-spider", + "name": "Wayi Spider", + "code": "WYS", + "image": "http://static.lolesports.com/teams/1661701064228_Wayi_Spiderlogo_square.webp", + "alternativeImage": "http://static.lolesports.com/teams/1661701064229_Wayi_Spiderlogo_square.webp", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "108901256235633721", + "slug": "xgamers", + "name": "XGamers", + "code": "XG", + "image": "http://static.lolesports.com/teams/1661701294602_EXtreme_Gamerslogo_square.webp", + "alternativeImage": "http://static.lolesports.com/teams/1661701294603_EXtreme_Gamerslogo_square.webp", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "108901808401775822", + "slug": "detonator", + "name": "DeToNator", + "code": "DTN", + "image": "http://static.lolesports.com/teams/1661709721057_DeToNator_29logo_square.webp", + "alternativeImage": "http://static.lolesports.com/teams/1661709721058_DeToNator_29logo_square.webp", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "108939770223501012", + "slug": "urban-beauties", + "name": "xzxzxz", + "code": "XXXZ", + "image": "http://static.lolesports.com/teams/1662288971313_valorantteamgamechangers.png", + "alternativeImage": "http://static.lolesports.com/teams/1662288971314_valorantteamgamechangers.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "LCL", + "region": "COMMONWEALTH OF INDEPENDENT STATES" + }, + "players": [ + { + "id": "100115112811436141", + "summonerName": "MOUZObsess", + "firstName": "Patrick", + "lastName": "Engelmann", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/obsess-gfw2hrdn.png", + "role": "none" + } + ] + }, + { + "id": "109029965480133519", + "slug": "7th-heaven", + "name": "7th heaven", + "code": "7H", + "image": "http://static.lolesports.com/teams/1663665242269_7th_heavenlogo_square.webp", + "alternativeImage": "http://static.lolesports.com/teams/1663665278384_7th_heavenlogo_square.webp", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LJL", + "region": "JAPAN" + }, + "players": [] + }, + { + "id": "109030008014439723", + "slug": "scarz", + "name": "SCARZ", + "code": "SZ", + "image": "http://static.lolesports.com/teams/1663665891493_SCARZlogo_square.webp", + "alternativeImage": "http://static.lolesports.com/teams/1663665891494_SCARZlogo_square.webp", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LJL", + "region": "JAPAN" + }, + "players": [] + }, + { + "id": "109030015106787069", + "slug": "team-blackeye", + "name": "Team BlackEye", + "code": "TBE", + "image": "http://static.lolesports.com/teams/1663665999858_Team_BlackEyelogo_square.webp", + "alternativeImage": "http://static.lolesports.com/teams/1663665999859_Team_BlackEyelogo_square.webp", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LJL", + "region": "JAPAN" + }, + "players": [] + }, + { + "id": "109030035355009939", + "slug": "cj-entus", + "name": "CJ Entus", + "code": "CJ", + "image": "http://static.lolesports.com/teams/1663666308485_CJ_Entuslogo_square.webp", + "alternativeImage": "http://static.lolesports.com/teams/1663666308486_CJ_Entuslogo_square.webp", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCK", + "region": "KOREA" + }, + "players": [] + }, + { + "id": "109030055392969629", + "slug": "sbenu-sonicboom", + "name": "SBENU Sonicboom", + "code": "SSO", + "image": "http://static.lolesports.com/teams/1663666614873_SBENU_Sonicboomlogo_square.webp", + "alternativeImage": "http://static.lolesports.com/teams/1663666614874_SBENU_Sonicboomlogo_square.webp", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCK", + "region": "KOREA" + }, + "players": [] + }, + { + "id": "109188677810100248", + "slug": "mysterious-monkeys", + "name": "Mysterious Monkeys", + "code": "MM", + "image": "http://static.lolesports.com/teams/1666087000322_Mysterious_Monkeys_allmode1.png", + "alternativeImage": "http://static.lolesports.com/teams/1666087000324_Mysterious_Monkeys_allmode1.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LEC", + "region": "EMEA" + }, + "players": [ + { + "id": "112880372381731252", + "summonerName": "Ben01", + "firstName": "Ben", + "lastName": "Ben", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + } + ] + }, + { + "id": "109188706362375397", + "slug": "ninjas-in-pyjamas", + "name": "Ninjas in Pyjamas", + "code": "NIP", + "image": "http://static.lolesports.com/teams/1666087435973_Ninjas_in_Pyjamas_2021_darkmode.png", + "alternativeImage": "http://static.lolesports.com/teams/1666087435974_Ninjas_in_Pyjamas_2021_lightmode.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "EMEA Masters", + "region": "EMEA" + }, + "players": [ + { + "id": "112880372381731252", + "summonerName": "Ben01", + "firstName": "Ben", + "lastName": "Ben", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + } + ] + }, + { + "id": "109188792936195366", + "slug": "elements", + "name": "Elements", + "code": "ELEM", + "image": "http://static.lolesports.com/teams/1666088755448_Elements_allmode1.png", + "alternativeImage": "http://static.lolesports.com/teams/1666088755449_Elements_allmode1.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LEC", + "region": "EMEA" + }, + "players": [ + { + "id": "112880372381731252", + "summonerName": "Ben01", + "firstName": "Ben", + "lastName": "Ben", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + } + ] + }, + { + "id": "109189810022067784", + "slug": "team-turquality", + "name": "Team Turquality", + "code": "TTQ", + "image": "http://static.lolesports.com/teams/1666104276809_Team_Turqualitylogo_square.webp", + "alternativeImage": "http://static.lolesports.com/teams/1666104276810_Team_Turqualitylogo_square.webp", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "TCL", + "region": "EMEA" + }, + "players": [] + }, + { + "id": "109189837857144242", + "slug": "numberone-esports", + "name": "NumberOne Esports", + "code": "NR1", + "image": "http://static.lolesports.com/teams/1666104701463_NumberOne_Esportslogo_square.webp", + "alternativeImage": "http://static.lolesports.com/teams/1666104701464_NumberOne_Esportslogo_square.webp", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "TCL", + "region": "EMEA" + }, + "players": [] + }, + { + "id": "109189853066139852", + "slug": "beikta-oh", + "name": "Beşiktaş OH", + "code": "BJK", + "image": "http://static.lolesports.com/teams/1666104933436_Be_3Fikta_3F_Esportslogo_square.webp", + "alternativeImage": "http://static.lolesports.com/teams/1666104933437_Be_3Fikta_3F_Esportslogo_square.webp", + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "TCL", + "region": "EMEA" + }, + "players": [] + }, + { + "id": "109198834600243789", + "slug": "kt-rolster-academy", + "name": "toberemoved", + "code": "KT", + "image": "http://static.lolesports.com/teams/1666242006305_kt.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [] + }, + { + "id": "109198837450587673", + "slug": "kt-rolster-academy", + "name": "kt Rolster Academy", + "code": "KT", + "image": "http://static.lolesports.com/teams/1666242049851_kt.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "109212667884169625", + "slug": "gambit-gaming", + "name": "Gambit Gaming", + "code": "GMBT", + "image": "http://static.lolesports.com/teams/1666453058520_gmbsquare.png", + "alternativeImage": "http://static.lolesports.com/teams/1666453058522_gmbsquare.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LEC", + "region": "EMEA" + }, + "players": [] + }, + { + "id": "109212671407960104", + "slug": "copenhagen-wolves", + "name": "Copenhagen Wolves", + "code": "CWO", + "image": "http://static.lolesports.com/teams/1666453113649_Copenhagen_Wolves_2012_allmode.png", + "alternativeImage": "http://static.lolesports.com/teams/1666453113649_Copenhagen_Wolves_2012_allmode.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LEC", + "region": "EMEA" + }, + "players": [ + { + "id": "112880372381731252", + "summonerName": "Ben01", + "firstName": "Ben", + "lastName": "Ben", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + } + ] + }, + { + "id": "109212677386887023", + "slug": "meetyourmakers", + "name": "MeetYourMakers", + "code": "MYM", + "image": "http://static.lolesports.com/teams/1666453204458_mymsquare.png", + "alternativeImage": "http://static.lolesports.com/teams/1666453204459_mymsquare.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LEC", + "region": "EMEA" + }, + "players": [ + { + "id": "112880372381731252", + "summonerName": "Ben01", + "firstName": "Ben", + "lastName": "Ben", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + } + ] + }, + { + "id": "109218860895411017", + "slug": "millenium", + "name": "Millenium", + "code": "MIL", + "image": "http://static.lolesports.com/teams/1666548514993_Millenium_2017_darkmode.png", + "alternativeImage": "http://static.lolesports.com/teams/1666547556651_Millenium_2017_lightmode.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LEC", + "region": "EMEA" + }, + "players": [ + { + "id": "112880372381731252", + "summonerName": "Ben01", + "firstName": "Ben", + "lastName": "Ben", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + } + ] + }, + { + "id": "109218864048681791", + "slug": "supa-hot-crew", + "name": "SUPA HOT CREW", + "code": "SHC", + "image": "http://static.lolesports.com/teams/1666547604460_SUPA_HOT_CREW_allmode.png", + "alternativeImage": "http://static.lolesports.com/teams/1666547604462_SUPA_HOT_CREW_allmode.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LEC", + "region": "EMEA" + }, + "players": [ + { + "id": "112880372381731252", + "summonerName": "Ben01", + "firstName": "Ben", + "lastName": "Ben", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + } + ] + }, + { + "id": "109218868077642103", + "slug": "dragonborns", + "name": "DragonBorns", + "code": "DBZZ", + "image": "http://static.lolesports.com/teams/1666548211630_DragonBornssquare.png", + "alternativeImage": "http://static.lolesports.com/teams/1666548211631_DragonBornssquare.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "LEC", + "region": "EMEA" + }, + "players": [ + { + "id": "112880372381731252", + "summonerName": "Ben01", + "firstName": "Ben", + "lastName": "Ben", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + } + ] + }, + { + "id": "109218871531830908", + "slug": "evil-geniuses-eu", + "name": "Evil Geniuses EU", + "code": "EG", + "image": "http://static.lolesports.com/teams/1666548171478_egsquare.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LEC", + "region": "EMEA" + }, + "players": [ + { + "id": "112880372381731252", + "summonerName": "Ben01", + "firstName": "Ben", + "lastName": "Ben", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + } + ] + }, + { + "id": "109218874512408191", + "slug": "lemondogs", + "name": "Lemondogs", + "code": "LD", + "image": "http://static.lolesports.com/teams/1666548145845_Lemondogssquare.png", + "alternativeImage": "http://static.lolesports.com/teams/1666548145846_Lemondogssquare.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LEC", + "region": "EMEA" + }, + "players": [ + { + "id": "112880372381731252", + "summonerName": "Ben01", + "firstName": "Ben", + "lastName": "Ben", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + } + ] + }, + { + "id": "109218896516493579", + "slug": "alternate-attax", + "name": "ALTERNATE aTTaX", + "code": "ATN", + "image": "http://static.lolesports.com/teams/1666548100178_atnsquare.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LEC", + "region": "EMEA" + }, + "players": [ + { + "id": "112880372381731252", + "summonerName": "Ben01", + "firstName": "Ben", + "lastName": "Ben", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + } + ] + }, + { + "id": "109365359101282936", + "slug": "bangkok-titans", + "name": "Bangkok Titans", + "code": "BKT", + "image": "http://static.lolesports.com/teams/1668782931622_Bangkok_Titanslogo_square.png", + "alternativeImage": "http://static.lolesports.com/teams/1668782931624_Bangkok_Titanslogo_square.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "109365370086329781", + "slug": "origen", + "name": "Origen", + "code": "ORIG", + "image": "http://static.lolesports.com/teams/1668783110728_Origenlogo_squarew.png", + "alternativeImage": "http://static.lolesports.com/teams/1668783110729_Origenlogo_square.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LEC", + "region": "EMEA" + }, + "players": [ + { + "id": "112880372381731252", + "summonerName": "Ben01", + "firstName": "Ben", + "lastName": "Ben", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + } + ] + }, + { + "id": "109381384571686551", + "slug": "albus-nox-luna", + "name": "Albus NoX Luna", + "code": "ANX", + "image": "http://static.lolesports.com/teams/1669027470580_Albus_NoXlogo_square.png", + "alternativeImage": "http://static.lolesports.com/teams/1669027470582_Albus_NoXlogo_square.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCL", + "region": "COMMONWEALTH OF INDEPENDENT STATES" + }, + "players": [ + { + "id": "100125291362652497", + "summonerName": "Amazing", + "firstName": "Maurice", + "lastName": "Stückenschneider", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/amazing-j84hbmzj.png", + "role": "none" + } + ] + }, + { + "id": "109381393171241522", + "slug": "i-may", + "name": "I May", + "code": "IMAY", + "image": "http://static.lolesports.com/teams/1669027590458_I_Maylogo_square.png", + "alternativeImage": "http://static.lolesports.com/teams/1669027590461_I_Maylogo_square.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LPL", + "region": "CHINA" + }, + "players": [] + }, + { + "id": "109381396974476144", + "slug": "samsung-galaxy", + "name": "Samsung Galaxy", + "code": "SSG", + "image": "http://static.lolesports.com/teams/1669027660167_Samsung_Galaxylogo_square.png", + "alternativeImage": "http://static.lolesports.com/teams/1669027660168_Samsung_Galaxylogo_square.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "LCK", + "region": "KOREA" + }, + "players": [] + }, + { + "id": "109381398291418066", + "slug": "samsung-galaxy", + "name": "Samsung Galaxy", + "code": "SSG", + "image": "http://static.lolesports.com/teams/1669027660167_Samsung_Galaxylogo_square.png", + "alternativeImage": "http://static.lolesports.com/teams/1669027660168_Samsung_Galaxylogo_square.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "LCK", + "region": "KOREA" + }, + "players": [] + }, + { + "id": "109385640148536577", + "slug": "ftv-esports", + "name": "FTV Esports", + "code": "FTV", + "image": "http://static.lolesports.com/teams/1669092406945_ftv.PNG", + "alternativeImage": "http://static.lolesports.com/teams/1669092406947_ftv.PNG", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "VCS", + "region": "VIETNAM" + }, + "players": [] + }, + { + "id": "109385642338383648", + "slug": "ftv-esports", + "name": "FTV Esports", + "code": "FTE", + "image": "http://static.lolesports.com/teams/1669092441241_ftv.PNG", + "alternativeImage": "http://static.lolesports.com/teams/1669092441242_ftv.PNG", + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "VCS", + "region": "VIETNAM" + }, + "players": [] + }, + { + "id": "109385652440357851", + "slug": "ftv-esports", + "name": "FTV Esports", + "code": "FTVE", + "image": "http://static.lolesports.com/teams/1669092595239_ftv.PNG", + "alternativeImage": "http://static.lolesports.com/teams/1669092595240_ftv.PNG", + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "VCS", + "region": "VIETNAM" + }, + "players": [] + }, + { + "id": "109385662204369886", + "slug": "ftv-esports", + "name": "FTV Esports", + "code": "FT", + "image": "http://static.lolesports.com/teams/1669092744339_ftv.PNG", + "alternativeImage": "http://static.lolesports.com/teams/1669092744340_ftv.PNG", + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "VCS", + "region": "VIETNAM" + }, + "players": [] + }, + { + "id": "109433247162778237", + "slug": "azubu-blaze", + "name": "Azubu Blaze", + "code": "AZB", + "image": "http://static.lolesports.com/teams/1669818831088_Azubu_Blazelogo_square.png", + "alternativeImage": "http://static.lolesports.com/teams/1669818831091_Azubu_Blazelogo_square.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCK", + "region": "KOREA" + }, + "players": [] + }, + { + "id": "109433254544556672", + "slug": "gjr", + "name": "GJR", + "code": "GJR", + "image": "http://static.lolesports.com/teams/1669818944194_GJRlogo_square.png", + "alternativeImage": "http://static.lolesports.com/teams/1669818944196_GJRlogo_square.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCK", + "region": "KOREA" + }, + "players": [] + }, + { + "id": "109433263921960499", + "slug": "romg", + "name": "RoMg", + "code": "ROMG", + "image": "http://static.lolesports.com/teams/1669819076531_RoMglogo_square.png", + "alternativeImage": "http://static.lolesports.com/teams/1669819076533_RoMglogo_square.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCK", + "region": "KOREA" + }, + "players": [] + }, + { + "id": "109433268912612144", + "slug": "startale", + "name": "StarTale", + "code": "STRR", + "image": "http://static.lolesports.com/teams/1669819152428_StarTalelogo_square.png", + "alternativeImage": "http://static.lolesports.com/teams/1669819152429_StarTalelogo_square.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCK", + "region": "KOREA" + }, + "players": [] + }, + { + "id": "109433273905559121", + "slug": "xenics-storm", + "name": "Xenics Storm", + "code": "XEN", + "image": "http://static.lolesports.com/teams/1669819229023_Xenics_Stormlogo_square.png", + "alternativeImage": "http://static.lolesports.com/teams/1669819229025_Xenics_Stormlogo_square.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCK", + "region": "KOREA" + }, + "players": [] + }, + { + "id": "109433282249406036", + "slug": "natus-vincere", + "name": "nav to be removed", + "code": "NATU", + "image": "http://static.lolesports.com/teams/1669819367116_Natus_Vincerelogo_square.png", + "alternativeImage": "http://static.lolesports.com/teams/1669819367116_Natus_Vincerelogo_square.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "109433285884058927", + "slug": "cj-entus", + "name": "CJ Entus", + "code": "CJE2", + "image": "http://static.lolesports.com/teams/1669819411958_CJ_Entuslogo_square.png", + "alternativeImage": "http://static.lolesports.com/teams/1669819411960_CJ_Entuslogo_square.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "LCK", + "region": "KOREA" + }, + "players": [] + }, + { + "id": "109433291821310771", + "slug": "incredible-miracle", + "name": "Incredible Miracle", + "code": "IMI", + "image": "http://static.lolesports.com/teams/1669819513266_Incredible_Miraclelogo_square.png", + "alternativeImage": "http://static.lolesports.com/teams/1669819513267_Incredible_Miraclelogo_square.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCK", + "region": "KOREA" + }, + "players": [] + }, + { + "id": "109433298088959282", + "slug": "mvp-blue", + "name": "MVP Blue", + "code": "MVPB", + "image": "http://static.lolesports.com/teams/1669819597769_MVPlogo_square.png", + "alternativeImage": "http://static.lolesports.com/teams/1669819597771_MVPlogo_square.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCK", + "region": "KOREA" + }, + "players": [] + }, + { + "id": "109433560521007990", + "slug": "kt-rolster-a", + "name": "KT Rolster A", + "code": "KTRA", + "image": "http://static.lolesports.com/teams/1669823602410_KT_Rolster_Arrowslogo_square.png", + "alternativeImage": "http://static.lolesports.com/teams/1669823602412_KT_Rolster_Arrowslogo_square.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCK", + "region": "KOREA" + }, + "players": [] + }, + { + "id": "109433561746989945", + "slug": "kt-rolster-a", + "name": "KT Rolster A", + "code": "KTRA", + "image": "http://static.lolesports.com/teams/1669823631957_KT_Rolster_Arrowslogo_square.png", + "alternativeImage": "http://static.lolesports.com/teams/1669823631957_KT_Rolster_Arrowslogo_square.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "LCK", + "region": "KOREA" + }, + "players": [] + }, + { + "id": "109433564373436062", + "slug": "kt-rolster-b", + "name": "KT Rolster B", + "code": "KTRB", + "image": "http://static.lolesports.com/teams/1669823671770_KT_Rolster_Bulletslogo_square.png", + "alternativeImage": "http://static.lolesports.com/teams/1669823671772_KT_Rolster_Bulletslogo_square.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCK", + "region": "KOREA" + }, + "players": [] + }, + { + "id": "109433567769813884", + "slug": "mvp-white", + "name": "MVP White", + "code": "MVPW", + "image": "http://static.lolesports.com/teams/1669823723700_MVPlogo_square.png", + "alternativeImage": "http://static.lolesports.com/teams/1669823723701_MVPlogo_square.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "LCK", + "region": "KOREA" + }, + "players": [] + }, + { + "id": "109433572697185762", + "slug": "team-op", + "name": "Team OP", + "code": "OPKR", + "image": "http://static.lolesports.com/teams/1669823799596_Team_OPlogo_square.png", + "alternativeImage": "http://static.lolesports.com/teams/1669823799596_Team_OPlogo_square.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCK", + "region": "KOREA" + }, + "players": [] + }, + { + "id": "109433585762223807", + "slug": "gsg", + "name": "GSG", + "code": "GSG", + "image": "http://static.lolesports.com/teams/1669823987395_Logo_square.png", + "alternativeImage": "http://static.lolesports.com/teams/1669823987396_Logo_square.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCK", + "region": "KOREA" + }, + "players": [] + }, + { + "id": "109433598304001524", + "slug": "mvp-ozone", + "name": "MVP Ozone", + "code": "MVPO", + "image": "http://static.lolesports.com/teams/1669824189405_MVPlogo_square.png", + "alternativeImage": "http://static.lolesports.com/teams/1669824189407_MVPlogo_square.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCK", + "region": "KOREA" + }, + "players": [] + }, + { + "id": "109433601930868405", + "slug": "cj-entus-blaze", + "name": "CJ Entus Blaze", + "code": "CJEB", + "image": "http://static.lolesports.com/teams/1669824234360_CJ_Entus_Blazelogo_square.png", + "alternativeImage": "http://static.lolesports.com/teams/1669824234361_CJ_Entus_Blazelogo_square.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCK", + "region": "KOREA" + }, + "players": [] + }, + { + "id": "109433603949467259", + "slug": "cj-entus-frost", + "name": "CJ Entus Frost", + "code": "CJEF", + "image": "http://static.lolesports.com/teams/1669824275700_CJ_Entus_Frostlogo_square.png", + "alternativeImage": "http://static.lolesports.com/teams/1669824275700_CJ_Entus_Frostlogo_square.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCK", + "region": "KOREA" + }, + "players": [] + }, + { + "id": "109433604634494658", + "slug": "cj-entus-frost", + "name": "CJ Entus Frost", + "code": "CJEF", + "image": "http://static.lolesports.com/teams/1669824286330_CJ_Entus_Frostlogo_square.png", + "alternativeImage": "http://static.lolesports.com/teams/1669824286331_CJ_Entus_Frostlogo_square.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "LCK", + "region": "KOREA" + }, + "players": [] + }, + { + "id": "109433612400465534", + "slug": "sk-telecom-t1-k", + "name": "SK Telecom T1 K", + "code": "SKTK", + "image": "http://static.lolesports.com/teams/1669925879855_SK_Telecom_T1_Klogo_square.png", + "alternativeImage": "http://static.lolesports.com/teams/1669925879857_SK_Telecom_T1_Klogo_square.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCK", + "region": "KOREA" + }, + "players": [] + }, + { + "id": "109433614661392001", + "slug": "sk-telecom-t1-s", + "name": "SK Telecom T1 S", + "code": "SKTS", + "image": "http://static.lolesports.com/teams/1669925625507_SK_Telecom_T1_Slogo_square.png", + "alternativeImage": "http://static.lolesports.com/teams/1669925625510_SK_Telecom_T1_Slogo_square.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCK", + "region": "KOREA" + }, + "players": [] + }, + { + "id": "109433621123982220", + "slug": "ahq-esports-club-korea", + "name": "ahq e-Sports Club Korea", + "code": "AHQK", + "image": "http://static.lolesports.com/teams/1669824538091_Ahq_e-Sports_Club_Korealogo_square.png", + "alternativeImage": "http://static.lolesports.com/teams/1669824538091_Ahq_e-Sports_Club_Korealogo_square.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCK", + "region": "KOREA" + }, + "players": [] + }, + { + "id": "109434431268593370", + "slug": "jin-air-green-wings-falcons", + "name": "Jin Air Green Wings Falcons", + "code": "JAGF", + "image": "http://static.lolesports.com/teams/1669836899652_Jin_Air_Green_Wings_Falconslogo_square.png", + "alternativeImage": "http://static.lolesports.com/teams/1669836899655_Jin_Air_Green_Wings_Falconslogo_square.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCK", + "region": "KOREA" + }, + "players": [] + }, + { + "id": "109434439982718685", + "slug": "jin-air-green-wings-stealths", + "name": "Jin Air Green Wings Stealths", + "code": "JAGS", + "image": "http://static.lolesports.com/teams/1669837021841_Jin_Air_Green_Wings_Stealthslogo_square.png", + "alternativeImage": "http://static.lolesports.com/teams/1669837021844_Jin_Air_Green_Wings_Stealthslogo_square.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCK", + "region": "KOREA" + }, + "players": [] + }, + { + "id": "109434445764151073", + "slug": "incredible-miracle-1", + "name": "Incredible Miracle 1", + "code": "IM1", + "image": "http://static.lolesports.com/teams/1669837109915_Incredible_Miracle_1logo_square.png", + "alternativeImage": "http://static.lolesports.com/teams/1669837109917_Incredible_Miracle_1logo_square.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCK", + "region": "KOREA" + }, + "players": [] + }, + { + "id": "109434447987220192", + "slug": "incredible-miracle-2", + "name": "Incredible Miracle 2", + "code": "IM2", + "image": "http://static.lolesports.com/teams/1669837154810_Incredible_Miracle_2logo_square.png", + "alternativeImage": "http://static.lolesports.com/teams/1669837154812_Incredible_Miracle_2logo_square.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCK", + "region": "KOREA" + }, + "players": [] + }, + { + "id": "109434452753434404", + "slug": "chunnam-techno-university", + "name": "Chunnam Techno University", + "code": "CTU", + "image": "http://static.lolesports.com/teams/1669837216506_Chunnam_Techno_Universitylogo_square.png", + "alternativeImage": "http://static.lolesports.com/teams/1669837216508_Chunnam_Techno_Universitylogo_square.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCK", + "region": "KOREA" + }, + "players": [] + }, + { + "id": "109434457468051171", + "slug": "mig-blitz", + "name": "MiG Blitz", + "code": "MIGB", + "image": "http://static.lolesports.com/teams/1669837288890_Maximum_impact_Gaminglogo_square.png", + "alternativeImage": "http://static.lolesports.com/teams/1669837288892_Maximum_impact_Gaminglogo_square.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCK", + "region": "KOREA" + }, + "players": [] + }, + { + "id": "109434460601435943", + "slug": "xenics-blast", + "name": "Xenics Blast", + "code": "XENB", + "image": "http://static.lolesports.com/teams/1669837347348_Xenics_Blastlogo_square.png", + "alternativeImage": "http://static.lolesports.com/teams/1669837347350_Xenics_Blastlogo_square.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCK", + "region": "KOREA" + }, + "players": [] + }, + { + "id": "109440268842976196", + "slug": "team-nb", + "name": "Team NB", + "code": "TNB", + "image": "http://static.lolesports.com/teams/1669925975468_Team_NBlogo_square.png", + "alternativeImage": "http://static.lolesports.com/teams/1669925975469_Team_NBlogo_square.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCK", + "region": "KOREA" + }, + "players": [] + }, + { + "id": "109440274044773601", + "slug": "alienware-arena", + "name": "Alienware Arena", + "code": "AWAR", + "image": "http://static.lolesports.com/teams/1669926053041_Alienware_Arenalogo_square.png", + "alternativeImage": "http://static.lolesports.com/teams/1669926053041_Alienware_Arenalogo_square.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCK", + "region": "KOREA" + }, + "players": [] + }, + { + "id": "109440276250313671", + "slug": "team-dark", + "name": "Team Dark", + "code": "DARK", + "image": "http://static.lolesports.com/teams/1669926087806_Team_Darklogo_square.png", + "alternativeImage": "http://static.lolesports.com/teams/1669926087808_Team_Darklogo_square.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCK", + "region": "KOREA" + }, + "players": [] + }, + { + "id": "109440604998801334", + "slug": "midas-fio", + "name": "Midas FIO", + "code": "FIO", + "image": "http://static.lolesports.com/teams/1669931103498_Midas_FIOlogo_square.png", + "alternativeImage": "http://static.lolesports.com/teams/1669931103500_Midas_FIOlogo_square.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCK", + "region": "KOREA" + }, + "players": [] + }, + { + "id": "109440615984318649", + "slug": "prime-optimus", + "name": "Prime Optimus", + "code": "PROP", + "image": "http://static.lolesports.com/teams/1669931260540_Prime_Clanlogo_square.png", + "alternativeImage": "http://static.lolesports.com/teams/1669931260542_Prime_Clanlogo_square.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCK", + "region": "KOREA" + }, + "players": [] + }, + { + "id": "109441042514622507", + "slug": "bigfile-miracle", + "name": "Bigfile Miracle", + "code": "BFM", + "image": "http://static.lolesports.com/teams/1669937769267_Bigfile_Miraclelogo_square.png", + "alternativeImage": "http://static.lolesports.com/teams/1669937769268_Bigfile_Miraclelogo_square.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCK", + "region": "KOREA" + }, + "players": [] + }, + { + "id": "109441048021768300", + "slug": "mkz", + "name": "MKZ", + "code": "MKZ", + "image": "http://static.lolesports.com/teams/1669937853608_MKZlogo_square.png", + "alternativeImage": "http://static.lolesports.com/teams/1669937853610_MKZlogo_square.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCK", + "region": "KOREA" + }, + "players": [] + }, + { + "id": "109444843754177827", + "slug": "najin-emfire", + "name": "NaJin e-mFire", + "code": "NJF", + "image": "http://static.lolesports.com/teams/1669995781823_NaJin_e-mFirelogo_square.png", + "alternativeImage": "http://static.lolesports.com/teams/1669995781826_NaJin_e-mFirelogo_square.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCK", + "region": "KOREA" + }, + "players": [] + }, + { + "id": "109445517809295862", + "slug": "rebels-anarchy", + "name": "Rebels Anarchy", + "code": "RANC", + "image": "http://static.lolesports.com/teams/1670006056703_Rebels_Anarchylogo_square.png", + "alternativeImage": "http://static.lolesports.com/teams/1670006056706_Rebels_Anarchylogo_square.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCK", + "region": "KOREA" + }, + "players": [] + }, + { + "id": "109446037338146283", + "slug": "esc-ever", + "name": "ESC Ever", + "code": "ESCX", + "image": "http://static.lolesports.com/teams/1670013984509_Everlogo_square.png", + "alternativeImage": "http://static.lolesports.com/teams/1670013984512_Everlogo_square.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCK", + "region": "KOREA" + }, + "players": [] + }, + { + "id": "109461235499082445", + "slug": "viv-esport", + "name": "VIV Esport", + "code": "VIV", + "image": "http://static.lolesports.com/teams/1670250037511_Logo512blanc_transparent1.png", + "alternativeImage": "http://static.lolesports.com/teams/1670250037514_Logo512violet_transparent1.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107450889281949878", + "summonerName": "Serendip", + "firstName": "Pierre-Olivier", + "lastName": "Massol", + "image": "http://static.lolesports.com/players/1639570452678_placeholder.png", + "role": "support" + }, + { + "id": "109483719396954096", + "summonerName": "MilanJ", + "firstName": "Morisot", + "lastName": "Jonas", + "image": "https://static.lolesports.com/players/download.png", + "role": "none" + }, + { + "id": "109483729184518158", + "summonerName": "Brosak", + "firstName": "Lesueur", + "lastName": "Arthur", + "image": "https://static.lolesports.com/players/download.png", + "role": "none" + }, + { + "id": "110588507543076957", + "summonerName": "Vulca", + "firstName": "RIGOT", + "lastName": "Mickaë", + "image": "http://static.lolesports.com/players/1687446698872_placeholder.png", + "role": "none" + }, + { + "id": "107065252624138593", + "summonerName": "Ludigite", + "firstName": " Théo", + "lastName": "Schirmann", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "105526891467157468", + "summonerName": "Numandiel", + "firstName": "Corentin", + "lastName": "Rostand", + "image": "http://static.lolesports.com/players/pobrane2.png", + "role": "none" + }, + { + "id": "110632557804012072", + "summonerName": "Kruppi", + "firstName": "Nicolas", + "lastName": "Dubosclard", + "image": "http://static.lolesports.com/players/1688118859240_silhouette_transparent.png", + "role": "none" + }, + { + "id": "110632562099894086", + "summonerName": "Tsuuki", + "firstName": "Alexis", + "lastName": "Gonéra", + "image": "http://static.lolesports.com/players/1688118925155_silhouette_transparent.png", + "role": "none" + }, + { + "id": "102181552668635791", + "summonerName": "Rozara", + "firstName": "Alexis", + "lastName": "Maslin", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/rozara-2md6pr2g.png", + "role": "none" + } + ] + }, + { + "id": "109474050293083908", + "slug": "dan-gaming", + "name": "DAN Gaming", + "code": "DAN", + "image": "http://static.lolesports.com/teams/1670441439611_DAN_Gaminglogo_square.webp", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LPL", + "region": "CHINA" + }, + "players": [ + { + "id": "112880372381731252", + "summonerName": "Ben01", + "firstName": "Ben", + "lastName": "Ben", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + } + ] + }, + { + "id": "109474070669389095", + "slug": "newbee", + "name": "Newbee", + "code": "NBE", + "image": "http://static.lolesports.com/teams/1670441750179_Newbeelogo_square.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LPL", + "region": "CHINA" + }, + "players": [] + }, + { + "id": "109474110193954090", + "slug": "snake-esports", + "name": "Snake Esports", + "code": "SS", + "image": "http://static.lolesports.com/teams/1670442352258_Snake_eSportslogo_square.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LPL", + "region": "CHINA" + }, + "players": [] + }, + { + "id": "109474127173168902", + "slug": "suning-", + "name": "Suning ", + "code": "SUN", + "image": "http://static.lolesports.com/teams/1670442612419_Suninglogo_square.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LPL", + "region": "CHINA" + }, + "players": [] + }, + { + "id": "109479004896756745", + "slug": "little-hippo", + "name": "Little Hippo", + "code": "LIHI", + "image": "http://static.lolesports.com/teams/1670517040275_Logo_square.png", + "alternativeImage": "http://static.lolesports.com/teams/1670517040276_Logo_square.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCK", + "region": "KOREA" + }, + "players": [] + }, + { + "id": "109479012466141929", + "slug": "ddol", + "name": "DDoL", + "code": "DDOL", + "image": "http://static.lolesports.com/teams/1670517155242_Logo_square.png", + "alternativeImage": "http://static.lolesports.com/teams/1670517155244_Logo_square.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCK", + "region": "KOREA" + }, + "players": [] + }, + { + "id": "109479017796600844", + "slug": "nel", + "name": "NeL", + "code": "NEL", + "image": "http://static.lolesports.com/teams/1670517237306_NeLlogo_square.png", + "alternativeImage": "http://static.lolesports.com/teams/1670517237308_NeLlogo_square.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCK", + "region": "KOREA" + }, + "players": [] + }, + { + "id": "109479028479733850", + "slug": "team-xd", + "name": "Team XD", + "code": "TEXD", + "image": "http://static.lolesports.com/teams/1670517389691_Team_XDlogo_square.png", + "alternativeImage": "http://static.lolesports.com/teams/1670517389694_Team_XDlogo_square.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCK", + "region": "KOREA" + }, + "players": [] + }, + { + "id": "109479033122852537", + "slug": "superstar", + "name": "SuperStar", + "code": "SUST", + "image": "http://static.lolesports.com/teams/1670517460472_SuperStarlogo_square.png", + "alternativeImage": "http://static.lolesports.com/teams/1670517460474_SuperStarlogo_square.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCK", + "region": "KOREA" + }, + "players": [] + }, + { + "id": "109479035816734347", + "slug": "neb", + "name": "NEB", + "code": "NEB", + "image": "http://static.lolesports.com/teams/1670517512429_NEBlogo_square.png", + "alternativeImage": "http://static.lolesports.com/teams/1670517512431_NEBlogo_square.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCK", + "region": "KOREA" + }, + "players": [] + }, + { + "id": "109479039613317213", + "slug": "team-hunters", + "name": "Team Hunters", + "code": "HUNT", + "image": "http://static.lolesports.com/teams/1670517559431_Team_Hunterslogo_square.png", + "alternativeImage": "http://static.lolesports.com/teams/1670517559432_Team_Hunterslogo_square.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCK", + "region": "KOREA" + }, + "players": [] + }, + { + "id": "109479053430169940", + "slug": "mig-frost", + "name": "MiG Frost", + "code": "MIGF", + "image": "http://static.lolesports.com/teams/1670517780937_Maximum_impact_Gaminglogo_square.png", + "alternativeImage": "http://static.lolesports.com/teams/1670517780940_Maximum_impact_Gaminglogo_square.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCK", + "region": "KOREA" + }, + "players": [] + }, + { + "id": "109479207820750520", + "slug": "mig-blaze", + "name": "MiG Blaze", + "code": "MIBL", + "image": "http://static.lolesports.com/teams/1670520125916_Maximum_impact_Gaminglogo_square.png", + "alternativeImage": "http://static.lolesports.com/teams/1670520125918_Maximum_impact_Gaminglogo_square.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCK", + "region": "KOREA" + }, + "players": [] + }, + { + "id": "109480056092207899", + "slug": "fluxo", + "name": "Fluxo", + "code": "FX", + "image": "http://static.lolesports.com/teams/1766161431111_LogoColorida.png", + "alternativeImage": "http://static.lolesports.com/teams/1766161431111_LogoColorida.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LTA South", + "region": "AMERICAS" + }, + "players": [ + { + "id": "103743600803050303", + "summonerName": "Hidan", + "firstName": "Leonardo", + "lastName": "Santos", + "image": "http://static.lolesports.com/players/1738737057609_image650.png", + "role": "top" + }, + { + "id": "111734845077420908", + "summonerName": "Marvin", + "firstName": "Vinicius", + "lastName": "Marvin", + "image": "http://static.lolesports.com/players/1753346273870_image6418.png", + "role": "bottom" + }, + { + "id": "107559338252333149", + "summonerName": "Fuuu", + "firstName": "Gabriel", + "lastName": "Furuuti", + "image": "http://static.lolesports.com/players/1753346355958_image6514.png", + "role": "mid" + }, + { + "id": "111734812721889388", + "summonerName": "curty", + "firstName": "Pedro", + "lastName": "Curty", + "image": "http://static.lolesports.com/players/1753345976145_image6120.png", + "role": "top" + }, + { + "id": "99566407784942056", + "summonerName": "Yampi", + "firstName": "Yan", + "lastName": "Petermann", + "image": "http://static.lolesports.com/players/1753346066427_image6218.png", + "role": "jungle" + }, + { + "id": "103478281332503056", + "summonerName": "ProDelta", + "firstName": "Fábio", + "lastName": "Marques", + "image": "http://static.lolesports.com/players/1753346165959_image6318.png", + "role": "support" + } + ] + }, + { + "id": "109480204628225868", + "slug": "los", + "name": "LOS", + "code": "LOS", + "image": "http://static.lolesports.com/teams/1686087430642_logo_los_white_newest.png", + "alternativeImage": "http://static.lolesports.com/teams/1686086748593_logo_los_black_new.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "CBLOL", + "region": "BRAZIL" + }, + "players": [ + { + "id": "112440396717068941", + "summonerName": " M G", + "firstName": "Jihoon", + "lastName": "Lee", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "107559327426244686", + "summonerName": "stiner", + "firstName": "Vinícius", + "lastName": "Corrêa", + "image": "http://static.lolesports.com/players/1717430292061_Stiner.png", + "role": "jungle" + }, + { + "id": "106274177506022087", + "summonerName": "SuperCleber", + "firstName": "Cleber", + "lastName": "Nantes", + "image": "http://static.lolesports.com/players/1717083988539_SuperCleber.png", + "role": "top" + }, + { + "id": "105397181199735591", + "summonerName": "Netuno", + "firstName": "Lucas", + "lastName": "Fensterseifer", + "image": "http://static.lolesports.com/players/1717433678618_Netuno.png", + "role": "bottom" + }, + { + "id": "114149022389365856", + "summonerName": "sanghyeon", + "firstName": "Jeong", + "lastName": "Sang-hyeon", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "103743617977630492", + "summonerName": "Aegis", + "firstName": "Gabriel", + "lastName": "Lemos", + "image": "http://static.lolesports.com/players/1737725725326_image634.png", + "role": "jungle" + } + ] + }, + { + "id": "109480205202104756", + "slug": "fla-los", + "name": "Fla Los Grandes", + "code": "FLW", + "image": "http://static.lolesports.com/teams/1671213565739_Cpiadelogo_0001_Forma-1.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "CBLOL", + "region": "BRAZIL" + }, + "players": [] + }, + { + "id": "109480209114770206", + "slug": "fla-lo", + "name": "Fla", + "code": "FLO", + "image": "http://static.lolesports.com/teams/1670535415295_triunfo_colorido.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "CBLOL", + "region": "BRAZIL" + }, + "players": [] + }, + { + "id": "109485335453835911", + "slug": "vivo-keyd-stars-academy", + "name": "Vivo Keyd Stars Academy", + "code": "VKS", + "image": "http://static.lolesports.com/teams/1670613637640_NAMINGRIGHTS-BRANCO.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Circuito Desafiante", + "region": "BRAZIL" + }, + "players": [ + { + "id": "110434225307697321", + "summonerName": "xyno", + "firstName": "Carlos ", + "lastName": "Ferreira", + "image": "http://static.lolesports.com/players/1754037624920_xyno.png", + "role": "top" + }, + { + "id": "105397295174824600", + "summonerName": "Qats", + "firstName": "Thiago", + "lastName": "Augusto", + "image": "http://static.lolesports.com/players/1754037546970_qats.png", + "role": "mid" + }, + { + "id": "103743593842085398", + "summonerName": "scamber", + "firstName": "Pedro", + "lastName": "Maximiniano", + "image": "http://static.lolesports.com/players/1754037601928_scamber.png", + "role": "support" + }, + { + "id": "112462312538183833", + "summonerName": "sarolu", + "firstName": "Victor", + "lastName": "Noguchi", + "image": "http://static.lolesports.com/players/1754037575571_sarolu.png", + "role": "jungle" + }, + { + "id": "105709404500072628", + "summonerName": "Kisee", + "firstName": "Van", + "lastName": "Vo", + "image": "http://static.lolesports.com/players/1754037520290_kise.png", + "role": "bottom" + }, + { + "id": "108604890149067024", + "summonerName": "Benvi", + "firstName": "Ben", + "lastName": "Moore", + "image": "http://static.lolesports.com/players/1754037485670_benvi.png", + "role": "support" + } + ] + }, + { + "id": "109485342651298305", + "slug": "fluxo-academy", + "name": "Fluxo Academy", + "code": "FX", + "image": "http://static.lolesports.com/teams/1670613746540_fluxo_escudo_w.png", + "alternativeImage": "http://static.lolesports.com/teams/1670613746543_fluxo_escudo_b.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "99566407773284844", + "summonerName": "SkyBart", + "firstName": "Mateus", + "lastName": "Neves", + "image": "http://static.lolesports.com/players/1717428591989_Skybart.png", + "role": "none" + }, + { + "id": "102135534311497703", + "summonerName": "Blacky", + "firstName": "Matheus", + "lastName": "Lessa", + "image": "http://static.lolesports.com/players/1717428405974_Blacky.png", + "role": "mid" + }, + { + "id": "105541438961192885", + "summonerName": "Samkz", + "firstName": "Samuel", + "lastName": "Pereira", + "image": "http://static.lolesports.com/players/1674155969954_Samkz-1copy.png", + "role": "jungle" + }, + { + "id": "106279007199957857", + "summonerName": "Juliera", + "firstName": "Julio", + "lastName": "Henrique", + "image": "http://static.lolesports.com/players/1717428359864_Juliera.png", + "role": "bottom" + }, + { + "id": "111743200748470171", + "summonerName": "Vinicin", + "firstName": "Vinicius", + "lastName": "Garcia", + "image": "http://static.lolesports.com/players/1718066387667_base.png", + "role": "top" + }, + { + "id": "106393510086922506", + "summonerName": "enel1", + "firstName": "Gustavo", + "lastName": "Hayashi", + "image": "http://static.lolesports.com/players/1717428544654_Enel.png", + "role": "jungle" + } + ] + }, + { + "id": "109485351596724390", + "slug": "los-academy", + "name": "LOS Academy", + "code": "LOS", + "image": "http://static.lolesports.com/teams/1686087482910_logo_los_white_newest.png", + "alternativeImage": "http://static.lolesports.com/teams/1686087482912_logo_los_black_new.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [] + }, + { + "id": "109500887042564775", + "slug": "team-du-sud", + "name": "Team du Sud", + "code": "TDS", + "image": "http://static.lolesports.com/teams/1704733612693_TDS.png", + "alternativeImage": "http://static.lolesports.com/teams/1671466673484_TDS.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "108328077069378479", + "summonerName": "BliZarD", + "firstName": "Varoß", + "lastName": "Nick", + "image": "http://static.lolesports.com/players/1652955270945_placeholder.png", + "role": "none" + }, + { + "id": "102174900418421846", + "summonerName": "Coldraa", + "firstName": "Samet", + "lastName": "Safran", + "image": "http://static.lolesports.com/players/DP_Coldraa.png", + "role": "bottom" + }, + { + "id": "99294153745917471", + "summonerName": "FEBIVEN", + "firstName": "Fabian", + "lastName": "Diepstraten", + "image": "http://static.lolesports.com/players/1674833681191_SKP_FEBIVEN.png", + "role": "mid" + }, + { + "id": "111624640858098878", + "summonerName": "MAT1", + "firstName": "Ponton", + "lastName": "Matéo", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + }, + { + "id": "105502730551080406", + "summonerName": "SLT", + "firstName": "Enzo", + "lastName": "Gonzales", + "image": "http://static.lolesports.com/players/VIT_SLT2021_summer.png", + "role": "none" + }, + { + "id": "103877658144870101", + "summonerName": "TynX", + "firstName": "Kristian", + "lastName": "Østergaard Hansen", + "image": "http://static.lolesports.com/players/SK_TYNX.png", + "role": "none" + }, + { + "id": "113091485688309434", + "summonerName": "Sixen", + "firstName": "Maxime", + "lastName": "Tchoroukian", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + }, + { + "id": "113091485778438525", + "summonerName": "Slipix", + "firstName": "Andreas", + "lastName": "Ergas", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + }, + { + "id": "99322214246040423", + "summonerName": "Innaxe", + "firstName": "Nihat ", + "lastName": "Aliev", + "image": "http://static.lolesports.com/players/1674124998033_Innaxe.png", + "role": "bottom" + }, + { + "id": "109508404012544750", + "summonerName": "LeoLeCargo", + "firstName": "Brunoni", + "lastName": "Léo", + "image": "http://static.lolesports.com/players/1670965636960_placeholder.png", + "role": "none" + }, + { + "id": "106302528293858788", + "summonerName": "marlon", + "firstName": "Igor", + "lastName": "Tomczyk", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "none" + }, + { + "id": "105520112147553289", + "summonerName": "Furuy", + "firstName": "Mike", + "lastName": "Wils", + "image": "http://static.lolesports.com/players/1744004170302_image6-2025-04-07T073550.688.png", + "role": "none" + } + ] + }, + { + "id": "109505831857517235", + "slug": "season-2023-kickoff", + "name": "Season 2023 Kickoff", + "code": "KOFF", + "image": "http://static.lolesports.com/teams/1670926370111_Nowyprojekt.png", + "alternativeImage": "http://static.lolesports.com/teams/1670926370113_Nowyprojekt.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "109505832873895013", + "slug": "season-2023-kickoff", + "name": "Season 2023 Kickoff", + "code": "KOFF", + "image": "http://static.lolesports.com/teams/1670926407651_Nowyprojekt.png", + "alternativeImage": "http://static.lolesports.com/teams/1670926407652_Nowyprojekt.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "109508365983748798", + "slug": "e-shonen", + "name": "Esprit Shonen", + "code": "ES", + "image": "http://static.lolesports.com/teams/1766136918134_CopyofLogo-ES-Flat.png", + "alternativeImage": "http://static.lolesports.com/teams/1766136918135_CopyofLogo-ES-Flat.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "La Ligue Française", + "region": "EMEA" + }, + "players": [] + }, + { + "id": "109516793793852866", + "slug": "akroma", + "name": "AKROMA", + "code": "AKR", + "image": "http://static.lolesports.com/teams/1671465878514_Risorsa10a.png", + "alternativeImage": "http://static.lolesports.com/teams/1671465878516_Risorsa14a.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "108404241877151289", + "summonerName": "Mafro", + "firstName": "Čorić", + "lastName": "Lovre", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "jungle" + }, + { + "id": "111624628006358201", + "summonerName": "BOOSHI", + "firstName": "Theo", + "lastName": "Mouchiroud", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "108396617387942762", + "summonerName": "Difference", + "firstName": "Khaled ", + "lastName": "Said", + "image": "http://static.lolesports.com/players/1654001112364_placeholder.png", + "role": "top" + }, + { + "id": "105700676882640978", + "summonerName": "Frappii", + "firstName": "Antonio", + "lastName": "Botezatu", + "image": "http://static.lolesports.com/players/silhouette.png", + "role": "bottom" + }, + { + "id": "111686460880326139", + "summonerName": "Zhangsid", + "firstName": "Gallis", + "lastName": "Sidney", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "109516864429303237", + "summonerName": "Senechou", + "firstName": "Sénéchal", + "lastName": "Thomas", + "image": "http://static.lolesports.com/players/1671094732215_placeholder.png", + "role": "none" + }, + { + "id": "107564691135260917", + "summonerName": "Abagnale", + "firstName": "Yusuf Semih", + "lastName": "Bilir", + "image": "http://static.lolesports.com/players/1705672234383_ABAGNALE.png", + "role": "support" + } + ] + }, + { + "id": "109517021237048444", + "slug": "klanik-esport", + "name": "Klanik Esport", + "code": "KE", + "image": "http://static.lolesports.com/teams/1671466206834_klanik_white.png", + "alternativeImage": "http://static.lolesports.com/teams/1671466206836_klanik_black.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "112048121126207724", + "summonerName": "Statiik", + "firstName": "Dylan", + "lastName": "TOUPENET", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + }, + { + "id": "107614607289871453", + "summonerName": "tooshi", + "firstName": "Nevelych ", + "lastName": "Oleksandr", + "image": "http://static.lolesports.com/players/1642068587542_placeholder.png", + "role": "jungle" + }, + { + "id": "109624149850225263", + "summonerName": "Xeltop", + "firstName": "Julien", + "lastName": "Lempereur", + "image": "http://static.lolesports.com/players/1675089866134_Xeltop.png", + "role": "mid" + }, + { + "id": "111686529822626255", + "summonerName": "Heinze", + "firstName": "Buy", + "lastName": "Grégory", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + }, + { + "id": "99566406042760186", + "summonerName": "Mojito", + "firstName": "Berk", + "lastName": "Kocaman", + "image": "http://static.lolesports.com/players/1705672305555_MOJITO.png", + "role": "jungle" + }, + { + "id": "105537229187376795", + "summonerName": "kibah", + "firstName": "Batuhan", + "lastName": "Kibar", + "image": "https://static.lolesports.com/players/download.png", + "role": "support" + }, + { + "id": "108443041070069258", + "summonerName": "Colden", + "firstName": "Recep", + "lastName": "Ilkin", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "support" + }, + { + "id": "113112605132714962", + "summonerName": "SwitRaptor", + "firstName": "Castillo", + "lastName": "Enzo", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "113112606200427478", + "summonerName": "Kimo", + "firstName": "Lefheir", + "lastName": "Kimo", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "112454744940975969", + "summonerName": "GTI", + "firstName": "Bouabdallah", + "lastName": "Imad Eddine", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + } + ] + }, + { + "id": "109523293035238887", + "slug": "aegis", + "name": "Aegis", + "code": "AEG", + "image": "http://static.lolesports.com/teams/1674127496933_AEGIS_logo_shield_yellow.png", + "alternativeImage": "http://static.lolesports.com/teams/1674127496935_AEGIS_logo_shield_yellow.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "La Ligue Française", + "region": "EMEA" + }, + "players": [ + { + "id": "105521456053870073", + "summonerName": "Nafkelah", + "firstName": "Andrija", + "lastName": "Kovačević", + "image": "https://static.lolesports.com/players/download.png", + "role": "mid" + }, + { + "id": "110428375437150775", + "summonerName": "Hid0", + "firstName": "Gian Miguel", + "lastName": "Caruana", + "image": "http://static.lolesports.com/players/1685003290636_placeholder.png", + "role": "bottom" + }, + { + "id": "111624513162454821", + "summonerName": "PollitoGX", + "firstName": "Bastoul", + "lastName": "Paul", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + }, + { + "id": "113074773090199519", + "summonerName": "APATHEIA", + "firstName": "Hugo", + "lastName": "Boukerrou", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + }, + { + "id": "99566405655227893", + "summonerName": "Naehyun", + "firstName": "Naehyun", + "lastName": "You", + "image": "http://static.lolesports.com/players/cga_naehyun.png", + "role": "mid" + } + ] + }, + { + "id": "109539675734129088", + "slug": "northern-lions-esports", + "name": "Northern Lions Esports", + "code": "NLE", + "image": "http://static.lolesports.com/teams/1671442801708_NorthernLionsEsports1.png", + "alternativeImage": "http://static.lolesports.com/teams/1671442801710_NorthernLionsEsports1.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "110467096336085013", + "summonerName": "Dusseldrop", + "firstName": "Timo ", + "lastName": "Dusseldorp", + "image": "http://static.lolesports.com/players/1685594119747_placeholder.png", + "role": "top" + }, + { + "id": "110467097878412456", + "summonerName": "Niton", + "firstName": "Piotr ", + "lastName": "Samołyk", + "image": "http://static.lolesports.com/players/1685594143402_placeholder.png", + "role": "jungle" + }, + { + "id": "109749151366449336", + "summonerName": "Aisu", + "firstName": "Guillaume", + "lastName": "Giroux", + "image": "http://static.lolesports.com/players/1674639152234_placeholder.png", + "role": "mid" + }, + { + "id": "110467101022652871", + "summonerName": "Space", + "firstName": "Simon ", + "lastName": "Bogaerts", + "image": "http://static.lolesports.com/players/1685594191275_placeholder.png", + "role": "bottom" + }, + { + "id": "110467102847568333", + "summonerName": "Baul", + "firstName": "Lucas ", + "lastName": "Westermark", + "image": "http://static.lolesports.com/players/1685594219446_placeholder.png", + "role": "support" + }, + { + "id": "110467105651263960", + "summonerName": "NOTTILTEDAD", + "firstName": "Joris ", + "lastName": "Maas", + "image": "http://static.lolesports.com/players/1685594261920_placeholder.png", + "role": "none" + }, + { + "id": "105526594415865451", + "summonerName": "DrSaw", + "firstName": "Brilman", + "lastName": "Tom", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "none" + } + ] + }, + { + "id": "109539776003058530", + "slug": "alior-bank-team", + "name": "Alior Bank Team", + "code": "AB", + "image": "http://static.lolesports.com/teams/1672414472041_TtChFUe.png", + "alternativeImage": "http://static.lolesports.com/teams/1672414472043_TtChFUe.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "105655995799330206", + "summonerName": "svns", + "firstName": "Damian", + "lastName": "Klejc", + "image": "http://static.lolesports.com/players/placeholder.png", + "role": "bottom" + }, + { + "id": "109672133313171617", + "summonerName": "Jacob1", + "firstName": "Jakub", + "lastName": "Przewożniczuk", + "image": "https://static.lolesports.com/players/download.png", + "role": "none" + } + ] + }, + { + "id": "109539873500788632", + "slug": "exeed", + "name": "EXEED", + "code": "EXD", + "image": "http://static.lolesports.com/teams/1671445824041_8gXMrAS.png", + "alternativeImage": "http://static.lolesports.com/teams/1671445824041_8gXMrAS.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "110378594503521823", + "summonerName": "Shelfmade", + "firstName": "Francesco", + "lastName": "Cardia", + "image": "http://static.lolesports.com/players/1684243687680_placeholder.png", + "role": "top" + }, + { + "id": "110378596829382151", + "summonerName": "Roshan", + "firstName": "Roshan", + "lastName": "Visser", + "image": "http://static.lolesports.com/players/1684243723322_placeholder.png", + "role": "jungle" + }, + { + "id": "107648411781760623", + "summonerName": "Vigil", + "firstName": "Matteo Ugo", + "lastName": "Scarcelli", + "image": "http://static.lolesports.com/players/1642584405077_placeholder.png", + "role": "mid" + }, + { + "id": "103890014776920379", + "summonerName": "Endz", + "firstName": "Lauri ", + "lastName": "Tarkus", + "image": "http://static.lolesports.com/players/1642067830481_placeholder.png", + "role": "bottom" + }, + { + "id": "101389608247181162", + "summonerName": "Mystiques", + "firstName": "Patryk ", + "lastName": "Piórkowski", + "image": "http://static.lolesports.com/players/eg-mystiques.png", + "role": "support" + }, + { + "id": "110378605172354952", + "summonerName": "Dusty", + "firstName": "Jan", + "lastName": "Szaryński", + "image": "http://static.lolesports.com/players/1684243850325_placeholder.png", + "role": "none" + } + ] + }, + { + "id": "109546405520674816", + "slug": "red-canids", + "name": "RED Canids", + "code": "RED", + "image": "http://static.lolesports.com/teams/1671545496840_RED_Canidslogo_square.webp", + "alternativeImage": null, + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "CBLOL", + "region": "BRAZIL" + }, + "players": [] + }, + { + "id": "109546440407259617", + "slug": "netshoes-miners", + "name": "Netshoes Miners", + "code": "NMR", + "image": "http://static.lolesports.com/teams/1671546025979_Netshoes_Minerslogo_square.webp", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "CBLOL", + "region": "BRAZIL" + }, + "players": [] + }, + { + "id": "109546454744373732", + "slug": "rensga-esports", + "name": "Rensga eSports", + "code": "RNS", + "image": "http://static.lolesports.com/teams/1671546244001_index.jpg", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "CBLOL", + "region": "BRAZIL" + }, + "players": [] + }, + { + "id": "109546466354141671", + "slug": "flamengo-mdl", + "name": "FLAMENGO Redragon", + "code": "FLA", + "image": "http://static.lolesports.com/teams/1741770712987_LOGOFLAESPORTSCRFVERMELHA.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Circuito Desafiante", + "region": "BRAZIL" + }, + "players": [ + { + "id": "107560059495150409", + "summonerName": "Makes", + "firstName": "Gabriel", + "lastName": "Nemeth", + "image": "http://static.lolesports.com/players/1717083753013_Makes.png", + "role": "top" + }, + { + "id": "108395446902093389", + "summonerName": "Dizin", + "firstName": "Ronald", + "lastName": "Paula", + "image": "http://static.lolesports.com/players/1717432686851_Dizin.png", + "role": "jungle" + }, + { + "id": "99566407784212776", + "summonerName": "Envy", + "firstName": "Bruno", + "lastName": "Farias", + "image": "http://static.lolesports.com/players/1717084089082_Envy.png", + "role": "mid" + }, + { + "id": "103743620262608671", + "summonerName": "Trigo", + "firstName": "Matheus", + "lastName": "Nobrega", + "image": "http://static.lolesports.com/players/1717078998934_Trigo.png", + "role": "bottom" + }, + { + "id": "100205576297917527", + "summonerName": "Damage", + "firstName": "Yan", + "lastName": "Sales", + "image": "http://static.lolesports.com/players/1717074268756_Damage.png", + "role": "support" + }, + { + "id": "107560357748334767", + "summonerName": "NinjaKiwi", + "firstName": "Yudi", + "lastName": "Miyashiro", + "image": "http://static.lolesports.com/players/1717073880627_Ninjakiwi.png", + "role": "bottom" + } + ] + }, + { + "id": "109546467641441355", + "slug": "flamengo-esports", + "name": "Flamengo Esports", + "code": "FLA", + "image": "http://static.lolesports.com/teams/1671546441165_index.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "CBLOL", + "region": "BRAZIL" + }, + "players": [] + }, + { + "id": "109616997617643584", + "slug": "cnb-esports-club", + "name": "CNB eSports Club", + "code": "CNBE", + "image": "http://static.lolesports.com/teams/1672622642052_CNB_e-Sports_Clublogo_square.webp", + "alternativeImage": null, + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "CBLOL", + "region": "BRAZIL" + }, + "players": [] + }, + { + "id": "109617035464178634", + "slug": "operation-kino-esports", + "name": "Operation Kino Esports", + "code": "OPK", + "image": "http://static.lolesports.com/teams/1672623219362_Operation_Kino_e-Sportslogo_square.webp", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "CBLOL", + "region": "BRAZIL" + }, + "players": [] + }, + { + "id": "109617071162331486", + "slug": "brave-esports", + "name": "Brave eSports", + "code": "REMO", + "image": "http://static.lolesports.com/teams/1672623763879_Brave_e-Sportslogo_square.webp", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "CBLOL", + "region": "BRAZIL" + }, + "players": [] + }, + { + "id": "109625133369667957", + "slug": "dkb-diamonds", + "name": "DKB Diamonds", + "code": "DKB", + "image": "http://static.lolesports.com/teams/1672746775721_DKB.png", + "alternativeImage": "http://static.lolesports.com/teams/1672746775723_DKB.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "109625218695566013", + "slug": "austrian-force-willhaben", + "name": "Austrian Force willhaben", + "code": "AFW", + "image": "http://static.lolesports.com/teams/1672748081910_AFW.png", + "alternativeImage": "http://static.lolesports.com/teams/1672748081913_AFW.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Prime League", + "region": "EMEA" + }, + "players": [ + { + "id": "105503955410413696", + "summonerName": "D4nKa", + "firstName": "Daniel", + "lastName": "Golzmann", + "image": "http://static.lolesports.com/players/placeholder.png", + "role": "jungle" + }, + { + "id": "107915297028615686", + "summonerName": "Nano", + "firstName": "Gurjot ", + "lastName": "Singh", + "image": "http://static.lolesports.com/players/1646656748076_placeholder.png", + "role": "mid" + }, + { + "id": "103935377160301900", + "summonerName": "HungryPanda", + "firstName": "Nikos ", + "lastName": "Nikolaidis", + "image": "https://static.lolesports.com/players/download.png", + "role": "support" + }, + { + "id": "114811773448109999", + "summonerName": "Ally", + "firstName": "Ryan", + "lastName": "Richardson", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "106466542935818153", + "summonerName": "Kenal", + "firstName": "Michael ", + "lastName": "Karpenko", + "image": "http://static.lolesports.com/players/1644407030168_Kenal_784x621.png", + "role": "support" + }, + { + "id": "114811775940884531", + "summonerName": "SwiT", + "firstName": "Enzo", + "lastName": "Castillo", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "111726908686284128", + "summonerName": "Denizzz", + "firstName": "Egedeniz", + "lastName": "Mutlu", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "108396645207996267", + "summonerName": "Deletus", + "firstName": "Christoph ", + "lastName": "Steib", + "image": "http://static.lolesports.com/players/1654001536001_placeholder.png", + "role": "jungle" + } + ] + }, + { + "id": "109625314113862010", + "slug": "epic-dudes", + "name": "EPIC DUDES", + "code": "ED", + "image": "http://static.lolesports.com/teams/1672749539009_ED.png", + "alternativeImage": "http://static.lolesports.com/teams/1672749539011_ED.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "109625286200537513", + "summonerName": "Mind", + "firstName": "Louis", + "lastName": "Maßmann", + "image": "http://static.lolesports.com/players/1672749117308_placeholder.png", + "role": "bottom" + }, + { + "id": "107616309358161126", + "summonerName": "Bambii", + "firstName": "Nils", + "lastName": "Hillerkus", + "image": "http://static.lolesports.com/players/1642094559472_placeholder.png", + "role": "jungle" + }, + { + "id": "108630313983158065", + "summonerName": "Raiin", + "firstName": "Fabian", + "lastName": "Prenzel", + "image": "https://static.lolesports.com/players/download.png", + "role": "top" + }, + { + "id": "113147585504218853", + "summonerName": "MrOregano", + "firstName": "Robert", + "lastName": "Rüsch", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "105536889326832722", + "summonerName": "Sky0", + "firstName": "David", + "lastName": "Koppmann", + "image": "https://static.lolesports.com/players/download.png", + "role": "top" + }, + { + "id": "113147588990735830", + "summonerName": "Lxf7Tocke", + "firstName": "Jonas", + "lastName": "Tjärnemo", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "110441581877577753", + "summonerName": "Kritias", + "firstName": "ROBIN", + "lastName": "MAY", + "image": "http://static.lolesports.com/players/1685204801998_placeholder.png", + "role": "top" + }, + { + "id": "108373613137108369", + "summonerName": "Nasut", + "firstName": "Łukasz", + "lastName": "Nasutowicz", + "image": "http://static.lolesports.com/players/1653650096721_placeholder.png", + "role": "jungle" + }, + { + "id": "105521429198907770", + "summonerName": "Ivok", + "firstName": "Romanos", + "lastName": "Kasinopoulos", + "image": "http://static.lolesports.com/players/download.png", + "role": "mid" + }, + { + "id": "112445298018000000", + "summonerName": "Staargazing", + "firstName": "Kurt", + "lastName": "Axer", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "106306491855302843", + "summonerName": "Dunks ARCH", + "firstName": "Julien ", + "lastName": "Pelege", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "top" + } + ] + }, + { + "id": "109631317393940774", + "slug": "tomorrow-esportsss", + "name": "Tomorrow Esports", + "code": "TMRR", + "image": "http://static.lolesports.com/teams/1672841139734_LOLESPORTSICON.png", + "alternativeImage": "http://static.lolesports.com/teams/1672841139736_LOLESPORTSICON.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "109631384857525105", + "summonerName": "Stellar3", + "firstName": "Francisco Antonio", + "lastName": "Taba Hueramo", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "top" + }, + { + "id": "107648370969609784", + "summonerName": "Strensh", + "firstName": "Cristopher", + "lastName": "Gonzalez", + "image": "http://static.lolesports.com/players/1660238650077_EMP.png", + "role": "mid" + }, + { + "id": "104327495319314020", + "summonerName": "Demy", + "firstName": "Iván", + "lastName": "Maldonado", + "image": "http://static.lolesports.com/players/1704993032777_EMP.png", + "role": "bottom" + }, + { + "id": "108288448051739774", + "summonerName": "chilD", + "firstName": "Jairo Natanael Moises", + "lastName": "Fuenzalida Aravena", + "image": "http://static.lolesports.com/players/1652350587082_placeholder.png", + "role": "support" + }, + { + "id": "106467867233083165", + "summonerName": "Shintalx", + "firstName": "Alejandro", + "lastName": "Quintanilla", + "image": "http://static.lolesports.com/players/1626803009164_EST-Shintalx-July.png", + "role": "mid" + } + ] + }, + { + "id": "109631326144414089", + "slug": "19-esports", + "name": "19 Esports", + "code": "19", + "image": "http://static.lolesports.com/teams/1676650219088_19-Esports-1.png", + "alternativeImage": "http://static.lolesports.com/teams/1676650219089_19-Esports-1.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "108121084685063378", + "summonerName": "EpicReaper", + "firstName": "Alberto Gómez Suárez", + "lastName": "Carlos Alberto ", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "support" + } + ] + }, + { + "id": "109631541326560210", + "slug": "reven-esports", + "name": "Reven Esports", + "code": "RVN", + "image": "http://static.lolesports.com/teams/1676650253276_REVEN-4.png", + "alternativeImage": "http://static.lolesports.com/teams/1676650253277_REVEN-4.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LLA", + "region": "LATIN AMERICA" + }, + "players": [ + { + "id": "109631369842113369", + "summonerName": "FourLink", + "firstName": "Hernández Chilpa", + "lastName": "Alan", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "top" + }, + { + "id": "109631369981141297", + "summonerName": "Chevis", + "firstName": "de los Monteros Barrera", + "lastName": "Sebastian Espinosa", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "jungle" + }, + { + "id": "108018681552334695", + "summonerName": "Flacoyo", + "firstName": "Díaz Rosales", + "lastName": "Dante Alejandro", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "mid" + }, + { + "id": "109631384742273359", + "summonerName": "Dantee", + "firstName": "José Nicolás", + "lastName": "España Enríquez", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "bottom" + }, + { + "id": "109631370429011346", + "summonerName": "Toayin", + "firstName": "Morfin Ruiz", + "lastName": "Victor Manuel", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "support" + }, + { + "id": "109631370554319158", + "summonerName": "Zhayed", + "firstName": "Roldan Andrade", + "lastName": "Julio Cesar", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "top" + }, + { + "id": "107582073436948324", + "summonerName": "Shakaa", + "firstName": "Javier", + "lastName": "Ventura Díaz", + "image": "http://static.lolesports.com/players/1641572154266_placeholder.png", + "role": "bottom" + }, + { + "id": "108293890301687316", + "summonerName": "Sight", + "firstName": "Diego Emilio", + "lastName": "Vela Serrano", + "image": "http://static.lolesports.com/players/1652433626967_placeholder.png", + "role": "support" + } + ] + }, + { + "id": "109631610813971977", + "slug": "mezexis-esports", + "name": "Mezexis Esports", + "code": "MZS", + "image": "http://static.lolesports.com/teams/1676652274797_MEZEXIS-B.png", + "alternativeImage": "http://static.lolesports.com/teams/1676652274801_MEZEXIS-N.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "99566405793083799", + "summonerName": "Straight", + "firstName": "Roberto", + "lastName": "Guallichico ", + "image": "http://static.lolesports.com/players/1643048065147_Straight-4.png", + "role": "top" + }, + { + "id": "107582298236766491", + "summonerName": "Guachi", + "firstName": "Caonabo Fernando Gregorio", + "lastName": "Javier Hasbun", + "image": "http://static.lolesports.com/players/1641575591514_placeholder.png", + "role": "top" + }, + { + "id": "109631667286671856", + "summonerName": "XuWei", + "firstName": "Ng Feng", + "lastName": "Andy Felix", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "jungle" + }, + { + "id": "99566408547374943", + "summonerName": "Xuradel", + "firstName": "Luis", + "lastName": "Escobar ", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/xuradel-6tfxrosm.png", + "role": "mid" + }, + { + "id": "109631667591086580", + "summonerName": "Kastiel", + "firstName": "Guerrero Polanco", + "lastName": "Sócrates Danilo", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "bottom" + }, + { + "id": "103658484589825792", + "summonerName": "MadBlade", + "firstName": "Steven", + "lastName": "Araya", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/madblade-4sae9a1k.png", + "role": "support" + }, + { + "id": "109631667879810723", + "summonerName": "Alaan", + "firstName": "Garza Cortina", + "lastName": "Alan Eduardo", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "support" + }, + { + "id": "107581888518342292", + "summonerName": "Blindwalker", + "firstName": "Luis Alfredo", + "lastName": "Avendaño Tobal", + "image": "http://static.lolesports.com/players/1641569332027_placeholder.png", + "role": "support" + }, + { + "id": "107582819776580414", + "summonerName": "Gonti", + "firstName": "Stephano", + "lastName": "Zurita Chavez", + "image": "http://static.lolesports.com/players/1641583550119_placeholder.png", + "role": "top" + } + ] + }, + { + "id": "109631614501223948", + "slug": "war-legion-esports", + "name": "War Legion Esports", + "code": "WLE", + "image": "http://static.lolesports.com/teams/1676652310209_WAR-LEGION-B.png", + "alternativeImage": "http://static.lolesports.com/teams/1676652310211_WAR-LEGION.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107581899823533076", + "summonerName": "Kutarra", + "firstName": "Gerardo Arnulfo", + "lastName": "Madrid Betancourt", + "image": "http://static.lolesports.com/players/1641569505834_placeholder.png", + "role": "mid" + }, + { + "id": "107582281843394797", + "summonerName": "Sunriser", + "firstName": "Yan Gabriel", + "lastName": "Santiago Ayala", + "image": "http://static.lolesports.com/players/1641575340406_placeholder.png", + "role": "jungle" + }, + { + "id": "108121092939322666", + "summonerName": "Onier", + "firstName": "Hernandez Gomez", + "lastName": "Onier Menaldo", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "support" + }, + { + "id": "109631670334422547", + "summonerName": "Tuercas", + "firstName": "Izaguirre Castillo", + "lastName": "Khenmelt Omar", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "top" + }, + { + "id": "107581965653265494", + "summonerName": "Jean", + "firstName": "Jean Carlos", + "lastName": "Ortega Palma", + "image": "http://static.lolesports.com/players/1641570510465_placeholder.png", + "role": "jungle" + }, + { + "id": "109631670819734085", + "summonerName": "Redstratos", + "firstName": "Howell", + "lastName": "Josiah", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "bottom" + }, + { + "id": "107582075083999128", + "summonerName": "FREDEAD", + "firstName": "James Feliciano", + "lastName": "Perez", + "image": "http://static.lolesports.com/players/1641572180568_placeholder.png", + "role": "support" + }, + { + "id": "109631671083409940", + "summonerName": "Gabylidades", + "firstName": "Rosa Carrion", + "lastName": "Gabriel L.", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "support" + }, + { + "id": "109631671202397190", + "summonerName": "Serah", + "firstName": "Dayarse Lagunes", + "lastName": "Gloria Yaknoli", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "support" + } + ] + }, + { + "id": "109637391361582335", + "slug": "koi", + "name": "KOI", + "code": "KOI", + "image": "http://static.lolesports.com/teams/1672933825498_KOI_29logo_square.webp", + "alternativeImage": "http://static.lolesports.com/teams/1672933825498_KOI_29logo_square.webp", + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "LEC", + "region": "EMEA" + }, + "players": [ + { + "id": "112880372381731252", + "summonerName": "Ben01", + "firstName": "Ben", + "lastName": "Ben", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + } + ] + }, + { + "id": "109637393694097670", + "slug": "team-heretics-lec", + "name": "Team Heretics", + "code": "TH", + "image": "http://static.lolesports.com/teams/1672933861879_Heretics-Full-Color.png", + "alternativeImage": "http://static.lolesports.com/teams/1672933861879_Heretics-Full-Color.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LEC", + "region": "EMEA" + }, + "players": [ + { + "id": "105646098955896397", + "summonerName": "Carlsen", + "firstName": "Carl Ulsted", + "lastName": "Carlsen", + "image": "http://static.lolesports.com/players/1754474144629_image6136.png", + "role": "top" + }, + { + "id": "105830645287286396", + "summonerName": "Sheo", + "firstName": "Théo", + "lastName": "Borile", + "image": "http://static.lolesports.com/players/1754474454514_image6527.png", + "role": "jungle" + }, + { + "id": "109508394902229719", + "summonerName": "Kamiloo", + "firstName": "Haudegond", + "lastName": "Kamil", + "image": "http://static.lolesports.com/players/1754474328747_image6428.png", + "role": "mid" + }, + { + "id": "107462755349678558", + "summonerName": "Stend", + "firstName": "Paul", + "lastName": "Lardin", + "image": "http://static.lolesports.com/players/1754474542542_image6614.png", + "role": "support" + }, + { + "id": "103461966879623046", + "summonerName": "Flakked", + "firstName": "Victor ", + "lastName": "Lirola", + "image": "http://static.lolesports.com/players/1754474220170_image6232.png", + "role": "bottom" + } + ] + }, + { + "id": "109642680932009857", + "slug": "nord-esports", + "name": "NORD Esports", + "code": "NORD", + "image": "http://static.lolesports.com/teams/1736207563796_NORD1.png", + "alternativeImage": "http://static.lolesports.com/teams/1736207563796_NORD1.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "NLC", + "region": "EMEA" + }, + "players": [ + { + "id": "101422616391248613", + "summonerName": "Zwyroo", + "firstName": "Artur", + "lastName": "Trojan", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/zwyroo-gwwkccjm.png", + "role": "mid" + }, + { + "id": "110428375437150775", + "summonerName": "Hid0", + "firstName": "Gian Miguel", + "lastName": "Caruana", + "image": "http://static.lolesports.com/players/1685003290636_placeholder.png", + "role": "bottom" + }, + { + "id": "101383793865143549", + "summonerName": "Treatz", + "firstName": "Erik", + "lastName": "Wessén", + "image": "http://static.lolesports.com/players/1687315671242_IMT_TREATZ.png", + "role": "support" + }, + { + "id": "99124844325223302", + "summonerName": "Jankos", + "firstName": "Marcin", + "lastName": "Jankowski", + "image": "http://static.lolesports.com/players/1705027140986_jankos.png", + "role": "jungle" + }, + { + "id": "99322214604295671", + "summonerName": "Vizicsacsi", + "firstName": "Tamás", + "lastName": "Kiss", + "image": "http://static.lolesports.com/players/1674835723473_BIG_Vizicsacsi.png", + "role": "top" + }, + { + "id": "107803429645411753", + "summonerName": "MicheI", + "firstName": "Michel", + "lastName": "Klepper", + "image": "http://static.lolesports.com/players/1644949793230_placeholder.png", + "role": "mid" + }, + { + "id": "107961349823517388", + "summonerName": "Viggo", + "firstName": "Viggo", + "lastName": "Lindhe", + "image": "http://static.lolesports.com/players/1647359459894_placeholder.png", + "role": "top" + } + ] + }, + { + "id": "109642690191894407", + "slug": "ruddy", + "name": "Ruddy", + "code": "RUD", + "image": "http://static.lolesports.com/teams/1736207507475_RUD1.png", + "alternativeImage": "http://static.lolesports.com/teams/1736207507475_RUD1.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "NLC", + "region": "EMEA" + }, + "players": [ + { + "id": "106306510587502378", + "summonerName": "Hypa", + "firstName": "Callum ", + "lastName": "Wood", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "none" + }, + { + "id": "114850559987635604", + "summonerName": "DonJake", + "firstName": "Jake", + "lastName": "Morley", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "none" + }, + { + "id": "114850560056972696", + "summonerName": "Congolese", + "firstName": "Manny", + "lastName": "Lolingo", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "none" + }, + { + "id": "114850560132929488", + "summonerName": "Gtracks", + "firstName": "Mohammed", + "lastName": "Boukerma", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "none" + }, + { + "id": "114850560197219741", + "summonerName": "Hydraa", + "firstName": "Bilal", + "lastName": "Jaghori", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "none" + } + ] + }, + { + "id": "109659605433134424", + "slug": "domino-computer", + "name": "Domino Computer", + "code": "DCT", + "image": "http://static.lolesports.com/teams/1673272782034_LOLESPORTSICON.png", + "alternativeImage": "http://static.lolesports.com/teams/1673272782036_LOLESPORTSICON.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "109659419264599441", + "summonerName": "gaucho", + "firstName": "Targosz", + "lastName": "Kacper", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "top" + }, + { + "id": "109659419402685285", + "summonerName": "SloPp", + "firstName": "Krzesiński", + "lastName": "Adam", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "support" + }, + { + "id": "108617181773969817", + "summonerName": "Bananiasty", + "firstName": "Jakub", + "lastName": "Banasiak", + "image": "https://static.lolesports.com/players/download.png", + "role": "jungle" + }, + { + "id": "106302525904154080", + "summonerName": "Dawidsonek", + "firstName": "Dawid", + "lastName": "Trojanowski", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "mid" + }, + { + "id": "107599671450719969", + "summonerName": "Herod", + "firstName": "Grzegorz", + "lastName": "Rajpold", + "image": "http://static.lolesports.com/players/1641840686582_placeholder.png", + "role": "support" + }, + { + "id": "110411928762294823", + "summonerName": "Klorell", + "firstName": "Michał", + "lastName": "Drobek", + "image": "http://static.lolesports.com/players/1684752328166_placeholder.png", + "role": "bottom" + }, + { + "id": "109659420135033737", + "summonerName": "xHauzen", + "firstName": "Ciechura", + "lastName": "Bartłomiej", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "jungle" + }, + { + "id": "110702084401729432", + "summonerName": "Tamlol", + "firstName": "Oskar", + "lastName": "Tutaj", + "image": "http://static.lolesports.com/players/1689179745925_placeholder.png", + "role": "none" + } + ] + }, + { + "id": "109659607628197211", + "slug": "lotus-gaming", + "name": "Lotus Gaming", + "code": "LTG", + "image": "http://static.lolesports.com/teams/1673272815751_LOLESPORTSICON.png", + "alternativeImage": "http://static.lolesports.com/teams/1673272815752_LOLESPORTSICON.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "110412063368508083", + "summonerName": "Certified", + "firstName": "Marcus", + "lastName": "Elvelund", + "image": "http://static.lolesports.com/players/1684754381652_placeholder.png", + "role": "bottom" + }, + { + "id": "108396076653148295", + "summonerName": "Sentherus", + "firstName": "Ivan", + "lastName": "Ivanov", + "image": "http://static.lolesports.com/players/1653992863338_placeholder.png", + "role": "jungle" + } + ] + }, + { + "id": "109659649070697559", + "slug": "europe-saviors-club", + "name": "Europe Saviors Club", + "code": "EUS", + "image": "http://static.lolesports.com/teams/1705300097548_HM_EUS_Color.png", + "alternativeImage": "http://static.lolesports.com/teams/1705300097549_HM_EUS_Color.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Hitpoint Masters", + "region": "EMEA" + }, + "players": [ + { + "id": "107156537708909439", + "summonerName": "mumek", + "firstName": "Paweł", + "lastName": "Janiak", + "image": "http://static.lolesports.com/players/1635079001671_placeholder.jpg", + "role": "bottom" + }, + { + "id": "111758893170435165", + "summonerName": "Melekx", + "firstName": "Symeon", + "lastName": "Smejkal", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "110412278495486824", + "summonerName": "Amarizo", + "firstName": "Knjazev", + "lastName": "Aleksei", + "image": "http://static.lolesports.com/players/1684757664623_placeholder.png", + "role": "mid" + } + ] + }, + { + "id": "109659653201120243", + "slug": "elementalist", + "name": "Elementalist", + "code": "ELE", + "image": "http://static.lolesports.com/teams/1673273510741_LOLESPORTSICON.png", + "alternativeImage": "http://static.lolesports.com/teams/1673273510743_LOLESPORTSICON.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107603058401698253", + "summonerName": "Orzecz", + "firstName": "Mateusz", + "lastName": "Donocik", + "image": "http://static.lolesports.com/players/1641892367558_placeholder.png", + "role": "none" + }, + { + "id": "108353502142550905", + "summonerName": "Ravenno", + "firstName": "Owczarski", + "lastName": "Michał", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + }, + { + "id": "109659425436440670", + "summonerName": "acze8", + "firstName": "Ziętara", + "lastName": "Patryk", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + }, + { + "id": "109659425746750393", + "summonerName": "Raifter", + "firstName": "Stasiak", + "lastName": "Kamil", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + } + ] + }, + { + "id": "109659655426775224", + "slug": "ak2", + "name": "AH2", + "code": "AH2", + "image": "http://static.lolesports.com/teams/1673273544967_LOLESPORTSICON.png", + "alternativeImage": "http://static.lolesports.com/teams/1673273544968_LOLESPORTSICON.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107599563206909681", + "summonerName": "BartekToJa", + "firstName": "Bartosz", + "lastName": "Ignasiak", + "image": "http://static.lolesports.com/players/1641839034766_placeholder.png", + "role": "none" + }, + { + "id": "109659427379791265", + "summonerName": "Lewus", + "firstName": "Strykowski", + "lastName": "Wojciech", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + }, + { + "id": "109659427518270373", + "summonerName": "Nzq", + "firstName": "Burczyk", + "lastName": "Robert", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + }, + { + "id": "109659427647991069", + "summonerName": "POUfnyy", + "firstName": "Filip", + "lastName": "Grabek", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + }, + { + "id": "109659427777463719", + "summonerName": "VVarion", + "firstName": "Pieńkosz", + "lastName": "Mateusz", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + }, + { + "id": "109659427896282032", + "summonerName": "Wada", + "firstName": "Cep", + "lastName": "Filip", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + }, + { + "id": "109672126557027499", + "summonerName": "Jafar", + "firstName": "Jafar", + "lastName": "Hamrouche", + "image": "https://static.lolesports.com/players/download.png", + "role": "none" + } + ] + }, + { + "id": "109668849651338559", + "slug": "fennel", + "name": "FENNEL", + "code": "FL", + "image": "http://static.lolesports.com/teams/1673413831349_fl.png", + "alternativeImage": "http://static.lolesports.com/teams/1673413831351_fl.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LJL", + "region": "JAPAN" + }, + "players": [ + { + "id": "101388913286565299", + "summonerName": "TaNa", + "firstName": "Sanguk", + "lastName": "Lee", + "image": "http://static.lolesports.com/players/1713340465169_LJL_Portraits_lolesports_V3_TANA.png", + "role": "top" + }, + { + "id": "101796953887103159", + "summonerName": "Recap", + "firstName": "Norifumi", + "lastName": "Yamazaki", + "image": "http://static.lolesports.com/players/1686138426505_fl_recap.png", + "role": "mid" + }, + { + "id": "101383792848062619", + "summonerName": "Corporal", + "firstName": "Ian", + "lastName": "Pearse", + "image": "http://static.lolesports.com/players/1686138361989_fl_corporal.png", + "role": "support" + }, + { + "id": "101796977262248072", + "summonerName": "hachamecha", + "firstName": "Dai", + "lastName": "Takai", + "image": "http://static.lolesports.com/players/1686138389628_fl_hachamecha.png", + "role": "jungle" + }, + { + "id": "106803906751189833", + "summonerName": "Shakespeare", + "firstName": "Miyu", + "lastName": "Otomo", + "image": "http://static.lolesports.com/players/1686138515042_fl_shakespeare.png", + "role": "support" + }, + { + "id": "107618427663806057", + "summonerName": "Kakkun", + "firstName": "Kamon", + "lastName": "Nomoto", + "image": "http://static.lolesports.com/players/1747471809106_DFM_Kakkun.png", + "role": "mid" + }, + { + "id": "106645154191921942", + "summonerName": "Deant", + "firstName": "Inkai", + "lastName": "Ro", + "image": "http://static.lolesports.com/players/1676809834772_Dammy.png", + "role": "bottom" + }, + { + "id": "105576902117578145", + "summonerName": "Ssol", + "firstName": "Jinsol", + "lastName": "Seo ", + "image": "http://static.lolesports.com/players/1713339344190_LJL_Portraits_lolesports_AXC_SSOL.png", + "role": "bottom" + }, + { + "id": "104253137978020060", + "summonerName": "Yunika", + "firstName": "Reo", + "lastName": "Komoda", + "image": "http://static.lolesports.com/players/1686201507555_Dammy.png", + "role": "jungle" + } + ] + }, + { + "id": "109669678317817381", + "slug": "fut-team", + "name": "FUT Esports", + "code": "FUT", + "image": "http://static.lolesports.com/teams/1673957996955_FUT.png", + "alternativeImage": "http://static.lolesports.com/teams/1673957996958_FUT.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "TCL", + "region": "EMEA" + }, + "players": [ + { + "id": "99566406024147756", + "summonerName": "fabFabulous", + "firstName": "Asim Cihat", + "lastName": "Karakaya", + "image": "http://static.lolesports.com/players/1705672916133_FABFAB.png", + "role": "top" + }, + { + "id": "113209873774740304", + "summonerName": "BayMg", + "firstName": "Mete", + "lastName": "Gazoz", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "101422616387054298", + "summonerName": "Bolulu", + "firstName": "Onur", + "lastName": "Demirol", + "image": "http://static.lolesports.com/players/1717746686648_bolulu.png", + "role": "none" + }, + { + "id": "110573155178676429", + "summonerName": "RYKA", + "firstName": "ZEKİ METEHAN", + "lastName": "BAYRAM", + "image": "http://static.lolesports.com/players/1687212446385_placeholder.png", + "role": "none" + } + ] + }, + { + "id": "109669701792576313", + "slug": "levante-ud", + "name": "Levante UD", + "code": "LUD", + "image": "http://static.lolesports.com/teams/1673426845642_LOLESPORTSICON.png", + "alternativeImage": "http://static.lolesports.com/teams/1673426845644_LOLESPORTSICON.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "SuperLiga", + "region": "EMEA" + }, + "players": [ + { + "id": "108390362956062897", + "summonerName": "Destru", + "firstName": "Fernando", + "lastName": "González López", + "image": "http://static.lolesports.com/players/1653905679287_placeholder.png", + "role": "mid" + }, + { + "id": "110394863446499114", + "summonerName": "Ibaiyuste", + "firstName": "Ibai ", + "lastName": "Yuste Martin", + "image": "http://static.lolesports.com/players/1684491933775_placeholder.png", + "role": "bottom" + } + ] + }, + { + "id": "109669720938106428", + "slug": "lex", + "name": "Xoldiers", + "code": "XOL", + "image": "http://static.lolesports.com/teams/1685613645958_image12.png", + "alternativeImage": "http://static.lolesports.com/teams/1685613645959_image12.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "110356043061907894", + "summonerName": "SpeedoBear", + "firstName": "Teodor ", + "lastName": "Milosevic", + "image": "http://static.lolesports.com/players/1683899579990_placeholder.png", + "role": "support" + }, + { + "id": "107128046781993420", + "summonerName": "Ecstassy", + "firstName": "Marian-Andrei", + "lastName": "Cândea", + "image": "http://static.lolesports.com/players/1634644264452_placeholder.jpg", + "role": "bottom" + }, + { + "id": "110494687782001086", + "summonerName": "FIERCE", + "firstName": "Max", + "lastName": "Nyllinge", + "image": "http://static.lolesports.com/players/1686015131100_silhouette_transparent.png", + "role": "mid" + }, + { + "id": "111544629287725103", + "summonerName": "Chompy", + "firstName": "Hugo", + "lastName": "Sanz Frias", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "105537414858847749", + "summonerName": "Infinity", + "firstName": "Christian", + "lastName": "San José", + "image": "https://static.lolesports.com/players/download.png", + "role": "jungle" + }, + { + "id": "108316988754386097", + "summonerName": "uden", + "firstName": "Patryk", + "lastName": "Czerniawski", + "image": "http://static.lolesports.com/players/1744003786409_image6-2025-04-07T072915.926.png", + "role": "support" + } + ] + }, + { + "id": "109669758384788335", + "slug": "zest", + "name": "Zest", + "code": "ZEST", + "image": "http://static.lolesports.com/teams/1673427709072_63a17c9b83525632894802.png", + "alternativeImage": "http://static.lolesports.com/teams/1673427709074_63a17c9b83525632894802.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "SuperLiga", + "region": "EMEA" + }, + "players": [ + { + "id": "107423320999343635", + "summonerName": "Lingwi", + "firstName": "Raphaël", + "lastName": "Claudé", + "image": "http://static.lolesports.com/players/1639149791731_placeholder.jpg", + "role": "top" + }, + { + "id": "107462961023574097", + "summonerName": "nash1c", + "firstName": "Diego José", + "lastName": "García Dorta", + "image": "http://static.lolesports.com/players/1639754650887_placeholder.png", + "role": "bottom" + } + ] + }, + { + "id": "109669789077876164", + "slug": "ramboot", + "name": "Ramboot Club", + "code": "RBT", + "image": "http://static.lolesports.com/teams/1673428176599_63bc3159a0c7e407353311.png", + "alternativeImage": "http://static.lolesports.com/teams/1673428176601_63bc3159a0c7e407353311.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "SuperLiga", + "region": "EMEA" + }, + "players": [ + { + "id": "103890043493878094", + "summonerName": "Fendras", + "firstName": "Lloret", + "lastName": "Carlos", + "image": "https://static.lolesports.com/players/download.png", + "role": "jungle" + }, + { + "id": "105532803085558758", + "summonerName": "Baca", + "firstName": "João Miguel", + "lastName": "Novais Bigas", + "image": "http://static.lolesports.com/players/1639756127996_placeholder.png", + "role": "mid" + }, + { + "id": "101799086969700514", + "summonerName": "Thien", + "firstName": "Romeo", + "lastName": "Tran", + "image": "http://static.lolesports.com/players/clg-thien.png", + "role": "top" + }, + { + "id": "107564399510583724", + "summonerName": "noname", + "firstName": "Willian", + "lastName": "Antony Jones", + "image": "http://static.lolesports.com/players/1641302474836_placeholder.png", + "role": "jungle" + }, + { + "id": "108353503453906607", + "summonerName": "Syzyfek", + "firstName": "Jakub", + "lastName": "Bareła", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "bottom" + }, + { + "id": "101422616383711953", + "summonerName": "Goliath", + "firstName": "Hyomin", + "lastName": "Kim", + "image": "http://static.lolesports.com/players/1744005213046_image6-2025-04-07T075301.901.png", + "role": "support" + }, + { + "id": "114896204921567352", + "summonerName": "Dextyle", + "firstName": "Asier", + "lastName": "Sanchez Monge", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "support" + } + ] + }, + { + "id": "109671193729027761", + "slug": "fly-fam", + "name": "FLY FAM", + "code": "FLYF", + "image": "http://static.lolesports.com/teams/1673449598399_2021_FQ_logo-Green_Icon1.png", + "alternativeImage": "http://static.lolesports.com/teams/1673449598401_2021_FQ_logo-Green_Icon1.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "108369185696299414", + "summonerName": "Maniac", + "firstName": "Skoupas", + "lastName": "Branden", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "jungle" + }, + { + "id": "108474495980105760", + "summonerName": "Goo", + "firstName": "Bryan", + "lastName": "Yi", + "image": "http://static.lolesports.com/players/1655189452055_placeholder.png", + "role": "jungle" + }, + { + "id": "107577675816978172", + "summonerName": "Blazze", + "firstName": "Јане", + "lastName": "Gligoroski", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "mid" + }, + { + "id": "109671919032499304", + "summonerName": "Mgutis", + "firstName": "Jurgutis", + "lastName": "Matthew", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "jungle" + } + ] + }, + { + "id": "109671201259007744", + "slug": "team-liquid-honda-first", + "name": "Team Liquid Honda First", + "code": "TLF", + "image": "http://static.lolesports.com/teams/1673449715066_TL_logo_wht.png", + "alternativeImage": "http://static.lolesports.com/teams/1673449715067_TL_logo_color.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCS", + "region": "NORTH AMERICA" + }, + "players": [] + }, + { + "id": "109671413728531527", + "slug": "pentagon-rejects", + "name": "Pentagon Rejects", + "code": "PTR", + "image": "http://static.lolesports.com/teams/1673905067404_PTR.png", + "alternativeImage": "http://static.lolesports.com/teams/1673905067406_PTR.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Hellenic Legends League", + "region": "EMEA" + }, + "players": [ + { + "id": "107768042767707404", + "summonerName": "Dargod", + "firstName": "Darin", + "lastName": "Kirov", + "image": "http://static.lolesports.com/players/1644409831434_placeholder.png", + "role": "support" + }, + { + "id": "110485490556229626", + "summonerName": "Chelouche", + "firstName": "OMER", + "lastName": "CHELOUCHE", + "image": "http://static.lolesports.com/players/1685874796422_placeholder.png", + "role": "jungle" + }, + { + "id": "107065257136226693", + "summonerName": "Jailbait", + "firstName": "Dimosthenis", + "lastName": "Katsavaros", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107717697343044714", + "summonerName": "StratosFan", + "firstName": "Stratos", + "lastName": "Pappa", + "image": "http://static.lolesports.com/players/1643641619358_placeholder.png", + "role": "support" + }, + { + "id": "110462561913944326", + "summonerName": "Ssaiko", + "firstName": "Marcel", + "lastName": "Lin", + "image": "http://static.lolesports.com/players/1685524930812_placeholder.png", + "role": "jungle" + }, + { + "id": "107065249848398720", + "summonerName": "Undefined", + "firstName": "Achilleas", + "lastName": "Karagiannis", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "support" + } + ] + }, + { + "id": "109671612150787863", + "slug": "kaufland-hangry-knights", + "name": "Kaufland Hangry Knights", + "code": "KHK", + "image": "http://static.lolesports.com/teams/1734307355268_KHK.png", + "alternativeImage": "http://static.lolesports.com/teams/1734307355268_KHK.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Prime League", + "region": "EMEA" + }, + "players": [ + { + "id": "105502680475688671", + "summonerName": "Sven", + "firstName": "Sven", + "lastName": "Olejnikow", + "image": "http://static.lolesports.com/players/placeholder.png", + "role": "top" + }, + { + "id": "102808727764396981", + "summonerName": "Nite", + "firstName": "Ardian ", + "lastName": "Spahiu", + "image": "http://static.lolesports.com/players/1674835236394_EWI_Nite.png", + "role": "mid" + }, + { + "id": "107444853138698643", + "summonerName": "Avra", + "firstName": "Ilhan", + "lastName": "Berkant", + "image": "http://static.lolesports.com/players/1687001087029_GTZ_AVRA.png", + "role": "bottom" + }, + { + "id": "103877599618926100", + "summonerName": "Visdom", + "firstName": "Benjamin ", + "lastName": "Ruberg Larsen", + "image": "http://static.lolesports.com/players/1674834922235_GL_Visdom.png", + "role": "support" + }, + { + "id": "103890026402256038", + "summonerName": "Random", + "firstName": "Adam ", + "lastName": "Grepl", + "image": "http://static.lolesports.com/players/1639756959185_placeholder.png", + "role": "none" + }, + { + "id": "103877598722756999", + "summonerName": "Rabble", + "firstName": "Jochem", + "lastName": "van Graafeiland", + "image": "https://static.lolesports.com/players/download.png", + "role": "jungle" + }, + { + "id": "107570755067676153", + "summonerName": "Venour", + "firstName": "Skorikov", + "lastName": "Iwan", + "image": "http://static.lolesports.com/players/1674833427731_USE_Venour.png", + "role": "top" + }, + { + "id": "113674612337269878", + "summonerName": "Funk3y", + "firstName": "Johannes", + "lastName": "Werner", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "103889905542957250", + "summonerName": "Jeskla", + "firstName": "Jesper Klarin ", + "lastName": "Stromberg", + "image": "http://static.lolesports.com/players/1674125197939_Jeskla.png", + "role": "bottom" + } + ] + }, + { + "id": "109672446077514083", + "slug": "the-kings-moon", + "name": "The Kings Moon", + "code": "TKM", + "image": "http://static.lolesports.com/teams/1673468704806_The_Kingslogo_square.webp", + "alternativeImage": "http://static.lolesports.com/teams/1673468704808_The_Kingslogo_square.webp", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "109631370664416662", + "summonerName": "Valuxitax", + "firstName": "Ortells Barrantes", + "lastName": "Valentina", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "top" + }, + { + "id": "109631370807524196", + "summonerName": "Anitta", + "firstName": "Santillan", + "lastName": "Anabella Noemí", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "jungle" + }, + { + "id": "107581386910878448", + "summonerName": "Midalia", + "firstName": "Martha Idalia", + "lastName": "Gonzalez Villafuerte", + "image": "http://static.lolesports.com/players/1642091328793_silhouette_transparent.png", + "role": "mid" + }, + { + "id": "107581326016793287", + "summonerName": "Shayla", + "firstName": "Elisa Mishelle", + "lastName": "Ramirez Romero", + "image": "http://static.lolesports.com/players/1642091324896_silhouette_transparent.png", + "role": "bottom" + }, + { + "id": "108121092380366087", + "summonerName": "Sophyre", + "firstName": "Lopez Vazquez", + "lastName": "Diana Kenia ", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "support" + }, + { + "id": "99566408544558791", + "summonerName": "Pillo", + "firstName": "José ", + "lastName": "Martínez ", + "image": "https://static.lolesports.com/players/download.png", + "role": "top" + }, + { + "id": "108318778293896762", + "summonerName": "Kobrq", + "firstName": "Arce Venegas", + "lastName": "José Julián", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "mid" + }, + { + "id": "109836673798672624", + "summonerName": "iCandy", + "firstName": "Rafael Orlando", + "lastName": "Díaz Estrada", + "image": "http://static.lolesports.com/players/1675974606270_placeholder.png", + "role": "jungle" + }, + { + "id": "108121092314289743", + "summonerName": "Raeghal", + "firstName": "Medina Aguirre", + "lastName": "Emmanuel ", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "bottom" + }, + { + "id": "107582370065402134", + "summonerName": "Mtnops", + "firstName": "Victor Daniel", + "lastName": "Felix Leon", + "image": "http://static.lolesports.com/players/1641576687556_placeholder.png", + "role": "jungle" + } + ] + }, + { + "id": "109672618694070633", + "slug": "aethernum-esports", + "name": "Aethernum Esports", + "code": "AET", + "image": "http://static.lolesports.com/teams/1673471338495_AETHERNUM-B.png", + "alternativeImage": "http://static.lolesports.com/teams/1673471338495_AETHERNUM-B.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "109859096887249072", + "summonerName": "Haku", + "firstName": "Jacobo", + "lastName": "Meneses Maya", + "image": "http://static.lolesports.com/players/1676316782796_silhouette_transparent.png", + "role": "mid" + }, + { + "id": "109859101691248791", + "summonerName": "Juny1", + "firstName": "Frederick Leunamme", + "lastName": "Sanchez Tello", + "image": "http://static.lolesports.com/players/1676316855688_silhouette_transparent.png", + "role": "bottom" + }, + { + "id": "107599454745843658", + "summonerName": "mrproxi", + "firstName": "Joseph Preminger", + "lastName": "Rubiano Motta", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "support" + }, + { + "id": "109859113634594972", + "summonerName": "T0ki", + "firstName": "Juan Esteban", + "lastName": "Pérez Benítez", + "image": "http://static.lolesports.com/players/1676317037992_silhouette_transparent.png", + "role": "jungle" + }, + { + "id": "109674991215851382", + "summonerName": "Hasta Deum", + "firstName": "Oscar Daniel", + "lastName": "Roncancio Lucas", + "image": "http://static.lolesports.com/players/1673507553496_placeholder.png", + "role": "top" + }, + { + "id": "109674995529646041", + "summonerName": "Santx", + "firstName": "Santiago", + "lastName": "Cañola Berrio", + "image": "http://static.lolesports.com/players/1673507620408_placeholder.png", + "role": "jungle" + }, + { + "id": "109674997418545610", + "summonerName": "KeeiTa", + "firstName": "Roberto", + "lastName": "Rodriguez Florez", + "image": "http://static.lolesports.com/players/1673507649316_placeholder.png", + "role": "mid" + }, + { + "id": "109675000180167118", + "summonerName": "Koan", + "firstName": "Andrés Leonardo", + "lastName": "Rodríguez Echeverry", + "image": "http://static.lolesports.com/players/1673507691124_placeholder.png", + "role": "bottom" + }, + { + "id": "109675002652857014", + "summonerName": "Wapura", + "firstName": "Angel David", + "lastName": "Escobar Ibañez", + "image": "http://static.lolesports.com/players/1673507728546_placeholder.png", + "role": "support" + }, + { + "id": "109675005257398146", + "summonerName": "Razor", + "firstName": "Andrés Felipe", + "lastName": "Acosta Tenjo", + "image": "http://static.lolesports.com/players/1673507768759_placeholder.png", + "role": "jungle" + }, + { + "id": "109675008268163201", + "summonerName": "Rodri", + "firstName": "Julian", + "lastName": "Rodríguez", + "image": "http://static.lolesports.com/players/1673507814863_placeholder.png", + "role": "mid" + }, + { + "id": "109675009737915058", + "summonerName": "Vlaken", + "firstName": "Daniela", + "lastName": "Fernández Ferreira", + "image": "http://static.lolesports.com/players/1673507836838_placeholder.png", + "role": "bottom" + } + ] + }, + { + "id": "109674808371974726", + "slug": "newells-esports", + "name": "Newell's Esports", + "code": "NOB", + "image": "http://static.lolesports.com/teams/1673504763556_2000x2000-NEWELLS.png", + "alternativeImage": "http://static.lolesports.com/teams/1673504763558_BK-NEWELLSALLBOYS.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "109676500391025379", + "summonerName": "Julian9", + "firstName": "Nahuel", + "lastName": "Ponce", + "image": "http://static.lolesports.com/players/1673530581403_placeholder.png", + "role": "top" + }, + { + "id": "109676502130178497", + "summonerName": "Rhast", + "firstName": "Luciano", + "lastName": "Gonzales", + "image": "http://static.lolesports.com/players/1673530608238_placeholder.png", + "role": "jungle" + }, + { + "id": "109676503814837521", + "summonerName": "Skaanz", + "firstName": "Vicente", + "lastName": "Vega Cani", + "image": "http://static.lolesports.com/players/1673530634008_placeholder.png", + "role": "mid" + }, + { + "id": "109676505671734550", + "summonerName": "Vico7", + "firstName": "victorio martin", + "lastName": "diaz", + "image": "http://static.lolesports.com/players/1673530662226_placeholder.png", + "role": "support" + }, + { + "id": "107583615968301366", + "summonerName": "Import", + "firstName": "Franco Agustin", + "lastName": "Flores", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "bottom" + }, + { + "id": "107598801689629906", + "summonerName": "Dysuo", + "firstName": "Dylan Alexis", + "lastName": "Luna", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "mid" + } + ] + }, + { + "id": "109674814051390025", + "slug": "primate", + "name": "Primate", + "code": "PMT", + "image": "http://static.lolesports.com/teams/1673504851897_2000x2000-PRIMAT.png", + "alternativeImage": "http://static.lolesports.com/teams/1673504851899_BK-PRIMAT.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "109676454639702332", + "summonerName": "rahab", + "firstName": "Ramiro Nicolas", + "lastName": "Puente", + "image": "http://static.lolesports.com/players/1673529883370_placeholder.png", + "role": "top" + }, + { + "id": "112091621802005885", + "summonerName": "Funky", + "firstName": "Aaron ", + "lastName": "Sterzer", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "107648370969609784", + "summonerName": "Strensh", + "firstName": "Cristopher", + "lastName": "Gonzalez", + "image": "http://static.lolesports.com/players/1660238650077_EMP.png", + "role": "bottom" + }, + { + "id": "100118511918293226", + "summonerName": "Shmebu", + "firstName": "Agustin Tomas", + "lastName": "Valetti", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/shmebulock-7v4bs3dt.png", + "role": "support" + }, + { + "id": "112091621866843956", + "summonerName": "Nvillada", + "firstName": "Julian", + "lastName": "Villada", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "104843445932165305", + "summonerName": "Enga", + "firstName": "Eneas Tomas", + "lastName": "Protti", + "image": "http://static.lolesports.com/players/R7-Enga.png", + "role": "mid" + } + ] + }, + { + "id": "109675484017801229", + "slug": "team-bliss", + "name": "Team Bliss", + "code": "TB", + "image": "http://static.lolesports.com/teams/1673594389871_TeamBlissUpdated.png", + "alternativeImage": "http://static.lolesports.com/teams/1673594389873_TeamBlissUpdated.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "PCS", + "region": "HONG KONG, MACAU, TAIWAN" + }, + "players": [ + { + "id": "100160799381721105", + "summonerName": "BioPanther", + "firstName": "Brandon", + "lastName": "Alexander", + "image": "http://static.lolesports.com/players/1744279244788_CHF_BioPanther.png", + "role": "top" + }, + { + "id": "104668539132702977", + "summonerName": "Kevy", + "firstName": "Shane", + "lastName": "Allen", + "image": "http://static.lolesports.com/players/1674831789460_CLG_KEVY.png", + "role": "jungle" + }, + { + "id": "101383792849832093", + "summonerName": "Haeri", + "firstName": "Harry ", + "lastName": "Kang", + "image": "http://static.lolesports.com/players/1674834089549_TL_HAERI.png", + "role": "mid" + }, + { + "id": "103643243250697054", + "summonerName": "Violet", + "firstName": "Vincent", + "lastName": "Wong", + "image": "http://static.lolesports.com/players/1745997118665_CHF_Violet.png", + "role": "bottom" + }, + { + "id": "101383792831678607", + "summonerName": "Aladoric", + "firstName": "Ryan", + "lastName": "Richardson", + "image": "http://static.lolesports.com/players/1633539119343_pce-aladoric-w21.png", + "role": "support" + }, + { + "id": "99566406322745918", + "summonerName": "Decoy", + "firstName": "Daniel", + "lastName": "Ealam", + "image": "http://static.lolesports.com/players/1643226868369_Decoycopy.png", + "role": "support" + } + ] + }, + { + "id": "109675490370327425", + "slug": "ground-zero", + "name": "Ground Zero Gaming", + "code": "GZ", + "image": "http://static.lolesports.com/teams/1673515171227_Ground_Zero_Logo_2019.png", + "alternativeImage": "http://static.lolesports.com/teams/1673515171228_Ground_Zero_Logo_2019.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "PCS", + "region": "HONG KONG, MACAU, TAIWAN" + }, + "players": [ + { + "id": "109642949356917822", + "summonerName": "RenYe", + "firstName": "Yang", + "lastName": "Yu-Ren", + "image": "http://static.lolesports.com/players/1705750837340_WPRenYe.png", + "role": "jungle" + }, + { + "id": "109642949457528702", + "summonerName": "1116", + "firstName": "Chien", + "lastName": "Mao-An", + "image": "http://static.lolesports.com/players/1705751335855_BYG1116.png", + "role": "mid" + }, + { + "id": "114856097791566491", + "summonerName": "Herma", + "firstName": "You-Ju", + "lastName": "Lin", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "114856107938897968", + "summonerName": "Kin0", + "firstName": "Wu Hsin-Jung", + "lastName": "Chu", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "104573207505851728", + "summonerName": "minji", + "firstName": "Po-Wei", + "lastName": "Lu", + "image": "http://static.lolesports.com/players/1705750544685_JTMinji.png", + "role": "mid" + }, + { + "id": "114952628000432355", + "summonerName": "Equinox", + "firstName": "YOUNG MIN", + "lastName": "Joo", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "top" + } + ] + }, + { + "id": "109676337359108345", + "slug": "eclipse-gaming", + "name": "Eclipse Gaming", + "code": "EGGC", + "image": "http://static.lolesports.com/teams/1711011116897_Eclipse-Gaming_White.png", + "alternativeImage": "http://static.lolesports.com/teams/1711011116898_Eclipse-Gaming_Black.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "99566408340150255", + "summonerName": "Froststrike", + "firstName": "Lucas", + "lastName": "Espindola ", + "image": "http://static.lolesports.com/players/1674668576515_EMP.png", + "role": "none" + }, + { + "id": "112091621682140537", + "summonerName": "Skyreach", + "firstName": "Luciano Andres ", + "lastName": "Muñoz Vespa", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "105397186917489455", + "summonerName": "Skeeto", + "firstName": "Javier Eugenio Manuel", + "lastName": "Fuentes Nicoletti", + "image": "http://static.lolesports.com/players/1654801809368_EMP.png", + "role": "top" + }, + { + "id": "108288698913324255", + "summonerName": "Doni", + "firstName": "Facundo", + "lastName": "Rinaldoni Gordillo", + "image": "http://static.lolesports.com/players/1652354411861_placeholder.png", + "role": "mid" + }, + { + "id": "112398472638907065", + "summonerName": "brexx", + "firstName": "Mario Facundo", + "lastName": "Martinez Martinez", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "107582136524523501", + "summonerName": "Fateware", + "firstName": "Fabrizio Uriel", + "lastName": "Maldonado", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "99591817398894020", + "summonerName": "Woohee", + "firstName": "Paolo César", + "lastName": "Vicencio Maturana", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/woohee-9pdl799k.png", + "role": "support" + } + ] + }, + { + "id": "109692071893352727", + "slug": "hell-pigs", + "name": "HELLPIGS", + "code": "HPS", + "image": "http://static.lolesports.com/teams/1674036338265_HPS_W.png", + "alternativeImage": "http://static.lolesports.com/teams/1674036338267_HPS_B.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "PCS", + "region": "HONG KONG, MACAU, TAIWAN" + }, + "players": [ + { + "id": "114782535750742578", + "summonerName": "Sailuo", + "firstName": "CHAOYUE", + "lastName": "KANG", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "114782540410848830", + "summonerName": "TA0", + "firstName": "wentao", + "lastName": "zhang", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "114782538852868377", + "summonerName": "godfan", + "firstName": "feifan", + "lastName": "zhang", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "114782541547205174", + "summonerName": "XiaoYang", + "firstName": "BO YANG", + "lastName": "ZHENG", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "107568579494407911", + "summonerName": "EnHoa", + "firstName": "HAO-EN", + "lastName": "CAI", + "image": "http://static.lolesports.com/players/1687502249476_DWTEnHoa.png", + "role": "support" + } + ] + }, + { + "id": "109692074894483834", + "slug": "sem9-wpe", + "name": "West Point Esports", + "code": "WP", + "image": "http://static.lolesports.com/teams/1686826980767_WPE_Full.png", + "alternativeImage": "http://static.lolesports.com/teams/1686826980768_WPE_Full.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "PCS", + "region": "HONG KONG, MACAU, TAIWAN" + }, + "players": [ + { + "id": "113951650366926398", + "summonerName": "BuLuKaKa", + "firstName": "KA KIT", + "lastName": "LEUNG", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "114267982133472123", + "summonerName": "hasu7", + "firstName": "Bing-You", + "lastName": "Hong", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "114473781529908360", + "summonerName": "whisper", + "firstName": "YU-YANG", + "lastName": "LIU", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "111889105324133003", + "summonerName": "ChiCh1", + "firstName": "CI SYUAN", + "lastName": "WU", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "106470329068412810", + "summonerName": "TNS", + "firstName": "PO WEI", + "lastName": "HUANG", + "image": "http://static.lolesports.com/players/silhouette.png", + "role": "support" + }, + { + "id": "114041513873024487", + "summonerName": "Plume", + "firstName": "Liang-Jie", + "lastName": "Yu", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "support" + } + ] + }, + { + "id": "109695910533747910", + "slug": "raad", + "name": "RAAD", + "code": "RAAD", + "image": "http://static.lolesports.com/teams/1676278903430_FullcolorTransparent1.png", + "alternativeImage": "http://static.lolesports.com/teams/1676278903432_FullcolorTransparent1.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Arabian League", + "region": "EMEA" + }, + "players": [ + { + "id": "111771276644010583", + "summonerName": "Hazem", + "firstName": "Hazem", + "lastName": "Al Waleed", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "109721326675273949", + "summonerName": "Sivvy", + "firstName": "Fady", + "lastName": "Ibrahim", + "image": "http://static.lolesports.com/players/1674214580102_placeholder.png", + "role": "support" + }, + { + "id": "112440375601055512", + "summonerName": "Presence", + "firstName": "Sherif", + "lastName": "Mid", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "109721278985736260", + "summonerName": "Mangoo", + "firstName": "Mohamed", + "lastName": "Hossam", + "image": "http://static.lolesports.com/players/1674213852477_placeholder.png", + "role": "bottom" + }, + { + "id": "109721437716227947", + "summonerName": "SANTA", + "firstName": "Fady", + "lastName": "Talaat", + "image": "http://static.lolesports.com/players/1744003590904_image6-2025-04-07T072604.681.png", + "role": "jungle" + }, + { + "id": "109817654267972260", + "summonerName": "Deceiving", + "firstName": "Ramy ", + "lastName": "Refaat", + "image": "http://static.lolesports.com/players/1675684424600_placeholder.png", + "role": "mid" + }, + { + "id": "109721246656883896", + "summonerName": "Lunatic", + "firstName": "Osama", + "lastName": "Fared", + "image": "http://static.lolesports.com/players/1674213358743_placeholder.png", + "role": "bottom" + } + ] + }, + { + "id": "109695924147263860", + "slug": "triple-esports", + "name": "Triple Esports", + "code": "3E", + "image": "http://static.lolesports.com/teams/1673826964651_DDD-LOGO-PNG.png", + "alternativeImage": "http://static.lolesports.com/teams/1673826964651_DDD-LOGO-PNG-2.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Arabian League", + "region": "EMEA" + }, + "players": [ + { + "id": "106313027403543673", + "summonerName": "wicked", + "firstName": "Emily", + "lastName": "Leckie", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "mid" + }, + { + "id": "110490052459494596", + "summonerName": "Insane1", + "firstName": "Taieb", + "lastName": "kraiem", + "image": "http://static.lolesports.com/players/1685944406535_placeholder.png", + "role": "support" + }, + { + "id": "110490053943753928", + "summonerName": "Kudy", + "firstName": "SAFWAN", + "lastName": "ESLEEM", + "image": "http://static.lolesports.com/players/1685944429436_placeholder.png", + "role": "jungle" + }, + { + "id": "109696469672780569", + "summonerName": "Palacsinta", + "firstName": "David", + "lastName": "Racz", + "image": "http://static.lolesports.com/players/1673835288919_silhouette_transparent.png", + "role": "support" + } + ] + }, + { + "id": "109696047948627764", + "slug": "gng-esports", + "name": "GNG Amazigh", + "code": "GNG", + "image": "http://static.lolesports.com/teams/1738571853483_FullcolorforDarkBG.png", + "alternativeImage": "http://static.lolesports.com/teams/1738571853484_FullcolorforDarkBG.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Arabian League", + "region": "EMEA" + }, + "players": [ + { + "id": "107772441154411284", + "summonerName": "Xicor", + "firstName": "Fares", + "lastName": "Saidana", + "image": "http://static.lolesports.com/players/1655828499158_OPLON_XICOR-picture.png", + "role": "bottom" + }, + { + "id": "101422616398654197", + "summonerName": "Sparz", + "firstName": "Ozan Samican", + "lastName": "Özbay", + "image": "http://static.lolesports.com/players/1705672502346_SPARZ.png", + "role": "support" + }, + { + "id": "109721324326169641", + "summonerName": "Juggernaut", + "firstName": "Mohammed", + "lastName": "Abderrahim", + "image": "http://static.lolesports.com/players/1674214543885_placeholder.png", + "role": "mid" + }, + { + "id": "109721322428556881", + "summonerName": "Dean", + "firstName": "Attia", + "lastName": "Haithem", + "image": "http://static.lolesports.com/players/1739204451550_GNGDean.png", + "role": "jungle" + }, + { + "id": "109696501258590650", + "summonerName": "Koussay", + "firstName": "Koussay", + "lastName": "Soltani", + "image": "http://static.lolesports.com/players/1739204425892_GNGKoussay.png", + "role": "mid" + }, + { + "id": "106371051708595461", + "summonerName": "Septico1", + "firstName": "Axinte", + "lastName": "Cristian", + "image": "http://static.lolesports.com/players/1739203297262_GNGSeptico1.png", + "role": "top" + } + ] + }, + { + "id": "109696073114910519", + "slug": "anubis-gaming", + "name": "Anubis Gaming", + "code": "ANB", + "image": "http://static.lolesports.com/teams/1738571697908_logo.png", + "alternativeImage": "http://static.lolesports.com/teams/1706266117071_color.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Arabian League", + "region": "EMEA" + }, + "players": [ + { + "id": "109696314990191330", + "summonerName": "Maged", + "firstName": "Maged", + "lastName": "Marwan", + "image": "http://static.lolesports.com/players/1744004011341_image6-2025-04-07T073323.074.png", + "role": "top" + }, + { + "id": "107768046739473644", + "summonerName": "Akashii", + "firstName": "Oussama", + "lastName": "Cherradi", + "image": "http://static.lolesports.com/players/1644409888407_placeholder.png", + "role": "mid" + }, + { + "id": "103963502817209880", + "summonerName": "Shiganari", + "firstName": "Artjoms", + "lastName": "Pervušins", + "image": "http://static.lolesports.com/players/1674127383289_Shinigari.png", + "role": "bottom" + }, + { + "id": "114826250712912298", + "summonerName": "Alicus", + "firstName": "Ali", + "lastName": "Saba", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "101389631500172667", + "summonerName": "Dan", + "firstName": "Daniel ", + "lastName": "Hockley", + "image": "http://static.lolesports.com/players/XL_DAN2021_summer.png", + "role": "jungle" + }, + { + "id": "109696579630268337", + "summonerName": "KlownZ", + "firstName": "Mohammad", + "lastName": "ALKhalaileh", + "image": "http://static.lolesports.com/players/1744003928983_image6-2025-04-07T073147.850.png", + "role": "support" + } + ] + }, + { + "id": "109696092218588987", + "slug": "nigma-galaxy", + "name": "Nigma Galaxy", + "code": "NGX", + "image": "http://static.lolesports.com/teams/1738571775793_Logo_mark.png", + "alternativeImage": "http://static.lolesports.com/teams/1673829529730_Logo_mark.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "Arabian League", + "region": "EMEA" + }, + "players": [] + }, + { + "id": "109696115986547257", + "slug": "fox-gaming", + "name": "Fox Gaming", + "code": "F0X", + "image": "http://static.lolesports.com/teams/1738571598877_fox_gaming_logo_ori.png", + "alternativeImage": "http://static.lolesports.com/teams/1673829892214_fox_gaming_logo_ori.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Arabian League", + "region": "EMEA" + }, + "players": [ + { + "id": "108396087581669529", + "summonerName": "Sw3ry", + "firstName": "Denis", + "lastName": "Neumann", + "image": "http://static.lolesports.com/players/1653993029605_placeholder.png", + "role": "support" + }, + { + "id": "114826250798127153", + "summonerName": "Chakroun", + "firstName": "Raai", + "lastName": "Chakroun", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "111813497306060408", + "summonerName": "Improver", + "firstName": "Imad", + "lastName": "Assafi", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "107105597836036571", + "summonerName": "Fede", + "firstName": "Federico", + "lastName": "Alemany Antón", + "image": "http://static.lolesports.com/players/1744004756953_image6-2025-04-07T074532.091.png", + "role": "bottom" + }, + { + "id": "109696622706775380", + "summonerName": "Narukya", + "firstName": "Youssef", + "lastName": "Boutkhourst", + "image": "http://static.lolesports.com/players/1739202142764_FOXNarukya.png", + "role": "support" + }, + { + "id": "111813497240107516", + "summonerName": "Shanks2", + "firstName": "Mougar", + "lastName": "Mohamed Amine", + "image": "http://static.lolesports.com/players/1744004669384_image6-2025-04-07T074417.556.png", + "role": "jungle" + } + ] + }, + { + "id": "109696126554266494", + "slug": "geekay-esports", + "name": "Geekay Esports", + "code": "GK", + "image": "http://static.lolesports.com/teams/1738571465354_GkLogo-Colored2x.png", + "alternativeImage": "http://static.lolesports.com/teams/1738571465354_GkLogo-Colored2x.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Arabian League", + "region": "EMEA" + }, + "players": [ + { + "id": "104738069135684807", + "summonerName": "Eckas", + "firstName": "Edgaras", + "lastName": "Strazdauskas", + "image": "http://static.lolesports.com/players/1674125835444_Eckas.png", + "role": "jungle" + }, + { + "id": "105560175889210064", + "summonerName": "UNF0RGIVEN", + "firstName": "William", + "lastName": "Nieminen", + "image": "http://static.lolesports.com/players/1717747362639_unforgiven.png", + "role": "bottom" + }, + { + "id": "109696326756459242", + "summonerName": "B Butcher", + "firstName": "Abdulkader", + "lastName": "Halwani", + "image": "http://static.lolesports.com/players/1744004347640_image6-2025-04-07T073822.792.png", + "role": "support" + }, + { + "id": "103461966877067138", + "summonerName": "Giyuu", + "firstName": "Ahmad", + "lastName": "Charif", + "image": "http://static.lolesports.com/players/1739202420732_GKGIYUU.png", + "role": "mid" + }, + { + "id": "109696535754261145", + "summonerName": "Boda", + "firstName": "Mohammed", + "lastName": "Sayed", + "image": "http://static.lolesports.com/players/1739202251791_GKBoda.png", + "role": "top" + } + ] + }, + { + "id": "109696138543579708", + "slug": "ebl-esports", + "name": "3BL Esports", + "code": "3BL", + "image": "http://static.lolesports.com/teams/1673883519612_3BLEsports1.png", + "alternativeImage": "http://static.lolesports.com/teams/1673883519615_3BLEsports1.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Arabian League", + "region": "EMEA" + }, + "players": [ + { + "id": "109721314351572557", + "summonerName": "Murph", + "firstName": "Muhammed ", + "lastName": "Fathy", + "image": "http://static.lolesports.com/players/1674214391921_placeholder.png", + "role": "top" + }, + { + "id": "109721275215373887", + "summonerName": "Nufall", + "firstName": "Abdallah", + "lastName": "Nofal", + "image": "http://static.lolesports.com/players/1674213794661_placeholder.png", + "role": "jungle" + }, + { + "id": "112446520321803742", + "summonerName": "Wantage", + "firstName": "Elias", + "lastName": "Jacobson", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "mid" + } + ] + }, + { + "id": "109696143383780225", + "slug": "one-more-esports-", + "name": "One More Esports ", + "code": "1M", + "image": "http://static.lolesports.com/teams/1738572035889_OneMoreEsportslogo3.4transaprentbackground.png", + "alternativeImage": "http://static.lolesports.com/teams/1738572035889_OneMoreEsportslogo3.4transaprentbackground.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Arabian League", + "region": "EMEA" + }, + "players": [ + { + "id": "111771357486962476", + "summonerName": "Claww", + "firstName": "Youssef", + "lastName": "Mohamed", + "image": "http://static.lolesports.com/players/1744002820127_image6-2025-04-07T071226.594.png", + "role": "top" + }, + { + "id": "111813497173804522", + "summonerName": "Krest", + "firstName": "Hassine", + "lastName": "Abdssamad", + "image": "http://static.lolesports.com/players/1744004566233_image6-2025-04-07T074158.605.png", + "role": "bottom" + }, + { + "id": "113837345850030667", + "summonerName": "Goliah", + "firstName": "Ilias", + "lastName": "Amrani", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "114263301968195583", + "summonerName": "Aeru", + "firstName": "Oussama", + "lastName": "Ben amara", + "image": "http://static.lolesports.com/players/1744005129353_image6-2025-04-07T075142.736.png", + "role": "bottom" + }, + { + "id": "107450884738505008", + "summonerName": "Benaset", + "firstName": "Benoît", + "lastName": "Mergny", + "image": "http://static.lolesports.com/players/1639570383706_placeholder.png", + "role": "support" + }, + { + "id": "108403324934683783", + "summonerName": "Woldjo", + "firstName": "William", + "lastName": "Donatzky", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "jungle" + }, + { + "id": "114826250624840330", + "summonerName": "Vizzpers", + "firstName": "Villas", + "lastName": "Burkal Stadager", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "111813496625862238", + "summonerName": "Panda2", + "firstName": "Hamza", + "lastName": "Siala", + "image": "http://static.lolesports.com/players/1744003081088_image6-2025-04-07T071653.486.png", + "role": "mid" + }, + { + "id": "109790553449572220", + "summonerName": "Leo S Man", + "firstName": "Mohamed", + "lastName": "Amine", + "image": "http://static.lolesports.com/players/1744003365348_image6-2025-04-07T072234.746.png", + "role": "support" + } + ] + }, + { + "id": "109696148390232639", + "slug": "horus", + "name": "HORUS", + "code": "HRS", + "image": "http://static.lolesports.com/teams/1673830386620_received_893030931713763.jpeg", + "alternativeImage": "http://static.lolesports.com/teams/1673830386622_received_893030931713763.jpeg", + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "Arabian League", + "region": "EMEA" + }, + "players": [ + { + "id": "109696817956274948", + "summonerName": "Kai", + "firstName": "Mohamed", + "lastName": "Karem", + "image": "http://static.lolesports.com/players/1673840603252_silhouette_transparent.png", + "role": "top" + }, + { + "id": "109696820220715913", + "summonerName": "TYSON", + "firstName": "Mostafa", + "lastName": "Tysser", + "image": "http://static.lolesports.com/players/1673840637900_silhouette_transparent.png", + "role": "top" + }, + { + "id": "109696822840974414", + "summonerName": "Rashdan", + "firstName": "Fares", + "lastName": "Ehab", + "image": "http://static.lolesports.com/players/1673840677577_silhouette_transparent.png", + "role": "jungle" + }, + { + "id": "109696825758374994", + "summonerName": "Smaug", + "firstName": "Mostafa", + "lastName": "Sabra", + "image": "http://static.lolesports.com/players/1673840722472_silhouette_transparent.png", + "role": "mid" + }, + { + "id": "109696828028944364", + "summonerName": "siniter", + "firstName": "Mohanad", + "lastName": "Hesham", + "image": "http://static.lolesports.com/players/1673840757062_silhouette_transparent.png", + "role": "bottom" + }, + { + "id": "109696834132180976", + "summonerName": "Kuro3", + "firstName": "Youssef", + "lastName": "Hesham", + "image": "http://static.lolesports.com/players/1673840850044_silhouette_transparent.png", + "role": "support" + }, + { + "id": "109721409418374212", + "summonerName": "Sinister", + "firstName": "Mohanad", + "lastName": "Hesham", + "image": "http://static.lolesports.com/players/1674215832787_placeholder.png", + "role": "bottom" + }, + { + "id": "109729213446434545", + "summonerName": "KRAUSER", + "firstName": "Al-Ghamdi", + "lastName": "Al-Ghamdi", + "image": "http://static.lolesports.com/players/1674334919805_silhouette_transparent.png", + "role": "mid" + }, + { + "id": "109729216088568018", + "summonerName": "AbuDeif", + "firstName": "AbuDeif", + "lastName": "AbuDeif", + "image": "http://static.lolesports.com/players/1674334959953_silhouette_transparent.png", + "role": "mid" + }, + { + "id": "109904393651746024", + "summonerName": "Kovy", + "firstName": "Ahmed", + "lastName": "Osama", + "image": "http://static.lolesports.com/players/1677007951823_placeholder.png", + "role": "support" + } + ] + }, + { + "id": "109696153024781188", + "slug": "wasted-talents", + "name": "Wasted Talents", + "code": "WST", + "image": "http://static.lolesports.com/teams/1673830457707_noteamlogo-lolesports.png", + "alternativeImage": "http://static.lolesports.com/teams/1673830457707_noteamlogo-lolesports.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Arabian League", + "region": "EMEA" + }, + "players": [ + { + "id": "109696755545267226", + "summonerName": "Ibrahimzzz", + "firstName": "ibrahim", + "lastName": "mossad", + "image": "http://static.lolesports.com/players/1673839651177_silhouette_transparent.png", + "role": "mid" + }, + { + "id": "109696757848211421", + "summonerName": "Mando", + "firstName": "Mohamed", + "lastName": "Abd elrhman", + "image": "http://static.lolesports.com/players/1673839685747_silhouette_transparent.png", + "role": "top" + }, + { + "id": "109696767414780627", + "summonerName": "Shadow5", + "firstName": "Basil", + "lastName": "Reda", + "image": "http://static.lolesports.com/players/1673839831665_silhouette_transparent.png", + "role": "jungle" + }, + { + "id": "109721373905644763", + "summonerName": "Angel 1", + "firstName": "Ali", + "lastName": "Hassan", + "image": "http://static.lolesports.com/players/1674215301048_placeholder.png", + "role": "bottom" + }, + { + "id": "110528618067099779", + "summonerName": "missipissi", + "firstName": "yousef ", + "lastName": "yousef ", + "image": "http://static.lolesports.com/players/1686532861333_placeholder.png", + "role": "support" + }, + { + "id": "110528620395624437", + "summonerName": "Invincible2", + "firstName": "Hamzeh ", + "lastName": "nazer ", + "image": "http://static.lolesports.com/players/1686532897008_placeholder.png", + "role": "bottom" + }, + { + "id": "107693443839268056", + "summonerName": "Stryg", + "firstName": "Daniel", + "lastName": "Palarčík", + "image": "http://static.lolesports.com/players/1643271538965_placeholder.png", + "role": "mid" + } + ] + }, + { + "id": "109696157636444738", + "slug": "twisted-minds", + "name": "Twisted Minds", + "code": "TWIS", + "image": "http://static.lolesports.com/teams/1675060104450_TwistedMinds_logo_v3_Colour02-ai.png", + "alternativeImage": "http://static.lolesports.com/teams/1675060104452_TwistedMinds_logo_v3_Colour02-ai.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Arabian League", + "region": "EMEA" + }, + "players": [ + { + "id": "109696463795912565", + "summonerName": "Mimic1", + "firstName": "Nawaf", + "lastName": "Alsalem", + "image": "http://static.lolesports.com/players/1673835199043_silhouette_transparent.png", + "role": "bottom" + }, + { + "id": "107605083726995857", + "summonerName": "Sloth", + "firstName": "Jung-sub", + "lastName": "Bae", + "image": "http://static.lolesports.com/players/1674553897681_G26.png", + "role": "support" + }, + { + "id": "109696458063747496", + "summonerName": "Wufo", + "firstName": "Nawaf", + "lastName": "Alkhowaiter", + "image": "http://static.lolesports.com/players/1673835111642_silhouette_transparent.png", + "role": "top" + }, + { + "id": "101389749296185236", + "summonerName": "Selfmade", + "firstName": "Oskar", + "lastName": "Boderek", + "image": "http://static.lolesports.com/players/1642003900086_selfmade.png", + "role": "jungle" + }, + { + "id": "112440396717068941", + "summonerName": " M G", + "firstName": "Jihoon", + "lastName": "Lee", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "109696791862854378", + "summonerName": "OniiKhan", + "firstName": "Abdulaziz", + "lastName": "Almubarak", + "image": "http://static.lolesports.com/players/1673840205088_silhouette_transparent.png", + "role": "mid" + } + ] + }, + { + "id": "109696162907684672", + "slug": "olympus-gaming", + "name": "Olympus Gaming", + "code": "OLY", + "image": "http://static.lolesports.com/teams/1673830607752_Olympus_logo.png", + "alternativeImage": "http://static.lolesports.com/teams/1673830607754_Olympus_logo.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "Arabian League", + "region": "EMEA" + }, + "players": [ + { + "id": "109721246656883896", + "summonerName": "Lunatic", + "firstName": "Osama", + "lastName": "Fared", + "image": "http://static.lolesports.com/players/1674213358743_placeholder.png", + "role": "bottom" + }, + { + "id": "109721248741844529", + "summonerName": "Xbix", + "firstName": "Noamane", + "lastName": "Iraqi Houssaini", + "image": "http://static.lolesports.com/players/1674213390533_placeholder.png", + "role": "top" + }, + { + "id": "102787200101155585", + "summonerName": "MarrowOoze", + "firstName": "Luka", + "lastName": "Cvetkovic", + "image": "http://static.lolesports.com/players/1655733957240_placeholder.png", + "role": "mid" + }, + { + "id": "105536995224302909", + "summonerName": "LeQu", + "firstName": "Kamil", + "lastName": "Rosik", + "image": "https://static.lolesports.com/players/download.png", + "role": "top" + }, + { + "id": "109904893591759758", + "summonerName": "Tiltlord", + "firstName": "Abderrahim", + "lastName": "Rhaimi", + "image": "http://static.lolesports.com/players/1677015570380_placeholder.png", + "role": "jungle" + }, + { + "id": "109982881412962981", + "summonerName": "Dagger", + "firstName": "Sohail", + "lastName": "Ajbaa", + "image": "http://static.lolesports.com/players/1678205577789_placeholder.png", + "role": "support" + }, + { + "id": "109696890342399106", + "summonerName": "Zankiller", + "firstName": "Abdellah", + "lastName": "Zandar", + "image": "http://static.lolesports.com/players/1673841707635_silhouette_transparent.png", + "role": "jungle" + }, + { + "id": "109696892318639033", + "summonerName": "Nakimura", + "firstName": "Ahmed", + "lastName": "Mahmoud", + "image": "http://static.lolesports.com/players/1673841737987_silhouette_transparent.png", + "role": "jungle" + }, + { + "id": "109696895795454910", + "summonerName": "Slayer1", + "firstName": "Youness", + "lastName": "Sebbari", + "image": "http://static.lolesports.com/players/1673841791022_silhouette_transparent.png", + "role": "bottom" + }, + { + "id": "109696898443461461", + "summonerName": "Mirage", + "firstName": "Ahmed", + "lastName": "Zhran", + "image": "http://static.lolesports.com/players/1673841831575_silhouette_transparent.png", + "role": "mid" + }, + { + "id": "109696900851057497", + "summonerName": "Mune", + "firstName": "Ziad", + "lastName": "Mohamed", + "image": "http://static.lolesports.com/players/1673841867901_silhouette_transparent.png", + "role": "bottom" + }, + { + "id": "109696903264490963", + "summonerName": "Astrai", + "firstName": "Mohamed Amine", + "lastName": "Taha", + "image": "http://static.lolesports.com/players/1673841905154_silhouette_transparent.png", + "role": "support" + } + ] + }, + { + "id": "109696170673691527", + "slug": "slash-lions", + "name": "Slash Lions", + "code": "SL", + "image": "http://static.lolesports.com/teams/1673830725558_SecondaryColor.png", + "alternativeImage": "http://static.lolesports.com/teams/1673830725559_SecondaryColor.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "Arabian League", + "region": "EMEA" + }, + "players": [ + { + "id": "110528604511205353", + "summonerName": "BipolarXD", + "firstName": "Firas", + "lastName": "Mahdhi", + "image": "http://static.lolesports.com/players/1686532654475_placeholder.png", + "role": "bottom" + }, + { + "id": "111813497372932687", + "summonerName": "Kayden", + "firstName": "Chadi", + "lastName": "Hassen", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "111813497423169022", + "summonerName": "Mikamy", + "firstName": "Rayan", + "lastName": "Rayan", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "bottom" + } + ] + }, + { + "id": "109696181355631818", + "slug": "we-scalin", + "name": "WE SCALIN", + "code": "WESC", + "image": "http://static.lolesports.com/teams/1673830888767_WESLogo_white.png", + "alternativeImage": "http://static.lolesports.com/teams/1673830888769_WESLogoWhite.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Arabian League", + "region": "EMEA" + }, + "players": [ + { + "id": "109696858712185387", + "summonerName": "Legendary", + "firstName": "Eyad", + "lastName": "Salaita", + "image": "http://static.lolesports.com/players/1673841225367_silhouette_transparent.png", + "role": "support" + }, + { + "id": "109696860692276137", + "summonerName": "Frizi", + "firstName": "Khaled", + "lastName": "Shenar", + "image": "http://static.lolesports.com/players/1673841255575_silhouette_transparent.png", + "role": "jungle" + }, + { + "id": "109696862727766014", + "summonerName": "3MK MAX", + "firstName": "MHD Sadek", + "lastName": "Kaso", + "image": "http://static.lolesports.com/players/1673841286393_silhouette_transparent.png", + "role": "top" + }, + { + "id": "109696864577051768", + "summonerName": "7amoodchi", + "firstName": "Ahmad", + "lastName": "Yaghi", + "image": "http://static.lolesports.com/players/1673841314723_silhouette_transparent.png", + "role": "mid" + }, + { + "id": "109696870974702379", + "summonerName": "Ace1", + "firstName": "Hamad", + "lastName": "Abdulla", + "image": "http://static.lolesports.com/players/1673841412765_silhouette_transparent.png", + "role": "bottom" + }, + { + "id": "109696874196179503", + "summonerName": "Big Daddy", + "firstName": "Ibrahim", + "lastName": "Almasalmeh", + "image": "http://static.lolesports.com/players/1673841461746_silhouette_transparent.png", + "role": "support" + }, + { + "id": "109696876193142190", + "summonerName": "Corazon", + "firstName": "Zayed", + "lastName": "Alqurashi", + "image": "http://static.lolesports.com/players/1673841491795_silhouette_transparent.png", + "role": "jungle" + }, + { + "id": "109696878237915713", + "summonerName": "Yourzedx", + "firstName": "Ziad", + "lastName": "Ismaiel", + "image": "http://static.lolesports.com/players/1673841523308_silhouette_transparent.png", + "role": "bottom" + }, + { + "id": "109721467648994540", + "summonerName": "maYma", + "firstName": "Mohanad", + "lastName": "Eleshmawy", + "image": "http://static.lolesports.com/players/1674216727384_placeholder.png", + "role": "support" + } + ] + }, + { + "id": "109696189981055882", + "slug": "revenga-esports", + "name": "RevenGa eSports", + "code": "RVG", + "image": "http://static.lolesports.com/teams/1673831020750_noteamlogo-lolesports.png", + "alternativeImage": "http://static.lolesports.com/teams/1673831020750_noteamlogo-lolesports.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "Arabian League", + "region": "EMEA" + }, + "players": [ + { + "id": "109721492050553940", + "summonerName": "SupA Sion", + "firstName": "Jameleddine", + "lastName": "Medeni", + "image": "http://static.lolesports.com/players/1674217102879_placeholder.png", + "role": "mid" + }, + { + "id": "109721494442485638", + "summonerName": "Painlolz", + "firstName": "Radhi", + "lastName": "Garma", + "image": "http://static.lolesports.com/players/1674217138984_placeholder.png", + "role": "support" + }, + { + "id": "109721499301719130", + "summonerName": "Arkillo", + "firstName": "Oussama", + "lastName": "Ben Romdhane", + "image": "http://static.lolesports.com/players/1674217210930_placeholder.png", + "role": "bottom" + }, + { + "id": "109721501237422341", + "summonerName": "Nepheryos", + "firstName": "Ismail", + "lastName": "Magdi", + "image": "http://static.lolesports.com/players/1674217243314_placeholder.png", + "role": "mid" + }, + { + "id": "109721503547909790", + "summonerName": "Guns2", + "firstName": "Aymen", + "lastName": "Rahmani", + "image": "http://static.lolesports.com/players/1674217278735_placeholder.png", + "role": "support" + }, + { + "id": "109763670549689866", + "summonerName": "enricfh", + "firstName": "Enric", + "lastName": "Ferrer", + "image": "http://static.lolesports.com/players/1674860693495_silhouette_transparent.png", + "role": "jungle" + }, + { + "id": "109696947888193577", + "summonerName": "Shadow7", + "firstName": "Abderrahman", + "lastName": "smati", + "image": "http://static.lolesports.com/players/1673842585685_silhouette_transparent.png", + "role": "top" + }, + { + "id": "109696953385359984", + "summonerName": "Kenny1", + "firstName": "Jameleddine", + "lastName": "medeni", + "image": "http://static.lolesports.com/players/1673842669564_silhouette_transparent.png", + "role": "mid" + }, + { + "id": "109696956218474549", + "summonerName": "SCAR", + "firstName": "Sami", + "lastName": "Guezmir", + "image": "http://static.lolesports.com/players/1673842713024_silhouette_transparent.png", + "role": "jungle" + }, + { + "id": "109696958894724600", + "summonerName": "SPIKE", + "firstName": "Oussema", + "lastName": "Sahbeni", + "image": "http://static.lolesports.com/players/1673842753648_silhouette_transparent.png", + "role": "bottom" + } + ] + }, + { + "id": "109697683685398040", + "slug": "magaza", + "name": "MAGAZA", + "code": "MGZ", + "image": "http://static.lolesports.com/teams/1754902785731_EBL_MGZ-MonochromeDarkBG.png", + "alternativeImage": "http://static.lolesports.com/teams/1754902785731_EBL_MGZ-MonochromeLightBG.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Esports Balkan League", + "region": "EMEA" + }, + "players": [ + { + "id": "115009391452166767", + "summonerName": "Draxo5", + "firstName": "Denis", + "lastName": "Borisov", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "102181576078422674", + "summonerName": "behave", + "firstName": "Marcin", + "lastName": "Pawlak", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/behave-hpo1drm4.png", + "role": "jungle" + }, + { + "id": "105530923573568202", + "summonerName": "domoles", + "firstName": "Dominik", + "lastName": "Nowacki", + "image": "http://static.lolesports.com/players/1641837258720_placeholder.png", + "role": "mid" + }, + { + "id": "114262422904467024", + "summonerName": "Sidav", + "firstName": "Sergiusz", + "lastName": "Liberek", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "114018074802505456", + "summonerName": "Rilski", + "firstName": "Ivan", + "lastName": "Mihaylov", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "107603146535494194", + "summonerName": "v1SaG3", + "firstName": "Hristo", + "lastName": "Vangelov", + "image": "http://static.lolesports.com/players/1641893712590_placeholder.png", + "role": "none" + } + ] + }, + { + "id": "109697686032800938", + "slug": "xtremedominators", + "name": "XtremeDominators", + "code": "XD", + "image": "http://static.lolesports.com/teams/1673865814104_EBL_XD-MonochromeDarkBG.png", + "alternativeImage": "http://static.lolesports.com/teams/1673865814105_EBL_XD-MonochromeLightBG.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "Esports Balkan League", + "region": "EMEA" + }, + "players": [ + { + "id": "106371066008890473", + "summonerName": "Boras", + "firstName": "Domagoj", + "lastName": "Boras", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "top" + }, + { + "id": "105553549102364404", + "summonerName": "Saintsu", + "firstName": "Konstantin", + "lastName": "Stikic", + "image": "https://static.lolesports.com/players/download.png", + "role": "jungle" + }, + { + "id": "109697771445223502", + "summonerName": "LeMy", + "firstName": "Mile", + "lastName": "Bujanović", + "image": "http://static.lolesports.com/players/1673855154315_placeholder.png", + "role": "mid" + }, + { + "id": "109697774254218451", + "summonerName": "Komandata", + "firstName": "Kristiyan", + "lastName": "Kanchev", + "image": "http://static.lolesports.com/players/1673855196928_placeholder.png", + "role": "bottom" + }, + { + "id": "105553579007858159", + "summonerName": "Shone", + "firstName": "Nenad", + "lastName": "Savičić", + "image": "https://static.lolesports.com/players/download.png", + "role": "support" + }, + { + "id": "107648405773026913", + "summonerName": "Finicky", + "firstName": "Filip", + "lastName": "Muller", + "image": "http://static.lolesports.com/players/1642584313652_placeholder.png", + "role": "top" + }, + { + "id": "109697780910015447", + "summonerName": "Humnam", + "firstName": "Andrej", + "lastName": "Kukuruzovic", + "image": "http://static.lolesports.com/players/1673855297333_placeholder.png", + "role": "mid" + }, + { + "id": "109697783437515998", + "summonerName": "Djoksi", + "firstName": "Petar", + "lastName": "Djordjevic", + "image": "http://static.lolesports.com/players/1673855337558_placeholder.png", + "role": "support" + }, + { + "id": "109828346275690829", + "summonerName": "Pinki", + "firstName": "Lazar", + "lastName": "Mitrović", + "image": "http://static.lolesports.com/players/1675847562598_placeholder.png", + "role": "bottom" + }, + { + "id": "105553699418465652", + "summonerName": "Boby", + "firstName": "Mihajlo", + "lastName": "Ogarević", + "image": "https://static.lolesports.com/players/download.png", + "role": "jungle" + } + ] + }, + { + "id": "109697689430777005", + "slug": "ankora-gaming", + "name": "Connect Arena Esports", + "code": "CNA", + "image": "http://static.lolesports.com/teams/1744190673821_EBL_CNA-MonochromeDarkBG.png", + "alternativeImage": "http://static.lolesports.com/teams/1744190673821_EBL_CNA-MonochromeLightBG.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Esports Balkan League", + "region": "EMEA" + }, + "players": [ + { + "id": "113963712834145139", + "summonerName": "Burence", + "firstName": "Amel", + "lastName": "Zajic", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "109697721531319221", + "summonerName": "Uroskg", + "firstName": "Uroš", + "lastName": "Nikolić", + "image": "http://static.lolesports.com/players/1673854392504_placeholder.png", + "role": "jungle" + }, + { + "id": "113905592554369578", + "summonerName": "Shizika", + "firstName": "Marko", + "lastName": "Simić", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "113905594049764755", + "summonerName": "Pcelica", + "firstName": "Marko", + "lastName": "Đoković", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "113905597547047046", + "summonerName": "Abyssxd", + "firstName": "Osman", + "lastName": "Hibeljić", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "113905599192438715", + "summonerName": "Darkarus", + "firstName": "Alen", + "lastName": "Selmanović", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "none" + }, + { + "id": "113905601018731937", + "summonerName": "Soge", + "firstName": "Đorđe", + "lastName": "Blagojević", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "none" + }, + { + "id": "109697717704647681", + "summonerName": "Fikus", + "firstName": "Filip", + "lastName": "Mijaličić", + "image": "http://static.lolesports.com/players/1673854334960_placeholder.png", + "role": "none" + }, + { + "id": "114295694432897826", + "summonerName": "Shyr0", + "firstName": "Janda", + "lastName": "Gergely", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "support" + } + ] + }, + { + "id": "109698026697016325", + "slug": "barcelona-bg", + "name": "Barcelona BG", + "code": "BBG", + "image": "http://static.lolesports.com/teams/1673859047332_BLOOD-GAMINGC.png", + "alternativeImage": "http://static.lolesports.com/teams/1673859047332_BLOOD-GAMINGC.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107758072751119561", + "summonerName": "Manjarres", + "firstName": "Luis David", + "lastName": "Manjarres Acosta", + "image": "http://static.lolesports.com/players/1644257699082_placeholder.png", + "role": "jungle" + }, + { + "id": "109698222342275356", + "summonerName": "Whiplash", + "firstName": "Carlos Eduardo", + "lastName": "Lopez Tarazona", + "image": "http://static.lolesports.com/players/1673862034150_placeholder.png", + "role": "support" + }, + { + "id": "107582254745603570", + "summonerName": "Ayeye", + "firstName": "Daniel Adrian", + "lastName": "Ludeña Aviles", + "image": "http://static.lolesports.com/players/1641574928984_placeholder.png", + "role": "top" + }, + { + "id": "109698059165293941", + "summonerName": "H0NE", + "firstName": "Kevin Layo", + "lastName": "Quispe Arenas", + "image": "http://static.lolesports.com/players/1673859544782_placeholder.png", + "role": "jungle" + }, + { + "id": "109698062461427072", + "summonerName": "Deliver", + "firstName": "Juan Miguel", + "lastName": "Bustamante Aldeán", + "image": "http://static.lolesports.com/players/1673859646323_placeholder.png", + "role": "mid" + }, + { + "id": "107582285747439865", + "summonerName": "Wamdejo", + "firstName": "Jesús Sebastián", + "lastName": "Lema Guano", + "image": "http://static.lolesports.com/players/1641575401531_placeholder.png", + "role": "bottom" + }, + { + "id": "109698076377498638", + "summonerName": "Te Ka2", + "firstName": "Fausto Alejandro", + "lastName": "López Samaniego", + "image": "http://static.lolesports.com/players/1673859807048_placeholder.png", + "role": "support" + }, + { + "id": "109698081411111673", + "summonerName": "SARA", + "firstName": "Josue Eduardo", + "lastName": "Osorio Quinto", + "image": "http://static.lolesports.com/players/1673859884051_placeholder.png", + "role": "top" + } + ] + }, + { + "id": "109698030312834058", + "slug": "genbu-gaming", + "name": "Genbu Gaming", + "code": "GNGG", + "image": "http://static.lolesports.com/teams/1673859102435_GENBU-B.png", + "alternativeImage": "http://static.lolesports.com/teams/1673859102437_GENBU-N.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107582735999093244", + "summonerName": "ElOjoInka", + "firstName": "HARVEY DYLAN", + "lastName": "ROLDAN FERNÁNDEZ", + "image": "http://static.lolesports.com/players/1641582272044_placeholder.png", + "role": "jungle" + }, + { + "id": "109698112223772853", + "summonerName": "Megaman", + "firstName": "Ricardo Andres", + "lastName": "Bulgarin Lucin", + "image": "http://static.lolesports.com/players/1673860354247_placeholder.png", + "role": "mid" + }, + { + "id": "109916083460431958", + "summonerName": "LA FIJA", + "firstName": "Jean Piero", + "lastName": "Campoverde Valdez", + "image": "http://static.lolesports.com/players/1677186314953_placeholder.png", + "role": "top" + }, + { + "id": "107582737635658240", + "summonerName": "Terco", + "firstName": "Gianfranco Raul", + "lastName": "Olivares Ogusuki", + "image": "http://static.lolesports.com/players/1641582297313_placeholder.png", + "role": "mid" + }, + { + "id": "107582376627325385", + "summonerName": "Vonix", + "firstName": "Gustavo Ramon", + "lastName": "Campi Ortiz", + "image": "http://static.lolesports.com/players/1641576788551_placeholder.png", + "role": "bottom" + }, + { + "id": "107599453050164685", + "summonerName": "Saeko", + "firstName": "Alejandro", + "lastName": "Hurtado Peña", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "jungle" + }, + { + "id": "109698190188893872", + "summonerName": "Eternal1", + "firstName": "Vinicio Sebastian", + "lastName": "Gaibor Yancha", + "image": "http://static.lolesports.com/players/1673861543129_placeholder.png", + "role": "mid" + }, + { + "id": "109698192237387274", + "summonerName": "Neithan", + "firstName": "Raul Andrés", + "lastName": "Barrios Vergara", + "image": "http://static.lolesports.com/players/1673861575358_placeholder.png", + "role": "bottom" + }, + { + "id": "109698194586337535", + "summonerName": "Maceta", + "firstName": "Steven Andrés", + "lastName": "Urriola Valenzuela", + "image": "http://static.lolesports.com/players/1673861610931_placeholder.png", + "role": "support" + } + ] + }, + { + "id": "109698757443650056", + "slug": "mad-kings", + "name": "Mad Kings", + "code": "MKE", + "image": "http://static.lolesports.com/teams/1673870201139_MAD-KINGS-B-700X700.png", + "alternativeImage": "http://static.lolesports.com/teams/1673870201139_MAD-KINGS-N-700X700.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107583615695113271", + "summonerName": "Siicked", + "firstName": "Juan Cruz", + "lastName": "Berga", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "108319837836257690", + "summonerName": "Yoyomax", + "firstName": "Juan David", + "lastName": "Indigoyen Roncal", + "image": "https://static.lolesports.com/players/download.png", + "role": "jungle" + }, + { + "id": "109698729919928362", + "summonerName": "Melody", + "firstName": "Melissa", + "lastName": "Vargas Cifuentes", + "image": "https://static.lolesports.com/players/download.png", + "role": "support" + }, + { + "id": "107582812432419390", + "summonerName": "Alex Mercer", + "firstName": "Giomar Alfredo", + "lastName": "Ojeda Molina", + "image": "http://static.lolesports.com/players/1641583438644_placeholder.png", + "role": "mid" + }, + { + "id": "109795006008096268", + "summonerName": "667", + "firstName": "Miguel Angel", + "lastName": "Rivasplata Cabana", + "image": "http://static.lolesports.com/players/1675338840156_placeholder.png", + "role": "jungle" + }, + { + "id": "107582824781729880", + "summonerName": "Xamexx", + "firstName": "Andres Eduardo", + "lastName": "Colan Gutierrez", + "image": "http://static.lolesports.com/players/1641583624770_placeholder.png", + "role": "bottom" + }, + { + "id": "108318778731333950", + "summonerName": "224", + "firstName": "Cavero Egusquiza Huilca", + "lastName": "Sadhu Isaac", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "support" + } + ] + }, + { + "id": "109698855806033734", + "slug": "universitario-esports", + "name": "Universitario Esports", + "code": "UE", + "image": "http://static.lolesports.com/teams/1678371425024_UNIVERSITARIO-C-700X700.png", + "alternativeImage": "http://static.lolesports.com/teams/1678371425025_UNIVERSITARIO-C-700X700.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107582733981405150", + "summonerName": "Abaddon", + "firstName": "Cristian Antony", + "lastName": "Almanza Yurivilca", + "image": "http://static.lolesports.com/players/1641582240987_placeholder.png", + "role": "top" + }, + { + "id": "109698813812677747", + "summonerName": "Annataqui", + "firstName": "Anderson Nahum", + "lastName": "Talledo Quispe", + "image": "http://static.lolesports.com/players/1673871059982_placeholder.png", + "role": "jungle" + }, + { + "id": "109698816569892671", + "summonerName": "Overload", + "firstName": "Facundo", + "lastName": "Piccininno", + "image": "http://static.lolesports.com/players/1673871102009_placeholder.png", + "role": "mid" + }, + { + "id": "109698818612479470", + "summonerName": "AlienBoy", + "firstName": "Franko Matias", + "lastName": "Feliciano Benito", + "image": "http://static.lolesports.com/players/1673871132679_placeholder.png", + "role": "bottom" + }, + { + "id": "109698823590321278", + "summonerName": " khaN1996", + "firstName": "Stwar Edinson", + "lastName": "Bolige Romero", + "image": "http://static.lolesports.com/players/1673871208844_placeholder.png", + "role": "support" + }, + { + "id": "109698826517682555", + "summonerName": "Galeon", + "firstName": "Italo Samuel", + "lastName": "Sanhueza Ruiz", + "image": "http://static.lolesports.com/players/1673871253881_placeholder.png", + "role": "mid" + }, + { + "id": "109698828631611775", + "summonerName": "Mooncacke", + "firstName": "Alejandro Stefano", + "lastName": "Bravo Quiroga", + "image": "http://static.lolesports.com/players/1673871285726_placeholder.png", + "role": "bottom" + }, + { + "id": "107582773523958538", + "summonerName": "Raglem", + "firstName": "Juan Carlos Raul", + "lastName": "Cervantes Almonte", + "image": "http://static.lolesports.com/players/1641582843909_placeholder.png", + "role": "top" + }, + { + "id": "99921042948369015", + "summonerName": "Snoopy", + "firstName": "Renato", + "lastName": "Chávez", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/snoopy-izpl8lqp.png", + "role": "bottom" + } + ] + }, + { + "id": "109699038581250169", + "slug": "red-eyes-esports", + "name": "Red Eyes Esports", + "code": "RDY", + "image": "http://static.lolesports.com/teams/1673874483065_RED-BLANCO.png", + "alternativeImage": "http://static.lolesports.com/teams/1673874483067_RED-BLANCO.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "109807890482619918", + "summonerName": "Saifer", + "firstName": "Gaston", + "lastName": "Pedalino Vera", + "image": "http://static.lolesports.com/players/1675535435749_silhouette_transparent.png", + "role": "mid" + }, + { + "id": "107582775266888207", + "summonerName": "Ruyi", + "firstName": "Robert Mikail", + "lastName": "Chiok Mendez", + "image": "http://static.lolesports.com/players/1641582869948_placeholder.png", + "role": "jungle" + }, + { + "id": "107598802989667554", + "summonerName": "Dertako", + "firstName": "Daniel Eduardo", + "lastName": "González Acuña", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "top" + }, + { + "id": "109716413783281101", + "summonerName": "Rainight", + "firstName": "Branco Lautaro", + "lastName": "Antipi Soto", + "image": "http://static.lolesports.com/players/1674139614093_placeholder.png", + "role": "jungle" + }, + { + "id": "109716410594430409", + "summonerName": "satoCHINO", + "firstName": "Satoshi Luis", + "lastName": "Kou Kishimoto", + "image": "http://static.lolesports.com/players/1674139565147_placeholder.png", + "role": "mid" + }, + { + "id": "109716391767969207", + "summonerName": "LilCarry", + "firstName": "Nicolás", + "lastName": "Peña Junco", + "image": "http://static.lolesports.com/players/1674139278338_placeholder.png", + "role": "bottom" + }, + { + "id": "108131925639926479", + "summonerName": "ZombieHog", + "firstName": "Martinez Arriola", + "lastName": "Mateo", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "bottom" + }, + { + "id": "109716401661864756", + "summonerName": "Cassius", + "firstName": "Alvaro Marcelo", + "lastName": "Caballero Valqui", + "image": "http://static.lolesports.com/players/1674139429020_placeholder.png", + "role": "support" + }, + { + "id": "109716393571886607", + "summonerName": "SteaD", + "firstName": "Stephano Adrian", + "lastName": "Ascuña Vaccaro ", + "image": "http://static.lolesports.com/players/1674139305266_placeholder.png", + "role": "support" + } + ] + }, + { + "id": "109699042809864069", + "slug": "vipers", + "name": "Vipers", + "code": "VIPS", + "image": "http://static.lolesports.com/teams/1673874548541_VIPERS-B-700X700.png", + "alternativeImage": "http://static.lolesports.com/teams/1673874548543_VIPERS-C-700X700.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "109716544317754862", + "summonerName": "ByFalco", + "firstName": "Cristhian Alberto", + "lastName": "Arcaya Mendoza", + "image": "http://static.lolesports.com/players/1674141605715_placeholder.png", + "role": "top" + }, + { + "id": "107582755247706087", + "summonerName": "Leinad", + "firstName": "Juan Daniel", + "lastName": "Villalba Castillo", + "image": "http://static.lolesports.com/players/1641582565592_placeholder.png", + "role": "jungle" + }, + { + "id": "109716548054084425", + "summonerName": "Uparela", + "firstName": "Juan Sebastian", + "lastName": "Gomez Uparela", + "image": "http://static.lolesports.com/players/1674141660792_placeholder.png", + "role": "mid" + }, + { + "id": "109716550091935218", + "summonerName": "S34NDR0M3", + "firstName": "Sebastián Andrés", + "lastName": "Droguett Melgar", + "image": "http://static.lolesports.com/players/1674141693790_placeholder.png", + "role": "bottom" + }, + { + "id": "109716554374057462", + "summonerName": "Shiku", + "firstName": "Carlo Andre", + "lastName": "Carrion Zapata", + "image": "http://static.lolesports.com/players/1674141759030_placeholder.png", + "role": "support" + }, + { + "id": "109716570886712004", + "summonerName": "Jacklong", + "firstName": "Gabriel David", + "lastName": "Dolores Quiñonez", + "image": "http://static.lolesports.com/players/1674142010802_placeholder.png", + "role": "top" + }, + { + "id": "104843450356315626", + "summonerName": "Kurckoo", + "firstName": "Franco", + "lastName": "Cañete", + "image": "http://static.lolesports.com/players/1642087475938_placeholder.png", + "role": "mid" + }, + { + "id": "107582851787280495", + "summonerName": "nainess", + "firstName": "Manuel Antonio", + "lastName": "Cáceres Morales", + "image": "http://static.lolesports.com/players/1641584038734_placeholder.png", + "role": "jungle" + } + ] + }, + { + "id": "109704625422425316", + "slug": "benelux-united", + "name": "Benelux United", + "code": "BLXX", + "image": "http://static.lolesports.com/teams/1674282750487_BeneluxUnitedV2.png", + "alternativeImage": "http://static.lolesports.com/teams/1674282750489_BeneluxUnitedV2.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "107065257406875937", + "summonerName": "Tchokez", + "firstName": "Tchokez", + "lastName": "Tchokez", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "support" + }, + { + "id": "109658978603616703", + "summonerName": "Shamber", + "firstName": "Hadrien ", + "lastName": "Robalo Marques", + "image": "https://static.lolesports.com/players/download.png", + "role": "none" + }, + { + "id": "107673638873404021", + "summonerName": "Theoloris", + "firstName": "Théo", + "lastName": "Combaz", + "image": "http://static.lolesports.com/players/1642969344463_placeholder.png", + "role": "top" + }, + { + "id": "109854544319694919", + "summonerName": "Clown", + "firstName": "Paul", + "lastName": "Biharé", + "image": "http://static.lolesports.com/players/1676247316076_silhouette_transparent.png", + "role": "jungle" + }, + { + "id": "108396622932263411", + "summonerName": "GeeGee", + "firstName": "Stijn ", + "lastName": "Drissen", + "image": "http://static.lolesports.com/players/1654001197211_placeholder.png", + "role": "bottom" + }, + { + "id": "109859824991568108", + "summonerName": "Monstrob", + "firstName": "Aurélien", + "lastName": "Farenc", + "image": "http://static.lolesports.com/players/1676327892268_silhouette_transparent.png", + "role": "mid" + } + ] + }, + { + "id": "109704816337374156", + "slug": "team-paradox", + "name": "Team Paradox", + "code": "TPX", + "image": "http://static.lolesports.com/teams/1736524639092_redminimal.png", + "alternativeImage": "http://static.lolesports.com/teams/1736524639092_redminimal.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Hellenic Legends League", + "region": "EMEA" + }, + "players": [ + { + "id": "111760516279053265", + "summonerName": "Wind1", + "firstName": "Martin", + "lastName": "Prokopovic", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "108353501983434860", + "summonerName": "Kokos", + "firstName": "Krzoska", + "lastName": "Dominik", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "jungle" + }, + { + "id": "110530765783366400", + "summonerName": "Satan", + "firstName": "PANAGIOTIS", + "lastName": "STAVROU", + "image": "http://static.lolesports.com/players/1686565639394_placeholder.png", + "role": "mid" + }, + { + "id": "111772061134373723", + "summonerName": "Jamie", + "firstName": "YEVHENII", + "lastName": "SOROKIN", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "107065249848398720", + "summonerName": "Undefined", + "firstName": "Achilleas", + "lastName": "Karagiannis", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "support" + }, + { + "id": "103946702525726916", + "summonerName": "Matislaw", + "firstName": "Mateusz ", + "lastName": "Zagórski", + "image": "http://static.lolesports.com/players/1674834620774_NNO_Matislaw.png", + "role": "mid" + }, + { + "id": "110528674833321985", + "summonerName": "MrPhant0m", + "firstName": "Markos", + "lastName": "Katsikas", + "image": "http://static.lolesports.com/players/1686533727337_placeholder.png", + "role": "bottom" + } + ] + }, + { + "id": "109704857183642792", + "slug": "action-per-minute", + "name": "Actions Per Minute", + "code": "APM", + "image": "http://static.lolesports.com/teams/1736778466670_APM_Actions_Per_Minute.png", + "alternativeImage": "http://static.lolesports.com/teams/1736778466670_APM_Actions_Per_Minute.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Hellenic Legends League", + "region": "EMEA" + }, + "players": [ + { + "id": "110441736425651476", + "summonerName": "Loading", + "firstName": "BERKAY", + "lastName": "CELEBI", + "image": "http://static.lolesports.com/players/1685207159979_placeholder.png", + "role": "top" + }, + { + "id": "111726946748886088", + "summonerName": "froy", + "firstName": "Kerem", + "lastName": "Çan", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "110441449905789455", + "summonerName": "IntoxqZz", + "firstName": "OLIVER", + "lastName": "GANJOUEFF", + "image": "http://static.lolesports.com/players/1685202788547_placeholder.png", + "role": "mid" + }, + { + "id": "99591593529595477", + "summonerName": "Ozgur", + "firstName": "Can Ozgur", + "lastName": "Kara", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/ozgur-adto6xa0.png", + "role": "bottom" + }, + { + "id": "114818266692067900", + "summonerName": "CHIMP", + "firstName": "Achileas Marios", + "lastName": "Karagiannis", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "114818267891376966", + "summonerName": "H1tokiri", + "firstName": "Dimitris", + "lastName": "Tsavdaris", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "114818269085452324", + "summonerName": "Zekali", + "firstName": "Semir", + "lastName": "Rustemović", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "109704825714318882", + "summonerName": "Tozue", + "firstName": "PANAGIOTIS", + "lastName": "IOAKEIMIDIS", + "image": "http://static.lolesports.com/players/1673962793003_placeholder.png", + "role": "top" + }, + { + "id": "111771928156166447", + "summonerName": "haoswen", + "firstName": "UMUT", + "lastName": "DEMIREL", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "106250640776225238", + "summonerName": "Eune", + "firstName": "Alexandros", + "lastName": "Kanarias", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "bottom" + } + ] + }, + { + "id": "109704890728013158", + "slug": "doomed-kings", + "name": "DOOMED KINGS", + "code": "DKE", + "image": "http://static.lolesports.com/teams/1673963786490_LOLESPORTSICON.png", + "alternativeImage": "http://static.lolesports.com/teams/1673963786491_LOLESPORTSICON.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "109825155743741297", + "summonerName": "Madara1", + "firstName": "GIWRGOS", + "lastName": "STAVRIANOS", + "image": "http://static.lolesports.com/players/1675798868190_placeholder.png", + "role": "top" + }, + { + "id": "109825141453983065", + "summonerName": "MVPain", + "firstName": "DIMITRIS", + "lastName": "TZIAPRAZIS", + "image": "http://static.lolesports.com/players/1675798663401_placeholder.png", + "role": "mid" + }, + { + "id": "109825140561633005", + "summonerName": "Kolpo", + "firstName": "GIORGOS", + "lastName": "ANTHOULAKIS", + "image": "http://static.lolesports.com/players/1675798649230_placeholder.png", + "role": "support" + }, + { + "id": "109897082628787034", + "summonerName": "MrClean", + "firstName": "CHATZIASLAN", + "lastName": "APOSTOLOS", + "image": "http://static.lolesports.com/players/1676896405057_placeholder.png", + "role": "jungle" + }, + { + "id": "107217827490160165", + "summonerName": "Lag", + "firstName": "Meletis", + "lastName": "Gkikas Peppas", + "image": "http://static.lolesports.com/players/1636014210677_placeholder.jpg", + "role": "top" + }, + { + "id": "109704867704988848", + "summonerName": "teodrak21", + "firstName": "XRISTOS THEODOROS", + "lastName": "DRAKOPOULOS", + "image": "http://static.lolesports.com/players/1673963433632_placeholder.png", + "role": "mid" + }, + { + "id": "109704869853551963", + "summonerName": "TakenSpirit", + "firstName": "RIDIAN", + "lastName": "MANDREJA", + "image": "http://static.lolesports.com/players/1673963466717_placeholder.png", + "role": "bottom" + }, + { + "id": "109704871732315996", + "summonerName": "NioColt", + "firstName": "GEORGIOS", + "lastName": "DASKALOPOULOS", + "image": "http://static.lolesports.com/players/1673963495158_placeholder.png", + "role": "support" + } + ] + }, + { + "id": "109704954158795780", + "slug": "team-insidious", + "name": "Team Insidious", + "code": "IN5", + "image": "http://static.lolesports.com/teams/1715653079704_INSTeamInsidious12.png", + "alternativeImage": "http://static.lolesports.com/teams/1715653079704_INSTeamInsidious12.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "105548593156776442", + "summonerName": "Libra", + "firstName": "Emre Ercan", + "lastName": "Güler", + "image": "http://static.lolesports.com/players/eSports_male_NoPlayer.png", + "role": "top" + }, + { + "id": "106307376410992717", + "summonerName": "Noodle", + "firstName": "Kim ", + "lastName": "Kroon", + "image": "http://static.lolesports.com/players/1675090081786_Noodle.png", + "role": "jungle" + }, + { + "id": "111181770140275480", + "summonerName": "Mentos", + "firstName": "ALEXANDROS", + "lastName": "PAPADIMITRIOU", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "105530950989220354", + "summonerName": "Czypsy", + "firstName": "Kacper", + "lastName": "Zaparucha", + "image": "http://static.lolesports.com/players/pobrane2.png", + "role": "support" + }, + { + "id": "110490534916193861", + "summonerName": "Mysterias", + "firstName": "Tim", + "lastName": "Vaarties", + "image": "http://static.lolesports.com/players/1685951768286_placeholder.png", + "role": "none" + }, + { + "id": "115093890550908938", + "summonerName": "Punchy", + "firstName": "Simon ", + "lastName": "Bundi", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "111805487264395938", + "summonerName": "Speedy1", + "firstName": "LOUKAS", + "lastName": "PREKAS", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + } + ] + }, + { + "id": "109709693940605922", + "slug": "exile-esports", + "name": "EXILE Esports", + "code": "EXE", + "image": "http://static.lolesports.com/teams/1739089858844_exile_color.png", + "alternativeImage": "http://static.lolesports.com/teams/1739088587290_image10.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "109709696183651863", + "slug": "narcis", + "name": "NARCIS", + "code": "NRC", + "image": "http://static.lolesports.com/teams/1674037108336_LOLESPORTSICON.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "105593138842753020", + "summonerName": "Sysak", + "firstName": "David", + "lastName": "Sýs", + "image": "http://static.lolesports.com/players/download.png", + "role": "support" + }, + { + "id": "106382516106228146", + "summonerName": "Haklbery", + "firstName": "David", + "lastName": "Hakl", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "top" + }, + { + "id": "106425063512860450", + "summonerName": "Dolis", + "firstName": "Petr", + "lastName": "Dolejš", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "109709914440803449", + "summonerName": "Pongo", + "firstName": "Ponížil", + "lastName": "Adam", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "jungle" + }, + { + "id": "108449777022953947", + "summonerName": "Worthless", + "firstName": "Navrátil", + "lastName": "Ondřej", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "bottom" + }, + { + "id": "109709915179208366", + "summonerName": "Zelvicka", + "firstName": "Pospíšil", + "lastName": "Tomáš", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "bottom" + }, + { + "id": "106382517215674981", + "summonerName": "Petipino", + "firstName": "Martin", + "lastName": "Majer", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "top" + }, + { + "id": "104727085639988028", + "summonerName": "Jellou", + "firstName": "Jiří", + "lastName": "Linhart", + "image": "http://static.lolesports.com/players/1598008506287_czekolad-51vwzmjl.png", + "role": "jungle" + } + ] + }, + { + "id": "109709699891831060", + "slug": "fly5", + "name": "Fly5", + "code": "FLY5", + "image": "http://static.lolesports.com/teams/1674037164724_LOLESPORTSICON.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "111813496696702428", + "summonerName": "NBA", + "firstName": "Ruslan", + "lastName": "Rafikovic", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "110706348678583178", + "summonerName": "Shigier", + "firstName": "Dawid", + "lastName": "Golecki", + "image": "http://static.lolesports.com/players/1689244815022_placeholder.png", + "role": "mid" + }, + { + "id": "113202985462135643", + "summonerName": "AAdaMM", + "firstName": "Adam", + "lastName": "Uhlík", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "105593317794602266", + "summonerName": "Charca", + "firstName": "Tibor", + "lastName": "Charčenko", + "image": "http://static.lolesports.com/players/placeholder_.jpg", + "role": "bottom" + }, + { + "id": "110494464037640473", + "summonerName": "0ri", + "firstName": "Adam", + "lastName": "Matěj", + "image": "http://static.lolesports.com/players/1686011716853_silhouette_transparent.png", + "role": "jungle" + }, + { + "id": "107151347828447306", + "summonerName": "Toybu", + "firstName": "Radek", + "lastName": "Kudrna", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "mid" + }, + { + "id": "111122362027813307", + "summonerName": "BOLD", + "firstName": "adam", + "lastName": "viznar", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "108396065890465552", + "summonerName": "Marlley", + "firstName": "Jakub", + "lastName": "Urban", + "image": "http://static.lolesports.com/players/1653992698790_placeholder.png", + "role": "support" + }, + { + "id": "107693193455185511", + "summonerName": "Focuss", + "firstName": "David", + "lastName": "Černý", + "image": "http://static.lolesports.com/players/1643267719149_placeholder.png", + "role": "bottom" + } + ] + }, + { + "id": "109710933813972992", + "slug": "senshi-esports-club", + "name": "Senshi Esports Club", + "code": "SEC", + "image": "http://static.lolesports.com/teams/1705720730249_SEC_new_logo24.png", + "alternativeImage": "http://static.lolesports.com/teams/1705720730250_SEC_new_logo24.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107655180114069707", + "summonerName": "Albinha", + "firstName": "Hugo", + "lastName": "Canteiro", + "image": "http://static.lolesports.com/players/1642687683378_placeholder.png", + "role": "jungle" + }, + { + "id": "109922362665178918", + "summonerName": "Rehkz", + "firstName": "Vincente", + "lastName": "Laia", + "image": "http://static.lolesports.com/players/1677282140885_silhouette_transparent1.png", + "role": "bottom" + }, + { + "id": "109710893427861269", + "summonerName": "Rafflees", + "firstName": "Rafael", + "lastName": "Pinto", + "image": "http://static.lolesports.com/players/1674055381226_placeholder.png", + "role": "support" + }, + { + "id": "107610001700087838", + "summonerName": "Exiled", + "firstName": "Bruno", + "lastName": "Machado", + "image": "https://static.lolesports.com/players/download.png", + "role": "support" + }, + { + "id": "107610091205486725", + "summonerName": "Tigaz", + "firstName": "Tiago", + "lastName": "Fonseca", + "image": "http://static.lolesports.com/players/1646766337673_Tigaz.png", + "role": "jungle" + }, + { + "id": "112044468868112387", + "summonerName": "OCareca1", + "firstName": "Eduardo", + "lastName": "Oliveira", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + }, + { + "id": "109711104584584086", + "summonerName": "Luchoo", + "firstName": "Lachezar", + "lastName": "Pavlov", + "image": "http://static.lolesports.com/players/1674058603014_placeholder.png", + "role": "jungle" + }, + { + "id": "111782179440229890", + "summonerName": "Babu", + "firstName": "Gonzalo", + "lastName": "Torralba", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "110462448581954960", + "summonerName": "V1dde", + "firstName": "Vidar", + "lastName": "Engstam", + "image": "http://static.lolesports.com/players/1685523201070_placeholder.png", + "role": "mid" + }, + { + "id": "111782179491479047", + "summonerName": "Notod4Y", + "firstName": "Vítor", + "lastName": "Costa", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "111782179552410672", + "summonerName": "Legend", + "firstName": "Luís", + "lastName": "Luís\tFernandes", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + } + ] + }, + { + "id": "109711086893682736", + "slug": "hurricane-of-feathers", + "name": "HOF Esports", + "code": "HOF", + "image": "http://static.lolesports.com/teams/1738418386607_hof_c.png", + "alternativeImage": "http://static.lolesports.com/teams/1738418386608_hof_c.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Liga Portuguesa", + "region": "EMEA" + }, + "players": [ + { + "id": "114944473464880439", + "summonerName": "Ghost2", + "firstName": "Bernardo", + "lastName": "Cardoso", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "114944473543201185", + "summonerName": "Phlloz", + "firstName": "Vítor ", + "lastName": "Teixeira", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "114944473623070958", + "summonerName": "Silence", + "firstName": "José ", + "lastName": "Moura", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "114944473682446579", + "summonerName": "Leazor", + "firstName": "Nuno ", + "lastName": "Pinheiro", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "114944473758092039", + "summonerName": "Sashimi", + "firstName": "Filipe ", + "lastName": "Felizardo", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "114944473843402999", + "summonerName": "Julzh", + "firstName": "Júlio ", + "lastName": "Da Silva", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "top" + } + ] + }, + { + "id": "109711125979505604", + "slug": "spicy-gorillas-esports", + "name": "Spicy Gorillas Esports", + "code": "SGL", + "image": "http://static.lolesports.com/teams/1674058930922_LOLESPORTSICON.png", + "alternativeImage": "http://static.lolesports.com/teams/1674058930924_LOLESPORTSICON.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "105589323771073653", + "summonerName": "Renas", + "firstName": "Renato", + "lastName": "Ferreira", + "image": "https://static.lolesports.com/players/download.png", + "role": "top" + }, + { + "id": "110462448581954960", + "summonerName": "V1dde", + "firstName": "Vidar", + "lastName": "Engstam", + "image": "http://static.lolesports.com/players/1685523201070_placeholder.png", + "role": "mid" + } + ] + }, + { + "id": "109711158608667512", + "slug": "panthers-esports-club", + "name": "PANTHERS Esports Club", + "code": "PTH", + "image": "http://static.lolesports.com/teams/1674059428797_LOLESPORTSICON.png", + "alternativeImage": "http://static.lolesports.com/teams/1674059428798_LOLESPORTSICON.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "110462481909673089", + "summonerName": "NikiBombka", + "firstName": "Nikodem", + "lastName": "Sieradzki", + "image": "http://static.lolesports.com/players/1685523709699_placeholder.png", + "role": "jungle" + }, + { + "id": "109711144835916765", + "summonerName": "arutnevjr", + "firstName": "João", + "lastName": "Leitão", + "image": "http://static.lolesports.com/players/1674059217402_placeholder.png", + "role": "mid" + }, + { + "id": "110462491317759110", + "summonerName": "Mantorras", + "firstName": "João ", + "lastName": "Conceição", + "image": "http://static.lolesports.com/players/1685523853106_placeholder.png", + "role": "support" + }, + { + "id": "110462493457656743", + "summonerName": "Revenant", + "firstName": "David", + "lastName": "Monteiro", + "image": "http://static.lolesports.com/players/1685523886401_placeholder.png", + "role": "jungle" + }, + { + "id": "110516262064500821", + "summonerName": "Bola10", + "firstName": "Tiago", + "lastName": "Alonso", + "image": "http://static.lolesports.com/players/1686344327989_silhouette_transparent.png", + "role": "mid" + }, + { + "id": "109711135438360667", + "summonerName": "ritmo", + "firstName": "Tomás", + "lastName": "Cardoso", + "image": "http://static.lolesports.com/players/1674059073890_placeholder.png", + "role": "jungle" + }, + { + "id": "109711142885172185", + "summonerName": "Arutnevvvv", + "firstName": "José", + "lastName": "Ventura", + "image": "http://static.lolesports.com/players/1674059187155_placeholder.png", + "role": "bottom" + } + ] + }, + { + "id": "109749282155661504", + "slug": "apocalypse-esports", + "name": "Apocalypse eSports", + "code": "APO", + "image": "http://static.lolesports.com/teams/1674647372880_logobianco1-apocalypseesports.png", + "alternativeImage": "http://static.lolesports.com/teams/1674647372880_logobianco1-apocalypseesports.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "109749146403273283", + "summonerName": "Joos", + "firstName": "Louis", + "lastName": "Aranaz", + "image": "http://static.lolesports.com/players/1674639076602_placeholder.png", + "role": "top" + }, + { + "id": "108448765235450806", + "summonerName": "CloudStrike", + "firstName": "Andonia", + "lastName": "Michele", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "support" + }, + { + "id": "109932318308013220", + "summonerName": "WSH BlEN", + "firstName": "Arthur", + "lastName": "MAZEAS", + "image": "http://static.lolesports.com/players/1677434053204_silhouette_transparent.png", + "role": "top" + }, + { + "id": "109749160186546364", + "summonerName": "Sheshwa", + "firstName": "Lorenzo", + "lastName": "Elli", + "image": "http://static.lolesports.com/players/1674639286265_placeholder.png", + "role": "none" + }, + { + "id": "110032443443245199", + "summonerName": "Kamyk1", + "firstName": "Kamil ", + "lastName": "Siejak", + "image": "http://static.lolesports.com/players/1678961841656_placeholder.png", + "role": "bottom" + }, + { + "id": "110490478480814263", + "summonerName": "TheMountain", + "firstName": "Marco", + "lastName": "Benvenuto", + "image": "http://static.lolesports.com/players/1685950907290_placeholder.png", + "role": "top" + }, + { + "id": "110490467618192944", + "summonerName": "YoOlek", + "firstName": "Oliver", + "lastName": "Herceg", + "image": "http://static.lolesports.com/players/1685950741218_placeholder.png", + "role": "mid" + }, + { + "id": "110513874200285900", + "summonerName": "Fede03", + "firstName": "Federico", + "lastName": "Lecca", + "image": "http://static.lolesports.com/players/1686307887177_placeholder.png", + "role": "none" + }, + { + "id": "109790573731104357", + "summonerName": "Smoke", + "firstName": "CLAUDIO", + "lastName": "AVALLONE", + "image": "http://static.lolesports.com/players/1675271198393_placeholder.png", + "role": "support" + } + ] + }, + { + "id": "109749376267590495", + "slug": "away-from-normal", + "name": "Away From Normal", + "code": "AFN", + "image": "http://static.lolesports.com/teams/1674646709785_IMG_20221124_123505_510-Damiano1.png", + "alternativeImage": "http://static.lolesports.com/teams/1674646709787_IMG_20221124_123505_510-Damiano1.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "110412382861794120", + "summonerName": "Ihsnet", + "firstName": "Patryk", + "lastName": "Zubow", + "image": "http://static.lolesports.com/players/1684759257199_placeholder.png", + "role": "mid" + }, + { + "id": "108208859538892926", + "summonerName": "Pinkmin", + "firstName": "Javier", + "lastName": "Fernández Galindo", + "image": "http://static.lolesports.com/players/1651136157357_placeholder.png", + "role": "support" + }, + { + "id": "110490541679645322", + "summonerName": "Laurus", + "firstName": "Lorenzo", + "lastName": "Faiella", + "image": "http://static.lolesports.com/players/1685951871710_placeholder.png", + "role": "bottom" + }, + { + "id": "108396622932263411", + "summonerName": "GeeGee", + "firstName": "Stijn ", + "lastName": "Drissen", + "image": "http://static.lolesports.com/players/1654001197211_placeholder.png", + "role": "bottom" + }, + { + "id": "109749344293643044", + "summonerName": "aChuckArell", + "firstName": "Giuseppe Riccardo", + "lastName": "Pugliese", + "image": "http://static.lolesports.com/players/1674642096332_placeholder.png", + "role": "support" + }, + { + "id": "107105620416437215", + "summonerName": "Firejack", + "firstName": "Lorenzo ", + "lastName": "Castigliego", + "image": "https://static.lolesports.com/players/download.png", + "role": "top" + } + ] + }, + { + "id": "109749417497882686", + "slug": "deltaland", + "name": "DELTALAND", + "code": "DLTL", + "image": "http://static.lolesports.com/teams/1674647261879_logorosso_trasparente-Marcello.png", + "alternativeImage": "http://static.lolesports.com/teams/1674647261881_logorosso_trasparente-Marcello.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107633761333999470", + "summonerName": "Molik", + "firstName": "Marcin", + "lastName": "Sitko", + "image": "http://static.lolesports.com/players/1642360856714_placeholder.png", + "role": "support" + }, + { + "id": "107614614738365539", + "summonerName": "PesE", + "firstName": "Mattia", + "lastName": "Pesenti", + "image": "http://static.lolesports.com/players/1642068700209_placeholder.png", + "role": "top" + }, + { + "id": "108522146753681650", + "summonerName": "Skypture", + "firstName": "Ulaş ", + "lastName": "Doruk", + "image": "http://static.lolesports.com/players/1657725535818_placeholder.png", + "role": "bottom" + }, + { + "id": "106301590489885682", + "summonerName": "Vyct0r", + "firstName": "Diego", + "lastName": "Piccardi", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "mid" + }, + { + "id": "109754088484991412", + "summonerName": "Zorro", + "firstName": "Giuseppe", + "lastName": "Calì", + "image": "http://static.lolesports.com/players/1674714483846_placeholder.png", + "role": "mid" + }, + { + "id": "108390748836487372", + "summonerName": "Sol", + "firstName": "Francesco", + "lastName": "Basili", + "image": "http://static.lolesports.com/players/1653911567293_placeholder.png", + "role": "support" + }, + { + "id": "110490651220639389", + "summonerName": "Cleanthus", + "firstName": "Nikola", + "lastName": "Bezinarevic", + "image": "http://static.lolesports.com/players/1685953543104_placeholder.png", + "role": "bottom" + } + ] + }, + { + "id": "109749493607708438", + "slug": "enemi3s", + "name": "ENEMI3S", + "code": "NM3", + "image": "http://static.lolesports.com/teams/1685606200715_PNGLOGOWHITE-SergioFederico.png", + "alternativeImage": "http://static.lolesports.com/teams/1674647314054_LOGONERO-TommasoOglino.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "111811748296585888", + "summonerName": "V1K", + "firstName": "Viktor", + "lastName": "Vasileski", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "99322408698597331", + "summonerName": "Kadir", + "firstName": "Kadirkcan", + "lastName": "Mumcuoĝlu", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/kadir-8pr9ekzc.png", + "role": "jungle" + }, + { + "id": "110442614728546763", + "summonerName": "TheCheeng", + "firstName": "Cheng", + "lastName": "Yiji", + "image": "http://static.lolesports.com/players/1685220559360_silhouette_transparent.png", + "role": "top" + } + ] + }, + { + "id": "109749536646241163", + "slug": "underworld-esports", + "name": "Underworld Esports", + "code": "UW", + "image": "http://static.lolesports.com/teams/1737015350761_LOGO_UW_DEFINITIVO_bianco.png", + "alternativeImage": "http://static.lolesports.com/teams/1674646525722_Logosenzanome-AlessioFalzone.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LoL Italian Tournament", + "region": "EMEA" + }, + "players": [ + { + "id": "111726950679401662", + "summonerName": "Dionelux", + "firstName": "Yağız", + "lastName": "zvarna", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "109749518604499605", + "summonerName": "Inzuhh", + "firstName": "Vincenzo", + "lastName": "Battaglia", + "image": "http://static.lolesports.com/players/1674644756009_placeholder.png", + "role": "mid" + }, + { + "id": "110490841988923221", + "summonerName": "Zewih", + "firstName": "Simone", + "lastName": "Dell'Avo", + "image": "http://static.lolesports.com/players/1685956454169_placeholder.png", + "role": "bottom" + }, + { + "id": "108390787753644668", + "summonerName": "Mikellazzo", + "firstName": "Mauro", + "lastName": "Boglioli", + "image": "http://static.lolesports.com/players/1653912161188_placeholder.png", + "role": "top" + }, + { + "id": "108448763955341467", + "summonerName": "Tiwaz", + "firstName": "De Bellis", + "lastName": "Giordano ", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "bottom" + }, + { + "id": "109748952485279435", + "summonerName": "MattyNarcy", + "firstName": "Giuseppe", + "lastName": "Capogrosso", + "image": "http://static.lolesports.com/players/1674636117605_placeholder.png", + "role": "support" + }, + { + "id": "113837364581339128", + "summonerName": "Jeykup", + "firstName": "Yakup Enes", + "lastName": "Ermişer", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + } + ] + }, + { + "id": "109749613387843867", + "slug": "yutoru", + "name": "Yutoru", + "code": "YTR", + "image": "http://static.lolesports.com/teams/1674646203541_LogoYutoru-DarioRizzo.jpeg", + "alternativeImage": "http://static.lolesports.com/teams/1674646203543_LogoYutoru-DarioRizzo.jpeg", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "109749573736020031", + "summonerName": "Dovi", + "firstName": "Davide", + "lastName": "Xu", + "image": "http://static.lolesports.com/players/1674645596881_placeholder.png", + "role": "jungle" + }, + { + "id": "109749577519948616", + "summonerName": "Jokah", + "firstName": "Lorenzo", + "lastName": "Lambertini", + "image": "http://static.lolesports.com/players/1674645655265_placeholder.png", + "role": "top" + }, + { + "id": "107648521482405541", + "summonerName": "Kekko80", + "firstName": "Francesco", + "lastName": "Palermo", + "image": "http://static.lolesports.com/players/1642586079209_placeholder.png", + "role": "top" + }, + { + "id": "109749584744702807", + "summonerName": "Royhkea", + "firstName": "Jere", + "lastName": "Erkinheimo", + "image": "http://static.lolesports.com/players/1674645764828_placeholder.png", + "role": "bottom" + }, + { + "id": "109894831365348672", + "summonerName": "Nomai", + "firstName": "Ege", + "lastName": "Ersöz", + "image": "http://static.lolesports.com/players/1676862053459_placeholder.png", + "role": "jungle" + }, + { + "id": "106301613887002730", + "summonerName": "Aleks", + "firstName": "Alessandro", + "lastName": "Campo", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "support" + }, + { + "id": "110011889995747599", + "summonerName": "Duman", + "firstName": "İbrahim Mert", + "lastName": "Duman", + "image": "http://static.lolesports.com/players/1678648221439_silhouette_transparent.png", + "role": "support" + } + ] + }, + { + "id": "109749655929501779", + "slug": "cnj-esports", + "name": "CNJ Esports", + "code": "CNJ", + "image": "http://static.lolesports.com/teams/1674646843876_CNJ-symbol_basic1.png", + "alternativeImage": "http://static.lolesports.com/teams/1674646843877_CNJ-symbol_basic1.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "VCS", + "region": "VIETNAM" + }, + "players": [] + }, + { + "id": "109776954991078721", + "slug": "chilli-esports", + "name": "Chilli Esports", + "code": "CHIL", + "image": "http://static.lolesports.com/teams/1675063396524_Chilli_color.png", + "alternativeImage": "http://static.lolesports.com/teams/1675063396526_Chilli_color.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "106424950317115122", + "summonerName": "Vibe", + "firstName": "Adam", + "lastName": "Pařenica", + "image": "http://static.lolesports.com/players/1675066180536_silhouette_transparent.png", + "role": "jungle" + }, + { + "id": "108396082628813421", + "summonerName": "Blice", + "firstName": "Dominik", + "lastName": "Szász", + "image": "http://static.lolesports.com/players/1653992954328_placeholder.png", + "role": "top" + }, + { + "id": "110524059114074642", + "summonerName": "riotdopa", + "firstName": "Radim", + "lastName": "Patkolo", + "image": "http://static.lolesports.com/players/1686463304793_placeholder.png", + "role": "mid" + } + ] + }, + { + "id": "109776966542149441", + "slug": "glore", + "name": "GLORE.FIFINE", + "code": "GLR", + "image": "http://static.lolesports.com/teams/1675063573489_GLORE-LogoGold.png", + "alternativeImage": "http://static.lolesports.com/teams/1675063573490_GLORE-LogoGold.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Hitpoint Masters", + "region": "EMEA" + }, + "players": [ + { + "id": "114868195297798807", + "summonerName": "RonyG", + "firstName": "Daniel", + "lastName": "Suchý", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "107424724068939399", + "summonerName": "Malice", + "firstName": "Sebastian", + "lastName": "Edholm", + "image": "http://static.lolesports.com/players/1639171202492_silhouette.png", + "role": "jungle" + }, + { + "id": "99566408554704481", + "summonerName": "zoiren", + "firstName": "Michal ", + "lastName": "Zíka", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/zoiren-aosyprin.png", + "role": "mid" + }, + { + "id": "105700676882640978", + "summonerName": "Frappii", + "firstName": "Antonio", + "lastName": "Botezatu", + "image": "http://static.lolesports.com/players/silhouette.png", + "role": "bottom" + }, + { + "id": "114868198352684116", + "summonerName": "LiL TommyG", + "firstName": "Tomas", + "lastName": "Silva", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "102787200010846784", + "summonerName": "Sawyor", + "firstName": "Jiří", + "lastName": "Libánský", + "image": "http://static.lolesports.com/players/dusty-sawyor-lol.png", + "role": "jungle" + }, + { + "id": "105520113621762362", + "summonerName": "Dragdar", + "firstName": "Fayez", + "lastName": "Ahmed", + "image": "http://static.lolesports.com/players/dragdar1.png", + "role": "bottom" + }, + { + "id": "108684855793370611", + "summonerName": "smifi", + "firstName": "Piotr", + "lastName": "Kozłowski", + "image": "https://static.lolesports.com/players/download.png", + "role": "support" + }, + { + "id": "103877630435591746", + "summonerName": "JaVaaa", + "firstName": "Javier ", + "lastName": "Martinez", + "image": "https://static.lolesports.com/players/download.png", + "role": "bottom" + }, + { + "id": "111567757014989850", + "summonerName": "Peaker", + "firstName": "Raphael", + "lastName": "Alt", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "109777209878431623", + "summonerName": "tonyroo", + "firstName": "František", + "lastName": "Džupinka", + "image": "http://static.lolesports.com/players/1675067286803_silhouette_transparent.png", + "role": "top" + }, + { + "id": "104727085639988028", + "summonerName": "Jellou", + "firstName": "Jiří", + "lastName": "Linhart", + "image": "http://static.lolesports.com/players/1598008506287_czekolad-51vwzmjl.png", + "role": "jungle" + }, + { + "id": "114911392231678853", + "summonerName": "Ace", + "firstName": "Ignacio", + "lastName": "Piaggio", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "114911392307690547", + "summonerName": "Nicolayyi", + "firstName": "Nicolai ", + "lastName": "Garkov", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + } + ] + }, + { + "id": "109782787975510889", + "slug": "native-gaming", + "name": "Native Gaming", + "code": "N8V", + "image": "http://static.lolesports.com/teams/1675235281254_NativeGaming-Light.png", + "alternativeImage": "http://static.lolesports.com/teams/1675235281256_NativeGaming-Dark.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "108369187155701442", + "summonerName": "Just", + "firstName": "Kim", + "lastName": "Andy", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "support" + }, + { + "id": "104560658965924888", + "summonerName": "RHINO", + "firstName": "Douglas", + "lastName": "Reynolds Jr.", + "image": "http://static.lolesports.com/players/1595469037930_silhouette.png", + "role": "support" + } + ] + }, + { + "id": "109782867012820172", + "slug": "horizon-gaming", + "name": "Horizon Gaming", + "code": "HZG", + "image": "http://static.lolesports.com/teams/1675235558142_HorizonGaming.png", + "alternativeImage": "http://static.lolesports.com/teams/1675235558144_HorizonGaming.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "104348845335505602", + "summonerName": "Dragonmin", + "firstName": "Yongmin", + "lastName": "Kim", + "image": "http://static.lolesports.com/players/1592686208198_FG-Dragonmin.png", + "role": "support" + }, + { + "id": "109782796696124268", + "summonerName": "SappyMS", + "firstName": "Omar", + "lastName": "Alsalaq", + "image": "http://static.lolesports.com/players/1675152536934_placeholder.png", + "role": "top" + }, + { + "id": "109782803044859257", + "summonerName": "Nidhogg", + "firstName": "Erick", + "lastName": "Yoo", + "image": "http://static.lolesports.com/players/1675152633140_placeholder.png", + "role": "jungle" + }, + { + "id": "105504935917762438", + "summonerName": "Yunbee", + "firstName": "Jongyun", + "lastName": "Choi", + "image": "http://static.lolesports.com/players/silhouette.png", + "role": "mid" + }, + { + "id": "107578130738234393", + "summonerName": "SophistSage", + "firstName": "Tahyn", + "lastName": "Min", + "image": "http://static.lolesports.com/players/1675152837786_placeholder.png", + "role": "bottom" + }, + { + "id": "108359199288716752", + "summonerName": "Dragonminki", + "firstName": "Kim", + "lastName": "Yongmin", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "support" + }, + { + "id": "108369186541738788", + "summonerName": "Geiger", + "firstName": "Geiger", + "lastName": "Thomas", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + }, + { + "id": "104151009020226639", + "summonerName": "Yama", + "firstName": "Elijah", + "lastName": "Kim", + "image": "http://static.lolesports.com/players/1591817524438_tl-yama.png", + "role": "none" + } + ] + }, + { + "id": "109783023470714128", + "slug": "douyin-tony-top", + "name": "Team Tony Top", + "code": "TONY", + "image": "http://static.lolesports.com/teams/1681281613157_TTTLogo1.png", + "alternativeImage": "http://static.lolesports.com/teams/1681281613159_TTTLogo1.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "105504919708874561", + "summonerName": "Tony Top", + "firstName": " Fen ", + "lastName": " Zheng", + "image": "http://static.lolesports.com/players/1645006687571_TONYTOP.png", + "role": "top" + }, + { + "id": "109782983109757835", + "summonerName": "wallflower", + "firstName": "Ethan", + "lastName": "Wilkinson", + "image": "http://static.lolesports.com/players/1675155380849_placeholder.png", + "role": "jungle" + } + ] + }, + { + "id": "109783124183318312", + "slug": "university-of-st-trevor", + "name": "University of St. Trevor", + "code": "UST", + "image": "http://static.lolesports.com/teams/1675157533662_UniversityofStTrevor.jpg", + "alternativeImage": "http://static.lolesports.com/teams/1675157533663_UniversityofStTrevor.jpg", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "108369194297047478", + "summonerName": "Savage1", + "firstName": "Marquez", + "lastName": "Francisco", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "mid" + }, + { + "id": "109783089412275868", + "summonerName": "Aang", + "firstName": "Hyori", + "lastName": "Lee", + "image": "http://static.lolesports.com/players/1675157002043_placeholder.png", + "role": "bottom" + }, + { + "id": "109783110182641114", + "summonerName": "excodar", + "firstName": "Wade", + "lastName": "Stanley", + "image": "http://static.lolesports.com/players/1675157319480_placeholder.png", + "role": "none" + }, + { + "id": "108359201827613549", + "summonerName": "RobbyBob", + "firstName": "Wieber", + "lastName": "Robert", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + } + ] + }, + { + "id": "109783130654973406", + "slug": "godel-gamers", + "name": "Godel Gamers", + "code": "GODL", + "image": "http://static.lolesports.com/teams/1675157632677_GodelGamers.png", + "alternativeImage": "http://static.lolesports.com/teams/1675157632679_GodelGamers.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "109783205685129720", + "summonerName": "Last last", + "firstName": "Benjamin", + "lastName": "Acheampong", + "image": "http://static.lolesports.com/players/1675158776980_placeholder.png", + "role": "top" + }, + { + "id": "108369186445441443", + "summonerName": "Smalls", + "firstName": "Franks", + "lastName": "Ethan", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "bottom" + }, + { + "id": "109783218671288142", + "summonerName": "Evanlai", + "firstName": "Evan", + "lastName": "Lai", + "image": "http://static.lolesports.com/players/1675158975142_placeholder.png", + "role": "none" + }, + { + "id": "107584078792412399", + "summonerName": "Dec0y", + "firstName": "Noah", + "lastName": "D'Addario", + "image": "http://static.lolesports.com/players/1641602762456_silhouette.png", + "role": "none" + } + ] + }, + { + "id": "109783136441695429", + "slug": "mirage", + "name": "Mirage", + "code": "MRGE", + "image": "http://static.lolesports.com/teams/1675414539915_Mirage-White.png", + "alternativeImage": "http://static.lolesports.com/teams/1675414539917_Mirage-Black.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107577679630942805", + "summonerName": "Berik", + "firstName": "Erik", + "lastName": "Kim", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "top" + }, + { + "id": "109783260880251849", + "summonerName": "Hyphe", + "firstName": "Jad", + "lastName": "Haidar-Ahmad", + "image": "http://static.lolesports.com/players/1675159618927_placeholder.png", + "role": "jungle" + }, + { + "id": "107577677211288101", + "summonerName": "Ariendel", + "firstName": "Jeffrey", + "lastName": "Du", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "mid" + }, + { + "id": "109783264496655880", + "summonerName": "Good Boi", + "firstName": "Emmanuel", + "lastName": "Rouleau-Grosset", + "image": "http://static.lolesports.com/players/1675159674194_placeholder.png", + "role": "bottom" + }, + { + "id": "107577680634464093", + "summonerName": "Pockus", + "firstName": "Antoine", + "lastName": "Lafreniere", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "support" + }, + { + "id": "107577680771269102", + "summonerName": "Crazy Goose", + "firstName": "Alek", + "lastName": "Smith", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "109783288627928588", + "summonerName": "Bmxspecks", + "firstName": "Andrew", + "lastName": "Speckert", + "image": "http://static.lolesports.com/players/1675160042550_placeholder.png", + "role": "none" + } + ] + }, + { + "id": "109783149221216052", + "slug": "lit-esports", + "name": "LiT Esports", + "code": "LIT", + "image": "http://static.lolesports.com/teams/1675157915608_LiTEsports.png", + "alternativeImage": "http://static.lolesports.com/teams/1675157915608_LiTEsports.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [] + }, + { + "id": "109783160511364305", + "slug": "cb-gaming", + "name": "CB Gaming", + "code": "CB", + "image": "http://static.lolesports.com/teams/1675235588922_CBGaming.png", + "alternativeImage": "http://static.lolesports.com/teams/1675235588923_CBGaming.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "109783446679596519", + "summonerName": "PhenomEX", + "firstName": "Zach", + "lastName": "Torres", + "image": "http://static.lolesports.com/players/1675162454151_placeholder.png", + "role": "top" + }, + { + "id": "107577680230859353", + "summonerName": "Nem9", + "firstName": "Ryan", + "lastName": "Saenz", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "mid" + }, + { + "id": "109783453951073861", + "summonerName": "LastDanceDF", + "firstName": "David", + "lastName": "Li", + "image": "http://static.lolesports.com/players/1675162565035_placeholder.png", + "role": "bottom" + }, + { + "id": "109783456115883308", + "summonerName": "Sandwitch", + "firstName": "Adrian", + "lastName": "Chang", + "image": "http://static.lolesports.com/players/1675162598528_placeholder.png", + "role": "support" + }, + { + "id": "109783459663195631", + "summonerName": "RipMyMental", + "firstName": "Jason", + "lastName": "Zhi", + "image": "http://static.lolesports.com/players/1675162653087_placeholder.png", + "role": "none" + }, + { + "id": "109783462962932767", + "summonerName": "Burza", + "firstName": "Cole", + "lastName": "Cwiklowski", + "image": "http://static.lolesports.com/players/1675162702839_placeholder.png", + "role": "none" + } + ] + }, + { + "id": "109783164711873455", + "slug": "zenigma", + "name": "Zenigma", + "code": "ZENI", + "image": "http://static.lolesports.com/teams/1675158152899_Zenigma.png", + "alternativeImage": "http://static.lolesports.com/teams/1675158152901_Zenigma.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "108359201586419546", + "summonerName": "XiaoDanny", + "firstName": "Coyle", + "lastName": "Daniel", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "mid" + }, + { + "id": "109783492667538764", + "summonerName": "Enthralled", + "firstName": "James", + "lastName": "Hernandez", + "image": "http://static.lolesports.com/players/1675163155748_placeholder.png", + "role": "bottom" + }, + { + "id": "109783494492192736", + "summonerName": "Kurulean", + "firstName": "Matthew", + "lastName": "Nguyen", + "image": "http://static.lolesports.com/players/1675163184077_placeholder.png", + "role": "support" + }, + { + "id": "109783499814022325", + "summonerName": "BoilTheOil", + "firstName": "Brock", + "lastName": "Hanson", + "image": "http://static.lolesports.com/players/1675163265345_placeholder.png", + "role": "top" + }, + { + "id": "99322380962940029", + "summonerName": "Kitzuo", + "firstName": "Thanh Dat", + "lastName": "Nguyen Tran", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/kitzuo-fcqvlwj2.png", + "role": "jungle" + }, + { + "id": "109783486425542134", + "summonerName": "KoKooPuffs", + "firstName": "James", + "lastName": "Ko", + "image": "http://static.lolesports.com/players/1675163060468_placeholder.png", + "role": "none" + }, + { + "id": "108443853164774558", + "summonerName": "Dunks", + "firstName": "Matthew", + "lastName": "Do", + "image": "http://static.lolesports.com/players/1675163093635_placeholder.png", + "role": "none" + } + ] + }, + { + "id": "109783170393931575", + "slug": "conviction", + "name": "Conviction", + "code": "CNV", + "image": "http://static.lolesports.com/teams/1675158238331_Conviction.png", + "alternativeImage": "http://static.lolesports.com/teams/1675158238332_Conviction.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "NACL", + "region": "NORTH AMERICA" + }, + "players": [ + { + "id": "109981737417774036", + "summonerName": "Mixsture", + "firstName": "Eric", + "lastName": "Yin", + "image": "http://static.lolesports.com/players/1678188125804_placeholder.png", + "role": "none" + }, + { + "id": "109981739331032031", + "summonerName": "Huntervault", + "firstName": "Hunter", + "lastName": "Pays", + "image": "http://static.lolesports.com/players/1678188154531_placeholder.png", + "role": "none" + }, + { + "id": "109981733625736054", + "summonerName": "Crucile", + "firstName": "Connor", + "lastName": "Evans", + "image": "http://static.lolesports.com/players/1678188067826_placeholder.png", + "role": "top" + }, + { + "id": "109783456115883308", + "summonerName": "Sandwitch", + "firstName": "Adrian", + "lastName": "Chang", + "image": "http://static.lolesports.com/players/1675162598528_placeholder.png", + "role": "support" + }, + { + "id": "107577680312944465", + "summonerName": "Nightstar", + "firstName": "Mark", + "lastName": "Gonzalez", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "bottom" + }, + { + "id": "105913370048180040", + "summonerName": "Daption", + "firstName": "Sam", + "lastName": "Parsa Zarriz", + "image": "http://static.lolesports.com/players/silhouette.png", + "role": "none" + }, + { + "id": "98767975927317955", + "summonerName": "Cody Sun", + "firstName": "Sun", + "lastName": "Liyu", + "image": "http://static.lolesports.com/players/1655828053256_MIRAGEELYANDRA_CODYSUN-picture.png", + "role": "bottom" + }, + { + "id": "114821877344831787", + "summonerName": "TFblade", + "firstName": "Ashkan", + "lastName": "Homayouni", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "107569576434463367", + "summonerName": "Perryy", + "firstName": "Perry", + "lastName": "Norman", + "image": "http://static.lolesports.com/players/1641381469112_placeholder.png", + "role": "jungle" + }, + { + "id": "103478281367106082", + "summonerName": "Evolved", + "firstName": "Jackson", + "lastName": "Dohan", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/evolved-iuw8rexh.png", + "role": "mid" + }, + { + "id": "114821882801704900", + "summonerName": "V1per", + "firstName": "Omran", + "lastName": "Shoura", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "99294153793369737", + "summonerName": "Stunt", + "firstName": "William", + "lastName": "Chen", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/stunt-2sxy2na4.png", + "role": "support" + } + ] + }, + { + "id": "109800832177252614", + "slug": "szaty-bobra", + "name": "Orbit Anonymo", + "code": "OAE", + "image": "http://static.lolesports.com/teams/1678284506132_hSEW5dQ.png", + "alternativeImage": "http://static.lolesports.com/teams/1678284506134_hSEW5dQ.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Rift Legends", + "region": "EMEA" + }, + "players": [ + { + "id": "107156523307111283", + "summonerName": "Makk", + "firstName": "Mikołaj", + "lastName": "Makówka", + "image": "http://static.lolesports.com/players/1635078781466_placeholder.jpg", + "role": "top" + }, + { + "id": "105655995799330206", + "summonerName": "svns", + "firstName": "Damian", + "lastName": "Klejc", + "image": "http://static.lolesports.com/players/placeholder.png", + "role": "bottom" + }, + { + "id": "102181576080650903", + "summonerName": "Raxxo", + "firstName": "Oskar ", + "lastName": "Bazydlo", + "image": "http://static.lolesports.com/players/1674125879390_Raxxo.png", + "role": "support" + }, + { + "id": "113981041986306014", + "summonerName": "Kubus", + "firstName": "Jakub", + "lastName": "Gumiński", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "108353503235631224", + "summonerName": "belit", + "firstName": "Swereda", + "lastName": "Marcin", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "jungle" + }, + { + "id": "109659424519582746", + "summonerName": "buffi", + "firstName": "Zabiegaj", + "lastName": "Kamil", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "mid" + } + ] + }, + { + "id": "109828279319224248", + "slug": "mgn-box-esports", + "name": "MGN Blue Esports", + "code": "MBE", + "image": "http://static.lolesports.com/teams/1704187570236_Iconwhite.png", + "alternativeImage": "http://static.lolesports.com/teams/1675846541432_Nowyprojekt.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "VCS", + "region": "VIETNAM" + }, + "players": [ + { + "id": "107642476056184407", + "summonerName": "Nogo", + "firstName": "Dat ", + "lastName": "Tran Quoc", + "image": "https://static.lolesports.com/players/download.png", + "role": "mid" + }, + { + "id": "107251575502514974", + "summonerName": "Sty1e", + "firstName": "Son", + "lastName": "Mai Hoang", + "image": "http://static.lolesports.com/players/1755156873661_MVKE_Sty1e.png", + "role": "bottom" + }, + { + "id": "111934286166932665", + "summonerName": "Rigel", + "firstName": "Tuan", + "lastName": "Dao", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + }, + { + "id": "107251418493463209", + "summonerName": "Vin", + "firstName": "Hoai Vinh", + "lastName": "Tran", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "110528442384858640", + "summonerName": "Sparda", + "firstName": "Vo Anh Hoang", + "lastName": "Nguyen", + "image": "http://static.lolesports.com/players/1695367984382_TW_Sparda.png", + "role": "top" + }, + { + "id": "107251649649434629", + "summonerName": "Phuc1", + "firstName": "Phuc", + "lastName": "Nguyen Minh", + "image": "http://static.lolesports.com/players/1675849125283_placeholder.png", + "role": "jungle" + }, + { + "id": "109828481561731988", + "summonerName": "TQ", + "firstName": "Truong", + "lastName": "Hoang Quang", + "image": "http://static.lolesports.com/players/1675849633985_placeholder.png", + "role": "support" + }, + { + "id": "107785501712772339", + "summonerName": "Zodiac", + "firstName": "Luong", + "lastName": "Tieu Quoc", + "image": "http://static.lolesports.com/players/1644676229363_1599762334741_silhouette.png", + "role": "support" + } + ] + }, + { + "id": "109981644490281844", + "slug": "rock-bottom-esports", + "name": "Rock Bottom Esports", + "code": "ROCK", + "image": "http://static.lolesports.com/teams/1678194151963_RockBottomEsports.png", + "alternativeImage": "http://static.lolesports.com/teams/1678194151965_RockBottomEsports.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "105957596293159958", + "summonerName": "DNA", + "firstName": "Cédric", + "lastName": "Beaulieu", + "image": "http://static.lolesports.com/players/silhouette.png", + "role": "mid" + }, + { + "id": "107577686017753652", + "summonerName": "Xav", + "firstName": "Xavier", + "lastName": "Vaillancourt", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107584101809442156", + "summonerName": "Censored", + "firstName": "Badhan", + "lastName": "Dasgupta", + "image": "http://static.lolesports.com/players/1641603113570_silhouette.png", + "role": "none" + } + ] + }, + { + "id": "109981647134921596", + "slug": "ccg-esports", + "name": "CCG Esports", + "code": "CCG", + "image": "http://static.lolesports.com/teams/1743818097778__CCGIcon_Main.png", + "alternativeImage": "http://static.lolesports.com/teams/1743818097778__CCGIcon_Main.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "NACL", + "region": "NORTH AMERICA" + }, + "players": [ + { + "id": "101422616415890201", + "summonerName": "Fatihcan", + "firstName": "Demir", + "lastName": "Fatihcan", + "image": "http://static.lolesports.com/players/1674553497754_G21.png", + "role": "support" + }, + { + "id": "108359201876700017", + "summonerName": "Shogo", + "firstName": "Gil", + "lastName": "Meron", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "bottom" + }, + { + "id": "107614631484976248", + "summonerName": "Music", + "firstName": "Sean", + "lastName": "Wishko", + "image": "http://static.lolesports.com/players/1642068956551_placeholder.png", + "role": "jungle" + }, + { + "id": "106857864117137093", + "summonerName": "Young", + "firstName": "Young", + "lastName": "Ho Choi", + "image": "http://static.lolesports.com/players/1674833615492_GG_YOUNG.png", + "role": "mid" + }, + { + "id": "114854763809366482", + "summonerName": "Fiji", + "firstName": "James", + "lastName": "Carlisle", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "none" + }, + { + "id": "109981749103139030", + "summonerName": "ROCKBOOM", + "firstName": "Rocco", + "lastName": "Mazzo", + "image": "http://static.lolesports.com/players/1678188303986_placeholder.png", + "role": "top" + }, + { + "id": "107577676252299801", + "summonerName": "Crimson", + "firstName": "Bilal", + "lastName": "Shoura", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "top" + }, + { + "id": "108359200112555660", + "summonerName": "Rocks908", + "firstName": "Chetwynd", + "lastName": "Brian", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + }, + { + "id": "107577675315103480", + "summonerName": "Trevor", + "firstName": "Trevor John", + "lastName": "Roy", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "support" + } + ] + }, + { + "id": "109981650516317055", + "slug": "mirage-alliance", + "name": "Mirage Alliance", + "code": "MA", + "image": "http://static.lolesports.com/teams/1706471003432_MirageAlliance.png", + "alternativeImage": "http://static.lolesports.com/teams/1706471003432_MirageAlliance.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [] + }, + { + "id": "109981655738221109", + "slug": "team-plink", + "name": "Team Plink", + "code": "CATT", + "image": "http://static.lolesports.com/teams/1678194248387_TeamPlink.png", + "alternativeImage": "http://static.lolesports.com/teams/1678194248389_TeamPlink.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "108359200962538338", + "summonerName": "Sunlight", + "firstName": "Riebschleger", + "lastName": "Joseph", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "top" + }, + { + "id": "107828217500732780", + "summonerName": "Vakin", + "firstName": "Owen", + "lastName": "Ferrier", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "jungle" + }, + { + "id": "107577684222788124", + "summonerName": "omly", + "firstName": "Paul", + "lastName": "Davis", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "mid" + }, + { + "id": "109981716719545187", + "summonerName": "niinim", + "firstName": "Mateus", + "lastName": "Alves de Almeida", + "image": "http://static.lolesports.com/players/1678187809453_placeholder.png", + "role": "bottom" + }, + { + "id": "109981725878074888", + "summonerName": "YNO", + "firstName": "Nitin", + "lastName": "Obla", + "image": "http://static.lolesports.com/players/1678187949706_placeholder.png", + "role": "support" + }, + { + "id": "109981727907982193", + "summonerName": "Dun", + "firstName": "Martin", + "lastName": "Sleiwa", + "image": "http://static.lolesports.com/players/1678187980840_placeholder.png", + "role": "none" + }, + { + "id": "109782796696124268", + "summonerName": "SappyMS", + "firstName": "Omar", + "lastName": "Alsalaq", + "image": "http://static.lolesports.com/players/1675152536934_placeholder.png", + "role": "none" + } + ] + }, + { + "id": "109981678167856017", + "slug": "miracle", + "name": "Miracle", + "code": "MRC", + "image": "http://static.lolesports.com/teams/1678194293160_Miracle.png", + "alternativeImage": "http://static.lolesports.com/teams/1678194293162_Miracle.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107584094360523983", + "summonerName": "Rapid", + "firstName": "Donnie", + "lastName": "Stauffer", + "image": "http://static.lolesports.com/players/1641603000261_silhouette.png", + "role": "jungle" + }, + { + "id": "109783453951073861", + "summonerName": "LastDanceDF", + "firstName": "David", + "lastName": "Li", + "image": "http://static.lolesports.com/players/1675162565035_placeholder.png", + "role": "bottom" + }, + { + "id": "109783264496655880", + "summonerName": "Good Boi", + "firstName": "Emmanuel", + "lastName": "Rouleau-Grosset", + "image": "http://static.lolesports.com/players/1675159674194_placeholder.png", + "role": "none" + }, + { + "id": "110536293157800979", + "summonerName": "Enryu", + "firstName": "Jun", + "lastName": "Rong Huang", + "image": "http://static.lolesports.com/players/1686649982528_placeholder.png", + "role": "none" + }, + { + "id": "110583958750150750", + "summonerName": "Likeamaws", + "firstName": "Joshua", + "lastName": "Street", + "image": "http://static.lolesports.com/players/1687377292970_placeholder.png", + "role": "none" + } + ] + }, + { + "id": "110198931813931587", + "slug": "nrg-challengers", + "name": "NRG Kia Challengers", + "code": "NRG", + "image": "http://static.lolesports.com/teams/1705722771692_NRGKiaWhite.png", + "alternativeImage": "http://static.lolesports.com/teams/1705722771692_NRGKiaBlack.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCS", + "region": "NORTH AMERICA" + }, + "players": [] + }, + { + "id": "110378432506262947", + "slug": "mhsc-esport", + "name": "MHSC Esport", + "code": "MHSC", + "image": "http://static.lolesports.com/teams/1684241216728_LOLESPORTSICON.png", + "alternativeImage": "http://static.lolesports.com/teams/1684241216729_LOLESPORTSICON.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "108334726007685624", + "summonerName": "Zaremba", + "firstName": "Maciej", + "lastName": "Zaremba", + "image": "http://static.lolesports.com/players/1653056731211_placeholder.png", + "role": "support" + }, + { + "id": "105719283417050138", + "summonerName": "Kio", + "firstName": "Simon", + "lastName": "Králik", + "image": "http://static.lolesports.com/players/1674126461439_Kio.png", + "role": "top" + }, + { + "id": "99322214634684385", + "summonerName": "Djoko", + "firstName": "Charly", + "lastName": "Guillard", + "image": "http://static.lolesports.com/players/1744002926977_image6-2025-04-07T071446.683.png", + "role": "jungle" + }, + { + "id": "103877633326515783", + "summonerName": "Hydra", + "firstName": "Raúl ", + "lastName": "Moreno Valero", + "image": "https://static.lolesports.com/players/download.png", + "role": "mid" + }, + { + "id": "107105627153828391", + "summonerName": "Axelent", + "firstName": "Nikola ", + "lastName": "Petrushev", + "image": "https://static.lolesports.com/players/download.png", + "role": "bottom" + }, + { + "id": "111727098377550472", + "summonerName": "Ruben1", + "firstName": "Ruben", + "lastName": "De Sousa", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + } + ] + }, + { + "id": "110383487456480967", + "slug": "vertex-esc", + "name": "Vertex ESC", + "code": "VTX", + "image": "http://static.lolesports.com/teams/1684318344978_Logo2.png", + "alternativeImage": "http://static.lolesports.com/teams/1684318344979_Logo2.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCO", + "region": "OCEANIA" + }, + "players": [ + { + "id": "107635952194681376", + "summonerName": "Danteh", + "firstName": "Alvin Jing Zhe", + "lastName": "Wong", + "image": "https://static.lolesports.com/players/download.png", + "role": "bottom" + }, + { + "id": "102206325936648903", + "summonerName": "Siuman", + "firstName": "Lo Pak", + "lastName": "Man", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/suiman-9naokoaq.png", + "role": "mid" + }, + { + "id": "106350736734730852", + "summonerName": "Goodo", + "firstName": "Minjae", + "lastName": "Jeong", + "image": "https://static.lolesports.com/players/download.png", + "role": "jungle" + }, + { + "id": "105647956818593679", + "summonerName": "Tomasino", + "firstName": "Tomáš", + "lastName": "Brabec", + "image": "http://static.lolesports.com/players/download.png", + "role": "top" + }, + { + "id": "110462937178590834", + "summonerName": "Woodon", + "firstName": "Kim", + "lastName": "Doowon", + "image": "http://static.lolesports.com/players/1685530646508_placeholder.png", + "role": "top" + }, + { + "id": "110462942077835796", + "summonerName": "4ever", + "firstName": "Yue", + "lastName": "Liu", + "image": "http://static.lolesports.com/players/1685530722020_placeholder.png", + "role": "jungle" + }, + { + "id": "110462943397555237", + "summonerName": "Chirp", + "firstName": "Duncan", + "lastName": "Zehnder", + "image": "http://static.lolesports.com/players/1685530743111_placeholder.png", + "role": "mid" + }, + { + "id": "109675733286091757", + "summonerName": "Realer", + "firstName": "Riley", + "lastName": "Walton", + "image": "http://static.lolesports.com/players/1673518877561_placeholder.png", + "role": "bottom" + }, + { + "id": "101383792853371041", + "summonerName": "styled", + "firstName": "Gian", + "lastName": "Leon", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/styled-8b7ey5fz.png", + "role": "bottom" + }, + { + "id": "99566406291710740", + "summonerName": "Rosey5", + "firstName": "Andrew", + "lastName": "Rose", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/rosey-ipbsnnmh.png", + "role": "support" + }, + { + "id": "110462953988741673", + "summonerName": "Hysterics", + "firstName": "Jake", + "lastName": "Osypenko", + "image": "http://static.lolesports.com/players/1685530903737_placeholder.png", + "role": "none" + }, + { + "id": "110462963782507054", + "summonerName": "Medica", + "firstName": "Bang Ying", + "lastName": "Ou", + "image": "http://static.lolesports.com/players/1685531051862_placeholder.png", + "role": "none" + } + ] + }, + { + "id": "110412316010062713", + "slug": "rox", + "name": "RoX", + "code": "ROXR", + "image": "http://static.lolesports.com/teams/1684758243765_RoX_2014_CIS_Teamlogo_square.webp", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCL", + "region": "COMMONWEALTH OF INDEPENDENT STATES" + }, + "players": [] + }, + { + "id": "110412516591868840", + "slug": "ensane-gaming", + "name": "E-nsane Gaming", + "code": "ENS", + "image": "http://static.lolesports.com/teams/1704376854804_E-nsaneGaminglogo1.png", + "alternativeImage": "http://static.lolesports.com/teams/1704376854805_E-nsaneGaminglogo1.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "112440591074038542", + "summonerName": "Grzosu", + "firstName": "Grzegorz", + "lastName": "Maciejewski", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + }, + { + "id": "112440591127450394", + "summonerName": "Khal", + "firstName": "Jakub", + "lastName": "Późniak", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + }, + { + "id": "112440591020364554", + "summonerName": "SzymeXo", + "firstName": "Szymon", + "lastName": "Bieguszewski", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "110441520929122105", + "summonerName": "Guli", + "firstName": "Igor", + "lastName": "Oblizajek", + "image": "http://static.lolesports.com/players/1685203871697_placeholder.png", + "role": "jungle" + }, + { + "id": "110441511344850883", + "summonerName": "Marbirius", + "firstName": "Marcus", + "lastName": "Birgander", + "image": "http://static.lolesports.com/players/1685203725729_placeholder.png", + "role": "mid" + }, + { + "id": "105871209974320720", + "summonerName": "D1vine", + "firstName": "Robert", + "lastName": "Arousi", + "image": "http://static.lolesports.com/players/placeholder.png", + "role": "bottom" + }, + { + "id": "107599671450719969", + "summonerName": "Herod", + "firstName": "Grzegorz", + "lastName": "Rajpold", + "image": "http://static.lolesports.com/players/1641840686582_placeholder.png", + "role": "support" + }, + { + "id": "112440591176799006", + "summonerName": "Terroristo", + "firstName": "Paweł", + "lastName": "Mareczek", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + }, + { + "id": "105530921300320964", + "summonerName": "Jaqen", + "firstName": "Mateusz", + "lastName": "Góral", + "image": "http://static.lolesports.com/players/1671445061254_placeholder.png", + "role": "top" + } + ] + }, + { + "id": "110412519932278090", + "slug": "back2thegame", + "name": "Back2TheGame", + "code": "B2TG", + "image": "http://static.lolesports.com/teams/1737646976320_Logo_Short_bright_1.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Rift Legends", + "region": "EMEA" + }, + "players": [ + { + "id": "107599400750308778", + "summonerName": "ShazQ", + "firstName": "Michał", + "lastName": "Szymiczek", + "image": "http://static.lolesports.com/players/1641836555728_placeholder.png", + "role": "jungle" + }, + { + "id": "102787199999443508", + "summonerName": "Agresivoo", + "firstName": "Tobiasz", + "lastName": "Ciba", + "image": "http://static.lolesports.com/players/1674126223443_Agresivoo.png", + "role": "top" + }, + { + "id": "107599398185426342", + "summonerName": "Lothen", + "firstName": "Dawid", + "lastName": "Błaszczyk", + "image": "http://static.lolesports.com/players/1641836516856_placeholder.png", + "role": "bottom" + }, + { + "id": "106297381927982589", + "summonerName": "Syzyf", + "firstName": "Jakub", + "lastName": "Ruta", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "mid" + }, + { + "id": "107156535965754342", + "summonerName": "many", + "firstName": "Jakub", + "lastName": "Tylman", + "image": "http://static.lolesports.com/players/1635078975292_placeholder.jpg", + "role": "mid" + }, + { + "id": "107464197161771720", + "summonerName": "Highway", + "firstName": "Jakub", + "lastName": "Baranowski", + "image": "http://static.lolesports.com/players/1639773513275_placeholder.png", + "role": "support" + } + ] + }, + { + "id": "110417404186665619", + "slug": "acegaming", + "name": "Direct Rising eSports", + "code": "DR", + "image": "http://static.lolesports.com/teams/1685352320863_DRE_Logo_transparent.png", + "alternativeImage": "http://static.lolesports.com/teams/1685352320864_DRE_Logo_transparent.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "111102219451294718", + "summonerName": "looki", + "firstName": "Rocco", + "lastName": "Palfi", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "110417489682016770", + "summonerName": "Eckbard", + "firstName": "Eduard", + "lastName": "Usov", + "image": "http://static.lolesports.com/players/1684837183535_placeholder.png", + "role": "support" + }, + { + "id": "111731545148512567", + "summonerName": "Aria51", + "firstName": "Aria", + "lastName": "Gholampour", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "110417419681119296", + "summonerName": "Tapinq", + "firstName": "Benjamin", + "lastName": "Oberhuber", + "image": "http://static.lolesports.com/players/1684836114929_placeholder.png", + "role": "top" + }, + { + "id": "111783191067689321", + "summonerName": "LeFufu", + "firstName": "Mathias", + "lastName": "May", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + }, + { + "id": "110417414387999382", + "summonerName": "WCD", + "firstName": "Jannik-Andre", + "lastName": "Zur", + "image": "http://static.lolesports.com/players/1684836034385_placeholder.png", + "role": "mid" + }, + { + "id": "113147525177480611", + "summonerName": "Blutlotus", + "firstName": "Julian", + "lastName": "Denkmann", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "113147526161126276", + "summonerName": "Gego", + "firstName": "Dima", + "lastName": "Keberlehn", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "113147527484083876", + "summonerName": "Heat1", + "firstName": "Justin", + "lastName": "Hintz", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "113147529110278161", + "summonerName": "Schlaf gut", + "firstName": "Jannik", + "lastName": "Urban", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "113147530288238256", + "summonerName": "Stefwhynot", + "firstName": "Stefan", + "lastName": "Bock", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "113147531686843818", + "summonerName": "WildWolf", + "firstName": "Time", + "lastName": "Heinemann", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "110419882438917369", + "summonerName": "JiT", + "firstName": "Fabian-Maximilian", + "lastName": "Gummelt", + "image": "http://static.lolesports.com/players/1684873694003_placeholder.png", + "role": "none" + } + ] + }, + { + "id": "110417513879315164", + "slug": "hannover-esports", + "name": "Hannover Esports", + "code": "HNVR", + "image": "http://static.lolesports.com/teams/1684871715164_HNVR_ToxicGreen.png", + "alternativeImage": "http://static.lolesports.com/teams/1684871715165_HNVR_ToxicGreen.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Prime League", + "region": "EMEA" + }, + "players": [ + { + "id": "104727138378408093", + "summonerName": "NiceGuyBen", + "firstName": "Ben-Luca", + "lastName": "Nordgerling", + "image": "http://static.lolesports.com/players/1598009311349_czekolad-51vwzmjl.png", + "role": "top" + }, + { + "id": "106301969842885030", + "summonerName": "Techoteco", + "firstName": "Teo", + "lastName": "Barliba", + "image": "http://static.lolesports.com/players/granit-techoteco-lol.png", + "role": "jungle" + }, + { + "id": "110417520559696421", + "summonerName": "goose", + "firstName": "Kerem", + "lastName": "Katilmis", + "image": "http://static.lolesports.com/players/1684837654509_placeholder.png", + "role": "mid" + }, + { + "id": "110417523967425222", + "summonerName": "Marth", + "firstName": "Julian", + "lastName": "Maletzky", + "image": "http://static.lolesports.com/players/1684837706532_placeholder.png", + "role": "bottom" + }, + { + "id": "108401784900863225", + "summonerName": "Wildenbruch", + "firstName": "Linus", + "lastName": "Köhler", + "image": "http://static.lolesports.com/players/1654079966965_placeholder.png", + "role": "support" + }, + { + "id": "110456556952695660", + "summonerName": "Seraphya", + "firstName": "Marivn", + "lastName": "Uebig", + "image": "http://static.lolesports.com/players/1685433298352_placeholder.png", + "role": "none" + }, + { + "id": "110456558562980721", + "summonerName": "Kuchenkopf", + "firstName": "David", + "lastName": "Liem", + "image": "http://static.lolesports.com/players/1685433323319_placeholder.png", + "role": "none" + }, + { + "id": "110474210824308608", + "summonerName": "M4rth", + "firstName": "Julian", + "lastName": "Maletzky", + "image": "http://static.lolesports.com/players/1685702679824_placeholder.png", + "role": "bottom" + } + ] + }, + { + "id": "110418022381234710", + "slug": "spike-syndicate", + "name": "SPIKE Syndicate", + "code": "SPK", + "image": "http://static.lolesports.com/teams/1738058246517_EBL_SPK-MonochromeDarkBG.png", + "alternativeImage": "http://static.lolesports.com/teams/1738058246517_EBL_SPK-MonochromeDarkBG.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Esports Balkan League", + "region": "EMEA" + }, + "players": [ + { + "id": "111726461481806350", + "summonerName": "MegaJ", + "firstName": "Luka", + "lastName": "Janković", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "104711194933092140", + "summonerName": "Fallen", + "firstName": "Viktor", + "lastName": "Kordanovski", + "image": "http://static.lolesports.com/players/1597766031693_czekolad-51vwzmjl.png", + "role": "jungle" + }, + { + "id": "107603176069161549", + "summonerName": "Foxie", + "firstName": "Matija", + "lastName": "Vidovič Žmauc", + "image": "http://static.lolesports.com/players/1641894162462_placeholder.png", + "role": "mid" + }, + { + "id": "109828346275690829", + "summonerName": "Pinki", + "firstName": "Lazar", + "lastName": "Mitrović", + "image": "http://static.lolesports.com/players/1675847562598_placeholder.png", + "role": "bottom" + }, + { + "id": "105647952132397967", + "summonerName": "Vlaren", + "firstName": "Vladimir", + "lastName": "Vývoda", + "image": "http://static.lolesports.com/players/download.png", + "role": "support" + }, + { + "id": "103743635222302248", + "summonerName": "Panj", + "firstName": "Luka", + "lastName": "Cica", + "image": "https://static.lolesports.com/players/download.png", + "role": "none" + } + ] + }, + { + "id": "110424394375218208", + "slug": "a-one-man-army", + "name": "A One Man Army", + "code": "AOMA", + "image": "http://static.lolesports.com/teams/1704706674136_AOMA_1500x1500.png", + "alternativeImage": "http://static.lolesports.com/teams/1684942526300_AOneManArmy.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Road of Legends", + "region": "EMEA" + }, + "players": [ + { + "id": "112002982470720447", + "summonerName": "Kaplica", + "firstName": "Filip", + "lastName": "Lefik", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "114833083936611770", + "summonerName": "Dino", + "firstName": "Christian", + "lastName": "van As", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "114833084990242617", + "summonerName": "Unicow", + "firstName": "Simon", + "lastName": "Larsson", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "114833086294924734", + "summonerName": "Mikano", + "firstName": "Wouter", + "lastName": "Hendriks", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "114833087842491842", + "summonerName": "Socrates", + "firstName": "Emiel", + "lastName": "Lieffering", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "114833088910737019", + "summonerName": "Cacnea", + "firstName": "Tim", + "lastName": "Kuijt", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "none" + }, + { + "id": "110467125405233208", + "summonerName": "Jormag", + "firstName": "Lendert ", + "lastName": "Coolen", + "image": "http://static.lolesports.com/players/1685594562818_placeholder.png", + "role": "none" + } + ] + }, + { + "id": "110424397251619481", + "slug": "myth-esports", + "name": "Myth Esports", + "code": "MYTH", + "image": "http://static.lolesports.com/teams/1704706801199_Myth_Esports_2023_Nov_allmode.png", + "alternativeImage": "http://static.lolesports.com/teams/1704706801201_Myth_Esports_2023_Nov_allmode.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Road of Legends", + "region": "EMEA" + }, + "players": [ + { + "id": "110467102847568333", + "summonerName": "Baul", + "firstName": "Lucas ", + "lastName": "Westermark", + "image": "http://static.lolesports.com/players/1685594219446_placeholder.png", + "role": "jungle" + }, + { + "id": "110417480740665990", + "summonerName": "Sprotte", + "firstName": "Dominik", + "lastName": "Koch", + "image": "http://static.lolesports.com/players/1684837046901_placeholder.png", + "role": "top" + }, + { + "id": "106302938379546400", + "summonerName": "Franky", + "firstName": "Frank ", + "lastName": "Temminck", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "mid" + }, + { + "id": "114810588044213736", + "summonerName": "Floris56", + "firstName": "Floris", + "lastName": "Verkerk", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "114810588119832842", + "summonerName": "Richu", + "firstName": "Richard", + "lastName": "Anmann", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "114976356059241896", + "summonerName": "Zorka", + "firstName": "Wouter", + "lastName": "Schoof", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "none" + }, + { + "id": "115009072352729152", + "summonerName": "Supp Ins", + "firstName": "Bob", + "lastName": "Gellaerts", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "none" + }, + { + "id": "115009073461826145", + "summonerName": "Kiba", + "firstName": "Patrick", + "lastName": "van Zon", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "none" + } + ] + }, + { + "id": "110425005562048945", + "slug": "keypulse-esports", + "name": "Keypulse Esports", + "code": "KYP", + "image": "http://static.lolesports.com/teams/1738418592852_KYP.png", + "alternativeImage": "http://static.lolesports.com/teams/1738418592852_KYP.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Liga Portuguesa", + "region": "EMEA" + }, + "players": [ + { + "id": "107105632727992882", + "summonerName": "Kamyta", + "firstName": "João ", + "lastName": "Palma", + "image": "http://static.lolesports.com/players/1687000594519_BWE-Kamyta.png", + "role": "support" + }, + { + "id": "107655212274520290", + "summonerName": "D4rtaine", + "firstName": "David", + "lastName": "Pires", + "image": "http://static.lolesports.com/players/1642688173109_placeholder.png", + "role": "top" + }, + { + "id": "114944474198935811", + "summonerName": "Boye", + "firstName": "Anders ", + "lastName": "Boye", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "114944474254922156", + "summonerName": "ilyy", + "firstName": "Ilia ", + "lastName": "Iakobashvili", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "114944864318985506", + "summonerName": "Markus", + "firstName": "Markus", + "lastName": "Westerberg", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + } + ] + }, + { + "id": "110425157952111645", + "slug": "fourth-wall", + "name": "Fourth Wall", + "code": "4W", + "image": "http://static.lolesports.com/teams/1684954179512_FW.png", + "alternativeImage": "http://static.lolesports.com/teams/1684954179513_FW.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "NLC", + "region": "EMEA" + }, + "players": [] + }, + { + "id": "110428362822825796", + "slug": "disguised", + "name": "Disguised", + "code": "DSG", + "image": "http://static.lolesports.com/teams/1731496922454_Disguised-Wordmark-Yellow-Main.png", + "alternativeImage": "http://static.lolesports.com/teams/1731496922455_Disguised-Wordmark-Yellow-Main.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LTA North", + "region": "AMERICAS" + }, + "players": [ + { + "id": "107583616307712318", + "summonerName": "Lyonz", + "firstName": "Pedro", + "lastName": "Peralta", + "image": "http://static.lolesports.com/players/1739479327358_ggsdgs41.png", + "role": "support" + }, + { + "id": "109782648292867379", + "summonerName": "KryRa", + "firstName": "Christian", + "lastName": "Rahaian", + "image": "http://static.lolesports.com/players/1675150271520_placeholder.png", + "role": "jungle" + }, + { + "id": "108205130200366557", + "summonerName": "Callme", + "firstName": "Jihoon", + "lastName": "Oh", + "image": "http://static.lolesports.com/players/1718362648003_NS_Callme_784.png", + "role": "mid" + }, + { + "id": "107577679471034957", + "summonerName": "sajed", + "firstName": "Sajed", + "lastName": "Ziade", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "bottom" + }, + { + "id": "105501712240139757", + "summonerName": "Castle", + "firstName": "Hyeonseong", + "lastName": "Jo", + "image": "http://static.lolesports.com/players/1739478502134_ggsdgs67.png", + "role": "top" + } + ] + }, + { + "id": "110435475019544378", + "slug": "team-just", + "name": "Team Just", + "code": "TJU", + "image": "http://static.lolesports.com/teams/1685111617101_Team_Justlogo_square.webp", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCL", + "region": "COMMONWEALTH OF INDEPENDENT STATES" + }, + "players": [] + }, + { + "id": "110435487890002446", + "slug": "vaevictis-esports", + "name": "Vaevictis eSports", + "code": "VVS", + "image": "http://static.lolesports.com/teams/1685111813067_Vaevictis_eSportslogo_square.webp", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCL", + "region": "COMMONWEALTH OF INDEPENDENT STATES" + }, + "players": [] + }, + { + "id": "110441266196719234", + "slug": "almo-players", + "name": "ALMO Players", + "code": "ALMO", + "image": "http://static.lolesports.com/teams/1766149888302_Ogi7qeR.webp", + "alternativeImage": "http://static.lolesports.com/teams/1766149888303_Ogi7qeR.webp", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Hellenic Legends League", + "region": "EMEA" + }, + "players": [] + }, + { + "id": "110444835830185823", + "slug": "estuba", + "name": "ESTUBA", + "code": "STU", + "image": "http://static.lolesports.com/teams/1685254449174_LOLESPORTSICON.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "108396080904107797", + "summonerName": "Stein", + "firstName": "Marco", + "lastName": "Kocvár", + "image": "http://static.lolesports.com/players/1653992927862_placeholder.png", + "role": "top" + }, + { + "id": "105593189301050462", + "summonerName": "Goksi", + "firstName": "Jakub", + "lastName": "Goga", + "image": "http://static.lolesports.com/players/placeholder_.jpg", + "role": "jungle" + }, + { + "id": "110494439664474080", + "summonerName": "Samyaza", + "firstName": "Peter", + "lastName": "Červeň", + "image": "http://static.lolesports.com/players/1686011344911_silhouette_transparent.png", + "role": "mid" + }, + { + "id": "108449780506508189", + "summonerName": "Dzejno", + "firstName": "Wittenberger", + "lastName": "Ján", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "bottom" + }, + { + "id": "108396093003817587", + "summonerName": "Siriass", + "firstName": "Eduard", + "lastName": "Matanin", + "image": "http://static.lolesports.com/players/1653993112454_placeholder.png", + "role": "support" + }, + { + "id": "111922787576913918", + "summonerName": "Duo Dino", + "firstName": "Filip", + "lastName": "Bilik", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "105593283188710624", + "summonerName": "Dinrok", + "firstName": "Vladimír", + "lastName": "Korta", + "image": "http://static.lolesports.com/players/placeholder_.jpg", + "role": "jungle" + }, + { + "id": "105593237521553562", + "summonerName": "Wapode", + "firstName": "Erik", + "lastName": "Jenča", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "bottom" + } + ] + }, + { + "id": "110446808118533773", + "slug": "virtuspro", + "name": "Virtus.pro", + "code": "VPR", + "image": "http://static.lolesports.com/teams/1685284546132_Virtus.prologo_square.webp", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCL", + "region": "COMMONWEALTH OF INDEPENDENT STATES" + }, + "players": [] + }, + { + "id": "110452965971447921", + "slug": "hard-random", + "name": "Hard Random", + "code": "HR", + "image": "http://static.lolesports.com/teams/1685378506131_Hard_Random.webp", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCL", + "region": "COMMONWEALTH OF INDEPENDENT STATES" + }, + "players": [] + }, + { + "id": "110452976214860409", + "slug": "team-differential", + "name": "Team Differential", + "code": "DF", + "image": "http://static.lolesports.com/teams/1685378663753_Differentialsquare.webp", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCL", + "region": "COMMONWEALTH OF INDEPENDENT STATES" + }, + "players": [] + }, + { + "id": "110452986430628502", + "slug": "team-empire", + "name": "Team Empire", + "code": "TEM", + "image": "http://static.lolesports.com/teams/1685378819832_Empiresquare.webp", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCL", + "region": "COMMONWEALTH OF INDEPENDENT STATES" + }, + "players": [] + }, + { + "id": "110461369197210282", + "slug": "growup-esports", + "name": "GrowUp Esports", + "code": "GUP", + "image": "http://static.lolesports.com/teams/1738419130954_grow_c.png", + "alternativeImage": "http://static.lolesports.com/teams/1738419130954_grow_c.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Liga Portuguesa", + "region": "EMEA" + }, + "players": [ + { + "id": "113934663160681892", + "summonerName": "Ricarderix", + "firstName": "Ricardo", + "lastName": "Martins", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "107655417576819472", + "summonerName": "SuperSaiyan", + "firstName": "Rui", + "lastName": "Cachatra", + "image": "http://static.lolesports.com/players/1642691306451_placeholder.png", + "role": "bottom" + }, + { + "id": "113934663305625389", + "summonerName": "ARUTNEVNR23", + "firstName": "José", + "lastName": "Ventura", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "112456787152444043", + "summonerName": "Mercury", + "firstName": "Marco", + "lastName": "Bucciarelli", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "113937050490009691", + "summonerName": "Deathsense", + "firstName": "Lyuboslav", + "lastName": "Nedelev", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "113934663239302953", + "summonerName": "Sidbuck", + "firstName": "Dávid", + "lastName": "Szántó", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "110462450662409659", + "summonerName": "Exduardo", + "firstName": "Eduardo", + "lastName": "Alves", + "image": "http://static.lolesports.com/players/1685523233514_placeholder.png", + "role": "bottom" + }, + { + "id": "111782179552410672", + "summonerName": "Legend", + "firstName": "Luís", + "lastName": "Luís\tFernandes", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "113937136291537721", + "summonerName": "ffernandes", + "firstName": "Leonardo", + "lastName": "Guerreiro", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "110462448581954960", + "summonerName": "V1dde", + "firstName": "Vidar", + "lastName": "Engstam", + "image": "http://static.lolesports.com/players/1685523201070_placeholder.png", + "role": "mid" + }, + { + "id": "112455349006735725", + "summonerName": "1334mat", + "firstName": "Mateusz", + "lastName": "Ginal", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "115062040024805378", + "summonerName": "Partyfosil", + "firstName": "Borjan ", + "lastName": "Nikolovski", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "115089215236456309", + "summonerName": "UnderNexus", + "firstName": "Denis", + "lastName": "Önal", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "support" + } + ] + }, + { + "id": "110490520396763771", + "slug": "fox-esports", + "name": "Fox E-Sports", + "code": "F0X", + "image": "http://static.lolesports.com/teams/1685951547414_angry-1294363_960_720-Marmottino.png", + "alternativeImage": "http://static.lolesports.com/teams/1685951547415_angry-1294363_960_720-Marmottino.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "110490456683667216", + "summonerName": "Soransen", + "firstName": "Daniele", + "lastName": "Soranzio", + "image": "http://static.lolesports.com/players/1685950574668_placeholder.png", + "role": "bottom" + }, + { + "id": "110490682569567055", + "summonerName": "Granduz", + "firstName": "Daniele", + "lastName": "Sguanci", + "image": "http://static.lolesports.com/players/1685954021477_placeholder.png", + "role": "top" + }, + { + "id": "110490685722071837", + "summonerName": "Saiko IV", + "firstName": "Cristian", + "lastName": "Esposito", + "image": "http://static.lolesports.com/players/1685954069509_placeholder.png", + "role": "jungle" + }, + { + "id": "110490687874072269", + "summonerName": "phal", + "firstName": "Alessio", + "lastName": "Rinaldi", + "image": "http://static.lolesports.com/players/1685954102396_placeholder.png", + "role": "bottom" + }, + { + "id": "107648251402388119", + "summonerName": "itSir", + "firstName": "Angelo", + "lastName": "Trussardi", + "image": "http://static.lolesports.com/players/1642581957973_placeholder.png", + "role": "support" + }, + { + "id": "110490692832026595", + "summonerName": "Aspierina", + "firstName": "Alberto Sergio", + "lastName": "Ciziceno", + "image": "http://static.lolesports.com/players/1685954177890_placeholder.png", + "role": "mid" + }, + { + "id": "110490701925777138", + "summonerName": "woolpo", + "firstName": "Lorenzo", + "lastName": "Puritano", + "image": "http://static.lolesports.com/players/1685954316881_placeholder.png", + "role": "jungle" + }, + { + "id": "110490720927809281", + "summonerName": "LoreB3ck", + "firstName": "Lorenzo", + "lastName": "Bechini", + "image": "http://static.lolesports.com/players/1685954604701_placeholder.png", + "role": "support" + }, + { + "id": "110524955711781263", + "summonerName": "Seconds", + "firstName": "Emanuele", + "lastName": "Marino", + "image": "http://static.lolesports.com/players/1686476986167_placeholder.png", + "role": "mid" + } + ] + }, + { + "id": "110490523275799270", + "slug": "novo-esports", + "name": "NOVO Esports", + "code": "NOVO", + "image": "http://static.lolesports.com/teams/1705526308584_LogoNovoesportsbianco1.png", + "alternativeImage": "http://static.lolesports.com/teams/1705526308585_Novoesports.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "106467183702433432", + "summonerName": "Imperial", + "firstName": "Yevhenii", + "lastName": "Sorokin", + "image": "http://static.lolesports.com/players/1644409436066_Imperial.png", + "role": "bottom" + }, + { + "id": "108403326187207841", + "summonerName": "Jony", + "firstName": "Jeon", + "lastName": " Young-in", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "jungle" + }, + { + "id": "105589316073314519", + "summonerName": "Ryuin", + "firstName": "Eunseung", + "lastName": "Baik", + "image": "http://static.lolesports.com/players/pobrane1.png", + "role": "mid" + }, + { + "id": "107648261738040239", + "summonerName": "SkaR", + "firstName": "Alessandro ", + "lastName": "Torresi", + "image": "http://static.lolesports.com/players/1642582115720_placeholder.png", + "role": "top" + }, + { + "id": "105537231860708827", + "summonerName": "Tinelli", + "firstName": "Matteo", + "lastName": "Gambardella", + "image": "https://static.lolesports.com/players/download.png", + "role": "support" + }, + { + "id": "107648240838312593", + "summonerName": "Blame", + "firstName": "Mirco", + "lastName": "Marongiu", + "image": "http://static.lolesports.com/players/1642581796947_placeholder.png", + "role": "jungle" + }, + { + "id": "107648266807315386", + "summonerName": "Pain", + "firstName": "Giulio", + "lastName": "Siena", + "image": "http://static.lolesports.com/players/1642582192870_placeholder.png", + "role": "mid" + }, + { + "id": "108448764255032223", + "summonerName": "Lobellan", + "firstName": "Bevione", + "lastName": "Emanuele", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "top" + }, + { + "id": "106421311924688451", + "summonerName": "Avarosa", + "firstName": "Taha Emre", + "lastName": "Karul", + "image": "http://static.lolesports.com/players/eSports_male_NoPlayer.png", + "role": "mid" + }, + { + "id": "105536895683103836", + "summonerName": "Thraex", + "firstName": "Andrea", + "lastName": "Sica", + "image": "https://static.lolesports.com/players/download.png", + "role": "mid" + }, + { + "id": "109749353387522669", + "summonerName": "lawmoi", + "firstName": "Lorenzo", + "lastName": "Biacchi", + "image": "http://static.lolesports.com/players/1674642235055_placeholder.png", + "role": "mid" + } + ] + }, + { + "id": "110492173877838150", + "slug": "eternal-fire", + "name": "Eternal Fire", + "code": "EF", + "image": "http://static.lolesports.com/teams/1737385957158_EternalFire.png", + "alternativeImage": "http://static.lolesports.com/teams/1737385957158_EternalFire.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "TCL", + "region": "EMEA" + }, + "players": [ + { + "id": "112438297110430173", + "summonerName": "Watket", + "firstName": "Batuhan", + "lastName": "Köse", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "105501844568585626", + "summonerName": "DnDn", + "firstName": "Geunwoo", + "lastName": "Park", + "image": "http://static.lolesports.com/players/1754473731179_image6231.png", + "role": "top" + }, + { + "id": "104251861472500857", + "summonerName": "OSMAN123", + "firstName": "Osman Meriç", + "lastName": "Çince", + "image": "http://static.lolesports.com/players/1705673049055_OSMAN123.png", + "role": "jungle" + }, + { + "id": "109625890321208220", + "summonerName": "Ivory ", + "firstName": "Jung", + "lastName": "Yechan", + "image": "http://static.lolesports.com/players/1718371245465_CL_BRO_Ivory_784.png", + "role": "mid" + }, + { + "id": "105548640573510364", + "summonerName": "RUEP", + "firstName": "İlker", + "lastName": "Bilen", + "image": "http://static.lolesports.com/players/1705672732881_RUEP.png", + "role": "bottom" + }, + { + "id": "99566406051575530", + "summonerName": "farfetch", + "firstName": "Berk", + "lastName": "Badur", + "image": "http://static.lolesports.com/players/1717747402282_farfetch.png", + "role": "support" + } + ] + }, + { + "id": "110494661652994183", + "slug": "team-unity", + "name": "Team UNiTY", + "code": "UNIT", + "image": "http://static.lolesports.com/teams/1705411358898_HM_UNIT.png", + "alternativeImage": "http://static.lolesports.com/teams/1705411358899_HM_UNIT.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Hitpoint Masters", + "region": "EMEA" + }, + "players": [ + { + "id": "109777192967695724", + "summonerName": "Bobsik", + "firstName": "Matyáš", + "lastName": "Dobeš", + "image": "http://static.lolesports.com/players/1675067028533_silhouette_transparent.png", + "role": "top" + }, + { + "id": "115048992266326649", + "summonerName": "Petersen", + "firstName": "David", + "lastName": "Peters", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "115048993315908516", + "summonerName": "Zyres", + "firstName": "Johann", + "lastName": "Wenisch", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "109517021196194697", + "summonerName": "EARYZ", + "firstName": "Wehinger", + "lastName": "Julian", + "image": "http://static.lolesports.com/players/1671097122836_placeholder.png", + "role": "jungle" + }, + { + "id": "110441511344850883", + "summonerName": "Marbirius", + "firstName": "Marcus", + "lastName": "Birgander", + "image": "http://static.lolesports.com/players/1685203725729_placeholder.png", + "role": "mid" + }, + { + "id": "114868146794306460", + "summonerName": "Akanania", + "firstName": "Kevin", + "lastName": "Rossier", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "114868148144767976", + "summonerName": "Aymen", + "firstName": "Aymen", + "lastName": "Zeghina", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "114868149802349438", + "summonerName": "smajloos", + "firstName": "Dominik", + "lastName": "Dvořák", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "110648673412784156", + "summonerName": "SLIDE", + "firstName": "Jan", + "lastName": "Toszek", + "image": "http://static.lolesports.com/players/1688364765913_placeholder.png", + "role": "mid" + }, + { + "id": "114868152351955875", + "summonerName": "Zoppy", + "firstName": "Tomas", + "lastName": "Kovar", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "support" + } + ] + }, + { + "id": "110506938087991033", + "slug": "fl-academy", + "name": "FL Academy", + "code": "FL", + "image": "http://static.lolesports.com/teams/1686804574843_fl_logo_white.png", + "alternativeImage": "http://static.lolesports.com/teams/1686804574844_fl_logo_black.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "106304305078654334", + "summonerName": "Momo", + "firstName": "Sora", + "lastName": "Tobita", + "image": "http://static.lolesports.com/players/1755157432572_DFM_Momo.png", + "role": "top" + }, + { + "id": "104253137978020060", + "summonerName": "Yunika", + "firstName": "Reo", + "lastName": "Komoda", + "image": "http://static.lolesports.com/players/1686201507555_Dammy.png", + "role": "jungle" + }, + { + "id": "107618427663806057", + "summonerName": "Kakkun", + "firstName": "Kamon", + "lastName": "Nomoto", + "image": "http://static.lolesports.com/players/1747471809106_DFM_Kakkun.png", + "role": "mid" + }, + { + "id": "106645154191921942", + "summonerName": "Deant", + "firstName": "Inkai", + "lastName": "Ro", + "image": "http://static.lolesports.com/players/1676809834772_Dammy.png", + "role": "bottom" + }, + { + "id": "106803906751189833", + "summonerName": "Shakespeare", + "firstName": "Miyu", + "lastName": "Otomo", + "image": "http://static.lolesports.com/players/1686138515042_fl_shakespeare.png", + "role": "support" + } + ] + }, + { + "id": "110524984501592318", + "slug": "ggf-esports", + "name": "GGF Esports", + "code": "GGF", + "image": "http://static.lolesports.com/teams/1686477426041_ggfwhitetrasparent-GGFTWITCH.png", + "alternativeImage": "http://static.lolesports.com/teams/1686477426043_ggfwhitetrasparent-GGFTWITCH.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "110641679058655735", + "summonerName": "Form", + "firstName": "Lorenzo", + "lastName": "Formenti", + "image": "http://static.lolesports.com/players/1688258038176_silhouette_transparent.png", + "role": "none" + }, + { + "id": "107599716593524565", + "summonerName": "Janeq", + "firstName": "Nikodem", + "lastName": "Labocha", + "image": "http://static.lolesports.com/players/1641841375411_placeholder.png", + "role": "jungle" + }, + { + "id": "110688494421868966", + "summonerName": "Django", + "firstName": "Stefano", + "lastName": "Rovai", + "image": "http://static.lolesports.com/players/1688972383119_placeholder.png", + "role": "bottom" + }, + { + "id": "110524965579471253", + "summonerName": "SirCotza", + "firstName": "Cosimo", + "lastName": "Grassi", + "image": "http://static.lolesports.com/players/1686477136667_placeholder.png", + "role": "support" + }, + { + "id": "110524967168766782", + "summonerName": "COZzoSKIllz", + "firstName": "Giovanni", + "lastName": "Cozzolino", + "image": "http://static.lolesports.com/players/1686477161179_placeholder.png", + "role": "bottom" + }, + { + "id": "110524971624319683", + "summonerName": "Deckard", + "firstName": "Federico", + "lastName": "Landozzi", + "image": "http://static.lolesports.com/players/1686477229122_placeholder.png", + "role": "bottom" + }, + { + "id": "110524974245994745", + "summonerName": "giannivedi", + "firstName": "Paolo", + "lastName": "Cugurra", + "image": "http://static.lolesports.com/players/1686477269156_placeholder.png", + "role": "mid" + }, + { + "id": "110524975954082209", + "summonerName": "rnascimento", + "firstName": "Massimiliano", + "lastName": "Rossi", + "image": "http://static.lolesports.com/players/1686477294645_placeholder.png", + "role": "jungle" + }, + { + "id": "110524977412848037", + "summonerName": "xLud", + "firstName": "Ludovico", + "lastName": "Restuccia", + "image": "http://static.lolesports.com/players/1686477317520_placeholder.png", + "role": "top" + }, + { + "id": "110524979512310748", + "summonerName": "Zeytum", + "firstName": "Daniele Davide Elia", + "lastName": "Olivieri", + "image": "http://static.lolesports.com/players/1686477349281_placeholder.png", + "role": "top" + } + ] + }, + { + "id": "110528566197977205", + "slug": "golden-age-gaming", + "name": "Golden Age Gaming", + "code": "GAG", + "image": "http://static.lolesports.com/teams/1686532072416_LOLESPORTSICON.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Arabian League", + "region": "EMEA" + }, + "players": [ + { + "id": "110528688651255468", + "summonerName": "Deibjerg", + "firstName": "Svend", + "lastName": "Tausen", + "image": "http://static.lolesports.com/players/1686533938180_placeholder.png", + "role": "bottom" + }, + { + "id": "110528689795645105", + "summonerName": "chuba", + "firstName": "mohamed", + "lastName": "ali", + "image": "http://static.lolesports.com/players/1686533956338_placeholder.png", + "role": "top" + }, + { + "id": "110528690951979127", + "summonerName": "Medo", + "firstName": "mohamed", + "lastName": "chigr", + "image": "http://static.lolesports.com/players/1686533973576_placeholder.png", + "role": "support" + }, + { + "id": "110528692087783547", + "summonerName": "Shtegre", + "firstName": "mohamed", + "lastName": "Ali", + "image": "http://static.lolesports.com/players/1686533990907_placeholder.png", + "role": "top" + }, + { + "id": "109696898443461461", + "summonerName": "Mirage", + "firstName": "Ahmed", + "lastName": "Zhran", + "image": "http://static.lolesports.com/players/1673841831575_silhouette_transparent.png", + "role": "mid" + }, + { + "id": "109904382723583845", + "summonerName": "Agran", + "firstName": "Hamza", + "lastName": "Agran", + "image": "http://static.lolesports.com/players/1677007784947_placeholder.png", + "role": "jungle" + }, + { + "id": "110528694320005247", + "summonerName": "Imjustpro", + "firstName": "Ayoub", + "lastName": "Chargui", + "image": "http://static.lolesports.com/players/1686534024454_placeholder.png", + "role": "bottom" + }, + { + "id": "110528695504044170", + "summonerName": "Parein", + "firstName": "Kristupas", + "lastName": "Danilevičius", + "image": "http://static.lolesports.com/players/1686534043851_placeholder.png", + "role": "support" + }, + { + "id": "109641919444818722", + "summonerName": "Baran", + "firstName": "Baran", + "lastName": "Bayakir", + "image": "http://static.lolesports.com/players/1673002919523_placeholder.png", + "role": "jungle" + } + ] + }, + { + "id": "110528569454776235", + "slug": "pegasus", + "name": "Pegasus", + "code": "PGS", + "image": "http://static.lolesports.com/teams/1686532121466_LOLESPORTSICON.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Arabian League", + "region": "EMEA" + }, + "players": [ + { + "id": "111912102455498906", + "summonerName": "Bashq", + "firstName": "Mohamed", + "lastName": "Ahmed", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "111956419184334278", + "summonerName": "Moka", + "firstName": "Marwan", + "lastName": "Osama Ahmad", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "111956420732566662", + "summonerName": "Bunnyhub", + "firstName": "Samir", + "lastName": "Amin", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "111813496850580960", + "summonerName": "Brightsteel", + "firstName": "Iliass", + "lastName": "Baba Ahmed", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "111813497103025638", + "summonerName": "Edi2", + "firstName": "Eduard", + "lastName": "Buricel", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "111813497051387499", + "summonerName": "Picasso", + "firstName": "Marouane", + "lastName": "Haydagha", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "111813496925649460", + "summonerName": "Shadow9", + "firstName": "Basel", + "lastName": "Reda Farouk", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "112591340647851415", + "summonerName": "Trobax", + "firstName": "Hossam", + "lastName": "Mohammed Refaey", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "112077010987809873", + "summonerName": "Aqua2", + "firstName": "Bahji", + "lastName": "Youssef", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "112670767338186547", + "summonerName": "Trifan", + "firstName": "Trifan", + "lastName": "Iulian Daniel", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "109696767414780627", + "summonerName": "Shadow5", + "firstName": "Basil", + "lastName": "Reda", + "image": "http://static.lolesports.com/players/1673839831665_silhouette_transparent.png", + "role": "jungle" + }, + { + "id": "112444826188239089", + "summonerName": "SMGRE", + "firstName": "stelios", + "lastName": "mavrakis", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "112444825114114049", + "summonerName": "PapilGRE", + "firstName": "Pappas", + "lastName": "Panagiotis", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "111813498195163704", + "summonerName": "Sundax", + "firstName": "Haroun", + "lastName": "Ben Hadj Lakhal", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "109696755545267226", + "summonerName": "Ibrahimzzz", + "firstName": "ibrahim", + "lastName": "mossad", + "image": "http://static.lolesports.com/players/1673839651177_silhouette_transparent.png", + "role": "mid" + }, + { + "id": "109696892318639033", + "summonerName": "Nakimura", + "firstName": "Ahmed", + "lastName": "Mahmoud", + "image": "http://static.lolesports.com/players/1673841737987_silhouette_transparent.png", + "role": "jungle" + } + ] + }, + { + "id": "110528571125135311", + "slug": "team-amazigh", + "name": "Team Amazigh", + "code": "TAE", + "image": "http://static.lolesports.com/teams/1686532146656_LOLESPORTSICON.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Arabian League", + "region": "EMEA" + }, + "players": [ + { + "id": "105593281877335258", + "summonerName": "Drago", + "firstName": "Adam", + "lastName": "Baba", + "image": "http://static.lolesports.com/players/placeholder_.jpg", + "role": "jungle" + }, + { + "id": "106306511686016814", + "summonerName": "Sebal", + "firstName": "Sebastian ", + "lastName": "Sidenius", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "jungle" + }, + { + "id": "110528655660646561", + "summonerName": "Spear", + "firstName": "Mohamed", + "lastName": "Ben Hamed", + "image": "http://static.lolesports.com/players/1686533435105_placeholder.png", + "role": "jungle" + }, + { + "id": "110528658432474755", + "summonerName": "HUNTER2", + "firstName": "Adem", + "lastName": "Debich", + "image": "http://static.lolesports.com/players/1686533476945_placeholder.png", + "role": "jungle" + }, + { + "id": "106453711527296184", + "summonerName": "Ejsner", + "firstName": "Wiktor", + "lastName": "Świderski", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "bottom" + } + ] + }, + { + "id": "110528575606980619", + "slug": "orgless", + "name": "Orgless", + "code": "OGL", + "image": "http://static.lolesports.com/teams/1686532215120_LOLESPORTSICON.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Arabian League", + "region": "EMEA" + }, + "players": [ + { + "id": "107564675440240861", + "summonerName": "Petoska", + "firstName": "Petrus", + "lastName": "Karevaara", + "image": "http://static.lolesports.com/players/1641306688645_placeholder.png", + "role": "top" + }, + { + "id": "109696903264490963", + "summonerName": "Astrai", + "firstName": "Mohamed Amine", + "lastName": "Taha", + "image": "http://static.lolesports.com/players/1673841905154_silhouette_transparent.png", + "role": "support" + }, + { + "id": "105593166864139789", + "summonerName": "Pocok", + "firstName": "Ede Viktor", + "lastName": "Csernay", + "image": "http://static.lolesports.com/players/placeholder_.jpg", + "role": "jungle" + }, + { + "id": "109696820220715913", + "summonerName": "TYSON", + "firstName": "Mostafa", + "lastName": "Tysser", + "image": "http://static.lolesports.com/players/1673840637900_silhouette_transparent.png", + "role": "top" + }, + { + "id": "110528605855147450", + "summonerName": "Saikek", + "firstName": "Yasri", + "lastName": "Mohamed Raouf", + "image": "http://static.lolesports.com/players/1686532675637_placeholder.png", + "role": "mid" + } + ] + }, + { + "id": "110534696811298545", + "slug": "apex-mission-impossible", + "name": "Apex Mission Impossible", + "code": "AMI", + "image": "http://static.lolesports.com/teams/1742290724150_Apex_FullColor.png", + "alternativeImage": "http://static.lolesports.com/teams/1742290724150_Apex_FullColor.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "NACL", + "region": "NORTH AMERICA" + }, + "players": [ + { + "id": "114187981438173613", + "summonerName": "PhyMini", + "firstName": "Kolby", + "lastName": "Ashby", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "110535769069816514", + "summonerName": "Bazz1", + "firstName": "Manuel", + "lastName": "Carhuayal", + "image": "http://static.lolesports.com/players/1686641986087_placeholder.png", + "role": "bottom" + }, + { + "id": "107577680634464093", + "summonerName": "Pockus", + "firstName": "Antoine", + "lastName": "Lafreniere", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "support" + }, + { + "id": "110535793093741280", + "summonerName": "Nani", + "firstName": "Zacharie", + "lastName": "Tousignant", + "image": "http://static.lolesports.com/players/1686642352429_placeholder.png", + "role": "none" + }, + { + "id": "112799442943643953", + "summonerName": "PhantomStar", + "firstName": "Joseph", + "lastName": "Armour", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + }, + { + "id": "107577684635174819", + "summonerName": "Topo", + "firstName": "Charles", + "lastName": "Uram", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "109783264496655880", + "summonerName": "Good Boi", + "firstName": "Emmanuel", + "lastName": "Rouleau-Grosset", + "image": "http://static.lolesports.com/players/1675159674194_placeholder.png", + "role": "none" + }, + { + "id": "110535799111370640", + "summonerName": "Dcoy", + "firstName": "Noah", + "lastName": "D'Addario", + "image": "http://static.lolesports.com/players/1686642444480_placeholder.png", + "role": "top" + } + ] + }, + { + "id": "110534700622694005", + "slug": "aporia", + "name": "Aporia", + "code": "APR", + "image": "http://static.lolesports.com/teams/1686625674103_Aporia.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "109783492667538764", + "summonerName": "Enthralled", + "firstName": "James", + "lastName": "Hernandez", + "image": "http://static.lolesports.com/players/1675163155748_placeholder.png", + "role": "bottom" + }, + { + "id": "110535828194822891", + "summonerName": "Debounair", + "firstName": "Donovin", + "lastName": "Boun", + "image": "http://static.lolesports.com/players/1686642888019_placeholder.png", + "role": "mid" + }, + { + "id": "107828129888668940", + "summonerName": "Aito", + "firstName": "Owen", + "lastName": "Sung-Kyun Lee", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + }, + { + "id": "110535832031091052", + "summonerName": "John Pork", + "firstName": "Tre", + "lastName": "Stanley", + "image": "http://static.lolesports.com/players/1686642946486_placeholder.png", + "role": "none" + }, + { + "id": "110535834235603720", + "summonerName": "Cryogen", + "firstName": "Michael", + "lastName": "Luu", + "image": "http://static.lolesports.com/players/1686642979840_placeholder.png", + "role": "support" + }, + { + "id": "99101098210866843", + "summonerName": "PCL", + "firstName": "Kostyantyn", + "lastName": "Dudarchuk", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/piecakelord-aetk9uqh.png", + "role": "top" + }, + { + "id": "110536452245981966", + "summonerName": "Excelsis", + "firstName": "Samuel", + "lastName": "Chen", + "image": "http://static.lolesports.com/players/1686652410358_placeholder.png", + "role": "jungle" + }, + { + "id": "108359201586419546", + "summonerName": "XiaoDanny", + "firstName": "Coyle", + "lastName": "Daniel", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "mid" + }, + { + "id": "106857952763738419", + "summonerName": "Clyde", + "firstName": "Luis", + "lastName": "Ferrera", + "image": "http://static.lolesports.com/players/1630522958789_silhouette.png", + "role": "support" + }, + { + "id": "110535883175254401", + "summonerName": "Reppy", + "firstName": "Ethan", + "lastName": "Fu", + "image": "http://static.lolesports.com/players/1686643727161_placeholder.png", + "role": "none" + } + ] + }, + { + "id": "110534712174898632", + "slug": "blue-otter", + "name": "Blue Otter", + "code": "BLUE", + "image": "http://static.lolesports.com/teams/1686625849125_BlueOtter.png", + "alternativeImage": "http://static.lolesports.com/teams/1686625849126_BlueOtter.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "NACL", + "region": "NORTH AMERICA" + }, + "players": [ + { + "id": "114207414663725503", + "summonerName": "Alcalamity", + "firstName": "Joseph", + "lastName": "Schaffer", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "114207414779722534", + "summonerName": "SageWabe", + "firstName": "Kevin", + "lastName": "Tran", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "106857889055026954", + "summonerName": "Array", + "firstName": "Jackson", + "lastName": "Moldenhauer", + "image": "http://static.lolesports.com/players/1674833397512_GG_ARRAY.png", + "role": "bottom" + }, + { + "id": "114188048599505764", + "summonerName": "Chrome", + "firstName": "Aaron ", + "lastName": "Li", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "102181363413471584", + "summonerName": "Strompest", + "firstName": "Seungmin", + "lastName": "Lee", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/strompest-dohnsr07.png", + "role": "none" + }, + { + "id": "105913365779160208", + "summonerName": "Qwacker", + "firstName": "Michael", + "lastName": "Zou", + "image": "http://static.lolesports.com/players/silhouette.png", + "role": "top" + }, + { + "id": "112551579800765777", + "summonerName": "Samikin", + "firstName": "Samrith", + "lastName": "Loeung", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "106857955107567927", + "summonerName": "rovex", + "firstName": "David", + "lastName": "Sin-Keo", + "image": "http://static.lolesports.com/players/1630522994689_silhouette.png", + "role": "support" + }, + { + "id": "108604965748174033", + "summonerName": "Lawrencee", + "firstName": "Lawrence", + "lastName": "Yap", + "image": "http://static.lolesports.com/players/1657180261990_placeholder.png", + "role": "none" + }, + { + "id": "109782648292867379", + "summonerName": "KryRa", + "firstName": "Christian", + "lastName": "Rahaian", + "image": "http://static.lolesports.com/players/1675150271520_placeholder.png", + "role": "jungle" + } + ] + }, + { + "id": "110534714934488523", + "slug": "cb-gaming", + "name": "CB Gaming", + "code": "CBG", + "image": "http://static.lolesports.com/teams/1686625892099_CBGaming.png", + "alternativeImage": "http://static.lolesports.com/teams/1686625892100_CBGaming.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "108369186541738788", + "summonerName": "Geiger", + "firstName": "Geiger", + "lastName": "Thomas", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "top" + }, + { + "id": "107577677304317723", + "summonerName": "Saico", + "firstName": "Brandon", + "lastName": "Wolfgang", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "bottom" + }, + { + "id": "107577682502926966", + "summonerName": "Kolthro", + "firstName": "Devin", + "lastName": "Drzewucki", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "110536062618191877", + "summonerName": "Pluto1", + "firstName": "Nicholas", + "lastName": "Jones", + "image": "http://static.lolesports.com/players/1686646465105_placeholder.png", + "role": "none" + }, + { + "id": "110535909226088911", + "summonerName": "Warcyclone", + "firstName": "Kenny", + "lastName": "Nguyen", + "image": "http://static.lolesports.com/players/1686644124455_placeholder.png", + "role": "bottom" + }, + { + "id": "110535911000262575", + "summonerName": "K2", + "firstName": "Shuo", + "lastName": "Li", + "image": "http://static.lolesports.com/players/1686644151632_placeholder.png", + "role": "jungle" + }, + { + "id": "110535912811694931", + "summonerName": "Klexo", + "firstName": "Aaron", + "lastName": "Yang", + "image": "http://static.lolesports.com/players/1686644179339_placeholder.png", + "role": "mid" + }, + { + "id": "110535915479271892", + "summonerName": "sigye", + "firstName": "Christian", + "lastName": "Hoy", + "image": "http://static.lolesports.com/players/1686644219935_placeholder.png", + "role": "none" + }, + { + "id": "110535919518779864", + "summonerName": "Shift1", + "firstName": "Chris", + "lastName": "Gendreau", + "image": "http://static.lolesports.com/players/1686644281327_placeholder.png", + "role": "none" + }, + { + "id": "110535933483977187", + "summonerName": "Mixtsure", + "firstName": "Eric", + "lastName": "Yin", + "image": "http://static.lolesports.com/players/1686644494079_placeholder.png", + "role": "support" + }, + { + "id": "110535935239227886", + "summonerName": "JJK", + "firstName": "Jiayi", + "lastName": "Lu", + "image": "http://static.lolesports.com/players/1686644521355_placeholder.png", + "role": "top" + } + ] + }, + { + "id": "110534724851488577", + "slug": "froggy-five", + "name": "Froggy Five", + "code": "FROG", + "image": "http://static.lolesports.com/teams/1686626042666_FroggyFive.png", + "alternativeImage": "http://static.lolesports.com/teams/1686626042667_FroggyFive.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107577677304317723", + "summonerName": "Saico", + "firstName": "Brandon", + "lastName": "Wolfgang", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "bottom" + }, + { + "id": "107577682586584955", + "summonerName": "Meslo", + "firstName": "Spencer", + "lastName": "Gega", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "mid" + }, + { + "id": "110536055449776091", + "summonerName": "Nemesis9", + "firstName": "Ryan", + "lastName": "Saenz", + "image": "http://static.lolesports.com/players/1686646355629_placeholder.png", + "role": "none" + }, + { + "id": "110536059373312464", + "summonerName": "Prank", + "firstName": "Dalton", + "lastName": "Swaino", + "image": "http://static.lolesports.com/players/1686646415878_placeholder.png", + "role": "none" + }, + { + "id": "110536062618191877", + "summonerName": "Pluto1", + "firstName": "Nicholas", + "lastName": "Jones", + "image": "http://static.lolesports.com/players/1686646465105_placeholder.png", + "role": "support" + }, + { + "id": "108369186541738788", + "summonerName": "Geiger", + "firstName": "Geiger", + "lastName": "Thomas", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "top" + }, + { + "id": "107577682502926966", + "summonerName": "Kolthro", + "firstName": "Devin", + "lastName": "Drzewucki", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "jungle" + } + ] + }, + { + "id": "110534728305628996", + "slug": "kelyxs-grandpa-gamers", + "name": "Kelyx's Grandpa Gamers", + "code": "OLD", + "image": "http://static.lolesports.com/teams/1686626096392_KelyxsGrandpaGamers.png", + "alternativeImage": "http://static.lolesports.com/teams/1686626096392_KelyxsGrandpaGamers.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "108359200962538338", + "summonerName": "Sunlight", + "firstName": "Riebschleger", + "lastName": "Joseph", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "top" + }, + { + "id": "109989901744821853", + "summonerName": "Julien ", + "firstName": "Julien", + "lastName": "Gelinas", + "image": "http://static.lolesports.com/players/1678312700378_placeholder.png", + "role": "support" + }, + { + "id": "109783522072031875", + "summonerName": "Voxtrik", + "firstName": "Zak", + "lastName": "Sohrabi", + "image": "http://static.lolesports.com/players/1675163604610_placeholder.png", + "role": "none" + }, + { + "id": "107577686082568874", + "summonerName": "Legacy", + "firstName": "Andy", + "lastName": "Ejim", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "110536114678286350", + "summonerName": "IamSunlight", + "firstName": "Joseph", + "lastName": "Riebschleger", + "image": "http://static.lolesports.com/players/1686647259627_placeholder.png", + "role": "top" + }, + { + "id": "108359201190467147", + "summonerName": "RBM", + "firstName": "Demarest", + "lastName": "Peyton", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + }, + { + "id": "107577684222788124", + "summonerName": "omly", + "firstName": "Paul", + "lastName": "Davis", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "107577676551702284", + "summonerName": "EvanRL", + "firstName": "Evan", + "lastName": "Lawson", + "image": "http://static.lolesports.com/players/1655144453083_neutralpfp.png", + "role": "none" + }, + { + "id": "107577684155844507", + "summonerName": "Jouzef", + "firstName": "Jouzef", + "lastName": "Barkho", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "110536101327339781", + "summonerName": "Little Boss", + "firstName": "rohan", + "lastName": "modalavalasa", + "image": "http://static.lolesports.com/players/1686647055487_placeholder.png", + "role": "none" + } + ] + }, + { + "id": "110534732558665825", + "slug": "komodo", + "name": "Komodo", + "code": "KMD", + "image": "http://static.lolesports.com/teams/1686626161172_Komodo.png", + "alternativeImage": "http://static.lolesports.com/teams/1686626161173_Komodo.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107577682684527120", + "summonerName": "airren", + "firstName": "Aaron", + "lastName": "Li", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "bottom" + }, + { + "id": "110536140884380252", + "summonerName": "Frost1", + "firstName": "Christian", + "lastName": "Rahaian", + "image": "http://static.lolesports.com/players/1686647658734_placeholder.png", + "role": "jungle" + }, + { + "id": "107559861486280453", + "summonerName": "Eclipse", + "firstName": "Yujie", + "lastName": "Wu", + "image": "http://static.lolesports.com/players/1645004509707_ECLIPSE.png", + "role": "none" + }, + { + "id": "107577678614544951", + "summonerName": "Mabud", + "firstName": "Jake", + "lastName": "Riley", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "top" + }, + { + "id": "108577049260353126", + "summonerName": "Sarcasm", + "firstName": "Tran", + "lastName": "Austin", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + }, + { + "id": "99101098222932482", + "summonerName": "TeeSum", + "firstName": "Christopher", + "lastName": "Fong", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/teesum-6jhq5ju5.png", + "role": "none" + }, + { + "id": "107577678374651690", + "summonerName": "Doxa", + "firstName": "William", + "lastName": "Lee", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "mid" + }, + { + "id": "107577684635174819", + "summonerName": "Topo", + "firstName": "Charles", + "lastName": "Uram", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "top" + }, + { + "id": "110734301564443322", + "summonerName": "Burai", + "firstName": "Anki", + "lastName": "Shen", + "image": "http://static.lolesports.com/players/1689671346416_placeholder.png", + "role": "bottom" + }, + { + "id": "110734303321604771", + "summonerName": "Kenji", + "firstName": "Kenji", + "lastName": "Kaneko", + "image": "http://static.lolesports.com/players/1689671373386_placeholder.png", + "role": "support" + }, + { + "id": "107584071595480188", + "summonerName": "ZKG", + "firstName": "Zachary", + "lastName": "Koslow", + "image": "http://static.lolesports.com/players/1641602652903_silhouette.png", + "role": "none" + }, + { + "id": "106857895007203096", + "summonerName": "Matty", + "firstName": "Mathieu", + "lastName": "Breton", + "image": "http://static.lolesports.com/players/1630522077800_silhouette.png", + "role": "none" + }, + { + "id": "99322380962940029", + "summonerName": "Kitzuo", + "firstName": "Thanh Dat", + "lastName": "Nguyen Tran", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/kitzuo-fcqvlwj2.png", + "role": "jungle" + } + ] + }, + { + "id": "110534741480867943", + "slug": "teamless-revenge", + "name": "Teamless Revenge", + "code": "TRV", + "image": "http://static.lolesports.com/teams/1686708812691_TeamlessRevenge.png", + "alternativeImage": "http://static.lolesports.com/teams/1686708812692_TeamlessRevenge.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "110536455442500370", + "summonerName": "Likable", + "firstName": "Steven", + "lastName": "Lu", + "image": "http://static.lolesports.com/players/1686652459477_placeholder.png", + "role": "none" + }, + { + "id": "110536457113668701", + "summonerName": "HugMe", + "firstName": "Hugh", + "lastName": "Kim", + "image": "http://static.lolesports.com/players/1686652484683_placeholder.png", + "role": "none" + }, + { + "id": "110536459458874148", + "summonerName": "ZatsMod", + "firstName": "Julien", + "lastName": "Gelinas", + "image": "http://static.lolesports.com/players/1686652520696_placeholder.png", + "role": "none" + }, + { + "id": "110536461036509845", + "summonerName": "Diesel", + "firstName": "Darrell", + "lastName": "Jenkins", + "image": "http://static.lolesports.com/players/1686652544839_placeholder.png", + "role": "top" + }, + { + "id": "110734469613241277", + "summonerName": "Crackadon", + "firstName": "Leighton", + "lastName": "Shum", + "image": "http://static.lolesports.com/players/1689673910812_placeholder.png", + "role": "jungle" + }, + { + "id": "110734472375714756", + "summonerName": "Genesis", + "firstName": "Angel", + "lastName": "Lu", + "image": "http://static.lolesports.com/players/1689673953039_placeholder.png", + "role": "mid" + }, + { + "id": "110734473844759484", + "summonerName": "Saint Ghoul", + "firstName": "Aziel", + "lastName": "Isai Lorenzo", + "image": "http://static.lolesports.com/players/1689673975474_placeholder.png", + "role": "support" + }, + { + "id": "110536446680451303", + "summonerName": "InoriB", + "firstName": "Johnney", + "lastName": "Truong", + "image": "http://static.lolesports.com/players/1686652325291_placeholder.png", + "role": "bottom" + }, + { + "id": "107577681565827689", + "summonerName": "Enigma", + "firstName": "Julien", + "lastName": "Mayrand", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "mid" + } + ] + }, + { + "id": "110534749775658790", + "slug": "the-cheese-chasers", + "name": "The Cheese Chasers", + "code": "NPC", + "image": "http://static.lolesports.com/teams/1686708852706_TheCheeseChasers.png", + "alternativeImage": "http://static.lolesports.com/teams/1686708852707_TheCheeseChasers.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "110536346670357095", + "summonerName": "Dev Unikorn", + "firstName": "Dev Unikorn", + "lastName": "Dev Unikorn", + "image": "http://static.lolesports.com/players/1686650799444_placeholder.png", + "role": "none" + }, + { + "id": "109783527567356551", + "summonerName": "AoJune", + "firstName": "JunHao", + "lastName": "Chen", + "image": "http://static.lolesports.com/players/1675163688572_placeholder.png", + "role": "mid" + } + ] + }, + { + "id": "110534751905120040", + "slug": "young-buffalos", + "name": "Young Buffalos", + "code": "YB", + "image": "http://static.lolesports.com/teams/1686626457004_YoungBuffalos.png", + "alternativeImage": "http://static.lolesports.com/teams/1686626457005_YoungBuffalos.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107577679867396578", + "summonerName": "sahori", + "firstName": "John", + "lastName": "Vu", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "bottom" + }, + { + "id": "107577679733344073", + "summonerName": "duong pro", + "firstName": "Duong", + "lastName": "Tran", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "jungle" + }, + { + "id": "108359201586419546", + "summonerName": "XiaoDanny", + "firstName": "Coyle", + "lastName": "Daniel", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "mid" + }, + { + "id": "107577680061383146", + "summonerName": "Misterdot", + "firstName": "Andrew", + "lastName": "Liu", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "109783494492192736", + "summonerName": "Kurulean", + "firstName": "Matthew", + "lastName": "Nguyen", + "image": "http://static.lolesports.com/players/1675163184077_placeholder.png", + "role": "support" + }, + { + "id": "109783499814022325", + "summonerName": "BoilTheOil", + "firstName": "Brock", + "lastName": "Hanson", + "image": "http://static.lolesports.com/players/1675163265345_placeholder.png", + "role": "top" + } + ] + }, + { + "id": "110733864366329081", + "slug": "team-e-turner", + "name": "Team E Turner", + "code": "TET", + "image": "http://static.lolesports.com/teams/1689664807064_TeamETurner.png", + "alternativeImage": "http://static.lolesports.com/teams/1689664807065_TeamETurner.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "108373031065427229", + "summonerName": "V1tal", + "firstName": "Adam", + "lastName": "Khamis", + "image": "http://static.lolesports.com/players/1655451866248_V1TAL.png", + "role": "top" + }, + { + "id": "107828217500732780", + "summonerName": "Vakin", + "firstName": "Owen", + "lastName": "Ferrier", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "jungle" + }, + { + "id": "110734446978945110", + "summonerName": "Tempest1", + "firstName": "Andrew", + "lastName": "stark", + "image": "http://static.lolesports.com/players/1689673564545_placeholder.png", + "role": "mid" + }, + { + "id": "107577678085079603", + "summonerName": "Duoking1", + "firstName": "James", + "lastName": "Stephenson", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "support" + }, + { + "id": "109981727907982193", + "summonerName": "Dun", + "firstName": "Martin", + "lastName": "Sleiwa", + "image": "http://static.lolesports.com/players/1678187980840_placeholder.png", + "role": "none" + }, + { + "id": "110734451577606245", + "summonerName": "walnut", + "firstName": "Walton", + "lastName": "Chung", + "image": "http://static.lolesports.com/players/1689673635394_placeholder.png", + "role": "support" + }, + { + "id": "109981716719545187", + "summonerName": "niinim", + "firstName": "Mateus", + "lastName": "Alves de Almeida", + "image": "http://static.lolesports.com/players/1678187809453_placeholder.png", + "role": "bottom" + } + ] + }, + { + "id": "110733870612047344", + "slug": "team-coachify", + "name": "Team Coachify", + "code": "CFY", + "image": "http://static.lolesports.com/teams/1689664767106_TeamCoachify.png", + "alternativeImage": "http://static.lolesports.com/teams/1689664767107_TeamCoachify.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "109871532529330131", + "summonerName": "LJX", + "firstName": "Louis", + "lastName": "Lin", + "image": "http://static.lolesports.com/players/1676506535111_silhouette_transparent.png", + "role": "jungle" + }, + { + "id": "107828217272563683", + "summonerName": "SiddyWiddy", + "firstName": "Siddhant", + "lastName": "Nath", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "bottom" + }, + { + "id": "106857955107567927", + "summonerName": "rovex", + "firstName": "David", + "lastName": "Sin-Keo", + "image": "http://static.lolesports.com/players/1630522994689_silhouette.png", + "role": "support" + }, + { + "id": "107577678745585454", + "summonerName": "FrostForest", + "firstName": "Jacob", + "lastName": "Chan", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + }, + { + "id": "110536140884380252", + "summonerName": "Frost1", + "firstName": "Christian", + "lastName": "Rahaian", + "image": "http://static.lolesports.com/players/1686647658734_placeholder.png", + "role": "none" + } + ] + }, + { + "id": "110733877357854829", + "slug": "gentle-hearts-gaming", + "name": "Gentle Hearts Gaming", + "code": "GHG", + "image": "http://static.lolesports.com/teams/1689664866295_GentleHeartsGaming.png", + "alternativeImage": "http://static.lolesports.com/teams/1689664866296_GentleHeartsGaming.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "110733881542862348", + "slug": "cold-hearted", + "name": "Cold Hearted", + "code": "COLD", + "image": "http://static.lolesports.com/teams/1689664933618_ColdHearted.png", + "alternativeImage": "http://static.lolesports.com/teams/1689664933619_ColdHearted.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "110734222499270384", + "summonerName": "Johntheman", + "firstName": "Roger", + "lastName": "Nelson", + "image": "http://static.lolesports.com/players/1689670140311_placeholder.png", + "role": "top" + }, + { + "id": "109783210283900405", + "summonerName": "Davemon", + "firstName": "David", + "lastName": "Steinmeyer", + "image": "http://static.lolesports.com/players/1675158846650_placeholder.png", + "role": "mid" + }, + { + "id": "110734227631260212", + "summonerName": "Yozu", + "firstName": "Noah", + "lastName": "Carter", + "image": "http://static.lolesports.com/players/1689670217884_placeholder.png", + "role": "bottom" + }, + { + "id": "110734232688742144", + "summonerName": "Antcliff", + "firstName": "Logan", + "lastName": "Antcliff", + "image": "http://static.lolesports.com/players/1689670295624_placeholder.png", + "role": "none" + }, + { + "id": "109783220720311808", + "summonerName": "Delights", + "firstName": "Julian", + "lastName": "Celis", + "image": "http://static.lolesports.com/players/1675159006358_placeholder.png", + "role": "none" + } + ] + }, + { + "id": "110733889090164854", + "slug": "return-of-the-middlesticks", + "name": "Return of the Middlesticks", + "code": "ROTM", + "image": "http://static.lolesports.com/teams/1689665047701_ReturnoftheMiddlesticks1.png", + "alternativeImage": "http://static.lolesports.com/teams/1689665047703_ReturnoftheMiddlesticks1.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "110734375638473497", + "summonerName": "Kookykrook", + "firstName": "Alexis", + "lastName": "Rodriguez", + "image": "http://static.lolesports.com/players/1689672476143_placeholder.png", + "role": "top" + }, + { + "id": "110734382304225523", + "summonerName": "Dragowski", + "firstName": "Nicholas Alexander", + "lastName": "Dragowski", + "image": "http://static.lolesports.com/players/1689672577721_placeholder.png", + "role": "jungle" + }, + { + "id": "110734389154290474", + "summonerName": "Max108", + "firstName": "Maxime", + "lastName": "Lamothe", + "image": "http://static.lolesports.com/players/1689672683041_placeholder.png", + "role": "mid" + }, + { + "id": "110734393683634460", + "summonerName": "Puppeh", + "firstName": "Troy", + "lastName": "Wells", + "image": "http://static.lolesports.com/players/1689672752199_placeholder.png", + "role": "bottom" + }, + { + "id": "110734399542284248", + "summonerName": "Boy Wonder", + "firstName": "Jacob", + "lastName": "Radtke", + "image": "http://static.lolesports.com/players/1689672841156_placeholder.png", + "role": "support" + }, + { + "id": "110734401573831495", + "summonerName": "Schneider", + "firstName": "Jared", + "lastName": "Schneider", + "image": "http://static.lolesports.com/players/1689672872841_placeholder.png", + "role": "none" + }, + { + "id": "110734403894726628", + "summonerName": "Cendi", + "firstName": "Ian Daniel", + "lastName": "Ford", + "image": "http://static.lolesports.com/players/1689672907783_placeholder.png", + "role": "none" + } + ] + }, + { + "id": "110973619410612726", + "slug": "luminox-planet", + "name": "Luminox Planet", + "code": "LP", + "image": "http://static.lolesports.com/teams/1693323041428_LuminoxPlanet.png", + "alternativeImage": "http://static.lolesports.com/teams/1693323041429_LuminoxPlanet.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Hellenic Legends League", + "region": "EMEA" + }, + "players": [ + { + "id": "105554067476698796", + "summonerName": "Comebackkk", + "firstName": "Cosmin", + "lastName": "Mreana", + "image": "http://static.lolesports.com/players/1642358970852_placeholder.png", + "role": "none" + }, + { + "id": "109923323442075597", + "summonerName": "SkyeSunday", + "firstName": "Nikola", + "lastName": "Jovanovic", + "image": "http://static.lolesports.com/players/1677296801175_silhouette_transparent1.png", + "role": "none" + }, + { + "id": "104738067226752196", + "summonerName": "StenBosse", + "firstName": "Stass", + "lastName": "Skopin", + "image": "http://static.lolesports.com/players/1598176071161_czekolad-51vwzmjl.png", + "role": "none" + }, + { + "id": "110440939840018618", + "summonerName": "NikofleX", + "firstName": "NIKOS", + "lastName": "KECHRIS", + "image": "http://static.lolesports.com/players/1685195005430_placeholder.png", + "role": "none" + }, + { + "id": "105521648113779564", + "summonerName": "Lotus", + "firstName": "Panagiotis Ignatios", + "lastName": "Psarros", + "image": "http://static.lolesports.com/players/1633886641679_silhouette.png", + "role": "none" + }, + { + "id": "104738172861178386", + "summonerName": "ORRE", + "firstName": "Charlie", + "lastName": "Orre", + "image": "http://static.lolesports.com/players/1675090146407_Orre.png", + "role": "none" + }, + { + "id": "106250819244546606", + "summonerName": "Typical", + "firstName": "Wojciech", + "lastName": "Maziejuk", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "top" + }, + { + "id": "111182040786457619", + "summonerName": "Kakarot1", + "firstName": "MUHAMMET YUSUF", + "lastName": "KARAKAS", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "107599671450719969", + "summonerName": "Herod", + "firstName": "Grzegorz", + "lastName": "Rajpold", + "image": "http://static.lolesports.com/players/1641840686582_placeholder.png", + "role": "support" + }, + { + "id": "107065253279287549", + "summonerName": "Bawsi", + "firstName": "Georgios", + "lastName": "Mpousias", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "support" + }, + { + "id": "107045105628450564", + "summonerName": "Sirap", + "firstName": "Paris", + "lastName": "Liadis", + "image": "http://static.lolesports.com/players/1633378683016_placeholder.jpg", + "role": "none" + } + ] + }, + { + "id": "111504538396430510", + "slug": "shopify-rebellion", + "name": "Shopify Rebellion", + "code": "SR", + "image": "http://static.lolesports.com/teams/1701424227458_Teams204_Shopify_1632869404072.png", + "alternativeImage": "http://static.lolesports.com/teams/1701424227460_Shopify_Rebellion_2021_lightmode.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LTA North", + "region": "AMERICAS" + }, + "players": [ + { + "id": "101388912784979237", + "summonerName": "Bvoy", + "firstName": "Younghoon", + "lastName": "Joo", + "image": "http://static.lolesports.com/players/1739479753154_ggsdgs2.png", + "role": "bottom" + }, + { + "id": "102206337829139149", + "summonerName": "Fudge", + "firstName": "Ibrahim", + "lastName": "Allami", + "image": "http://static.lolesports.com/players/1739479418626_ggsdgs3.png", + "role": "top" + }, + { + "id": "98767975969375854", + "summonerName": "Contractz", + "firstName": "Juan", + "lastName": "Garcia", + "image": "http://static.lolesports.com/players/1739479571030_ggsdgs2.png", + "role": "jungle" + }, + { + "id": "101383793153915529", + "summonerName": "Ceos", + "firstName": "Denilson", + "lastName": "Oliveira", + "image": "http://static.lolesports.com/players/1739479848530_ggsdgs11.png", + "role": "support" + } + ] + }, + { + "id": "111562101208125812", + "slug": "k7-esports", + "name": "K7 Esports", + "code": "K7E", + "image": "http://static.lolesports.com/teams/1702302563048_LOLESPORTSICON.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "PCS", + "region": "HONG KONG, MACAU, TAIWAN" + }, + "players": [] + }, + { + "id": "111624100955490493", + "slug": "misa-esports", + "name": "Misa Esports", + "code": "MISA", + "image": "http://static.lolesports.com/teams/1737386153294_MisaEsports.png", + "alternativeImage": "http://static.lolesports.com/teams/1737386153294_MisaEsports.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "TCL", + "region": "EMEA" + }, + "players": [ + { + "id": "109550796116180074", + "summonerName": "Mihile", + "firstName": "Sanghui", + "lastName": "Baek", + "image": "http://static.lolesports.com/players/1718362767531_NS_Mihile_784.png", + "role": "top" + }, + { + "id": "108205130200366557", + "summonerName": "Callme", + "firstName": "Jihoon", + "lastName": "Oh", + "image": "http://static.lolesports.com/players/1718362648003_NS_Callme_784.png", + "role": "mid" + }, + { + "id": "108443039516091744", + "summonerName": "Batuuu", + "firstName": "Kaygusuz", + "lastName": "Batu ", + "image": "http://static.lolesports.com/players/1717747778831_batu.png", + "role": "support" + }, + { + "id": "99603798169593745", + "summonerName": "Closer", + "firstName": "Can", + "lastName": "Çelik", + "image": "http://static.lolesports.com/players/1737734394091_closer.png", + "role": "jungle" + }, + { + "id": "112458712255405856", + "summonerName": "ToongE", + "firstName": "Hosun", + "lastName": "Lim", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "bottom" + } + ] + }, + { + "id": "111624630736536145", + "slug": "giantx-pride", + "name": "GIANTX PRIDE", + "code": "GXP", + "image": "http://static.lolesports.com/teams/1703256688027_658305af80d3b372217018.png", + "alternativeImage": "http://static.lolesports.com/teams/1703256688029_658305af224bf577147561.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "SuperLiga", + "region": "EMEA" + }, + "players": [ + { + "id": "105830668094241053", + "summonerName": "Badlulu", + "firstName": "Lucas", + "lastName": "Piochaud", + "image": "http://static.lolesports.com/players/1674125810255_Badlulu.png", + "role": "top" + }, + { + "id": "102235771563397600", + "summonerName": "Ferret", + "firstName": "Hakan Mert", + "lastName": "Çakmak", + "image": "http://static.lolesports.com/players/1717746716114_ferret.png", + "role": "jungle" + }, + { + "id": "107492067202132417", + "summonerName": "Lospa", + "firstName": "Joon Hyung", + "lastName": "Park", + "image": "http://static.lolesports.com/players/1717746773886_lospa.png", + "role": "support" + }, + { + "id": "109660571287498442", + "summonerName": "Cayetano", + "firstName": "Jorge", + "lastName": "Mora García", + "image": "http://static.lolesports.com/players/1687000990293_EGN_CAYETANO.png", + "role": "support" + }, + { + "id": "107492030596737445", + "summonerName": "Feisty", + "firstName": "Seonghun", + "lastName": "Jung", + "image": "http://static.lolesports.com/players/1686903151043_CL_KT_Feisty.png", + "role": "mid" + }, + { + "id": "105548605376090785", + "summonerName": "Aetinoth", + "firstName": "Berat", + "lastName": "Tıknazoğlu", + "image": "http://static.lolesports.com/players/eSports_male_NoPlayer.png", + "role": "bottom" + }, + { + "id": "112664940244750134", + "summonerName": "Exofeng", + "firstName": "Mario Emilov", + "lastName": "Strugov", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "bottom" + } + ] + }, + { + "id": "111652794702250799", + "slug": "boostgate-esport", + "name": "BoostGate Espor", + "code": "BGT", + "image": "http://static.lolesports.com/teams/1737386212434_BoostGate.png", + "alternativeImage": "http://static.lolesports.com/teams/1737386212434_BoostGate.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "TCL", + "region": "EMEA" + }, + "players": [ + { + "id": "111986429920339263", + "summonerName": "Varin", + "firstName": "Kerem", + "lastName": "Karalı", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "104251398643789501", + "summonerName": "Tumay", + "firstName": "Recep Tümay Efe", + "lastName": "Tekin", + "image": "http://static.lolesports.com/players/tumay.png", + "role": "jungle" + }, + { + "id": "111760514636665529", + "summonerName": "Leks", + "firstName": "Aleksan", + "lastName": "Zaruki", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "108443043975134769", + "summonerName": "stalken", + "firstName": "İbrahim Batu ", + "lastName": "Gölcü", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "jungle" + }, + { + "id": "111726847991624998", + "summonerName": "FireAscept", + "firstName": "Resul", + "lastName": "Polat", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "103687527431326961", + "summonerName": "Shawi", + "firstName": "Mehmet", + "lastName": "Efe", + "image": "http://static.lolesports.com/players/1655285738633_shawikatami.png", + "role": "support" + }, + { + "id": "114812445662855459", + "summonerName": "Mako", + "firstName": "Okan ", + "lastName": "Öztopaç", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "bottom" + } + ] + }, + { + "id": "111658336490177499", + "slug": "principality", + "name": "Principality", + "code": "PTY", + "image": "http://static.lolesports.com/teams/1703771002929_620a801ed7160238175408.png", + "alternativeImage": "http://static.lolesports.com/teams/1703771002930_620a801ed7160238175408.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "112597938392034373", + "summonerName": "JSaito", + "firstName": "Julio ", + "lastName": "Montero Peña", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "112454997432994327", + "summonerName": "Flamyy", + "firstName": "Kacper", + "lastName": "Kula", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "102787200012747330", + "summonerName": "xTyLk", + "firstName": "Jordi", + "lastName": "Buvalets", + "image": "https://static.lolesports.com/players/download.png", + "role": "mid" + }, + { + "id": "108396069724420215", + "summonerName": "Aggress1on", + "firstName": "Gabriel Andrei", + "lastName": "Ciocanau", + "image": "http://static.lolesports.com/players/1653992756736_placeholder.png", + "role": "bottom" + }, + { + "id": "112455029945767990", + "summonerName": "Fla01", + "firstName": "Grigoroiu ", + "lastName": "Flavius Catalin", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "112454997484243483", + "summonerName": "Djamel", + "firstName": "Djamel", + "lastName": "Touidjine Fortes", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "107563953253611798", + "summonerName": "Hax", + "firstName": "Eloi", + "lastName": "Córdoba Castillo", + "image": "http://static.lolesports.com/players/1641295666837_placeholder.png", + "role": "mid" + }, + { + "id": "107564344610973497", + "summonerName": "raedz", + "firstName": "Pedro", + "lastName": "Sánchez Fernández", + "image": "http://static.lolesports.com/players/1641301637225_placeholder.png", + "role": "top" + } + ] + }, + { + "id": "111658361419868570", + "slug": "lua-gaming", + "name": "LUA Gaming", + "code": "LUA", + "image": "http://static.lolesports.com/teams/1715245265080_658435d7e218f402908540.png", + "alternativeImage": "http://static.lolesports.com/teams/1715245265080_658435d7e218f402908540.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107643536421586849", + "summonerName": "Sn1lle", + "firstName": "Andersson", + "lastName": "William", + "image": "http://static.lolesports.com/players/1642510013476_placeholder.png", + "role": "jungle" + }, + { + "id": "113206142184736266", + "summonerName": "Fosky", + "firstName": "Óscar ", + "lastName": "Compadre Alonso", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "114784048737952739", + "summonerName": "Danilol", + "firstName": "Daniel", + "lastName": "Gómez Martínez", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "103877632442764991", + "summonerName": "Marky", + "firstName": "Pedro José", + "lastName": "Serrano", + "image": "http://static.lolesports.com/players/1639756189742_placeholder.png", + "role": "top" + }, + { + "id": "103877633326515783", + "summonerName": "Hydra", + "firstName": "Raúl ", + "lastName": "Moreno Valero", + "image": "https://static.lolesports.com/players/download.png", + "role": "mid" + }, + { + "id": "104738081038726353", + "summonerName": "Click", + "firstName": "Vittorio", + "lastName": "Massolo", + "image": "http://static.lolesports.com/players/1598176282256_czekolad-51vwzmjl.png", + "role": "support" + }, + { + "id": "107603178888651345", + "summonerName": "Shy Carry", + "firstName": "Đorđe", + "lastName": "Stišović", + "image": "http://static.lolesports.com/players/1726647228598_NeutralPortrait.png", + "role": "bottom" + } + ] + }, + { + "id": "111658363397548445", + "slug": "dango", + "name": "Dango", + "code": "DNG", + "image": "http://static.lolesports.com/teams/1703771413016_658d74785d25b041238551.png", + "alternativeImage": "http://static.lolesports.com/teams/1703771413017_658d74785d25b041238551.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "111658429061401336", + "summonerName": "Aronid", + "firstName": "Dídac ", + "lastName": "Noguera Rojas", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "106302722987989965", + "summonerName": "Sh3ry", + "firstName": "Hector ", + "lastName": "Muñoz Gomez", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "bottom" + } + ] + }, + { + "id": "111658367669709230", + "slug": "oxygen-kumiho", + "name": "Oxygen Kumiho", + "code": "O2K", + "image": "http://static.lolesports.com/teams/1703771478550_658434edb717c844234367.png", + "alternativeImage": "http://static.lolesports.com/teams/1703771478551_658434edb717c844234367.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "111658373143793352", + "slug": "stormbringers", + "name": "Stormbringers", + "code": "STB", + "image": "http://static.lolesports.com/teams/1703771562156_658436042bf62714825035.png", + "alternativeImage": "http://static.lolesports.com/teams/1703771562156_658436042bf62714825035.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107455908655055017", + "summonerName": "JuJuTw0", + "firstName": "Julien", + "lastName": "IZZO", + "image": "http://static.lolesports.com/players/1639647042551_placeholder.png", + "role": "bottom" + }, + { + "id": "111659030530493313", + "summonerName": "PatxiElPira", + "firstName": "Blai ", + "lastName": "Canet Navarro", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "109664414327386288", + "summonerName": "Torak", + "firstName": "Carlos", + "lastName": "Rubio Parias", + "image": "https://static.lolesports.com/players/download.png", + "role": "mid" + } + ] + }, + { + "id": "111658381485148909", + "slug": "heracles-gaming", + "name": "Heracles Gaming", + "code": "HC", + "image": "http://static.lolesports.com/teams/1703771689564_658435c2a0dba267672944.png", + "alternativeImage": "http://static.lolesports.com/teams/1703771689565_658435c2a0dba267672944.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "112455029857051878", + "summonerName": "Poweh", + "firstName": "Alberto ", + "lastName": "Cabeza Martínez", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "110441738072847004", + "summonerName": "leao1", + "firstName": "LEONIDAS", + "lastName": "MARMARIDIS", + "image": "http://static.lolesports.com/players/1685207185939_placeholder.png", + "role": "jungle" + }, + { + "id": "110762814053660733", + "summonerName": "Nox", + "firstName": "Daniel", + "lastName": "Müller", + "image": "http://static.lolesports.com/players/1690106407868_placeholder.png", + "role": "mid" + }, + { + "id": "109675448238618633", + "summonerName": "TLamp", + "firstName": "Kai", + "lastName": "Schwarzkopf", + "image": "http://static.lolesports.com/players/1673514529424_placeholder.png", + "role": "bottom" + }, + { + "id": "107462843599997487", + "summonerName": "Aglaro", + "firstName": "Agustín", + "lastName": "Zaquiere Correa", + "image": "http://static.lolesports.com/players/1639752860795_placeholder.png", + "role": "support" + }, + { + "id": "111658434141373485", + "summonerName": "Akrantor", + "firstName": "Juan ", + "lastName": "Antonio Dorado Cabrera", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "109664318132899701", + "summonerName": "Opeduy", + "firstName": "Antonio", + "lastName": "Perez Martin de Nicalás", + "image": "https://static.lolesports.com/players/download.png", + "role": "mid" + } + ] + }, + { + "id": "111658384838823659", + "slug": "ecorp", + "name": "Ecorp", + "code": "ECP", + "image": "http://static.lolesports.com/teams/1703771740684_6584359cdbf78514208890.png", + "alternativeImage": "http://static.lolesports.com/teams/1703771740685_6584359cdbf78514208890.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "106302704263633828", + "summonerName": "Hunter", + "firstName": "Antonio ", + "lastName": "Sánchez Mosquera", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "top" + }, + { + "id": "102181564367360396", + "summonerName": "Siler", + "firstName": "Ernesto", + "lastName": "Castañeda Serrano", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/siler-3s5pwxv9.png", + "role": "mid" + }, + { + "id": "108877560937094388", + "summonerName": "Piku", + "firstName": "Ersi", + "lastName": "Piku", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "support" + }, + { + "id": "110356012394830214", + "summonerName": "Mega1", + "firstName": "Ernesto", + "lastName": " Reyes García", + "image": "http://static.lolesports.com/players/1683899111733_placeholder.png", + "role": "support" + }, + { + "id": "101829651741298440", + "summonerName": "SpeeDy", + "firstName": "George Daniel", + "lastName": "Savu", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/speedy-8jeraoba.png", + "role": "jungle" + } + ] + }, + { + "id": "111685648867207955", + "slug": "rainbow-warriors", + "name": "Rainbow Warriors", + "code": "RW", + "image": "http://static.lolesports.com/teams/1704187753784_Logo7.png", + "alternativeImage": "http://static.lolesports.com/teams/1704187753785_Logo7.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "VCS", + "region": "VIETNAM" + }, + "players": [ + { + "id": "102849319860638077", + "summonerName": "Zin", + "firstName": "Tuan Tho", + "lastName": "Nguyen", + "image": "http://static.lolesports.com/players/1695367851415_GAM_Zin.png", + "role": "support" + }, + { + "id": "98767975958777724", + "summonerName": "N0way", + "firstName": "Vu Long", + "lastName": "Nguyen", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/noway-24zsozyn.png", + "role": "bottom" + }, + { + "id": "111698129484978828", + "summonerName": "SJW", + "firstName": "Khoa", + "lastName": "Le", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + } + ] + }, + { + "id": "111685666092027882", + "slug": "vikings-esports", + "name": "Vikings Esports (archived)", + "code": "VKEX", + "image": "http://static.lolesports.com/teams/1704188015427_1280X1280color.png", + "alternativeImage": "http://static.lolesports.com/teams/1704188015429_1280X1280color.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "VCS", + "region": "VIETNAM" + }, + "players": [] + }, + { + "id": "111686400615256438", + "slug": "ici-japon-corp", + "name": "Ici Japon Corp", + "code": "IJC", + "image": "http://static.lolesports.com/teams/1734090463019_Logo-IJC1.png", + "alternativeImage": "http://static.lolesports.com/teams/1734090463019_Logo-IJC1.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "La Ligue Française", + "region": "EMEA" + }, + "players": [ + { + "id": "105501829364113001", + "summonerName": "Howling", + "firstName": "Hobin", + "lastName": "Jeon", + "image": "http://static.lolesports.com/players/1674126922547_Howling.png", + "role": "top" + }, + { + "id": "112489155371179883", + "summonerName": "Theocacs", + "firstName": "Theo", + "lastName": "Sauda", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "101389737455173027", + "summonerName": "Sertuss", + "firstName": "Daniyal ", + "lastName": "Gamani", + "image": "http://static.lolesports.com/players/1674151694414_sertuss.png", + "role": "mid" + }, + { + "id": "102181658605626513", + "summonerName": "Prime", + "firstName": "Olivier ", + "lastName": "Payet", + "image": "http://static.lolesports.com/players/1674833674536_SKP_Prime.png", + "role": "support" + }, + { + "id": "108328077069378479", + "summonerName": "BliZarD", + "firstName": "Varoß", + "lastName": "Nick", + "image": "http://static.lolesports.com/players/1652955270945_placeholder.png", + "role": "none" + }, + { + "id": "111771276441671319", + "summonerName": "Pangjin", + "firstName": "Kwangjin", + "lastName": "Jeon", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "bottom" + } + ] + }, + { + "id": "111691745473532520", + "slug": "fury", + "name": "Fury", + "code": "FRY", + "image": "http://static.lolesports.com/teams/1704969274789_FURY_Globallogo_squarecopy.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCO", + "region": "OCEANIA" + }, + "players": [ + { + "id": "105647956818593679", + "summonerName": "Tomasino", + "firstName": "Tomáš", + "lastName": "Brabec", + "image": "http://static.lolesports.com/players/download.png", + "role": "top" + }, + { + "id": "111720087560530528", + "summonerName": "nox1", + "firstName": "Eyad", + "lastName": "Imaya", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "110462943397555237", + "summonerName": "Chirp", + "firstName": "Duncan", + "lastName": "Zehnder", + "image": "http://static.lolesports.com/players/1685530743111_placeholder.png", + "role": "mid" + }, + { + "id": "108604888219092306", + "summonerName": "Hoopa", + "firstName": "Dai Phu", + "lastName": "Mong", + "image": "http://static.lolesports.com/players/1657179078783_placeholder.png", + "role": "bottom" + }, + { + "id": "111758035988327173", + "summonerName": "Findo", + "firstName": "Mitchell", + "lastName": "Barnard", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "112596461579039237", + "summonerName": "Maple Syrup", + "firstName": "Patrick", + "lastName": "Henchey", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "112641898879592986", + "summonerName": "prey", + "firstName": "JiaHao", + "lastName": "Xu", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "112477325867470067", + "summonerName": "Spinda", + "firstName": "Do", + "lastName": "Kim", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "jungle" + } + ] + }, + { + "id": "111691747754390318", + "slug": "antic-esports", + "name": "Antic Esports", + "code": "ANCX", + "image": "http://static.lolesports.com/teams/1704949076455_AnticIcon1.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "PCS", + "region": "HONG KONG, MACAU, TAIWAN" + }, + "players": [ + { + "id": "108451325720614251", + "summonerName": "Toppy", + "firstName": "Rhys", + "lastName": "Topham", + "image": "https://static.lolesports.com/players/download.png", + "role": "top" + }, + { + "id": "107634941727734818", + "summonerName": "foreigner", + "firstName": "Jeremy", + "lastName": "Lim", + "image": "https://static.lolesports.com/players/download.png", + "role": "jungle" + }, + { + "id": "105709436604717285", + "summonerName": "Incursio", + "firstName": "Daniel", + "lastName": "Brkic", + "image": "http://static.lolesports.com/players/silhouette.png", + "role": "mid" + }, + { + "id": "99566406296347493", + "summonerName": "Raes", + "firstName": "Quin", + "lastName": "Korebrits", + "image": "http://static.lolesports.com/players/imt-raes-2021.png", + "role": "bottom" + }, + { + "id": "98767975935156907", + "summonerName": "destiny", + "firstName": "Mitchell", + "lastName": "Shaw", + "image": "http://static.lolesports.com/players/1655452721610_DESTINY.png", + "role": "support" + }, + { + "id": "99566406283268035", + "summonerName": "Swip3rR", + "firstName": "Brandon", + "lastName": "Holland", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/swip3rr-4tfyo7vi.png", + "role": "top" + }, + { + "id": "107634897325128022", + "summonerName": "zorenous", + "firstName": "Cameron", + "lastName": "Abbott", + "image": "http://static.lolesports.com/players/1745997161383_CHF_zorenous.png", + "role": "top" + }, + { + "id": "111720135678641636", + "summonerName": "Ryoma", + "firstName": "Tommy", + "lastName": "Le", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "98767975937423972", + "summonerName": "k1ng", + "firstName": "Calvin", + "lastName": "Truong", + "image": "http://static.lolesports.com/players/1655452740634_K1NG.png", + "role": "bottom" + }, + { + "id": "102546029192465275", + "summonerName": "Dragku", + "firstName": "Dragon", + "lastName": "Guo", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/dragku-9znhn75e.png", + "role": "support" + } + ] + }, + { + "id": "111691749922904280", + "slug": "ion-global-esports", + "name": "ION Global Esports", + "code": "ION", + "image": "http://static.lolesports.com/teams/1706578984342_ION.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCO", + "region": "OCEANIA" + }, + "players": [ + { + "id": "111720042622049047", + "summonerName": "doraemon", + "firstName": "Joshua", + "lastName": "Wong", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "111720045287922459", + "summonerName": "Zhovy", + "firstName": "Zhou", + "lastName": "Junhang", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "111720047254979894", + "summonerName": "Rank", + "firstName": "Callam", + "lastName": "Besley", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "111720048642120764", + "summonerName": "Nebula", + "firstName": "Andres", + "lastName": "Cheung", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "110456581491929979", + "summonerName": "Hexflash", + "firstName": "Hayden", + "lastName": "Ting", + "image": "http://static.lolesports.com/players/1685433677038_placeholder.png", + "role": "support" + }, + { + "id": "111720051264281664", + "summonerName": "225", + "firstName": "Jesse", + "lastName": "Fiebig", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "111720027901143523", + "summonerName": "Styx", + "firstName": "Samuel", + "lastName": "Blanchard", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "112477437508207101", + "summonerName": "Ko1eee", + "firstName": "Chen-Yu", + "lastName": "Yang", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "jungle" + } + ] + }, + { + "id": "111691861566232979", + "slug": "packmicko", + "name": "Packmicko", + "code": "PMK", + "image": "http://static.lolesports.com/teams/1704282552913_Packimickologo.png", + "alternativeImage": "http://static.lolesports.com/teams/1704282552915_Packimickologo.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "112440686503981132", + "summonerName": "Cha0s", + "firstName": "Alec", + "lastName": "Jabloński", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "112440590665838588", + "summonerName": "mayblis", + "firstName": "Cezary", + "lastName": "Jezierski", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "112440590747144958", + "summonerName": "Blubber", + "firstName": "Samuel", + "lastName": "Rutecki", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + } + ] + }, + { + "id": "111691948869032350", + "slug": "eko-academy", + "name": "EKO Esports", + "code": "EKO", + "image": "http://static.lolesports.com/teams/1704283880911_EKO_Esports_Emblem_Logo_Main.png", + "alternativeImage": "http://static.lolesports.com/teams/1704283880913_EKO_Esports_Emblem_Logo_Main.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LoL Italian Tournament", + "region": "EMEA" + }, + "players": [ + { + "id": "109705362729526636", + "summonerName": "Strava", + "firstName": "Davide", + "lastName": "Bravetti", + "image": "http://static.lolesports.com/players/1673970987176_placeholder.png", + "role": "top" + }, + { + "id": "114890383743520950", + "summonerName": "DeghSama", + "firstName": "oleksandr", + "lastName": "degtyarov", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "111726935516533931", + "summonerName": "Nykeus", + "firstName": "Hilmi", + "lastName": "Beşinci", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "114794696427124278", + "summonerName": "K1NG1", + "firstName": "Konstantinos Ilias", + "lastName": "Georgantas", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "113905677777201391", + "summonerName": " HADES1", + "firstName": "nikos", + "lastName": "zachariadis", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "108448765181449138", + "summonerName": "Xen0gan", + "firstName": "Morabito", + "lastName": "Andrea", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "mid" + }, + { + "id": "105521436761106822", + "summonerName": "ZaFiR", + "firstName": "Alexandros", + "lastName": "Kafiris", + "image": "http://static.lolesports.com/players/pobrane2.png", + "role": "support" + } + ] + }, + { + "id": "111691981466507697", + "slug": "maestro-v-esports", + "name": "Maestro V Esports", + "code": "MSV", + "image": "http://static.lolesports.com/teams/1704284380934_maestrologo.png", + "alternativeImage": "http://static.lolesports.com/teams/1704284380936_maestrologo.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "112440686559741876", + "summonerName": "Twice2", + "firstName": "Anton", + "lastName": "Koshelev", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "111691963035620053", + "summonerName": "Potys", + "firstName": "Filip", + "lastName": "Mura", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + }, + { + "id": "111813496975587896", + "summonerName": "Emil2", + "firstName": "Emil", + "lastName": "Stagsted Kornum Poulsen", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "108353513604278434", + "summonerName": "Rias1", + "firstName": "Arkadiusz", + "lastName": "Freda", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "bottom" + }, + { + "id": "107065247924537544", + "summonerName": "StarPax", + "firstName": "Patryk", + "lastName": "Koszałko", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "support" + }, + { + "id": "112642848975944409", + "summonerName": "Hyperek", + "firstName": "Jakub", + "lastName": "Wojtycki", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "110412117272566358", + "summonerName": "Toomaszek", + "firstName": "Białczak", + "lastName": "Tomasz", + "image": "http://static.lolesports.com/players/1684755203854_placeholder.png", + "role": "jungle" + }, + { + "id": "111884885699413678", + "summonerName": "MexanikCH", + "firstName": "Chingiz", + "lastName": "Abishev", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "jungle" + } + ] + }, + { + "id": "111692089976048959", + "slug": "team-mythic", + "name": "Team Legion", + "code": "TLG", + "image": "http://static.lolesports.com/teams/1709019257414_TLG_LOGO1.png", + "alternativeImage": "http://static.lolesports.com/teams/1709019257414_TLG_LOGO1.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "Hellenic Legends League", + "region": "EMEA" + }, + "players": [ + { + "id": "105548593156776442", + "summonerName": "Libra", + "firstName": "Emre Ercan", + "lastName": "Güler", + "image": "http://static.lolesports.com/players/eSports_male_NoPlayer.png", + "role": "top" + }, + { + "id": "107186942128466050", + "summonerName": "REVENG", + "firstName": "Athanasios", + "lastName": "Tzanidis", + "image": "http://static.lolesports.com/players/1635542933945_pobrane3.png", + "role": "jungle" + }, + { + "id": "107633881734248402", + "summonerName": "QKI", + "firstName": "Konrad", + "lastName": "Kukiełka", + "image": "http://static.lolesports.com/players/1642362693655_placeholder.png", + "role": "mid" + }, + { + "id": "105589327482836107", + "summonerName": "MetroArcher", + "firstName": "Filipe", + "lastName": "Dragovic", + "image": "http://static.lolesports.com/players/1744003294523_image6-2025-04-07T072105.955.png", + "role": "bottom" + }, + { + "id": "111719451268956744", + "summonerName": "nutLeaF", + "firstName": "EMMANOUIL", + "lastName": "ALEXANDRAKIS", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "105521434683812224", + "summonerName": "Jimsnop", + "firstName": "Dimitrios", + "lastName": "Dimitropoulos", + "image": "http://static.lolesports.com/players/1687151745193_placeholder.png", + "role": "mid" + } + ] + }, + { + "id": "111692115552193858", + "slug": "giantx", + "name": "GIANTX (archived)", + "code": "GXXX", + "image": "http://static.lolesports.com/teams/1704714883065_GX.png", + "alternativeImage": "http://static.lolesports.com/teams/1704714883066_GX.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "LEC", + "region": "EMEA" + }, + "players": [ + { + "id": "112880372381731252", + "summonerName": "Ben01", + "firstName": "Ben", + "lastName": "Ben", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + } + ] + }, + { + "id": "111692118851466302", + "slug": "karmine-corp", + "name": "Karmine Corp", + "code": "KC", + "image": "http://static.lolesports.com/teams/1704714951336_KC.png", + "alternativeImage": "http://static.lolesports.com/teams/1704714951337_KC.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LEC", + "region": "EMEA" + }, + "players": [ + { + "id": "107045034481599547", + "summonerName": "Vladi", + "firstName": "Vladimiros", + "lastName": "Kourtidis", + "image": "http://static.lolesports.com/players/1754471636249_image6425.png", + "role": "mid" + }, + { + "id": "103495716771322725", + "summonerName": "Canna", + "firstName": "Changdong", + "lastName": "Kim", + "image": "http://static.lolesports.com/players/1754471449253_image6229.png", + "role": "top" + }, + { + "id": "99322214657019865", + "summonerName": "Targamas", + "firstName": "Raphael", + "lastName": "Crabbé", + "image": "http://static.lolesports.com/players/1754471520680_image6329.png", + "role": "support" + }, + { + "id": "98926509846377469", + "summonerName": "Nisqy", + "firstName": "Yasin", + "lastName": "Dincer", + "image": "http://static.lolesports.com/players/1757677994839_KC_NISQY.png", + "role": "mid" + }, + { + "id": "105537190986692036", + "summonerName": "Yike", + "firstName": "Martin", + "lastName": "Sundelin", + "image": "http://static.lolesports.com/players/1754471744885_image6524.png", + "role": "jungle" + }, + { + "id": "109461265532592848", + "summonerName": "Caliste", + "firstName": "Caliste", + "lastName": "Henry-Hennebert", + "image": "http://static.lolesports.com/players/1754471358024_image6132.png", + "role": "bottom" + } + ] + }, + { + "id": "111692126143270221", + "slug": "roguearch", + "name": "Rogue (archived)", + "code": "RGEX", + "image": "http://static.lolesports.com/teams/1704714924764_RGE.png", + "alternativeImage": "http://static.lolesports.com/teams/1704714924765_RGE.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "LEC", + "region": "EMEA" + }, + "players": [ + { + "id": "112880372381731252", + "summonerName": "Ben01", + "firstName": "Ben", + "lastName": "Ben", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + } + ] + }, + { + "id": "111692126920592720", + "slug": "esports-cologne", + "name": "eSports Cologne", + "code": "ECO", + "image": "http://static.lolesports.com/teams/1704286602836_ECO_Icon_Red.png", + "alternativeImage": "http://static.lolesports.com/teams/1704286602836_ECO_Icon_Red.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "112445321283411100", + "summonerName": "Harunabi", + "firstName": "Harun", + "lastName": "Selam", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "112445323950019082", + "summonerName": "Kasi", + "firstName": "Kasimir", + "lastName": "Haustein", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "109721435494280421", + "summonerName": "Zilax", + "firstName": "Luiz ", + "lastName": "Lorenz", + "image": "http://static.lolesports.com/players/1674216240592_placeholder.png", + "role": "mid" + }, + { + "id": "108401949721806111", + "summonerName": "On3Sh0t", + "firstName": "Sebastian", + "lastName": "Blümel", + "image": "http://static.lolesports.com/players/1654082481792_placeholder.png", + "role": "mid" + }, + { + "id": "111692189225589245", + "summonerName": "Kayleqlated", + "firstName": "Jonas", + "lastName": "Giesen", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "107616334569829897", + "summonerName": "Shrio", + "firstName": "Jonas", + "lastName": "Theisen", + "image": "http://static.lolesports.com/players/1642094945290_placeholder.png", + "role": "mid" + }, + { + "id": "105593957686402459", + "summonerName": "IvanD", + "firstName": "Filip", + "lastName": "Aksic", + "image": "http://static.lolesports.com/players/1646764544581_IvanD.png", + "role": "bottom" + }, + { + "id": "111731590608607580", + "summonerName": "Chrislai", + "firstName": "Nicolai-Daniel", + "lastName": "Uwadia", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "jungle" + } + ] + }, + { + "id": "111692802629324367", + "slug": "movistar-koi", + "name": "Movistar KOI Fénix", + "code": "MKF", + "image": "http://static.lolesports.com/teams/1704458610869_6596f892741d1355702004.png", + "alternativeImage": "http://static.lolesports.com/teams/1704458610871_6596f892741d1355702004.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "SuperLiga", + "region": "EMEA" + }, + "players": [ + { + "id": "112455030195807491", + "summonerName": "NightSlayer", + "firstName": "Ivan ", + "lastName": "Bilous", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "105589333565331737", + "summonerName": "Time", + "firstName": "Tiago", + "lastName": "Almeida", + "image": "http://static.lolesports.com/players/1687001052900_GTZ_TIME.png", + "role": "jungle" + }, + { + "id": "106449215013141535", + "summonerName": "Thomas", + "firstName": "Tomislav", + "lastName": "Nanjara", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "support" + }, + { + "id": "114704732484337129", + "summonerName": "13", + "firstName": "Zayan", + "lastName": "Tareau", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "104711049101664016", + "summonerName": "Fresskowy", + "firstName": "Bartłomiej", + "lastName": "Przewoźnik", + "image": "http://static.lolesports.com/players/1705026622019_fresskowy.png", + "role": "mid" + } + ] + }, + { + "id": "111698034734473132", + "slug": "r3volt", + "name": "R3VOLT", + "code": "R3V", + "image": "http://static.lolesports.com/teams/1704376748233_RevoltLogo.png", + "alternativeImage": "http://static.lolesports.com/teams/1704376748234_RevoltLogo.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "112490534605202621", + "summonerName": "kuvvu", + "firstName": "Martyna", + "lastName": "Krause", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "104738024001631414", + "summonerName": "Defles", + "firstName": "Damian", + "lastName": "Filipow", + "image": "http://static.lolesports.com/players/1598175412068_czekolad-51vwzmjl.png", + "role": "bottom" + }, + { + "id": "109659427268434018", + "summonerName": "Dziuba", + "firstName": "Michał", + "lastName": "Dziuba", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "top" + }, + { + "id": "107603063196932859", + "summonerName": "Ever", + "firstName": "Michael", + "lastName": "Kaczmarek", + "image": "http://static.lolesports.com/players/1641892441191_placeholder.png", + "role": "jungle" + }, + { + "id": "107603070322006275", + "summonerName": "Ketrab", + "firstName": "Barłomiej", + "lastName": "Siwek", + "image": "http://static.lolesports.com/players/1641892549477_placeholder.png", + "role": "mid" + }, + { + "id": "107598998767260733", + "summonerName": "Luntear", + "firstName": "Mateusz", + "lastName": "Szopa", + "image": "http://static.lolesports.com/players/1641830421111_placeholder.png", + "role": "bottom" + }, + { + "id": "110412332568376175", + "summonerName": "Enkil", + "firstName": "Mateusz", + "lastName": "Krauz", + "image": "http://static.lolesports.com/players/1684758489792_placeholder.png", + "role": "support" + } + ] + }, + { + "id": "111698046551007151", + "slug": "yalla-esports", + "name": "Yalla Esports", + "code": "YL", + "image": "http://static.lolesports.com/teams/1704376927512_Yalla1.png", + "alternativeImage": "http://static.lolesports.com/teams/1704376927513_Yalla1.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "111698085764864595", + "summonerName": "Effigy", + "firstName": "Mateusz", + "lastName": "Bawej", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "111698085849602647", + "summonerName": "BestBox", + "firstName": "Julian", + "lastName": "Miskiewicz", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "111698085952298932", + "summonerName": "SeeN", + "firstName": "Sebastian", + "lastName": "Kita", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "111698086059522480", + "summonerName": "Puschek", + "firstName": "Jakub", + "lastName": "Richter", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "111698086147661752", + "summonerName": "R4T", + "firstName": "Arkadiusz", + "lastName": "Tupaj", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "111698086216284597", + "summonerName": "Colbe", + "firstName": "Maksymilian", + "lastName": "Pek", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "111698086302012117", + "summonerName": "Maselko", + "firstName": "Konrad", + "lastName": "Gniaz", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "111698086374612939", + "summonerName": "Efot", + "firstName": "Efecan", + "lastName": "Cetinel", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "jungle" + } + ] + }, + { + "id": "111698050950642051", + "slug": "avatrade-pixel-penny", + "name": "Pixel Penny", + "code": "AVA", + "image": "http://static.lolesports.com/teams/1704376995033_AvaTradePixelPenny.png", + "alternativeImage": "http://static.lolesports.com/teams/1704376995034_AvaTradePixelPenny.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "109881011830573560", + "summonerName": "Kaffe", + "firstName": "Aleksander", + "lastName": "Milewski", + "image": "http://static.lolesports.com/players/1676651175372_placeholder.png", + "role": "bottom" + }, + { + "id": "107693476359048402", + "summonerName": "Tomem", + "firstName": "Tomasz", + "lastName": "Zgrzebnicki", + "image": "http://static.lolesports.com/players/1643272036888_placeholder.png", + "role": "top" + }, + { + "id": "112440591486994300", + "summonerName": "Koxi", + "firstName": "Kacper", + "lastName": "Rumiński", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "112440591542942489", + "summonerName": "Zielok", + "firstName": "Filip", + "lastName": "Zieliński", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "111929743795924846", + "summonerName": "Reosu", + "firstName": "Jacek", + "lastName": "Ciuk", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + }, + { + "id": "109659427647991069", + "summonerName": "POUfnyy", + "firstName": "Filip", + "lastName": "Grabek", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "support" + }, + { + "id": "110412387187258256", + "summonerName": "Kenshi", + "firstName": "Klaudiusz", + "lastName": "Wieland", + "image": "http://static.lolesports.com/players/1684759322763_placeholder.png", + "role": "none" + }, + { + "id": "106382514979324513", + "summonerName": "bedi", + "firstName": "Piotr", + "lastName": "Bedorf", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "jungle" + } + ] + }, + { + "id": "111698057333193094", + "slug": "eesti-rastikud", + "name": "EESTI RASTIKUD", + "code": "VIP", + "image": "http://static.lolesports.com/teams/1704377092998_Eesti_R3Fstikudlogo_square.png", + "alternativeImage": "http://static.lolesports.com/teams/1704377092998_Eesti_R3Fstikudlogo_square.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "112440590849656685", + "summonerName": "Doodlz", + "firstName": "Kenny-Robin", + "lastName": "Mastakov", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "112440590902095873", + "summonerName": "Boltox", + "firstName": "Alret", + "lastName": "Semre", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "105547981566042448", + "summonerName": "yOFT", + "firstName": "Martin", + "lastName": "Robert", + "image": "https://static.lolesports.com/players/download.png", + "role": "jungle" + }, + { + "id": "111698252736830174", + "summonerName": "J3MZZ", + "firstName": "Jan Evert", + "lastName": "Martinonis", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "105547984402108863", + "summonerName": "Jabuticaba", + "firstName": "Robert", + "lastName": "Pirs", + "image": "https://static.lolesports.com/players/download.png", + "role": "bottom" + } + ] + }, + { + "id": "111703392763781549", + "slug": "gentle-mates", + "name": "Gentle Mates", + "code": "M8", + "image": "http://static.lolesports.com/teams/1734359690314_M8_logo_carre_blanc1.png", + "alternativeImage": "http://static.lolesports.com/teams/1734359690315_M8_logo_carre_noir1.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "La Ligue Française", + "region": "EMEA" + }, + "players": [ + { + "id": "102787200038371957", + "summonerName": "Eika", + "firstName": "Jeremy", + "lastName": "Valdenaire", + "image": "http://static.lolesports.com/players/1674127161751_Eika.png", + "role": "mid" + }, + { + "id": "109705412728201213", + "summonerName": "Empyros", + "firstName": "Panagiotis", + "lastName": "Tantis", + "image": "http://static.lolesports.com/players/1673971749981_placeholder.png", + "role": "top" + }, + { + "id": "105830670848411185", + "summonerName": "Zicssi", + "firstName": "Lanzo", + "lastName": "Ciajolo", + "image": "http://static.lolesports.com/players/placeholder.png", + "role": "jungle" + }, + { + "id": "103536921420956640", + "summonerName": "Comp", + "firstName": "Markos", + "lastName": "Stamkopoulos", + "image": "http://static.lolesports.com/players/1705026877313_comp.png", + "role": "bottom" + }, + { + "id": "102787200001933878", + "summonerName": "Erdote", + "firstName": "Robert", + "lastName": "Nowak", + "image": "http://static.lolesports.com/players/1674126249862_Erdote.png", + "role": "support" + }, + { + "id": "112438134055072580", + "summonerName": "Potent", + "firstName": "Mehdi", + "lastName": "BOUCHAFFRA", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "top" + } + ] + }, + { + "id": "111703432315608213", + "slug": "lionscreed", + "name": "BlueWhites", + "code": "BW1", + "image": "http://static.lolesports.com/teams/1717495344626_BlueWhitesBW.png", + "alternativeImage": "http://static.lolesports.com/teams/1717495344626_BlueWhitesBW.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "NLC", + "region": "EMEA" + }, + "players": [] + }, + { + "id": "111703451790548122", + "slug": "venomcrest", + "name": "Venomcrest", + "code": "VNC", + "image": "http://static.lolesports.com/teams/1736207416119_VNC1.png", + "alternativeImage": "http://static.lolesports.com/teams/1736207416119_VNC1.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "NLC", + "region": "EMEA" + }, + "players": [ + { + "id": "108396084342825720", + "summonerName": "CaptainSexy", + "firstName": "Mielke", + "lastName": "Alexander", + "image": "http://static.lolesports.com/players/1653992980595_placeholder.png", + "role": "none" + }, + { + "id": "113112557307099453", + "summonerName": "Kobs", + "firstName": "Mahiddine", + "lastName": "Rayan", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "105519853893311280", + "summonerName": "Air", + "firstName": "Shenghao", + "lastName": "He", + "image": "http://static.lolesports.com/players/placeholder.png", + "role": "mid" + }, + { + "id": "112461700059698611", + "summonerName": "Baki", + "firstName": "Nikola", + "lastName": "Bakić", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "112455029775380056", + "summonerName": "Eskiper", + "firstName": "Edgar ", + "lastName": "Gómez Llanos", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "114827765007004893", + "summonerName": "Fraze", + "firstName": "Fox", + "lastName": "Frazer", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "114833572959559330", + "summonerName": "Bust", + "firstName": "Andrias", + "lastName": "Olsen", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "99566408319564172", + "summonerName": "Zealot", + "firstName": "Eliot-James", + "lastName": "Joshua", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "none" + } + ] + }, + { + "id": "111719668301899671", + "slug": "once-upon-a-team", + "name": "Once Upon a Team", + "code": "OUAT", + "image": "http://static.lolesports.com/teams/1704706849093_Once_Upon_A_Teamlogo_square.webp", + "alternativeImage": "http://static.lolesports.com/teams/1704706849095_Once_Upon_A_Teamlogo_square.webp", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Road of Legends", + "region": "EMEA" + }, + "players": [ + { + "id": "106425063512860450", + "summonerName": "Dolis", + "firstName": "Petr", + "lastName": "Dolejš", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "111801335482998274", + "summonerName": "jjs156", + "firstName": "Jesper", + "lastName": "Schouten", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "111760514557555709", + "summonerName": "Sm0oZi", + "firstName": "Kevin", + "lastName": "Bonnarens", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "113202886351208921", + "summonerName": "Barry1", + "firstName": "Oscar", + "lastName": "Girardot", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "109778629168098955", + "summonerName": "Ferrari", + "firstName": "Jeroen", + "lastName": "Cretier", + "image": "http://static.lolesports.com/players/1675088943070_placeholder.png", + "role": "jungle" + } + ] + }, + { + "id": "111719673745318281", + "slug": "snooze-esports", + "name": "SNOOZE esports", + "code": "SNZ", + "image": "http://static.lolesports.com/teams/1705325554891_LogoIconWhite.png", + "alternativeImage": "http://static.lolesports.com/teams/1705325554893_LogoIconBlack.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "112496019684388608", + "summonerName": "KeNNetic", + "firstName": "Ken", + "lastName": "Theis", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + }, + { + "id": "105526890455533610", + "summonerName": "Flawed", + "firstName": "Jordi", + "lastName": "Bust", + "image": "http://static.lolesports.com/players/1744004459083_image6-2025-04-07T074034.507.png", + "role": "jungle" + }, + { + "id": "104711227672883806", + "summonerName": "Heroic", + "firstName": "Francisco", + "lastName": "Ribeiro", + "image": "http://static.lolesports.com/players/1687001070525_GTZ_HEROIC.png", + "role": "mid" + }, + { + "id": "111719451710019615", + "summonerName": "Aeon", + "firstName": "Pedro", + "lastName": "Rego", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "106301966504219028", + "summonerName": "Wixo", + "firstName": "Jérémy", + "lastName": "Joseph", + "image": "http://static.lolesports.com/players/granit-wixoo-lol.png", + "role": "support" + }, + { + "id": "111799384244314286", + "summonerName": "WindMimiC", + "firstName": "Rodi", + "lastName": "Feller", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + }, + { + "id": "111720253323238872", + "summonerName": "Crisma", + "firstName": "Cristiano Filipe", + "lastName": "Catita Leitao", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + }, + { + "id": "110378596829382151", + "summonerName": "Roshan", + "firstName": "Roshan", + "lastName": "Visser", + "image": "http://static.lolesports.com/players/1684243723322_placeholder.png", + "role": "none" + }, + { + "id": "111760514636665529", + "summonerName": "Leks", + "firstName": "Aleksan", + "lastName": "Zaruki", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "top" + } + ] + }, + { + "id": "111721015213895592", + "slug": "silent-revolution-gaming", + "name": "Silent Revolution Gaming", + "code": "SRG", + "image": "http://static.lolesports.com/teams/1715653556864_SRGSilentRevolutionGaming.png", + "alternativeImage": "http://static.lolesports.com/teams/1715653556864_SRGSilentRevolutionGaming.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "101422616382597838", + "summonerName": "Madly", + "firstName": "Ferhat", + "lastName": "Can Atma", + "image": "http://static.lolesports.com/players/1655285894486_madly.png", + "role": "top" + }, + { + "id": "109704977971289947", + "summonerName": "Leventor", + "firstName": "GIANNIS", + "lastName": "TZANAKAKIS", + "image": "http://static.lolesports.com/players/1673965116362_placeholder.png", + "role": "bottom" + }, + { + "id": "105519987229098209", + "summonerName": "Touch", + "firstName": "Omid", + "lastName": "Rosander", + "image": "http://static.lolesports.com/players/nordavind-touch-lol.png", + "role": "support" + }, + { + "id": "108397469193697285", + "summonerName": "Alucard", + "firstName": "Spiropoulos", + "lastName": "Christos", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "mid" + }, + { + "id": "109704984024444511", + "summonerName": "Phenomenal1", + "firstName": "VASILIS", + "lastName": "GEORGIOU", + "image": "http://static.lolesports.com/players/1673965208494_placeholder.png", + "role": "top" + }, + { + "id": "108328106717503885", + "summonerName": "Quinncidenc", + "firstName": "Markus", + "lastName": "Tobin", + "image": "http://static.lolesports.com/players/1652955729305_placeholder.png", + "role": "top" + }, + { + "id": "106250861628875432", + "summonerName": "Jovian", + "firstName": "Alexandros", + "lastName": "Saroglou", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "support" + }, + { + "id": "105521657678506569", + "summonerName": "Nikolex", + "firstName": "Nickos", + "lastName": "Kechris", + "image": "http://static.lolesports.com/players/pobrane2.png", + "role": "jungle" + }, + { + "id": "112003980512203038", + "summonerName": "Vaynka", + "firstName": "Panagiotis", + "lastName": "Mpekos", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "112036481513826214", + "summonerName": "Erza", + "firstName": "DANAI", + "lastName": "DADIOTI", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "mid" + } + ] + }, + { + "id": "111721017301215799", + "slug": "qmistry", + "name": "QMistry", + "code": "QSY", + "image": "http://static.lolesports.com/teams/1704727428350_LOLESPORTSICON.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "111924497572318910", + "summonerName": "SOA", + "firstName": "AHMED", + "lastName": "SULTAN", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "106250770692135425", + "summonerName": "Messclick", + "firstName": "Pangiotis", + "lastName": "Stamogiorgos", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "bottom" + }, + { + "id": "111924503526799070", + "summonerName": "Qpies", + "firstName": "YAROSLAV", + "lastName": "HRINEVYCH", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "111924513655518946", + "summonerName": "Leader1", + "firstName": "DOBRA", + "lastName": "RADU", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "108397468181821437", + "summonerName": "Donny", + "firstName": "Crisan", + "lastName": "Emanuel", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "jungle" + }, + { + "id": "105593315945367252", + "summonerName": "keve", + "firstName": "Samuel", + "lastName": "Koráb", + "image": "http://static.lolesports.com/players/placeholder_.jpg", + "role": "jungle" + }, + { + "id": "109704947184168531", + "summonerName": "Magmawave", + "firstName": "ATHANASIOS", + "lastName": "EMMANUEL", + "image": "http://static.lolesports.com/players/1673964646530_placeholder.png", + "role": "top" + }, + { + "id": "111805506477589409", + "summonerName": "SantoS", + "firstName": "GEORGI", + "lastName": "HRISTOV", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "107151349136167688", + "summonerName": "Necro", + "firstName": "Richard", + "lastName": "Hyža", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "mid" + }, + { + "id": "111805511432762032", + "summonerName": "GrePa", + "firstName": "NIKOS", + "lastName": "FAKOS", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + }, + { + "id": "107065256238776693", + "summonerName": "Kyro", + "firstName": "Kyriakos", + "lastName": "Afthonidis", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "none" + } + ] + }, + { + "id": "111721019635675051", + "slug": "new-era", + "name": "New ERA", + "code": "ERA", + "image": "http://static.lolesports.com/teams/1704727463910_LOLESPORTSICON.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "111805487264395938", + "summonerName": "Speedy1", + "firstName": "LOUKAS", + "lastName": "PREKAS", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "111182007354105738", + "summonerName": "Scorro", + "firstName": "DIMITRIS", + "lastName": "DIMOTSIOS", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "109704476492389495", + "summonerName": "Exile1", + "firstName": "Andrei", + "lastName": "Popa", + "image": "http://static.lolesports.com/players/1673957464400_placeholder.png", + "role": "jungle" + }, + { + "id": "111924525225550495", + "summonerName": "Skye Sunday", + "firstName": "NIKOLA", + "lastName": "JOVANOVIC", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + }, + { + "id": "106312666308354872", + "summonerName": "FRED", + "firstName": "Frederico", + "lastName": "Galvão", + "image": "http://static.lolesports.com/players/1674856183574_3EGN-Fred.png", + "role": "jungle" + }, + { + "id": "111805508923548903", + "summonerName": "S M", + "firstName": "STELIOS", + "lastName": "MAVRAKIS", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "102808609140473142", + "summonerName": "Leodaras", + "firstName": "Christodoulos", + "lastName": "Leodaras", + "image": "https://static.lolesports.com/players/download.png", + "role": "support" + }, + { + "id": "111759414179210839", + "summonerName": "Leo999", + "firstName": "CHRISTODOULOS", + "lastName": "LEONTARAS", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "106250769047347800", + "summonerName": "alishor", + "firstName": "Alex", + "lastName": "Florea", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "top" + }, + { + "id": "105815004921451881", + "summonerName": "Drukstar", + "firstName": "Cristian-George", + "lastName": "Enescu", + "image": "http://static.lolesports.com/players/1633689710010_silhouette.png", + "role": "jungle" + }, + { + "id": "110440840872642313", + "summonerName": "Dawera", + "firstName": "DIMITRIS", + "lastName": "TATTOS", + "image": "http://static.lolesports.com/players/1685193494959_placeholder.png", + "role": "mid" + }, + { + "id": "108396084342825720", + "summonerName": "CaptainSexy", + "firstName": "Mielke", + "lastName": "Alexander", + "image": "http://static.lolesports.com/players/1653992980595_placeholder.png", + "role": "bottom" + }, + { + "id": "111772140186059778", + "summonerName": "nonexistant", + "firstName": "LOUKAS", + "lastName": "PREKAS", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + } + ] + }, + { + "id": "111721027050287022", + "slug": "sins", + "name": "Sins Esports", + "code": "S7N", + "image": "http://static.lolesports.com/teams/1715653500926_S7NSINS.png", + "alternativeImage": "http://static.lolesports.com/teams/1715653500926_S7NSINS.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "102787200019694155", + "summonerName": "Delitto", + "firstName": "Alexandros ", + "lastName": "Karalis", + "image": "http://static.lolesports.com/players/1633886675944_silhouette.png", + "role": "top" + }, + { + "id": "107044958960796612", + "summonerName": "DRUXY", + "firstName": "Apostolos", + "lastName": "Kamposos", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "107065257649242509", + "summonerName": "REAVER", + "firstName": "Giannis", + "lastName": "Dimitrelis", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "support" + }, + { + "id": "107105626021862371", + "summonerName": "Tziz", + "firstName": "Mathias ", + "lastName": "Lorétan", + "image": "https://static.lolesports.com/players/download.png", + "role": "mid" + }, + { + "id": "112436950739815064", + "summonerName": "Xhi", + "firstName": "DERMENTZOUDIS", + "lastName": "STEPHANOS", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "110468634669232825", + "summonerName": "Becomin", + "firstName": "Hyeonsoo", + "lastName": "So", + "image": "http://static.lolesports.com/players/1685617593202_placeholder.png", + "role": "jungle" + }, + { + "id": "111771935126604826", + "summonerName": "Hattor1s", + "firstName": "KONSTANTINOS", + "lastName": "PANE", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + }, + { + "id": "111719451268956744", + "summonerName": "nutLeaF", + "firstName": "EMMANOUIL", + "lastName": "ALEXANDRAKIS", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + } + ] + }, + { + "id": "111721727942484792", + "slug": "ukrainian-glory-team", + "name": "Ukrainian Glory Team", + "code": "UGT", + "image": "http://static.lolesports.com/teams/1704738275223_UGL_light.png", + "alternativeImage": "http://static.lolesports.com/teams/1704738275225_UGL_light.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "106714082641340405", + "summonerName": "Smart", + "firstName": "Rostislav", + "lastName": "Sarnatskiy", + "image": "https://static.lolesports.com/players/download.png", + "role": "top" + }, + { + "id": "112440701815484512", + "summonerName": "keroo", + "firstName": "Soyuner", + "lastName": "Kaan", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "111924503526799070", + "summonerName": "Qpies", + "firstName": "YAROSLAV", + "lastName": "HRINEVYCH", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "108353503804503068", + "summonerName": "xMaxis", + "firstName": "Trąbka", + "lastName": "Maksymilian", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "top" + }, + { + "id": "109709913622914165", + "summonerName": "Fogzy", + "firstName": "Andriy", + "lastName": "Voitiuk", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "mid" + }, + { + "id": "105526526226325547", + "summonerName": "Mis", + "firstName": "Michał", + "lastName": "Kopacz", + "image": "http://static.lolesports.com/players/1671447021389_placeholder.png", + "role": "bottom" + }, + { + "id": "111721746047381617", + "summonerName": "Maul", + "firstName": "Danylo", + "lastName": "Bula", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "jungle" + } + ] + }, + { + "id": "111726249995941526", + "slug": "befive", + "name": "BeFive", + "code": "BE5", + "image": "http://static.lolesports.com/teams/1706183570607_EBL_BE5-FullColorDarkBG.png", + "alternativeImage": "http://static.lolesports.com/teams/1706183570607_EBL_BE5-FullColorDarkBG.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Esports Balkan League", + "region": "EMEA" + }, + "players": [ + { + "id": "102808862467691683", + "summonerName": "DoubleAiM", + "firstName": "Aleksa ", + "lastName": "Stankovic", + "image": "https://static.lolesports.com/players/download.png", + "role": "jungle" + }, + { + "id": "110468449070215888", + "summonerName": "Cripple", + "firstName": "Viktor", + "lastName": "Milanović", + "image": "http://static.lolesports.com/players/1685614761315_placeholder.png", + "role": "top" + }, + { + "id": "114890228973244414", + "summonerName": "Straka", + "firstName": "Uros", + "lastName": "Straka", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "114890230200847945", + "summonerName": "bakisa", + "firstName": "Branko", + "lastName": "Simeonovski", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "114890231439560706", + "summonerName": "Coli", + "firstName": "David", + "lastName": "Starovlas", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "114890232508527445", + "summonerName": "Manda", + "firstName": "Filip", + "lastName": "Mandovic", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "none" + } + ] + }, + { + "id": "111726451903575911", + "slug": "lupus-esports", + "name": "Lupus Esports", + "code": "LUP", + "image": "http://static.lolesports.com/teams/1738058187788_EBL_LUP-FullColorDarkBG.png", + "alternativeImage": "http://static.lolesports.com/teams/1705567958640_LupusLogoDark.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Esports Balkan League", + "region": "EMEA" + }, + "players": [ + { + "id": "114890268279509055", + "summonerName": "Hamsi", + "firstName": "Ali", + "lastName": "Dıravacı", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "114890270012074301", + "summonerName": "Aspect2", + "firstName": "Erdem", + "lastName": "Darama", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "111776296280437756", + "summonerName": "Robenong", + "firstName": "Róbert", + "lastName": "Malecz", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "114890272143363758", + "summonerName": "KDavid02", + "firstName": "Kássa", + "lastName": "Dávid", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "111986429920339263", + "summonerName": "Varin", + "firstName": "Kerem", + "lastName": "Karalı", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "114902772875859362", + "summonerName": "Jayquan", + "firstName": "Danilo", + "lastName": "Ristović", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + } + ] + }, + { + "id": "111726828176554327", + "slug": "rossmann-centaurs", + "name": "Rossmann Centaurs", + "code": "ROSS", + "image": "http://static.lolesports.com/teams/1734307301367_ROSS.png", + "alternativeImage": "http://static.lolesports.com/teams/1734307301367_ROSS.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Prime League", + "region": "EMEA" + }, + "players": [ + { + "id": "108401791372302251", + "summonerName": "Addusto", + "firstName": "Gia Huy", + "lastName": "Khuat", + "image": "http://static.lolesports.com/players/1654080066237_placeholder.png", + "role": "top" + }, + { + "id": "105503878796929117", + "summonerName": "Fun K3y", + "firstName": "Johannes", + "lastName": "Werner", + "image": "http://static.lolesports.com/players/1674833432798_USE_FUNk3y.png", + "role": "bottom" + }, + { + "id": "109625275564301801", + "summonerName": "Xagog", + "firstName": "Isa Arda", + "lastName": "Dagli", + "image": "http://static.lolesports.com/players/1672748956687_placeholder.png", + "role": "jungle" + }, + { + "id": "108401784900863225", + "summonerName": "Wildenbruch", + "firstName": "Linus", + "lastName": "Köhler", + "image": "http://static.lolesports.com/players/1654079966965_placeholder.png", + "role": "support" + }, + { + "id": "104727138378408093", + "summonerName": "NiceGuyBen", + "firstName": "Ben-Luca", + "lastName": "Nordgerling", + "image": "http://static.lolesports.com/players/1598009311349_czekolad-51vwzmjl.png", + "role": "top" + }, + { + "id": "102808797696228865", + "summonerName": "Kanin", + "firstName": "Linus", + "lastName": "Gronlund", + "image": "https://static.lolesports.com/players/download.png", + "role": "mid" + }, + { + "id": "109625293382008642", + "summonerName": "Vikes", + "firstName": "Fabian", + "lastName": "Hunze", + "image": "http://static.lolesports.com/players/1672749230438_placeholder.png", + "role": "none" + } + ] + }, + { + "id": "111726972624713134", + "slug": "zerance", + "name": "Zerance", + "code": "ZER", + "image": "http://static.lolesports.com/teams/1704818329452_ZerLogo.png", + "alternativeImage": "http://static.lolesports.com/teams/1704818329454_ZerLogo.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "111730703923690622", + "slug": "ogc-sigma-esports", + "name": "OGC Esports", + "code": "OGC", + "image": "http://static.lolesports.com/teams/1716805756218_HM_OGC.png", + "alternativeImage": "http://static.lolesports.com/teams/1716805756218_HM_OGC.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "Hitpoint Masters", + "region": "EMEA" + }, + "players": [ + { + "id": "107151350477792109", + "summonerName": "Equa", + "firstName": "Matej", + "lastName": "Bujňák", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "jungle" + }, + { + "id": "113202852201167667", + "summonerName": "oki1", + "firstName": "Ondřej", + "lastName": "Hlaváček", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "113202857506241335", + "summonerName": "NvN", + "firstName": "Václav", + "lastName": "Fleissig", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "113276196668962215", + "summonerName": "fury2", + "firstName": "Roman", + "lastName": "Koulák", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "111759179603201269", + "summonerName": "Saethra", + "firstName": "Marek", + "lastName": "Ferneza", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "top" + } + ] + }, + { + "id": "111730709791259784", + "slug": "maverix", + "name": "Maverix", + "code": "MVX", + "image": "http://static.lolesports.com/teams/1704875328563_LOLESPORTSICON.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [] + }, + { + "id": "111730714429832331", + "slug": "team-meliora", + "name": "Team Meliora", + "code": "TML", + "image": "http://static.lolesports.com/teams/1737532149665_TML_Black.png", + "alternativeImage": "http://static.lolesports.com/teams/1737532149665_TML_Black.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "105647952132397967", + "summonerName": "Vlaren", + "firstName": "Vladimir", + "lastName": "Vývoda", + "image": "http://static.lolesports.com/players/download.png", + "role": "jungle" + }, + { + "id": "112512772753179438", + "summonerName": "Dyego", + "firstName": "Adrián", + "lastName": "Talán", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "106382532657857154", + "summonerName": "Astrasmaug", + "firstName": "Matěj", + "lastName": "Folprecht", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "bottom" + }, + { + "id": "105647914067535167", + "summonerName": "Vodin", + "firstName": "Dominik", + "lastName": "Janouch", + "image": "http://static.lolesports.com/players/download.png", + "role": "top" + }, + { + "id": "105647915578689271", + "summonerName": "Kars", + "firstName": "Šimon", + "lastName": "Sedlák", + "image": "http://static.lolesports.com/players/download.png", + "role": "top" + }, + { + "id": "113858356983078022", + "summonerName": "Aurorr", + "firstName": "Jakub", + "lastName": "Veselský", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "110648662209546503", + "summonerName": "Freestyle", + "firstName": "Jakub", + "lastName": "Horáček", + "image": "http://static.lolesports.com/players/1688364594962_placeholder.png", + "role": "mid" + } + ] + }, + { + "id": "111730716342828174", + "slug": "delta-syndicate", + "name": "Delta Syndicate", + "code": "DS", + "image": "http://static.lolesports.com/teams/1739089825741_DS_Color.png", + "alternativeImage": "http://static.lolesports.com/teams/1739088417604_DS_Color.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107735368723576133", + "summonerName": "D0kai", + "firstName": "Eduard-Emanuel", + "lastName": "Oltean", + "image": "http://static.lolesports.com/players/1643911263457_placeholder.png", + "role": "support" + }, + { + "id": "113866769444289991", + "summonerName": "Arcano", + "firstName": "Adam", + "lastName": "Běhávka", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "113944309376155805", + "summonerName": "David3", + "firstName": "Dávid", + "lastName": "Varga", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "113944311325786281", + "summonerName": "VOPI", + "firstName": "Jakub", + "lastName": "Vopálecký", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "113944313826352033", + "summonerName": "Driak21", + "firstName": "Adrian", + "lastName": "Horvath", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "113944315271551909", + "summonerName": "GekkoSzaby", + "firstName": "Szabolcs", + "lastName": "Hétvári", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "107633800761113335", + "summonerName": "Rassiel", + "firstName": "József", + "lastName": "Lőrincz", + "image": "http://static.lolesports.com/players/1642361457197_placeholder.png", + "role": "support" + }, + { + "id": "108396078662423619", + "summonerName": "Inspire", + "firstName": "Jiří", + "lastName": "Zoufalý", + "image": "http://static.lolesports.com/players/1653992893268_placeholder.png", + "role": "mid" + }, + { + "id": "113203059909819961", + "summonerName": "Marcelzgeg", + "firstName": "Rodrigues", + "lastName": "Joel", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "111759218961058111", + "summonerName": "Shadowest", + "firstName": "Dominik", + "lastName": "Měšťák", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "112512741125703721", + "summonerName": "Nora", + "firstName": "Nora", + "lastName": "Tomanová", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + } + ] + }, + { + "id": "111730719815331642", + "slug": "h3arts", + "name": "H3ARTS", + "code": "H3RT", + "image": "http://static.lolesports.com/teams/1704875481614_LOLESPORTSICON.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "111759151402263793", + "summonerName": "tershow", + "firstName": "Tereza", + "lastName": "Šourková", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "108449776755501527", + "summonerName": "Nary", + "firstName": "Uher", + "lastName": "Adrian", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "top" + } + ] + }, + { + "id": "111730722796353567", + "slug": "revital-blacktrains", + "name": "Revital Blacktrains", + "code": "RVT", + "image": "http://static.lolesports.com/teams/1704875527472_LOLESPORTSICON.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "111730807014578357", + "slug": "celestial-cats", + "name": "PCIFIC Espor", + "code": "PCF", + "image": "http://static.lolesports.com/teams/1705484850734_pcific4.png", + "alternativeImage": "http://static.lolesports.com/teams/1705484850736_pcific1.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "TCL", + "region": "EMEA" + }, + "players": [ + { + "id": "111726776576521092", + "summonerName": "Bergmoon", + "firstName": "Berkay", + "lastName": "Eriş", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "111726777990460310", + "summonerName": "Lesranct", + "firstName": "Alper", + "lastName": "Yaşar", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "111726787637760781", + "summonerName": "mirza", + "firstName": "Gökmen", + "lastName": "Topçu", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "111726789582467995", + "summonerName": "Rihn", + "firstName": "Arda", + "lastName": "Mutlu", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "111726790979638034", + "summonerName": "Dashkai", + "firstName": "Efe", + "lastName": "Bostancı", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "111934535964856810", + "summonerName": "DALTON", + "firstName": "Mehmet Akın", + "lastName": "Gençer", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "112541846866482314", + "summonerName": "Rxiaer", + "firstName": "Arda", + "lastName": "Karar", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "112694891716464551", + "summonerName": "r1me", + "firstName": "Muhlis Emir", + "lastName": "Tiryaki", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "106501610819680545", + "summonerName": "Leiruan", + "firstName": "Ufuk", + "lastName": "Başaran", + "image": "http://static.lolesports.com/players/eSports_male_NoPlayer.png", + "role": "top" + }, + { + "id": "112440864220301524", + "summonerName": "Kisuke", + "firstName": "Emirhan", + "lastName": "Alkan", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "112440864289583323", + "summonerName": "Evan", + "firstName": "Ali", + "lastName": "Akpınar", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "112440864346635406", + "summonerName": "Egelynn", + "firstName": "Egemen", + "lastName": "Saraç", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "jungle" + } + ] + }, + { + "id": "111730815566180425", + "slug": "kim-esports", + "name": "FoxFire", + "code": "FXF", + "image": "http://static.lolesports.com/teams/1715671973432_KATANA.png", + "alternativeImage": "http://static.lolesports.com/teams/1715671973432_KATANA.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "TCL", + "region": "EMEA" + }, + "players": [ + { + "id": "111726918216150043", + "summonerName": "ZD1", + "firstName": "Buğra", + "lastName": "Topaç", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "112551311518507919", + "summonerName": "Woundmaker", + "firstName": "Musa Erden", + "lastName": "Faruk", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "112551311724163575", + "summonerName": "Rolent", + "firstName": "Kaan", + "lastName": "Albayrak", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "111726894399187968", + "summonerName": "Vergil", + "firstName": "Mehmet Emin", + "lastName": "Sığırgüden", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + }, + { + "id": "113190867316304599", + "summonerName": "Rayane", + "firstName": "Atakan ", + "lastName": "Öztürk", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + }, + { + "id": "113190867502508193", + "summonerName": "Diff3rence", + "firstName": "Süleyman ", + "lastName": "Kelkiçoğlu", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + }, + { + "id": "113190867559592016", + "summonerName": "Creal", + "firstName": "Bora ", + "lastName": "Oruç", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + } + ] + }, + { + "id": "111730820797905151", + "slug": "ascendance", + "name": "Baby Buffaloes", + "code": "BABU", + "image": "http://static.lolesports.com/teams/1715671859413_BABYBUFFALOES.png", + "alternativeImage": "http://static.lolesports.com/teams/1715671859414_BABYBUFFALOES.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "TCL", + "region": "EMEA" + }, + "players": [ + { + "id": "103495716726876051", + "summonerName": "Direnc", + "firstName": "Direnç", + "lastName": "Özcan", + "image": "http://static.lolesports.com/players/1583508010477_direnc.png", + "role": "top" + }, + { + "id": "112438291890342933", + "summonerName": "wewo", + "firstName": "Mehmet", + "lastName": "Öztürk", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "108443038485119656", + "summonerName": "Imaginer", + "firstName": "Yıldız", + "lastName": "Muhammed Ahmed ", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "mid" + }, + { + "id": "112438295546262439", + "summonerName": "Xavian", + "firstName": "Doğukan", + "lastName": "Yağcı", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "112438297110430173", + "summonerName": "Watket", + "firstName": "Batuhan", + "lastName": "Köse", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "112438298188739500", + "summonerName": "bbk", + "firstName": "Baran", + "lastName": "Büyükbozkoyun", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "112438299432053180", + "summonerName": "Artx1", + "firstName": "Alperen", + "lastName": "Yentur", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "112735287874631083", + "summonerName": "immanitas", + "firstName": "Talha Batuhan", + "lastName": "Kılıç", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "104251844738604142", + "summonerName": "Greyone", + "firstName": "Batuhan", + "lastName": "Özcan", + "image": "http://static.lolesports.com/players/1590756903386_silhouette.png", + "role": "bottom" + } + ] + }, + { + "id": "111730827185438020", + "slug": "noname", + "name": "NONAME", + "code": "NON", + "image": "http://static.lolesports.com/teams/1704877121188_Noname.png", + "alternativeImage": "http://static.lolesports.com/teams/1704877121189_Noname.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "TCL", + "region": "EMEA" + }, + "players": [ + { + "id": "111861838219567739", + "summonerName": "FreshKiller", + "firstName": "Şahin", + "lastName": "Genel", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "103495716719142791", + "summonerName": "Maximillion", + "firstName": "Hamza", + "lastName": "Kandemir", + "image": "http://static.lolesports.com/players/maximillion.png", + "role": "mid" + }, + { + "id": "112773961872239209", + "summonerName": "VampirYunus", + "firstName": "Yunus Emre", + "lastName": "Kızmazer", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "113193505293627500", + "summonerName": "Conformista", + "firstName": "Denir", + "lastName": "Balim", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "113193505366616987", + "summonerName": "RueL", + "firstName": "Caner", + "lastName": "Kurşun", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "108680338252449091", + "summonerName": "Rexha", + "firstName": "Eren Yıldırım", + "lastName": "Yıldırım", + "image": "http://static.lolesports.com/players/1658330354856_placeholder.png", + "role": "mid" + }, + { + "id": "111861836089723658", + "summonerName": "Eloha", + "firstName": "Mert Kaan", + "lastName": "Berkil", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "112438356984850906", + "summonerName": "Peagod", + "firstName": "İsa Mete", + "lastName": "Atmalı", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "111726863301425579", + "summonerName": "Derakhil", + "firstName": "Onur", + "lastName": "Ulkan", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "111726865791079540", + "summonerName": "sappxire1", + "firstName": "Harun", + "lastName": "Uslu", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "108443038544036524", + "summonerName": "tuokaZ", + "firstName": "Muhammed ", + "lastName": "Zakout", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "bottom" + } + ] + }, + { + "id": "111730829966589255", + "slug": "phoenix-esports", + "name": "Phoenix Esports", + "code": "PHX", + "image": "http://static.lolesports.com/teams/1704877164715_PHX.png", + "alternativeImage": "http://static.lolesports.com/teams/1704877164716_PHX.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "TCL", + "region": "EMEA" + }, + "players": [ + { + "id": "111726883573609785", + "summonerName": "cOldMemo", + "firstName": "Mehmet Kaan", + "lastName": "Göztaş", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "101422616373422788", + "summonerName": "madlifeonur", + "firstName": "Onur", + "lastName": "Yıldırım", + "image": "http://static.lolesports.com/players/1591814913977_silhouette.png", + "role": "support" + }, + { + "id": "112438372255167493", + "summonerName": "Leptiru", + "firstName": "Eren", + "lastName": "Kurt", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "101422910053542691", + "summonerName": "Algos", + "firstName": "Ersin", + "lastName": "Sertbaş", + "image": "http://static.lolesports.com/players/1583939238922_silhouette.png", + "role": "support" + }, + { + "id": "108443043909796548", + "summonerName": "peop", + "firstName": "Hakan", + "lastName": "Bozoğlu", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "top" + }, + { + "id": "111726862126234023", + "summonerName": "Atat", + "firstName": "Ata", + "lastName": "Bilici", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "111726908792925193", + "summonerName": "Kont", + "firstName": "Deniz", + "lastName": "Kont", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "111726908612425052", + "summonerName": "hidududu", + "firstName": "Muhammed Enes", + "lastName": "Şen", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + } + ] + }, + { + "id": "111730832808374350", + "slug": "altay-espor", + "name": "Only Heroes Academia", + "code": "OHA", + "image": "http://static.lolesports.com/teams/1715671916333_ONLYHEROESACADEMIA.png", + "alternativeImage": "http://static.lolesports.com/teams/1715671916333_ONLYHEROESACADEMIA.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "TCL", + "region": "EMEA" + }, + "players": [ + { + "id": "101422616393149161", + "summonerName": "Cuce", + "firstName": "Oğuzhan", + "lastName": "Suiçmez", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/cuce-as8nrg04.png", + "role": "top" + }, + { + "id": "111726826334999461", + "summonerName": "Artun", + "firstName": "Artun", + "lastName": "Ergin", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "99591620714718487", + "summonerName": "Mean", + "firstName": "Ahmet Cihan", + "lastName": "Battal", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/meantnt-i6u2zhu2.png", + "role": "bottom" + }, + { + "id": "113190867639855835", + "summonerName": "Lord Grim", + "firstName": "Barış Berkay ", + "lastName": "Kaya", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "113193486939204463", + "summonerName": "Smart1", + "firstName": "Rotislav ", + "lastName": "Sarnatsky", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "111772061134373723", + "summonerName": "Jamie", + "firstName": "YEVHENII", + "lastName": "SOROKIN", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "105548539649778137", + "summonerName": "Ersin", + "firstName": "Salim Ersin", + "lastName": "Altıparmak", + "image": "http://static.lolesports.com/players/eSports_male_NoPlayer.png", + "role": "top" + }, + { + "id": "111182040786457619", + "summonerName": "Kakarot1", + "firstName": "MUHAMMET YUSUF", + "lastName": "KARAKAS", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "112438387424870913", + "summonerName": "Lunaris", + "firstName": "Barış Berkay", + "lastName": "Kaya", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "106611414691870655", + "summonerName": "Kaine", + "firstName": "Sezer Efe ", + "lastName": "Çakır", + "image": "http://static.lolesports.com/players/1674564442079_placeholder.png", + "role": "mid" + }, + { + "id": "107605545455706915", + "summonerName": "Kurama Cat", + "firstName": "Eren Alp", + "lastName": "Öğdem", + "image": "http://static.lolesports.com/players/1641930315672_placeholder.png", + "role": "jungle" + }, + { + "id": "112438393043075589", + "summonerName": "ChubakkaHD", + "firstName": "Kerem", + "lastName": "Köse", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "jungle" + } + ] + }, + { + "id": "111730836284004536", + "slug": "hallow-crows", + "name": "Hallow Crows", + "code": "HLC", + "image": "http://static.lolesports.com/teams/1704877260097_HallowCrows.png", + "alternativeImage": "http://static.lolesports.com/teams/1704877260098_HallowCrows.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "TCL", + "region": "EMEA" + }, + "players": [ + { + "id": "111772083249195405", + "summonerName": "Dexam", + "firstName": "AYKUT", + "lastName": "GULBAG", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "112654940833590104", + "summonerName": "Selfflag", + "firstName": "Miraç", + "lastName": "Özbayrak", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "111726972033907253", + "summonerName": "Ajuxsy", + "firstName": "Furkan", + "lastName": "Alakır", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "112734596665324307", + "summonerName": "Shiguro", + "firstName": "Furkan", + "lastName": "Yürük", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "112438332742208545", + "summonerName": "Antos", + "firstName": "Yusuf", + "lastName": "Yılmaz", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "112734774675650143", + "summonerName": "Sultan1", + "firstName": "Gökdeniz", + "lastName": "Altay", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "112580709066695145", + "summonerName": "ashen1", + "firstName": "Yiğit Arkın", + "lastName": "Ulcay", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "112580709253487886", + "summonerName": "Raisen", + "firstName": "Bora", + "lastName": "Bekik", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "bottom" + } + ] + }, + { + "id": "111730839833499835", + "slug": "lynch-esports", + "name": "Lynch Esports", + "code": "LY", + "image": "http://static.lolesports.com/teams/1704877315145_LynchWhite.png", + "alternativeImage": "http://static.lolesports.com/teams/1704877315146_Lynch.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "TCL", + "region": "EMEA" + }, + "players": [ + { + "id": "111862351232088940", + "summonerName": "rok", + "firstName": "Yusuf", + "lastName": "Kaynakçı", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "112541846773547332", + "summonerName": "Tundra1", + "firstName": "Çağan", + "lastName": "Orhan", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + }, + { + "id": "109894829265176079", + "summonerName": "interen", + "firstName": "Eren", + "lastName": "Öztürk", + "image": "http://static.lolesports.com/players/1676862021195_placeholder.png", + "role": "none" + }, + { + "id": "111726918105577966", + "summonerName": "helforca", + "firstName": "Taha Enes", + "lastName": "Ayık", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + }, + { + "id": "112580709253487886", + "summonerName": "Raisen", + "firstName": "Bora", + "lastName": "Bekik", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + }, + { + "id": "112580709717205493", + "summonerName": "SouI", + "firstName": "Umut", + "lastName": "Metin", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "107583006037594408", + "summonerName": "M0NK", + "firstName": "Joosep", + "lastName": "Kivilaan", + "image": "http://static.lolesports.com/players/1641586392590_placeholder.png", + "role": "support" + }, + { + "id": "111726946748886088", + "summonerName": "froy", + "firstName": "Kerem", + "lastName": "Çan", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "109705487623802064", + "summonerName": "KERUSHA", + "firstName": "Kirill", + "lastName": "Staroverov", + "image": "http://static.lolesports.com/players/1673972892977_placeholder.png", + "role": "bottom" + }, + { + "id": "111726950679401662", + "summonerName": "Dionelux", + "firstName": "Yağız", + "lastName": "zvarna", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "top" + } + ] + }, + { + "id": "111730844349643010", + "slug": "comanchero-gaming", + "name": "Comanchero Gaming", + "code": "CHG", + "image": "http://static.lolesports.com/teams/1704877383298_CG.png", + "alternativeImage": "http://static.lolesports.com/teams/1704877383300_CG.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "TCL", + "region": "EMEA" + }, + "players": [ + { + "id": "111726894399187968", + "summonerName": "Vergil", + "firstName": "Mehmet Emin", + "lastName": "Sığırgüden", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "111726887765830637", + "summonerName": "Chirashi", + "firstName": "Yağız", + "lastName": "Kunt", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "111698395910840490", + "summonerName": "Sensy", + "firstName": "Gökhan Ege", + "lastName": "Çine", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "111726847991624998", + "summonerName": "FireAscept", + "firstName": "Resul", + "lastName": "Polat", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "104251876863784864", + "summonerName": "Beplush", + "firstName": "Cenk Batuhan", + "lastName": "Cıbır", + "image": "http://static.lolesports.com/players/1590757392676_silhouette.png", + "role": "support" + }, + { + "id": "112518239720575066", + "summonerName": "Sonpy H", + "firstName": "Eren", + "lastName": "Tunalı", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "108443044098881047", + "summonerName": "Fynox", + "firstName": "Yiğit", + "lastName": "Doğan", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "bottom" + }, + { + "id": "102174664450928043", + "summonerName": "Black", + "firstName": "Murat", + "lastName": "Ayaz", + "image": "http://static.lolesports.com/players/1705672438429_BLACK.png", + "role": "bottom" + }, + { + "id": "101422616382597838", + "summonerName": "Madly", + "firstName": "Ferhat", + "lastName": "Can Atma", + "image": "http://static.lolesports.com/players/1655285894486_madly.png", + "role": "support" + }, + { + "id": "103495716627012437", + "summonerName": "Boncuk", + "firstName": "Ahmet Serhan", + "lastName": "Arslan", + "image": "http://static.lolesports.com/players/1583398867335_silhouette.png", + "role": "bottom" + }, + { + "id": "103766488714711091", + "summonerName": "Kwashi", + "firstName": "Alpkan", + "lastName": "Toksöyler", + "image": "http://static.lolesports.com/players/1583350952565_silhouette.png", + "role": "support" + } + ] + }, + { + "id": "111730847687203006", + "slug": "venus", + "name": "Venus", + "code": "VENS", + "image": "http://static.lolesports.com/teams/1704877434687_Venus.png", + "alternativeImage": "http://static.lolesports.com/teams/1704877434688_Venus.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "TCL", + "region": "EMEA" + }, + "players": [ + { + "id": "112580709391310098", + "summonerName": "Phaell", + "firstName": "Ömer Serhat", + "lastName": "Albayrak", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "112580709444699799", + "summonerName": "PARJIVAL", + "firstName": "Kadircan", + "lastName": "Albayrak", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "112580709527209082", + "summonerName": "jucky", + "firstName": "Doruk And", + "lastName": "Aksu", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "112580709588230641", + "summonerName": "Seriousblak", + "firstName": "Harun Kadir", + "lastName": "Döğer", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "112580709644715675", + "summonerName": "ASM", + "firstName": "Ahmet Selim", + "lastName": "Müftü", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "112694798123056379", + "summonerName": "Babaco", + "firstName": "Emirhan", + "lastName": "Gök", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "111726963970815397", + "summonerName": "Theoo", + "firstName": "Murat", + "lastName": "Ayan", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "111726966454310087", + "summonerName": "Thallnoss", + "firstName": "Yiğit", + "lastName": "Alphan", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "jungle" + } + ] + }, + { + "id": "111742030469743549", + "slug": "saw", + "name": "SAW", + "code": "SAW", + "image": "http://static.lolesports.com/teams/1705048069253_SAW_Icon_White.png", + "alternativeImage": "http://static.lolesports.com/teams/1705048069254_SAW_Icon_White.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107609990080030048", + "summonerName": "D4SH", + "firstName": "João", + "lastName": "Gomes", + "image": "https://static.lolesports.com/players/download.png", + "role": "jungle" + } + ] + }, + { + "id": "111786154607362008", + "slug": "flamehard", + "name": "Flame hard", + "code": "FLH", + "image": "http://static.lolesports.com/teams/1738418282280_falmenhard.png", + "alternativeImage": "http://static.lolesports.com/teams/1738418282281_falmenhard.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Liga Portuguesa", + "region": "EMEA" + }, + "players": [ + { + "id": "114944473961564415", + "summonerName": "Glory3", + "firstName": "Gloria ", + "lastName": "González", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "114944474022267659", + "summonerName": "NeSMonstro", + "firstName": "Rui", + "lastName": "Costa", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "114944848730395901", + "summonerName": "Tina", + "firstName": "André", + "lastName": "Esteves", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "99322214634684385", + "summonerName": "Djoko", + "firstName": "Charly", + "lastName": "Guillard", + "image": "http://static.lolesports.com/players/1744002926977_image6-2025-04-07T071446.683.png", + "role": "jungle" + }, + { + "id": "111782178518252548", + "summonerName": "Gordinho", + "firstName": "Simão", + "lastName": "Valente", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "108396072337826409", + "summonerName": "raining", + "firstName": "Matúš", + "lastName": "Mazur", + "image": "http://static.lolesports.com/players/1653992797414_placeholder.png", + "role": "bottom" + }, + { + "id": "114944474131190184", + "summonerName": "Carolina", + "firstName": "Carolina ", + "lastName": "Rosa", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "107655455544904134", + "summonerName": "Caucha", + "firstName": "Carlos", + "lastName": "Martinho", + "image": "https://static.lolesports.com/players/download.png", + "role": "top" + }, + { + "id": "108401896945706387", + "summonerName": "UniqueCORN", + "firstName": "Lukas", + "lastName": "Bauer", + "image": "http://static.lolesports.com/players/1654081676416_placeholder.png", + "role": "mid" + } + ] + }, + { + "id": "111786180377795784", + "slug": "zena-esports", + "name": "Zena Esports", + "code": "ZENA", + "image": "http://static.lolesports.com/teams/1737015447766_ZenaRedlogo-ValerioPietroMarchisotta.png", + "alternativeImage": "http://static.lolesports.com/teams/1737015447766_ZenaRedlogo-ValerioPietroMarchisotta.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LoL Italian Tournament", + "region": "EMEA" + }, + "players": [ + { + "id": "114297073615343444", + "summonerName": "gwisin", + "firstName": "Paolo", + "lastName": "D'Ascola", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "115197466295580963", + "summonerName": "Inzuh", + "firstName": "Vincenzo", + "lastName": "Battaglia", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "112552876386721769", + "summonerName": "Archfiend", + "firstName": "Antani", + "lastName": "Petkov", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "114794764027573888", + "summonerName": "Pericolo", + "firstName": "Andrea", + "lastName": "Dilluvio", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "110462404707956903", + "summonerName": "Wuis", + "firstName": "Luís", + "lastName": "Pereira", + "image": "http://static.lolesports.com/players/1685522532084_placeholder.png", + "role": "support" + }, + { + "id": "105526915859014085", + "summonerName": "Sumi", + "firstName": "Max", + "lastName": "de Beer", + "image": "https://static.lolesports.com/players/download.png", + "role": "mid" + }, + { + "id": "113860699614935329", + "summonerName": "Druk", + "firstName": "Emanuele", + "lastName": "Fonti", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "113905680506906879", + "summonerName": "AkHasspun", + "firstName": "Hampus", + "lastName": "Blinke", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "111686375268356452", + "summonerName": "Metroflox", + "firstName": "Broucke", + "lastName": "Florent", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "jungle" + } + ] + }, + { + "id": "111813399745345965", + "slug": "twareg-esports", + "name": "Twareg Esports", + "code": "TRG", + "image": "http://static.lolesports.com/teams/1706137071916_noteamlogo-lolesports1.png", + "alternativeImage": "http://static.lolesports.com/teams/1706137071917_noteamlogo-lolesports1.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Arabian League", + "region": "EMEA" + }, + "players": [ + { + "id": "105655753296619328", + "summonerName": "Moesakr", + "firstName": "Mahmoud", + "lastName": "Sakr", + "image": "http://static.lolesports.com/players/placeholder_.jpg", + "role": "top" + }, + { + "id": "109749360853268219", + "summonerName": "Vasco", + "firstName": "Paweł", + "lastName": "Machnik", + "image": "http://static.lolesports.com/players/1674642348734_placeholder.png", + "role": "mid" + }, + { + "id": "106302873774707670", + "summonerName": "Bung", + "firstName": "Jakob", + "lastName": "Gramm", + "image": "http://static.lolesports.com/players/1674126414658_Bung.png", + "role": "bottom" + }, + { + "id": "107605563375804641", + "summonerName": "Biskoo", + "firstName": "Youssef", + "lastName": "Hassan", + "image": "http://static.lolesports.com/players/1739201631034_FOGBiskoo.png", + "role": "support" + }, + { + "id": "112676754438223537", + "summonerName": "Funny FuFuu", + "firstName": "Mohamed", + "lastName": "Fawzy", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "109696850540756983", + "summonerName": "Iheb", + "firstName": "Iheb", + "lastName": "Arif", + "image": "http://static.lolesports.com/players/1673841100304_silhouette_transparent.png", + "role": "support" + }, + { + "id": "110528675985457242", + "summonerName": "Rudnar", + "firstName": "Mohamed", + "lastName": "Saied", + "image": "http://static.lolesports.com/players/1686533745749_placeholder.png", + "role": "top" + }, + { + "id": "105519983884478282", + "summonerName": "Kerberos", + "firstName": "Kallon", + "lastName": "Ram", + "image": "http://static.lolesports.com/players/nordavind-kerb-lol.png", + "role": "top" + }, + { + "id": "110542442009022627", + "summonerName": "Moe", + "firstName": "mo'en", + "lastName": "abed al rahman", + "image": "http://static.lolesports.com/players/1686743804114_placeholder.png", + "role": "jungle" + } + ] + }, + { + "id": "111813405559526982", + "slug": "fog-esports", + "name": "FOG Esports", + "code": "FOG", + "image": "http://static.lolesports.com/teams/1738571973474_FOG-ESPORTS-LOGO.png", + "alternativeImage": "http://static.lolesports.com/teams/1706137165358_Main_Logo_Black_outline_.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Arabian League", + "region": "EMEA" + }, + "players": [] + }, + { + "id": "111813408041089458", + "slug": "stade-tunisien-esports", + "name": "Stade Tunisien Esports", + "code": "STES", + "image": "http://static.lolesports.com/teams/1706137204602_noteamlogo-lolesports1.png", + "alternativeImage": "http://static.lolesports.com/teams/1706137204602_noteamlogo-lolesports1.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "Arabian League", + "region": "EMEA" + }, + "players": [ + { + "id": "111813497952205432", + "summonerName": "EL Hadj", + "firstName": "Haroun", + "lastName": "Hadj Taieb", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "111813498036632103", + "summonerName": "Kickless", + "firstName": "Mohamed Ismail", + "lastName": "Msakni", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "111813498087249568", + "summonerName": "SAI", + "firstName": "Mehdi", + "lastName": "Ben Abdessalem", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "111813498143324715", + "summonerName": "Patience", + "firstName": "Malek", + "lastName": "Houcine", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "111813498195163704", + "summonerName": "Sundax", + "firstName": "Haroun", + "lastName": "Ben Hadj Lakhal", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "111813498244077228", + "summonerName": "EL Para", + "firstName": "Zakaria", + "lastName": "Ben Mansour", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "top" + } + ] + }, + { + "id": "111856994428452321", + "slug": "tropa-xv", + "name": "Tropa XV Academy", + "code": "TXV", + "image": "http://static.lolesports.com/teams/1706802281430_TROPAXV-BRANCO.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "111853186358756447", + "summonerName": "ouroboy", + "firstName": "Mateus", + "lastName": "Neves", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "107559597273805278", + "summonerName": "Soweto", + "firstName": "Leonardo", + "lastName": "Alencar", + "image": "http://static.lolesports.com/players/1686349316648_Soweto.png", + "role": "jungle" + }, + { + "id": "111853191653137420", + "summonerName": "aveng3r", + "firstName": "Adriano", + "lastName": "Perassoli", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "106297026023090788", + "summonerName": "Improve", + "firstName": "Leonardo", + "lastName": "Sampaio", + "image": "http://static.lolesports.com/players/1654458825118_Improvecopy.png", + "role": "bottom" + }, + { + "id": "109802874490334399", + "summonerName": "thominhas", + "firstName": "Thomas", + "lastName": "Nakayama", + "image": "http://static.lolesports.com/players/1686346601076_Thominhas.png", + "role": "support" + }, + { + "id": "111853198229740560", + "summonerName": "Fiorin", + "firstName": "Lucas", + "lastName": "Fiorin", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "111853200738993261", + "summonerName": "unlove", + "firstName": "Maycon", + "lastName": "Baldini", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "111986481324596648", + "summonerName": "bbeNj", + "firstName": "Luiz", + "lastName": "Henrique", + "image": "http://static.lolesports.com/players/1717437982973_Bbenj.png", + "role": "bottom" + }, + { + "id": "102135522496703527", + "summonerName": "Vahvel", + "firstName": "Victor", + "lastName": "Vieira", + "image": "http://static.lolesports.com/players/1718124788502_Vahvel.png", + "role": "support" + } + ] + }, + { + "id": "111860983923913989", + "slug": "baam-esports", + "name": "BAAM Esports", + "code": "BAM", + "image": "http://static.lolesports.com/teams/1738571384294_.png", + "alternativeImage": "http://static.lolesports.com/teams/1738571384294_.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Arabian League", + "region": "EMEA" + }, + "players": [ + { + "id": "109696794507009078", + "summonerName": "handm", + "firstName": "Hashem", + "lastName": "Baroum", + "image": "http://static.lolesports.com/players/1739200667034_BAAMHandm.png", + "role": "none" + }, + { + "id": "111771335963420392", + "summonerName": "wickedd", + "firstName": "Fares", + "lastName": "Bouhajja", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + }, + { + "id": "102808609138703668", + "summonerName": "DahVys", + "firstName": "David", + "lastName": "Casco", + "image": "https://static.lolesports.com/players/download.png", + "role": "none" + }, + { + "id": "106302528293858788", + "summonerName": "marlon", + "firstName": "Igor", + "lastName": "Tomczyk", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "none" + } + ] + }, + { + "id": "111861024346605459", + "slug": "sus-gaming", + "name": "Victorious Demons", + "code": "VDS", + "image": "http://static.lolesports.com/teams/1706863780305_LOLESPORTSICON.png", + "alternativeImage": "http://static.lolesports.com/teams/1706863780305_LOLESPORTSICON.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Arabian League", + "region": "EMEA" + }, + "players": [ + { + "id": "111861009844723308", + "summonerName": "Noltey", + "firstName": "Thomas", + "lastName": "Nolte", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "109696903264490963", + "summonerName": "Astrai", + "firstName": "Mohamed Amine", + "lastName": "Taha", + "image": "http://static.lolesports.com/players/1673841905154_silhouette_transparent.png", + "role": "support" + }, + { + "id": "109721248741844529", + "summonerName": "Xbix", + "firstName": "Noamane", + "lastName": "Iraqi Houssaini", + "image": "http://static.lolesports.com/players/1674213390533_placeholder.png", + "role": "top" + }, + { + "id": "112512333759365304", + "summonerName": "Lamoula1", + "firstName": "Abdelmoula", + "lastName": "Benzrira", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "110528671844548238", + "summonerName": "Yazan", + "firstName": "Fahad", + "lastName": "Alshaea", + "image": "http://static.lolesports.com/players/1686533682400_placeholder.png", + "role": "mid" + }, + { + "id": "109922365105844013", + "summonerName": "ShiningSun", + "firstName": "Niklas", + "lastName": "Wittke", + "image": "http://static.lolesports.com/players/1677282178318_silhouette_transparent1.png", + "role": "none" + }, + { + "id": "112444804875518895", + "summonerName": "JRachel", + "firstName": "Nikita", + "lastName": "Krasnov", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "111035967639041388", + "summonerName": "Fr0m02Her0", + "firstName": "Ramy", + "lastName": "Hamed", + "image": "https://static.lolesports.com/players/download.png", + "role": "jungle" + }, + { + "id": "112444795784239836", + "summonerName": "Walker1", + "firstName": "Kirill", + "lastName": "Aleynikov", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "112444783436012235", + "summonerName": "doomlance", + "firstName": "basaly", + "lastName": "gamil", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "112444782222243813", + "summonerName": "I CLARK I", + "firstName": "youcef mohhamed moncef", + "lastName": "bourk", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "111813496766872038", + "summonerName": "MuffinMan", + "firstName": "Ali", + "lastName": "Saboorzadeh", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "112706802821176459", + "summonerName": "Rizzler", + "firstName": "houssam", + "lastName": "el moudden", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "112706799462887696", + "summonerName": "Choka", + "firstName": "Muhamed Yasine", + "lastName": "Turki", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + } + ] + }, + { + "id": "111878249592959971", + "slug": "all-gamers", + "name": "ALL GAMERS", + "code": "AG", + "image": "http://static.lolesports.com/teams/1707126602472_AG.png", + "alternativeImage": "http://static.lolesports.com/teams/1707126602472_AG.png", + "backgroundImage": "http://static.lolesports.com/teams/1707126602472_logo_AG_128.png", + "status": "active", + "homeLeague": { + "name": "LPL", + "region": "CHINA" + }, + "players": [ + { + "id": "112880372381731252", + "summonerName": "Ben01", + "firstName": "Ben", + "lastName": "Ben", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + } + ] + }, + { + "id": "112131640223349368", + "slug": "pirate-idv", + "name": "Pirate IDV", + "code": "IDV", + "image": "http://static.lolesports.com/teams/1710993037436_PD_white.png", + "alternativeImage": "http://static.lolesports.com/teams/1710993037437_PD_blak.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107599452994035200", + "summonerName": "Pinky", + "firstName": "Oscar Adrian", + "lastName": "Gómez Morales", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "top" + }, + { + "id": "112088643470270500", + "summonerName": "Letritas", + "firstName": "JOSE OSCAR", + "lastName": "ALVAREZ BOCANEGRA", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "107615823293246498", + "summonerName": "Zzzofia", + "firstName": "Paolo Alexander", + "lastName": "Falconi Cachimuel", + "image": "http://static.lolesports.com/players/1642087137569_placeholder.png", + "role": "support" + }, + { + "id": "107599453050164685", + "summonerName": "Saeko", + "firstName": "Alejandro", + "lastName": "Hurtado Peña", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "top" + } + ] + }, + { + "id": "112437044212590639", + "slug": "paranormal-invaders", + "name": "Paranormal Invaders", + "code": "PAIN", + "image": "http://static.lolesports.com/teams/1715653135125_PAINParanormalInvaders.png", + "alternativeImage": "http://static.lolesports.com/teams/1715653135125_PAINParanormalInvaders.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "112436950545560148", + "summonerName": "Prosty", + "firstName": "DIMITRIS", + "lastName": "HIOTELIS", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "112436950618718345", + "summonerName": "Roo", + "firstName": "THOMAS ", + "lastName": "VAN MEEGEN", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "109704787720347838", + "summonerName": "kaizen", + "firstName": "PANAGIOTIS", + "lastName": "KEPESOGLOU", + "image": "http://static.lolesports.com/players/1673962213068_placeholder.png", + "role": "top" + }, + { + "id": "113196867543200466", + "summonerName": "Asora", + "firstName": "VLADUT CLAUDIU", + "lastName": "BARBULESCU", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "113196867587681729", + "summonerName": "Proscot", + "firstName": "PIOTR", + "lastName": "GANKO", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "mid" + } + ] + }, + { + "id": "112437048437410558", + "slug": "lucy", + "name": "Rookies5", + "code": "R5", + "image": "http://static.lolesports.com/teams/1727246213389_LOLESPORTSICON.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "113196867810897353", + "summonerName": "Cuzni", + "firstName": "NIKOLAOS", + "lastName": "ARTINOS", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "113196867866358486", + "summonerName": "Panch", + "firstName": "PANAGIOTIS", + "lastName": "TROUMPOUKIS", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "113196867910955025", + "summonerName": "TopalHustla", + "firstName": "GIORGOS", + "lastName": "TOPALTZIKIS", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "113196868083707948", + "summonerName": "Impostor", + "firstName": "DIMITRIS", + "lastName": "BLASSIS", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "jungle" + } + ] + }, + { + "id": "112437054356359940", + "slug": "gamers404", + "name": "Gamers404", + "code": "G4", + "image": "http://static.lolesports.com/teams/1715653290354_G4Gamers404.png", + "alternativeImage": "http://static.lolesports.com/teams/1715653290354_G4Gamers404.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "113196867667292169", + "summonerName": "Vuja", + "firstName": "ANDREJ", + "lastName": "VUJANOVIC", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "113196867712184333", + "summonerName": "burningstar", + "firstName": "Denizhan", + "lastName": "Togur", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "113196867764497861", + "summonerName": "Buda", + "firstName": "BOJAN", + "lastName": "BUDECEVIC", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "105655763162081106", + "summonerName": "BaBaYaGa", + "firstName": "Dimosthenis", + "lastName": "Tsolis", + "image": "http://static.lolesports.com/players/1633689362686_silhouette.png", + "role": "support" + }, + { + "id": "109704873806727008", + "summonerName": "Stardrake", + "firstName": "CHRISTOS", + "lastName": "NTALAS", + "image": "http://static.lolesports.com/players/1673963526984_placeholder.png", + "role": "bottom" + }, + { + "id": "110441678923286628", + "summonerName": "Kerveros", + "firstName": "Gerasimos Timoleon", + "lastName": "Krassas", + "image": "http://static.lolesports.com/players/1685206283290_placeholder.png", + "role": "bottom" + } + ] + }, + { + "id": "112437059871303752", + "slug": "spartans-eu", + "name": "SPARTANS EU", + "code": "SPAR", + "image": "http://static.lolesports.com/teams/1715653374802_SPASpartansEU.png", + "alternativeImage": "http://static.lolesports.com/teams/1715653374803_SPASpartansEU.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "111838668699777782", + "summonerName": "Dawi", + "firstName": "DIMITRIS ", + "lastName": "TATIS", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "112436950353808007", + "summonerName": "Trvekvlt", + "firstName": "PANAGIOTIS", + "lastName": "TSOROMOKOS", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "112436950739815064", + "summonerName": "Xhi", + "firstName": "DERMENTZOUDIS", + "lastName": "STEPHANOS", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "113196867454250429", + "summonerName": "RTX", + "firstName": "BASIL REDA FAROUK", + "lastName": "HEMED", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "111805508923548903", + "summonerName": "S M", + "firstName": "STELIOS", + "lastName": "MAVRAKIS", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "112552675681852322", + "summonerName": "Degla", + "firstName": "Adam", + "lastName": "Belhassen", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "107648266807315386", + "summonerName": "Pain", + "firstName": "Giulio", + "lastName": "Siena", + "image": "http://static.lolesports.com/players/1642582192870_placeholder.png", + "role": "top" + }, + { + "id": "113196867498751459", + "summonerName": "Necropolis", + "firstName": "RICHARD", + "lastName": "HYZA", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "106250770692135425", + "summonerName": "Messclick", + "firstName": "Pangiotis", + "lastName": "Stamogiorgos", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "bottom" + } + ] + }, + { + "id": "112440363579839068", + "slug": "improve-team", + "name": "IMProve Team", + "code": "IMPT", + "image": "http://static.lolesports.com/teams/1715703781717_JIZrLj9.png", + "alternativeImage": "http://static.lolesports.com/teams/1715703781717_JIZrLj9.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "112002982470720447", + "summonerName": "Kaplica", + "firstName": "Filip", + "lastName": "Lefik", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "112440591231348747", + "summonerName": "Joki", + "firstName": "Jakub", + "lastName": "Korzeniecki", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "112440591286768426", + "summonerName": "Macjei", + "firstName": "Maciej", + "lastName": "Kurek", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "112440591355509524", + "summonerName": "Royeq", + "firstName": "Jan", + "lastName": "Rojek", + "image": "http://static.lolesports.com/players/1753918440555_royeqrdy.png", + "role": "bottom" + }, + { + "id": "112440591420789551", + "summonerName": "brum", + "firstName": "Michał", + "lastName": "Szmit", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "112749532037835063", + "summonerName": "Birkyy", + "firstName": "Kacper", + "lastName": "Niemiec", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "112749534411388612", + "summonerName": "Lajcik", + "firstName": "Alan", + "lastName": "Trella", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "bottom" + } + ] + }, + { + "id": "112441021975073939", + "slug": "carthage-legionnaires", + "name": "Carthage Legionnaires", + "code": "CL", + "image": "http://static.lolesports.com/teams/1715713827185_LOGO-removebg-preview.png", + "alternativeImage": "http://static.lolesports.com/teams/1715713827185_LOGO-removebg-preview.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Arabian League", + "region": "EMEA" + }, + "players": [ + { + "id": "107768042767707404", + "summonerName": "Dargod", + "firstName": "Darin", + "lastName": "Kirov", + "image": "http://static.lolesports.com/players/1644409831434_placeholder.png", + "role": "support" + }, + { + "id": "107643466960011600", + "summonerName": "Guffe", + "firstName": "Gustav", + "lastName": "Jantzen", + "image": "http://static.lolesports.com/players/1642508953139_placeholder.png", + "role": "bottom" + }, + { + "id": "110528659834568757", + "summonerName": "Lightshaw", + "firstName": "Med Amir", + "lastName": "Ben Oudhifa", + "image": "http://static.lolesports.com/players/1686533499449_placeholder.png", + "role": "mid" + }, + { + "id": "112440982733159679", + "summonerName": "Exan", + "firstName": "Safwen", + "lastName": "Ben Boubaker", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "110528653620248732", + "summonerName": "Shadow12", + "firstName": "Abderrahmen", + "lastName": "Smati", + "image": "http://static.lolesports.com/players/1686533403464_placeholder.png", + "role": "mid" + }, + { + "id": "108443044098881047", + "summonerName": "Fynox", + "firstName": "Yiğit", + "lastName": "Doğan", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "bottom" + }, + { + "id": "111934533467291101", + "summonerName": "Sworm", + "firstName": "Mehmet Can", + "lastName": "Akıncı", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + } + ] + }, + { + "id": "112441047227333917", + "slug": "onyx-ravens", + "name": "Onyx Ravens", + "code": "OXR", + "image": "http://static.lolesports.com/teams/1715714219003_PrimaryLogo-Blue.png", + "alternativeImage": "http://static.lolesports.com/teams/1715714219003_PrimaryLogo-Blue.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Arabian League", + "region": "EMEA" + }, + "players": [ + { + "id": "110528638727127177", + "summonerName": "CHALEEED", + "firstName": "Khalid", + "lastName": "Alzahrani", + "image": "http://static.lolesports.com/players/1686533176342_placeholder.png", + "role": "mid" + }, + { + "id": "109696802227045109", + "summonerName": "Lelouch1", + "firstName": "Mazen", + "lastName": "Baessa", + "image": "http://static.lolesports.com/players/1673840363075_silhouette_transparent.png", + "role": "bottom" + }, + { + "id": "109696786567812491", + "summonerName": "sas", + "firstName": "Sahal", + "lastName": "Waggass", + "image": "http://static.lolesports.com/players/1673840124305_silhouette_transparent.png", + "role": "support" + }, + { + "id": "103766433331803330", + "summonerName": "Habubu", + "firstName": "Seyit", + "lastName": "Cüce", + "image": "http://static.lolesports.com/players/1583350106869_silhouette.png", + "role": "jungle" + } + ] + }, + { + "id": "112444709995780783", + "slug": "oxygen-gaming", + "name": "Oxygen Gaming", + "code": "O2G", + "image": "http://static.lolesports.com/teams/1715770098699_662b826a96958132948176.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "103935305476426607", + "summonerName": "Tamoz", + "firstName": "Pierre-Antoine ", + "lastName": "Gau-Verdon", + "image": "http://static.lolesports.com/players/1675089827510_tamoz.png", + "role": "top" + }, + { + "id": "105537410828121591", + "summonerName": "Nyx", + "firstName": "Oscar", + "lastName": "Ruiz Vargas", + "image": "https://static.lolesports.com/players/download.png", + "role": "jungle" + }, + { + "id": "105519853893311280", + "summonerName": "Air", + "firstName": "Shenghao", + "lastName": "He", + "image": "http://static.lolesports.com/players/placeholder.png", + "role": "mid" + }, + { + "id": "105700963357470990", + "summonerName": "cyraXx", + "firstName": "VADIM", + "lastName": "Averin", + "image": "http://static.lolesports.com/players/1644588161942_12.png", + "role": "bottom" + }, + { + "id": "111658530958748163", + "summonerName": "Wrongo", + "firstName": "Matéo ", + "lastName": "Magat", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "111658541650807635", + "summonerName": "Stargazer1", + "firstName": "Cristian", + "lastName": " Navarro Riquelme", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "112454997567969315", + "summonerName": "Cran", + "firstName": "Christian Javier", + "lastName": "Artacho Ruiz", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "109421335597040197", + "summonerName": "Adryh", + "firstName": "Adrián", + "lastName": "Pérez González", + "image": "https://static.lolesports.com/players/download.png", + "role": "bottom" + }, + { + "id": "106302721520442313", + "summonerName": "Ethe", + "firstName": "Raul ", + "lastName": "Campos Vico", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "top" + } + ] + }, + { + "id": "112444714469595828", + "slug": "vinividivinci", + "name": "Veni Vidi Vici", + "code": "VVV", + "image": "http://static.lolesports.com/teams/1736500243640_677fd12b34f73704474019.png", + "alternativeImage": "http://static.lolesports.com/teams/1736500243640_677fd12b34f73704474019.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "105532769396384724", + "summonerName": "Rayito", + "firstName": "Michael", + "lastName": "Curtet Jaimes", + "image": "http://static.lolesports.com/players/1644995528833_placeholder.png", + "role": "bottom" + }, + { + "id": "112455030076597495", + "summonerName": "Enigma2", + "firstName": " Guillem ", + "lastName": "Hernández Benítez", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "113639786906494957", + "summonerName": "Blackk", + "firstName": "Esteban", + "lastName": "Lobos", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "103461966929364884", + "summonerName": "Koldo", + "firstName": "Luis ", + "lastName": "Perez Garcia", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/ftw-koldo-cr6vjtdj.png", + "role": "top" + }, + { + "id": "102787199997762691", + "summonerName": "iBo", + "firstName": "Marcin ", + "lastName": "Lebuda", + "image": "https://static.lolesports.com/players/download.png", + "role": "top" + }, + { + "id": "107614683612114087", + "summonerName": "Oleg", + "firstName": "Oleg", + "lastName": "Karkachev", + "image": "http://static.lolesports.com/players/1642069755064_placeholder.png", + "role": "jungle" + }, + { + "id": "109146898089227862", + "summonerName": "Marty", + "firstName": "Martin", + "lastName": "Dimitrov", + "image": "https://static.lolesports.com/players/download.png", + "role": "mid" + }, + { + "id": "107564428297402857", + "summonerName": "Nash", + "firstName": "Alf-Kristian", + "lastName": "Sund", + "image": "http://static.lolesports.com/players/1641302912633_placeholder.png", + "role": "support" + }, + { + "id": "109664447450238951", + "summonerName": "Arven", + "firstName": "Guillermo", + "lastName": "Gombao Muñoz", + "image": "https://static.lolesports.com/players/download.png", + "role": "none" + } + ] + }, + { + "id": "112444725757989017", + "slug": "falke-ec", + "name": "Falke E.C", + "code": "FLK", + "image": "http://static.lolesports.com/teams/1715770345001_664343ebb5eeb787600599.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "107105595292715479", + "summonerName": "ManoloGap", + "firstName": "Manuel ", + "lastName": "García Azcúnaga", + "image": "https://static.lolesports.com/players/download.png", + "role": "top" + }, + { + "id": "106312643295867752", + "summonerName": "Sapphire", + "firstName": "Jakob", + "lastName": "Rietschel", + "image": "http://static.lolesports.com/players/1633689599879_silhouette.png", + "role": "jungle" + }, + { + "id": "107560280408973402", + "summonerName": "Pesho", + "firstName": "Nikola", + "lastName": "Peshevski", + "image": "http://static.lolesports.com/players/1641239625508_placeholder.png", + "role": "mid" + }, + { + "id": "112455030131103811", + "summonerName": "JaVa", + "firstName": " Francisco javier ", + "lastName": "Martinez Luque", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "107649258583920108", + "summonerName": "Zimba", + "firstName": "Jasper", + "lastName": "Hytönen", + "image": "http://static.lolesports.com/players/1642597327082_placeholder.png", + "role": "support" + }, + { + "id": "112454997662865456", + "summonerName": "Skynet", + "firstName": "Manuel", + "lastName": "Romero Abad", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "bottom" + } + ] + }, + { + "id": "112444729074438300", + "slug": "tani-esports", + "name": "Tan'i eSports", + "code": "TNI", + "image": "http://static.lolesports.com/teams/1715770395398_6643492744d7b225681924.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Hitpoint Masters", + "region": "EMEA" + }, + "players": [ + { + "id": "105593132346234852", + "summonerName": "welcom", + "firstName": "Hoang Quan", + "lastName": "Nguyen", + "image": "http://static.lolesports.com/players/placeholder_.jpg", + "role": "top" + }, + { + "id": "106250634907345354", + "summonerName": "Carnage", + "firstName": "Vasilis", + "lastName": "Syrianos", + "image": "http://static.lolesports.com/players/1646764494377_Carnage.png", + "role": "jungle" + }, + { + "id": "104738264639272522", + "summonerName": "tibor", + "firstName": "Tibor", + "lastName": "Trošelj", + "image": "http://static.lolesports.com/players/galaxy-racer-tibor-lol.png", + "role": "mid" + }, + { + "id": "105647895799768309", + "summonerName": "esko", + "firstName": "Lukáš", + "lastName": "Endl", + "image": "http://static.lolesports.com/players/download.png", + "role": "bottom" + }, + { + "id": "105647949222184803", + "summonerName": "Smarty", + "firstName": "Matyáš", + "lastName": "Rozvoral", + "image": "http://static.lolesports.com/players/download.png", + "role": "support" + }, + { + "id": "110648665354330233", + "summonerName": "LANDY", + "firstName": "Adam", + "lastName": "Landauf", + "image": "http://static.lolesports.com/players/1688364643489_placeholder.png", + "role": "bottom" + } + ] + }, + { + "id": "112489369404743617", + "slug": "idl-esports", + "name": "IDL Esports", + "code": "IDL", + "image": "http://static.lolesports.com/teams/1716451549109_ILHA-DAS-LENDAS-ESPORTS-BRANCO.png", + "alternativeImage": "http://static.lolesports.com/teams/1716451549109_ILHA-DAS-LENDAS-ESPORTS.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "99566407756609146", + "summonerName": "Ayel", + "firstName": "Marcelo", + "lastName": "Bellini", + "image": "http://static.lolesports.com/players/1717431491065_Ayel.png", + "role": "top" + }, + { + "id": "105397275533488759", + "summonerName": "ShaQuinn", + "firstName": "Pedro", + "lastName": "Salazar", + "image": "http://static.lolesports.com/players/Luskka.png", + "role": "top" + }, + { + "id": "112489397328255743", + "summonerName": "Letter", + "firstName": "Rayan", + "lastName": "Castro", + "image": "http://static.lolesports.com/players/1717431632873_Letter.png", + "role": "jungle" + }, + { + "id": "98926509791489043", + "summonerName": "Shrimp", + "firstName": "Byeonghoon", + "lastName": "Lee", + "image": "http://static.lolesports.com/players/1717431444064_Shrimp.png", + "role": "jungle" + }, + { + "id": "103743599797538329", + "summonerName": "Flare", + "firstName": "Luiz Felipe", + "lastName": "Soares Lobo", + "image": "http://static.lolesports.com/players/1717431386686_Flare.png", + "role": "bottom" + }, + { + "id": "112489397378554266", + "summonerName": "Yukii", + "firstName": "Igor", + "lastName": "Tanaka", + "image": "http://static.lolesports.com/players/1717431591139_Yuki.png", + "role": "support" + } + ] + }, + { + "id": "112489375097659332", + "slug": "rise-gaming", + "name": "RISE Gaming", + "code": "RISE", + "image": "http://static.lolesports.com/teams/1741771240015_2-IYVhiot.png", + "alternativeImage": "http://static.lolesports.com/teams/1741771240015_2-IYVhiot.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Circuito Desafiante", + "region": "BRAZIL" + }, + "players": [ + { + "id": "104241655502826222", + "summonerName": "Yupps", + "firstName": "Yuri", + "lastName": "Petermann", + "image": "http://static.lolesports.com/players/1717072703215_Yups.png", + "role": "top" + }, + { + "id": "103478281341350420", + "summonerName": "stiNg", + "firstName": "Luís", + "lastName": "Dirami", + "image": "http://static.lolesports.com/players/1717077943975_Silhueta1.png", + "role": "jungle" + }, + { + "id": "107559356925533344", + "summonerName": "zay", + "firstName": "Vinicius", + "lastName": "Viana", + "image": "http://static.lolesports.com/players/1717426916070_Zay.png", + "role": "none" + }, + { + "id": "104410793439045393", + "summonerName": "RAV3N", + "firstName": "Raphael", + "lastName": "Sancio", + "image": "http://static.lolesports.com/players/1717433527291_Raven.png", + "role": "bottom" + }, + { + "id": "99566408209368518", + "summonerName": "lynkez", + "firstName": "Leonardo", + "lastName": "Cassuci", + "image": "http://static.lolesports.com/players/1654458148390_Lynkezcopy.png", + "role": "mid" + } + ] + }, + { + "id": "112489380005535618", + "slug": "tropa-raizen", + "name": "Tropa Raizen", + "code": "TRZ", + "image": "http://static.lolesports.com/teams/1716451713850_CopyofLogocoloridaTRZ.PNG", + "alternativeImage": "http://static.lolesports.com/teams/1716451713850_CopyofLogocoloridaTRZ.PNG", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "112489397543018439", + "summonerName": "Nitz", + "firstName": "Murilo", + "lastName": "Ramlov", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "112489458739714595", + "summonerName": "rdgap", + "firstName": "Vinícius", + "lastName": "Krick", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "112489397622872486", + "summonerName": "Guilin", + "firstName": "Guilherme", + "lastName": "Marinho", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "111986481324596648", + "summonerName": "bbeNj", + "firstName": "Luiz", + "lastName": "Henrique", + "image": "http://static.lolesports.com/players/1717437982973_Bbenj.png", + "role": "bottom" + }, + { + "id": "112489397674155987", + "summonerName": "murilao", + "firstName": "Murilo", + "lastName": "Lopes", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "110434250535850063", + "summonerName": "Shoiti", + "firstName": "Leandro ", + "lastName": "Yokoyama", + "image": "http://static.lolesports.com/players/1686346260347_Shoiti.png", + "role": "support" + } + ] + }, + { + "id": "112512226843541474", + "slug": "juicy-ballers", + "name": "Juicy Ballers", + "code": "BALL", + "image": "http://static.lolesports.com/teams/1716800328186_undefined-Imgur.png", + "alternativeImage": "http://static.lolesports.com/teams/1716800328187_undefined-Imgur.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "112512234458856900", + "summonerName": "EL ZORA1", + "firstName": "Juliusz", + "lastName": "Dan", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "112512233426371852", + "summonerName": "UCIULINHO2", + "firstName": "Jakub", + "lastName": "Góniak", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "112512232187215861", + "summonerName": "IWANAN3", + "firstName": "Tomasz", + "lastName": "Gaś", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "112512230284838141", + "summonerName": "DAMKEXHINO4", + "firstName": "Jagiełło", + "lastName": "Damian", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "112512227906666472", + "summonerName": "GEPARDINHO5", + "firstName": "Jakub", + "lastName": "Kowasz", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "112749580479424848", + "summonerName": "LEQINHO6", + "firstName": "Kamil", + "lastName": "Rosik", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "112749581957200421", + "summonerName": "DAMKEXINHO4", + "firstName": "Damian", + "lastName": "Jagiełło", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "bottom" + } + ] + }, + { + "id": "112512571773617134", + "slug": "parakeet-gaming", + "name": "Parakeet Gaming", + "code": "PRK", + "image": "http://static.lolesports.com/teams/1716805588189_HM_PRK.png", + "alternativeImage": "http://static.lolesports.com/teams/1716805588190_HM_PRK.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "Hitpoint Masters", + "region": "EMEA" + }, + "players": [ + { + "id": "106584941134606293", + "summonerName": "r0bbed", + "firstName": "Manh", + "lastName": "Ha Duc", + "image": "http://static.lolesports.com/players/1626357131036_placeholder.jpg", + "role": "top" + }, + { + "id": "111686375268356452", + "summonerName": "Metroflox", + "firstName": "Broucke", + "lastName": "Florent", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "112512543482512330", + "summonerName": "AdyTheKid", + "firstName": "Adam", + "lastName": "Kop", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "108589285158821845", + "summonerName": "Abner", + "firstName": "Abner", + "lastName": "Orbe Flores", + "image": "http://static.lolesports.com/players/1656940991631_placeholder.png", + "role": "bottom" + }, + { + "id": "112512546226554536", + "summonerName": "gregreg", + "firstName": "Maximilian", + "lastName": "Schnubel", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "112512547855860696", + "summonerName": "Jenikk", + "firstName": "Jan", + "lastName": "Mráz", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "106425066185676210", + "summonerName": "Marco", + "firstName": "Marco", + "lastName": "Isoletta", + "image": "http://static.lolesports.com/players/1643272864208_placeholder.png", + "role": "support" + }, + { + "id": "109709919279572799", + "summonerName": "ONLY", + "firstName": "Michal", + "lastName": "Hudec", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "bottom" + }, + { + "id": "106425061853706320", + "summonerName": "N3znamy", + "firstName": "Luboš", + "lastName": "Sobota", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "jungle" + } + ] + }, + { + "id": "112512572528460786", + "slug": "parakeet-gaming", + "name": "Parakeet Gaming", + "code": "PRKG", + "image": "http://static.lolesports.com/teams/1716805609775_HM_PRK.png", + "alternativeImage": "http://static.lolesports.com/teams/1716805609776_HM_PRK.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "Hitpoint Masters", + "region": "EMEA" + }, + "players": [] + }, + { + "id": "112512613138105410", + "slug": "diversion-gaming", + "name": "Diversion Gaming", + "code": "DVG", + "image": "http://static.lolesports.com/teams/1716806223124_HM2nd_DVG.png", + "alternativeImage": "http://static.lolesports.com/teams/1716806223124_HM2nd_DVG.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "111777454323351286", + "summonerName": "Dzeffry", + "firstName": "Tadeáš ", + "lastName": "Kaše ", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "108396089373500156", + "summonerName": "Baumeef", + "firstName": "Marek", + "lastName": "Baumann", + "image": "http://static.lolesports.com/players/1653993057092_placeholder.png", + "role": "jungle" + }, + { + "id": "107693183864450644", + "summonerName": "Lukyss", + "firstName": "Lukáš", + "lastName": "Drahota", + "image": "http://static.lolesports.com/players/1643267572914_placeholder.png", + "role": "mid" + }, + { + "id": "112512530952109805", + "summonerName": "TIMR", + "firstName": "Tomáš", + "lastName": "Buštík", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "105825496632096652", + "summonerName": "Reedfoo", + "firstName": "Dominik", + "lastName": "Kitler", + "image": "http://static.lolesports.com/players/placeholder.png", + "role": "bottom" + }, + { + "id": "106425058222401309", + "summonerName": "BrokenSword", + "firstName": "Filip", + "lastName": "Reiter", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "top" + } + ] + }, + { + "id": "112528900868788946", + "slug": "dragonsteel", + "name": "Dragonsteel", + "code": "DSTL", + "image": "http://static.lolesports.com/teams/1717054755988_DS_RGB_Stacked_RedMark.png", + "alternativeImage": "http://static.lolesports.com/teams/1717054755988_DS_RGB_Stacked_RedMark.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "105504931356139592", + "summonerName": "Niles", + "firstName": "Aiden", + "lastName": "Tidwell", + "image": "http://static.lolesports.com/players/gg-niles.png", + "role": "top" + }, + { + "id": "105504933212711228", + "summonerName": "Iconic", + "firstName": "Ethan", + "lastName": "Wilkinson", + "image": "http://static.lolesports.com/players/1645006192259_ICONIC.png", + "role": "none" + } + ] + }, + { + "id": "112551389497449257", + "slug": "fear-x-starforge", + "name": "Fear x Starforge", + "code": "FXS", + "image": "http://static.lolesports.com/teams/1717397900441_Main_Logo_Full-Color.png", + "alternativeImage": "http://static.lolesports.com/teams/1717397900442_Main_Logo_Full-Color.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "106547199482728931", + "summonerName": "Philipp", + "firstName": "Philip", + "lastName": "Zeng", + "image": "http://static.lolesports.com/players/1674833171628_FLY_PHILIP.png", + "role": "top" + }, + { + "id": "99322404269006062", + "summonerName": "JayJ", + "firstName": "Juan Jose", + "lastName": "Guibert Seminario", + "image": "http://static.lolesports.com/players/1655453014741_JAYJ.png", + "role": "support" + } + ] + }, + { + "id": "113606449173273162", + "slug": "isurus-estral", + "name": "Isurus", + "code": "ISG", + "image": "http://static.lolesports.com/teams/1758021026981_LogoColor.png", + "alternativeImage": "http://static.lolesports.com/teams/1758021026981_LogoColor.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LTA South", + "region": "AMERICAS" + }, + "players": [ + { + "id": "105506922297942200", + "summonerName": "Ackerman", + "firstName": "Gabriel", + "lastName": "Aparicio", + "image": "http://static.lolesports.com/players/1753347106064_image6320.png", + "role": "support" + }, + { + "id": "99566408350815597", + "summonerName": "Josedeodo", + "firstName": "Brandon", + "lastName": "Villegas", + "image": "http://static.lolesports.com/players/1753347194592_image6420.png", + "role": "jungle" + }, + { + "id": "106276221575238438", + "summonerName": "Snaker", + "firstName": "Brian", + "lastName": "Distefano", + "image": "http://static.lolesports.com/players/1753347299345_image6516.png", + "role": "bottom" + }, + { + "id": "110451311575097696", + "summonerName": "Zoen", + "firstName": "Enzo", + "lastName": "Ganino", + "image": "http://static.lolesports.com/players/1753347017580_image6220.png", + "role": "top" + }, + { + "id": "99566408537963625", + "summonerName": "Leza", + "firstName": "Francisco", + "lastName": "Barragan", + "image": "http://static.lolesports.com/players/1753346930445_image6122.png", + "role": "mid" + }, + { + "id": "107577677538574806", + "summonerName": "Zamudo", + "firstName": "Frankie", + "lastName": "Lin", + "image": "http://static.lolesports.com/players/1756064582761_gracze_template1.png", + "role": "top" + }, + { + "id": "99566408314042365", + "summonerName": "Emp", + "firstName": "Benjamin", + "lastName": "Mercado", + "image": "http://static.lolesports.com/players/1592686273675_FG-Emp.png", + "role": "mid" + }, + { + "id": "103619615096612421", + "summonerName": "Keine", + "firstName": "Juncheol", + "lastName": "Kim", + "image": "http://static.lolesports.com/players/1739478092400_ggsdgsgg.png", + "role": "mid" + } + ] + }, + { + "id": "113661839307879869", + "slug": "team-secret-whales", + "name": "Team Secret Whales", + "code": "TSW", + "image": "http://static.lolesports.com/teams/1734342451643_SecretWhalesLogoLockupWhite.png", + "alternativeImage": "http://static.lolesports.com/teams/1734342451643_SecretWhalesLogoLockupWhite.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCP", + "region": "PACIFIC" + }, + "players": [ + { + "id": "107251574398720447", + "summonerName": "Bie", + "firstName": "Hieu", + "lastName": "Tran Duc ", + "image": "http://static.lolesports.com/players/1726481508821_VKE_Bie.png", + "role": "support" + }, + { + "id": "107251381045668485", + "summonerName": "Hiro02", + "firstName": "Hau", + "lastName": "Tran Le Trung", + "image": "http://static.lolesports.com/players/1744278969224_TSW_Hiro02.png", + "role": "top" + }, + { + "id": "113661875306288886", + "summonerName": "Dire", + "firstName": "Duy Đức", + "lastName": "Trần", + "image": "http://static.lolesports.com/players/1744279002436_TSW_Dire.png", + "role": "mid" + }, + { + "id": "107251694749147163", + "summonerName": "Eddie", + "firstName": "Công Nghĩa", + "lastName": "Hoàng", + "image": "http://static.lolesports.com/players/1744279037968_TSW_Eddie.png", + "role": "bottom" + }, + { + "id": "113662600335177587", + "summonerName": "Hizto", + "firstName": "Văn Hoàng Hải", + "lastName": "Lê", + "image": "http://static.lolesports.com/players/1744279171863_TSW_Hizto.png", + "role": "jungle" + }, + { + "id": "107251636998679351", + "summonerName": "Pun", + "firstName": "Dang Khoa", + "lastName": "Nguyen", + "image": "http://static.lolesports.com/players/1755157165990_TSW_Pun.png", + "role": "top" + } + ] + }, + { + "id": "113662441994827519", + "slug": "team-agurin", + "name": "Team Agurin", + "code": "AGU", + "image": "http://static.lolesports.com/teams/1734351219746_LOLESPORTSICON.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Prime League", + "region": "EMEA" + }, + "players": [] + }, + { + "id": "113770064260414203", + "slug": "los-ratones", + "name": "Los Ratones", + "code": "LR", + "image": "http://static.lolesports.com/teams/1736206905390_LR1.png", + "alternativeImage": "http://static.lolesports.com/teams/1736206905391_LR1.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "NLC", + "region": "EMEA" + }, + "players": [ + { + "id": "113770053220165987", + "summonerName": "Baus", + "firstName": "Simon", + "lastName": "Hofverberg", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "106371041332804856", + "summonerName": "Velja", + "firstName": "Veljko", + "lastName": "Čamdžić", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "jungle" + }, + { + "id": "101189645215143141", + "summonerName": "Nemesis", + "firstName": "Tim", + "lastName": "Lipovsek", + "image": "http://static.lolesports.com/players/1591900418112_Tim-NEMESIS-Lipovek-1.png", + "role": "mid" + }, + { + "id": "101389749297430422", + "summonerName": "Crownie", + "firstName": "Jus", + "lastName": "Marusic", + "image": "http://static.lolesports.com/players/1693406231950_crownie.png", + "role": "bottom" + }, + { + "id": "98767991761835561", + "summonerName": "Rekkles", + "firstName": "Carl Martin Erik", + "lastName": "Larsson", + "image": "http://static.lolesports.com/players/1718365498748_CL_T1_Rekkles_784.png", + "role": "support" + }, + { + "id": "99322214627752015", + "summonerName": "Caedrel", + "firstName": "Marc", + "lastName": "Lamont", + "image": "http://static.lolesports.com/players/1591900085907_Marc-CAEDREL-Lamont-1.png", + "role": "none" + } + ] + }, + { + "id": "113776188239005729", + "slug": "bulldog-esports", + "name": "Bulldog Esports", + "code": "BDG", + "image": "http://static.lolesports.com/teams/1736206647522_BDG1.png", + "alternativeImage": "http://static.lolesports.com/teams/1736206647522_BDG1.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "NLC", + "region": "EMEA" + }, + "players": [ + { + "id": "105531007000414794", + "summonerName": "HeSSZero", + "firstName": "Paweł", + "lastName": "Karwot", + "image": "http://static.lolesports.com/players/granit-hesszero-lol.png", + "role": "top" + }, + { + "id": "114793859153826827", + "summonerName": "Artanis", + "firstName": "Julien", + "lastName": "Poisson", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "111719526794216132", + "summonerName": "Painful", + "firstName": "Kevin", + "lastName": "Druga", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "114793862309216732", + "summonerName": "DREAM", + "firstName": "Julien", + "lastName": "Jasse", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "107648954401949538", + "summonerName": "Hunt", + "firstName": "Albert Thorving", + "lastName": "Jahn", + "image": "http://static.lolesports.com/players/1642592685746_placeholder.png", + "role": "none" + }, + { + "id": "99322214596031303", + "summonerName": "Kasing", + "firstName": "Raymond ", + "lastName": "Tsang", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/kasing-ayhgq99y.png", + "role": "support" + } + ] + }, + { + "id": "113776191960038156", + "slug": "kaos-esport", + "name": "KAOS Esport", + "code": "KAOS", + "image": "http://static.lolesports.com/teams/1736207008259_KAOS1.png", + "alternativeImage": "http://static.lolesports.com/teams/1736207008259_KAOS1.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "NLC", + "region": "EMEA" + }, + "players": [ + { + "id": "110461562008601806", + "summonerName": "turtle ", + "firstName": "Jo", + "lastName": "dos Santos", + "image": "http://static.lolesports.com/players/1687001209418_OSC_TURTLE.png", + "role": "none" + }, + { + "id": "103877888896701102", + "summonerName": "Vayu", + "firstName": "Anders ", + "lastName": "Banders", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "107577340228714908", + "summonerName": "Sjakal", + "firstName": "Arman", + "lastName": "Akrawi", + "image": "http://static.lolesports.com/players/1641499938475_placeholder.png", + "role": "jungle" + }, + { + "id": "103877887829316267", + "summonerName": "Reje", + "firstName": "Victor ", + "lastName": "Eriksen", + "image": "https://static.lolesports.com/players/download.png", + "role": "bottom" + }, + { + "id": "114231832898449194", + "summonerName": "Sniller", + "firstName": "Søren ", + "lastName": "Nielsen", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "113786076811755247", + "summonerName": "eskii", + "firstName": "Lie", + "lastName": "Geir", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "none" + }, + { + "id": "106306512827785017", + "summonerName": "Scuffed", + "firstName": "Max ", + "lastName": "Scherer", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "mid" + }, + { + "id": "114834217402646691", + "summonerName": "KOOLBERG", + "firstName": "Håkon ", + "lastName": "Solberg", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "none" + }, + { + "id": "99566405675487777", + "summonerName": "risdrengen", + "firstName": "Michel", + "lastName": "Hoang", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "none" + } + ] + }, + { + "id": "113776196992416527", + "slug": "rich-gang", + "name": "Rich Gang", + "code": "RG", + "image": "http://static.lolesports.com/teams/1736207183533_RG1.png", + "alternativeImage": "http://static.lolesports.com/teams/1736207183533_RG1.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "NLC", + "region": "EMEA" + }, + "players": [ + { + "id": "109704758065825536", + "summonerName": "MATIXX", + "firstName": "MATEUSZ", + "lastName": "DWORAKOWSKI", + "image": "http://static.lolesports.com/players/1673961760773_placeholder.png", + "role": "top" + }, + { + "id": "103495716720387977", + "summonerName": "Oguzkhan", + "firstName": "Oğuzhan", + "lastName": "Delihasanoğlu", + "image": "http://static.lolesports.com/players/Oguzhan.png", + "role": "jungle" + }, + { + "id": "105536902415377888", + "summonerName": "Dehaste", + "firstName": "sven", + "lastName": "vidovic", + "image": "https://static.lolesports.com/players/download.png", + "role": "mid" + }, + { + "id": "105519570521259934", + "summonerName": "Kehvo", + "firstName": "Aleksi", + "lastName": "Merta", + "image": "http://static.lolesports.com/players/1739200015682_ANBKehvo.png", + "role": "bottom" + }, + { + "id": "111759196051033389", + "summonerName": "Alaric", + "firstName": "Erwin", + "lastName": "Cader", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "107893317441400657", + "summonerName": "Nomi", + "firstName": "Noman", + "lastName": "Ahmad", + "image": "http://static.lolesports.com/players/1646321362759_placeholder.png", + "role": "bottom" + }, + { + "id": "105536996247844160", + "summonerName": "Krysia", + "firstName": "Krystian", + "lastName": "Dobrzański", + "image": "http://static.lolesports.com/players/1671447481080_placeholder.png", + "role": "none" + } + ] + }, + { + "id": "113786022271737365", + "slug": "bushido-wildcats", + "name": "Bushido Wildcats", + "code": "BW", + "image": "http://static.lolesports.com/teams/1737386061384_BushidoWildcats.png", + "alternativeImage": "http://static.lolesports.com/teams/1737386061384_BushidoWildcats.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "TCL", + "region": "EMEA" + }, + "players": [ + { + "id": "107492099069012459", + "summonerName": "Zest", + "firstName": "Dongmin", + "lastName": "Kim", + "image": "http://static.lolesports.com/players/1717746571137_zest.png", + "role": "top" + }, + { + "id": "105501794903516897", + "summonerName": "Peach", + "firstName": "Mingyu", + "lastName": "Lee", + "image": "http://static.lolesports.com/players/1705026253747_peach.png", + "role": "jungle" + }, + { + "id": "101422616414907159", + "summonerName": "Kofte", + "firstName": "Emre", + "lastName": "Akça", + "image": "http://static.lolesports.com/players/1687252673277_Kfte.png", + "role": "mid" + }, + { + "id": "105548590232560119", + "summonerName": "Scorth", + "firstName": "Sergen", + "lastName": "Eke", + "image": "http://static.lolesports.com/players/1717746797566_scorth.png", + "role": "bottom" + }, + { + "id": "106314033898157500", + "summonerName": "monkaS", + "firstName": "Mehmet Kaan", + "lastName": "SÖNMEZ", + "image": "http://static.lolesports.com/players/eSports_male_NoPlayer.png", + "role": "support" + } + ] + }, + { + "id": "113786186306396031", + "slug": "dung-dynasty", + "name": "CGN Esports", + "code": "CGN", + "image": "http://static.lolesports.com/teams/1745317172148_CGN_White.png", + "alternativeImage": "http://static.lolesports.com/teams/1745317172148_CGN_White.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Prime League", + "region": "EMEA" + }, + "players": [ + { + "id": "105537626853914257", + "summonerName": "Send0o", + "firstName": "Rosendo", + "lastName": "Fuentes Bóveda", + "image": "https://static.lolesports.com/players/download.png", + "role": "top" + }, + { + "id": "102174322056874714", + "summonerName": "Agurin", + "firstName": "Muhammed", + "lastName": "Kocak", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/esg-agurin-7h3gtbfm.png", + "role": "jungle" + }, + { + "id": "107564506334329421", + "summonerName": "Raider", + "firstName": "Fabijan", + "lastName": "Mandarić", + "image": "http://static.lolesports.com/players/1641304103688_placeholder.png", + "role": "top" + }, + { + "id": "113794600254091520", + "summonerName": "Phantasm", + "firstName": "Mike", + "lastName": "Thiele", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "100356567024984269", + "summonerName": "Kirei", + "firstName": "Thomas", + "lastName": "Yuen", + "image": "http://static.lolesports.com/players/S04_KIREI2021_summer.png", + "role": "jungle" + }, + { + "id": "106302016711938578", + "summonerName": "Lucky", + "firstName": "Luca", + "lastName": "Santos Fontinha", + "image": "http://static.lolesports.com/players/tricked-lucky-lol.png", + "role": "support" + }, + { + "id": "107570775396222469", + "summonerName": "Reptile", + "firstName": "Jona", + "lastName": "Fritz", + "image": "http://static.lolesports.com/players/1641399760037_placeholder.png", + "role": "bottom" + }, + { + "id": "103766533311107192", + "summonerName": "Typhoon", + "firstName": "Tayfun", + "lastName": "Gümüş", + "image": "http://static.lolesports.com/players/1717746433928_typhoon.png", + "role": "none" + } + ] + }, + { + "id": "113786603780153490", + "slug": "bbl-dark-passage", + "name": "BBL Dark Passage", + "code": "BLDP", + "image": "http://static.lolesports.com/teams/1736245775705_BBL-DARK-PASSAGE.png", + "alternativeImage": "http://static.lolesports.com/teams/1736245775706_BBL-DARK-PASSAGE.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "TCL", + "region": "EMEA" + }, + "players": [ + { + "id": "104251865849200240", + "summonerName": "NuQ", + "firstName": "Erkmen", + "lastName": "Erdoğdu", + "image": "http://static.lolesports.com/players/1687252326200_Nuq.png", + "role": "top" + }, + { + "id": "105548539649778137", + "summonerName": "Ersin", + "firstName": "Salim Ersin", + "lastName": "Altıparmak", + "image": "http://static.lolesports.com/players/eSports_male_NoPlayer.png", + "role": "top" + }, + { + "id": "101422616390331107", + "summonerName": "Kireas", + "firstName": "Tunahan", + "lastName": "Kevioğlu", + "image": "http://static.lolesports.com/players/1717747464818_kireas.png", + "role": "jungle" + }, + { + "id": "99566405677872785", + "summonerName": "Ksaez", + "firstName": "Yunus Emre", + "lastName": "Şahin", + "image": "http://static.lolesports.com/players/1676903860148_KSAEZ.png", + "role": "mid" + }, + { + "id": "103495716759395169", + "summonerName": "Neramin", + "firstName": "Hasan", + "lastName": "Samarsın", + "image": "http://static.lolesports.com/players/1655285700259_neramin.png", + "role": "bottom" + }, + { + "id": "105548606962065935", + "summonerName": "Joexy", + "firstName": "Bedirhan", + "lastName": "Kalkan", + "image": "http://static.lolesports.com/players/eSports_male_NoPlayer.png", + "role": "support" + } + ] + }, + { + "id": "113804136566321076", + "slug": "its-team-refuse", + "name": "Its Team Refuse", + "code": "RFSS", + "image": "http://static.lolesports.com/teams/1736513306377_LOLESPORTSICON.png", + "alternativeImage": "http://static.lolesports.com/teams/1736513306377_LOLESPORTSICON.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "Hellenic Legends League", + "region": "EMEA" + }, + "players": [ + { + "id": "107564675440240861", + "summonerName": "Petoska", + "firstName": "Petrus", + "lastName": "Karevaara", + "image": "http://static.lolesports.com/players/1641306688645_placeholder.png", + "role": "top" + }, + { + "id": "108373613137108369", + "summonerName": "Nasut", + "firstName": "Łukasz", + "lastName": "Nasutowicz", + "image": "http://static.lolesports.com/players/1653650096721_placeholder.png", + "role": "jungle" + }, + { + "id": "105521429198907770", + "summonerName": "Ivok", + "firstName": "Romanos", + "lastName": "Kasinopoulos", + "image": "http://static.lolesports.com/players/download.png", + "role": "mid" + }, + { + "id": "105521269454383319", + "summonerName": "CHECKFIDER", + "firstName": "Lukáš", + "lastName": "Nevyjel", + "image": "http://static.lolesports.com/players/1642093697459_placeholder.png", + "role": "bottom" + }, + { + "id": "106346031544282111", + "summonerName": "Leo D Aras", + "firstName": "Christodoulos", + "lastName": "Leontaras", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "support" + }, + { + "id": "105655740244843805", + "summonerName": "Fame", + "firstName": "Basilis", + "lastName": "Amoiridis", + "image": "http://static.lolesports.com/players/1633689643853_silhouette.png", + "role": "none" + } + ] + }, + { + "id": "113810628865782422", + "slug": "ulf-esports", + "name": "ULF ESPORTS", + "code": "ULF", + "image": "http://static.lolesports.com/teams/1748868374823_ULF_ESPORTS_OFFICIAL_LOGO_WHITE.png", + "alternativeImage": "http://static.lolesports.com/teams/1737385630131_UlfEsports.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "TCL", + "region": "EMEA" + }, + "players": [ + { + "id": "113190867426357324", + "summonerName": "Kaboom", + "firstName": "Osman Onur ", + "lastName": "Korkmaz", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "101422616386005719", + "summonerName": "Kaori", + "firstName": "Muhammed Hasan", + "lastName": "Şentürk", + "image": "http://static.lolesports.com/players/1717746366481_kaori.png", + "role": "bottom" + }, + { + "id": "99566406051575530", + "summonerName": "farfetch", + "firstName": "Berk", + "lastName": "Badur", + "image": "http://static.lolesports.com/players/1717747402282_farfetch.png", + "role": "support" + }, + { + "id": "105320663958816293", + "summonerName": "Chasy", + "firstName": "Donghyeon", + "lastName": "Kim", + "image": "http://static.lolesports.com/players/1693403890018_chassy.png", + "role": "top" + }, + { + "id": "101422378834657466", + "summonerName": "Gori", + "firstName": "Taewoo", + "lastName": "Kim", + "image": "http://static.lolesports.com/players/1705751616648_CFOGori.png", + "role": "mid" + }, + { + "id": "105548591683785346", + "summonerName": "Mxe", + "firstName": "Aziz Görkem", + "lastName": "Altınpınar", + "image": "http://static.lolesports.com/players/1705672356455_MXE.png", + "role": "support" + }, + { + "id": "103766533311107192", + "summonerName": "Typhoon", + "firstName": "Tayfun", + "lastName": "Gümüş", + "image": "http://static.lolesports.com/players/1717746433928_typhoon.png", + "role": "jungle" + } + ] + }, + { + "id": "113821139939318065", + "slug": "gmblers-esports", + "name": "GMBLERS Esports", + "code": "GMB", + "image": "http://static.lolesports.com/teams/1737015399075_logo_interno.PNG", + "alternativeImage": "http://static.lolesports.com/teams/1736772754299_logo-GmbLers.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LoL Italian Tournament", + "region": "EMEA" + }, + "players": [ + { + "id": "101422616465227094", + "summonerName": "Doxy", + "firstName": "Rafael", + "lastName": "Adl Zarabi", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/doxy-55jkxl9u.png", + "role": "top" + }, + { + "id": "104738075494511822", + "summonerName": "Guubi", + "firstName": "Frederik", + "lastName": "Mortensen", + "image": "http://static.lolesports.com/players/riddle-gubbi-lol.png", + "role": "support" + }, + { + "id": "108370564349293151", + "summonerName": "Taba", + "firstName": "Stefano", + "lastName": "Tabarelli de Fatis", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "bottom" + }, + { + "id": "114794735804036694", + "summonerName": "atatt", + "firstName": "Ata", + "lastName": "Bilici", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "108443041010438151", + "summonerName": "CREM", + "firstName": "Tunalı", + "lastName": "Ozan ", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "bottom" + }, + { + "id": "113870960810724680", + "summonerName": "FSZ", + "firstName": "Simar", + "lastName": "Nashidov", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "100431900444246484", + "summonerName": "Kikis", + "firstName": "Mateusz", + "lastName": "Szkudlarek", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/kikis-h8mrn9s9.png", + "role": "jungle" + }, + { + "id": "110494154050132134", + "summonerName": "Bambi7", + "firstName": "Arseniy", + "lastName": "Yaburov", + "image": "http://static.lolesports.com/players/1686006986864_silhouette_transparent.png", + "role": "top" + } + ] + }, + { + "id": "113833755477378594", + "slug": "kiedy-miaem-fun", + "name": "StormMedia FMS", + "code": "FMS", + "image": "http://static.lolesports.com/teams/1752041191754_FMS.png", + "alternativeImage": "http://static.lolesports.com/teams/1748861469526_FMS.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Rift Legends", + "region": "EMEA" + }, + "players": [ + { + "id": "107156512664982378", + "summonerName": "Mrozku", + "firstName": "Adrian", + "lastName": "Skonieczny", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "109540038699612130", + "summonerName": "frajgo", + "firstName": "Krzysztof", + "lastName": "Chibowski", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "107599518219490930", + "summonerName": "Rybson", + "firstName": "Artur", + "lastName": "Gębicz", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "105530890333827391", + "summonerName": "zamulek", + "firstName": "Dominik", + "lastName": "Biela", + "image": "http://static.lolesports.com/players/1674834619291_NNO_ZAMULEK.png", + "role": "bottom" + }, + { + "id": "106302540732814072", + "summonerName": "minemaciek", + "firstName": "Maciej", + "lastName": "Wicher", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "113985231377071905", + "summonerName": "Masuyo", + "firstName": "Filip", + "lastName": "Kulon", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "none" + }, + { + "id": "101389749296185236", + "summonerName": "Selfmade", + "firstName": "Oskar", + "lastName": "Boderek", + "image": "http://static.lolesports.com/players/1642003900086_selfmade.png", + "role": "none" + } + ] + }, + { + "id": "113843157385138436", + "slug": "saigon-hyper-vortex-esports", + "name": "Saigon Hyper Vortex Esports", + "code": "HVE", + "image": "http://static.lolesports.com/teams/1737114615996_HyperVortex_Logo.png", + "alternativeImage": "http://static.lolesports.com/teams/1737114615997_HyperVortex_Logo.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "VCS", + "region": "VIETNAM" + }, + "players": [ + { + "id": "110528442384858640", + "summonerName": "Sparda", + "firstName": "Vo Anh Hoang", + "lastName": "Nguyen", + "image": "http://static.lolesports.com/players/1695367984382_TW_Sparda.png", + "role": "top" + }, + { + "id": "108443043135317375", + "summonerName": "POUT", + "firstName": "In-woong", + "lastName": "Han ", + "image": "http://static.lolesports.com/players/1718365866377_CL_KT_Pout_784.png", + "role": "mid" + }, + { + "id": "107255597014392378", + "summonerName": "Aomine", + "firstName": "Tuan", + "lastName": "Huynh Thiec ", + "image": "https://static.lolesports.com/players/download.png", + "role": "bottom" + }, + { + "id": "107251574398720447", + "summonerName": "Bie", + "firstName": "Hieu", + "lastName": "Tran Duc ", + "image": "http://static.lolesports.com/players/1726481508821_VKE_Bie.png", + "role": "support" + }, + { + "id": "107251584946921445", + "summonerName": "Tomrio", + "firstName": "Khoa", + "lastName": "To", + "image": "http://static.lolesports.com/players/1726481512973_VKE_TomRio.png", + "role": "none" + }, + { + "id": "107251418493463209", + "summonerName": "Vin", + "firstName": "Hoai Vinh", + "lastName": "Tran", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "mid" + } + ] + }, + { + "id": "113843163628949793", + "slug": "saigon-dino", + "name": "Saigon Dino", + "code": "DINO", + "image": "http://static.lolesports.com/teams/1737108816278_SaigonDino-DINOLogo2025.png", + "alternativeImage": "http://static.lolesports.com/teams/1737108816278_SaigonDino-DINOLogo2025.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "VCS", + "region": "VIETNAM" + }, + "players": [ + { + "id": "111521548512893452", + "summonerName": "Samver", + "firstName": "Lee", + "lastName": "Seungyong", + "image": "http://static.lolesports.com/players/1718365117846_BRO_Samver_784.png", + "role": "bottom" + }, + { + "id": "108443043135317375", + "summonerName": "POUT", + "firstName": "In-woong", + "lastName": "Han ", + "image": "http://static.lolesports.com/players/1718365866377_CL_KT_Pout_784.png", + "role": "mid" + } + ] + }, + { + "id": "113858303977954396", + "slug": "divernex", + "name": "Divernex", + "code": "DVX", + "image": "http://static.lolesports.com/teams/1738240035428_Divernexcervena.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Hitpoint Masters", + "region": "EMEA" + }, + "players": [ + { + "id": "111759190448155890", + "summonerName": "Etoo", + "firstName": "Martin ", + "lastName": "Škrobánek", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "111759191832153371", + "summonerName": "TalentLess", + "firstName": "Jan", + "lastName": "Krajhanzl", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "113858356604026469", + "summonerName": "Josifek04", + "firstName": "Josef", + "lastName": "Král", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "112512751736194307", + "summonerName": "Tropy16", + "firstName": "Lukáš", + "lastName": "Kunart", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "113866776071754724", + "summonerName": "AwerpiS", + "firstName": "Sebastián", + "lastName": "Maslančík", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "support" + } + ] + }, + { + "id": "113858313966567000", + "slug": "nightbirds", + "name": "NightBirds", + "code": "NBS", + "image": "http://static.lolesports.com/teams/1739978270852_NBS_BIG.png", + "alternativeImage": "http://static.lolesports.com/teams/1739088028861_NBS_HUD.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Hitpoint Masters", + "region": "EMEA" + }, + "players": [ + { + "id": "105593284343027952", + "summonerName": "STANIK", + "firstName": "Stanislav", + "lastName": "Hynk", + "image": "http://static.lolesports.com/players/placeholder_.jpg", + "role": "mid" + }, + { + "id": "105519851610889005", + "summonerName": "bobista", + "firstName": "Petr", + "lastName": "Fojtík", + "image": "http://static.lolesports.com/players/placeholder.png", + "role": "top" + }, + { + "id": "109539786056381355", + "summonerName": "adi1", + "firstName": "Adrian", + "lastName": "Jackowski", + "image": "http://static.lolesports.com/players/1671444488389_placeholder.png", + "role": "jungle" + }, + { + "id": "110473373169805235", + "summonerName": "Peto", + "firstName": "Peter", + "lastName": "Kollár", + "image": "http://static.lolesports.com/players/1685689893412_placeholder.png", + "role": "support" + }, + { + "id": "106425032280389677", + "summonerName": "Strode", + "firstName": "Šimon", + "lastName": "Povýšil", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "bottom" + }, + { + "id": "105592952445950837", + "summonerName": "sajator", + "firstName": "Jan", + "lastName": "Zítek", + "image": "http://static.lolesports.com/players/placeholder_.jpg", + "role": "mid" + } + ] + }, + { + "id": "113865087278697690", + "slug": "dynamo-eclot-talents", + "name": "Dynamo Eclot Talents", + "code": "DNET", + "image": "http://static.lolesports.com/teams/1737551157554_Dynamo_Eclot_Logo_Ctverec.png", + "alternativeImage": "http://static.lolesports.com/teams/1737551157554_Dynamo_Eclot_Logo_Ctverec.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Hitpoint Masters", + "region": "EMEA" + }, + "players": [ + { + "id": "110494464037640473", + "summonerName": "0ri", + "firstName": "Adam", + "lastName": "Matěj", + "image": "http://static.lolesports.com/players/1686011716853_silhouette_transparent.png", + "role": "jungle" + }, + { + "id": "108396065890465552", + "summonerName": "Marlley", + "firstName": "Jakub", + "lastName": "Urban", + "image": "http://static.lolesports.com/players/1653992698790_placeholder.png", + "role": "support" + }, + { + "id": "113944342778828592", + "summonerName": "Exoo000", + "firstName": "Ondřej", + "lastName": "Smékal", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "108353513604278434", + "summonerName": "Rias1", + "firstName": "Arkadiusz", + "lastName": "Freda", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "bottom" + }, + { + "id": "111856684657999177", + "summonerName": "Hyper720", + "firstName": "Jakub", + "lastName": "Wojtycki", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "105647903410988313", + "summonerName": "Benda", + "firstName": "Benedikt", + "lastName": "Chmelík", + "image": "http://static.lolesports.com/players/download.png", + "role": "mid" + }, + { + "id": "110706348678583178", + "summonerName": "Shigier", + "firstName": "Dawid", + "lastName": "Golecki", + "image": "http://static.lolesports.com/players/1689244815022_placeholder.png", + "role": "mid" + } + ] + }, + { + "id": "113865091813783262", + "slug": "kiaesuba-academy", + "name": "KIA.eSuba Academy", + "code": "ESBA", + "image": "http://static.lolesports.com/teams/1737532289040_esuba_star_pos.png", + "alternativeImage": "http://static.lolesports.com/teams/1737532289040_esuba_star_pos.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Hitpoint Masters", + "region": "EMEA" + }, + "players": [ + { + "id": "110494139135283337", + "summonerName": "starkyy", + "firstName": "Vojtěch", + "lastName": "Stárek", + "image": "http://static.lolesports.com/players/1686006759381_silhouette_transparent.png", + "role": "top" + }, + { + "id": "111759058431936653", + "summonerName": "WalliR", + "firstName": "Dominik", + "lastName": "Blatný", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "113866819025176827", + "summonerName": "Trila", + "firstName": "Adam", + "lastName": "Boček", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "105647945583757139", + "summonerName": "Knedla", + "firstName": "Štěpán", + "lastName": "Lisa", + "image": "http://static.lolesports.com/players/download.png", + "role": "jungle" + } + ] + }, + { + "id": "113865094505169469", + "slug": "mighty-eagles", + "name": "Mighty Eagles", + "code": "MIE", + "image": "http://static.lolesports.com/teams/1737532218851_Mighty_Eagles1.png", + "alternativeImage": "http://static.lolesports.com/teams/1737532218851_Mighty_Eagles1.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Hitpoint Masters", + "region": "EMEA" + }, + "players": [ + { + "id": "113866860379288977", + "summonerName": "Kocourek", + "firstName": "Sebastián", + "lastName": "Vrzák", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "113866861375588710", + "summonerName": "tomomaso", + "firstName": "Tomáš", + "lastName": "Čejka", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "113866862497021520", + "summonerName": "freaky dao", + "firstName": "Adam", + "lastName": "Salač", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "113866863550073203", + "summonerName": "Kotvyc 74", + "firstName": "Lukáš", + "lastName": "Nohýnek", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "113866866433310295", + "summonerName": "Kappa1", + "firstName": "Pavel", + "lastName": "Fuxa", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "113866868246363740", + "summonerName": "Mouz", + "firstName": "Jakub", + "lastName": "Idrizaj", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "bottom" + } + ] + }, + { + "id": "113865629782947798", + "slug": "jrmungang", + "name": "Jörmungang", + "code": "JMGG", + "image": "http://static.lolesports.com/teams/1737451622401_JMGG_Color_LIGHTDARKBG.png", + "alternativeImage": "http://static.lolesports.com/teams/1737451622401_JMGG_Color_LIGHTDARKBG.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Road of Legends", + "region": "EMEA" + }, + "players": [ + { + "id": "113899525375468260", + "summonerName": "Druust", + "firstName": "Tristan", + "lastName": "MESMAKER", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "113899529021296167", + "summonerName": "Polychiki", + "firstName": "Matteo", + "lastName": "Urvoaz", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "114810588200507959", + "summonerName": "FUSH", + "firstName": "Julien", + "lastName": "Pierrard", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "114810588256475406", + "summonerName": "Janis", + "firstName": "Yanis", + "lastName": "Le Berre", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "109508347809592035", + "summonerName": "Rayming", + "firstName": "Belarbi", + "lastName": "Yassine", + "image": "http://static.lolesports.com/players/1670964778735_placeholder.png", + "role": "bottom" + }, + { + "id": "113899522219516638", + "summonerName": "Axo", + "firstName": "Alexis", + "lastName": "ZANDERS", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "none" + } + ] + }, + { + "id": "113865640133834715", + "slug": "aurora", + "name": "Aurora", + "code": "ARA", + "image": "http://static.lolesports.com/teams/1737451781530_Aurora_Color_LIGHTDARKBG.png", + "alternativeImage": "http://static.lolesports.com/teams/1737451781531_Aurora_Color_LIGHTDARKBG.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Road of Legends", + "region": "EMEA" + }, + "players": [ + { + "id": "113899567752087672", + "summonerName": "Sjedow", + "firstName": "Tom", + "lastName": "Hoekstra", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "105647914067535167", + "summonerName": "Vodin", + "firstName": "Dominik", + "lastName": "Janouch", + "image": "http://static.lolesports.com/players/download.png", + "role": "top" + }, + { + "id": "114810588311722555", + "summonerName": "Mike Moois", + "firstName": "Mike", + "lastName": "Mors", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "109902876452756224", + "summonerName": "Gremy", + "firstName": "Jean-Philippe", + "lastName": "Van Ingh", + "image": "http://static.lolesports.com/players/1676984805414_placeholder.png", + "role": "jungle" + }, + { + "id": "110467151502594537", + "summonerName": "Garank", + "firstName": "Cédric ", + "lastName": "Briglia", + "image": "http://static.lolesports.com/players/1685594961559_placeholder.png", + "role": "support" + }, + { + "id": "113899565522901562", + "summonerName": "Khaydarin", + "firstName": "Jan", + "lastName": "Störmer", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "110462561913944326", + "summonerName": "Ssaiko", + "firstName": "Marcel", + "lastName": "Lin", + "image": "http://static.lolesports.com/players/1685524930812_placeholder.png", + "role": "jungle" + }, + { + "id": "115009075950359141", + "summonerName": "Slix", + "firstName": "Jules", + "lastName": "Pipart", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "115014609385685015", + "summonerName": "Fishue", + "firstName": "Niklas", + "lastName": "Kraft", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "none" + } + ] + }, + { + "id": "113865643197386183", + "slug": "senshi-esports", + "name": "Senshi eSports", + "code": "SNSH", + "image": "http://static.lolesports.com/teams/1737451831210_SNSH_COLOR_LIGHTDARKBG.png", + "alternativeImage": "http://static.lolesports.com/teams/1737451831210_SNSH_COLOR_LIGHTDARKBG.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Road of Legends", + "region": "EMEA" + }, + "players": [ + { + "id": "109630251485149741", + "summonerName": "MaiYuk", + "firstName": "Constantine", + "lastName": "de Jong", + "image": "http://static.lolesports.com/players/1675090999875_Maiyuk.png", + "role": "top" + }, + { + "id": "109630255906979852", + "summonerName": "Pipibaat", + "firstName": "Pascal", + "lastName": "Haygarth", + "image": "http://static.lolesports.com/players/1675091037202_Pipibaat.png", + "role": "jungle" + }, + { + "id": "107560280408973402", + "summonerName": "Pesho", + "firstName": "Nikola", + "lastName": "Peshevski", + "image": "http://static.lolesports.com/players/1641239625508_placeholder.png", + "role": "mid" + }, + { + "id": "108317016234876095", + "summonerName": "choego", + "firstName": "Damian", + "lastName": "Bajor", + "image": "http://static.lolesports.com/players/1652786501327_placeholder.png", + "role": "bottom" + }, + { + "id": "105526530318262327", + "summonerName": "Mahonix", + "firstName": "Anthonie", + "lastName": "van Bemmelen", + "image": "http://static.lolesports.com/players/1675089912286_Mahonix.png", + "role": "support" + } + ] + }, + { + "id": "113865938133432572", + "slug": "kareha-children", + "name": "Kareha Children", + "code": "KCH", + "image": "http://static.lolesports.com/teams/1743585605520_kch_white.png", + "alternativeImage": "http://static.lolesports.com/teams/1743585605520_kch_black.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LJL", + "region": "JAPAN" + }, + "players": [ + { + "id": "113866223586881956", + "summonerName": "Chitan", + "firstName": "Ryusei", + "lastName": "Danno", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "113866223522790045", + "summonerName": "OkerumoN", + "firstName": "Nakahara", + "lastName": "Hitoyoshi", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "113866223377371333", + "summonerName": "Racon", + "firstName": "Ryota", + "lastName": "Kaneko", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "113866223469836951", + "summonerName": "TenT", + "firstName": "Tento", + "lastName": "Yamazaki", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "106611426339595011", + "summonerName": "Yuu", + "firstName": "Yusei", + "lastName": "Suzuki", + "image": "http://static.lolesports.com/players/1627277075593_darkimage_1.png", + "role": "top" + }, + { + "id": "101797095143010796", + "summonerName": "Alleycat", + "firstName": "Masaaki", + "lastName": "Yamaguchi", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/alleycat-8dojxu1c.png", + "role": "mid" + }, + { + "id": "110541205994705138", + "summonerName": "Jericho", + "firstName": "Takefumi", + "lastName": "Kosaka", + "image": "http://static.lolesports.com/players/1686724942368_Dammy.png", + "role": "mid" + } + ] + }, + { + "id": "113865942346215507", + "slug": "reject", + "name": "REJECT", + "code": "RC", + "image": "http://static.lolesports.com/teams/1737456395672_REJECT_2020_lightmode.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LJL", + "region": "JAPAN" + }, + "players": [ + { + "id": "107444134161788861", + "summonerName": "Forest", + "firstName": "HyeonSeo", + "lastName": "Lee", + "image": "http://static.lolesports.com/players/1725885232525_LJL_Portraits_lolesports_SHG_Forest.png", + "role": "jungle" + }, + { + "id": "105576891638502799", + "summonerName": "Kinatu", + "firstName": "Yuto", + "lastName": "Enomoto", + "image": "http://static.lolesports.com/players/1713340413588_LJL_Portraits_lolesports_SG_KINATU.png", + "role": "top" + }, + { + "id": "101797012890540242", + "summonerName": "Raina", + "firstName": "Shin", + "lastName": "Okubo", + "image": "http://static.lolesports.com/players/1674825966208_bc_raina.png", + "role": "support" + }, + { + "id": "101796953887103159", + "summonerName": "Recap", + "firstName": "Norifumi", + "lastName": "Yamazaki", + "image": "http://static.lolesports.com/players/1686138426505_fl_recap.png", + "role": "mid" + }, + { + "id": "103795238846600233", + "summonerName": "VicaL", + "firstName": "Sunmook", + "lastName": "Kim", + "image": "http://static.lolesports.com/players/1592686707999_AK-Vical.png", + "role": "none" + }, + { + "id": "101388913286565299", + "summonerName": "TaNa", + "firstName": "Sanguk", + "lastName": "Lee", + "image": "http://static.lolesports.com/players/1713340465169_LJL_Portraits_lolesports_V3_TANA.png", + "role": "none" + } + ] + }, + { + "id": "113865946379833177", + "slug": "yang-yang-gaming", + "name": "Yang Yang Gaming", + "code": "YYG", + "image": "http://static.lolesports.com/teams/1737982603441_YangYanglogo.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LJL", + "region": "JAPAN" + }, + "players": [ + { + "id": "113866223778975954", + "summonerName": "KING NORWE", + "firstName": "Matthieu", + "lastName": "Sauvage ", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "113866223825170864", + "summonerName": "Ligen", + "firstName": "Shunsuke", + "lastName": "Aoki", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "105577060666560859", + "summonerName": "Kreative", + "firstName": "Riku", + "lastName": "Komuro", + "image": "http://static.lolesports.com/players/bc_kreative.png", + "role": "mid" + }, + { + "id": "106645239169474279", + "summonerName": "NaiNa", + "firstName": "Takumi", + "lastName": "Nakamura", + "image": "http://static.lolesports.com/players/1627277203325_darkimage_1.png", + "role": "bottom" + }, + { + "id": "114868251270093882", + "summonerName": "Blaurosen", + "firstName": "YuQi", + "lastName": "Hong", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "114868253226960037", + "summonerName": "wada1", + "firstName": "Hikaru", + "lastName": "Kiyonaga", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "113866223653029253", + "summonerName": "Taiyaki", + "firstName": "Tojo", + "lastName": "Taishin ", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "106412329213272770", + "summonerName": "chico", + "firstName": "Hibiki", + "lastName": "Yamane", + "image": "http://static.lolesports.com/players/darkimage_1.png", + "role": "bottom" + }, + { + "id": "114533156498368051", + "summonerName": "Tory", + "firstName": "Gi Yeon", + "lastName": "Lee", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "none" + } + ] + }, + { + "id": "113865949879534620", + "slug": "we-can-win", + "name": "We Can Win", + "code": "WIN", + "image": "http://static.lolesports.com/teams/1739961936847_win_white.svg", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LJL", + "region": "JAPAN" + }, + "players": [ + { + "id": "110541320575815956", + "summonerName": "besu", + "firstName": "Takuya", + "lastName": "Takeshima", + "image": "http://static.lolesports.com/players/1686726690515_Dammy.png", + "role": "support" + }, + { + "id": "108594546360347270", + "summonerName": "Senmary", + "firstName": "Shuntaro", + "lastName": "Sekine", + "image": "http://static.lolesports.com/players/1657021260851_image.png", + "role": "top" + }, + { + "id": "107635689777265916", + "summonerName": "Tatsu", + "firstName": "Tomomitsu", + "lastName": "Tanaka", + "image": "http://static.lolesports.com/players/1644905583953_rj_tatsu.png", + "role": "jungle" + }, + { + "id": "106803923143447374", + "summonerName": "Wasteland", + "firstName": "Daiki", + "lastName": "Shimazaki", + "image": "http://static.lolesports.com/players/1629698528869_darkimage_1.png", + "role": "mid" + } + ] + }, + { + "id": "113865957884494887", + "slug": "varrel-youth", + "name": "VARREL YOUTH", + "code": "VLY", + "image": "http://static.lolesports.com/teams/1737456632546_varrel_youtulogo.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LJL", + "region": "JAPAN" + }, + "players": [ + { + "id": "100304322190885781", + "summonerName": "apaMEN", + "firstName": "Ryo", + "lastName": "Odagiri", + "image": "http://static.lolesports.com/players/1695628635490_DFM_apaMEN_face.png", + "role": "none" + }, + { + "id": "113866224005724848", + "summonerName": "Competitive", + "firstName": "Kouji", + "lastName": "Murimura", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "110536777090396446", + "summonerName": "HALdesu", + "firstName": "Haru", + "lastName": "Yamashita", + "image": "http://static.lolesports.com/players/1686657362615_Dammy.png", + "role": "jungle" + }, + { + "id": "113866224064049590", + "summonerName": "kkkkkkkkk", + "firstName": "Kouki", + "lastName": "Ohno", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "113866403721957952", + "summonerName": "OSaKi", + "firstName": " Ryota ", + "lastName": "Ogawa", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "113866436755831901", + "summonerName": "rakii", + "firstName": "Shouta", + "lastName": "Iwasaki", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "114533214738089957", + "summonerName": "Ryo", + "firstName": "PIN", + "lastName": "LYU", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "114539201050416585", + "summonerName": "hachim1", + "firstName": "JIAHHONG", + "lastName": "YE ", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "none" + } + ] + }, + { + "id": "113865964356221234", + "slug": "velocity", + "name": "VeLocitY", + "code": "VEL", + "image": "http://static.lolesports.com/teams/1737456731417_LOLESPORTSICON.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LJL", + "region": "JAPAN" + }, + "players": [ + { + "id": "113866224389894589", + "summonerName": "BEEHIV3", + "firstName": "Ryuji", + "lastName": "Kato", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "113866224459100609", + "summonerName": "fuki", + "firstName": "Fuki", + "lastName": "Fukuhira", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "113882441223632702", + "summonerName": "hanya", + "firstName": "Haya", + "lastName": "Sato", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "113866224268608932", + "summonerName": "Lambda", + "firstName": "Haruki", + "lastName": "Soga", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "113866224328836520", + "summonerName": "Skinny", + "firstName": "Sota", + "lastName": "Kakinuma", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + } + ] + }, + { + "id": "113865967866130562", + "slug": "bravely", + "name": "BraVeLY", + "code": "BVL", + "image": "http://static.lolesports.com/teams/1744180688438_bvl_white.png", + "alternativeImage": "http://static.lolesports.com/teams/1744180688439_bvl_black.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LJL", + "region": "JAPAN" + }, + "players": [ + { + "id": "113866224649635282", + "summonerName": "Fubuki", + "firstName": "Masaki", + "lastName": "Ishizawa", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "113866224532653502", + "summonerName": "MayR", + "firstName": "Kumagai", + "lastName": "Shunsuke", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "113866224714953166", + "summonerName": "uwaaaa", + "firstName": "Ren", + "lastName": "Yoshinaga", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "113866224968467944", + "summonerName": "udon", + "firstName": "Masahiro", + "lastName": "Adachi", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "113866224189624555", + "summonerName": "tetu1", + "firstName": "Tetsuro", + "lastName": "Otsu", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "none" + }, + { + "id": "114267665009945210", + "summonerName": "Fake1", + "firstName": "Hiroki", + "lastName": "Ito", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "none" + } + ] + }, + { + "id": "113865973598828902", + "slug": "velbelikaizokudan", + "name": "VelbeliKaizokudan", + "code": "VK", + "image": "http://static.lolesports.com/teams/1747898770244_vk_full_color_onW.png", + "alternativeImage": "http://static.lolesports.com/teams/1747898770245_vk_full_color_onW.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LJL", + "region": "JAPAN" + }, + "players": [ + { + "id": "106645151801663198", + "summonerName": "Mutton", + "firstName": "Taiga", + "lastName": "Numajiri", + "image": "http://static.lolesports.com/players/1627275870941_darkimage_1.png", + "role": "jungle" + }, + { + "id": "114533262743738274", + "summonerName": "peakey", + "firstName": "Takumi", + "lastName": "Fujisawa", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "none" + }, + { + "id": "113866224598956758", + "summonerName": "Fantasyleaf", + "firstName": "Hikaru", + "lastName": "Sato", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "108611836418092606", + "summonerName": "koisi", + "firstName": "Kodai", + "lastName": "Fukuda", + "image": "http://static.lolesports.com/players/1657285087302_image.png", + "role": "none" + }, + { + "id": "113866225354781166", + "summonerName": "Eria", + "firstName": "Takumi", + "lastName": "Ohashi", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "none" + }, + { + "id": "113866550677735366", + "summonerName": "EMPTY2", + "firstName": "Akito", + "lastName": "Saito", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "113866225022775774", + "summonerName": "Jmicta", + "firstName": "Mikihiro", + "lastName": "Nagato", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "113866225133080837", + "summonerName": "motimotti11", + "firstName": "Souichiro", + "lastName": "Tone", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "113866225295820300", + "summonerName": "noran", + "firstName": "Akira", + "lastName": "Suzuki", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "113882500154404235", + "summonerName": "Sag1rii", + "firstName": "Yudai", + "lastName": "Sase", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "113866224918070755", + "summonerName": "velbellys", + "firstName": "Shunya", + "lastName": "Yamamoto", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "113866225232165622", + "summonerName": "Sag1", + "firstName": "Yudai", + "lastName": "Sase", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "none" + } + ] + }, + { + "id": "113865982224218480", + "slug": "black-dog", + "name": "Black dog", + "code": "BKD", + "image": "http://static.lolesports.com/teams/1737457004297_LOLESPORTSICON.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LJL", + "region": "JAPAN" + }, + "players": [ + { + "id": "113866225460883954", + "summonerName": "anakin", + "firstName": "Haruhisa", + "lastName": "Yamamoto", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "106645246864479024", + "summonerName": "chilioil", + "firstName": "Fuugo", + "lastName": "Koyama", + "image": "http://static.lolesports.com/players/1627277321168_darkimage_1.png", + "role": "bottom" + }, + { + "id": "113866225354781166", + "summonerName": "Eria", + "firstName": "Takumi", + "lastName": "Ohashi", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "113866604541359239", + "summonerName": "Meii", + "firstName": "Akira", + "lastName": "Asaka", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "104308335059794085", + "summonerName": "Rando", + "firstName": "Saeki", + "lastName": "Tada", + "image": "http://static.lolesports.com/players/rj_rando.png", + "role": "top" + }, + { + "id": "113866607028057235", + "summonerName": "razu", + "firstName": "Naruya", + "lastName": "Katahira", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "113866225412854025", + "summonerName": "yokiha", + "firstName": "Yahiko", + "lastName": "Takanashi", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "top" + } + ] + }, + { + "id": "113866177179996309", + "slug": "spirit-quartz-gaming", + "name": "Spirit Quartz Gaming", + "code": "SQG", + "image": "http://static.lolesports.com/teams/1744180796910_sqg_white.png", + "alternativeImage": "http://static.lolesports.com/teams/1744180796910_sqg_black.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LJL", + "region": "JAPAN" + }, + "players": [ + { + "id": "113866225508987382", + "summonerName": "Kenma", + "firstName": "JINGXIU", + "lastName": "LIN", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "110536826999049446", + "summonerName": "Odessa", + "firstName": "IRIYA", + "lastName": "SATOU", + "image": "http://static.lolesports.com/players/1686658124752_Dammy.png", + "role": "bottom" + }, + { + "id": "113866626089748496", + "summonerName": "Saii", + "firstName": "Pung Yi", + "lastName": "Tsui", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "113866225902749216", + "summonerName": "Sassappel", + "firstName": "Rinka", + "lastName": "Kobayakawa", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "105756008040295131", + "summonerName": "popon", + "firstName": "Takumi", + "lastName": "Takamure", + "image": "http://static.lolesports.com/players/1674827589308_fl_popon.png", + "role": "jungle" + } + ] + }, + { + "id": "113866183798490434", + "slug": "clocks", + "name": "Clocks", + "code": "CK", + "image": "http://static.lolesports.com/teams/1743675889772_ck_white.png", + "alternativeImage": "http://static.lolesports.com/teams/1743675889772_ck_black.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LJL", + "region": "JAPAN" + }, + "players": [ + { + "id": "114261408944712616", + "summonerName": "gotae", + "firstName": "Tae-Hun", + "lastName": "Kim", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "none" + }, + { + "id": "110541201911314014", + "summonerName": "Karaage", + "firstName": "Koga", + "lastName": "Kanno", + "image": "http://static.lolesports.com/players/1686724879923_Dammy.png", + "role": "mid" + }, + { + "id": "113866225803047431", + "summonerName": "Damocles", + "firstName": "Jae-hyun", + "lastName": "Park", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "113866225740809748", + "summonerName": "GOMAMUGICH4", + "firstName": "Hironori", + "lastName": "Ohashi", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "113866225663717890", + "summonerName": "Saba", + "firstName": "Hyon", + "lastName": "Songdo", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "113866225556372234", + "summonerName": "ss1", + "firstName": "Ryuma", + "lastName": "Nakanishi", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + } + ] + }, + { + "id": "113866187580029543", + "slug": "night-cap", + "name": "Night Cap", + "code": "NCP", + "image": "http://static.lolesports.com/teams/1738334730247_ncp_full_color_onB.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LJL", + "region": "JAPAN" + }, + "players": [ + { + "id": "113866226083672605", + "summonerName": "Lchallenge", + "firstName": "Kenta", + "lastName": "Shimizu", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "113866226031527466", + "summonerName": "Nangning", + "firstName": "Jo-Hoon", + "lastName": "Han", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "113866225958127141", + "summonerName": "saru", + "firstName": "Jin Woo", + "lastName": "Kwuon", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "bottom" + } + ] + }, + { + "id": "113866194724239987", + "slug": "hands", + "name": "hands", + "code": "HNS", + "image": "http://static.lolesports.com/teams/1738334762820_hns_full_color_onB.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LJL", + "region": "JAPAN" + }, + "players": [ + { + "id": "113866226749190721", + "summonerName": "Bera", + "firstName": "CHIWON", + "lastName": "CHO", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "113866226624680280", + "summonerName": "ekkusu", + "firstName": "Haku", + "lastName": "Okamura", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "113866226797302112", + "summonerName": "Maruko", + "firstName": "Bunsei", + "lastName": "Haku", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "113866226537924171", + "summonerName": "Nakamoto", + "firstName": "Jun", + "lastName": "Takida", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "113866740718097342", + "summonerName": "R1to", + "firstName": "Noriki", + "lastName": "Jin", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "113866226682286428", + "summonerName": "Rumi", + "firstName": "Yutaka", + "lastName": "Inoue", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "114183247835451555", + "summonerName": "phast", + "firstName": "JIHO", + "lastName": "KIM", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "support" + } + ] + }, + { + "id": "113870878882251238", + "slug": "cita-kaizen", + "name": "CITA Kaizen", + "code": "CKZ", + "image": "http://static.lolesports.com/teams/1737531717161_Kaizen_-_white.png", + "alternativeImage": "http://static.lolesports.com/teams/1737532069179_Kaizen_-_white.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Hitpoint Masters", + "region": "EMEA" + }, + "players": [ + { + "id": "107693265148227208", + "summonerName": "Krosak", + "firstName": "Jáchym", + "lastName": "Kroš", + "image": "http://static.lolesports.com/players/1643268814168_placeholder.png", + "role": "top" + }, + { + "id": "107179619958250584", + "summonerName": "Kotva", + "firstName": "Jiří", + "lastName": "Sýkora", + "image": "http://static.lolesports.com/players/1643267678206_placeholder.png", + "role": "support" + }, + { + "id": "112512701009364177", + "summonerName": "Mildorff", + "firstName": "Milan", + "lastName": "Loukota", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "113870924113623358", + "summonerName": "Luca Brassi", + "firstName": "Ondrej", + "lastName": "Babinský", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "113870927202736105", + "summonerName": "Arp", + "firstName": "Daniel", + "lastName": "Szymeczek", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + } + ] + }, + { + "id": "113870887550455067", + "slug": "ethereal-enigmas", + "name": "Ethereal Enigmas", + "code": "EE", + "image": "http://static.lolesports.com/teams/1737531854063_full.png", + "alternativeImage": "http://static.lolesports.com/teams/1737532043173_full.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Hitpoint Masters", + "region": "EMEA" + }, + "players": [ + { + "id": "110648673412784156", + "summonerName": "SLIDE", + "firstName": "Jan", + "lastName": "Toszek", + "image": "http://static.lolesports.com/players/1688364765913_placeholder.png", + "role": "mid" + }, + { + "id": "111759179603201269", + "summonerName": "Saethra", + "firstName": "Marek", + "lastName": "Ferneza", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "113870984920436062", + "summonerName": "Morfan", + "firstName": "Lukáš", + "lastName": "Byrtus", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "113870985921826154", + "summonerName": "Miata", + "firstName": "Patrik", + "lastName": "Kuric", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "113870987195911536", + "summonerName": "Dosty", + "firstName": "Martin", + "lastName": "Dostal", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "113870988329796135", + "summonerName": "Raijin", + "firstName": "Tomáš", + "lastName": "Danko", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "113923600129348496", + "summonerName": "Basraket", + "firstName": "Michal", + "lastName": "Schroller", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "bottom" + } + ] + }, + { + "id": "113871708167519028", + "slug": "detonation-focusme-academy", + "name": "DetonatioN FocusMe Academy", + "code": "DFMA", + "image": "http://static.lolesports.com/teams/1738334806335_dfm_full_color_onB.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LJL", + "region": "JAPAN" + }, + "players": [ + { + "id": "113871785194929078", + "summonerName": "Deant9", + "firstName": "Yunhai", + "lastName": "Lu", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "113871775559768641", + "summonerName": "kurahuto", + "firstName": "Masamune", + "lastName": "Honkawa", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "106304305078654334", + "summonerName": "Momo", + "firstName": "Sora", + "lastName": "Tobita", + "image": "http://static.lolesports.com/players/1755157432572_DFM_Momo.png", + "role": "top" + }, + { + "id": "113871769420481819", + "summonerName": "rre ", + "firstName": "Kodai", + "lastName": "Tamura", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "113871774534668247", + "summonerName": "tobi", + "firstName": "Hiro", + "lastName": "Urata", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "none" + }, + { + "id": "103734698412635497", + "summonerName": "Nesty", + "firstName": "Kai", + "lastName": "Nakamura", + "image": "http://static.lolesports.com/players/1686137852766_sg_nesty.png", + "role": "jungle" + }, + { + "id": "114261471865386294", + "summonerName": "p1ng", + "firstName": "Ippei", + "lastName": "Ariwara", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "none" + } + ] + }, + { + "id": "113872254825776897", + "slug": "my-star", + "name": "my star", + "code": "STAR", + "image": "http://static.lolesports.com/teams/1737647011066_Mystar-logo.png", + "alternativeImage": "http://static.lolesports.com/teams/1737647011066_Mystar-logo.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Rift Legends", + "region": "EMEA" + }, + "players": [ + { + "id": "114869885340983836", + "summonerName": "Balukos", + "firstName": "Luka", + "lastName": "Glisic", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "114869885416452223", + "summonerName": "kory", + "firstName": "Kornél", + "lastName": "Szedlár", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "114869885493513071", + "summonerName": "LakatosD", + "firstName": "Lajos", + "lastName": "Sloboda", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "114869885559939624", + "summonerName": "asphyxia", + "firstName": "Mert", + "lastName": "Akbas", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "114869885648222763", + "summonerName": "Lesterik", + "firstName": "Danijel", + "lastName": "Šego", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "114890701874122949", + "summonerName": "IGli", + "firstName": "Toms", + "lastName": "Pētersons", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "105786916477059553", + "summonerName": "Ruf", + "firstName": "Rolf", + "lastName": "Hein", + "image": "http://static.lolesports.com/players/placeholder.png", + "role": "bottom" + } + ] + }, + { + "id": "113929041264532916", + "slug": "norths-fury", + "name": "NORTHS FURY", + "code": "NF", + "image": "http://static.lolesports.com/teams/1738419206944_nor_c.png", + "alternativeImage": "http://static.lolesports.com/teams/1738419206945_nor_c.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Liga Portuguesa", + "region": "EMEA" + }, + "players": [ + { + "id": "113937126126379774", + "summonerName": "Albino Poro", + "firstName": "Andreia", + "lastName": "Martins", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "113937126259417859", + "summonerName": "Erika", + "firstName": "Erika", + "lastName": "Perpétua", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "113937126198966487", + "summonerName": "LEVIATAN", + "firstName": "Filipe", + "lastName": "Martins", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "113937126328361735", + "summonerName": "Oshii", + "firstName": "Simão", + "lastName": "Cardoso", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "113937126383188195", + "summonerName": "Saibotbias", + "firstName": "João", + "lastName": "Lopes", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "109763225308588065", + "summonerName": "Katquese", + "firstName": "Afonso", + "lastName": "Parreira", + "image": "https://static.lolesports.com/players/download.png", + "role": "mid" + }, + { + "id": "107610020225673259", + "summonerName": "Joao", + "firstName": "João", + "lastName": "Loureiro", + "image": "http://static.lolesports.com/players/1646765465395_Joao.png", + "role": "support" + }, + { + "id": "112456600103399630", + "summonerName": "Surdinz", + "firstName": "Hugo", + "lastName": "Magalhães", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "top" + } + ] + }, + { + "id": "113929052447273240", + "slug": "str1ve-esports", + "name": "Str1ve Esports", + "code": "ST1", + "image": "http://static.lolesports.com/teams/1738419378036_logo_w.png", + "alternativeImage": "http://static.lolesports.com/teams/1738419378036_logo_w.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Liga Portuguesa", + "region": "EMEA" + }, + "players": [ + { + "id": "113937135759096069", + "summonerName": "Juarezz", + "firstName": "Draghici", + "lastName": "Vlad", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "113937135811590409", + "summonerName": "Diogoo", + "firstName": "Diogo", + "lastName": "Ponte", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "113937135898256164", + "summonerName": "PeQReK", + "firstName": "Fausto", + "lastName": "Sequeira", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "113937135976221697", + "summonerName": "Dooma", + "firstName": "Fernando", + "lastName": "Carvalho", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "113937136026029062", + "summonerName": "Definitly", + "firstName": "Horodincă", + "lastName": "Alexandru", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "113937136104010862", + "summonerName": "FREAKYBOB", + "firstName": "Rusu", + "lastName": "Robert", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "113937136157488242", + "summonerName": "Guilty", + "firstName": "Leonardo", + "lastName": "Domingues", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "113937136219748631", + "summonerName": "Shimzu", + "firstName": "Cătălin", + "lastName": "Gheorghițoiu", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "mid" + } + ] + }, + { + "id": "113929067482667409", + "slug": "5m-esports", + "name": "5M Esports", + "code": "5M", + "image": "http://static.lolesports.com/teams/1738419605811_lg_cr.png", + "alternativeImage": "http://static.lolesports.com/teams/1738419605811_lg_cr.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Liga Portuguesa", + "region": "EMEA" + }, + "players": [ + { + "id": "113934662381431825", + "summonerName": "Crop", + "firstName": "Miguel", + "lastName": "Coelho", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "113934662447426581", + "summonerName": "Ratao", + "firstName": "Paulo", + "lastName": "Marques", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "113934662541606685", + "summonerName": "Uroboros", + "firstName": "Martin", + "lastName": "Trčka", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "113934662608846625", + "summonerName": "Profirio", + "firstName": "João", + "lastName": "Rosa", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "113934662658059289", + "summonerName": "Itachi Uchi", + "firstName": "Nuno", + "lastName": "da Costa", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "105837452824279496", + "summonerName": "Theop", + "firstName": "Dinis", + "lastName": "Ramos", + "image": "http://static.lolesports.com/players/placeholder.png", + "role": "jungle" + }, + { + "id": "113934662736729496", + "summonerName": "Azura", + "firstName": "Mikael", + "lastName": "Wikman", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "mid" + } + ] + }, + { + "id": "113929077014093276", + "slug": "crusaders", + "name": "Crusaders", + "code": "CRZ", + "image": "http://static.lolesports.com/teams/1738419752510_ryc_c.png", + "alternativeImage": "http://static.lolesports.com/teams/1738419752511_ryc_c.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Liga Portuguesa", + "region": "EMEA" + }, + "players": [ + { + "id": "114980392356421240", + "summonerName": "Satto", + "firstName": "Samy", + "lastName": "Simonetto", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "105809697888014845", + "summonerName": "Narttaker", + "firstName": "Nuno", + "lastName": "Matias", + "image": "http://static.lolesports.com/players/placeholder_.jpg", + "role": "mid" + }, + { + "id": "113934663092037410", + "summonerName": "NoDu", + "firstName": "Nicklas", + "lastName": "Blomqvist", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "115020378497464810", + "summonerName": "Nord", + "firstName": "Nils ", + "lastName": "Jansson", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "110417287586381074", + "summonerName": "Milkshake", + "firstName": "Philipp", + "lastName": "Keyhani", + "image": "http://static.lolesports.com/players/1684834099129_placeholder.png", + "role": "jungle" + }, + { + "id": "114944882440064507", + "summonerName": "Zeradyn", + "firstName": "José", + "lastName": "de Oliveira", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "114944474329627963", + "summonerName": "Cold Rose", + "firstName": "Alex", + "lastName": "Danks", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "113934662911186336", + "summonerName": "pvm", + "firstName": "Pedro", + "lastName": "Gomes", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "114944474512066830", + "summonerName": "Flashpowa", + "firstName": "Patrick", + "lastName": "Amorim", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "bottom" + } + ] + }, + { + "id": "113939836777041978", + "slug": "berimbados", + "name": "Berimbados", + "code": "BER", + "image": "http://static.lolesports.com/teams/1738583922891_berimbados.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Liga Portuguesa", + "region": "EMEA" + }, + "players": [ + { + "id": "113942721273764255", + "summonerName": "Lunatik", + "firstName": "André", + "lastName": "Matos", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "113942721348392192", + "summonerName": "Besnaga", + "firstName": "David", + "lastName": "Madeira", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "113942721403049220", + "summonerName": "D Francine", + "firstName": "Rafael", + "lastName": "Carvalho", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "113942721453726115", + "summonerName": "Outskale", + "firstName": "Eduardo", + "lastName": "Antunes", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "113942721525361674", + "summonerName": "Cerelac", + "firstName": "Alexandre", + "lastName": "Costa", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "113942721608068110", + "summonerName": "Dumbinho", + "firstName": "João", + "lastName": "Fortunato", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "113942721670322599", + "summonerName": "Berimbau", + "firstName": "Miguel", + "lastName": "Estudante", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "bottom" + } + ] + }, + { + "id": "113951567467163111", + "slug": "talon-academy", + "name": "PSG TALON ACADEMY", + "code": "PSGA", + "image": "http://static.lolesports.com/teams/1753103726428_PSG_TALON_COLOR.png", + "alternativeImage": "http://static.lolesports.com/teams/1753103726429_PSG_TALON_COLOR.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "PCS", + "region": "HONG KONG, MACAU, TAIWAN" + }, + "players": [ + { + "id": "113951650431872578", + "summonerName": "Dotmm", + "firstName": "ZI YU", + "lastName": "CHOU", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "109642948838393879", + "summonerName": "Orca", + "firstName": "GUO", + "lastName": "CHENG-HAN", + "image": "http://static.lolesports.com/players/1705752033156_DCGOrca.png", + "role": "support" + }, + { + "id": "107568623664164633", + "summonerName": "Weizhe", + "firstName": "WEI-ZHE", + "lastName": "LIN", + "image": "https://static.lolesports.com/players/download.png", + "role": "top" + }, + { + "id": "114861710240389269", + "summonerName": "Dinai", + "firstName": "ChihYun", + "lastName": "Hwang", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "110548007844314658", + "summonerName": "Adiogs", + "firstName": "HUANG", + "lastName": "TZU-CHI", + "image": "http://static.lolesports.com/players/1687502993471_HPSAdiogs.png", + "role": "mid" + } + ] + }, + { + "id": "113951569973088490", + "slug": "ctbc-flying-oyster-academy", + "name": "CTBC Flying Oyster Academy", + "code": "CFOA", + "image": "http://static.lolesports.com/teams/1738762962228_1000_CFOA-FlyingOyster.png", + "alternativeImage": "http://static.lolesports.com/teams/1738762962229_1000_CFOA-FlyingOyster.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "PCS", + "region": "HONG KONG, MACAU, TAIWAN" + }, + "players": [ + { + "id": "109642956220472484", + "summonerName": "JokerHan", + "firstName": "HAN SHENG", + "lastName": "HSIEH", + "image": "http://static.lolesports.com/players/1675250197910_CFOJokerHan.png", + "role": "mid" + }, + { + "id": "113951627313594027", + "summonerName": "Zkai", + "firstName": "LI-KAI", + "lastName": "YANG", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "113951627367857839", + "summonerName": "Xin", + "firstName": "SHANG-HSIN", + "lastName": "YEH", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "113951627420090035", + "summonerName": "Cuicuixi", + "firstName": "HONG-LIN", + "lastName": "LIN", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "113951627488570916", + "summonerName": "2274", + "firstName": "CHANG-AN", + "lastName": "CHIU", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "support" + } + ] + }, + { + "id": "113951585305913420", + "slug": "hungkuang-falcon", + "name": "Hungkuang Falcon", + "code": "HKUF", + "image": "http://static.lolesports.com/teams/1738763195874_t88487.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "PCS", + "region": "HONG KONG, MACAU, TAIWAN" + }, + "players": [] + }, + { + "id": "114017780309845102", + "slug": "lenovo-legion-honvd", + "name": "Lenovo Legion Honvéd", + "code": "LLH", + "image": "http://static.lolesports.com/teams/1739773548856_EBL_LLH-FullColorDarkBG1.png", + "alternativeImage": "http://static.lolesports.com/teams/1739773548856_EBL_LLH-FullColorDarkBG1.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Esports Balkan League", + "region": "EMEA" + }, + "players": [ + { + "id": "111776312651478420", + "summonerName": "Bala", + "firstName": "Aron", + "lastName": "Balogh", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "110641779984816687", + "summonerName": "Paresz", + "firstName": "Balint", + "lastName": "Paksai", + "image": "http://static.lolesports.com/players/1688259578192_silhouette_transparent.png", + "role": "jungle" + }, + { + "id": "107065248659785937", + "summonerName": "Lagolinas", + "firstName": "Marton", + "lastName": "Petrucz", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "mid" + }, + { + "id": "111776298064737674", + "summonerName": "Endless", + "firstName": "Bence", + "lastName": "Tóth-Szeles", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "115009350794366792", + "summonerName": "Sh0Fty", + "firstName": "Martin", + "lastName": "Hódos", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "114018037027251237", + "summonerName": "Doma1", + "firstName": "Dominik", + "lastName": "Horvath", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "none" + } + ] + }, + { + "id": "114017791307138678", + "slug": "fantastic-esports", + "name": "Fantastic Esports", + "code": "FES", + "image": "http://static.lolesports.com/teams/1739773425230_EBL_FE-FullColorDarkBG1.png", + "alternativeImage": "http://static.lolesports.com/teams/1739773425231_EBL_FE-FullColorDarkBG1.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Esports Balkan League", + "region": "EMEA" + }, + "players": [ + { + "id": "114018043998947039", + "summonerName": "Danilo", + "firstName": "Deni", + "lastName": "Prtenjača", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "114018045027230785", + "summonerName": "SKTRR", + "firstName": "Roko", + "lastName": "Karatamić", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "105553695849396121", + "summonerName": "DIVA", + "firstName": "Filip", + "lastName": "Dadić", + "image": "http://static.lolesports.com/players/1642165195643_placeholder.png", + "role": "mid" + }, + { + "id": "105553520447120547", + "summonerName": "Paladin", + "firstName": "Ivan", + "lastName": "Delac", + "image": "https://static.lolesports.com/players/download.png", + "role": "bottom" + }, + { + "id": "106302016711938578", + "summonerName": "Lucky", + "firstName": "Luca", + "lastName": "Santos Fontinha", + "image": "http://static.lolesports.com/players/tricked-lucky-lol.png", + "role": "support" + }, + { + "id": "114018049090242276", + "summonerName": "Ryofu", + "firstName": "Toni", + "lastName": "Mamut", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "none" + } + ] + }, + { + "id": "114017802981197435", + "slug": "team-secret-club", + "name": "The Secret Club", + "code": "TSC", + "image": "http://static.lolesports.com/teams/1754902519348_EBL_TSC-MonochromeDarkBG.png", + "alternativeImage": "http://static.lolesports.com/teams/1754902519348_EBL_TSC-MonochromeLightBG.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Esports Balkan League", + "region": "EMEA" + }, + "players": [ + { + "id": "107127290425431751", + "summonerName": "Falleo", + "firstName": "Karlo ", + "lastName": "Kovačić", + "image": "http://static.lolesports.com/players/1634632724649_placeholder.jpg", + "role": "top" + }, + { + "id": "107105611357330390", + "summonerName": "Anonymouss", + "firstName": "Konstantin ", + "lastName": "Kain", + "image": "https://static.lolesports.com/players/download.png", + "role": "jungle" + }, + { + "id": "106306526029050111", + "summonerName": "Fenz1", + "firstName": "Lachezar ", + "lastName": "Iliev", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "mid" + }, + { + "id": "110528392681443123", + "summonerName": "Yuki ", + "firstName": "Lovro ", + "lastName": "Jukić", + "image": "http://static.lolesports.com/players/1686529423206_placeholder.png", + "role": "bottom" + }, + { + "id": "107464201304826572", + "summonerName": "Nio", + "firstName": "Nick", + "lastName": "Kartamyschew", + "image": "http://static.lolesports.com/players/1639773576951_placeholder.png", + "role": "support" + }, + { + "id": "105576916849153487", + "summonerName": "Sintax", + "firstName": "Damir", + "lastName": "Galovac", + "image": "http://static.lolesports.com/players/1642597201671_placeholder.png", + "role": "none" + } + ] + }, + { + "id": "114029502022567838", + "slug": "saigon-cybercore-esports", + "name": "TP.HCM SN CyberCore Esports", + "code": "SCBC", + "image": "http://static.lolesports.com/teams/1739952109504_image11.png", + "alternativeImage": "http://static.lolesports.com/teams/1739952109505_image11.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "VCS", + "region": "VIETNAM" + }, + "players": [ + { + "id": "114562214885517772", + "summonerName": "Leetoan", + "firstName": "Sy Toan", + "lastName": "Le", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + } + ] + }, + { + "id": "114029525770802081", + "slug": "hanoi-rookies-esports", + "name": "Hanoi Rookies Esports", + "code": "HRK", + "image": "http://static.lolesports.com/teams/1739952476212_gdgd.png", + "alternativeImage": "http://static.lolesports.com/teams/1739952476212_gdgd.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "VCS", + "region": "VIETNAM" + }, + "players": [] + }, + { + "id": "114029549329467306", + "slug": "vungtau-never-give-up", + "name": "Vungtau Never Give Up", + "code": "NGU", + "image": "http://static.lolesports.com/teams/1739952836188_sdsd.png", + "alternativeImage": "http://static.lolesports.com/teams/1739952836188_sdsd.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "VCS", + "region": "VIETNAM" + }, + "players": [] + }, + { + "id": "114029558696285101", + "slug": "saigon-silent-storm-esports", + "name": "Saigon Silent Storm Esports", + "code": "SSE", + "image": "http://static.lolesports.com/teams/1739952979628_ssd.png", + "alternativeImage": "http://static.lolesports.com/teams/1739952979629_ssd.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "VCS", + "region": "VIETNAM" + }, + "players": [] + }, + { + "id": "114058334177574653", + "slug": "luminosity-gaming-lg", + "name": "Luminosity Gaming", + "code": "LG", + "image": "http://static.lolesports.com/teams/1742289257527_LG-Eye-Color.png", + "alternativeImage": "http://static.lolesports.com/teams/1742289257527_LG-Eye-Color.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "NACL", + "region": "NORTH AMERICA" + }, + "players": [ + { + "id": "101383793881527569", + "summonerName": "FakeGod", + "firstName": "Aaron", + "lastName": "Lee", + "image": "http://static.lolesports.com/players/1674831444497_C9_FAKEGOD.png", + "role": "top" + }, + { + "id": "105913341225643811", + "summonerName": "Tomio", + "firstName": "Tomio", + "lastName": "Chan", + "image": "http://static.lolesports.com/players/1674831513565_C9_TOMIO.png", + "role": "jungle" + }, + { + "id": "98926509877984406", + "summonerName": "Insanity", + "firstName": "David", + "lastName": "Challe", + "image": "http://static.lolesports.com/players/1687315778140_TSM_INSANITY.png", + "role": "mid" + }, + { + "id": "101383793877071109", + "summonerName": "Tactical", + "firstName": "Edward", + "lastName": "Ra", + "image": "http://static.lolesports.com/players/1674833868099_IMT_TACTICAL.png", + "role": "bottom" + }, + { + "id": "98926509843809391", + "summonerName": "Zeyzal", + "firstName": "Tristan", + "lastName": "Stidam", + "image": "http://static.lolesports.com/players/1674831529697_C9_ZEYZAL.png", + "role": "support" + }, + { + "id": "101383793878119688", + "summonerName": "Soligo", + "firstName": "Max", + "lastName": "Soong", + "image": "http://static.lolesports.com/players/1655453113857_SOLIGO.png", + "role": "mid" + } + ] + }, + { + "id": "114058336963271669", + "slug": "pulse-star", + "name": "Pulse Star", + "code": "PLS", + "image": "http://static.lolesports.com/teams/1742289311914_LogoMainPinkFullColorLightDarkBG.png", + "alternativeImage": "http://static.lolesports.com/teams/1742289311915_LogoMainPinkFullColorLightDarkBG.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "NACL", + "region": "NORTH AMERICA" + }, + "players": [ + { + "id": "114203481597883234", + "summonerName": "DrCalculus", + "firstName": "Derek", + "lastName": "Yuan", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "114203481716634470", + "summonerName": "Aadam", + "firstName": "Aadam", + "lastName": "Durgahed", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "114203481847689066", + "summonerName": "Tubs", + "firstName": "Ivan", + "lastName": "Guan", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "support" + } + ] + }, + { + "id": "114148623959237019", + "slug": "corinthians-esports", + "name": "Corinthians E-Sports", + "code": "SCCP", + "image": "http://static.lolesports.com/teams/1741769767384_LogoFundoEscuro.png", + "alternativeImage": "http://static.lolesports.com/teams/1741769767384_LogoFundoEscuro.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Circuito Desafiante", + "region": "BRAZIL" + }, + "players": [ + { + "id": "103478281338008082", + "summonerName": "tyrin", + "firstName": "William", + "lastName": "Portugal", + "image": "http://static.lolesports.com/players/1717438703246_Tyrin.png", + "role": "bottom" + }, + { + "id": "111734812658909287", + "summonerName": "konseki", + "firstName": "Ighor ", + "lastName": "Treiss", + "image": "http://static.lolesports.com/players/1717435288882_Konseki.png", + "role": "support" + }, + { + "id": "107560281476330464", + "summonerName": "Leleko", + "firstName": "Leandro", + "lastName": "Hideki", + "image": "http://static.lolesports.com/players/1717081511581_Leleko.png", + "role": "mid" + }, + { + "id": "112489397428558238", + "summonerName": "zekas", + "firstName": "Cesar", + "lastName": "França", + "image": "http://static.lolesports.com/players/1717437613824_Zekas.png", + "role": "top" + }, + { + "id": "102135522495654949", + "summonerName": "Mewkyo", + "firstName": "Mateus", + "lastName": "Ferraz", + "image": "http://static.lolesports.com/players/1717438125885_Mewkyo.png", + "role": "jungle" + }, + { + "id": "103980682928812378", + "summonerName": "Aithusa", + "firstName": "Lucas", + "lastName": "Mantese", + "image": "http://static.lolesports.com/players/1717427205584_Aithusa.png", + "role": "mid" + }, + { + "id": "107560148944019348", + "summonerName": "Celo", + "firstName": "Marcelo", + "lastName": "Ferreira", + "image": "http://static.lolesports.com/players/1705516074476_Celo-1copy.png", + "role": "bottom" + }, + { + "id": "105397238669368241", + "summonerName": "Cavalo", + "firstName": "Alexandre", + "lastName": "Fernandes", + "image": "http://static.lolesports.com/players/1717083285117_Cavalo.png", + "role": "support" + } + ] + }, + { + "id": "114148673565223449", + "slug": "dopamina-esport", + "name": "Dopamina E-Sport", + "code": "DPM", + "image": "http://static.lolesports.com/teams/1741770527047_dopamina5.png", + "alternativeImage": "http://static.lolesports.com/teams/1741770527047_dopamina5.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Circuito Desafiante", + "region": "BRAZIL" + }, + "players": [ + { + "id": "111986481187841424", + "summonerName": "Hakari", + "firstName": "Eron", + "lastName": "Rodrigues", + "image": "http://static.lolesports.com/players/1718065606141_base.png", + "role": "top" + }, + { + "id": "111734785210597442", + "summonerName": "randal", + "firstName": "João", + "lastName": "Gondim", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "110434825372094814", + "summonerName": "Peco", + "firstName": "Bernardo", + "lastName": "Reis", + "image": "http://static.lolesports.com/players/1717436700441_Peco.png", + "role": "mid" + }, + { + "id": "109518712216515937", + "summonerName": "Gru", + "firstName": "Pedro", + "lastName": "Nunes", + "image": "http://static.lolesports.com/players/1686346194044_Gru.png", + "role": "bottom" + }, + { + "id": "114148988325728367", + "summonerName": "Bulas", + "firstName": "Lucas", + "lastName": "Adriel", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "support" + } + ] + }, + { + "id": "114148730209204377", + "slug": "ratz", + "name": "Alpha7", + "code": "A7", + "image": "http://static.lolesports.com/teams/1752504768051_600px-A7_eSports_darkmode.png", + "alternativeImage": "http://static.lolesports.com/teams/1752504768051_600px-A7_eSports_darkmode.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Circuito Desafiante", + "region": "BRAZIL" + }, + "players": [ + { + "id": "104275744442588539", + "summonerName": "Kiari", + "firstName": "Thiago", + "lastName": "Campos", + "image": "http://static.lolesports.com/players/1717077886669_Kiari.png", + "role": "top" + }, + { + "id": "109519057410044019", + "summonerName": "Drakehero", + "firstName": "Luciano", + "lastName": "Paes", + "image": "http://static.lolesports.com/players/1738736729952_image647.png", + "role": "jungle" + }, + { + "id": "103538643818319398", + "summonerName": "scuro", + "firstName": "Gabriel", + "lastName": "Scuro", + "image": "http://static.lolesports.com/players/1717433112441_Scuro.png", + "role": "bottom" + }, + { + "id": "106276191141062603", + "summonerName": "Telas", + "firstName": "Luis", + "lastName": "Drumond", + "image": "http://static.lolesports.com/players/1717438500900_Telas.png", + "role": "support" + }, + { + "id": "114854312230206502", + "summonerName": "randomgap", + "firstName": "Vinicius", + "lastName": "Souza", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "mid" + } + ] + }, + { + "id": "114148748659161269", + "slug": "stellae-gaming", + "name": "Stellae Gaming", + "code": "STE", + "image": "http://static.lolesports.com/teams/1741771669890_Logo-Stellae-PNG.png", + "alternativeImage": "http://static.lolesports.com/teams/1741771669891_Logo-Stellae-PNG.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Circuito Desafiante", + "region": "BRAZIL" + }, + "players": [ + { + "id": "109518616822460313", + "summonerName": "Forlin", + "firstName": "Leonardo", + "lastName": "Pereira", + "image": "http://static.lolesports.com/players/1717428948328_Forlin.png", + "role": "top" + }, + { + "id": "110524017463360123", + "summonerName": "juny", + "firstName": " Juny ", + "lastName": " Stoupa", + "image": "http://static.lolesports.com/players/1686462669265_placeholder.png", + "role": "jungle" + }, + { + "id": "101383793127111259", + "summonerName": "Krastyel", + "firstName": "Marcos", + "lastName": "Ferraz", + "image": "http://static.lolesports.com/players/1717433429022_Krastyel.png", + "role": "mid" + }, + { + "id": "99566407755112964", + "summonerName": "Matsukaze", + "firstName": "Pedro", + "lastName": "Gama", + "image": "http://static.lolesports.com/players/1654462385736_Matsukazecopy.png", + "role": "bottom" + }, + { + "id": "100131638325986835", + "summonerName": "Wos", + "firstName": "Willyan", + "lastName": "Bonpam", + "image": "http://static.lolesports.com/players/1686347876803_Wos.png", + "role": "support" + } + ] + }, + { + "id": "114177880515757163", + "slug": "colossal-gaming", + "name": "Colossal Gaming", + "code": "CG", + "image": "http://static.lolesports.com/teams/1742216184064_Logomark-FullcolourfordarkBG.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LoL Italian Tournament", + "region": "EMEA" + }, + "players": [ + { + "id": "114794627587113872", + "summonerName": "Fratellin", + "firstName": "Federico", + "lastName": "Zucconelli", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "107931091515325927", + "summonerName": "Ryujin", + "firstName": "Francesco", + "lastName": "Nordio", + "image": "http://static.lolesports.com/players/1646897755123_placeholder.png", + "role": "jungle" + }, + { + "id": "114794629575030226", + "summonerName": "Budino", + "firstName": "Edoardo Leon", + "lastName": "Farina", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "110412405363383184", + "summonerName": "Mietek", + "firstName": "Nikolas", + "lastName": "Nowak", + "image": "http://static.lolesports.com/players/1684759600358_placeholder.png", + "role": "top" + }, + { + "id": "109749514458380066", + "summonerName": "Tyrone", + "firstName": "Achille", + "lastName": "Matrone", + "image": "http://static.lolesports.com/players/1674644692661_placeholder.png", + "role": "bottom" + }, + { + "id": "110428377116620637", + "summonerName": "Seneca", + "firstName": "Simon", + "lastName": "Bucht", + "image": "http://static.lolesports.com/players/1685003316529_placeholder.png", + "role": "support" + }, + { + "id": "107648411781760623", + "summonerName": "Vigil", + "firstName": "Matteo Ugo", + "lastName": "Scarcelli", + "image": "http://static.lolesports.com/players/1642584405077_placeholder.png", + "role": "mid" + }, + { + "id": "113837364581339128", + "summonerName": "Jeykup", + "firstName": "Yakup Enes", + "lastName": "Ermişer", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + } + ] + }, + { + "id": "114182731799181244", + "slug": "dark-zero", + "name": "DarkZero Dragonsteel", + "code": "DZ", + "image": "http://static.lolesports.com/teams/1743237714462_templatkalogos.png", + "alternativeImage": "http://static.lolesports.com/teams/1743237714462_image152.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "NACL", + "region": "NORTH AMERICA" + }, + "players": [ + { + "id": "107577679471034957", + "summonerName": "sajed", + "firstName": "Sajed", + "lastName": "Ziade", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "bottom" + }, + { + "id": "106857849933915524", + "summonerName": "Zyko", + "firstName": "Ryan", + "lastName": "Jung", + "image": "http://static.lolesports.com/players/1630521390121_silhouette.png", + "role": "support" + }, + { + "id": "104559243245199489", + "summonerName": "Tenacity", + "firstName": "Milan", + "lastName": "Oleksij", + "image": "http://static.lolesports.com/players/1674831118813_100_TENACITY.png", + "role": "top" + }, + { + "id": "107828128913848160", + "summonerName": "Toasty", + "firstName": "Victor", + "lastName": "Chea", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "mid" + }, + { + "id": "110535834235603720", + "summonerName": "Cryogen", + "firstName": "Michael", + "lastName": "Luu", + "image": "http://static.lolesports.com/players/1686642979840_placeholder.png", + "role": "support" + }, + { + "id": "109783448253640171", + "summonerName": "Kisno", + "firstName": "James", + "lastName": "Woo", + "image": "http://static.lolesports.com/players/1675162478723_placeholder.png", + "role": "jungle" + }, + { + "id": "107599454407284678", + "summonerName": "Keii", + "firstName": "Victor", + "lastName": "Durango García", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "top" + } + ] + }, + { + "id": "114182778276470872", + "slug": "near-airport", + "name": "Near Airport", + "code": "NA", + "image": "http://static.lolesports.com/teams/1742370676898_NearAirport-Logo-White.png", + "alternativeImage": "http://static.lolesports.com/teams/1742370676898_NearAirport-Logo-Dark.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "NACL", + "region": "NORTH AMERICA" + }, + "players": [] + }, + { + "id": "114182873126910017", + "slug": "bloomstorm", + "name": "Bloomstorm", + "code": "BLSS", + "image": "http://static.lolesports.com/teams/1742292370373_LOLESPORTSICON.png", + "alternativeImage": "http://static.lolesports.com/teams/1742292370373_LOLESPORTSICON.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "LJL", + "region": "JAPAN" + }, + "players": [] + }, + { + "id": "114193845679105511", + "slug": "evermeet", + "name": "Evermeet", + "code": "ET", + "image": "http://static.lolesports.com/teams/1742459795303_FULL_COLOR_FOR_DARK_BG2.png", + "alternativeImage": "http://static.lolesports.com/teams/1742459795303_FULL_COLOR_FOR_DARK_BG2.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LRS", + "region": "LATIN AMERICA SOUTH" + }, + "players": [ + { + "id": "107583616743557964", + "summonerName": "Kumew", + "firstName": "Leandro", + "lastName": "Paiano", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "support" + }, + { + "id": "107582138034048303", + "summonerName": "Seeker", + "firstName": "Martin Andrés", + "lastName": "Rueda", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "top" + }, + { + "id": "109859153356671161", + "summonerName": "Camilo", + "firstName": "Camilo", + "lastName": "Nicolau Blanchet", + "image": "http://static.lolesports.com/players/1676317644647_silhouette_transparent.png", + "role": "jungle" + }, + { + "id": "108472068627054702", + "summonerName": "Hitsu", + "firstName": "Benjamín Andrés", + "lastName": "Ávila Cárcamo", + "image": "http://static.lolesports.com/players/1655152413154_silhouette_transparent1.png", + "role": "mid" + }, + { + "id": "107598798680054528", + "summonerName": "Viciun", + "firstName": "Nicolas Andres", + "lastName": "Bravo Canales", + "image": "http://static.lolesports.com/players/1674668248635_EMP.png", + "role": "bottom" + }, + { + "id": "102825747666672570", + "summonerName": "Feitan", + "firstName": "Felipe Ignacio", + "lastName": "Marin Rojas", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/feitan-9nvofzsq.png", + "role": "support" + }, + { + "id": "107598797804852373", + "summonerName": "Daedra", + "firstName": "JOAQUIN", + "lastName": "VIANA", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "mid" + }, + { + "id": "108288450173664387", + "summonerName": "Felopo", + "firstName": "Felipe Andrés", + "lastName": "Lepe Beltrán", + "image": "http://static.lolesports.com/players/1652350617883_placeholder.png", + "role": "top" + } + ] + }, + { + "id": "114193848724168438", + "slug": "sicar-esports", + "name": "SICAR Esports", + "code": "SIC", + "image": "http://static.lolesports.com/teams/1758021192904_assetswhite__Sicar-eSports-isotipo-blanco.png", + "alternativeImage": "http://static.lolesports.com/teams/1742459842591_FULL_COLOR_FOR_LIGHT_BG5.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LRS", + "region": "LATIN AMERICA SOUTH" + }, + "players": [ + { + "id": "104327502738107767", + "summonerName": "Kiefer", + "firstName": "Nicolás", + "lastName": "Rivero", + "image": "http://static.lolesports.com/players/1704992672685_EMP.png", + "role": "mid" + }, + { + "id": "102179902322952953", + "summonerName": "Pancake", + "firstName": "Manuel", + "lastName": "Scala", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "99566408532903766", + "summonerName": "Buggax", + "firstName": "Mateo Alejandro", + "lastName": "Aroztegui Zamora", + "image": "http://static.lolesports.com/players/1718124851652_Buggax.png", + "role": "top" + }, + { + "id": "114839216409691248", + "summonerName": "WXRX", + "firstName": "Fabian Esteban", + "lastName": "Llanos Bernal", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "103658555207094087", + "summonerName": "Shu Hari", + "firstName": "Diego Angel", + "lastName": "Placencia Mora", + "image": "http://static.lolesports.com/players/1674670989525_EMP.png", + "role": "support" + }, + { + "id": "108290672356597504", + "summonerName": "Thoryn", + "firstName": "Joaquin", + "lastName": "Budeguer", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "none" + } + ] + }, + { + "id": "114193855112748797", + "slug": "maze-gaming-esports", + "name": "Farenvehn", + "code": "FVN", + "image": "http://static.lolesports.com/teams/1758021115461_FarenvehnLogo.png", + "alternativeImage": "http://static.lolesports.com/teams/1742459943770_FULL_COLOR_FOR_LIGHT_BG.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LRS", + "region": "LATIN AMERICA SOUTH" + }, + "players": [ + { + "id": "107582138439912755", + "summonerName": "Chordy", + "firstName": "Rodrigo", + "lastName": "Cerrudo", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "mid" + }, + { + "id": "114912847001304639", + "summonerName": "FS", + "firstName": "Lucas Antonio ", + "lastName": "Espindola Valverde", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "100118558665940715", + "summonerName": "Follow", + "firstName": "Ignacio", + "lastName": "Anderson", + "image": "http://static.lolesports.com/players/1643048309772_Follow-3.png", + "role": "none" + }, + { + "id": "107581373077374269", + "summonerName": "Pan", + "firstName": "Luis Andres", + "lastName": "Bonilla Rodriguez", + "image": "http://static.lolesports.com/players/1674669837272_EMP.png", + "role": "top" + }, + { + "id": "107582138342164469", + "summonerName": "KinGi", + "firstName": "Tomas Ignacio", + "lastName": "Bordon", + "image": "http://static.lolesports.com/players/1704993282116_EMP.png", + "role": "jungle" + }, + { + "id": "109676537101291988", + "summonerName": "ianshaka", + "firstName": "Ian Lucas", + "lastName": "Pohl", + "image": "http://static.lolesports.com/players/1673531141793_placeholder.png", + "role": "bottom" + }, + { + "id": "104843445932165305", + "summonerName": "Enga", + "firstName": "Eneas Tomas", + "lastName": "Protti", + "image": "http://static.lolesports.com/players/R7-Enga.png", + "role": "mid" + }, + { + "id": "99566408349093642", + "summonerName": "Shadow", + "firstName": "Facundo", + "lastName": "Cuello", + "image": "http://static.lolesports.com/players/1674669103833_EMP.png", + "role": "support" + } + ] + }, + { + "id": "114193860596475398", + "slug": "seven-dark", + "name": "Seven Dark", + "code": "7D", + "image": "http://static.lolesports.com/teams/1742460027008_11.png", + "alternativeImage": "http://static.lolesports.com/teams/1742460027008_11.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LRS", + "region": "LATIN AMERICA SOUTH" + }, + "players": [ + { + "id": "107598798891307666", + "summonerName": "giankios", + "firstName": "Gianfranco", + "lastName": "Casanova", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "top" + }, + { + "id": "107598800579056307", + "summonerName": "LIL", + "firstName": "Carlos", + "lastName": "Carvallo", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "jungle" + }, + { + "id": "108288429982831038", + "summonerName": "skymind", + "firstName": "Guillermo", + "lastName": "Andía", + "image": "http://static.lolesports.com/players/1652350311257_placeholder.png", + "role": "mid" + }, + { + "id": "107598800114440988", + "summonerName": "Egotistic", + "firstName": "Bastian", + "lastName": "Mancilla", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "bottom" + }, + { + "id": "114839216330580923", + "summonerName": "Maxterium", + "firstName": "Facundo", + "lastName": "Caceres", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "110383372476186075", + "summonerName": "Wolfy", + "firstName": "Valentin", + "lastName": "Vignolo", + "image": "http://static.lolesports.com/players/1684316595223_placeholder.png", + "role": "top" + }, + { + "id": "107598797739184774", + "summonerName": "AMBAN", + "firstName": "Amaro", + "lastName": "López", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "jungle" + } + ] + }, + { + "id": "114194005423479714", + "slug": "odd-esports", + "name": "ODD Esports", + "code": "ODD", + "image": "http://static.lolesports.com/teams/1742462235797_FULL_COLOR_FOR_DARK_BG3.png", + "alternativeImage": "http://static.lolesports.com/teams/1742462235797_FULL_COLOR_FOR_DARK_BG3.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LRN", + "region": "LATIN AMERICA NORTH" + }, + "players": [ + { + "id": "114828304682661573", + "summonerName": "Bbyoan", + "firstName": "JUAN PABLO", + "lastName": "GARCIA PARRA", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "107599451407112110", + "summonerName": "lll", + "firstName": "Juan Pablo", + "lastName": "Ramírez Ramírez", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "support" + }, + { + "id": "114828313056712073", + "summonerName": "Erk", + "firstName": "Erick Abraham ", + "lastName": "Reyes Hidalgo", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "107581405069396736", + "summonerName": "Vares", + "firstName": "Adrián", + "lastName": "Olivares Olivares", + "image": "http://static.lolesports.com/players/1641561959168_placeholder.png", + "role": "mid" + }, + { + "id": "114272171711748454", + "summonerName": "Sweeho", + "firstName": "Jose David ", + "lastName": "Urrieche Vielma", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "107582070323070815", + "summonerName": "Andathy", + "firstName": "Alexis Efraín", + "lastName": "Ríos Bono", + "image": "http://static.lolesports.com/players/1641572106256_placeholder.png", + "role": "jungle" + }, + { + "id": "109631368691612983", + "summonerName": "Solorio", + "firstName": "Solorio Gutierrez", + "lastName": "Jose Manuel", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "bottom" + }, + { + "id": "109631670334422547", + "summonerName": "Tuercas", + "firstName": "Izaguirre Castillo", + "lastName": "Khenmelt Omar", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "top" + }, + { + "id": "112088593716365073", + "summonerName": "Intensitive", + "firstName": "Moisés Alessandro", + "lastName": "Rodríguez Cardona", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "106614349987586968", + "summonerName": "Messi", + "firstName": "Sergio", + "lastName": "Hernandez", + "image": "http://static.lolesports.com/players/1675974915947_placeholder.png", + "role": "none" + }, + { + "id": "114911255269423998", + "summonerName": "Fallo", + "firstName": "Rafael de Jesús", + "lastName": "Ramos Rosas", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "none" + }, + { + "id": "115007331859884989", + "summonerName": "WhiteWolf", + "firstName": "Rafael", + "lastName": "Liera", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "top" + } + ] + }, + { + "id": "114194054687153092", + "slug": "icon-esports", + "name": "Lofty", + "code": "LFT", + "image": "http://static.lolesports.com/teams/1752136984413_LOFTI_CARDS_COLORS-1.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LRN", + "region": "LATIN AMERICA NORTH" + }, + "players": [ + { + "id": "99566404538979273", + "summonerName": "Summit", + "firstName": "Wootae", + "lastName": "Park", + "image": "http://static.lolesports.com/players/1745996322736_templkatka21heads.png", + "role": "top" + }, + { + "id": "99566408542840078", + "summonerName": "SolidSnake", + "firstName": "Diego", + "lastName": "Vallejo", + "image": "http://static.lolesports.com/players/1704992817971_EMP.png", + "role": "jungle" + }, + { + "id": "102825747663199158", + "summonerName": "cody", + "firstName": "Cristian", + "lastName": "Quispe", + "image": "http://static.lolesports.com/players/1737722701112_image620.png", + "role": "mid" + }, + { + "id": "99566404556524630", + "summonerName": "Ghost", + "firstName": "Yongjun", + "lastName": "Jang", + "image": "http://static.lolesports.com/players/1655457270313_NS_Ghost_784x621.png", + "role": "bottom" + }, + { + "id": "107424739201710992", + "summonerName": "Winsome", + "firstName": "Dong Kun", + "lastName": "Kim", + "image": "http://static.lolesports.com/players/1737724147366_image627.png", + "role": "support" + }, + { + "id": "106467867233083165", + "summonerName": "Shintalx", + "firstName": "Alejandro", + "lastName": "Quintanilla", + "image": "http://static.lolesports.com/players/1626803009164_EST-Shintalx-July.png", + "role": "mid" + } + ] + }, + { + "id": "114194060984264362", + "slug": "sdm-tigres", + "name": "SDM Tigres", + "code": "SDM", + "image": "http://static.lolesports.com/teams/1742463079753_FULL_COLOR_FOR_DARK_BG6.png", + "alternativeImage": "http://static.lolesports.com/teams/1742463079753_FULL_COLOR_FOR_DARK_BG6.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LRN", + "region": "LATIN AMERICA NORTH" + }, + "players": [ + { + "id": "106858076227022637", + "summonerName": "Mataz", + "firstName": "Julián Cárdenas", + "lastName": "Sánchez", + "image": "http://static.lolesports.com/players/1704995702870_EMP.png", + "role": "jungle" + }, + { + "id": "109631384602744226", + "summonerName": "Skyy", + "firstName": "Iván", + "lastName": "García Rivera", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "mid" + }, + { + "id": "99566405781756186", + "summonerName": "VirusFx", + "firstName": "Guillermo", + "lastName": "Navarrete", + "image": "http://static.lolesports.com/players/1704994127315_EMP.png", + "role": "bottom" + }, + { + "id": "107599454605465061", + "summonerName": "Ichiwin", + "firstName": "Juan Pablo", + "lastName": "Arcila Rendon", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "support" + }, + { + "id": "107581310368859515", + "summonerName": "Steellar", + "firstName": "Francisco Antonio", + "lastName": "Taba Hueramo", + "image": "http://static.lolesports.com/players/1641560513875_placeholder.png", + "role": "top" + }, + { + "id": "114194780784488199", + "summonerName": "Keptt", + "firstName": "Angel", + "lastName": "Cota", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "108121092749710945", + "summonerName": "Sully", + "firstName": "Mendoza Sanchez", + "lastName": "Saul Josue ", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "mid" + }, + { + "id": "108121092519286357", + "summonerName": "Betatwins", + "firstName": "Betancourt Gómez", + "lastName": "Diego ", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "support" + }, + { + "id": "103658484585697022", + "summonerName": "Jauny", + "firstName": "Jauny", + "lastName": "Vargas Altamirano", + "image": "http://static.lolesports.com/players/1718124727499_Jauny.png", + "role": "top" + }, + { + "id": "114911255080090486", + "summonerName": "Dye", + "firstName": "Gerson Antonio", + "lastName": "Castaño Marin", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "none" + }, + { + "id": "114911255146601860", + "summonerName": "Bichofan", + "firstName": "Miguel", + "lastName": "Villanueva Guzmán", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "none" + }, + { + "id": "114911255199955834", + "summonerName": "LStitch", + "firstName": "Jesús Leonardo", + "lastName": "Gómez Flores", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "none" + }, + { + "id": "99566408543872119", + "summonerName": "Baula", + "firstName": "Alejandro ", + "lastName": "Serrano Rodriguez", + "image": "http://static.lolesports.com/players/1674670565584_EMP.png", + "role": "none" + } + ] + }, + { + "id": "114194110230896602", + "slug": "lyon-gaming-academy", + "name": "Movistar Lyon Academy", + "code": "LYON", + "image": "http://static.lolesports.com/teams/1742463831498_1.png", + "alternativeImage": "http://static.lolesports.com/teams/1742463831499_1.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LRN", + "region": "LATIN AMERICA NORTH" + }, + "players": [ + { + "id": "114911254757860052", + "summonerName": "KTROX", + "firstName": "Kevin Alexander", + "lastName": "Rivera Sarria", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "none" + }, + { + "id": "114911254825567344", + "summonerName": "Retzu", + "firstName": "Ronald Fernando", + "lastName": "Velez Patiño", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "none" + }, + { + "id": "114911254895205756", + "summonerName": "ArkScyther", + "firstName": "Eduardo", + "lastName": "Del Alamo", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "none" + }, + { + "id": "109675194530936744", + "summonerName": "Cristonex", + "firstName": "Juan Carlos", + "lastName": "González Pontón", + "image": "http://static.lolesports.com/players/1673510656947_placeholder.png", + "role": "top" + }, + { + "id": "112462175384377282", + "summonerName": "Kita", + "firstName": "Luca", + "lastName": "Andrade", + "image": "http://static.lolesports.com/players/1717434886845_Kita.png", + "role": "support" + }, + { + "id": "107582082899463359", + "summonerName": "Ganks ", + "firstName": "Franco", + "lastName": "Sanchez Juaregui", + "image": "http://static.lolesports.com/players/1743851412992_ganks.png", + "role": "jungle" + }, + { + "id": "114194678336839375", + "summonerName": "SHAVO", + "firstName": "German", + "lastName": "Loyo Ordaz", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "98767975941793931", + "summonerName": "SEIYA", + "firstName": "Ali", + "lastName": "Bracamontes", + "image": "http://static.lolesports.com/players/1718124954164_Seiya.png", + "role": "mid" + }, + { + "id": "112088601266636574", + "summonerName": "INTIO", + "firstName": "Andres Felipe", + "lastName": "Rodriguez Silva ", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "114194688295905843", + "summonerName": "L1", + "firstName": "Julian Eduardo", + "lastName": "González Montoya", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "114194689463344860", + "summonerName": "GIOMATIC", + "firstName": "Giovanni Piero", + "lastName": "Zorrilla Galarza", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + } + ] + }, + { + "id": "114234986957602557", + "slug": "docisk", + "name": "DOCISK", + "code": "DOC", + "image": "http://static.lolesports.com/teams/1743505234603_LOGOTYP_DOCISK.png", + "alternativeImage": "http://static.lolesports.com/teams/1743505234604_LOGOTYP_DOCISK.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Rift Legends", + "region": "EMEA" + }, + "players": [ + { + "id": "106297412626617936", + "summonerName": "PmK", + "firstName": "Maciej", + "lastName": "Gołębiowski", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "top" + }, + { + "id": "105526914558036114", + "summonerName": "Yuta", + "firstName": "Dawid", + "lastName": "Wyskiel", + "image": "http://static.lolesports.com/players/1657516667695_placeholder.png", + "role": "jungle" + }, + { + "id": "107767921301116613", + "summonerName": "Liivek", + "firstName": "Piotr", + "lastName": "Grinholc", + "image": "http://static.lolesports.com/players/1644407976213_placeholder.png", + "role": "mid" + }, + { + "id": "107637790611143656", + "summonerName": "Kaka", + "firstName": "Kacper", + "lastName": "Bukowski", + "image": "http://static.lolesports.com/players/1642422339879_placeholder.png", + "role": "none" + }, + { + "id": "114262422904467024", + "summonerName": "Sidav", + "firstName": "Sergiusz", + "lastName": "Liberek", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "107599612356122308", + "summonerName": "KoxTroll", + "firstName": "Kacper", + "lastName": "Rumiński", + "image": "http://static.lolesports.com/players/1641839784498_placeholder.png", + "role": "jungle" + }, + { + "id": "108353502872490885", + "summonerName": "Anyone", + "firstName": "Norbert", + "lastName": "Zamojć", + "image": "http://static.lolesports.com/players/1689178433572_placeholder.png", + "role": "bottom" + }, + { + "id": "109659419696460813", + "summonerName": "Huron", + "firstName": "Michał", + "lastName": "Stawiński", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "support" + } + ] + }, + { + "id": "114256489341689300", + "slug": "wangting", + "name": "wangting", + "code": "WT", + "image": "http://static.lolesports.com/teams/1743677704612_logotemplatka321.png", + "alternativeImage": "http://static.lolesports.com/teams/1743677704612_logotemplatka321.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "PCS", + "region": "HONG KONG, MACAU, TAIWAN" + }, + "players": [ + { + "id": "113961852751457622", + "summonerName": "Killer2", + "firstName": "CHENG-YU", + "lastName": "CHANG", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "114273603319979198", + "summonerName": "yukin0", + "firstName": "Zi Chao", + "lastName": "Li", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "114273605229427135", + "summonerName": "xiaomi", + "firstName": "Gang", + "lastName": "Lei", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "114913276290081035", + "summonerName": "JT", + "firstName": "Shi-Hui", + "lastName": "Liang", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "114856117977964605", + "summonerName": "rcg", + "firstName": "Cheng", + "lastName": "Fang", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "109642950588612978", + "summonerName": "RYue", + "firstName": "Ching-Yueh", + "lastName": "Chen", + "image": "http://static.lolesports.com/players/1675253688082_JTRYue.png", + "role": "top" + }, + { + "id": "110548011912550056", + "summonerName": "Prage", + "firstName": "Chung-En", + "lastName": "Chen", + "image": "http://static.lolesports.com/players/1705751150159_HPSPrage.png", + "role": "bottom" + }, + { + "id": "114959088116906907", + "summonerName": "Echo", + "firstName": "Jun", + "lastName": "Liu", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "support" + } + ] + }, + { + "id": "114261349813352435", + "slug": "dream-in-24", + "name": "Dream in 24", + "code": "DM", + "image": "http://static.lolesports.com/teams/1743586000812_dm_white.png", + "alternativeImage": "http://static.lolesports.com/teams/1743586000812_dm_black.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LJL", + "region": "JAPAN" + }, + "players": [ + { + "id": "114261471865386294", + "summonerName": "p1ng", + "firstName": "Ippei", + "lastName": "Ariwara", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "106820458279578238", + "summonerName": "Charley", + "firstName": "Ryugo", + "lastName": "Nishimura", + "image": "http://static.lolesports.com/players/1713340672234_LJL_Portraits_lolesports_BCT_CHARLEY.png", + "role": "support" + }, + { + "id": "108594551246645898", + "summonerName": "Dragonblood", + "firstName": "Zhanhao", + "lastName": "Jin", + "image": "http://static.lolesports.com/players/1657021334939_image.png", + "role": "jungle" + }, + { + "id": "114261476471830578", + "summonerName": "history", + "firstName": "SHENGZHE", + "lastName": "KAN", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "114261481813339095", + "summonerName": "poesy", + "firstName": "YangYI", + "lastName": "Ou", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "none" + }, + { + "id": "98767975933861580", + "summonerName": "Ramune", + "firstName": "Osamu", + "lastName": "Ozawa", + "image": "http://static.lolesports.com/players/sg_ramune.png", + "role": "mid" + }, + { + "id": "114533302767131636", + "summonerName": "StarRanger", + "firstName": "YIGE", + "lastName": "KE", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "none" + } + ] + }, + { + "id": "114261353222878460", + "slug": "deltangaming", + "name": "DeltanGaming", + "code": "DG", + "image": "http://static.lolesports.com/teams/1743585930177_dg_white.png", + "alternativeImage": "http://static.lolesports.com/teams/1743585930177_dg_black.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LJL", + "region": "JAPAN" + }, + "players": [ + { + "id": "114533296736757412", + "summonerName": "Etude", + "firstName": "Inchan", + "lastName": "Baek", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "114533297833778143", + "summonerName": "socceryakyu", + "firstName": "Fuzawa", + "lastName": "Haruto", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "114533298868315825", + "summonerName": "kumuo", + "firstName": "Kazuya", + "lastName": "Fujiwara", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "114261454018752274", + "summonerName": "applepasta", + "firstName": "Kousei", + "lastName": "Hioki", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "114261458083688226", + "summonerName": "suyahime", + "firstName": "Hwang Seong", + "lastName": "JIn", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "114261460108227886", + "summonerName": "W1ng", + "firstName": "Tsubasa", + "lastName": "Kurosawa", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "114261462647615278", + "summonerName": "toraneko", + "firstName": "Keigo", + "lastName": "Miyagawa", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "114267733796666468", + "summonerName": "arthur1", + "firstName": "Satoshi", + "lastName": "Hashidume", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "none" + } + ] + }, + { + "id": "114262082429873654", + "slug": "mvke-academy", + "name": "Saigon MVKE Academy", + "code": "MVKA", + "image": "http://static.lolesports.com/teams/1743501322808_VikingEsports-VKE-Color1Textless.png", + "alternativeImage": "http://static.lolesports.com/teams/1743501322809_VikingEsports-VKE-Color1Textless.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "VCS", + "region": "VIETNAM" + }, + "players": [ + { + "id": "113843576349315832", + "summonerName": "Callian", + "firstName": "Le Cao Tan", + "lastName": "Pham", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "113843564951931327", + "summonerName": "Naviah", + "firstName": "Huu Hai", + "lastName": "Ho", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "115254321997857124", + "summonerName": "Nern", + "firstName": "Nguyen Tan Loc", + "lastName": "Dong", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "113662600266438786", + "summonerName": "Steller", + "firstName": "Quang Bình", + "lastName": "Lê", + "image": "http://static.lolesports.com/players/1744279107896_TSW_Steller.png", + "role": "top" + }, + { + "id": "115254322087856493", + "summonerName": "NPC", + "firstName": "Phan Thanh Nhan", + "lastName": "Bui", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "109828431746365782", + "summonerName": "Harky", + "firstName": "Huu", + "lastName": "Nguyen Van", + "image": "http://static.lolesports.com/players/1675848873983_placeholder.png", + "role": "none" + }, + { + "id": "113628612585554951", + "summonerName": "Chika", + "firstName": "Le Nhan", + "lastName": "Vo", + "image": "http://static.lolesports.com/players/1755157210632_MVKE_Chika.png", + "role": "mid" + } + ] + }, + { + "id": "114334846713532031", + "slug": "nice-try", + "name": "Team High Ground", + "code": "THG", + "image": "http://static.lolesports.com/teams/1753881112745_originallogofullcolor.png", + "alternativeImage": "http://static.lolesports.com/teams/1753881112746_originallogofullcolor.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Liga Portuguesa", + "region": "EMEA" + }, + "players": [ + { + "id": "113196866948165633", + "summonerName": "Phyraxx", + "firstName": "Fabien", + "lastName": "ATLAN", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "114944473905727739", + "summonerName": "Soren2", + "firstName": "Soren", + "lastName": "Pouyadou", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "113196867085151665", + "summonerName": "Aitlade", + "firstName": "Rannou", + "lastName": "Titouan", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "113937126615446599", + "summonerName": "Kwebz", + "firstName": "Thomas", + "lastName": "Costa", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "114944836653665677", + "summonerName": "Alex2", + "firstName": "Carlos", + "lastName": "Alexandre", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "mid" + } + ] + }, + { + "id": "114459771769963509", + "slug": "mental-over-tempo", + "name": "Mental Over Tempo", + "code": "MOT", + "image": "http://static.lolesports.com/teams/1746517509582_LOLESPORTSICON.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Esports Balkan League", + "region": "EMEA" + }, + "players": [ + { + "id": "111760514114005927", + "summonerName": "Hasagi", + "firstName": "Nejc", + "lastName": "Muhič", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "114459873220484124", + "summonerName": "Benny1", + "firstName": "Jiří", + "lastName": "Beneš", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "107603205958689433", + "summonerName": "gtrik", + "firstName": "Rok", + "lastName": "Fišer", + "image": "http://static.lolesports.com/players/1641894617899_placeholder.png", + "role": "mid" + }, + { + "id": "109828346275690829", + "summonerName": "Pinki", + "firstName": "Lazar", + "lastName": "Mitrović", + "image": "http://static.lolesports.com/players/1675847562598_placeholder.png", + "role": "bottom" + }, + { + "id": "105647952132397967", + "summonerName": "Vlaren", + "firstName": "Vladimir", + "lastName": "Vývoda", + "image": "http://static.lolesports.com/players/download.png", + "role": "support" + }, + { + "id": "114018043998947039", + "summonerName": "Danilo", + "firstName": "Deni", + "lastName": "Prtenjača", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "top" + } + ] + }, + { + "id": "114533112685561797", + "slug": "bamboo-juice", + "name": "Bamboo Juice", + "code": "BOO", + "image": "http://static.lolesports.com/teams/1747636800327_boo_white.png", + "alternativeImage": "http://static.lolesports.com/teams/1747636800327_boo_black.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LJL", + "region": "JAPAN" + }, + "players": [ + { + "id": "114533233420002918", + "summonerName": "FuraFura", + "firstName": "Yu", + "lastName": "Sato", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "113866225604868879", + "summonerName": "Razer", + "firstName": "Koji", + "lastName": "Kuwajima", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "110541319032037422", + "summonerName": "Yosida", + "firstName": "Kentaro", + "lastName": "Tanaka", + "image": "http://static.lolesports.com/players/1686726667329_Dammy.png", + "role": "mid" + }, + { + "id": "114261407737427218", + "summonerName": "Snow Panda", + "firstName": "JAYDON LEVI", + "lastName": "KUTRYK ", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "114533242048255861", + "summonerName": "rururu", + "firstName": "Ryusei", + "lastName": "Sakaue", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "114533243344885634", + "summonerName": "Blender", + "firstName": "Zachary Allen", + "lastName": "Gardner ", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "none" + }, + { + "id": "114539000732292461", + "summonerName": "Eve", + "firstName": "Ibuki", + "lastName": "Yoshinari", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "none" + } + ] + }, + { + "id": "114533119626189693", + "slug": "vortex", + "name": "Vortex", + "code": "VT", + "image": "http://static.lolesports.com/teams/1747636710162_vt_white.png", + "alternativeImage": "http://static.lolesports.com/teams/1747636710162_vt_black.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LJL", + "region": "JAPAN" + }, + "players": [ + { + "id": "110536819719244763", + "summonerName": "Perle", + "firstName": "SEIJU", + "lastName": "TAKASU", + "image": "http://static.lolesports.com/players/1686658013173_Dammy.png", + "role": "top" + }, + { + "id": "110536821680082132", + "summonerName": "Tima", + "firstName": "MANATO", + "lastName": "IWAMI", + "image": "http://static.lolesports.com/players/1686658042909_Dammy.png", + "role": "jungle" + }, + { + "id": "114261399345278680", + "summonerName": "Magus", + "firstName": "Masahiro", + "lastName": "Kudo", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "110536825647942004", + "summonerName": "Tele", + "firstName": "KEIHIRO", + "lastName": "TOKUYAMA", + "image": "http://static.lolesports.com/players/1686658103977_Dammy.png", + "role": "bottom" + }, + { + "id": "113866225958127141", + "summonerName": "saru", + "firstName": "Jin Woo", + "lastName": "Kwuon", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "113866226031527466", + "summonerName": "Nangning", + "firstName": "Jo-Hoon", + "lastName": "Han", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "none" + } + ] + }, + { + "id": "114533683041896787", + "slug": "tphcm-mila-gaming", + "name": "TP.HCM Mila Gaming", + "code": "MG", + "image": "http://static.lolesports.com/teams/1747645308500_TPHCM_Mila_Gaming-removebg-preview.png", + "alternativeImage": "http://static.lolesports.com/teams/1747645308500_TPHCM_Mila_Gaming-removebg-preview.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "VCS", + "region": "VIETNAM" + }, + "players": [] + }, + { + "id": "114533696081960143", + "slug": "hanoi-genz-gaming", + "name": "Hanoi Genz Gaming", + "code": "GENZ", + "image": "http://static.lolesports.com/teams/1747645507867_HanoiGenZGaming.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "VCS", + "region": "VIETNAM" + }, + "players": [] + }, + { + "id": "114534038095366924", + "slug": "tphcm-sn-cybercore-esports", + "name": "TP.HCM SN CyberCore Esports", + "code": "SCBA", + "image": "http://static.lolesports.com/teams/1747650721275_LOLESPORTSICON.png", + "alternativeImage": "http://static.lolesports.com/teams/1747650721276_LOLESPORTSICON.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "VCS", + "region": "VIETNAM" + }, + "players": [] + }, + { + "id": "114711185292566604", + "slug": "dragons-esports", + "name": "Dragons Esports", + "code": "DRAG", + "image": "http://static.lolesports.com/teams/1750353775144_drg_c.png", + "alternativeImage": "http://static.lolesports.com/teams/1750353775145_drg_c.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Arabian League", + "region": "EMEA" + }, + "players": [ + { + "id": "110542442009022627", + "summonerName": "Moe", + "firstName": "mo'en", + "lastName": "abed al rahman", + "image": "http://static.lolesports.com/players/1686743804114_placeholder.png", + "role": "support" + }, + { + "id": "101422616412154641", + "summonerName": "StarScreen", + "firstName": "Soner", + "lastName": "Kaya", + "image": "http://static.lolesports.com/players/1705672589672_STARSCREEN.png", + "role": "mid" + }, + { + "id": "107717512866830830", + "summonerName": "Skream", + "firstName": "Youssef", + "lastName": " Abdellatif", + "image": "http://static.lolesports.com/players/1643638803927_placeholder.png", + "role": "jungle" + }, + { + "id": "109696850540756983", + "summonerName": "Iheb", + "firstName": "Iheb", + "lastName": "Arif", + "image": "http://static.lolesports.com/players/1673841100304_silhouette_transparent.png", + "role": "bottom" + }, + { + "id": "108403324388427165", + "summonerName": "Harbo", + "firstName": "Harbo", + "lastName": "Emil", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "top" + } + ] + }, + { + "id": "114711195027507025", + "slug": "fn-esports", + "name": "FN Esports", + "code": "FNE", + "image": "http://static.lolesports.com/teams/1750353923793_fn_c.png", + "alternativeImage": "http://static.lolesports.com/teams/1750353923794_fn_c.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Arabian League", + "region": "EMEA" + }, + "players": [ + { + "id": "107688960045460307", + "summonerName": "kPr", + "firstName": "Maxim", + "lastName": "Grebonos", + "image": "http://static.lolesports.com/players/1644409534247_kPr.png", + "role": "top" + }, + { + "id": "108373134965586966", + "summonerName": "owlonsky", + "firstName": "Dmitry ", + "lastName": "Rusu", + "image": "http://static.lolesports.com/players/1653642802269_placeholder.png", + "role": "jungle" + }, + { + "id": "109817654267972260", + "summonerName": "Deceiving", + "firstName": "Ramy ", + "lastName": "Refaat", + "image": "http://static.lolesports.com/players/1675684424600_placeholder.png", + "role": "mid" + }, + { + "id": "109696925995965022", + "summonerName": "Jalleba", + "firstName": "Alaa", + "lastName": "Dine Jalleb", + "image": "http://static.lolesports.com/players/1673842251940_silhouette_transparent.png", + "role": "bottom" + }, + { + "id": "109696786567812491", + "summonerName": "sas", + "firstName": "Sahal", + "lastName": "Waggass", + "image": "http://static.lolesports.com/players/1673840124305_silhouette_transparent.png", + "role": "support" + } + ] + }, + { + "id": "114746400783941300", + "slug": "citadel-gaming", + "name": "Citadel Gaming", + "code": "CTG", + "image": "http://static.lolesports.com/teams/1750891104102_CitadelGaming.png", + "alternativeImage": "http://static.lolesports.com/teams/1750891104102_CitadelGaming.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "NACL", + "region": "NORTH AMERICA" + }, + "players": [ + { + "id": "101383793882576148", + "summonerName": "Diamond", + "firstName": "David", + "lastName": "Bérubé", + "image": "http://static.lolesports.com/players/1674832074214_DIG_DIAMOND.png", + "role": "support" + }, + { + "id": "114854730289406368", + "summonerName": "Philip", + "firstName": "Phillip", + "lastName": "Zeng", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "104559240068795394", + "summonerName": "Kenvi", + "firstName": "Kenneth", + "lastName": "Espinoza", + "image": "http://static.lolesports.com/players/1674833818989_IMT_KENVI.png", + "role": "jungle" + }, + { + "id": "106857825862018379", + "summonerName": "Bradley", + "firstName": "Bradley", + "lastName": "Benneyworth", + "image": "http://static.lolesports.com/players/1674834050278_TL_BRADLEY.png", + "role": "mid" + }, + { + "id": "106857866205952260", + "summonerName": "Instinct", + "firstName": "Tony", + "lastName": "Ng", + "image": "http://static.lolesports.com/players/1655453946214_INSTINCT.png", + "role": "bottom" + }, + { + "id": "108359201986931573", + "summonerName": "Texas", + "firstName": "Baadsgaard", + "lastName": "Jonathan", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "none" + } + ] + }, + { + "id": "114746414556560778", + "slug": "jolly-rogers", + "name": "Jolly Rogers", + "code": "JR", + "image": "http://static.lolesports.com/teams/1750891311560_JRPNGtransparent.png", + "alternativeImage": "http://static.lolesports.com/teams/1750891311560_JRPNGtransparent.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "NACL", + "region": "NORTH AMERICA" + }, + "players": [] + }, + { + "id": "114746424759893687", + "slug": "dorado-gaming", + "name": "Dorado Gaming", + "code": "DOG", + "image": "http://static.lolesports.com/teams/1750891473240_Dorado_Gaminglogo_square1.png", + "alternativeImage": "http://static.lolesports.com/teams/1750891473240_Dorado_Gaminglogo_square1.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "NACL", + "region": "NORTH AMERICA" + }, + "players": [ + { + "id": "110535933483977187", + "summonerName": "Mixtsure", + "firstName": "Eric", + "lastName": "Yin", + "image": "http://static.lolesports.com/players/1686644494079_placeholder.png", + "role": "support" + }, + { + "id": "114854730217906005", + "summonerName": "Virtuosa", + "firstName": "Skylar", + "lastName": "Hew", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "none" + }, + { + "id": "106857893055620583", + "summonerName": "Cozy", + "firstName": "Sun-woo", + "lastName": "Jung", + "image": "http://static.lolesports.com/players/1630522047767_silhouette.png", + "role": "top" + }, + { + "id": "107828129618884487", + "summonerName": "Munchy", + "firstName": "Janan", + "lastName": "Chen", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "jungle" + }, + { + "id": "105531045249475446", + "summonerName": "Ariana", + "firstName": "Jakub", + "lastName": "Śliwonik", + "image": "http://static.lolesports.com/players/1644831994471_placeholder.png", + "role": "top" + }, + { + "id": "107577675179868602", + "summonerName": "shochi", + "firstName": "Chase", + "lastName": "Capello", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "mid" + }, + { + "id": "114197580274854230", + "summonerName": "Sushee", + "firstName": "Jeremy", + "lastName": "Roussy", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "114854730138682911", + "summonerName": "Kaido", + "firstName": "Siddhant", + "lastName": "Nath", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + } + ] + }, + { + "id": "114787896019712117", + "slug": "golden-lions", + "name": "Golden Lions", + "code": "GLE", + "image": "http://static.lolesports.com/teams/1751524290575_FULL_COLOR_FOR_DARK_BG6.png", + "alternativeImage": "http://static.lolesports.com/teams/1751524290575_FULL_COLOR_FOR_DARK_BG6.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LRS", + "region": "LATIN AMERICA SOUTH" + }, + "players": [ + { + "id": "112091621866843956", + "summonerName": "Nvillada", + "firstName": "Julian", + "lastName": "Villada", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "114194409057606977", + "summonerName": "AlluK", + "firstName": "Tomas", + "lastName": "Cruz", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "109807890482619918", + "summonerName": "Saifer", + "firstName": "Gaston", + "lastName": "Pedalino Vera", + "image": "http://static.lolesports.com/players/1675535435749_silhouette_transparent.png", + "role": "mid" + }, + { + "id": "107648370969609784", + "summonerName": "Strensh", + "firstName": "Cristopher", + "lastName": "Gonzalez", + "image": "http://static.lolesports.com/players/1660238650077_EMP.png", + "role": "bottom" + }, + { + "id": "109716554374057462", + "summonerName": "Shiku", + "firstName": "Carlo Andre", + "lastName": "Carrion Zapata", + "image": "http://static.lolesports.com/players/1674141759030_placeholder.png", + "role": "support" + }, + { + "id": "114878328148585709", + "summonerName": "Xia0", + "firstName": "Carlos ", + "lastName": "Echeverría", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "114923606285920578", + "summonerName": "kentxz", + "firstName": "Diego ", + "lastName": "Cabezas", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "none" + } + ] + }, + { + "id": "114787897914304916", + "slug": "lechuga-gaming", + "name": "Lechuga Gaming", + "code": "LGE", + "image": "http://static.lolesports.com/teams/1751524323553_FULL_COLOR_FOR_DARK_BG8.png", + "alternativeImage": "http://static.lolesports.com/teams/1751524323553_FULL_COLOR_FOR_DARK_BG8.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LRS", + "region": "LATIN AMERICA SOUTH" + }, + "players": [ + { + "id": "114923639911235820", + "summonerName": "mateardovic", + "firstName": "Mateo", + "lastName": "Luzardo", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "114923640011121092", + "summonerName": "Respeta", + "firstName": "Leandro ", + "lastName": "Montanez Terra", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "108288329098239022", + "summonerName": "PyLL", + "firstName": "Bryan Ignacio", + "lastName": "Torres Sasso", + "image": "http://static.lolesports.com/players/1652348771025_placeholder.png", + "role": "support" + }, + { + "id": "108288656257798702", + "summonerName": "LTZeta", + "firstName": "Leonel David", + "lastName": "Dadamia", + "image": "http://static.lolesports.com/players/1652353763912_placeholder.png", + "role": "bottom" + }, + { + "id": "114923640065468790", + "summonerName": "Shordan", + "firstName": "Jordan Andres ", + "lastName": "Rios Hernandez", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "114839215982659300", + "summonerName": "ZZZ", + "firstName": "Tomas ", + "lastName": "Colangelo", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "114839216103844160", + "summonerName": "martote", + "firstName": "Martin Rafael", + "lastName": "Añaña Gomez", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "107598801955574998", + "summonerName": "neadz", + "firstName": "Esteban Fernando", + "lastName": "San Martín Durán", + "image": "http://static.lolesports.com/players/1718125375515_Neadz.png", + "role": "mid" + }, + { + "id": "107576479889276991", + "summonerName": "lyg", + "firstName": "Diego Sebastian", + "lastName": "Ulloa Fuentes", + "image": "http://static.lolesports.com/players/1674670541101_EMP.png", + "role": "bottom" + }, + { + "id": "108288448051739774", + "summonerName": "chilD", + "firstName": "Jairo Natanael Moises", + "lastName": "Fuenzalida Aravena", + "image": "http://static.lolesports.com/players/1652350587082_placeholder.png", + "role": "support" + }, + { + "id": "114839216203056236", + "summonerName": "joelbebo", + "firstName": "Joel", + "lastName": "Pintos Bertolini", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "114872782556274606", + "summonerName": "nicOOOOOO", + "firstName": "Nicolas Ariel ", + "lastName": "Blasi", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "top" + } + ] + }, + { + "id": "114821781274167550", + "slug": "barczca-esports", + "name": "Barcząca Esports", + "code": "BCE", + "image": "http://static.lolesports.com/teams/1752041346581_KSB_LOGO_GLOWNE.png", + "alternativeImage": "http://static.lolesports.com/teams/1752041346581_KSB_LOGO_GLOWNE.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Rift Legends", + "region": "EMEA" + }, + "players": [ + { + "id": "107065250314387793", + "summonerName": "Zora", + "firstName": "Juliusz", + "lastName": "Dan", + "image": "http://static.lolesports.com/players/1633033031951_silhouette.png", + "role": "top" + }, + { + "id": "114869885714772108", + "summonerName": "Mikusik", + "firstName": "Mikołaj", + "lastName": "Cywiński", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "108374047423356452", + "summonerName": "Tenshi", + "firstName": "Patryk", + "lastName": "Zubow", + "image": "http://static.lolesports.com/players/1653656727500_placeholder.png", + "role": "mid" + }, + { + "id": "110412378286498713", + "summonerName": "Antonio", + "firstName": "Kacper", + "lastName": "Klech", + "image": "http://static.lolesports.com/players/1739203134331_GNGAntonio.png", + "role": "bottom" + }, + { + "id": "105655986056748417", + "summonerName": "april", + "firstName": "Jakub", + "lastName": "Kupisz", + "image": "http://static.lolesports.com/players/placeholder.png", + "role": "support" + }, + { + "id": "111698080227807932", + "summonerName": "Blesia", + "firstName": "Marek", + "lastName": "Rafał", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + } + ] + }, + { + "id": "114846765479906613", + "slug": "vancouver-impact", + "name": "Vancouver Impact", + "code": "VI", + "image": "http://static.lolesports.com/teams/1752422565897_viplogo.png", + "alternativeImage": "http://static.lolesports.com/teams/1752422565897_viplogo.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "NACL", + "region": "NORTH AMERICA" + }, + "players": [ + { + "id": "106461746289327750", + "summonerName": "Will", + "firstName": "William", + "lastName": "Cummins", + "image": "http://static.lolesports.com/players/1655452601519_WILL.png", + "role": "jungle" + }, + { + "id": "109783531564397195", + "summonerName": "Nukez", + "firstName": "Tanner", + "lastName": "Waiyanet", + "image": "http://static.lolesports.com/players/1675163749422_placeholder.png", + "role": "support" + }, + { + "id": "109782987645004350", + "summonerName": "Sudzzi", + "firstName": "Cory", + "lastName": "Miller", + "image": "http://static.lolesports.com/players/1675155449338_placeholder.png", + "role": "mid" + }, + { + "id": "105957589636391222", + "summonerName": "Dragoon", + "firstName": "Kishan", + "lastName": "Makati", + "image": "http://static.lolesports.com/players/silhouette.png", + "role": "top" + }, + { + "id": "114854730342883748", + "summonerName": "Zev", + "firstName": "Mark", + "lastName": "Villanueva", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "109981735598201037", + "summonerName": "Shimmer", + "firstName": "Kaan", + "lastName": "Tomak", + "image": "http://static.lolesports.com/players/1678188098044_placeholder.png", + "role": "jungle" + } + ] + }, + { + "id": "114856625791123419", + "slug": "the-forbidden-five", + "name": "The Forbidden Five", + "code": "TFF", + "image": "http://static.lolesports.com/teams/1752573031423_TFF-FullColorforD.png", + "alternativeImage": "http://static.lolesports.com/teams/1752573031423_TFF-FullColorforD.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "TCL", + "region": "EMEA" + }, + "players": [ + { + "id": "103495716729366423", + "summonerName": "Yuros", + "firstName": "Alp Kagan ", + "lastName": "Ercan", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/yuros-8uqflq42.png", + "role": "mid" + }, + { + "id": "114239542030729583", + "summonerName": "Tayron", + "firstName": "Uğurcan ", + "lastName": "Doğan", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "114940435005365748", + "summonerName": "shidolovell", + "firstName": "Ahmet Yiğit", + "lastName": "Yiğiter", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "107605545455706915", + "summonerName": "Kurama Cat", + "firstName": "Eren Alp", + "lastName": "Öğdem", + "image": "http://static.lolesports.com/players/1641930315672_placeholder.png", + "role": "jungle" + }, + { + "id": "111726918105577966", + "summonerName": "helforca", + "firstName": "Taha Enes", + "lastName": "Ayık", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "111182040786457619", + "summonerName": "Kakarot1", + "firstName": "MUHAMMET YUSUF", + "lastName": "KARAKAS", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "111726908612425052", + "summonerName": "hidududu", + "firstName": "Muhammed Enes", + "lastName": "Şen", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "112438370937441327", + "summonerName": "Six0x", + "firstName": "Ahmet Can", + "lastName": "Demir", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "106314065943471432", + "summonerName": "Paixdia", + "firstName": "Taha Barıs", + "lastName": "Elmas", + "image": "http://static.lolesports.com/players/1717746395914_paixdia.png", + "role": "support" + } + ] + }, + { + "id": "114868016111590239", + "slug": "natus-vincere", + "name": "Natus Vincere", + "code": "NAVI", + "image": "http://static.lolesports.com/teams/1752746833620_NAVI_FullColor.png", + "alternativeImage": "http://static.lolesports.com/teams/1752746833620_NAVI_FullColor.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LEC", + "region": "EMEA" + }, + "players": [ + { + "id": "105700869624784693", + "summonerName": "Maynter", + "firstName": "Volodymyr", + "lastName": "Sorokin", + "image": "http://static.lolesports.com/players/1644587885330_14.png", + "role": "top" + }, + { + "id": "105548731617719496", + "summonerName": "Rhilech", + "firstName": "Enes", + "lastName": "Uçan", + "image": "http://static.lolesports.com/players/eSports_male_NoPlayer.png", + "role": "jungle" + }, + { + "id": "107840393299826151", + "summonerName": "Poby", + "firstName": "Sungwon", + "lastName": "Yoon", + "image": "http://static.lolesports.com/players/1754469779733_image6325.png", + "role": "mid" + }, + { + "id": "103805069759346933", + "summonerName": "Parus", + "firstName": "Polat Furkan", + "lastName": "Çiçek", + "image": "http://static.lolesports.com/players/1754469415091_image6324.png", + "role": "support" + }, + { + "id": "100482247959137902", + "summonerName": "Larssen", + "firstName": "Emil", + "lastName": "Larsson", + "image": "http://static.lolesports.com/players/1754473073908_image6331.png", + "role": "mid" + }, + { + "id": "104287359934240404", + "summonerName": "SamD", + "firstName": "Jaehoon", + "lastName": "Lee", + "image": "http://static.lolesports.com/players/1754472767506_image6221.png", + "role": "bottom" + } + ] + }, + { + "id": "114889961398783362", + "slug": "echamp-gaming", + "name": "E-Champ Gaming", + "code": "ECG", + "image": "http://static.lolesports.com/teams/1753081701302_E-Champ-LogoOficialBranco.png", + "alternativeImage": "http://static.lolesports.com/teams/1753081701302_E-Champ-LogoOficialAzul.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Circuito Desafiante", + "region": "BRAZIL" + }, + "players": [ + { + "id": "108395441676362288", + "summonerName": "anato", + "firstName": "Kevin ", + "lastName": "Silva", + "image": "http://static.lolesports.com/players/1717437502326_Anato.png", + "role": "jungle" + }, + { + "id": "111986481187841424", + "summonerName": "Hakari", + "firstName": "Eron", + "lastName": "Rodrigues", + "image": "http://static.lolesports.com/players/1718065606141_base.png", + "role": "top" + }, + { + "id": "111734785210597442", + "summonerName": "randal", + "firstName": "João", + "lastName": "Gondim", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "110434825372094814", + "summonerName": "Peco", + "firstName": "Bernardo", + "lastName": "Reis", + "image": "http://static.lolesports.com/players/1717436700441_Peco.png", + "role": "mid" + }, + { + "id": "109518712216515937", + "summonerName": "Gru", + "firstName": "Pedro", + "lastName": "Nunes", + "image": "http://static.lolesports.com/players/1686346194044_Gru.png", + "role": "bottom" + }, + { + "id": "114148988325728367", + "summonerName": "Bulas", + "firstName": "Lucas", + "lastName": "Adriel", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "support" + } + ] + }, + { + "id": "114942358000755719", + "slug": "diver", + "name": "Diver", + "code": "DIV", + "image": "http://static.lolesports.com/teams/1753881209352_Logo_2000dpi.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Liga Portuguesa", + "region": "EMEA" + }, + "players": [ + { + "id": "114944893908161928", + "summonerName": "Chambel", + "firstName": "Rafael", + "lastName": "Amaral", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "114944474607831839", + "summonerName": "Leitinho", + "firstName": "Jaime", + "lastName": "Pires", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "114944900702129696", + "summonerName": "Pro Hanter", + "firstName": "Afonso", + "lastName": "Monteiro", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "114944474672171291", + "summonerName": "spoint", + "firstName": "José ", + "lastName": "Campos", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "114944902587487637", + "summonerName": "MinetasJR", + "firstName": "Eduardo", + "lastName": "Castilho", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "114944474733971743", + "summonerName": "pdr", + "firstName": "Pedro", + "lastName": "Ramos", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "114969585063362944", + "summonerName": "Barata", + "firstName": "Rodrigo", + "lastName": "Barata", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "bottom" + } + ] + }, + { + "id": "114942361342370826", + "slug": "papo-secos", + "name": "Papo Secos", + "code": "PPS", + "image": "http://static.lolesports.com/teams/1753881259426_LOGOLPLOL.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Liga Portuguesa", + "region": "EMEA" + }, + "players": [ + { + "id": "114944953581079915", + "summonerName": "Kirin", + "firstName": "Diogo", + "lastName": "Cordeiro", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "114944475181337412", + "summonerName": "BMCB", + "firstName": "Bruno", + "lastName": "Brum", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "114944955513671028", + "summonerName": "SLynx", + "firstName": "João", + "lastName": "Dias", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "114944475242072399", + "summonerName": "Lostboy", + "firstName": "André", + "lastName": "Tavares", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "114944475312668016", + "summonerName": "Streak", + "firstName": "Nuno ", + "lastName": "Silva", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "114944475379452752", + "summonerName": "Pasxalis", + "firstName": "Roberto ", + "lastName": "Silva", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + } + ] + }, + { + "id": "114942367128544269", + "slug": "evolve-esports", + "name": "Evolve eSports", + "code": "EVO", + "image": "http://static.lolesports.com/teams/1753881348241_PNGLOGOEVO.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Liga Portuguesa", + "region": "EMEA" + }, + "players": [ + { + "id": "114944914172202554", + "summonerName": "Kryzen7", + "firstName": "Carlos", + "lastName": "Ferreira", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "114944922130890879", + "summonerName": "Ghost3", + "firstName": "Guilherme", + "lastName": "Mendes", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "113937126518520048", + "summonerName": "Geraldes", + "firstName": "Tomãs", + "lastName": "Geraldes", + "image": "http://static.lolesports.com/players/1753918281934_geraldesrdy.png", + "role": "bottom" + }, + { + "id": "113937126451344443", + "summonerName": "Tebi GG", + "firstName": "João", + "lastName": "Teixeira", + "image": "http://static.lolesports.com/players/1753918305202_tebiggrdy1.png", + "role": "support" + }, + { + "id": "114944474810143159", + "summonerName": "Palhau", + "firstName": "João ", + "lastName": "Palhau", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "114944474866436918", + "summonerName": "Fat Yoda", + "firstName": "Diogo", + "lastName": "Pereira", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "114944474942507308", + "summonerName": "Dayllen", + "firstName": "Diogo", + "lastName": "Silva", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + } + ] + }, + { + "id": "114942372376405008", + "slug": "rage-bait-esports", + "name": "Rage Bait e-Sports", + "code": "RAGE", + "image": "http://static.lolesports.com/teams/1753881427213_image.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Liga Portuguesa", + "region": "EMEA" + }, + "players": [ + { + "id": "107609997924362264", + "summonerName": "Qu4rtzo", + "firstName": "Tiago", + "lastName": "Santos", + "image": "https://static.lolesports.com/players/download.png", + "role": "bottom" + }, + { + "id": "114944475439807860", + "summonerName": "xld", + "firstName": "Bruno", + "lastName": "Machado", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "108438977702224904", + "summonerName": "Lemon", + "firstName": "Eduardo", + "lastName": "Garcia", + "image": "https://static.lolesports.com/players/download.png", + "role": "top" + }, + { + "id": "107610052557238035", + "summonerName": "Misaki", + "firstName": "Telmo", + "lastName": "Oliveira", + "image": "http://static.lolesports.com/players/1687000496142_BWE-Misaki.png", + "role": "top" + }, + { + "id": "107655221164937465", + "summonerName": "Mettalica", + "firstName": "António", + "lastName": "Galo", + "image": "http://static.lolesports.com/players/1642688309944_placeholder.png", + "role": "mid" + }, + { + "id": "114944475512820166", + "summonerName": "Benji2", + "firstName": "Tiago", + "lastName": "Sousa", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "107609954178360625", + "summonerName": "yanjee", + "firstName": "Tiago", + "lastName": "Sousa", + "image": "http://static.lolesports.com/players/1687000536709_BWE-yanjee.png", + "role": "jungle" + } + ] + }, + { + "id": "114942382383150115", + "slug": "otter-side", + "name": "Otter Side", + "code": "OTS", + "image": "http://static.lolesports.com/teams/1753881580888_OtterSideLogoV2Monocromtico.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Liga Portuguesa", + "region": "EMEA" + }, + "players": [ + { + "id": "109710893427861269", + "summonerName": "Rafflees", + "firstName": "Rafael", + "lastName": "Pinto", + "image": "http://static.lolesports.com/players/1674055381226_placeholder.png", + "role": "support" + }, + { + "id": "105519812395588370", + "summonerName": "Silk", + "firstName": "Ivan", + "lastName": "Gantsyuk Korol", + "image": "http://static.lolesports.com/players/1644409493753_Silk.png", + "role": "mid" + }, + { + "id": "105598591435892375", + "summonerName": "Bicas", + "firstName": "Pedro", + "lastName": "Simões", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "109710960558416624", + "summonerName": "Ze Luis", + "firstName": "José", + "lastName": "Martins", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "107648263775453858", + "summonerName": "Oceann", + "firstName": "João", + "lastName": "Martins", + "image": "http://static.lolesports.com/players/1642582147147_placeholder.png", + "role": "support" + }, + { + "id": "114944475086031161", + "summonerName": "Creepano", + "firstName": "Bredon ", + "lastName": "Quentin", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "108589285158821845", + "summonerName": "Abner", + "firstName": "Abner", + "lastName": "Orbe Flores", + "image": "http://static.lolesports.com/players/1656940991631_placeholder.png", + "role": "bottom" + }, + { + "id": "114944946965758154", + "summonerName": "Bayonetta", + "firstName": "Samet", + "lastName": "Turak", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "top" + } + ] + }, + { + "id": "115009282538836960", + "slug": "redpack-esports", + "name": "REDPack Esports", + "code": "RP", + "image": "http://static.lolesports.com/teams/1754902381188_LOLESPORTSICON.png", + "alternativeImage": "http://static.lolesports.com/teams/1754902381189_LOLESPORTSICON.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Esports Balkan League", + "region": "EMEA" + }, + "players": [ + { + "id": "115009322755026755", + "summonerName": "SoimuMIC", + "firstName": "Victor-Honoriu", + "lastName": "Soimosan", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "114459830313212936", + "summonerName": "hammerul", + "firstName": "Amed", + "lastName": "Yildiz", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "114459831411484036", + "summonerName": "Ninji", + "firstName": "Alexandru", + "lastName": "Pescaru", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "107128046781993420", + "summonerName": "Ecstassy", + "firstName": "Marian-Andrei", + "lastName": "Cândea", + "image": "http://static.lolesports.com/players/1634644264452_placeholder.jpg", + "role": "bottom" + }, + { + "id": "114459833072385482", + "summonerName": "Azu", + "firstName": "Robert", + "lastName": "Jarcu", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "106250769047347800", + "summonerName": "alishor", + "firstName": "Alex", + "lastName": "Florea", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "none" + } + ] + }, + { + "id": "115218777319048503", + "slug": "saving-oce", + "name": "Saving OCE", + "code": "SVO", + "image": "http://static.lolesports.com/teams/1758702009987_PnR_SVO_Full_B.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "111720042622049047", + "summonerName": "doraemon", + "firstName": "Joshua", + "lastName": "Wong", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "107634941727734818", + "summonerName": "foreigner", + "firstName": "Jeremy", + "lastName": "Lim", + "image": "https://static.lolesports.com/players/download.png", + "role": "jungle" + }, + { + "id": "105709374603178836", + "summonerName": "Kyose", + "firstName": "Nathan", + "lastName": "Bacha", + "image": "http://static.lolesports.com/players/silhouette.png", + "role": "mid" + }, + { + "id": "103643243250697054", + "summonerName": "Violet", + "firstName": "Vincent", + "lastName": "Wong", + "image": "http://static.lolesports.com/players/1745997118665_CHF_Violet.png", + "role": "bottom" + }, + { + "id": "110456598651174911", + "summonerName": "Scxtt", + "firstName": "Hae Bong", + "lastName": "Lee", + "image": "http://static.lolesports.com/players/1685433939151_placeholder.png", + "role": "support" + } + ] + }, + { + "id": "115218778929402335", + "slug": "inferno-esports", + "name": "Inferno Esports", + "code": "IE", + "image": "http://static.lolesports.com/teams/1758702382053_PnR_IE_Full_B.png", + "alternativeImage": "http://static.lolesports.com/teams/1758702382054_PnR_IE_Full_B.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "115258282165925302", + "summonerName": "1jw", + "firstName": "JACK WAI", + "lastName": "LEE", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "107649222484165953", + "summonerName": "BornThisWay", + "firstName": "Ting Yi", + "lastName": "Ong", + "image": "http://static.lolesports.com/players/1642596776128_placeholder.png", + "role": "jungle" + }, + { + "id": "115258282224776634", + "summonerName": "Krimson", + "firstName": "KARL JUSTIN", + "lastName": "GUEVARRA", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "115258282317023203", + "summonerName": "Austerity", + "firstName": "MICHAEL JAY", + "lastName": "GAWALA", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "102787200020939341", + "summonerName": "Moopz", + "firstName": "MARC JAZZTINE", + "lastName": "BARRION", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "115258282399150331", + "summonerName": "Aiman", + "firstName": "MOHAMMAD AIMAN", + "lastName": "GURO", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "115258282454976487", + "summonerName": "Celest", + "firstName": "CHRISTIAN REY", + "lastName": "GRECIA", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "mid" + } + ] + }, + { + "id": "115405112428115390", + "slug": "the-bandits", + "name": "The Bandits", + "code": "BAN", + "image": "http://static.lolesports.com/teams/1760942281523_tgFWzVsV_400x400.png", + "alternativeImage": "http://static.lolesports.com/teams/1760942281523_tgFWzVsV_400x400.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Road of Legends", + "region": "EMEA" + }, + "players": [] + }, + { + "id": "115535915753640195", + "slug": "godalions-blossom-gc", + "name": "GODALIONS BLOSSOM GC", + "code": "GODB", + "image": "http://static.lolesports.com/teams/1762938194470_LOLESPORTSICON.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "115535917962738126", + "slug": "bienen-mit-humor", + "name": "Bienen mit Humor", + "code": "BMH", + "image": "http://static.lolesports.com/teams/1762938232221_LOLESPORTSICON.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "115535919095462352", + "slug": "gweng", + "name": "Gwen.G", + "code": "GWNG", + "image": "http://static.lolesports.com/teams/1762938249397_LOLESPORTSICON.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "115535923537682496", + "slug": "aurora-esports", + "name": "Aurora Esports", + "code": "AUR", + "image": "http://static.lolesports.com/teams/1762938317095_LOLESPORTSICON.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "115535926346223877", + "slug": "mental-rush", + "name": "Mental Rush", + "code": "MR", + "image": "http://static.lolesports.com/teams/1762938359873_LOLESPORTSICON.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "115535927517093969", + "slug": "zerance-bloom", + "name": "Zerance Bloom", + "code": "ZERB", + "image": "http://static.lolesports.com/teams/1762938377793_LOLESPORTSICON.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "115535929615814920", + "slug": "solary-acadmie", + "name": "Solary Académie", + "code": "SLYA", + "image": "http://static.lolesports.com/teams/1762938409870_LOLESPORTSICON.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "115535933333479510", + "slug": "almeno-gc", + "name": "Almeno GC", + "code": "AOE", + "image": "http://static.lolesports.com/teams/1762938466258_LOLESPORTSICON.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "115535934714056977", + "slug": "vitality-rising-bees", + "name": "Vitality Rising Bees", + "code": "VRB", + "image": "http://static.lolesports.com/teams/1762938487654_LOLESPORTSICON.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "115535937162557908", + "slug": "rising-stella", + "name": "Rising Stella", + "code": "RS", + "image": "http://static.lolesports.com/teams/1762938525029_LOLESPORTSICON.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "115535938392144342", + "slug": "eterna", + "name": "Eterna", + "code": "ETR", + "image": "http://static.lolesports.com/teams/1762938543675_LOLESPORTSICON.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "115535987729021474", + "slug": "g2-hel", + "name": "G2 Hel", + "code": "G2H", + "image": "http://static.lolesports.com/teams/1762939291464_LOLESPORTSICON.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "115547304639666149", + "slug": "sk-avarosa", + "name": "SK Avarosa", + "code": "SKA", + "image": "http://static.lolesports.com/teams/1763111976613_LOLESPORTSICON.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "115547311706019815", + "slug": "92i-esport", + "name": "92I esport", + "code": "92I", + "image": "http://static.lolesports.com/teams/1763112088160_LOLESPORTSICON.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "115547315425300939", + "slug": "gameher-souls", + "name": "Game'Her Souls", + "code": "GHS", + "image": "http://static.lolesports.com/teams/1763112145072_LOLESPORTSICON.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "115547326752589648", + "slug": "neptunia-nyx", + "name": "Neptunia Nyx", + "code": "NYX", + "image": "http://static.lolesports.com/teams/1763112318238_LOLESPORTSICON.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "115547339243541980", + "slug": "breasts-esport", + "name": "Breasts Esport", + "code": "BRE", + "image": "http://static.lolesports.com/teams/1763112504890_LOLESPORTSICON.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "115547342891045348", + "slug": "femmes-fantasticas", + "name": "Femmes Fantasticas", + "code": "FEM", + "image": "http://static.lolesports.com/teams/1763112564143_LOLESPORTSICON.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "115547344460862944", + "slug": "lycoris-3", + "name": "Lycoris 3", + "code": "L3", + "image": "http://static.lolesports.com/teams/1763112587714_LOLESPORTSICON.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "115688562107799886", + "slug": "sentinels", + "name": "Sentinels", + "code": "SEN", + "image": "http://static.lolesports.com/teams/1765267358137_Sentinels_2020_Icon.svg", + "alternativeImage": "http://static.lolesports.com/teams/1765267358137_Sentinels_2020_Icon.svg", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCS", + "region": "NORTH AMERICA" + }, + "players": [ + { + "id": "107454953423394142", + "summonerName": "HamBak", + "firstName": "Yujin", + "lastName": "Ham", + "image": "http://static.lolesports.com/players/1758213278005_hambak.png", + "role": "jungle" + }, + { + "id": "98926509793730393", + "summonerName": "huhi", + "firstName": "Jae Hyun", + "lastName": "Choi", + "image": "http://static.lolesports.com/players/1739478876354_ggsdgs8.png", + "role": "support" + }, + { + "id": "106267600924403194", + "summonerName": "Rahel", + "firstName": "Minseong", + "lastName": "Cho", + "image": "http://static.lolesports.com/players/1753348624075_image6422.png", + "role": "bottom" + }, + { + "id": "105913330212838498", + "summonerName": "DARKWINGS", + "firstName": "Isaac", + "lastName": "Chou", + "image": "http://static.lolesports.com/players/1753348536253_image6223.png", + "role": "mid" + }, + { + "id": "98767991746528652", + "summonerName": "Impact", + "firstName": "Eon-Young", + "lastName": "Jeong", + "image": "http://static.lolesports.com/players/1726214749557_TL_1500x1500_IMPACT_02.png", + "role": "top" + } + ] + }, + { + "id": "115728827493911401", + "slug": "nextgeneration-esports", + "name": "NextGeneration Esports", + "code": "NG", + "image": "http://static.lolesports.com/teams/1765967493419_5.png", + "alternativeImage": "http://static.lolesports.com/teams/1765967493419_5.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Arabian League", + "region": "EMEA" + }, + "players": [] + }, + { + "id": "115745361559907281", + "slug": "tln-pirates", + "name": "TLN Pirates", + "code": "TLNP", + "image": "http://static.lolesports.com/teams/1766134058603_TLNPirates.png", + "alternativeImage": "http://static.lolesports.com/teams/1766134058604_TLNPirates.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "La Ligue Française", + "region": "EMEA" + }, + "players": [ + { + "id": "109665702844353777", + "summonerName": "Toffe", + "firstName": "Tautvydas", + "lastName": "Gegeckas", + "image": "https://static.lolesports.com/players/download.png", + "role": "mid" + }, + { + "id": "106449215013141535", + "summonerName": "Thomas", + "firstName": "Tomislav", + "lastName": "Nanjara", + "image": "http://static.lolesports.com/players/placeholder.jpg", + "role": "support" + }, + { + "id": "100205576934475691", + "summonerName": "Stefan", + "firstName": "Stefan ", + "lastName": "Nikolić", + "image": "http://static.lolesports.com/players/1591438420370_stefan.png", + "role": "jungle" + }, + { + "id": "108403323724987346", + "summonerName": "Spooder", + "firstName": "Sharad", + "lastName": "Muhanad", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "top" + }, + { + "id": "115745588238402117", + "summonerName": "Daemon", + "firstName": "Talamelli", + "lastName": "Brandon", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "107105627153828391", + "summonerName": "Axelent", + "firstName": "Nikola ", + "lastName": "Petrushev", + "image": "https://static.lolesports.com/players/download.png", + "role": "bottom" + } + ] + }, + { + "id": "115745364589112276", + "slug": "skillcamp", + "name": "Skillcamp", + "code": "SC", + "image": "http://static.lolesports.com/teams/1766134108028_Skillcamp.png", + "alternativeImage": "http://static.lolesports.com/teams/1766134108028_Skillcamp.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "La Ligue Française", + "region": "EMEA" + }, + "players": [] + }, + { + "id": "115745375839238567", + "slug": "lausanne-esports", + "name": "Lausanne Esports", + "code": "ELS", + "image": "http://static.lolesports.com/teams/1766134280083_LausanneEsports.png", + "alternativeImage": "http://static.lolesports.com/teams/1766134280084_LausanneEsports.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "115745381337965235", + "slug": "karmine-corp-blue-stars", + "name": "Karmine Corp Blue Stars", + "code": "KCBS", + "image": "http://static.lolesports.com/teams/1766134364154_KCBluestars.png", + "alternativeImage": "http://static.lolesports.com/teams/1766134364155_KCBluestars.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "La Ligue Française", + "region": "EMEA" + }, + "players": [ + { + "id": "112489155371179883", + "summonerName": "Theocacs", + "firstName": "Theo", + "lastName": "Sauda", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "111813496625862238", + "summonerName": "Panda2", + "firstName": "Hamza", + "lastName": "Siala", + "image": "http://static.lolesports.com/players/1744003081088_image6-2025-04-07T071653.486.png", + "role": "mid" + }, + { + "id": "111102219451294718", + "summonerName": "looki", + "firstName": "Rocco", + "lastName": "Palfi", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "113112560030529037", + "summonerName": "K0ala", + "firstName": "Gonzalez", + "lastName": "Alexis", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "111759196051033389", + "summonerName": "Alaric", + "firstName": "Erwin", + "lastName": "Cader", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + } + ] + }, + { + "id": "115745394284063766", + "slug": "galions-sharks", + "name": "Galions Sharks", + "code": "GLSH", + "image": "http://static.lolesports.com/teams/1766134560844_GalionsSharks.png", + "alternativeImage": "http://static.lolesports.com/teams/1766134560844_GalionsSharks.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "La Ligue Française", + "region": "EMEA" + }, + "players": [] + }, + { + "id": "115745428155297725", + "slug": "caldya-esport", + "name": "Caldya Esport", + "code": "CLA", + "image": "http://static.lolesports.com/teams/1766135073553_Caldya.png", + "alternativeImage": "http://static.lolesports.com/teams/1766135073553_Caldya.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "La Ligue Française", + "region": "EMEA" + }, + "players": [] + }, + { + "id": "115745443277220050", + "slug": "french-flair", + "name": "French Flair", + "code": "FF", + "image": "http://static.lolesports.com/teams/1766135308638_Logo_FF_Clair.png", + "alternativeImage": "http://static.lolesports.com/teams/1766135308638_Logo_FF_Clair.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "La Ligue Française", + "region": "EMEA" + }, + "players": [] + }, + { + "id": "115745554801028582", + "slug": "vitality-rising-bees", + "name": "Vitality Rising Bees", + "code": "VRB", + "image": "http://static.lolesports.com/teams/1766137009481_CopyofCopyofmedia_2528493_326.png", + "alternativeImage": "http://static.lolesports.com/teams/1766137009481_CopyofCopyofmedia_2528493_326.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "La Ligue Française", + "region": "EMEA" + }, + "players": [] + }, + { + "id": "115745556615165073", + "slug": "yumeea", + "name": "Yumeea", + "code": "YUA", + "image": "http://static.lolesports.com/teams/1766137038016_LOLESPORTSICON.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "La Ligue Française", + "region": "EMEA" + }, + "players": [] + }, + { + "id": "115745558004231657", + "slug": "zyb", + "name": "ZYB", + "code": "ZYB", + "image": "http://static.lolesports.com/teams/1766137054723_LOLESPORTSICON.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "La Ligue Française", + "region": "EMEA" + }, + "players": [] + }, + { + "id": "115745559583780332", + "slug": "zephyr", + "name": "Zephyr", + "code": "ZPH", + "image": "http://static.lolesports.com/teams/1766137083182_LOLESPORTSICON.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "La Ligue Française", + "region": "EMEA" + }, + "players": [] + }, + { + "id": "115746391381363571", + "slug": "howl-esports", + "name": "HowL Esports", + "code": "HWL", + "image": "http://static.lolesports.com/teams/1766149765889_YEO-removebg-preview.png", + "alternativeImage": "http://static.lolesports.com/teams/1766149765889_YEO-removebg-preview.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "Hellenic Legends League", + "region": "EMEA" + }, + "players": [] + }, + { + "id": "98767991846127102", + "slug": "ahq-esports-club", + "name": "ahq eSports Club", + "code": "AHQ", + "image": "http://static.lolesports.com/teams/1592588445575_ahqeSportsClubAHQ-01-FullonDark.png", + "alternativeImage": "http://static.lolesports.com/teams/1592588445588_ahqeSportsClubAHQ-03-FullonLight.png", + "backgroundImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/ahq-e-sports-club-gtpndczq.png", + "status": "active", + "homeLeague": { + "name": "PCS", + "region": "HONG KONG, MACAU, TAIWAN" + }, + "players": [ + { + "id": "101428372795944373", + "summonerName": "Leaky", + "firstName": "Tsu Chia", + "lastName": "Chang", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "98767991795284971", + "summonerName": "Ziv", + "firstName": "Yi", + "lastName": "Chen", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/ziv-h8wtpv1f.png", + "role": "top" + }, + { + "id": "99566406478943840", + "summonerName": "Kongyue", + "firstName": "Jen-Tso", + "lastName": "Hsiao", + "image": "http://static.lolesports.com/players/1705750526427_JTKongyue.png", + "role": "jungle" + }, + { + "id": "99566406456181201", + "summonerName": "Apex", + "firstName": "Chia-Wei", + "lastName": "Hsieh", + "image": "http://static.lolesports.com/players/1656574539287_Apex.png", + "role": "mid" + }, + { + "id": "104573129055417270", + "summonerName": "Doggo", + "firstName": "Tzu-Chuan", + "lastName": "Chiu", + "image": "http://static.lolesports.com/players/1744279758240_CFO_Doggo.png", + "role": "bottom" + }, + { + "id": "99566406463329124", + "summonerName": "Wako", + "firstName": "Wei-Yang", + "lastName": "Zou", + "image": "http://static.lolesports.com/players/1705750562482_JTWako.png", + "role": "bottom" + }, + { + "id": "100164987388486304", + "summonerName": "Ysera", + "firstName": "Tsung-Chih", + "lastName": "Wang", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/ysera-n21gt4i.png", + "role": "support" + } + ] + }, + { + "id": "98767991853197861", + "slug": "t1", + "name": "T1", + "code": "T1", + "image": "http://static.lolesports.com/teams/1726801573959_539px-T1_2019_full_allmode.png", + "alternativeImage": "http://static.lolesports.com/teams/1726801573959_539px-T1_2019_full_allmode.png", + "backgroundImage": "http://static.lolesports.com/teams/1596305556675_T1T1.png", + "status": "active", + "homeLeague": { + "name": "LCK", + "region": "KOREA" + }, + "players": [ + { + "id": "111658337799244461", + "summonerName": "Cloud ", + "firstName": "Moon", + "lastName": "Hyunho", + "image": "http://static.lolesports.com/players/1758212570277_cloud.png", + "role": "support" + }, + { + "id": "98767991747728851", + "summonerName": "Faker", + "firstName": "Sanghyeok", + "lastName": "Lee", + "image": "http://static.lolesports.com/players/1758213169113_faker.png", + "role": "mid" + }, + { + "id": "105320682452092471", + "summonerName": "Oner", + "firstName": "Hyunjun", + "lastName": "Mun", + "image": "http://static.lolesports.com/players/1758213680084_oner.png", + "role": "jungle" + }, + { + "id": "103495716561790834", + "summonerName": "Keria", + "firstName": "Minseok", + "lastName": "Ryu", + "image": "http://static.lolesports.com/players/1758213418301_keria.png", + "role": "support" + }, + { + "id": "115643633228772231", + "summonerName": "Painter", + "firstName": "Eunhu", + "lastName": "Kim", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "108205155000821521", + "summonerName": "Cypher", + "firstName": "Yoojun", + "lastName": "Kim", + "image": "http://static.lolesports.com/players/1758212652642_cypher.png", + "role": "bottom" + }, + { + "id": "115643633313408264", + "summonerName": "Guardian", + "firstName": "Taehyo", + "lastName": "Seong", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "107492068702410338", + "summonerName": "Peyz", + "firstName": "SOOHWAN", + "lastName": "Kim", + "image": "http://static.lolesports.com/players/1753280959463_image657.png", + "role": "bottom" + }, + { + "id": "113560604011392262", + "summonerName": "Haetae", + "firstName": "Suhyeon", + "lastName": "Sim", + "image": "http://static.lolesports.com/players/1758213285389_haetae.png", + "role": "top" + }, + { + "id": "109523134874809981", + "summonerName": "Guti", + "firstName": "Moon", + "lastName": "Jeonghwan", + "image": "http://static.lolesports.com/players/1758213254748_guti.png", + "role": "mid" + }, + { + "id": "102186485482484390", + "summonerName": "Doran", + "firstName": "Hyeonjun", + "lastName": "Choi", + "image": "http://static.lolesports.com/players/1758213061784_doran.png", + "role": "top" + } + ] + }, + { + "id": "98767991860392497", + "slug": "tsm", + "name": "TSM", + "code": "TSM", + "image": "http://static.lolesports.com/teams/1672824696002_White-Logo-Mark.png", + "alternativeImage": "http://static.lolesports.com/teams/1592590917107_TSMTSM-03-FullonLight.png", + "backgroundImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/tsm-ehs79j95.png", + "status": "active", + "homeLeague": { + "name": "LCS", + "region": "NORTH AMERICA" + }, + "players": [] + }, + { + "id": "98767991866488695", + "slug": "fnatic", + "name": "Fnatic", + "code": "FNC", + "image": "http://static.lolesports.com/teams/1631819669150_fnc-2021-worlds.png", + "alternativeImage": "http://static.lolesports.com/teams/1592591295310_FnaticFNC-03-FullonLight.png", + "backgroundImage": "http://static.lolesports.com/teams/1632941274242_FNC.png", + "status": "active", + "homeLeague": { + "name": "LEC", + "region": "EMEA" + }, + "players": [ + { + "id": "99322214653265200", + "summonerName": "Upset", + "firstName": "Elias", + "lastName": "Lipp", + "image": "http://static.lolesports.com/players/1754469994553_image6522.png", + "role": "bottom" + }, + { + "id": "99322214629661297", + "summonerName": "Mikyx", + "firstName": "Mihael", + "lastName": "Mehle", + "image": "http://static.lolesports.com/players/1754469603602_image6129.png", + "role": "support" + }, + { + "id": "103536968829352943", + "summonerName": "Oscarinin", + "firstName": "Oscar", + "lastName": "Muñoz Jiménez", + "image": "http://static.lolesports.com/players/1754469704650_image6226.png", + "role": "top" + }, + { + "id": "100238780551262852", + "summonerName": "Razork", + "firstName": "Iván", + "lastName": "Martín", + "image": "http://static.lolesports.com/players/1754469877128_image6423.png", + "role": "jungle" + }, + { + "id": "107840393299826151", + "summonerName": "Poby", + "firstName": "Sungwon", + "lastName": "Yoon", + "image": "http://static.lolesports.com/players/1754469779733_image6325.png", + "role": "mid" + } + ] + }, + { + "id": "98767991871709842", + "slug": "gambit-esports", + "name": "Gambit Esports", + "code": "GMBT", + "image": "http://static.lolesports.com/teams/GMB.png", + "alternativeImage": "http://static.lolesports.com/teams/GMB.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCL", + "region": "COMMONWEALTH OF INDEPENDENT STATES" + }, + "players": [ + { + "id": "103963496975373211", + "summonerName": "DREAMPYLLA", + "firstName": "Mark", + "lastName": "Lexin", + "image": "https://static.lolesports.com/players/download.png", + "role": "top" + }, + { + "id": "98767975979209033", + "summonerName": "PvPStejos", + "firstName": "Aleksandr", + "lastName": "Glazkov", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/pvpstejos-22ikps80.png", + "role": "jungle" + }, + { + "id": "103963501206462697", + "summonerName": "Phlaty", + "firstName": "Aleksei", + "lastName": "Lemeschuk", + "image": "http://static.lolesports.com/players/1644478413960_LE_Phlaty.png", + "role": "mid" + }, + { + "id": "103963504851030950", + "summonerName": "Lekcyc", + "firstName": "Aleksandr", + "lastName": "Leksikov", + "image": "http://static.lolesports.com/players/1644478617579_LE_Lekcyc.png", + "role": "support" + }, + { + "id": "103963499574750733", + "summonerName": "Four", + "firstName": "Stanimir", + "lastName": "Penchev", + "image": "https://static.lolesports.com/players/download.png", + "role": "jungle" + } + ] + }, + { + "id": "98767991877340524", + "slug": "cloud9", + "name": "Cloud9 Kia", + "code": "C9", + "image": "http://static.lolesports.com/teams/1736924120254_C9Kia_IconBlue_Transparent_2000x2000.png", + "alternativeImage": "http://static.lolesports.com/teams/1736924120255_C9Kia_IconBlue_Transparent_2000x2000.png", + "backgroundImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/cloud9-9vnfum22.png", + "status": "active", + "homeLeague": { + "name": "LTA North", + "region": "AMERICAS" + }, + "players": [ + { + "id": "99101098218071815", + "summonerName": "Blaber", + "firstName": "Robert", + "lastName": "Huang", + "image": "http://static.lolesports.com/players/1739477380185_ggsdgsd.png", + "role": "jungle" + }, + { + "id": "105957619949286329", + "summonerName": "APA", + "firstName": "Eain", + "lastName": "Stearns", + "image": "http://static.lolesports.com/players/1726214761765_TL_1500x1500_APA_04.png", + "role": "mid" + }, + { + "id": "98767991801635485", + "summonerName": "Zven", + "firstName": "Jesper", + "lastName": "Svenningsen", + "image": "http://static.lolesports.com/players/1739477500671_ggsdgs1.png", + "role": "bottom" + }, + { + "id": "99101098208825497", + "summonerName": "Vulcan", + "firstName": "Philippe", + "lastName": "Laflamme", + "image": "http://static.lolesports.com/players/1739477742600_ggsdgs12.png", + "role": "support" + }, + { + "id": "105501816646382923", + "summonerName": "Thanatos", + "firstName": "Seung-gyu", + "lastName": "Park", + "image": "http://static.lolesports.com/players/1739476937623_image13.png", + "role": "top" + } + ] + }, + { + "id": "98767991882270868", + "slug": "edward-gaming", + "name": "SHANGHAI EDWARD GAMING HYCAN", + "code": "EDG", + "image": "http://static.lolesports.com/teams/1631819297476_edg-2021-worlds.png", + "alternativeImage": "http://static.lolesports.com/teams/1694151726921_logo-edg.png", + "backgroundImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/edward-gaming-2ko31fn7.png", + "status": "active", + "homeLeague": { + "name": "LPL", + "region": "CHINA" + }, + "players": [ + { + "id": "109784344243547583", + "summonerName": "Leave", + "firstName": "HONGCHAO", + "lastName": "HU", + "image": "http://static.lolesports.com/players/1753284065307_image6312.png", + "role": "bottom" + }, + { + "id": "114878673158515186", + "summonerName": "Parukia", + "firstName": "Wang", + "lastName": " Ping-Yang", + "image": "http://static.lolesports.com/players/1753277182847_image636.png", + "role": "support" + }, + { + "id": "103103555079018097", + "summonerName": "Zdz", + "firstName": "De-Zhang", + "lastName": "Zhu", + "image": "http://static.lolesports.com/players/1753276978073_image618.png", + "role": "top" + }, + { + "id": "107597411688435553", + "summonerName": "Xiaohao", + "firstName": "HAO", + "lastName": "PENG", + "image": "http://static.lolesports.com/players/1753277095551_image626.png", + "role": "jungle" + }, + { + "id": "101388912814667094", + "summonerName": "Angel", + "firstName": "Tao", + "lastName": "Xiang", + "image": "http://static.lolesports.com/players/1753277531874_image646.png", + "role": "mid" + } + ] + }, + { + "id": "98767991887166787", + "slug": "team-we", + "name": "Xi'an Team WE", + "code": "WE", + "image": "http://static.lolesports.com/teams/1634763008788_220px-Team_WE_logo.png", + "alternativeImage": "http://static.lolesports.com/teams/1634763008788_220px-Team_WE_logo.png", + "backgroundImage": "http://static.lolesports.com/teams/1634763008789_Team_WElogo_profile.png", + "status": "active", + "homeLeague": { + "name": "LPL", + "region": "CHINA" + }, + "players": [ + { + "id": "108477164506118803", + "summonerName": "Cube", + "firstName": "Yi", + "lastName": "Dai", + "image": "http://static.lolesports.com/players/1753286621881_image6513.png", + "role": "top" + }, + { + "id": "105320683858945274", + "summonerName": "Karis", + "firstName": "Hongjo", + "lastName": "Kim", + "image": "http://static.lolesports.com/players/1753286554098_image6417.png", + "role": "jungle" + }, + { + "id": "110547903628049902", + "summonerName": "Monki", + "firstName": "MENGQI", + "lastName": "WANG", + "image": "http://static.lolesports.com/players/1753286476963_image6317.png", + "role": "jungle" + }, + { + "id": "113560612601130250", + "summonerName": "About", + "firstName": "Hyungsuk", + "lastName": "Moon", + "image": "http://static.lolesports.com/players/1739357178626_image686.png", + "role": "bottom" + }, + { + "id": "107597376599119596", + "summonerName": "yaoyao", + "firstName": "HAOTIAN", + "lastName": "BI", + "image": "http://static.lolesports.com/players/1641805668544_placeholder.png", + "role": "support" + } + ] + }, + { + "id": "98767991892579754", + "slug": "royal-never-give-up", + "name": "Royal Never Give Up", + "code": "RNG", + "image": "http://static.lolesports.com/teams/1631819360134_rng-2021-worlds.png", + "alternativeImage": null, + "backgroundImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/royal-never-give-up-gyxvz131.png", + "status": "active", + "homeLeague": { + "name": "LPL", + "region": "CHINA" + }, + "players": [ + { + "id": "105516558751291781", + "summonerName": "Lele", + "firstName": "Bo-Lin", + "lastName": "Dang", + "image": "http://static.lolesports.com/players/silhouette.png", + "role": "support" + }, + { + "id": "109784590066548371", + "summonerName": "Tangyuan", + "firstName": "YUHONG", + "lastName": "LIN", + "image": "http://static.lolesports.com/players/1675179901130_placeholder.png", + "role": "mid" + } + ] + }, + { + "id": "98767991897792379", + "slug": "hong-kong-attitude", + "name": "Hong Kong Attitude", + "code": "HKA", + "image": "http://static.lolesports.com/teams/1592588513875_HongKongAttitudeHKA-01-FullonDark.png", + "alternativeImage": "http://static.lolesports.com/teams/1592588513882_HongKongAttitudeHKA-03-FullonLight.png", + "backgroundImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/hong-kong-attitude-f3zxqsqi.png", + "status": "active", + "homeLeague": { + "name": "PCS", + "region": "HONG KONG, MACAU, TAIWAN" + }, + "players": [ + { + "id": "101428372795092403", + "summonerName": "MnM", + "firstName": "Ka Chun", + "lastName": "Wong", + "image": "http://static.lolesports.com/players/1705749389479_FAKMnM.png", + "role": "bottom" + }, + { + "id": "99566406480677699", + "summonerName": "Rock", + "firstName": "Chung-Ting", + "lastName": "Tsai", + "image": "http://static.lolesports.com/players/1656576816932_Rock.png", + "role": "top" + }, + { + "id": "106470350672813985", + "summonerName": "HongSuo", + "firstName": "BEI YI", + "lastName": "GUO", + "image": "http://static.lolesports.com/players/1705752398259_PSGHongSuo.png", + "role": "mid" + }, + { + "id": "106470353168712081", + "summonerName": "S1aytrue", + "firstName": "SHENG BO", + "lastName": "LIN", + "image": "http://static.lolesports.com/players/1705751391372_BYGs1aytrue.png", + "role": "support" + }, + { + "id": "106470354739065072", + "summonerName": "Stardust", + "firstName": "HAO", + "lastName": "HSU", + "image": "http://static.lolesports.com/players/silhouette.png", + "role": "bottom" + }, + { + "id": "99566406458635594", + "summonerName": "K", + "firstName": "Kai-Sheng", + "lastName": "Ke", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/k-85prm3hi.png", + "role": "support" + }, + { + "id": "106532893438837318", + "summonerName": "Hsien", + "firstName": "Yu Hsien", + "lastName": "Kuo", + "image": "http://static.lolesports.com/players/1599762334741_silhouette.png", + "role": "bottom" + }, + { + "id": "106572026404718905", + "summonerName": "Wen", + "firstName": "Nai Wun", + "lastName": "Syu", + "image": "http://static.lolesports.com/players/1656576078869_Wen.png", + "role": "mid" + }, + { + "id": "106650959374049206", + "summonerName": "Biven", + "firstName": "Hao Wei", + "lastName": "Wu", + "image": "http://static.lolesports.com/players/1627364488999_1599762334741_silhouette.png", + "role": "mid" + } + ] + }, + { + "id": "98767991902391669", + "slug": "flash-wolves", + "name": "Flash Wolves", + "code": "FWS", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/flash-wolves-esb6k29j.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/flash-wolves-fdsctta0.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "99566406485280528", + "summonerName": "ShiauC", + "firstName": "Jia-Hao ", + "lastName": "Liu", + "image": "http://static.lolesports.com/players/1687501725552_CFOShiauC.png", + "role": "support" + }, + { + "id": "99871276341445944", + "summonerName": "Rather", + "firstName": "Hyoungsub", + "lastName": "Shin", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/rather-be3bmk5m.png", + "role": "mid" + }, + { + "id": "100764658202911967", + "summonerName": "Bugi", + "firstName": "Seongyeop", + "lastName": "Lee ", + "image": "http://static.lolesports.com/players/1677138782063_TSM_BUGI.png", + "role": "jungle" + }, + { + "id": "98767975924333750", + "summonerName": "Betty", + "firstName": "Yu-Hung ", + "lastName": "Lu", + "image": "http://static.lolesports.com/players/1755157037209_PSG_Betty.png", + "role": "bottom" + }, + { + "id": "99566406483827119", + "summonerName": "Hanabi", + "firstName": "Chia-Hsiang", + "lastName": "Su", + "image": "http://static.lolesports.com/players/1705750496046_JTHanabi.png", + "role": "top" + } + ] + }, + { + "id": "98767991907201334", + "slug": "longzhu-gaming", + "name": "Longzhu Gaming", + "code": "LZ", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/longzhu-incredible-miracle-2xpijv2d.png", + "alternativeImage": null, + "backgroundImage": "http://na.lolesports.com/", + "status": "active", + "homeLeague": { + "name": "LCK", + "region": "KOREA" + }, + "players": [] + }, + { + "id": "98767991911590912", + "slug": "samsung-galaxy", + "name": "Samsung Galaxy", + "code": "SSG", + "image": "http://static.lolesports.com/teams/1669027895369_Samsung_Galaxylogo_square.png", + "alternativeImage": "http://static.lolesports.com/teams/1669027895369_Samsung_Galaxylogo_square.png", + "backgroundImage": "http://na.lolesports.com/", + "status": "active", + "homeLeague": { + "name": "LCK", + "region": "KOREA" + }, + "players": [] + }, + { + "id": "98767991916844003", + "slug": "kaos-latin-gamers", + "name": "Kaos Latin Gamers", + "code": "KLG", + "image": "http://static.lolesports.com/teams/KLG-Black-BG.png", + "alternativeImage": "http://static.lolesports.com/teams/KLG-White-BG.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "LLA", + "region": "LATIN AMERICA" + }, + "players": [ + { + "id": "112880372381731252", + "summonerName": "Ben01", + "firstName": "Ben", + "lastName": "Ben", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + } + ] + }, + { + "id": "98767991921462763", + "slug": "dire-wolves", + "name": "Dire Wolves", + "code": "DW", + "image": "http://static.lolesports.com/teams/direwolves.png", + "alternativeImage": "http://static.lolesports.com/teams/direwolves.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCO", + "region": "OCEANIA" + }, + "players": [ + { + "id": "104285053899708631", + "summonerName": "Chungy", + "firstName": "Jerome", + "lastName": "Chung", + "image": "http://static.lolesports.com/players/silhouette.png", + "role": "mid" + }, + { + "id": "112488998397516384", + "summonerName": "Guapi", + "firstName": "Brian", + "lastName": "Yu", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "107647480732814180", + "summonerName": "Meifan", + "firstName": "Bryce", + "lastName": "Zhou", + "image": "https://static.lolesports.com/players/download.png", + "role": "mid" + }, + { + "id": "112489008809745004", + "summonerName": "m0chi", + "firstName": "Henry", + "lastName": "Wang", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + }, + { + "id": "105714276869190870", + "summonerName": "Shinki", + "firstName": "Brendan", + "lastName": "Ngo", + "image": "http://static.lolesports.com/players/silhouette.png", + "role": "none" + }, + { + "id": "111720165230650519", + "summonerName": "River1", + "firstName": "Jia Hao", + "lastName": "Xue", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "103523945201750413", + "summonerName": "LeeSA", + "firstName": "Thomas", + "lastName": "Ma", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/leesa-adt93cvk.png", + "role": "jungle" + }, + { + "id": "110597785197596500", + "summonerName": "Sasi", + "firstName": " Siyuan", + "lastName": " Chen", + "image": "http://static.lolesports.com/players/1687588273483_placeholder.png", + "role": "jungle" + }, + { + "id": "109675553761951853", + "summonerName": "mfis", + "firstName": "An Quoc (John)", + "lastName": "Phan", + "image": "http://static.lolesports.com/players/1673516138020_placeholder.png", + "role": "mid" + }, + { + "id": "102206314367722668", + "summonerName": "Katsurii", + "firstName": "Robert", + "lastName": "Gouv", + "image": "http://static.lolesports.com/players/clg-katsurii.png", + "role": "bottom" + }, + { + "id": "101388912789173545", + "summonerName": "Chenxuan", + "firstName": "Zhenghang", + "lastName": "Wu", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/xuan-f03hva1b.png", + "role": "support" + } + ] + }, + { + "id": "98767991926151025", + "slug": "g2-esports", + "name": "G2 Esports", + "code": "G2", + "image": "http://static.lolesports.com/teams/G2-FullonDark.png", + "alternativeImage": "http://static.lolesports.com/teams/G2-FullonLight.png", + "backgroundImage": "http://static.lolesports.com/teams/G2.png", + "status": "active", + "homeLeague": { + "name": "LEC", + "region": "EMEA" + }, + "players": [ + { + "id": "98767975968177297", + "summonerName": "Caps", + "firstName": "Rasmus", + "lastName": "Borregaard Winther", + "image": "http://static.lolesports.com/players/1754470297805_image6227.png", + "role": "mid" + }, + { + "id": "99566406047571736", + "summonerName": "BrokenBlade", + "firstName": "Sergen", + "lastName": "Çelik", + "image": "http://static.lolesports.com/players/1754470217779_image6130.png", + "role": "top" + }, + { + "id": "98767975961872793", + "summonerName": "Hans Sama", + "firstName": "Steven", + "lastName": "Liv", + "image": "http://static.lolesports.com/players/1754470386508_image6326.png", + "role": "bottom" + }, + { + "id": "107128052280762804", + "summonerName": "SkewMond", + "firstName": "Rudy", + "lastName": "Semaan", + "image": "http://static.lolesports.com/players/1754470635830_image6610.png", + "role": "jungle" + }, + { + "id": "102787200059605684", + "summonerName": "Labrov", + "firstName": "Labros", + "lastName": "Papoutsakis", + "image": "http://static.lolesports.com/players/1754470511350_image6327.png", + "role": "support" + }, + { + "id": "105554439426664062", + "summonerName": "Rodrigo", + "firstName": "Rodrigo", + "lastName": "Domingues Oliveira", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "mid" + } + ] + }, + { + "id": "98767991930907107", + "slug": "immortals-progressive", + "name": "Immortals Progressive", + "code": "IMT", + "image": "http://static.lolesports.com/teams/imt-new-color.png", + "alternativeImage": "http://static.lolesports.com/teams/imt-new-color.png", + "backgroundImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/immortals-jiatpf5v.png", + "status": "active", + "homeLeague": { + "name": "LCS", + "region": "NORTH AMERICA" + }, + "players": [] + }, + { + "id": "98767991935149427", + "slug": "rainbow7", + "name": "Movistar R7", + "code": "R7", + "image": "http://static.lolesports.com/teams/1673451007201_IMG_3488.png", + "alternativeImage": "http://static.lolesports.com/teams/1673451007203_IMG_3488.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LLA", + "region": "LATIN AMERICA" + }, + "players": [ + { + "id": "99566408329067987", + "summonerName": "Nothing", + "firstName": " Brandon", + "lastName": "Merlo", + "image": "http://static.lolesports.com/players/1718125814382_Nothing.png", + "role": "none" + }, + { + "id": "99566404538979273", + "summonerName": "Summit", + "firstName": "Wootae", + "lastName": "Park", + "image": "http://static.lolesports.com/players/1745996322736_templkatka21heads.png", + "role": "top" + } + ] + }, + { + "id": "98767991940181526", + "slug": "misfits-gaming", + "name": "Misfits Gaming", + "code": "MSF", + "image": "http://static.lolesports.com/teams/1592591419157_MisfitsMSF-01-FullonDark.png", + "alternativeImage": "http://static.lolesports.com/teams/1592591419159_MisfitsMSF-03-FullonLight.png", + "backgroundImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/misfits-8jl8fmhb.png", + "status": "active", + "homeLeague": { + "name": "LEC", + "region": "EMEA" + }, + "players": [] + }, + { + "id": "98767991944987030", + "slug": "rampage", + "name": "Rampage", + "code": "RPG", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/rampage-4caqgbq7.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/rampage-8wzhit7v.png", + "backgroundImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/rampage-c659oz95.png", + "status": "active", + "homeLeague": { + "name": "LJL", + "region": "JAPAN" + }, + "players": [ + { + "id": "98767975912744090", + "summonerName": "Dara", + "firstName": "Jeonghoon", + "lastName": "Jeon", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/dara-ctu3pevv.png", + "role": "support" + }, + { + "id": "98767975932435430", + "summonerName": "Moyashi", + "firstName": "Yuta", + "lastName": "Noguchi", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/yutorimoyashi-get8kafq.png", + "role": "bottom" + }, + { + "id": "98767975933861580", + "summonerName": "Ramune", + "firstName": "Osamu", + "lastName": "Ozawa", + "image": "http://static.lolesports.com/players/sg_ramune.png", + "role": "mid" + } + ] + }, + { + "id": "98767991949608898", + "slug": "fenerbahce-espor", + "name": "Fenerbahçe Espor", + "code": "FB", + "image": "http://static.lolesports.com/teams/1642679970078_BANPICK_FB.png", + "alternativeImage": "http://static.lolesports.com/teams/1642679970086_BANPICK_FB.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "TCL", + "region": "EMEA" + }, + "players": [ + { + "id": "105548542489453020", + "summonerName": "361efe", + "firstName": "Efehan", + "lastName": "Ordulu", + "image": "http://static.lolesports.com/players/FB_361efe.png", + "role": "jungle" + }, + { + "id": "108443040578692452", + "summonerName": "NaakNako", + "firstName": "Okan", + "lastName": "Kaan ", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "top" + }, + { + "id": "99566404559755136", + "summonerName": "SeongHwan", + "firstName": "Yun", + "lastName": "Seong Hwan", + "image": "http://static.lolesports.com/players/1655286514548_seonhwan.png", + "role": "jungle" + }, + { + "id": "108443040889696083", + "summonerName": "Awful", + "firstName": "Ersöz", + "lastName": "Ege ", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "jungle" + } + ] + }, + { + "id": "98767991954244555", + "slug": "gam-esports", + "name": "GAM Esports", + "code": "GAM", + "image": "http://static.lolesports.com/teams/1643263093448_GAMyellow.png", + "alternativeImage": "http://static.lolesports.com/teams/1643263093449_GAMyellow.png", + "backgroundImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/gam-esports-6t9836to.png", + "status": "active", + "homeLeague": { + "name": "LCP", + "region": "PACIFIC" + }, + "players": [ + { + "id": "107330029738468255", + "summonerName": "Kiaya", + "firstName": "Sang", + "lastName": "Tran Duy ", + "image": "http://static.lolesports.com/players/1755156332931_GAM_Kiaya.png", + "role": "top" + }, + { + "id": "107251533987191201", + "summonerName": "Taki", + "firstName": "Tai", + "lastName": "Dinh Anh ", + "image": "http://static.lolesports.com/players/1744279074591_TSW_Taki.png", + "role": "support" + }, + { + "id": "107255592262151792", + "summonerName": "Draktharr", + "firstName": "Toan", + "lastName": "Le Ngoc ", + "image": "http://static.lolesports.com/players/1675847550218_placeholder.png", + "role": "jungle" + }, + { + "id": "110736699378016258", + "summonerName": "Aress", + "firstName": "Đại", + "lastName": "Hồ", + "image": "http://static.lolesports.com/players/1755156455251_GAM_Aress.png", + "role": "mid" + }, + { + "id": "107251647709372417", + "summonerName": "Artemis", + "firstName": "Hung", + "lastName": "Tran Quoc ", + "image": "http://static.lolesports.com/players/1755156505186_GAM_Artemis.png", + "role": "bottom" + } + ] + }, + { + "id": "98767991959203254", + "slug": "team-one-e-sports", + "name": "Team oNe e-Sports", + "code": "ONEE", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/team-one-e-sports-a9i4akkk.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/team-one-e-sports-jq4bq9hm.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [] + }, + { + "id": "98767991963909522", + "slug": "young-generation", + "name": "Young Generation", + "code": "YG", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/young-generation-5nnaqdcs.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [] + }, + { + "id": "98926509883054987", + "slug": "dignitas", + "name": "Dignitas", + "code": "DIG", + "image": "http://static.lolesports.com/teams/DIG-FullonDark.png", + "alternativeImage": "http://static.lolesports.com/teams/DIG-FullonLight.png", + "backgroundImage": "http://static.lolesports.com/teams/DignitasDIG.png", + "status": "active", + "homeLeague": { + "name": "LTA North", + "region": "AMERICAS" + }, + "players": [] + }, + { + "id": "98926509884398584", + "slug": "clg", + "name": "CLG", + "code": "CLG", + "image": "http://static.lolesports.com/teams/1592590248482_CounterLogicGamingCLG-01-FullonDark.png", + "alternativeImage": "http://static.lolesports.com/teams/1592590248495_CounterLogicGamingCLG-03-FullonLight.png", + "backgroundImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/counter-logic-gaming-h4dy6boq.png", + "status": "active", + "homeLeague": { + "name": "LCS", + "region": "NORTH AMERICA" + }, + "players": [] + }, + { + "id": "98926509885559666", + "slug": "team-liquid", + "name": "Team Liquid", + "code": "TL", + "image": "http://static.lolesports.com/teams/1631820014208_tl-2021-worlds.png", + "alternativeImage": null, + "backgroundImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/team-liquid-4bj1d6p9.png", + "status": "active", + "homeLeague": { + "name": "LTA North", + "region": "AMERICAS" + }, + "players": [ + { + "id": "107492071007218117", + "summonerName": "Quid", + "firstName": "HYEONSEUNG", + "lastName": "Lim", + "image": "http://static.lolesports.com/players/1753349183025_image6322.png", + "role": "mid" + }, + { + "id": "99566408350815597", + "summonerName": "Josedeodo", + "firstName": "Brandon", + "lastName": "Villegas", + "image": "http://static.lolesports.com/players/1753347194592_image6420.png", + "role": "jungle" + }, + { + "id": "103103696693473944", + "summonerName": "Morgan", + "firstName": "Kitae", + "lastName": "Park", + "image": "http://static.lolesports.com/players/1758213645297_morgan.png", + "role": "top" + }, + { + "id": "98767991789638893", + "summonerName": "CoreJJ", + "firstName": "Yongin", + "lastName": "Jo", + "image": "http://static.lolesports.com/players/1726214772049_TL_1500x1500_COREJJ_03.png", + "role": "support" + }, + { + "id": "105510944671654183", + "summonerName": "Yeon", + "firstName": "Sean", + "lastName": "Sung", + "image": "http://static.lolesports.com/players/1726214767306_TL_1500x1500_YEON_03.png", + "role": "bottom" + } + ] + }, + { + "id": "98926509887041994", + "slug": "echo-fox", + "name": "Echo Fox", + "code": "FOX2", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/echo-fox-f3anfude.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/echo-fox-hk00srd4.png", + "backgroundImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/echo-fox-6pu1j60b.png", + "status": "active", + "homeLeague": { + "name": "LCS", + "region": "NORTH AMERICA" + }, + "players": [] + }, + { + "id": "98926509888999625", + "slug": "team-envy", + "name": "Team Envy", + "code": "TNV", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/team-envy-1tyrikdl.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/team-envy-i4es8cq5.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "LCS", + "region": "NORTH AMERICA" + }, + "players": [] + }, + { + "id": "98926509890832659", + "slug": "phoenix1", + "name": "Phoenix1", + "code": "P1", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/phoenix1-fw17w8yu.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "LCS", + "region": "NORTH AMERICA" + }, + "players": [] + }, + { + "id": "98926509892121852", + "slug": "flyquest", + "name": "FlyQuest", + "code": "FLY", + "image": "http://static.lolesports.com/teams/flyquest-new-on-dark.png", + "alternativeImage": "http://static.lolesports.com/teams/flyquest-new-on-dark.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LTA North", + "region": "AMERICAS" + }, + "players": [ + { + "id": "110219103969081067", + "summonerName": "Quad", + "firstName": "Suhyeong", + "lastName": "Song", + "image": "http://static.lolesports.com/players/1726214531962_FLY_1500x1500_QUAD_01.png", + "role": "mid" + }, + { + "id": "108369186353082038", + "summonerName": "Massu", + "firstName": "Abdulmalek", + "lastName": "Fahad", + "image": "http://static.lolesports.com/players/1726214536898_FLY_1500x1500_MASSU_01.png", + "role": "bottom" + }, + { + "id": "111686531260879329", + "summonerName": "Gakgos", + "firstName": "Bulut", + "lastName": "Ibrahim Samet", + "image": "http://static.lolesports.com/players/1753348399682_image6125.png", + "role": "top" + } + ] + }, + { + "id": "98926509893248042", + "slug": "eunited", + "name": "eUnited", + "code": "EUN", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/eunited-bqjs59ch.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "98926509791349145", + "summonerName": "GBM", + "firstName": " Chang-suk", + "lastName": "Lee", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/gbm-cdm6elrz.png", + "role": "mid" + }, + { + "id": "98926509835349325", + "summonerName": "Deftly", + "firstName": "Matthew", + "lastName": "Chen", + "image": "http://static.lolesports.com/players/eg-deftly.png", + "role": "bottom" + }, + { + "id": "98926509875444898", + "summonerName": "Potluck", + "firstName": "Nicholas", + "lastName": "Pollock", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/potluck-azm4wk0p.png", + "role": "jungle" + } + ] + }, + { + "id": "98926509894333434", + "slug": "gold-coin-united", + "name": "Gold Coin United", + "code": "GCU", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/gold-coin-united-iwq6t55n.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "98926509766240677", + "summonerName": "Santorin", + "firstName": "Lucas", + "lastName": "Larsen", + "image": "http://static.lolesports.com/players/1674832219242_DIG_SANTORIN.png", + "role": "jungle" + }, + { + "id": "98926509788403333", + "summonerName": "Fenix", + "firstName": "Jae Hoon", + "lastName": "Kim", + "image": "http://static.lolesports.com/players/1591812601548_dig-fenix-web.png", + "role": "mid" + }, + { + "id": "98926509781762959", + "summonerName": "MadLife", + "firstName": "Mingi", + "lastName": "Hong", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/madlife-ftt9xs0t.png", + "role": "support" + }, + { + "id": "98926509827425950", + "summonerName": "Rikara", + "firstName": "Richard", + "lastName": "Oh", + "image": "http://static.lolesports.com/players/1591817513789_tl-rikara.png", + "role": "bottom" + }, + { + "id": "98926509865179306", + "summonerName": "Whyin", + "firstName": "Ryan", + "lastName": "Karaszkiewicz", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/whyin-fiydxcd0.png", + "role": "support" + }, + { + "id": "98926509825156526", + "summonerName": "BonQuish", + "firstName": "Alec", + "lastName": "Warren", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/qwerm-9fij28rx.png", + "role": "mid" + } + ] + }, + { + "id": "98966373167983673", + "slug": "watch-platform", + "name": "Esports Watch Platform", + "code": "EWP", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/team-solomid-cg2byxoe.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [] + }, + { + "id": "98966373171152718", + "slug": "esports-mobile", + "name": "Esports Mobile", + "code": "ESPM", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/cloud9-gnd9b0gn.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "98966372002033894", + "summonerName": "6th Man", + "firstName": "test", + "lastName": "test", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "support" + } + ] + }, + { + "id": "99101098231517640", + "slug": "team-infernal-drake", + "name": "Team Infernal Drake", + "code": "IFL", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/team-infernal-drake-60egs7mn.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "99101098213925164", + "summonerName": "NoahMost", + "firstName": "Noah", + "lastName": "Mostacero", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/noahmost-hn2na1cn.png", + "role": "bottom" + }, + { + "id": "99101098222932482", + "summonerName": "TeeSum", + "firstName": "Christopher", + "lastName": "Fong", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/teesum-6jhq5ju5.png", + "role": "support" + }, + { + "id": "99101098226067248", + "summonerName": "Julien", + "firstName": "Julien", + "lastName": "Gelinas", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/julien-7qin8n6m.png", + "role": "mid" + } + ] + }, + { + "id": "99101098235663845", + "slug": "team-mountain-drake", + "name": "Team Mountain Drake", + "code": "MTN", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/team-mountain-drake-3x0zlweu.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [] + }, + { + "id": "99101098238810996", + "slug": "team-ocean-drake", + "name": "Team Ocean Drake", + "code": "OCN", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/team-ocean-drake-3dq5he.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [] + }, + { + "id": "99101098241729932", + "slug": "team-cloud-drake", + "name": "Team Cloud Drake", + "code": "CLD", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/team-cloud-drake-7gq2fyxx.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "99101098207785016", + "summonerName": "Linsanity", + "firstName": "Allen", + "lastName": "Lin", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/linsanity-e5ik3hjm.png", + "role": "mid" + }, + { + "id": "99101098212929911", + "summonerName": "League", + "firstName": "Ziqing", + "lastName": "Zhao", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/league-auo3znl8.png", + "role": "top" + }, + { + "id": "99101098217004625", + "summonerName": "Cao", + "firstName": "Johnson", + "lastName": "Cao", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/eclipse-htmtdr06.png", + "role": "bottom" + }, + { + "id": "99101098219033766", + "summonerName": "Fanatiik", + "firstName": "Gabriel", + "lastName": "Saucier", + "image": "http://static.lolesports.com/players/1591816596452_fly-fanatiik.png", + "role": "jungle" + }, + { + "id": "99101098223975703", + "summonerName": "Iron Pyrite", + "firstName": "Daniel", + "lastName": "Dietrich", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/iron-pyrite-hlj5m2jv.png", + "role": "support" + } + ] + }, + { + "id": "99124844353216570", + "slug": "lck-allstars", + "name": "LCK All-Stars", + "code": "LCK", + "image": "http://static.lolesports.com/teams/LCK.png", + "alternativeImage": "http://static.lolesports.com/teams/LCK-2.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "98767991747728851", + "summonerName": "Faker", + "firstName": "Sanghyeok", + "lastName": "Lee", + "image": "http://static.lolesports.com/players/1758213169113_faker.png", + "role": "mid" + }, + { + "id": "103495716771322725", + "summonerName": "Canna", + "firstName": "Changdong", + "lastName": "Kim", + "image": "http://static.lolesports.com/players/1754471449253_image6229.png", + "role": "top" + }, + { + "id": "100725844994345151", + "summonerName": "Canyon", + "firstName": "Gunbu", + "lastName": "Kim", + "image": "http://static.lolesports.com/players/1758212470925_canyon.png", + "role": "jungle" + }, + { + "id": "99566404532361623", + "summonerName": "Deft", + "firstName": "Hyeokgyu", + "lastName": "Kim", + "image": "http://static.lolesports.com/players/1718362955163_KT_Deft_784.png", + "role": "bottom" + }, + { + "id": "100725844993017474", + "summonerName": "BeryL", + "firstName": "Geonhee", + "lastName": "Jo", + "image": "http://static.lolesports.com/players/1758212285201_beryl.png", + "role": "support" + }, + { + "id": "98767975922221493", + "summonerName": "Ambition", + "firstName": "Chanyong", + "lastName": "Kang", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/ambition-c6ryvr2g.png", + "role": "jungle" + }, + { + "id": "99566404530651694", + "summonerName": "Pawn", + "firstName": "Wonseok", + "lastName": "Heo", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/pawn-1ibco5lc.png", + "role": "mid" + }, + { + "id": "98767975925797621", + "summonerName": "PraY", + "firstName": "Jongin", + "lastName": "Kim", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/pray-50bd4k72.png", + "role": "bottom" + }, + { + "id": "99566404529717522", + "summonerName": "Mata", + "firstName": "Sehyoung", + "lastName": "Cho", + "image": "http://static.lolesports.com/players/1718363604998_1_GEN_Mata_784.png", + "role": "support" + }, + { + "id": "105351771772281160", + "summonerName": "jisoo girl", + "firstName": " ", + "lastName": " ", + "image": "http://static.lolesports.com/players/silhouette-female.png", + "role": "jungle" + }, + { + "id": "105301761584326602", + "summonerName": "so urf", + "firstName": " ", + "lastName": " ", + "image": "http://static.lolesports.com/players/silhouette.png", + "role": "mid" + }, + { + "id": "103241395129820951", + "summonerName": "NaRaKyle", + "firstName": " ", + "lastName": " ", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/narakyle-ewx508ui.png", + "role": "bottom" + }, + { + "id": "99566404541748447", + "summonerName": "JeIIy", + "firstName": "Hokyeong", + "lastName": "Son", + "image": "http://static.lolesports.com/players/1674669963709_EMP.png", + "role": "support" + }, + { + "id": "105351772964708686", + "summonerName": "HO JIN LEE", + "firstName": " ", + "lastName": " ", + "image": "http://static.lolesports.com/players/silhouette.png", + "role": "top" + } + ] + }, + { + "id": "99124844354766222", + "slug": "pcs-all-stars", + "name": "PCS All-Stars", + "code": "PCS1", + "image": "http://static.lolesports.com/teams/PCS-01-FullonDark.png", + "alternativeImage": "http://static.lolesports.com/teams/PCS-03-FullonLight.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "99566406483827119", + "summonerName": "Hanabi", + "firstName": "Chia-Hsiang", + "lastName": "Su", + "image": "http://static.lolesports.com/players/1705750496046_JTHanabi.png", + "role": "top" + }, + { + "id": "99566406478943840", + "summonerName": "Kongyue", + "firstName": "Jen-Tso", + "lastName": "Hsiao", + "image": "http://static.lolesports.com/players/1705750526427_JTKongyue.png", + "role": "jungle" + }, + { + "id": "99566406481429847", + "summonerName": "Uniboy", + "firstName": "Chang-Ju", + "lastName": "Chen", + "image": "http://static.lolesports.com/players/1656576745467_Uniboy.png", + "role": "mid" + }, + { + "id": "98767975916831837", + "summonerName": "Unified", + "firstName": "Chun-Kit", + "lastName": "Wong", + "image": "http://static.lolesports.com/players/1656576307757_Unified.png", + "role": "bottom" + }, + { + "id": "98767975956663486", + "summonerName": "Kaiwing", + "firstName": "Kai Wing", + "lastName": "Ling", + "image": "http://static.lolesports.com/players/1744279794274_CFO_Kaiwing.png", + "role": "support" + } + ] + }, + { + "id": "99124844355850858", + "slug": "lcs-all-stars", + "name": "LCS All-Stars", + "code": "LCSS", + "image": "http://static.lolesports.com/teams/lcs-light.png", + "alternativeImage": "http://static.lolesports.com/teams/lcs-dark.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "98767991798919851", + "summonerName": "Jensen", + "firstName": "Nicolaj", + "lastName": "Jensen", + "image": "http://static.lolesports.com/players/1674832180299_DIG_JENSEN.png", + "role": "mid" + }, + { + "id": "101196442875625194", + "summonerName": "Voyboy", + "firstName": "Joedat", + "lastName": "Esfahani", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/voyboy-35qifbhc.png", + "role": "top" + }, + { + "id": "98926509752357099", + "summonerName": "Meteos XXD", + "firstName": "William", + "lastName": "Hartman", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/meteos-e17ea8ha.png", + "role": "jungle" + }, + { + "id": "101196466443266155", + "summonerName": "Shiphtur", + "firstName": "Danny", + "lastName": "Le", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/shiphtur-592aplau.png", + "role": "mid" + }, + { + "id": "105352096546152305", + "summonerName": "BunnyFuFuu", + "firstName": " ", + "lastName": " ", + "image": "http://static.lolesports.com/players/silhouette.png", + "role": "support" + }, + { + "id": "103241300684286596", + "summonerName": "Tyler1", + "firstName": " ", + "lastName": " ", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/tyler1-j4ysvnf6.png", + "role": "bottom" + }, + { + "id": "103241300685466246", + "summonerName": "Yassuo", + "firstName": " ", + "lastName": " ", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/yassuo-7jq30aoy.png", + "role": "mid" + }, + { + "id": "105351856828768667", + "summonerName": "Trick2g", + "firstName": " ", + "lastName": " ", + "image": "http://static.lolesports.com/players/silhouette.png", + "role": "jungle" + }, + { + "id": "105351857728317717", + "summonerName": "Starsmitten", + "firstName": " ", + "lastName": " ", + "image": "http://static.lolesports.com/players/silhouette.png", + "role": "support" + } + ] + }, + { + "id": "99124844356912967", + "slug": "lpl-allstars", + "name": "LPL All-Stars", + "code": "LPL", + "image": "http://static.lolesports.com/teams/LPL-01-FullonDark.png", + "alternativeImage": "http://static.lolesports.com/teams/LPL-03-FullonLight.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "101388912796120370", + "summonerName": "369", + "firstName": "Jiahao", + "lastName": "Bai", + "image": "http://static.lolesports.com/players/1753284775046_image676.png", + "role": "top" + }, + { + "id": "105351745859872958", + "summonerName": "gogoing", + "firstName": "Di-Ping", + "lastName": "Gao", + "image": "http://static.lolesports.com/players/silhouette.png", + "role": "top" + }, + { + "id": "105351727187617936", + "summonerName": "YuxiaoC", + "firstName": " ", + "lastName": " ", + "image": "http://static.lolesports.com/players/silhouette.png", + "role": "top" + }, + { + "id": "98767975907339236", + "summonerName": "Karsa", + "firstName": "Haohsuan ", + "lastName": "Hung", + "image": "http://static.lolesports.com/players/1755156989948_PSG_Karsa.png", + "role": "jungle" + }, + { + "id": "98767975913610880", + "summonerName": "Mlxg", + "firstName": "Shiyu", + "lastName": "Liu", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/mlxg-ar14580m.png", + "role": "jungle" + }, + { + "id": "105351728469368547", + "summonerName": "Gouyu", + "firstName": " ", + "lastName": " ", + "image": "http://static.lolesports.com/players/silhouette.png", + "role": "jungle" + }, + { + "id": "99566404811346612", + "summonerName": "Rookie", + "firstName": "Ui-jin", + "lastName": "Song", + "image": "http://static.lolesports.com/players/1753279186351_image638.png", + "role": "mid" + }, + { + "id": "100205572929954027", + "summonerName": "Zz1tai", + "firstName": "Zhihao", + "lastName": "Liu", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/zz1tai-hadyl6ic.png", + "role": "mid" + }, + { + "id": "105351729523449577", + "summonerName": "Zhixun", + "firstName": " ", + "lastName": " ", + "image": "http://static.lolesports.com/players/silhouette.png", + "role": "mid" + }, + { + "id": "99566404823220763", + "summonerName": "JackeyLove", + "firstName": "Wen Bo", + "lastName": "Yu", + "image": "http://static.lolesports.com/players/1753284454515_image6213.png", + "role": "bottom" + }, + { + "id": "99566404812992432", + "summonerName": "kRYST4L", + "firstName": "Pan", + "lastName": "Yang", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/kryst4l-e69s99ma.png", + "role": "bottom" + }, + { + "id": "103241453999965822", + "summonerName": "WEIXIAO", + "firstName": " ", + "lastName": " ", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/weixiao-i06r4xzq.png", + "role": "bottom" + }, + { + "id": "99566404837520336", + "summonerName": "Baolan", + "firstName": "Liu-Yi", + "lastName": "Wang", + "image": "http://static.lolesports.com/players/1593129883860_ig-baolan-web.png", + "role": "support" + }, + { + "id": "99566404816521797", + "summonerName": "Pyl", + "firstName": "Bo", + "lastName": "Chen", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/pyl-djukytrp.png", + "role": "support" + }, + { + "id": "99566404797325600", + "summonerName": "xiyang", + "firstName": "Bin", + "lastName": "Hu", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/xiyang-gk6koeub.png", + "role": "support" + } + ] + }, + { + "id": "99124844358677975", + "slug": "eu-lcs-allstars", + "name": "LEC All-Stars", + "code": "LEC", + "image": "http://static.lolesports.com/teams/LEC-01-FullonDark.png", + "alternativeImage": "http://static.lolesports.com/teams/LEC-03-FullonLight.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "99322214604295671", + "summonerName": "Vizicsacsi", + "firstName": "Tamás", + "lastName": "Kiss", + "image": "http://static.lolesports.com/players/1674835723473_BIG_Vizicsacsi.png", + "role": "top" + }, + { + "id": "100125291362652497", + "summonerName": "Amazing", + "firstName": "Maurice", + "lastName": "Stückenschneider", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/amazing-j84hbmzj.png", + "role": "jungle" + }, + { + "id": "99322214641403713", + "summonerName": "Exile", + "firstName": "Fabian", + "lastName": "Schubert", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/exile-fehlfuq1.png", + "role": "mid" + }, + { + "id": "99322214615055863", + "summonerName": "Samux", + "firstName": "Samuel", + "lastName": "Fernández Fort", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/samux-dr83t2e0.png", + "role": "bottom" + }, + { + "id": "98767991802971822", + "summonerName": "Mithy", + "firstName": "Alfonso", + "lastName": "Rodriguez", + "image": "http://static.lolesports.com/players/1633540339567_c9-mithy-w21.png", + "role": "support" + }, + { + "id": "105301794706621822", + "summonerName": "SivHD", + "firstName": " ", + "lastName": " ", + "image": "http://static.lolesports.com/players/silhouette.png", + "role": "top" + }, + { + "id": "104234308118395495", + "summonerName": "Overpow", + "firstName": "Remigiusz", + "lastName": "Pusch", + "image": "http://static.lolesports.com/players/1641978637098_placeholder.png", + "role": "jungle" + }, + { + "id": "101157821365097517", + "summonerName": "Noway", + "firstName": " Frederik", + "lastName": " Hinteregger", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/noway4u-a7d9nhe0.png", + "role": "mid" + }, + { + "id": "105301808272311686", + "summonerName": "Corobizar", + "firstName": " ", + "lastName": " ", + "image": "http://static.lolesports.com/players/silhouette.png", + "role": "bottom" + }, + { + "id": "99566406037526956", + "summonerName": "Elwind", + "firstName": "Kaan", + "lastName": "Atıcı", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/elwind-es712vju.png", + "role": "support" + }, + { + "id": "99322214662601038", + "summonerName": "Bwipo", + "firstName": "Gabriel", + "lastName": "Rau", + "image": "http://static.lolesports.com/players/1726214520661_FLY_1500x1500_BWIPO_01.png", + "role": "top" + }, + { + "id": "101389749296185236", + "summonerName": "Selfmade", + "firstName": "Oskar", + "lastName": "Boderek", + "image": "http://static.lolesports.com/players/1642003900086_selfmade.png", + "role": "jungle" + }, + { + "id": "100356590519370319", + "summonerName": "Humanoid", + "firstName": " Marek", + "lastName": "Brázda", + "image": "http://static.lolesports.com/players/1737733891965_humanoid.png", + "role": "mid" + }, + { + "id": "98767975961872793", + "summonerName": "Hans Sama", + "firstName": "Steven", + "lastName": "Liv", + "image": "http://static.lolesports.com/players/1754470386508_image6326.png", + "role": "bottom" + }, + { + "id": "99322214606051339", + "summonerName": "Hylissang", + "firstName": "Zdravets", + "lastName": "Iliev Galabov", + "image": "http://static.lolesports.com/players/1737735300163_hylissang.png", + "role": "support" + } + ] + }, + { + "id": "99124844360136487", + "slug": "all-stars-sea", + "name": "Southeast Asia All-Stars", + "code": "SEA", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/all-stars-sea-5wz0pf32.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/all-stars-sea-cpm3za05.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "98767975918707483", + "summonerName": "Levi", + "firstName": "Duy Khanh", + "lastName": "Do", + "image": "http://static.lolesports.com/players/1755156372575_GAM_Levi.png", + "role": "jungle" + }, + { + "id": "99124844349768542", + "summonerName": "Dantiz", + "firstName": "Joel Kah Heng", + "lastName": "Poon", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/dantiz-db7fu9i7.png", + "role": "bottom" + }, + { + "id": "99124844348872297", + "summonerName": "Patrick ARC", + "firstName": "Jin", + "lastName": "Lim", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/patrick-asimlot0.png", + "role": "mid" + }, + { + "id": "99124844350706229", + "summonerName": "Kra", + "firstName": "Charles Yaowei", + "lastName": "Teo", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/kra-a1yp7stb.png", + "role": "support" + } + ] + }, + { + "id": "99124844361058275", + "slug": "all-stars-cblol", + "name": "CBLOL All-Stars", + "code": "BR", + "image": "http://static.lolesports.com/teams/cblol-1.png", + "alternativeImage": "http://static.lolesports.com/teams/Union-2.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "99566407763820708", + "summonerName": "Robo", + "firstName": "Leonardo", + "lastName": "Souza", + "image": "http://static.lolesports.com/players/1753430049019_image6520.png", + "role": "top" + }, + { + "id": "100205576295412145", + "summonerName": "CarioK", + "firstName": "Marcos", + "lastName": "Oliveira", + "image": "http://static.lolesports.com/players/1737724620517_image629.png", + "role": "jungle" + }, + { + "id": "99566407748213242", + "summonerName": "tinowns1", + "firstName": "Thiago", + "lastName": "Sartori", + "image": "http://static.lolesports.com/players/1737723956679_image626.png", + "role": "mid" + }, + { + "id": "99124844334208030", + "summonerName": "brTT", + "firstName": "Felipe", + "lastName": "Gonçalves", + "image": "http://static.lolesports.com/players/1717084128949_brTT.png", + "role": "bottom" + }, + { + "id": "100205576261590452", + "summonerName": "esA", + "firstName": "Eidi", + "lastName": "Yanagimachi", + "image": "http://static.lolesports.com/players/1593469371513_Esacopy.png", + "role": "support" + } + ] + }, + { + "id": "99124844362174905", + "slug": "all-stars-tur", + "name": "TCL All-Stars", + "code": "TCL", + "image": "http://static.lolesports.com/teams/tcl-white.png", + "alternativeImage": "http://static.lolesports.com/teams/tcl.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "99566406057001171", + "summonerName": "ARMUT", + "firstName": "İrfan", + "lastName": "Tükek", + "image": "http://static.lolesports.com/players/1717747169516_armut.png", + "role": "top" + }, + { + "id": "101471983581051272", + "summonerName": "Robin", + "firstName": "Emray", + "lastName": "Kurt", + "image": "http://static.lolesports.com/players/1658229070533_BJK-Robin.png", + "role": "jungle" + }, + { + "id": "101422616394001131", + "summonerName": "Blue", + "firstName": "Ersin", + "lastName": "Gören", + "image": "http://static.lolesports.com/players/1717746282730_blue.png", + "role": "mid" + }, + { + "id": "99124844344412747", + "summonerName": "Zeitnot", + "firstName": "Berkay", + "lastName": "Aşıkuzun", + "image": "http://static.lolesports.com/players/1687251869865_Zeitnot.png", + "role": "bottom" + }, + { + "id": "98767975920496624", + "summonerName": "Japone", + "firstName": "Bahadır", + "lastName": "Çolak", + "image": "http://static.lolesports.com/players/Japone.png", + "role": "support" + } + ] + }, + { + "id": "99294153824386385", + "slug": "golden-guardians", + "name": "Golden Guardians", + "code": "GG", + "image": "http://static.lolesports.com/teams/1592590586919_GoldenGuardiansGGS-01-FullonDark.png", + "alternativeImage": "http://static.lolesports.com/teams/1592590586931_GoldenGuardiansGGS-03-FullonLight.png", + "backgroundImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/golden-guardians-2hdmt70f.png", + "status": "active", + "homeLeague": { + "name": "LCS", + "region": "NORTH AMERICA" + }, + "players": [] + }, + { + "id": "99294153826603341", + "slug": "clutch-gaming", + "name": "Clutch Gaming", + "code": "CLU", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/clutch-gaming-83a00582.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/clutch-gaming-d55smutj.png", + "backgroundImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/clutch-gaming-8hhlrb0h.png", + "status": "active", + "homeLeague": { + "name": "LCS", + "region": "NORTH AMERICA" + }, + "players": [] + }, + { + "id": "99294153828264740", + "slug": "100-thieves", + "name": "100 Thieves", + "code": "100T", + "image": "http://static.lolesports.com/teams/1631819887423_100t-2021-worlds.png", + "alternativeImage": null, + "backgroundImage": "http://static.lolesports.com/teams/1633026249718_100Thieves100.png", + "status": "active", + "homeLeague": { + "name": "LTA North", + "region": "AMERICAS" + }, + "players": [ + { + "id": "107492071007218117", + "summonerName": "Quid", + "firstName": "HYEONSEUNG", + "lastName": "Lim", + "image": "http://static.lolesports.com/players/1753349183025_image6322.png", + "role": "mid" + }, + { + "id": "104573330241006058", + "summonerName": "River", + "firstName": "Dong-woo", + "lastName": "Kim", + "image": "http://static.lolesports.com/players/1753349256246_image6519.png", + "role": "jungle" + }, + { + "id": "101383792840788117", + "summonerName": "Eyla", + "firstName": "Bill", + "lastName": "Nguyen", + "image": "http://static.lolesports.com/players/1753349045587_image6126.png", + "role": "support" + }, + { + "id": "99566406314527111", + "summonerName": "FBI", + "firstName": "Victor", + "lastName": "Huang", + "image": "http://static.lolesports.com/players/1753349110894_image6224.png", + "role": "bottom" + }, + { + "id": "107569568015156338", + "summonerName": "Sniper", + "firstName": "Rayan", + "lastName": "Shoura", + "image": "http://static.lolesports.com/players/1753349321239_image668.png", + "role": "top" + }, + { + "id": "99322408701435122", + "summonerName": "Dhokla", + "firstName": "Niship", + "lastName": "Doshi", + "image": "http://static.lolesports.com/players/1757745099429_image6222.png", + "role": "top" + } + ] + }, + { + "id": "99294153830557090", + "slug": "optic-gaming", + "name": "OpTic Gaming", + "code": "OPT", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/optic-gaming-2hm8y6fl.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/optic-gaming-91doi2zr.png", + "backgroundImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/optic-gaming-d81maws6.png", + "status": "active", + "homeLeague": { + "name": "LCS", + "region": "NORTH AMERICA" + }, + "players": [] + }, + { + "id": "99322214681521780", + "slug": "roccat", + "name": "ROCCAT", + "code": "ROC", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/roccat-bi4f8bs0.png", + "alternativeImage": null, + "backgroundImage": "http://euw.lolesports.com/", + "status": "active", + "homeLeague": { + "name": "LEC", + "region": "EMEA" + }, + "players": [] + }, + { + "id": "99322214683186795", + "slug": "h2k", + "name": "H2K", + "code": "H2K", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/h2k-6mbalx6s.png", + "alternativeImage": null, + "backgroundImage": "http://na.lolesports.com/", + "status": "active", + "homeLeague": { + "name": "LEC", + "region": "EMEA" + }, + "players": [] + }, + { + "id": "99322214684939974", + "slug": "unicorns-of-love", + "name": "Unicorns of Love", + "code": "UOL", + "image": "http://static.lolesports.com/teams/1643705940342_UOL_pink.png", + "alternativeImage": "http://static.lolesports.com/teams/1643705940344_UOL_pink.png", + "backgroundImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/unicorns-of-love-mswttvk.png", + "status": "active", + "homeLeague": { + "name": "LCL", + "region": "COMMONWEALTH OF INDEPENDENT STATES" + }, + "players": [ + { + "id": "102849485125168907", + "summonerName": "Invi", + "firstName": "Dmitrii", + "lastName": "Protasov", + "image": "http://static.lolesports.com/players/1644478305680_LE_Invi.png", + "role": "none" + }, + { + "id": "106977085710449341", + "summonerName": "Sheepy", + "firstName": "Fabian Alexander", + "lastName": "Mallant", + "image": "http://static.lolesports.com/players/1644478357128_LE_Sheepy.png", + "role": "none" + }, + { + "id": "103963729813922459", + "summonerName": "NoNholy", + "firstName": "Aleksandr", + "lastName": "Ovchinnikov", + "image": "http://static.lolesports.com/players/1644478518342_LE_NoNholy.png", + "role": "top" + }, + { + "id": "107615017108040536", + "summonerName": "xlolzorx", + "firstName": "Anatoly", + "lastName": "Shabanov", + "image": "http://static.lolesports.com/players/1644478660004_LE_xlolzorx.png", + "role": "support" + } + ] + }, + { + "id": "99322214687749536", + "slug": "giants-gaming", + "name": "Giants Gaming", + "code": "GIA", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/giants-gaming-23kvglp0.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/giants-gaming-hudymb7q.png", + "backgroundImage": "http://na.lolesports.com/", + "status": "archived", + "homeLeague": { + "name": "LEC", + "region": "EMEA" + }, + "players": [] + }, + { + "id": "99322214689444546", + "slug": "schalke-04", + "name": "Schalke 04", + "code": "S04", + "image": "http://static.lolesports.com/teams/1674832631362_PRM_S04-FullColorDarkBG.png", + "alternativeImage": "http://static.lolesports.com/teams/1674832631364_PRM_S04-FullColorDarkBG.png", + "backgroundImage": "http://static.lolesports.com/teams/S04.png", + "status": "archived", + "homeLeague": { + "name": "Prime League", + "region": "EMEA" + }, + "players": [ + { + "id": "105536930572842229", + "summonerName": "Cboi", + "firstName": "Casper Bo", + "lastName": "Simonsen", + "image": "https://static.lolesports.com/players/download.png", + "role": "jungle" + }, + { + "id": "101422616392231655", + "summonerName": "Pec0", + "firstName": "Ömer ", + "lastName": "Türgüt", + "image": "http://static.lolesports.com/players/1674125857434_Practice.png", + "role": "bottom" + }, + { + "id": "103877921700775793", + "summonerName": "Twiizt", + "firstName": "Elton ", + "lastName": "Spetsig", + "image": "http://static.lolesports.com/players/1674126507005_Twiizt.png", + "role": "support" + }, + { + "id": "99322214241694525", + "summonerName": "Sacre", + "firstName": "Toni", + "lastName": "Sabalić", + "image": "http://static.lolesports.com/players/1674834526716_S04_Sacre.png", + "role": "top" + }, + { + "id": "105519573596232348", + "summonerName": "Simpli", + "firstName": "Anselmi", + "lastName": "Rintanen", + "image": "http://static.lolesports.com/players/1674834523720_S04_Simpli.png", + "role": "mid" + } + ] + }, + { + "id": "99322214691747156", + "slug": "splyce", + "name": "Splyce", + "code": "SPY", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/splyce-alf6br1o.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/splyce-9rqms6sz.png", + "backgroundImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/splyce-3h8ed5c1.png", + "status": "active", + "homeLeague": { + "name": "LEC", + "region": "EMEA" + }, + "players": [ + { + "id": "99322214604295671", + "summonerName": "Vizicsacsi", + "firstName": "Tamás", + "lastName": "Kiss", + "image": "http://static.lolesports.com/players/1674835723473_BIG_Vizicsacsi.png", + "role": "top" + }, + { + "id": "99322214650476344", + "summonerName": "Norskeren", + "firstName": "Tore", + "lastName": "Hoel Eilertsen", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/norskeren-ev5ymz1.png", + "role": "support" + }, + { + "id": "101829651743198986", + "summonerName": "Sharp", + "firstName": "Anders", + "lastName": "Lilleengen", + "image": "http://static.lolesports.com/players/nordavind-sharp-lol.png", + "role": "jungle" + }, + { + "id": "99322214620375780", + "summonerName": "Kobbe", + "firstName": "Kasper", + "lastName": "Kobberup", + "image": "http://static.lolesports.com/players/1674150128740_kobbe.png", + "role": "bottom" + } + ] + }, + { + "id": "99322214695067838", + "slug": "team-vitality", + "name": "Team Vitality", + "code": "VIT", + "image": "http://static.lolesports.com/teams/1675865863968_Vitality_FullColor.png", + "alternativeImage": "http://static.lolesports.com/teams/1675865863970_Vitality_FullColor.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LEC", + "region": "EMEA" + }, + "players": [ + { + "id": "107605583684952312", + "summonerName": "Fleshy", + "firstName": "Kadir", + "lastName": "Kemiksiz", + "image": "http://static.lolesports.com/players/1754474766551_image6333.png", + "role": "support" + }, + { + "id": "107605411481021064", + "summonerName": "Naak Nako", + "firstName": "Kaan", + "lastName": "Okan", + "image": "http://static.lolesports.com/players/1754474936967_image6615.png", + "role": "top" + }, + { + "id": "102808840668792975", + "summonerName": "Czajek", + "firstName": "Mateusz", + "lastName": "Czajka", + "image": "http://static.lolesports.com/players/1754474698261_image6233.png", + "role": "mid" + }, + { + "id": "102787200044335760", + "summonerName": "Carzzy", + "firstName": "Matyáš", + "lastName": "Orság", + "image": "http://static.lolesports.com/players/1754474639765_image6137.png", + "role": "bottom" + }, + { + "id": "105503548109547493", + "summonerName": "Lyncas", + "firstName": "Linas", + "lastName": "Naunčikas", + "image": "http://static.lolesports.com/players/1754474872036_image6429.png", + "role": "jungle" + } + ] + }, + { + "id": "99566404577237650", + "slug": "kongdoo-monster", + "name": "Kongdoo Monster", + "code": "KDM1", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/najin-e-mfire-3zqwbtbv.png", + "alternativeImage": null, + "backgroundImage": "http://euw.lolesports.com/", + "status": "active", + "homeLeague": { + "name": "LCK", + "region": "KOREA" + }, + "players": [] + }, + { + "id": "99566404578577099", + "slug": "jin-air-green-wings", + "name": "Jin Air Green Wings", + "code": "JAG", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/jin-air-green-wings-hc0ywme6.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/jin-air-green-wings-19iscbo.png", + "backgroundImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/jin-air-green-wings-c5i67mhh.png", + "status": "active", + "homeLeague": { + "name": "LCK", + "region": "KOREA" + }, + "players": [] + }, + { + "id": "99566404579461230", + "slug": "kt-rolster", + "name": "kt Rolster", + "code": "KT", + "image": "http://static.lolesports.com/teams/kt_darkbackground.png", + "alternativeImage": "http://static.lolesports.com/teams/kt_whitebackground.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCK", + "region": "KOREA" + }, + "players": [ + { + "id": "99566404541006806", + "summonerName": "Aiming", + "firstName": "Haram", + "lastName": "Kim", + "image": "http://static.lolesports.com/players/1758212132435_aiming.png", + "role": "bottom" + }, + { + "id": "99566404556524630", + "summonerName": "Ghost", + "firstName": "Yongjun", + "lastName": "Jang", + "image": "http://static.lolesports.com/players/1655457270313_NS_Ghost_784x621.png", + "role": "support" + }, + { + "id": "108284723448093299", + "summonerName": "Pollu", + "firstName": "DongGyu", + "lastName": "Oh", + "image": "http://static.lolesports.com/players/1758213774429_pollu.png", + "role": "support" + }, + { + "id": "105501846040405864", + "summonerName": "Sylvie", + "firstName": "Seungbok", + "lastName": "Lee", + "image": "http://static.lolesports.com/players/1758214101879_sylvie.png", + "role": "jungle" + }, + { + "id": "99566404535234175", + "summonerName": "Effort", + "firstName": "Sangho", + "lastName": "Lee", + "image": "http://static.lolesports.com/players/1718364957106_BRO_Effort_F_784.png", + "role": "support" + }, + { + "id": "115609835379287175", + "summonerName": "Hwichan", + "firstName": "Hwichan", + "lastName": "Jeong", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "115609835794891478", + "summonerName": "FenRir", + "firstName": "Kangjun", + "lastName": "Park", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "113740958697763850", + "summonerName": "Sero", + "firstName": "Hyochan", + "lastName": "Ahn", + "image": "http://static.lolesports.com/players/1758213945373_sero.png", + "role": "top" + }, + { + "id": "98767975949926165", + "summonerName": "Bdd", + "firstName": " Bo seong", + "lastName": "Gwak", + "image": "http://static.lolesports.com/players/1758212255881_bdd.png", + "role": "mid" + }, + { + "id": "107492121209956865", + "summonerName": "PerfecT", + "firstName": "Seungmin", + "lastName": "Lee", + "image": "http://static.lolesports.com/players/1758213717937_perfect.png", + "role": "top" + }, + { + "id": "98767975940969117", + "summonerName": "Cuzz", + "firstName": "Uchan", + "lastName": "Mun", + "image": "http://static.lolesports.com/players/1758212647132_cuzz.png", + "role": "jungle" + } + ] + }, + { + "id": "99566404580578753", + "slug": "rox-tigers", + "name": "ROX Tigers", + "code": "ROX", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/koo-tigers-5xgsd4td.png", + "alternativeImage": null, + "backgroundImage": "http://euw.lolesports.com/", + "status": "active", + "homeLeague": { + "name": "LCK", + "region": "KOREA" + }, + "players": [] + }, + { + "id": "99566404581868574", + "slug": "kwangdong-freecs", + "name": "DN FREECS", + "code": "DNF", + "image": "http://static.lolesports.com/teams/1735904500256_DN_Freecslogo_profile.webp", + "alternativeImage": "http://static.lolesports.com/teams/1735904500256_DN_Freecslogo_profile.webp", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCK", + "region": "KOREA" + }, + "players": [ + { + "id": "103495716563691380", + "summonerName": "Pyosik", + "firstName": "Changhyeon", + "lastName": "Hong", + "image": "http://static.lolesports.com/players/1758213828770_pyosik.png", + "role": "none" + }, + { + "id": "100205573444701958", + "summonerName": "Life", + "firstName": "Jeongmin", + "lastName": "Kim", + "image": "http://static.lolesports.com/players/1758213555970_life.png", + "role": "none" + }, + { + "id": "109619813466553788", + "summonerName": "DDoiV", + "firstName": "Moonyoung", + "lastName": "Bang", + "image": "http://static.lolesports.com/players/1758212993151_ddoiv.png", + "role": "none" + }, + { + "id": "104284310661848687", + "summonerName": "Clozer", + "firstName": "Juhyeon", + "lastName": "Lee", + "image": "http://static.lolesports.com/players/1758212595327_clozer.png", + "role": "mid" + }, + { + "id": "102483272156027229", + "summonerName": "deokdam", + "firstName": "Daegil", + "lastName": "Seo", + "image": "http://static.lolesports.com/players/1758213021407_deokdam.png", + "role": "bottom" + }, + { + "id": "106267619732229182", + "summonerName": "Peter", + "firstName": "Yoon su", + "lastName": "Jeong", + "image": "http://static.lolesports.com/players/1758213739070_peter.png", + "role": "support" + }, + { + "id": "108205132580169451", + "summonerName": "Enosh", + "firstName": "Kyujun", + "lastName": "Kwak", + "image": "http://static.lolesports.com/players/1758213137643_enosh.png", + "role": "bottom" + }, + { + "id": "107151368646534014", + "summonerName": "Flip", + "firstName": "Sanguk", + "lastName": "Kim", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "111521915459246530", + "summonerName": "Quantum ", + "firstName": "Son", + "lastName": "Junghwan", + "image": "http://static.lolesports.com/players/1758213844839_quantrum.png", + "role": "support" + }, + { + "id": "108205130029559792", + "summonerName": "Lancer", + "firstName": "Jeongheum", + "lastName": "Han", + "image": "http://static.lolesports.com/players/1758213497389_lancer.png", + "role": "top" + }, + { + "id": "104266795407626462", + "summonerName": "DuDu", + "firstName": "Dongju", + "lastName": "Lee", + "image": "http://static.lolesports.com/players/1758213067140_dudu.png", + "role": "top" + } + ] + }, + { + "id": "99566404582851682", + "slug": "mvp", + "name": "MVP", + "code": "MVP", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/mvp-crin95t3.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCK", + "region": "KOREA" + }, + "players": [] + }, + { + "id": "99566404583626913", + "slug": "bbq-olivers", + "name": "bbq Olivers", + "code": "BBQ", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/bbq-olivers-h2f79ggm.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/bbq-olivers-117le7ic.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCK", + "region": "KOREA" + }, + "players": [] + }, + { + "id": "99566404584489570", + "slug": "ksv-esports", + "name": "KSV", + "code": "KSV", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/ksv-esports-552dh895.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCK", + "region": "KOREA" + }, + "players": [] + }, + { + "id": "99566404585387054", + "slug": "drx", + "name": "DRX", + "code": "DRX", + "image": "http://static.lolesports.com/teams/1672910733664_01.Basic_W.png", + "alternativeImage": "http://static.lolesports.com/teams/1672910733666_01.Basic_B.png", + "backgroundImage": "http://static.lolesports.com/teams/1596305602300_DragonXDRX.png", + "status": "active", + "homeLeague": { + "name": "LCK", + "region": "KOREA" + }, + "players": [ + { + "id": "102186438403674539", + "summonerName": "Rich", + "firstName": "Jaewon", + "lastName": "Lee", + "image": "http://static.lolesports.com/players/1758213898835_rich.png", + "role": "top" + }, + { + "id": "99566404534366144", + "summonerName": "Ucal", + "firstName": "Woohyun", + "lastName": "Son", + "image": "http://static.lolesports.com/players/1758214182600_ucal.png", + "role": "mid" + }, + { + "id": "105548653898118261", + "summonerName": "Andil", + "firstName": "Gwan-bin", + "lastName": "Mun", + "image": "http://static.lolesports.com/players/1758212240136_andil.png", + "role": "support" + }, + { + "id": "113560602730848023", + "summonerName": "LazyFeel", + "firstName": "Bao Minh", + "lastName": "Tran", + "image": "http://static.lolesports.com/players/1758213508073_lazyfeel.png", + "role": "bottom" + }, + { + "id": "108205131858552538", + "summonerName": "Vincenzo", + "firstName": "Seungmin", + "lastName": "Ha", + "image": "http://static.lolesports.com/players/1758214257085_vincenzo.png", + "role": "jungle" + }, + { + "id": "106267386230851795", + "summonerName": "Willer", + "firstName": "Junghyeun", + "lastName": "Kim", + "image": "http://static.lolesports.com/players/1718367678827_CL_FOX_Willer_784.png", + "role": "jungle" + }, + { + "id": "108205129853202408", + "summonerName": "Minous", + "firstName": "Minwoo", + "lastName": "Kang", + "image": "http://static.lolesports.com/players/1758213624215_minous.png", + "role": "support" + }, + { + "id": "107492072900515430", + "summonerName": "Winner", + "firstName": "JOOSUNG", + "lastName": "Woo", + "image": "http://static.lolesports.com/players/1686472041391_CL_GEN_Winner.png", + "role": "jungle" + }, + { + "id": "108205131402932252", + "summonerName": "Jiwoo", + "firstName": "Jiwoo", + "lastName": "Jung", + "image": "http://static.lolesports.com/players/1758213348318_jiwoo.png", + "role": "bottom" + }, + { + "id": "108205130568869560", + "summonerName": "Frog", + "firstName": "Minhoi", + "lastName": "Lee", + "image": "http://static.lolesports.com/players/1758213197451_frog.png", + "role": "top" + }, + { + "id": "114850386783533462", + "summonerName": "AKaJe", + "firstName": "Suhyeok", + "lastName": "Choi", + "image": "http://static.lolesports.com/players/1758212156718_akaje.png", + "role": "mid" + } + ] + }, + { + "id": "99566404845279652", + "slug": "oh-my-god", + "name": "Oh My God", + "code": "OMG", + "image": "http://static.lolesports.com/teams/1686821355861_OMG_2023_logo-01.png", + "alternativeImage": "http://static.lolesports.com/teams/1686821355862_OMG_2023_logo-01.png", + "backgroundImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/omg-idqs758p.png", + "status": "active", + "homeLeague": { + "name": "LPL", + "region": "CHINA" + }, + "players": [ + { + "id": "114363920373500363", + "summonerName": "charlotte", + "firstName": "Xue", + "lastName": "Le-Hui", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "107492044257978794", + "summonerName": "Moham", + "firstName": "Jaehun", + "lastName": "Jeong ", + "image": "http://static.lolesports.com/players/1718371018487_CL_DK_Moham_784.png", + "role": "support" + }, + { + "id": "101388912799069496", + "summonerName": "beishang", + "firstName": "Zhipeng ", + "lastName": "Jiang", + "image": "http://static.lolesports.com/players/1593136256473_we-beishang-web.png", + "role": "jungle" + }, + { + "id": "111726356065825358", + "summonerName": "Starry", + "firstName": "MING", + "lastName": "LEI", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "112127746513399887", + "summonerName": "Linfeng", + "firstName": "Qin", + "lastName": "Jia-Hao", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "109784647310737799", + "summonerName": "Hery", + "firstName": "HEYONG", + "lastName": "WANG", + "image": "http://static.lolesports.com/players/1675180774755_placeholder.png", + "role": "top" + }, + { + "id": "108477151747130094", + "summonerName": "haichao", + "firstName": "ZHANG", + "lastName": " HAI CHAO", + "image": "http://static.lolesports.com/players/1753283135023_image659.png", + "role": "mid" + }, + { + "id": "115728421202169788", + "summonerName": "re0", + "firstName": "HANYANG", + "lastName": "XU", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "110547813514542545", + "summonerName": "Tianzhen", + "firstName": "QIFAN", + "lastName": "GUO", + "image": "http://static.lolesports.com/players/1686825766713_placeholder.png", + "role": "jungle" + }, + { + "id": "114986208136812548", + "summonerName": "lamb", + "firstName": "ZHUOYA", + "lastName": "ZHANG", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "top" + } + ] + }, + { + "id": "99566404846951820", + "slug": "lgd-gaming", + "name": "Hangzhou LGD Gaming", + "code": "LGD", + "image": "http://static.lolesports.com/teams/LGD-FullonDark-1.png", + "alternativeImage": "http://static.lolesports.com/teams/LGD-FullonLight-1.png", + "backgroundImage": "http://static.lolesports.com/teams/LGDGamingLGD.png", + "status": "active", + "homeLeague": { + "name": "LPL", + "region": "CHINA" + }, + "players": [ + { + "id": "109784703569533478", + "summonerName": "Heng", + "firstName": "CUIHENG", + "lastName": "YANG", + "image": "http://static.lolesports.com/players/1675181633102_placeholder.png", + "role": "jungle" + }, + { + "id": "111726434869930501", + "summonerName": "Shaoye", + "firstName": "GUOBIN", + "lastName": "QIU", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "109784590066548371", + "summonerName": "Tangyuan", + "firstName": "YUHONG", + "lastName": "LIN", + "image": "http://static.lolesports.com/players/1675179901130_placeholder.png", + "role": "mid" + }, + { + "id": "114896148471733482", + "summonerName": "Sav1or", + "firstName": "Chou", + "lastName": "Guobin", + "image": "http://static.lolesports.com/players/1753282221446_image6310.png", + "role": "bottom" + }, + { + "id": "101388912805688644", + "summonerName": "Meteor", + "firstName": "Guohao ", + "lastName": "Zeng", + "image": "http://static.lolesports.com/players/1753282410483_image658.png", + "role": "jungle" + }, + { + "id": "113662612665448315", + "summonerName": "sasii", + "firstName": "Rui", + "lastName": " Yan", + "image": "http://static.lolesports.com/players/1753282326166_image6410.png", + "role": "top" + }, + { + "id": "113662612717221759", + "summonerName": "climber", + "firstName": "Hongtao", + "lastName": "Wu", + "image": "http://static.lolesports.com/players/1753282488354_image663.png", + "role": "jungle" + }, + { + "id": "109784477550680422", + "summonerName": "xqw", + "firstName": "XIAJIAN", + "lastName": "ZHENG", + "image": "http://static.lolesports.com/players/1753281804058_image6210.png", + "role": "mid" + }, + { + "id": "113662612771288963", + "summonerName": "Ycx", + "firstName": "Wenhao", + "lastName": "Zhao", + "image": "http://static.lolesports.com/players/1753281678326_image6112.png", + "role": "support" + } + ] + }, + { + "id": "99566404847770461", + "slug": "rare-atom", + "name": "RARE ATOM", + "code": "RA", + "image": "http://static.lolesports.com/teams/RA-FullonDark.png", + "alternativeImage": "http://static.lolesports.com/teams/RA-FullonLight.png", + "backgroundImage": "http://static.lolesports.com/teams/RareAtomRA.png", + "status": "active", + "homeLeague": { + "name": "LPL", + "region": "CHINA" + }, + "players": [] + }, + { + "id": "99566404848691211", + "slug": "invictus-gaming", + "name": "Invictus Gaming", + "code": "IG", + "image": "http://static.lolesports.com/teams/1634762917340_300px-Invictus_Gaming_logo.png", + "alternativeImage": "http://static.lolesports.com/teams/1592591780362_InvictusGamingIG-03-FullonLight.png", + "backgroundImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/invictus-gaming-ijpwreew.png", + "status": "active", + "homeLeague": { + "name": "LPL", + "region": "CHINA" + }, + "players": [ + { + "id": "99566404810113891", + "summonerName": "TheShy", + "firstName": "Seung-Lok", + "lastName": "Kang", + "image": "http://static.lolesports.com/players/1753279025857_image628.png", + "role": "top" + }, + { + "id": "99566404811346612", + "summonerName": "Rookie", + "firstName": "Ui-jin", + "lastName": "Song", + "image": "http://static.lolesports.com/players/1753279186351_image638.png", + "role": "mid" + }, + { + "id": "101388912814247335", + "summonerName": "GALA", + "firstName": "Wei ", + "lastName": "Chen", + "image": "http://static.lolesports.com/players/1753279816112_image656.png", + "role": "bottom" + }, + { + "id": "98767991785832912", + "summonerName": "Meiko", + "firstName": "Ye", + "lastName": "Tian", + "image": "http://static.lolesports.com/players/1753279382910_image648.png", + "role": "support" + }, + { + "id": "103478281359738222", + "summonerName": "Photic", + "firstName": "Qi-Shen ", + "lastName": "Ying", + "image": "http://static.lolesports.com/players/1753283493431_image691.png", + "role": "bottom" + }, + { + "id": "103461966880868232", + "summonerName": "Wei", + "firstName": "Yang-Wei ", + "lastName": "Yan", + "image": "http://static.lolesports.com/players/1753278909079_image6110.png", + "role": "jungle" + } + ] + }, + { + "id": "99566404850008779", + "slug": "lng-esports", + "name": "Suzhou LNG Ninebot Esports", + "code": "LNG", + "image": "http://static.lolesports.com/teams/1717487697003_LNGlogo.png", + "alternativeImage": "http://static.lolesports.com/teams/1717487697004_LNGlogo.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LPL", + "region": "CHINA" + }, + "players": [ + { + "id": "113662427929229043", + "summonerName": "Alley", + "firstName": "Yu", + "lastName": "Zhou", + "image": "http://static.lolesports.com/players/1753283293857_image664.png", + "role": "jungle" + }, + { + "id": "102192147302633932", + "summonerName": "Weiwei", + "firstName": "Bo-Han", + "lastName": "Wei", + "image": "http://static.lolesports.com/players/1753283383859_image675.png", + "role": "jungle" + }, + { + "id": "100205573984889078", + "summonerName": "MISSING", + "firstName": "Yunfeng ", + "lastName": "Lou", + "image": "http://static.lolesports.com/players/1696945640901_jdgmissing.png", + "role": "support" + }, + { + "id": "110547595875608233", + "summonerName": "1xn", + "firstName": "SAUNAM", + "lastName": "LI", + "image": "http://static.lolesports.com/players/1753285289574_image666.png", + "role": "bottom" + }, + { + "id": "111726460023550672", + "summonerName": "sheer", + "firstName": "WENJIE", + "lastName": "XU", + "image": "http://static.lolesports.com/players/1753278132090_image647.png", + "role": "top" + }, + { + "id": "105320703008048707", + "summonerName": "Croco", + "firstName": "Dongbeom", + "lastName": "Kim", + "image": "http://static.lolesports.com/players/1686474266172_DRX_Croco.png", + "role": "jungle" + }, + { + "id": "106288134875041032", + "summonerName": "BuLLDoG", + "firstName": "Taeyoung", + "lastName": "Lee", + "image": "http://static.lolesports.com/players/1758212395992_bulldog.png", + "role": "mid" + }, + { + "id": "108477153941144313", + "summonerName": "Zika", + "firstName": "Tang", + "lastName": " HuaYu", + "image": "http://static.lolesports.com/players/1753282696752_image6113.png", + "role": "top" + } + ] + }, + { + "id": "99566404852189289", + "slug": "jd-gaming", + "name": "Beijing JDG Intel Esports", + "code": "JDG", + "image": "http://static.lolesports.com/teams/1627457924722_29.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LPL", + "region": "CHINA" + }, + "players": [ + { + "id": "109784472606547975", + "summonerName": "Xiaoxu", + "firstName": "XINZU", + "lastName": "XU", + "image": "http://static.lolesports.com/players/1753280524049_image6111.png", + "role": "top" + }, + { + "id": "101971954398227333", + "summonerName": "JunJia", + "firstName": "Chun-Chia", + "lastName": "Yu", + "image": "http://static.lolesports.com/players/1744279675764_CFO_JunJia.png", + "role": "jungle" + }, + { + "id": "101388912814247335", + "summonerName": "GALA", + "firstName": "Wei ", + "lastName": "Chen", + "image": "http://static.lolesports.com/players/1753279816112_image656.png", + "role": "bottom" + }, + { + "id": "111726305547204259", + "summonerName": "Vampire", + "firstName": "ZHECAN", + "lastName": "ZHAO", + "image": "http://static.lolesports.com/players/1753286300763_image6119.png", + "role": "support" + }, + { + "id": "112772120821320830", + "summonerName": "HongQ", + "firstName": "MING-HUNG", + "lastName": "TSAI", + "image": "http://static.lolesports.com/players/1744279710042_CFO_HongQ.png", + "role": "mid" + }, + { + "id": "105516599464787723", + "summonerName": "Zhuo", + "firstName": "Xu-Zhuo", + "lastName": "Wang", + "image": "http://static.lolesports.com/players/1753282771671_image6211.png", + "role": "support" + }, + { + "id": "108477164655610574", + "summonerName": "Winkk", + "firstName": " RUI", + "lastName": "ZHANG", + "image": "http://static.lolesports.com/players/1753280684858_image629.png", + "role": "support" + }, + { + "id": "105516152837078491", + "summonerName": "Xun", + "firstName": "Li-Xun", + "lastName": "Peng", + "image": "http://static.lolesports.com/players/1753280864052_image649.png", + "role": "jungle" + } + ] + }, + { + "id": "99566404853058754", + "slug": "weibo-gaming", + "name": "WeiboGaming Faw Audi", + "code": "WBG", + "image": "http://static.lolesports.com/teams/1641202879910_3.png", + "alternativeImage": "http://static.lolesports.com/teams/1641202879910_1.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LPL", + "region": "CHINA" + }, + "players": [ + { + "id": "99566404820654675", + "summonerName": "Tian", + "firstName": "Tian-Liang", + "lastName": "Gao", + "image": "http://static.lolesports.com/players/1753285999185_image6316.png", + "role": "jungle" + }, + { + "id": "100205573983550103", + "summonerName": "Light", + "firstName": "Guang-Yu", + "lastName": "Wang", + "image": "http://static.lolesports.com/players/1753286144840_image6416.png", + "role": "bottom" + }, + { + "id": "98767975914916595", + "summonerName": "Xiaohu", + "firstName": "Yuanhao ", + "lastName": "Li", + "image": "http://static.lolesports.com/players/1753285759173_image6118.png", + "role": "mid" + }, + { + "id": "102191852281361066", + "summonerName": "Jiejie", + "firstName": "Li-Jie", + "lastName": "Zhao", + "image": "http://static.lolesports.com/players/1753279535357_image655.png", + "role": "jungle" + }, + { + "id": "106368692529261498", + "summonerName": "Elk", + "firstName": "Jiahao", + "lastName": "Zhao", + "image": "http://static.lolesports.com/players/1753276415881_image635.png", + "role": "bottom" + }, + { + "id": "111726064836555178", + "summonerName": "Erha", + "firstName": "XUYE", + "lastName": "SHI", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "support" + }, + { + "id": "108477153941144313", + "summonerName": "Zika", + "firstName": "Tang", + "lastName": " HuaYu", + "image": "http://static.lolesports.com/players/1753282696752_image6113.png", + "role": "top" + }, + { + "id": "105516622825169657", + "summonerName": "Breathe", + "firstName": "Chen", + "lastName": "Chen", + "image": "http://static.lolesports.com/players/1753286213305_image677.png", + "role": "top" + }, + { + "id": "99566404817393644", + "summonerName": "Crisp", + "firstName": "Qingsong", + "lastName": "Liu", + "image": "http://static.lolesports.com/players/1753285845967_image6216.png", + "role": "support" + } + ] + }, + { + "id": "99566404853854212", + "slug": "bilibili-gaming", + "name": "BILIBILI GAMING DREAMSMART", + "code": "BLG", + "image": "http://static.lolesports.com/teams/1682322954525_Bilibili_Gaming_logo_20211.png", + "alternativeImage": "http://static.lolesports.com/teams/1682322954527_Bilibili_Gaming_logo_20211.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LPL", + "region": "CHINA" + }, + "players": [ + { + "id": "107597339246973242", + "summonerName": "Beichuan", + "firstName": "LING", + "lastName": "YANG", + "image": "http://static.lolesports.com/players/1753276598301_image652.png", + "role": "jungle" + }, + { + "id": "110547957837987327", + "summonerName": "ON", + "firstName": "WENJUN", + "lastName": "LUO", + "image": "http://static.lolesports.com/players/1753276237787_image617.png", + "role": "support" + }, + { + "id": "99566404803543690", + "summonerName": "Knight", + "firstName": "Ding", + "lastName": "Zhuo", + "image": "http://static.lolesports.com/players/1753276332968_image625.png", + "role": "mid" + }, + { + "id": "103478281356330346", + "summonerName": "Bin", + "firstName": "Ze-Bin", + "lastName": "Chen", + "image": "http://static.lolesports.com/players/1753276513819_image645.png", + "role": "top" + }, + { + "id": "114907747505153919", + "summonerName": "Yxl", + "firstName": "YUXUAN", + "lastName": "LIU", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "105516152837078491", + "summonerName": "Xun", + "firstName": "Li-Xun", + "lastName": "Peng", + "image": "http://static.lolesports.com/players/1753280864052_image649.png", + "role": "none" + }, + { + "id": "102808727762706248", + "summonerName": "Shad0w", + "firstName": "Zhiqian", + "lastName": "Zhao", + "image": "http://static.lolesports.com/players/1726482371621_LNG.shad0w-24--_0603-14_42.png", + "role": "jungle" + } + ] + }, + { + "id": "99566404854685458", + "slug": "top-esports", + "name": "TOPESPORTS", + "code": "TES", + "image": "http://static.lolesports.com/teams/1592592064571_TopEsportsTES-01-FullonDark.png", + "alternativeImage": "http://static.lolesports.com/teams/1592592064573_TopEsportsTES-03-FullonLight.png", + "backgroundImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/top-esports-i4rk4nr3.png", + "status": "active", + "homeLeague": { + "name": "LPL", + "region": "CHINA" + }, + "players": [ + { + "id": "112478966902038460", + "summonerName": "fengyue", + "firstName": "RunLai", + "lastName": "Wang", + "image": "http://static.lolesports.com/players/1753284599150_image6413.png", + "role": "support" + }, + { + "id": "111726332971856422", + "summonerName": "naiyou", + "firstName": "ZIJIAN", + "lastName": "YANG", + "image": "http://static.lolesports.com/players/1753283991187_image6212.png", + "role": "jungle" + }, + { + "id": "113662801804437510", + "summonerName": "JiaQi", + "firstName": "Jiaqi", + "lastName": "Zi", + "image": "http://static.lolesports.com/players/1753277803617_image619.png", + "role": "bottom" + }, + { + "id": "112540645110902751", + "summonerName": "ZUIAN", + "firstName": "\tCheng", + "lastName": "Zi-Hao", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "top" + }, + { + "id": "115728508104344155", + "summonerName": "Nia1", + "firstName": "GUANGLU", + "lastName": "ZOU", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "mid" + }, + { + "id": "103817065229388803", + "summonerName": "Hang", + "firstName": "Ming-Hang", + "lastName": "Fu", + "image": "http://static.lolesports.com/players/1753284530837_image6313.png", + "role": "support" + }, + { + "id": "99566404823220763", + "summonerName": "JackeyLove", + "firstName": "Wen Bo", + "lastName": "Yu", + "image": "http://static.lolesports.com/players/1753284454515_image6213.png", + "role": "bottom" + }, + { + "id": "101388912796120370", + "summonerName": "369", + "firstName": "Jiahao", + "lastName": "Bai", + "image": "http://static.lolesports.com/players/1753284775046_image676.png", + "role": "top" + }, + { + "id": "106368556422916908", + "summonerName": "Creme", + "firstName": "Jian", + "lastName": "Lin", + "image": "http://static.lolesports.com/players/1753284699504_image6510.png", + "role": "mid" + } + ] + }, + { + "id": "99566404855553726", + "slug": "funplus-phoenix", + "name": "FunPlus Phoenix", + "code": "FPX", + "image": "http://static.lolesports.com/teams/1627457887494_7_720.png", + "alternativeImage": null, + "backgroundImage": "http://static.lolesports.com/teams/1633026211050_FunPlusPhoenixFPX.png", + "status": "active", + "homeLeague": { + "name": "LPL", + "region": "CHINA" + }, + "players": [ + { + "id": "102191852281361066", + "summonerName": "Jiejie", + "firstName": "Li-Jie", + "lastName": "Zhao", + "image": "http://static.lolesports.com/players/1753279535357_image655.png", + "role": "jungle" + }, + { + "id": "109784315829131585", + "summonerName": "Jwei", + "firstName": "JUN WEI", + "lastName": "SUN", + "image": "http://static.lolesports.com/players/1753278228103_image654.png", + "role": "support" + }, + { + "id": "111726460023550672", + "summonerName": "sheer", + "firstName": "WENJIE", + "lastName": "XU", + "image": "http://static.lolesports.com/players/1753278132090_image647.png", + "role": "top" + }, + { + "id": "108013460749990840", + "summonerName": "Care", + "firstName": "yang", + "lastName": "jie", + "image": "http://static.lolesports.com/players/1753278722199_image662.png", + "role": "mid" + }, + { + "id": "113662801804437510", + "summonerName": "JiaQi", + "firstName": "Jiaqi", + "lastName": "Zi", + "image": "http://static.lolesports.com/players/1753277803617_image619.png", + "role": "bottom" + }, + { + "id": "114879162946340227", + "summonerName": "iyy", + "firstName": "Ma", + "lastName": " Chen-Shuo", + "image": "http://static.lolesports.com/players/1753277870603_image627.png", + "role": "jungle" + }, + { + "id": "114902203400533793", + "summonerName": "hanghang", + "firstName": "YUHANG", + "lastName": "HUANG", + "image": "http://static.lolesports.com/players/1753277961303_image637.png", + "role": "support" + } + ] + }, + { + "id": "99566404856367466", + "slug": "anyones-legend", + "name": "Anyone's Legend", + "code": "AL", + "image": "http://static.lolesports.com/teams/1641199582689_.png", + "alternativeImage": "http://static.lolesports.com/teams/1641199582691_.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LPL", + "region": "CHINA" + }, + "players": [ + { + "id": "104287400430814502", + "summonerName": "Shanks", + "firstName": "Xiao-Jun", + "lastName": "Cui", + "image": "http://static.lolesports.com/players/1753275598704_image624.png", + "role": "mid" + }, + { + "id": "99566404819916503", + "summonerName": "Hope", + "firstName": "Jie", + "lastName": "Wang", + "image": "http://static.lolesports.com/players/1753275834230_image644.png", + "role": "bottom" + }, + { + "id": "105530584812980593", + "summonerName": "Kael", + "firstName": "Jinhong", + "lastName": "Kim", + "image": "http://static.lolesports.com/players/1753275748211_image634.png", + "role": "support" + }, + { + "id": "99566404812254466", + "summonerName": "Flandre", + "firstName": "Xuan-jun", + "lastName": "Li", + "image": "http://static.lolesports.com/players/1753275961153_image651.png", + "role": "top" + }, + { + "id": "99871276342823057", + "summonerName": "Tarzan", + "firstName": "Seungyong", + "lastName": "Lee", + "image": "http://static.lolesports.com/players/1753275480664_image616.png", + "role": "jungle" + } + ] + }, + { + "id": "99566405123587075", + "slug": "clg-academy", + "name": "CLG Challengers", + "code": "CLG", + "image": "http://static.lolesports.com/teams/1592590258668_CounterLogicGamingCLG-01-FullonDark.png", + "alternativeImage": "http://static.lolesports.com/teams/1592590258681_CounterLogicGamingCLG-03-FullonLight.png", + "backgroundImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/clg-academy-3jbh12zq.png", + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "112880372381731252", + "summonerName": "Ben01", + "firstName": "Ben", + "lastName": "Ben", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + } + ] + }, + { + "id": "99566405124618295", + "slug": "tl-academy", + "name": "Team Liquid Honda Challengers", + "code": "TLC", + "image": "http://static.lolesports.com/teams/1717424526172_TLXHONDALCSLockup_White.png", + "alternativeImage": "http://static.lolesports.com/teams/1717424526172_TLXHONDALCSLockup.png", + "backgroundImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/team-liquid-academy-cfvpmwxh.png", + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "98926509772289831", + "summonerName": "Mash", + "firstName": "Brandon", + "lastName": "Phan", + "image": "http://static.lolesports.com/players/1591816609782_fly-mash.png", + "role": "none" + }, + { + "id": "99322408711949607", + "summonerName": "Jenkins", + "firstName": "Thomas", + "lastName": "Tran", + "image": "http://static.lolesports.com/players/1674831765600_CLG_JENKINS.png", + "role": "top" + }, + { + "id": "107577679924578125", + "summonerName": "Kim Down", + "firstName": "Ethan", + "lastName": "Song", + "image": "http://static.lolesports.com/players/1674834107118_TL_KIM-DOWN.png", + "role": "support" + } + ] + }, + { + "id": "99566405125435312", + "slug": "optic-gaming-academy", + "name": "OpTic Gaming Academy", + "code": "OPTA", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/optic-gaming-academy-dvbu9s1m.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/optic-gaming-academy-c72fpnog.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "98926509752357099", + "summonerName": "Meteos XXD", + "firstName": "William", + "lastName": "Hartman", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/meteos-e17ea8ha.png", + "role": "jungle" + }, + { + "id": "98767975920161046", + "summonerName": "Crown", + "firstName": "Minho", + "lastName": "Lee", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/crown-6gx68cgb.png", + "role": "mid" + }, + { + "id": "98926509801119533", + "summonerName": "Gate", + "firstName": "Austin", + "lastName": "Yu", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/gate-fmz3y51z.png", + "role": "support" + }, + { + "id": "98926509803844880", + "summonerName": "Big", + "firstName": "Terry", + "lastName": "Chuong", + "image": "http://static.lolesports.com/players/1591816590506_fly-big.png", + "role": "support" + }, + { + "id": "101383793884673305", + "summonerName": "Scarlet", + "firstName": "Marcel", + "lastName": "Wiederhofer", + "image": "http://static.lolesports.com/players/1655828638137_SOLARY_SCARLET-picture.png", + "role": "mid" + } + ] + }, + { + "id": "99566405126602853", + "slug": "fly-academy", + "name": "FlyQuest NZXT Challengers", + "code": "FLYC", + "image": "http://static.lolesports.com/teams/1717424349486_FlyQuest_NZXT.png", + "alternativeImage": "http://static.lolesports.com/teams/1717424349487_FlyQuest_NZXT.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "104253650601859992", + "summonerName": "Chime", + "firstName": "Jonathan", + "lastName": "Pomponio", + "image": "http://static.lolesports.com/players/1674834295879_TSM_CHIME.png", + "role": "support" + }, + { + "id": "104738170992784944", + "summonerName": "Raqo", + "firstName": "Maximiliaan", + "lastName": "Temminck", + "image": "http://static.lolesports.com/players/1598177654349_czekolad-51vwzmjl.png", + "role": "none" + } + ] + }, + { + "id": "99566405127798575", + "slug": "tsm-academy", + "name": "TSM Challengers", + "code": "TSM", + "image": "http://static.lolesports.com/teams/1672824692454_White-Logo-Mark.png", + "alternativeImage": "http://static.lolesports.com/teams/1592590930454_TSMTSM-03-FullonLight.png", + "backgroundImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/tsm-academy-2qdqvcad.png", + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "112880372381731252", + "summonerName": "Ben01", + "firstName": "Ben", + "lastName": "Ben", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + } + ] + }, + { + "id": "99566405128626825", + "slug": "100-academy", + "name": "100 Thieves Challengers", + "code": "100", + "image": "http://static.lolesports.com/teams/1673449894046_100T_logo_color.png", + "alternativeImage": "http://static.lolesports.com/teams/1673449894047_100T_logo_color.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "112880372381731252", + "summonerName": "Ben01", + "firstName": "Ben", + "lastName": "Ben", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + } + ] + }, + { + "id": "99566405129589291", + "slug": "gg-academy", + "name": "Golden Guardians Challengers", + "code": "GG", + "image": "http://static.lolesports.com/teams/1592590683855_GoldenGuardiansGGS-01-FullonDark.png", + "alternativeImage": "http://static.lolesports.com/teams/1592590683868_GoldenGuardiansGGS-03-FullonLight.png", + "backgroundImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/golden-guardians-academy-ivr07bqg.png", + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "112880372381731252", + "summonerName": "Ben01", + "firstName": "Ben", + "lastName": "Ben", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + }, + { + "id": "113274373091739270", + "summonerName": "Spellzorzyy", + "firstName": "Daniel", + "lastName": "B", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "none" + } + ] + }, + { + "id": "99566405130451785", + "slug": "c9-academy", + "name": "Cloud9 Challengers", + "code": "C9", + "image": "http://static.lolesports.com/teams/1592590172107_Cloud9C9-01-FullonDark.png", + "alternativeImage": "http://static.lolesports.com/teams/1592590172119_Cloud9C9-03-FullonLight.png", + "backgroundImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/cloud9-academy-9c5icnbj.png", + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "103524169393525450", + "summonerName": "EMENES", + "firstName": "Minsu", + "lastName": "Jang", + "image": "http://static.lolesports.com/players/1674831424167_C9_EMENES.png", + "role": "mid" + } + ] + }, + { + "id": "99566405131343995", + "slug": "echo-fox-academy", + "name": "Echo Fox Academy", + "code": "FOXA", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/echo-fox-academy-bs7h53vi.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/echo-fox-academy-2lxufrf5.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "100205574874707229", + "summonerName": "Yusui", + "firstName": "David", + "lastName": "Bloomquist", + "image": "http://static.lolesports.com/players/dig-yusui.png", + "role": "mid" + }, + { + "id": "98926509779367797", + "summonerName": "Hakuho", + "firstName": "Nickolas", + "lastName": "Surgent", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/hakuho-4xbcxpsn.png", + "role": "support" + }, + { + "id": "98926509862489179", + "summonerName": "Fill", + "firstName": "Hyowon", + "lastName": "Lee", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/fill-gzvyt8va.png", + "role": "support" + }, + { + "id": "101682868539385672", + "summonerName": "Panda", + "firstName": "James", + "lastName": "Ding", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/an-obese-panda-inmengkn.png", + "role": "jungle" + }, + { + "id": "99322400853596994", + "summonerName": "Lost", + "firstName": "Lawrence", + "lastName": "Sze Yuy Hui", + "image": "http://static.lolesports.com/players/1674831494264_C9_LOST.png", + "role": "bottom" + } + ] + }, + { + "id": "99566405132177721", + "slug": "clutch-gaming-academy", + "name": "Clutch Gaming Academy", + "code": "CGA", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/clutch-gaming-academy-3anqqx8b.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "98926509799307954", + "summonerName": "Lira", + "firstName": "Taeyou", + "lastName": "Nam", + "image": "http://static.lolesports.com/players/1739477954329_ggsdgshh.png", + "role": "jungle" + }, + { + "id": "99101098208825497", + "summonerName": "Vulcan", + "firstName": "Philippe", + "lastName": "Laflamme", + "image": "http://static.lolesports.com/players/1739477742600_ggsdgs12.png", + "role": "support" + }, + { + "id": "99322392530987053", + "summonerName": "Sun", + "firstName": "Joshua", + "lastName": "Cook", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/sun-bg7ohqcm.png", + "role": "mid" + }, + { + "id": "98767991783220297", + "summonerName": "Huni", + "firstName": "Seung-hoon", + "lastName": "Heo", + "image": "http://static.lolesports.com/players/1655452129354_HUNI.png", + "role": "top" + }, + { + "id": "98767975927317955", + "summonerName": "Cody Sun", + "firstName": "Sun", + "lastName": "Liyu", + "image": "http://static.lolesports.com/players/1655828053256_MIRAGEELYANDRA_CODYSUN-picture.png", + "role": "bottom" + }, + { + "id": "98926509814242904", + "summonerName": "Damonte", + "firstName": "Tanner", + "lastName": "Damonte", + "image": "http://static.lolesports.com/players/100-damonte.png", + "role": "mid" + }, + { + "id": "99101098209886367", + "summonerName": "Rodov", + "firstName": "Tom", + "lastName": "Rodov", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/rodov-hoxn35al.png", + "role": "top" + }, + { + "id": "101383793883690263", + "summonerName": "MagerDanger", + "firstName": "Jason", + "lastName": "Magerkurth", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/magerdanger-e9ole59d.png", + "role": "jungle" + }, + { + "id": "99322416308717948", + "summonerName": "Joey", + "firstName": "Joseph", + "lastName": "Haslemann", + "image": "http://static.lolesports.com/players/1674833798997_IMT_JOEY.png", + "role": "support" + } + ] + }, + { + "id": "99566405685700956", + "slug": "oyunhizmetleri-e-spor-kulubu", + "name": "OYUNH?ZMETLER? E-SPOR KULÜBÜ", + "code": "OHM", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/oyunhizmetleri-e-spor-kulubu-bq8nsyn0.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [] + }, + { + "id": "99566405686518376", + "slug": "cilekler", + "name": "Çilekler", + "code": "CLK", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/cilekler-f238u6mx.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "99566405665948984", + "summonerName": "Aligan", + "firstName": "Yaşar Ali", + "lastName": "Can", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/aligan-f2k28vby.png", + "role": "top" + }, + { + "id": "99566405661654574", + "summonerName": "Splendor", + "firstName": "Görkem", + "lastName": "Karaman", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/splendor-iirwqs7n.png", + "role": "top" + }, + { + "id": "99566405674719738", + "summonerName": "Drogo", + "firstName": "Umut Çolak", + "lastName": "Erol", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/drogo-d9jel4j2.png", + "role": "bottom" + }, + { + "id": "99591585009210856", + "summonerName": "Backlund", + "firstName": "Jonathan", + "lastName": "Bäcklund", + "image": "http://static.lolesports.com/players/1674125175307_Backlund.png", + "role": "mid" + } + ] + }, + { + "id": "99566405687354702", + "slug": "p3p-esports", + "name": "P3P eSports", + "code": "P3P", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/p3p-esports-iljw943r.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "99566405670856320", + "summonerName": "Gaaloul", + "firstName": "Ali", + "lastName": "Gaaloul", + "image": "https://static.lolesports.com/players/download.png", + "role": "mid" + }, + { + "id": "99566405671590534", + "summonerName": "Eomer", + "firstName": "Ömer Faruk", + "lastName": "Altun", + "image": "https://static.lolesports.com/players/download.png", + "role": "bottom" + }, + { + "id": "99566405681550150", + "summonerName": "Muscle", + "firstName": "Deniz", + "lastName": "Ünal", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/muscle-2w6qsj8j.png", + "role": "jungle" + }, + { + "id": "99566405673197074", + "summonerName": "Monokotiledon", + "firstName": "Selim", + "lastName": "Özen", + "image": "https://static.lolesports.com/players/download.png", + "role": "top" + } + ] + }, + { + "id": "99566405688134373", + "slug": "besiktasarchive", + "name": "Besiktasarchive", + "code": "BJKK", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/besiktas-e67u3ffs.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/besiktas-6bwv7u0h.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "TCL", + "region": "EMEA" + }, + "players": [ + { + "id": "101422616401341179", + "summonerName": "Koearn kid", + "firstName": "Ahmad", + "lastName": "Charif", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/koearn-kid-4swgccr8.png", + "role": "mid" + }, + { + "id": "101471983581051272", + "summonerName": "Robin", + "firstName": "Emray", + "lastName": "Kurt", + "image": "http://static.lolesports.com/players/1658229070533_BJK-Robin.png", + "role": "jungle" + }, + { + "id": "102174499082445892", + "summonerName": "Anthrax", + "firstName": "Robbe", + "lastName": "Dobbeleers", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/anthrax-jdvryegz.png", + "role": "support" + }, + { + "id": "102382778790796244", + "summonerName": "Maintenance", + "firstName": "Abdulla", + "lastName": "Hapcan", + "image": "https://static.lolesports.com/players/download.png", + "role": "mid" + } + ] + }, + { + "id": "99566405688922507", + "slug": "team-cappadocia", + "name": "Team Cappadocia", + "code": "CAPI", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/team-cappadocia-14nv1svx.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "99566405659988575", + "summonerName": "XAppen", + "firstName": "Necati", + "lastName": "Sarıgül", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/appen-e2vgys7k.png", + "role": "jungle" + }, + { + "id": "99566405677078545", + "summonerName": "Guilford", + "firstName": "Arda", + "lastName": "Babada?", + "image": "https://static.lolesports.com/players/download.png", + "role": "top" + }, + { + "id": "99591600557372737", + "summonerName": "DarkSide", + "firstName": "Alejandro", + "lastName": "Gonzalez", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/darkside-c1utds31.png", + "role": "bottom" + } + ] + }, + { + "id": "99566405689737643", + "slug": "macro-maniacs-esports-club", + "name": "Macro Maniacs Esports Club", + "code": "MCM", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/macro-maniacs-esports-club-hsb5be79.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/macro-maniacs-esports-club-a2zb77r7.png", + "backgroundImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/macro-maniacs-esports-club-28q1atst.png", + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "99591620744134953", + "summonerName": "DRIFTER", + "firstName": "Oleg", + "lastName": "Ralchenko", + "image": "http://static.lolesports.com/players/pobrane1.png", + "role": "jungle" + }, + { + "id": "99566405680831014", + "summonerName": "Troop", + "firstName": "Batuhan", + "lastName": "Bükrüba?", + "image": "https://static.lolesports.com/players/download.png", + "role": "top" + }, + { + "id": "99566405663224272", + "summonerName": "LongB", + "firstName": "Serkan", + "lastName": "Ülkücü", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/longb-8rli23hk.png", + "role": "mid" + }, + { + "id": "99566405679364374", + "summonerName": "Cube ARCH", + "firstName": " Chang-sung", + "lastName": "Kim", + "image": "http://static.lolesports.com/players/1593135904403_vg-cube-web.png", + "role": "top" + } + ] + }, + { + "id": "99566405940157300", + "slug": "elite-wolves", + "name": "Elite Wolves", + "code": "EWS", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/elite-wolves-9tl45mxg.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/elite-wolves-76j70t4p.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "99566405774049602", + "summonerName": "rhOm ", + "firstName": "Alex ", + "lastName": "Chipana", + "image": "https://static.lolesports.com/players/download.png", + "role": "mid" + }, + { + "id": "99566405790919334", + "summonerName": "Force", + "firstName": "Josué", + "lastName": "Ccasani ", + "image": "https://static.lolesports.com/players/download.png", + "role": "top" + }, + { + "id": "99566405774752326", + "summonerName": "Iruga", + "firstName": "Mauricio ", + "lastName": "Chambi", + "image": "https://static.lolesports.com/players/download.png", + "role": "bottom" + }, + { + "id": "99566405794464918", + "summonerName": "Míkoto Suoh", + "firstName": "Jimmy", + "lastName": "Condor", + "image": "https://static.lolesports.com/players/download.png", + "role": "top" + }, + { + "id": "99566405936809582", + "summonerName": "Athyz", + "firstName": "Alejandro", + "lastName": "Nuñez", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/fuzion-aykb5xrb.png", + "role": "support" + }, + { + "id": "99566405792338559", + "summonerName": "Khael", + "firstName": "Carlos ", + "lastName": "Vilchez", + "image": "http://static.lolesports.com/players/silhouette.png", + "role": "support" + } + ] + }, + { + "id": "99566405941035284", + "slug": "fuego-old", + "name": "Fuego", + "code": "FGO", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/fuego-grwi7sx4.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/fuego-g6d7nazo.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [] + }, + { + "id": "99566405941863385", + "slug": "lyon-gaming", + "name": "LYON", + "code": "LYON", + "image": "http://static.lolesports.com/teams/1743717443673_isotypelyon-03.png", + "alternativeImage": "http://static.lolesports.com/teams/1743717443673_isotypelyon-03.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LTA North", + "region": "AMERICAS" + }, + "players": [ + { + "id": "105388936922706146", + "summonerName": "Berserker", + "firstName": "Mincheol", + "lastName": "Kim", + "image": "http://static.lolesports.com/players/1758212268095_berserker.png", + "role": "bottom" + }, + { + "id": "103103578076943629", + "summonerName": "Isles", + "firstName": "Jonah", + "lastName": "Rosario", + "image": "http://static.lolesports.com/players/1739478353611_ggsdgs123.png", + "role": "support" + }, + { + "id": "107577677538574806", + "summonerName": "Zamudo", + "firstName": "Frankie", + "lastName": "Lin", + "image": "http://static.lolesports.com/players/1756064582761_gracze_template1.png", + "role": "top" + }, + { + "id": "101389713966873995", + "summonerName": "Inspired", + "firstName": "Kacper", + "lastName": "Sloma", + "image": "http://static.lolesports.com/players/1726214526028_FLY_1500x1500_INSPIRED_02.png", + "role": "jungle" + }, + { + "id": "107492059066783320", + "summonerName": "Saint", + "firstName": "Sungin", + "lastName": "Kang", + "image": "http://static.lolesports.com/players/1739479237170_ggsdgs4.png", + "role": "mid" + } + ] + }, + { + "id": "99566405942747662", + "slug": "ordo-equitum", + "name": "Ordo Equitum", + "code": "OE", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/ordo-equitum-8bbcrnn4.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/ordo-equitum-4raeg9oj.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "99566405770463292", + "summonerName": "Pepii", + "firstName": "Isaac", + "lastName": "Flores Alvarado", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/pepiinero-cqb4mxsv.png", + "role": "mid" + }, + { + "id": "99566405788059580", + "summonerName": "Fas", + "firstName": "Benjamin ", + "lastName": "Hannon", + "image": "https://static.lolesports.com/players/download.png", + "role": "mid" + }, + { + "id": "99566405775800093", + "summonerName": "VorpalSwords", + "firstName": "Ruben ", + "lastName": "Dario Smith", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/xswrd-45fl3gr4.png", + "role": "top" + }, + { + "id": "99566405776547440", + "summonerName": "inkos", + "firstName": "Kevin", + "lastName": "Alpire", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/inkos-cta72qwb.png", + "role": "jungle" + }, + { + "id": "99566405931111794", + "summonerName": "Sandroxx", + "firstName": "Alonso ", + "lastName": "Reyes ", + "image": "https://static.lolesports.com/players/download.png", + "role": "jungle" + }, + { + "id": "99566405797447968", + "summonerName": "Ichiik46", + "firstName": "Arturo", + "lastName": "Llanas", + "image": "https://static.lolesports.com/players/download.png", + "role": "top" + }, + { + "id": "99566405934045321", + "summonerName": "Rèd", + "firstName": "Adrián ", + "lastName": "Cárdenas", + "image": "https://static.lolesports.com/players/download.png", + "role": "top" + }, + { + "id": "99566405932617216", + "summonerName": "Bucket", + "firstName": "Ángel", + "lastName": "Ossio", + "image": "http://static.lolesports.com/players/1642087551350_placeholder.png", + "role": "support" + } + ] + }, + { + "id": "99566405943935018", + "slug": "pex-team", + "name": "PEX Team", + "code": "PEX", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/pex-team-dfjlr40n.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/pex-team-7y716aph.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "99566405784238591", + "summonerName": "Bazu", + "firstName": "Andrés Felipe", + "lastName": "Núñez Campos", + "image": "https://static.lolesports.com/players/download.png", + "role": "top" + }, + { + "id": "99566405777290555", + "summonerName": "Donut", + "firstName": "Alonso", + "lastName": "Pacheco ", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/donut-cxnooz10.png", + "role": "bottom" + }, + { + "id": "99566405777952116", + "summonerName": "Suppa", + "firstName": "Alejandro ", + "lastName": "Restrepo", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/suppa-8ebeqbkv.png", + "role": "support" + }, + { + "id": "99566405769690449", + "summonerName": "Uri", + "firstName": "Uri", + "lastName": "Schölderle", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/uri-11lssufw.png", + "role": "mid" + }, + { + "id": "99566405790158078", + "summonerName": "Devil deGrey", + "firstName": "Victor", + "lastName": "Díaz", + "image": "https://static.lolesports.com/players/download.png", + "role": "jungle" + }, + { + "id": "99566405934668431", + "summonerName": "JeiiZe", + "firstName": "Juan ", + "lastName": "Rojas", + "image": "https://static.lolesports.com/players/download.png", + "role": "top" + } + ] + }, + { + "id": "99566405944694628", + "slug": "pixel-esports-club", + "name": "Pixel Esports Club", + "code": "PIXE", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/pixel-esports-club-bkwbovq7.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/pixel-esports-club-gl76pz48.png", + "backgroundImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/pixel-esports-club-7si7b74k.png", + "status": "archived", + "homeLeague": { + "name": "LLA", + "region": "LATIN AMERICA" + }, + "players": [ + { + "id": "112880372381731252", + "summonerName": "Ben01", + "firstName": "Ben", + "lastName": "Ben", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + } + ] + }, + { + "id": "99566406064558732", + "slug": "papara-supermassive", + "name": "Papara SuperMassive ", + "code": "SUP", + "image": "http://static.lolesports.com/teams/1737386438072_PaparaSupermassive.png", + "alternativeImage": "http://static.lolesports.com/teams/1737386438072_PaparaSupermassive.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "TCL", + "region": "EMEA" + }, + "players": [ + { + "id": "104251869095189646", + "summonerName": "CARRY", + "firstName": "Mustafa Selim", + "lastName": "Yılmaz", + "image": "http://static.lolesports.com/players/1717747202676_carry.png", + "role": "support" + }, + { + "id": "104251861472500857", + "summonerName": "OSMAN123", + "firstName": "Osman Meriç", + "lastName": "Çince", + "image": "http://static.lolesports.com/players/1705673049055_OSMAN123.png", + "role": "jungle" + }, + { + "id": "105320657222755563", + "summonerName": "Mask", + "firstName": "Sanghun", + "lastName": "Lee", + "image": "http://static.lolesports.com/players/1674833431098_USE_Mask.png", + "role": "mid" + }, + { + "id": "113190867426357324", + "summonerName": "Kaboom", + "firstName": "Osman Onur ", + "lastName": "Korkmaz", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "99566406057001171", + "summonerName": "ARMUT", + "firstName": "İrfan", + "lastName": "Tükek", + "image": "http://static.lolesports.com/players/1717747169516_armut.png", + "role": "top" + }, + { + "id": "105320695377750123", + "summonerName": "BAO", + "firstName": "Hyeonwoo", + "lastName": "Jeong", + "image": "http://static.lolesports.com/players/1687252689261_Bao.png", + "role": "bottom" + } + ] + }, + { + "id": "99566406065437842", + "slug": "dark-passage", + "name": "Dark Passage", + "code": "DP", + "image": "http://static.lolesports.com/teams/1674742208196_DP1x1.png", + "alternativeImage": "http://static.lolesports.com/teams/1674742208197_DP1x1.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "TCL", + "region": "EMEA" + }, + "players": [] + }, + { + "id": "99566406066182955", + "slug": "galakticos", + "name": "Galakticos", + "code": "GAL", + "image": "http://static.lolesports.com/teams/1673958056128_GAL.png", + "alternativeImage": "http://static.lolesports.com/teams/1673958056130_GAL.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "TCL", + "region": "EMEA" + }, + "players": [ + { + "id": "107605269443961326", + "summonerName": "Bayonet", + "firstName": "Samet", + "lastName": "Turak", + "image": "http://static.lolesports.com/players/1641926104836_placeholder.png", + "role": "top" + }, + { + "id": "103924150060595888", + "summonerName": "Phenomenal", + "firstName": "Emirkan", + "lastName": "Budak", + "image": "http://static.lolesports.com/players/1585756647381_silhouette.png", + "role": "mid" + }, + { + "id": "108562775060130802", + "summonerName": "nevermind", + "firstName": "Esen", + "lastName": "Bayram Eren ", + "image": "http://static.lolesports.com/players/1643734200321_silhouette_transparent.png", + "role": "bottom" + }, + { + "id": "111771276254464567", + "summonerName": "Scofield", + "firstName": "Erdem", + "lastName": "Turan", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "jungle" + }, + { + "id": "107605599645625121", + "summonerName": "Orrisot", + "firstName": "Kaan Batu", + "lastName": "Kocaöz", + "image": "http://static.lolesports.com/players/1641931142715_placeholder.png", + "role": "mid" + }, + { + "id": "101709753690578020", + "summonerName": "Lenom", + "firstName": "Yiğit", + "lastName": "Kantar", + "image": "http://static.lolesports.com/players/1705672373721_LENOM.png", + "role": "none" + }, + { + "id": "111624080912813154", + "summonerName": "QuartzOwl", + "firstName": "Kaan", + "lastName": "Kayhan", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + } + ] + }, + { + "id": "99566406067082726", + "slug": "oyunforcrew", + "name": "BeykentUni YouthCREW", + "code": "YC", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/oyunforcrew-5icrucc3.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/oyunforcrew-50lzkiyz.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "TCL", + "region": "EMEA" + }, + "players": [ + { + "id": "99566406053156232", + "summonerName": "Evenstar", + "firstName": "Raşit Deniz", + "lastName": "Cansever", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/evenstar-fdz9ufun.png", + "role": "mid" + }, + { + "id": "99566406037526956", + "summonerName": "Elwind", + "firstName": "Kaan", + "lastName": "Atıcı", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/elwind-es712vju.png", + "role": "top" + } + ] + }, + { + "id": "99566406068904329", + "slug": "hwa-gaming", + "name": "HWA GAMING", + "code": "HWA", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/hwa-gaming-hpzupz27.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/hwa-gaming-880boykp.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "TCL", + "region": "EMEA" + }, + "players": [] + }, + { + "id": "99566406069969565", + "slug": "info-yatrm-aurora", + "name": "Info Yatırım Aurora", + "code": "AUR", + "image": "http://static.lolesports.com/teams/1642680124253_aurora.png", + "alternativeImage": "http://static.lolesports.com/teams/1642680124259_aurora.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "TCL", + "region": "EMEA" + }, + "players": [ + { + "id": "104360097296530591", + "summonerName": "Kunduz", + "firstName": "Yiğit", + "lastName": "Öztürk", + "image": "http://static.lolesports.com/players/1655285939677_kunduz.png", + "role": "mid" + }, + { + "id": "108443043780900367", + "summonerName": "Pat", + "firstName": "Yong", + "lastName": "Lee Seung ", + "image": "http://static.lolesports.com/players/1655285959846_pat.png", + "role": "bottom" + }, + { + "id": "108443092728571288", + "summonerName": "AzizYildirm", + "firstName": "Aziz Yıldırım", + "lastName": "Oruç", + "image": "http://static.lolesports.com/players/1654710275682_silhouette_transparent1.png", + "role": "jungle" + }, + { + "id": "108640712595508226", + "summonerName": "Syfu", + "firstName": "Yusuf Emir ", + "lastName": "Özdemir", + "image": "http://static.lolesports.com/players/1657725712323_placeholder.png", + "role": "support" + } + ] + }, + { + "id": "99566406070802758", + "slug": "royal-bandits-e-sports", + "name": "Royal Youth", + "code": "RYL", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/royal-bandits-e-sports-hzvrfwi5.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/royal-bandits-e-sports-8od2xcmt.png", + "backgroundImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/royal-bandits-e-sports-hs8erza0.png", + "status": "archived", + "homeLeague": { + "name": "TCL", + "region": "EMEA" + }, + "players": [ + { + "id": "112880372381731252", + "summonerName": "Ben01", + "firstName": "Ben", + "lastName": "Ben", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "none" + } + ] + }, + { + "id": "99566406332122275", + "slug": "avant-garde", + "name": "Avant Gaming", + "code": "AV", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/avant-garde-7gkwxw1y.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/avant-garde-1vme0nxt.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [ + { + "id": "101383792842623127", + "summonerName": "gunkrab", + "firstName": "Vincent", + "lastName": "Lin", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/gunkrab-ciq8vcly.png", + "role": "bottom" + }, + { + "id": "101383792846227609", + "summonerName": "Chazz", + "firstName": "Jesse", + "lastName": "Mahoney", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/chazz-joswzn9c.png", + "role": "mid" + }, + { + "id": "103523945201750413", + "summonerName": "LeeSA", + "firstName": "Thomas", + "lastName": "Ma", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/leesa-adt93cvk.png", + "role": "jungle" + }, + { + "id": "102585842176777228", + "summonerName": "Api", + "firstName": "Yao", + "lastName": "Jianjing", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/api-48jy3jeu.png", + "role": "support" + }, + { + "id": "103643243250697054", + "summonerName": "Violet", + "firstName": "Vincent", + "lastName": "Wong", + "image": "http://static.lolesports.com/players/1745997118665_CHF_Violet.png", + "role": "bottom" + }, + { + "id": "99566406318648094", + "summonerName": "papryze", + "firstName": "Daniel", + "lastName": "Francis", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/papryze-8pkcfd6p.png", + "role": "top" + } + ] + }, + { + "id": "99566406332987990", + "slug": "the-chiefs", + "name": "The Chiefs Esports Club", + "code": "CHF", + "image": "http://static.lolesports.com/teams/1733833766423_ChiefsEsportsClub-CHF-Color1.png", + "alternativeImage": "http://static.lolesports.com/teams/1733833766423_ChiefsEsportsClub-CHF-Color1.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCP", + "region": "PACIFIC" + }, + "players": [] + }, + { + "id": "99566406334639907", + "slug": "legacy-esports", + "name": "Legacy Esports", + "code": "LGC", + "image": "http://static.lolesports.com/teams/LegacyEsportsLGC-01-FullonDark.png", + "alternativeImage": "http://static.lolesports.com/teams/LegacyEsportsLGC-03-FullonLight.png", + "backgroundImage": "http://static.lolesports.com/teams/LegacyEsportsLGC.png", + "status": "active", + "homeLeague": { + "name": "LCO", + "region": "OCEANIA" + }, + "players": [ + { + "id": "99566406305051650", + "summonerName": "Raid", + "firstName": "Julian", + "lastName": "Skordos", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/raid-cwfcbvm9.png", + "role": "none" + } + ] + }, + { + "id": "99566406335427532", + "slug": "sin-gaming", + "name": "Sin Gaming", + "code": "SINX", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/sin-gaming-bexu3lca.png", + "alternativeImage": null, + "backgroundImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/sin-gaming-baig23uz.png", + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "99566406290822016", + "summonerName": "Juves", + "firstName": "Brandon", + "lastName": "Defina", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/juves-6khixn0s.png", + "role": "jungle" + }, + { + "id": "99566406297297717", + "summonerName": "Cuden", + "firstName": "Mike", + "lastName": "Le", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/cuden-8fi39vao.png", + "role": "support" + }, + { + "id": "99566406323480540", + "summonerName": "Bdoink", + "firstName": "Dmitry", + "lastName": "Botov", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/bdoink-7qbcazud.png", + "role": "mid" + } + ] + }, + { + "id": "99566406336293850", + "slug": "bombers", + "name": "Bombers", + "code": "BMR", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/bombers-arf62z7w.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/bombers-cq6b45se.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "99566406298297158", + "summonerName": "Seb", + "firstName": "Sebastian", + "lastName": "De Cegile", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/seb-67x3wo5b.png", + "role": "jungle" + }, + { + "id": "99566406306192104", + "summonerName": "Mimic", + "firstName": "Jusung", + "lastName": "Min", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/mimic-jpri2op5.png", + "role": "top" + }, + { + "id": "99566406304021896", + "summonerName": "Looch", + "firstName": "Carlo", + "lastName": "La Civita", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/looch-3nzfax9q.png", + "role": "bottom" + }, + { + "id": "101796906584201389", + "summonerName": "Wilder", + "firstName": "Jin-woo", + "lastName": "Jeong", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/wilder-1xju5r4w.png", + "role": "jungle" + } + ] + }, + { + "id": "99566406337433739", + "slug": "tectonic", + "name": "Tectonic", + "code": "TTC", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/tectonic-2c1ac1mi.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/tectonic-5pmw6v2e.png", + "backgroundImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/tectonic-b9zhow8i.png", + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "100161188577845906", + "summonerName": "Trance", + "firstName": "Lawrence", + "lastName": "Amador", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/trance-64pcofeg.png", + "role": "support" + }, + { + "id": "99566406285169009", + "summonerName": "Sybol", + "firstName": "Lachlan", + "lastName": "Civil", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/sybol-7k0akrrs.png", + "role": "jungle" + }, + { + "id": "100161188612256982", + "summonerName": "Wake", + "firstName": "Chad", + "lastName": "Biddle", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/kmine-4ndk7jt7.png", + "role": "top" + }, + { + "id": "99101098214987800", + "summonerName": "Value", + "firstName": "Ross", + "lastName": "Luppino", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/value-89q6qtmb.png", + "role": "bottom" + } + ] + }, + { + "id": "99566406338282437", + "slug": "order", + "name": "ORDER", + "code": "ORD", + "image": "http://static.lolesports.com/teams/1642465715084_ORDER_LOGO_2021_ICON.png", + "alternativeImage": "http://static.lolesports.com/teams/1642465715087_ORDER_LOGO_2021_ICON-BLACK.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCO", + "region": "OCEANIA" + }, + "players": [ + { + "id": "105709413113050046", + "summonerName": "Maximize", + "firstName": "Maximus", + "lastName": "Yaremenko", + "image": "http://static.lolesports.com/players/silhouette.png", + "role": "top" + }, + { + "id": "103524841906404187", + "summonerName": "Puma", + "firstName": "Nathan", + "lastName": "Puma", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/puma-80649jmi.png", + "role": "bottom" + } + ] + }, + { + "id": "99566406490127625", + "slug": "taipei-j-team", + "name": "J Team", + "code": "JT", + "image": "http://static.lolesports.com/teams/1592588569647_JTeamJT-01-FullonDark.png", + "alternativeImage": "http://static.lolesports.com/teams/1592588569658_JTeamJT-03-FullonLight.png", + "backgroundImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/j-team-3hxk0o5i.png", + "status": "active", + "homeLeague": { + "name": "PCS", + "region": "HONG KONG, MACAU, TAIWAN" + }, + "players": [ + { + "id": "106548704012452390", + "summonerName": "Enso", + "firstName": "En-shuo", + "lastName": "Liang", + "image": "http://static.lolesports.com/players/1705750582938_JTEnso.png", + "role": "support" + }, + { + "id": "99566406478943840", + "summonerName": "Kongyue", + "firstName": "Jen-Tso", + "lastName": "Hsiao", + "image": "http://static.lolesports.com/players/1705750526427_JTKongyue.png", + "role": "jungle" + }, + { + "id": "111691750685479531", + "summonerName": "SoCool", + "firstName": "BO HSIN", + "lastName": "CHANG", + "image": "http://static.lolesports.com/players/1705750602423_JTSoCool.png", + "role": "jungle" + }, + { + "id": "104573177846147434", + "summonerName": "Yursan", + "firstName": "Sheng-Yu", + "lastName": "Wang", + "image": "http://static.lolesports.com/players/1645008362538_TSM_YURSAN_JERSEY_512x512.png", + "role": "support" + }, + { + "id": "106470390660915203", + "summonerName": "Likai", + "firstName": "LI KAI", + "lastName": "LIAO", + "image": "http://static.lolesports.com/players/1687500449396_BYGLIKAI.png", + "role": "top" + }, + { + "id": "111889105324133003", + "summonerName": "ChiCh1", + "firstName": "CI SYUAN", + "lastName": "WU", + "image": "https://s3.us-west-2.amazonaws.com/static.lolesports.com/players/default-headshot.png", + "role": "bottom" + }, + { + "id": "106470433772093952", + "summonerName": "Lauva", + "firstName": "SHING YU", + "lastName": "HUANG", + "image": "http://static.lolesports.com/players/1687503389228_JTLauva.png", + "role": "jungle" + }, + { + "id": "104573207505851728", + "summonerName": "minji", + "firstName": "Po-Wei", + "lastName": "Lu", + "image": "http://static.lolesports.com/players/1705750544685_JTMinji.png", + "role": "mid" + } + ] + }, + { + "id": "99566406493155041", + "slug": "machi-esports", + "name": "Machi Esports", + "code": "MCX", + "image": "http://static.lolesports.com/teams/1592588618196_MachiMCX-01-FullonDark.png", + "alternativeImage": "http://static.lolesports.com/teams/1592588618200_MachiMCX-03-FullonLight.png", + "backgroundImage": "http://static.lolesports.com/teams/1600111180661_MachiMCX.png", + "status": "active", + "homeLeague": { + "name": "PCS", + "region": "HONG KONG, MACAU, TAIWAN" + }, + "players": [ + { + "id": "98767975915355341", + "summonerName": "Gemini", + "firstName": "Chu-Xuan", + "lastName": "Huang", + "image": "http://static.lolesports.com/players/1705749263215_FAKGemini.png", + "role": "jungle" + }, + { + "id": "99566406476560672", + "summonerName": "Koala", + "firstName": "Zhi-Qiang", + "lastName": "Lin", + "image": "http://static.lolesports.com/players/1656573278481_Koala.png", + "role": "support" + }, + { + "id": "99566406484560238", + "summonerName": "Atlen", + "firstName": "Ya-Lun", + "lastName": "Sung", + "image": "http://static.lolesports.com/players/1675251823563_IMPAtlen.png", + "role": "bottom" + }, + { + "id": "106470392084689216", + "summonerName": "JimieN", + "firstName": "Hao-Chun", + "lastName": "Tseng", + "image": "http://static.lolesports.com/players/1744279293725_CHF_JimieN.png", + "role": "mid" + }, + { + "id": "104842024477242669", + "summonerName": "Dee", + "firstName": "Chun Ti", + "lastName": "Chen", + "image": "http://static.lolesports.com/players/1675252870572_HPSDee.png", + "role": "bottom" + } + ] + }, + { + "id": "99566406494784730", + "slug": "mad-team", + "name": "MAD Team", + "code": "MADD", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/mad-team-94v76ik7.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/mad-team-af3witlf.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "99566406480677699", + "summonerName": "Rock", + "firstName": "Chung-Ting", + "lastName": "Tsai", + "image": "http://static.lolesports.com/players/1656576816932_Rock.png", + "role": "bottom" + }, + { + "id": "99566406458635594", + "summonerName": "K", + "firstName": "Kai-Sheng", + "lastName": "Ke", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/k-85prm3hi.png", + "role": "support" + }, + { + "id": "99566406459329081", + "summonerName": "Breeze", + "firstName": "Chien-Yuan", + "lastName": "Huang", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/breeze-ipzs4oon.png", + "role": "bottom" + }, + { + "id": "99566406469528884", + "summonerName": "Benny", + "firstName": "Hsiu-Chi", + "lastName": "Lien", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/benny-37ns454l.png", + "role": "jungle" + }, + { + "id": "99566406478943840", + "summonerName": "Kongyue", + "firstName": "Jen-Tso", + "lastName": "Hsiao", + "image": "http://static.lolesports.com/players/1705750526427_JTKongyue.png", + "role": "jungle" + }, + { + "id": "99566406481429847", + "summonerName": "Uniboy", + "firstName": "Chang-Ju", + "lastName": "Chen", + "image": "http://static.lolesports.com/players/1656576745467_Uniboy.png", + "role": "mid" + } + ] + }, + { + "id": "99566406495581481", + "slug": "g-rex", + "name": "G-Rex", + "code": "GRX", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/g-rex-2m6hxphx.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/g-rex-9yqwuzfq.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "99566406474312906", + "summonerName": "PK", + "firstName": "Yu-Ting", + "lastName": "Hsieh", + "image": "http://static.lolesports.com/players/1600454902303_mcx-pk.png", + "role": "top" + }, + { + "id": "99566406475785471", + "summonerName": "Wuji", + "firstName": "Chia-Yu", + "lastName": "Yang", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/wuji-27yynarl.png", + "role": "mid" + }, + { + "id": "101428372788669869", + "summonerName": "Eason", + "firstName": "Yi Shen", + "lastName": "Yin", + "image": "https://static.lolesports.com/players/download.png", + "role": "support" + }, + { + "id": "99566406484560238", + "summonerName": "Atlen", + "firstName": "Ya-Lun", + "lastName": "Sung", + "image": "http://static.lolesports.com/players/1675251823563_IMPAtlen.png", + "role": "bottom" + }, + { + "id": "101428372799483325", + "summonerName": "Bruce", + "firstName": "Chih Chun", + "lastName": "Chiu", + "image": "http://static.lolesports.com/players/1600454849703_mcx-bruce.png", + "role": "bottom" + }, + { + "id": "98767991793433204", + "summonerName": "Mountain", + "firstName": "Zhao-Hong", + "lastName": "Xue", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/mountain-hi73o0uo.png", + "role": "jungle" + }, + { + "id": "98767975915355341", + "summonerName": "Gemini", + "firstName": "Chu-Xuan", + "lastName": "Huang", + "image": "http://static.lolesports.com/players/1705749263215_FAKGemini.png", + "role": "jungle" + }, + { + "id": "99566404806656089", + "summonerName": "Yoon", + "firstName": "Byung-yoon", + "lastName": "Kim", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/yoon-ilroqtws.png", + "role": "support" + } + ] + }, + { + "id": "99566406496467116", + "slug": "team-afro", + "name": "Team Afro", + "code": "AFR", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/team-afro-hxe48f2a.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "99842624879531422", + "summonerName": "PingPong", + "firstName": "Jinsoo", + "lastName": "Park", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/pingping-hzi2yb5a.png", + "role": "top" + }, + { + "id": "99842624880259725", + "summonerName": "Butter", + "firstName": "Hsien Ming", + "lastName": "Lee", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/butter-9pwsnoue.png", + "role": "jungle" + }, + { + "id": "99842624881007408", + "summonerName": "Moonblack", + "firstName": "Chung-Hong", + "lastName": "Leung", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/moonblack-aiakh6up.png", + "role": "mid" + }, + { + "id": "99842624881724740", + "summonerName": "Arttt", + "firstName": "Joung-hun", + "lastName": "Cho", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/art-ho5ktqsw.png", + "role": "bottom" + }, + { + "id": "99566406464850045", + "summonerName": "Zest2 XXD", + "firstName": "Ming", + "lastName": "Hsieh", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/suki-7jeo1zsd.png", + "role": "support" + }, + { + "id": "99566406466459618", + "summonerName": "Ninuo", + "firstName": "Jin-Long", + "lastName": "Huang", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/ninuo-1i9pbmv4.png", + "role": "top" + } + ] + }, + { + "id": "99566408217116828", + "slug": "intz", + "name": "INTZ", + "code": "ITZ", + "image": "http://static.lolesports.com/teams/1643056732785_INTZ_Logo_Principal_2022.png", + "alternativeImage": "http://static.lolesports.com/teams/1643056732787_INTZ_Logo_Principal_2022.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "CBLOL", + "region": "BRAZIL" + }, + "players": [ + { + "id": "105397226281231317", + "summonerName": "Dioge", + "firstName": "Diogenes", + "lastName": "Bispo", + "image": "http://static.lolesports.com/players/1717071757332_Dioge.png", + "role": "mid" + }, + { + "id": "111734539200315308", + "summonerName": "Lellis", + "firstName": "Pedro", + "lastName": "Henrique", + "image": "http://static.lolesports.com/players/1717432648553_Lellis.png", + "role": "top" + }, + { + "id": "111734539296970340", + "summonerName": "Namiru", + "firstName": "Daniel", + "lastName": "Lisboa", + "image": "http://static.lolesports.com/players/1717432498685_Namiru.png", + "role": "mid" + }, + { + "id": "111734539454717694", + "summonerName": "Rosa", + "firstName": "Davi", + "lastName": "Luiz", + "image": "http://static.lolesports.com/players/1717432270059_Rosa.png", + "role": "bottom" + }, + { + "id": "105397213952271308", + "summonerName": "Taara", + "firstName": "Leandro", + "lastName": "Monteiro", + "image": "http://static.lolesports.com/players/1717432423192_Taara.png", + "role": "bottom" + }, + { + "id": "99566407762355869", + "summonerName": "Jockster", + "firstName": "Luan", + "lastName": "Cardoso", + "image": "http://static.lolesports.com/players/1705515638883_Silhueta1.png", + "role": "support" + }, + { + "id": "111734539545821104", + "summonerName": "Sthe", + "firstName": "Sthefany", + "lastName": "Silva", + "image": "http://static.lolesports.com/players/1717432584655_Sthe.png", + "role": "support" + } + ] + }, + { + "id": "99566408217955692", + "slug": "pain-gaming", + "name": "paiN Gaming", + "code": "PAIN", + "image": "http://static.lolesports.com/teams/1674657011011_pain_logo_white.png", + "alternativeImage": "http://static.lolesports.com/teams/1674657070286_pain_preto.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LTA South", + "region": "AMERICAS" + }, + "players": [ + { + "id": "99566407783597200", + "summonerName": "TitaN", + "firstName": "Alexandre", + "lastName": "Lima", + "image": "http://static.lolesports.com/players/1737725000079_image632.png", + "role": "bottom" + }, + { + "id": "103495716778335083", + "summonerName": "Kuri", + "firstName": "Wonyoung", + "lastName": "Choi", + "image": "http://static.lolesports.com/players/1737724873629_image631.png", + "role": "support" + }, + { + "id": "101388913280994733", + "summonerName": "Wizer", + "firstName": "Euiseok", + "lastName": "Choi", + "image": "http://static.lolesports.com/players/1737725121923_image633.png", + "role": "top" + }, + { + "id": "100205576295412145", + "summonerName": "CarioK", + "firstName": "Marcos", + "lastName": "Oliveira", + "image": "http://static.lolesports.com/players/1737724620517_image629.png", + "role": "jungle" + }, + { + "id": "105501858782308228", + "summonerName": "Roamer", + "firstName": "Woojin", + "lastName": "Cho", + "image": "http://static.lolesports.com/players/1743851820973_roamer.png", + "role": "mid" + } + ] + }, + { + "id": "99566408219409348", + "slug": "vivo-keyd", + "name": "Vivo Keyd Stars", + "code": "VKS", + "image": "http://static.lolesports.com/teams/1670542079678_vks.png", + "alternativeImage": "http://static.lolesports.com/teams/1670541584344_vks.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LTA South", + "region": "AMERICAS" + }, + "players": [ + { + "id": "104266800049354578", + "summonerName": "Mireu", + "firstName": "Jobeen", + "lastName": "Jeong", + "image": "http://static.lolesports.com/players/1754037358233_mireu.png", + "role": "mid" + }, + { + "id": "112462312538183833", + "summonerName": "sarolu", + "firstName": "Victor", + "lastName": "Noguchi", + "image": "http://static.lolesports.com/players/1754037575571_sarolu.png", + "role": "jungle" + }, + { + "id": "105709404500072628", + "summonerName": "Kisee", + "firstName": "Van", + "lastName": "Vo", + "image": "http://static.lolesports.com/players/1754037520290_kise.png", + "role": "bottom" + }, + { + "id": "108395451349202875", + "summonerName": "Morttheus", + "firstName": "Matheus", + "lastName": "Motta", + "image": "http://static.lolesports.com/players/1754037391847_morttheus.png", + "role": "bottom" + }, + { + "id": "111734861025058911", + "summonerName": "bieLzera", + "firstName": "Gabriel", + "lastName": "Aparecido", + "image": "http://static.lolesports.com/players/1737726627692_image639.png", + "role": "jungle" + }, + { + "id": "105397234464043531", + "summonerName": "Disamis", + "firstName": "Pedro", + "lastName": "Cavalcante", + "image": "http://static.lolesports.com/players/1754037442082_disamis.png", + "role": "jungle" + }, + { + "id": "103743593842085398", + "summonerName": "scamber", + "firstName": "Pedro", + "lastName": "Maximiniano", + "image": "http://static.lolesports.com/players/1754037601928_scamber.png", + "role": "support" + }, + { + "id": "107559111166843860", + "summonerName": "Boal", + "firstName": "Felipe", + "lastName": "Boal", + "image": "http://static.lolesports.com/players/1754037466606_boal.png", + "role": "top" + }, + { + "id": "102181528883745160", + "summonerName": "Trymbi", + "firstName": "Adrian", + "lastName": "Trybus", + "image": "http://static.lolesports.com/players/1754037420305_trymbi.png", + "role": "support" + } + ] + }, + { + "id": "99566408220213759", + "slug": "cnb-e-sports-club", + "name": "CNB e-Sports Club", + "code": "CNB", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/cnb-e-sports-club-18yvbgr0.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/cnb-e-sports-club-1dhjar44.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "CBLOL", + "region": "BRAZIL" + }, + "players": [ + { + "id": "99566407752400901", + "summonerName": "pbO", + "firstName": "Pablo", + "lastName": "Tokuo", + "image": "http://static.lolesports.com/players/pbOcopy..png", + "role": "bottom" + }, + { + "id": "101383793175673515", + "summonerName": "Duclou", + "firstName": "Francisco", + "lastName": "Duclou", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/duclou-fmka9p52.png", + "role": "top" + }, + { + "id": "101383793075013803", + "summonerName": "Hawk", + "firstName": "Gabriel", + "lastName": "Gomes", + "image": "http://static.lolesports.com/players/1643229124465_Hawkcopy.png", + "role": "support" + }, + { + "id": "99566407766066262", + "summonerName": "Freire", + "firstName": "Matheus", + "lastName": "Freire", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/freire-eaotmubc.png", + "role": "jungle" + }, + { + "id": "102135522496703527", + "summonerName": "Vahvel", + "firstName": "Victor", + "lastName": "Vieira", + "image": "http://static.lolesports.com/players/1718124788502_Vahvel.png", + "role": "support" + }, + { + "id": "103103601288485001", + "summonerName": "Mental", + "firstName": "Jeong-yong", + "lastName": "Jin", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/mental-bvn4yj44.png", + "role": "jungle" + } + ] + }, + { + "id": "99566408221114231", + "slug": "kabum-esports", + "name": "KaBuM!", + "code": "KBM", + "image": "http://static.lolesports.com/teams/1671197541491_LOGO-KABUM-ESPORTS-2023-NEGATIVO-FUNDOPRETO.png", + "alternativeImage": "http://static.lolesports.com/teams/1671197541493_LOGO-KABUM-ESPORTS-2023-POSITIVO-FUNDOBRANCO.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "CBLOL", + "region": "BRAZIL" + }, + "players": [] + }, + { + "id": "99566408221961358", + "slug": "red-kalunga", + "name": "RED Canids Kalunga", + "code": "RED", + "image": "http://static.lolesports.com/teams/1631820575924_red-2021-worlds.png", + "alternativeImage": null, + "backgroundImage": "http://static.lolesports.com/teams/REDCanidsRED.png", + "status": "active", + "homeLeague": { + "name": "LTA South", + "region": "AMERICAS" + }, + "players": [ + { + "id": "111734845200890741", + "summonerName": "zynts", + "firstName": "Matheus", + "lastName": "Emanuel", + "image": "http://static.lolesports.com/players/1717437332679_Zynts.png", + "role": "top" + }, + { + "id": "99566408210057665", + "summonerName": "fNb", + "firstName": "Francisco", + "lastName": "Braz", + "image": "http://static.lolesports.com/players/1753347663832_image6124.png", + "role": "top" + }, + { + "id": "110434822594728434", + "summonerName": "DOOM", + "firstName": "Raí", + "lastName": "Yamada", + "image": "http://static.lolesports.com/players/1753347732786_image6222.png", + "role": "jungle" + }, + { + "id": "108395422235497387", + "summonerName": "frosty", + "firstName": "José", + "lastName": "Leal", + "image": "http://static.lolesports.com/players/1753347961414_image6517.png", + "role": "support" + }, + { + "id": "109656280616610105", + "summonerName": "Kaze", + "firstName": "Lucas", + "lastName": "Sebastian", + "image": "http://static.lolesports.com/players/1753347816072_image6321.png", + "role": "mid" + }, + { + "id": "113684241495506037", + "summonerName": "Mago", + "firstName": " Jean", + "lastName": " Dias ", + "image": "http://static.lolesports.com/players/1743851846626_mago.png", + "role": "mid" + }, + { + "id": "112462284750329945", + "summonerName": "Rabelo", + "firstName": "Guilherme", + "lastName": "Muniz", + "image": "http://static.lolesports.com/players/1753347887725_image6421.png", + "role": "bottom" + }, + { + "id": "111734539087870444", + "summonerName": "uZent", + "firstName": "Matheus", + "lastName": "Ferreira", + "image": "http://static.lolesports.com/players/1717436592048_Uzent.png", + "role": "support" + } + ] + }, + { + "id": "99566408222831088", + "slug": "liberty", + "name": "Liberty", + "code": "LBR", + "image": "http://static.lolesports.com/teams/1643305707691_RXfNcFMU.png", + "alternativeImage": "http://static.lolesports.com/teams/1643305798548_qiCw-xgg.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "CBLOL", + "region": "BRAZIL" + }, + "players": [ + { + "id": "105397207118950800", + "summonerName": "SkB", + "firstName": "Arthur", + "lastName": "Cruz", + "image": "http://static.lolesports.com/players/1717434233327_Skb.png", + "role": "top" + }, + { + "id": "111734539646539371", + "summonerName": "Levizin", + "firstName": "Levi", + "lastName": "Pedutti", + "image": "http://static.lolesports.com/players/1717434156811_Levi.png", + "role": "jungle" + }, + { + "id": "110434481071273383", + "summonerName": "carlins", + "firstName": "Brenno", + "lastName": "Teixeira", + "image": "http://static.lolesports.com/players/1705673337506_Silhueta1.png", + "role": "mid" + }, + { + "id": "111734539751595793", + "summonerName": "Kina", + "firstName": "Mauricio", + "lastName": "Alberti", + "image": "http://static.lolesports.com/players/1717434473789_Kina.png", + "role": "mid" + }, + { + "id": "111734539815360111", + "summonerName": "Leandrinn", + "firstName": "Leandro", + "lastName": "Zaneta", + "image": "http://static.lolesports.com/players/1717434278402_Leandrinn.png", + "role": "bottom" + }, + { + "id": "105397244556008388", + "summonerName": "Eryon", + "firstName": "Márcio", + "lastName": "Reis", + "image": "https://static.lolesports.com/players/download.png", + "role": "bottom" + } + ] + }, + { + "id": "99566408356697119", + "slug": "furious-gaming", + "name": "Furious Gaming", + "code": "FG", + "image": "http://static.lolesports.com/teams/1643036760739_furious-ColorLight.png", + "alternativeImage": "http://static.lolesports.com/teams/1643036760741_furious-ColorDark.png", + "backgroundImage": null, + "status": "active", + "homeLeague": null, + "players": [] + }, + { + "id": "99566408357507320", + "slug": "rebirth-esports", + "name": "Rebirth eSports", + "code": "RBXX", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/rebirth-esports-f51t9iiy.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "99566408324263362", + "summonerName": " lukasnegro", + "firstName": "Lukas Matias", + "lastName": "Vegas", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/-lukasnegro-8rwv491w.png", + "role": "top" + }, + { + "id": "99566408310768239", + "summonerName": "WARANGELUS", + "firstName": "Fabián", + "lastName": "Llanos", + "image": "http://static.lolesports.com/players/1654805347836_EMP.png", + "role": "bottom" + }, + { + "id": "99566408317679525", + "summonerName": "Rakyz", + "firstName": "Vicente", + "lastName": "Trautmann", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/rakyz-fol9llqw.png", + "role": "mid" + }, + { + "id": "99566408343629954", + "summonerName": "Burrito", + "firstName": "Francisco", + "lastName": "Cherres", + "image": "https://static.lolesports.com/players/download.png", + "role": "top" + }, + { + "id": "99566408349914542", + "summonerName": "Monk3", + "firstName": "Pablo", + "lastName": "Navia", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/monk-7jos5wwz.png", + "role": "mid" + }, + { + "id": "99566408349093642", + "summonerName": "Shadow", + "firstName": "Facundo", + "lastName": "Cuello", + "image": "http://static.lolesports.com/players/1674669103833_EMP.png", + "role": "support" + }, + { + "id": "99566408332960781", + "summonerName": "Rod", + "firstName": "Rodrigo", + "lastName": "Altieri", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/rod-cxumkym1.png", + "role": "jungle" + } + ] + }, + { + "id": "99566408358330419", + "slug": "isurus", + "name": "Isurus", + "code": "ISGG", + "image": "http://static.lolesports.com/teams/ISG.png", + "alternativeImage": "http://static.lolesports.com/teams/ISG.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": { + "name": "LLA", + "region": "LATIN AMERICA" + }, + "players": [] + }, + { + "id": "99566408360270013", + "slug": "hafnet-e-sports", + "name": "Hafnet E-Sports", + "code": "HAF", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/hafnet-e-sports-g118cqk9.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "99566408302876315", + "summonerName": "Badmilk", + "firstName": "Enrique", + "lastName": "Arbizu", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/badmilk-chxbfg9j.png", + "role": "support" + }, + { + "id": "99566408309744720", + "summonerName": "Khynmm", + "firstName": "Gabriel", + "lastName": "Alonso", + "image": "http://static.lolesports.com/players/1674670062273_EMP.png", + "role": "jungle" + }, + { + "id": "98767975975499222", + "summonerName": "Focho", + "firstName": "Matías", + "lastName": "Porto", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/focho-g2ts1af8.png", + "role": "bottom" + }, + { + "id": "99566408339108697", + "summonerName": "Gambite", + "firstName": "Omar", + "lastName": "Díaz-Muñoz", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/gambite-dr1ovziv.png", + "role": "mid" + }, + { + "id": "100118535085360376", + "summonerName": "Lesmartt", + "firstName": "Facundo", + "lastName": "Canteros", + "image": "http://static.lolesports.com/players/1645226439657_Lesmart-10.png", + "role": "mid" + }, + { + "id": "99566408329067987", + "summonerName": "Nothing", + "firstName": " Brandon", + "lastName": "Merlo", + "image": "http://static.lolesports.com/players/1718125814382_Nothing.png", + "role": "bottom" + }, + { + "id": "99566408302308705", + "summonerName": "Sunblast", + "firstName": "Juan Manuel", + "lastName": "Chapacu", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/sunblast-788epxg9.png", + "role": "top" + } + ] + }, + { + "id": "99566408361184145", + "slug": "dark-horse", + "name": "Dark Horse", + "code": "DH", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/dark-horse-1zqjlh43.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "99566408304196476", + "summonerName": "Leozuxo", + "firstName": "Leonardo", + "lastName": "Camicia", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/leozuxo-45l6uf49.png", + "role": "jungle" + }, + { + "id": "99566408523020743", + "summonerName": "Regi", + "firstName": "Juan ", + "lastName": "Curto", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/regi-fyopbuk5.png", + "role": "mid" + }, + { + "id": "99566408344596084", + "summonerName": "Rakyl", + "firstName": "Fernando", + "lastName": "Naranjo", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/rakyl-4v25dm51.png", + "role": "jungle" + }, + { + "id": "99566408329886296", + "summonerName": "Hazard", + "firstName": " Leandro", + "lastName": "Palavecino", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/hazard-cyz9qahj.png", + "role": "top" + }, + { + "id": "99566408345668828", + "summonerName": "Sonata", + "firstName": "Hugo", + "lastName": "Tello", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/sonata-gidewg66.png", + "role": "mid" + }, + { + "id": "99566408346501165", + "summonerName": "Tomnam", + "firstName": "Enzo", + "lastName": "Ferreira", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/tomnam-14n5h9s7.png", + "role": "bottom" + }, + { + "id": "99591817398894020", + "summonerName": "Woohee", + "firstName": "Paolo César", + "lastName": "Vicencio Maturana", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/woohee-9pdl799k.png", + "role": "support" + } + ] + }, + { + "id": "99566408361971893", + "slug": "legatum", + "name": "Legatum", + "code": "LGT", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/legatum-1ij9p8fc.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "99566408305165261", + "summonerName": "Helior", + "firstName": "Felipe", + "lastName": "Pastenes", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/helior-hp3s7tr4.png", + "role": "top" + }, + { + "id": "99566408312566106", + "summonerName": "ClatoS", + "firstName": "Claudio", + "lastName": "Navarrete", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/clatos-fce4wibj.png", + "role": "jungle" + }, + { + "id": "99566408334719121", + "summonerName": "Kirito", + "firstName": "Nicolás", + "lastName": "Olavarría", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/misteryous-amf9qdpc.png", + "role": "mid" + }, + { + "id": "99566408336463423", + "summonerName": "Tulz", + "firstName": "Marco", + "lastName": "Villani", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/tulz-iz3et4hs.png", + "role": "support" + }, + { + "id": "99921042945409971", + "summonerName": "Glory", + "firstName": "Matías", + "lastName": "Maldonado", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/glory-86mmhtrv.png", + "role": "support" + }, + { + "id": "99566408304881665", + "summonerName": "kiMi", + "firstName": "Cristian", + "lastName": "Aparicio", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/kimi-i0ow19tm.png", + "role": "bottom" + }, + { + "id": "100118558665940715", + "summonerName": "Follow", + "firstName": "Ignacio", + "lastName": "Anderson", + "image": "http://static.lolesports.com/players/1643048309772_Follow-3.png", + "role": "jungle" + } + ] + }, + { + "id": "99566408362840964", + "slug": "universidad-catolica-esports", + "name": "Universidad Católica Esports", + "code": "UC", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/universidad-catolica-esports-581nwijb.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "99566408303900050", + "summonerName": "Magico", + "firstName": "Matías", + "lastName": "Muñoz", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/magico-90jivp0i.png", + "role": "mid" + }, + { + "id": "99566408337290193", + "summonerName": "woofi", + "firstName": "Lucas", + "lastName": "Abadie", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/woofi-4itv6p0i.png", + "role": "jungle" + }, + { + "id": "99566408305908636", + "summonerName": "Nekha", + "firstName": "Franco", + "lastName": "Martínez", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/nekhazten-77619gyh.png", + "role": "support" + }, + { + "id": "99566408308172197", + "summonerName": "Lynn0", + "firstName": "Yasna", + "lastName": "Alfaro", + "image": "https://static.lolesports.com/players/download.png", + "role": "jungle" + }, + { + "id": "99566408310074418", + "summonerName": "Pudu", + "firstName": "Benjamín", + "lastName": "Maldonado", + "image": "https://static.lolesports.com/players/download.png", + "role": "mid" + }, + { + "id": "99566408309143001", + "summonerName": "AZR", + "firstName": "Ricardo", + "lastName": "Varas", + "image": "http://static.lolesports.com/players/default-headshot.png", + "role": "bottom" + } + ] + }, + { + "id": "99566408559973077", + "slug": "galactic-gaming", + "name": "Gaming Gaming", + "code": "GG", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/galactic-gaming-ehdtgq6c.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/galactic-gaming-ic9r5w8.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "99566408530022862", + "summonerName": "NerzhuL", + "firstName": "Iván", + "lastName": "Meza ", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/nerzhul-34gh8o80.png", + "role": "support" + }, + { + "id": "99566408529296078", + "summonerName": "1an", + "firstName": "Ian", + "lastName": "Espinosa", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/1an-39per7qn.png", + "role": "bottom" + }, + { + "id": "99566408538688779", + "summonerName": "Mazin0", + "firstName": "Daniel ", + "lastName": "Carbajal", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/mazino-d5oabdun.png", + "role": "top" + }, + { + "id": "99566408550394342", + "summonerName": "Agonistic", + "firstName": "Andrés", + "lastName": "Castro ", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/agonistic-9vudxs26.png", + "role": "jungle" + } + ] + }, + { + "id": "99566408560779438", + "slug": "dash9-gaming", + "name": "Dash9 Gaming", + "code": "D9", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/dash9-gaming-ahp39dmc.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/dash9-gaming-g2jpfqax.png", + "backgroundImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/dash9-gaming-bwd7tig0.jpg", + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "99566408530763605", + "summonerName": "Lulos", + "firstName": "Jack ", + "lastName": "Yang ", + "image": "https://static.lolesports.com/players/download.png", + "role": "mid" + }, + { + "id": "99566408531506418", + "summonerName": "Zeypher", + "firstName": "Esteban", + "lastName": "Cano", + "image": "http://static.lolesports.com/players/1626802984868_FG-Zeypher-July.png", + "role": "bottom" + }, + { + "id": "99566408533678280", + "summonerName": "Akunma", + "firstName": "Miguel ", + "lastName": "Aylas ", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/akunma-ayi3i24r.png", + "role": "top" + }, + { + "id": "99566408535783980", + "summonerName": "Fénec", + "firstName": "César ", + "lastName": "Bautista", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/fenec-8dhlwygn.png", + "role": "jungle" + }, + { + "id": "99566408541465213", + "summonerName": "Gralou", + "firstName": "Emanuel Alejandro", + "lastName": "Trasande", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/gralou-7fev1bc2.png", + "role": "support" + }, + { + "id": "99566408537963625", + "summonerName": "Leza", + "firstName": "Francisco", + "lastName": "Barragan", + "image": "http://static.lolesports.com/players/1753346930445_image6122.png", + "role": "mid" + } + ] + }, + { + "id": "99566408561605102", + "slug": "xten-esports", + "name": "XTEN Esports", + "code": "XTN", + "image": "http://static.lolesports.com/teams/XTN-Black-BG.png", + "alternativeImage": "http://static.lolesports.com/teams/XTN-White-BG.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LLA", + "region": "LATIN AMERICA" + }, + "players": [ + { + "id": "107844109400769906", + "summonerName": "ikRyong", + "firstName": "Geunhyeong ", + "lastName": "Kim ", + "image": "http://static.lolesports.com/players/1654806152240_EMP.png", + "role": "none" + }, + { + "id": "99921042946181537", + "summonerName": "Gankk", + "firstName": "Andrés", + "lastName": "Castro", + "image": "http://static.lolesports.com/players/1654806250643_EMP.png", + "role": "none" + }, + { + "id": "107581945933024326", + "summonerName": "Zlekt", + "firstName": "Tomás", + "lastName": "Flaker Garcés", + "image": "http://static.lolesports.com/players/1641570200605_placeholder.png", + "role": "none" + } + ] + }, + { + "id": "99566408562477641", + "slug": "infinity", + "name": "INFINITY", + "code": "INF", + "image": "http://static.lolesports.com/teams/1631820471748_inf-2021-worlds.png", + "alternativeImage": "http://static.lolesports.com/teams/INF-White-BG-NEW2.png", + "backgroundImage": "http://static.lolesports.com/teams/1633026277368_InfinityEsportsINF1.png", + "status": "active", + "homeLeague": { + "name": "LRN", + "region": "LATIN AMERICA NORTH" + }, + "players": [ + { + "id": "107559668094235248", + "summonerName": "Stepz", + "firstName": "Eloy", + "lastName": "Rodriguez", + "image": "http://static.lolesports.com/players/1742475543913_placeholder.png", + "role": "jungle" + }, + { + "id": "106332678041970629", + "summonerName": "Fatorix", + "firstName": "Emanuel ", + "lastName": "Mendez", + "image": "http://static.lolesports.com/players/1654804023665_EMP.png", + "role": "bottom" + }, + { + "id": "99921042943959644", + "summonerName": "TopLop", + "firstName": "Nicolás", + "lastName": "Marinoni", + "image": "http://static.lolesports.com/players/1753347565533_image6221.png", + "role": "support" + }, + { + "id": "109518818558571904", + "summonerName": "Nia", + "firstName": "Woo", + "lastName": "Jun Sung", + "image": "http://static.lolesports.com/players/1686346327698_Nia.png", + "role": "none" + } + ] + }, + { + "id": "99566408563253864", + "slug": "zaga-talent-gaming", + "name": "Zaga Talent Gaming", + "code": "ZTG", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/zaga-talent-gaming-4f3qdy0g.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/zaga-talent-gaming-dlaab4bx.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "99566408534404649", + "summonerName": "Julaxe", + "firstName": "Julián", + "lastName": "Escobar", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/julaxe-cmkubrcu.png", + "role": "jungle" + }, + { + "id": "99566408544558791", + "summonerName": "Pillo", + "firstName": "José ", + "lastName": "Martínez ", + "image": "https://static.lolesports.com/players/download.png", + "role": "top" + }, + { + "id": "99566408556068705", + "summonerName": "Alliance", + "firstName": "Josué", + "lastName": "Lara", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/alliance-2wwocyz5.png", + "role": "top" + }, + { + "id": "99566408554704481", + "summonerName": "zoiren", + "firstName": "Michal ", + "lastName": "Zíka", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/zoiren-aosyprin.png", + "role": "mid" + }, + { + "id": "99566408555359697", + "summonerName": "Andreus", + "firstName": "Eduardo ", + "lastName": "Pérez", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/andreus-j4tob9dr.png", + "role": "bottom" + }, + { + "id": "99566408551072549", + "summonerName": "Grisen", + "firstName": "Emil", + "lastName": "Brouwer", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/grisen-bic7rd4c.png", + "role": "support" + } + ] + }, + { + "id": "99566408564026255", + "slug": "6sense", + "name": "6Sense", + "code": "6SN", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/6sense-cvt9oihi.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/6sense-1v8yiag5.png", + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "99566408552585339", + "summonerName": "Nurak", + "firstName": "Luis", + "lastName": "Ordoñez", + "image": "https://static.lolesports.com/players/download.png", + "role": "bottom" + }, + { + "id": "99566408548128892", + "summonerName": "ShakeIt", + "firstName": "Kevin", + "lastName": "Carmona ", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/shakeit-9f0yfqhl.png", + "role": "bottom" + }, + { + "id": "99566408551851745", + "summonerName": "Itsi", + "firstName": "Ignacio", + "lastName": "García", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/itsi-32aqa1vh.png", + "role": "jungle" + }, + { + "id": "99566408548798069", + "summonerName": "Zelt", + "firstName": "Jairo", + "lastName": "Urbina", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/zelt-b05dx6m.png", + "role": "mid" + }, + { + "id": "99566408527814333", + "summonerName": "DCStar", + "firstName": "Carlos ", + "lastName": "Méndez ", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/dcstar-2dm1bvbl.png", + "role": "support" + }, + { + "id": "99566408535108217", + "summonerName": "Jer0m", + "firstName": "Jerónimo", + "lastName": "Pujades", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/jer0m-h1u28bu1.png", + "role": "top" + }, + { + "id": "99566408546681981", + "summonerName": "Unknown", + "firstName": "Carlos ", + "lastName": "Carranza ", + "image": "https://static.lolesports.com/players/download.png", + "role": "support" + } + ] + }, + { + "id": "99842624900371653", + "slug": "afro-beast", + "name": "Afro Beast", + "code": "AFB", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/afro-beast-hu3tjk5k.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "99842624881007408", + "summonerName": "Moonblack", + "firstName": "Chung-Hong", + "lastName": "Leung", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/moonblack-aiakh6up.png", + "role": "mid" + }, + { + "id": "99842624883099294", + "summonerName": "Error", + "firstName": "Chong Fai", + "lastName": "Sit", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/error-878o0o52.png", + "role": "mid" + }, + { + "id": "99842624882420857", + "summonerName": "Pandabb", + "firstName": "Hao", + "lastName": "Chen", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/pandabb-9mk6tfxg.png", + "role": "mid" + }, + { + "id": "99842624880259725", + "summonerName": "Butter", + "firstName": "Hsien Ming", + "lastName": "Lee", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/butter-9pwsnoue.png", + "role": "jungle" + }, + { + "id": "99842624879531422", + "summonerName": "PingPong", + "firstName": "Jinsoo", + "lastName": "Park", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/pingping-hzi2yb5a.png", + "role": "top" + }, + { + "id": "99842624887702578", + "summonerName": "SkuLL", + "firstName": "Kwok Man", + "lastName": "Ng", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/skull-5azwqrki.png", + "role": "support" + }, + { + "id": "99842624881724740", + "summonerName": "Arttt", + "firstName": "Joung-hun", + "lastName": "Cho", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/art-ho5ktqsw.png", + "role": "bottom" + } + ] + }, + { + "id": "99871276355364687", + "slug": "ever8-winners", + "name": "Ever8 Winners", + "code": "EEW", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/ever8-winners-a46dpv3k.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/ever8-winners-i75t5j2p.png", + "backgroundImage": null, + "status": "active", + "homeLeague": { + "name": "LCK", + "region": "KOREA" + }, + "players": [] + }, + { + "id": "99871276356460471", + "slug": "griffin", + "name": "Griffin", + "code": "GFF", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/griffin-bizfs7k2.png", + "alternativeImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/griffin-ekp2xuw1.png", + "backgroundImage": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/griffin-2wzpndt0.png", + "status": "active", + "homeLeague": { + "name": "LCK", + "region": "KOREA" + }, + "players": [] + }, + { + "id": "99875464344041493", + "slug": "coscu-army", + "name": "Coscu Army", + "code": "CA", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/coscu-army-akkbqfp.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "99921042940157898", + "summonerName": "NaFT", + "firstName": "Nicolás", + "lastName": "Furtado", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/naft-gzghmvp8.png", + "role": "top" + }, + { + "id": "99921042946181537", + "summonerName": "Gankk", + "firstName": "Andrés", + "lastName": "Castro", + "image": "http://static.lolesports.com/players/1654806250643_EMP.png", + "role": "jungle" + }, + { + "id": "99921042943959644", + "summonerName": "TopLop", + "firstName": "Nicolás", + "lastName": "Marinoni", + "image": "http://static.lolesports.com/players/1753347565533_image6221.png", + "role": "mid" + }, + { + "id": "99921042944629053", + "summonerName": "Horus", + "firstName": "Facundo", + "lastName": "Utrero", + "image": "http://static.lolesports.com/players/1674668354490_EMP.png", + "role": "bottom" + }, + { + "id": "99921042944806293", + "summonerName": "Freshx", + "firstName": "Ibrahim", + "lastName": "López", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/prais-54yg1o4j.png", + "role": "jungle" + } + ] + }, + { + "id": "99875464344729125", + "slug": "mad-kings", + "name": "Mad Kings", + "code": "MK", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/mad-kings-4zxm7ce3.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "99921042946981024", + "summonerName": "Kanra", + "firstName": "Pedro", + "lastName": "Abad", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/kanra-cvghrg2a.png", + "role": "top" + }, + { + "id": "99921042950054593", + "summonerName": "Fragio", + "firstName": "Giovanne ", + "lastName": "Huamán Garcia", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/fragio-eant15im.png", + "role": "jungle" + }, + { + "id": "99921042949122311", + "summonerName": "Skanito", + "firstName": "Harold", + "lastName": "Quispe", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/skanito-89p8kbhg.png", + "role": "support" + }, + { + "id": "99921042947696885", + "summonerName": "Pendulum", + "firstName": "Alex", + "lastName": "Maldonado", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/pendulum-1s440ag9.png", + "role": "mid" + } + ] + }, + { + "id": "99875464345375304", + "slug": "evilvice-esports", + "name": "Evilvice Esports", + "code": "EVV", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/team/evilvice-esports-ipc37xhu.png", + "alternativeImage": null, + "backgroundImage": null, + "status": "archived", + "homeLeague": null, + "players": [ + { + "id": "99920955888368915", + "summonerName": "Filopo", + "firstName": "Eduardo", + "lastName": "Acuña", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/eduardofilopo-4wbo51bn.png", + "role": "mid" + }, + { + "id": "99920955896786760", + "summonerName": "Tsunami", + "firstName": "Hernán", + "lastName": "Acosta", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/tsunami-hgnnp18.png", + "role": "support" + }, + { + "id": "99920955889168453", + "summonerName": "s0ra", + "firstName": "Jorge", + "lastName": "Barraza", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/s0ra-9lwdxw4o.png", + "role": "bottom" + }, + { + "id": "99920955877935196", + "summonerName": "Pride", + "firstName": "Franco", + "lastName": "Sanzana", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/pride-31lhfivi.png", + "role": "top" + }, + { + "id": "99921042943239896", + "summonerName": "Aven", + "firstName": "Yaco", + "lastName": "Jara", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/aven-jadcb521.png", + "role": "jungle" + }, + { + "id": "99921042942435093", + "summonerName": "Unforgiven", + "firstName": "Maximiliano Gastón", + "lastName": "Utrero", + "image": "http://static.lolesports.com/players/XTN-Unforgiven.png", + "role": "jungle" + }, + { + "id": "99566408525499137", + "summonerName": "Zeicro", + "firstName": "Juan", + "lastName": "Fierro", + "image": "https://lolstatic-a.akamaihd.net/esports-assets/production/player/zeicro-hifeh54c.png", + "role": "bottom" + } + ] + } + ] + } +} \ No newline at end of file diff --git a/src/Infrastructure/LolEsportOfficialAPI/HTTPLolEsportOfficialAPIEngine.php b/src/Infrastructure/LolEsportOfficialAPI/HTTPLolEsportOfficialAPIEngine.php new file mode 100644 index 0000000..a261edc --- /dev/null +++ b/src/Infrastructure/LolEsportOfficialAPI/HTTPLolEsportOfficialAPIEngine.php @@ -0,0 +1,28 @@ +build(); $builder - ->createField('providerTeamId', 'uuid') + ->createField('providerTeamId', 'string') ->columnName('provider_team_id') ->nullable(false) ->build(); -- 2.40.1 From 6d482d9370c12329e8a62d7cb148a6e2181ccd86 Mon Sep 17 00:00:00 2001 From: Superkooka Date: Sun, 21 Dec 2025 23:11:29 +0100 Subject: [PATCH 2/4] feat: fetch LolEsportOfficialAPI Leagues --- .../LolEsportOfficialAPIEngine.php | 8 + src/Application/ReadModel/League.php | 14 + .../FetchLolEsportOfficialAPISchedule.php | 25 + .../FakeLolEsportOfficialAPIEngine.php | 11 +- ...t_official_api_lol_leagues_21_12_2025.json | 486 ++++++++++++++++++ .../App.Application.ReadModel.League.php | 33 ++ .../Mapping/App.Domain.Entity.League.php | 7 +- 7 files changed, 581 insertions(+), 3 deletions(-) create mode 100644 src/Application/ReadModel/League.php create mode 100644 src/Infrastructure/LolEsportOfficialAPI/Fixtures/lolesport_official_api_lol_leagues_21_12_2025.json create mode 100644 src/Infrastructure/Persistence/Mapping/App.Application.ReadModel.League.php diff --git a/src/Application/LolEsportOfficialAPI/LolEsportOfficialAPIEngine.php b/src/Application/LolEsportOfficialAPI/LolEsportOfficialAPIEngine.php index 1d00579..864db64 100644 --- a/src/Application/LolEsportOfficialAPI/LolEsportOfficialAPIEngine.php +++ b/src/Application/LolEsportOfficialAPI/LolEsportOfficialAPIEngine.php @@ -19,6 +19,14 @@ interface LolEsportOfficialAPIEngine */ public function getTeams(); + /** + * @return array<{ + * id: string, + * slug: string, + * name: string, + * region: string, + * }> + */ public function getLeagues(); public function getSeasons(); // "Tournament" diff --git a/src/Application/ReadModel/League.php b/src/Application/ReadModel/League.php new file mode 100644 index 0000000..7aeeafd --- /dev/null +++ b/src/Application/ReadModel/League.php @@ -0,0 +1,14 @@ +lolEsportOfficialAPIEngine->getLeagues(); + $leaguesRM = $this->entityManager->getRepository(LeagueRM::class)->findBy(['providerId' => $providerRM->id]); + $leaguesRMWithId = []; + foreach ($leaguesRM as $league) { + $leaguesRMWithId[$league->providerLeagueId] = $league; + } + + foreach ($lolEsportOfficialAPILeagues as $league) { + if (!isset($leaguesRMWithId[$league['id']])) { + // Create Team + $leagueEntity = new League(); + $leagueEntity->create( + $provider, + $league['id'], + $league['name'], + ); + + $this->entityManager->persist($leagueEntity); + continue; + } + + // check for renaming? + } // Fetch Season (Tournament). Need to be maped to a league from name if fetch all, can be fetch by league // add endDate diff --git a/src/Infrastructure/LolEsportOfficialAPI/FakeLolEsportOfficialAPIEngine.php b/src/Infrastructure/LolEsportOfficialAPI/FakeLolEsportOfficialAPIEngine.php index 3611961..4487142 100644 --- a/src/Infrastructure/LolEsportOfficialAPI/FakeLolEsportOfficialAPIEngine.php +++ b/src/Infrastructure/LolEsportOfficialAPI/FakeLolEsportOfficialAPIEngine.php @@ -21,9 +21,16 @@ class FakeLolEsportOfficialAPIEngine implements LolEsportOfficialAPIEngine ], $fake_lolesport_official_api_lol_teams["data"]["teams"]); } - public function getLeagues() + public function getLeagues(): array { - // TODO: Implement getLeagues() method. + $fake_lolesport_official_api_lol_leagues = json_decode(file_get_contents(__DIR__ . '/Fixtures/lolesport_official_api_lol_leagues_21_12_2025.json'), true); + + return array_map(fn ($league) => [ + 'id' => $league['id'], + 'slug' => $league['slug'], + 'name' => $league['name'], + 'region' => $league['region'], + ], $fake_lolesport_official_api_lol_leagues['data']['leagues']); } public function getSeasons() diff --git a/src/Infrastructure/LolEsportOfficialAPI/Fixtures/lolesport_official_api_lol_leagues_21_12_2025.json b/src/Infrastructure/LolEsportOfficialAPI/Fixtures/lolesport_official_api_lol_leagues_21_12_2025.json new file mode 100644 index 0000000..91a3c6d --- /dev/null +++ b/src/Infrastructure/LolEsportOfficialAPI/Fixtures/lolesport_official_api_lol_leagues_21_12_2025.json @@ -0,0 +1,486 @@ +{ + "data": { + "leagues": [ + { + "id": "98767975604431411", + "slug": "worlds", + "name": "Worlds", + "region": "INTERNATIONAL", + "image": "http://static.lolesports.com/leagues/1592594612171_WorldsDarkBG.png", + "priority": 1, + "displayPriority": { + "position": 0, + "status": "force_selected" + } + }, + { + "id": "98767991325878492", + "slug": "msi", + "name": "MSI", + "region": "INTERNATIONAL", + "image": "http://static.lolesports.com/leagues/1592594634248_MSIDarkBG.png", + "priority": 1, + "displayPriority": { + "position": 1, + "status": "force_selected" + } + }, + { + "id": "113464388705111224", + "slug": "first_stand", + "name": "First Stand", + "region": "INTERNATIONAL", + "image": "http://static.lolesports.com/leagues/1740042025201_RG_LOL_FIRST_STAND_LOGO_VOLT_ALPHA.png", + "priority": 1, + "displayPriority": { + "position": 2, + "status": "force_selected" + } + }, + { + "id": "98767991299243165", + "slug": "lcs", + "name": "LCS", + "region": "NORTH AMERICA", + "image": "http://static.lolesports.com/leagues/1706356907418_LCSNew-01-FullonDark.png", + "priority": 1, + "displayPriority": { + "position": 0, + "status": "selected" + } + }, + { + "id": "98767991332355509", + "slug": "cblol-brazil", + "name": "CBLOL", + "region": "BRAZIL", + "image": "http://static.lolesports.com/leagues/cblol-logo-symbol-offwhite.png", + "priority": 1, + "displayPriority": { + "position": 1, + "status": "selected" + } + }, + { + "id": "98767991302996019", + "slug": "lec", + "name": "LEC", + "region": "EMEA", + "image": "http://static.lolesports.com/leagues/1592516184297_LEC-01-FullonDark.png", + "priority": 1, + "displayPriority": { + "position": 2, + "status": "selected" + } + }, + { + "id": "98767991310872058", + "slug": "lck", + "name": "LCK", + "region": "KOREA", + "image": "http://static.lolesports.com/leagues/lck-color-on-black.png", + "priority": 1, + "displayPriority": { + "position": 0, + "status": "not_selected" + } + }, + { + "id": "98767991314006698", + "slug": "lpl", + "name": "LPL", + "region": "CHINA", + "image": "http://static.lolesports.com/leagues/1592516115322_LPL-01-FullonDark.png", + "priority": 1, + "displayPriority": { + "position": 1, + "status": "not_selected" + } + }, + { + "id": "113476371197627891", + "slug": "lcp", + "name": "LCP", + "region": "PACIFIC", + "image": "http://static.lolesports.com/leagues/1733468139601_lcp-color-golden.png", + "priority": 1, + "displayPriority": { + "position": 2, + "status": "not_selected" + } + }, + { + "id": "109511549831443335", + "slug": "nacl", + "name": "NACL", + "region": "NORTH AMERICA", + "image": "http://static.lolesports.com/leagues/1740390007442_FULL_COLOR_FOR_DARK_BG.png", + "priority": 1, + "displayPriority": { + "position": 3, + "status": "not_selected" + } + }, + { + "id": "100695891328981122", + "slug": "emea_masters", + "name": "EMEA Masters", + "region": "EMEA", + "image": "http://static.lolesports.com/leagues/1669375535108_EM_Icon_Green1.png", + "priority": 1, + "displayPriority": { + "position": 4, + "status": "not_selected" + } + }, + { + "id": "98767991349978712", + "slug": "ljl-japan", + "name": "LJL", + "region": "JAPAN", + "image": "http://static.lolesports.com/leagues/1733997208721_LJL_icon_white_724px.png", + "priority": 1, + "displayPriority": { + "position": 5, + "status": "not_selected" + } + }, + { + "id": "98767991343597634", + "slug": "turkiye-sampiyonluk-ligi", + "name": "TCL", + "region": "EMEA", + "image": "http://static.lolesports.com/leagues/1738338347640_ampiyonlukLigi-AMBLEM.png", + "priority": 1, + "displayPriority": { + "position": 6, + "status": "not_selected" + } + }, + { + "id": "105266098308571975", + "slug": "nlc", + "name": "NLC", + "region": "EMEA", + "image": "http://static.lolesports.com/leagues/1641490922073_nlc_logo.png", + "priority": 1, + "displayPriority": { + "position": 7, + "status": "not_selected" + } + }, + { + "id": "105266103462388553", + "slug": "lfl", + "name": "La Ligue Française", + "region": "EMEA", + "image": "http://static.lolesports.com/leagues/LFL_Logo_2020_black1.png", + "priority": 1, + "displayPriority": { + "position": 8, + "status": "not_selected" + } + }, + { + "id": "107407335299756365", + "slug": "roadoflegends", + "name": "Road of Legends", + "region": "EMEA", + "image": "http://static.lolesports.com/leagues/1737450944766_ROL_DARKBG.png", + "priority": 1, + "displayPriority": { + "position": 9, + "status": "not_selected" + } + }, + { + "id": "105266101075764040", + "slug": "liga_portuguesa", + "name": "Liga Portuguesa", + "region": "EMEA", + "image": "http://static.lolesports.com/leagues/1649884876085_LPLOL_2021_ISO_G-c389e9ae85c243e4f76a8028bbd9ca1609c2d12bc47c3709a9250d1b3ca43f58.png", + "priority": 1, + "displayPriority": { + "position": 10, + "status": "not_selected" + } + }, + { + "id": "105266094998946936", + "slug": "lit", + "name": "LoL Italian Tournament", + "region": "EMEA", + "image": "http://static.lolesports.com/leagues/1703058345246_IMG_4673.png", + "priority": 1, + "displayPriority": { + "position": 11, + "status": "not_selected" + } + }, + { + "id": "113673877956508505", + "slug": "rift_legends", + "name": "Rift Legends", + "region": "EMEA", + "image": "http://static.lolesports.com/leagues/1736963779891_Logo_short_lightRL__.png", + "priority": 1, + "displayPriority": { + "position": 12, + "status": "not_selected" + } + }, + { + "id": "105266074488398661", + "slug": "superliga", + "name": "SuperLiga", + "region": "EMEA", + "image": "http://static.lolesports.com/leagues/SL21-V-white.png", + "priority": 1, + "displayPriority": { + "position": 13, + "status": "not_selected" + } + }, + { + "id": "105266091639104326", + "slug": "primeleague", + "name": "Prime League", + "region": "EMEA", + "image": "http://static.lolesports.com/leagues/PrimeLeagueResized.png", + "priority": 1, + "displayPriority": { + "position": 14, + "status": "not_selected" + } + }, + { + "id": "105266106309666619", + "slug": "hitpoint_masters", + "name": "Hitpoint Masters", + "region": "EMEA", + "image": "http://static.lolesports.com/leagues/1641465237186_HM_white.png", + "priority": 1, + "displayPriority": { + "position": 15, + "status": "not_selected" + } + }, + { + "id": "105266111679554379", + "slug": "esports_balkan_league", + "name": "Esports Balkan League", + "region": "EMEA", + "image": "http://static.lolesports.com/leagues/1625735031226_ebl_crest-whitePNG.png", + "priority": 1, + "displayPriority": { + "position": 16, + "status": "not_selected" + } + }, + { + "id": "105266108767593290", + "slug": "hellenic_legends_league", + "name": "Hellenic Legends League", + "region": "EMEA", + "image": "http://static.lolesports.com/leagues/1736361775356_HLL_FULL_COLOUR_DARKBG.png", + "priority": 1, + "displayPriority": { + "position": 17, + "status": "not_selected" + } + }, + { + "id": "109545772895506419", + "slug": "arabian_league", + "name": "Arabian League", + "region": "EMEA", + "image": "http://static.lolesports.com/leagues/1738573749768_GoldAL.png", + "priority": 1, + "displayPriority": { + "position": 18, + "status": "not_selected" + } + }, + { + "id": "98767991335774713", + "slug": "lck_challengers_league", + "name": "LCK Challengers", + "region": "KOREA", + "image": "http://static.lolesports.com/leagues/lck-cl-white.png", + "priority": 1, + "displayPriority": { + "position": 19, + "status": "not_selected" + } + }, + { + "id": "105549980953490846", + "slug": "cd", + "name": "Circuito Desafiante", + "region": "BRAZIL", + "image": "http://static.lolesports.com/leagues/1739883216140_CIRCUITO_DESAFIANTE_COLOR_ORANGE.png", + "priority": 1, + "displayPriority": { + "position": 20, + "status": "not_selected" + } + }, + { + "id": "104366947889790212", + "slug": "pcs", + "name": "PCS", + "region": "HONG KONG, MACAU, TAIWAN", + "image": "http://static.lolesports.com/leagues/1592515942679_PCS-01-FullonDark.png", + "priority": 1, + "displayPriority": { + "position": 21, + "status": "not_selected" + } + }, + { + "id": "110371976858004491", + "slug": "north_regional_league", + "name": "LRN", + "region": "LATIN AMERICA NORTH", + "image": "http://static.lolesports.com/leagues/1742461971444_FULL_COLOR_FOR_DARK_BG1.png", + "priority": 1, + "displayPriority": { + "position": 22, + "status": "not_selected" + } + }, + { + "id": "110372322609949919", + "slug": "south_regional_league", + "name": "LRS", + "region": "LATIN AMERICA SOUTH", + "image": "http://static.lolesports.com/leagues/1742460115671_FULL_COLOR_FOR_DARK_BG.png", + "priority": 1, + "displayPriority": { + "position": 23, + "status": "not_selected" + } + }, + { + "id": "108001239847565215", + "slug": "tft_esports", + "name": "TFT Esports ", + "region": "INTERNATIONAL", + "image": "http://static.lolesports.com/leagues/1723029828764_TFT_GRADIENT_2.png", + "priority": 1, + "displayPriority": { + "position": 24, + "status": "not_selected" + } + }, + { + "id": "113475149040947852", + "slug": "lta_cross", + "name": "LTA Cross-Conference", + "region": "AMERICAS", + "image": "http://static.lolesports.com/leagues/1731566966819_LTA-LOGO-LightGold_RGB2000px.png", + "priority": 1, + "displayPriority": { + "position": 4, + "status": "hidden" + } + }, + { + "id": "101382741235120470", + "slug": "lla", + "name": "LLA", + "region": "LATIN AMERICA", + "image": "http://static.lolesports.com/leagues/1592516315279_LLA-01-FullonDark.png", + "priority": 1, + "displayPriority": { + "position": 6, + "status": "hidden" + } + }, + { + "id": "105709090213554609", + "slug": "lco", + "name": "LCO", + "region": "OCEANIA", + "image": "http://static.lolesports.com/leagues/lco-color-white.png", + "priority": 1, + "displayPriority": { + "position": 18, + "status": "hidden" + } + }, + { + "id": "107213827295848783", + "slug": "vcs", + "name": "VCS", + "region": "VIETNAM", + "image": "http://static.lolesports.com/leagues/1677578094811_VCS_SYMBOL_TITANIUM_RGB.png", + "priority": 1, + "displayPriority": { + "position": 20, + "status": "hidden" + } + }, + { + "id": "110988878756156222", + "slug": "wqs", + "name": "Worlds Qualifying Series", + "region": "INTERNATIONAL", + "image": "http://static.lolesports.com/leagues/1693555886600_lolesports_icon_ice-01.png", + "priority": 1, + "displayPriority": { + "position": 30, + "status": "hidden" + } + }, + { + "id": "111102022734849553", + "slug": "duelo_de_reyes", + "name": "King's Duel", + "region": "LATIN AMERICA", + "image": "http://static.lolesports.com/leagues/1695282324552_B.png", + "priority": 1, + "displayPriority": { + "position": 58, + "status": "hidden" + } + }, + { + "id": "113470291645289904", + "slug": "lta_n", + "name": "LTA North", + "region": "AMERICAS", + "image": "http://static.lolesports.com/leagues/1731566778368_LTANORTH-LOGO_Blue_RGB2000px.png", + "priority": 1, + "displayPriority": { + "position": 63, + "status": "hidden" + } + }, + { + "id": "113475181634818701", + "slug": "lta_s", + "name": "LTA South", + "region": "AMERICAS", + "image": "http://static.lolesports.com/leagues/1731566868757_LTASOUTH-LOGO_Red_RGB2000px.png", + "priority": 1, + "displayPriority": { + "position": 64, + "status": "hidden" + } + }, + { + "id": "98767991355908944", + "slug": "lcl", + "name": "LCL", + "region": "COMMONWEALTH OF INDEPENDENT STATES", + "image": "http://static.lolesports.com/leagues/1593016885758_LCL-01-FullonDark.png", + "priority": 1, + "displayPriority": { + "position": 97, + "status": "hidden" + } + } + ] + } +} \ No newline at end of file diff --git a/src/Infrastructure/Persistence/Mapping/App.Application.ReadModel.League.php b/src/Infrastructure/Persistence/Mapping/App.Application.ReadModel.League.php new file mode 100644 index 0000000..da47663 --- /dev/null +++ b/src/Infrastructure/Persistence/Mapping/App.Application.ReadModel.League.php @@ -0,0 +1,33 @@ +setReadOnly() + ->setTable('league') +; + +$builder + ->createField('id', 'uuid') + ->nullable(false) + ->makePrimaryKey() + ->build(); + +$builder + ->createField('providerId', 'uuid') + ->columnName('provider_id') + ->nullable(false) + ->build(); + +$builder + ->createField('providerLeagueId', 'string') + ->columnName('provider_league_id') + ->nullable(false) + ->build(); + +$builder + ->createField('name', 'string') + ->nullable(false) + ->build(); diff --git a/src/Infrastructure/Persistence/Mapping/App.Domain.Entity.League.php b/src/Infrastructure/Persistence/Mapping/App.Domain.Entity.League.php index a3cdc2e..5b48183 100644 --- a/src/Infrastructure/Persistence/Mapping/App.Domain.Entity.League.php +++ b/src/Infrastructure/Persistence/Mapping/App.Domain.Entity.League.php @@ -15,11 +15,16 @@ $builder ->build(); $builder - ->createField('providerLeagueId', 'uuid') + ->createField('providerLeagueId', 'string') ->columnName('provider_league_id') ->nullable(false) ->build(); +$builder + ->createField('name', 'string') + ->nullable(false) + ->build(); + $builder ->createManyToOne('provider', 'App\\Domain\\Entity\\Provider') ->addJoinColumn('provider_id', 'id', false, false, 'CASCADE') -- 2.40.1 From 2a17cd082c67e3f7466e1d9fc2e70d15742c7b84 Mon Sep 17 00:00:00 2001 From: Superkooka Date: Sun, 21 Dec 2025 23:34:29 +0100 Subject: [PATCH 3/4] fix: content match id on calendar generation --- src/Application/UseCase/GenerateGamesCalendar.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Application/UseCase/GenerateGamesCalendar.php b/src/Application/UseCase/GenerateGamesCalendar.php index af62162..6f1a0d9 100644 --- a/src/Application/UseCase/GenerateGamesCalendar.php +++ b/src/Application/UseCase/GenerateGamesCalendar.php @@ -57,6 +57,7 @@ class GenerateGamesCalendar $away = $this->entityManager->getRepository(Team::class)->find($game->awayTeamId) ?? throw new \Exception('Team not found'); $events[] = Event::create($away->name . ' vs ' . $home->name) + ->uniqueIdentifier($game->id) ->startsAt($game->startTimeScheduled) ->endsAt($game->endTimeScheduled ?? $game->startTimeScheduled->modify('+3 hours')) // should be a parameter of the league ->address($game->venue); -- 2.40.1 From 350f134e2371632585ae6561269bd741fe350461 Mon Sep 17 00:00:00 2001 From: Superkooka Date: Fri, 2 Jan 2026 17:51:44 +0100 Subject: [PATCH 4/4] feat: get lolesport official api season --- .../LolEsportOfficialAPIEngine.php | 11 +- src/Application/ReadModel/Season.php | 16 + .../FetchLolEsportOfficialAPISchedule.php | 41 +- .../FakeLolEsportOfficialAPIEngine.php | 12 +- ...t_official_api_lol_seasons_02_01_2026.json | 2830 +++++++++++++++++ .../HTTPLolEsportOfficialAPIEngine.php | 2 +- .../App.Application.ReadModel.Season.php | 44 + .../Mapping/App.Domain.Entity.Season.php | 2 +- 8 files changed, 2952 insertions(+), 6 deletions(-) create mode 100644 src/Application/ReadModel/Season.php create mode 100644 src/Infrastructure/LolEsportOfficialAPI/Fixtures/lolesport_official_api_lol_seasons_02_01_2026.json create mode 100644 src/Infrastructure/Persistence/Mapping/App.Application.ReadModel.Season.php diff --git a/src/Application/LolEsportOfficialAPI/LolEsportOfficialAPIEngine.php b/src/Application/LolEsportOfficialAPI/LolEsportOfficialAPIEngine.php index 864db64..f94a560 100644 --- a/src/Application/LolEsportOfficialAPI/LolEsportOfficialAPIEngine.php +++ b/src/Application/LolEsportOfficialAPI/LolEsportOfficialAPIEngine.php @@ -29,7 +29,16 @@ interface LolEsportOfficialAPIEngine */ public function getLeagues(); - public function getSeasons(); // "Tournament" + /** + * @param string $leagueId + * @return array<{ + * id: string, + * slug: string, + * startDate: \DateTimeImmutable, + * endDate: \DateTimeImmutable, + * }> + */ + public function getSeasons(string $leagueId); // "Tournament" public function getSchedules(); } diff --git a/src/Application/ReadModel/Season.php b/src/Application/ReadModel/Season.php new file mode 100644 index 0000000..2ee00de --- /dev/null +++ b/src/Application/ReadModel/Season.php @@ -0,0 +1,16 @@ +create( @@ -89,6 +100,34 @@ class FetchLolEsportOfficialAPISchedule // Fetch Season (Tournament). Need to be maped to a league from name if fetch all, can be fetch by league // add endDate + $seasonsRM = $this->entityManager->getRepository(SeasonRM::class)->findBy(['providerId' => $providerRM->id]); + $seasonsRMWithId = []; + foreach ($seasonsRM as $season) { + $seasonsRMWithId[$season->providerSeasonId] = $season; + } + + $leaguesRM = $this->entityManager->getRepository(LeagueRM::class)->findBy(['providerId' => $providerRM->id]); + foreach ($leaguesRM as $league) { + $lolEsportOfficialAPISeason = $this->lolEsportOfficialAPIEngine->getSeasons($league->providerLeagueId); + + foreach ($lolEsportOfficialAPISeason as $season) { + if(!isset($seasonsRMWithId[$season['id']])) { + $leagueEntity = $this->entityManager->getRepository(League::class)->find($league->id); + $seasonEntity = new Season(); + $seasonEntity->create( + $provider, + $season['id'], + $leagueEntity, + 'REG', + (int) (new \DateTimeImmutable($season['endDate']))->format('Y'), + ); + $this->entityManager->persist($seasonEntity); + + } + } + + } + // Fetch Match Schedule // paginated. can be by league or global diff --git a/src/Infrastructure/LolEsportOfficialAPI/FakeLolEsportOfficialAPIEngine.php b/src/Infrastructure/LolEsportOfficialAPI/FakeLolEsportOfficialAPIEngine.php index 4487142..b9c377f 100644 --- a/src/Infrastructure/LolEsportOfficialAPI/FakeLolEsportOfficialAPIEngine.php +++ b/src/Infrastructure/LolEsportOfficialAPI/FakeLolEsportOfficialAPIEngine.php @@ -33,9 +33,17 @@ class FakeLolEsportOfficialAPIEngine implements LolEsportOfficialAPIEngine ], $fake_lolesport_official_api_lol_leagues['data']['leagues']); } - public function getSeasons() + public function getSeasons(string $leagueId) { - // TODO: Implement getSeasons() method. + $fake_lolesport_official_api_lol_seasons= json_decode(file_get_contents(__DIR__ . '/Fixtures/lolesport_official_api_lol_seasons_02_01_2026.json'), true); + + return array_map(fn ($season) => [ + 'id' => $season['id'], + 'slug' => $season['slug'], + 'startDate' => $season['startDate'], + 'endDate' => $season['endDate'], + ], $fake_lolesport_official_api_lol_seasons['data']['leagues'][$leagueId]['tournaments'] ?? throw new \Exception('league id not found')); + } public function getSchedules() diff --git a/src/Infrastructure/LolEsportOfficialAPI/Fixtures/lolesport_official_api_lol_seasons_02_01_2026.json b/src/Infrastructure/LolEsportOfficialAPI/Fixtures/lolesport_official_api_lol_seasons_02_01_2026.json new file mode 100644 index 0000000..6377127 --- /dev/null +++ b/src/Infrastructure/LolEsportOfficialAPI/Fixtures/lolesport_official_api_lol_seasons_02_01_2026.json @@ -0,0 +1,2830 @@ +{ + "data": { + "leagues": { + "98767975604431411": { + "tournaments": [ + { + "id": "115660540725177488", + "slug": "worlds_2026", + "startDate": "2026-10-20", + "endDate": "2026-11-20" + }, + { + "id": "113475452383887518", + "slug": "worlds_2025", + "startDate": "2025-10-14", + "endDate": "2025-11-09" + }, + { + "id": "112966669920590211", + "slug": "worlds_2024", + "startDate": "2024-09-24", + "endDate": "2024-11-02" + }, + { + "id": "110852926142971547", + "slug": "worlds_2023", + "startDate": "2023-10-09", + "endDate": "2023-11-19" + }, + { + "id": "108998961191900167", + "slug": "worlds_2022", + "startDate": "2022-09-27", + "endDate": "2022-11-17" + }, + { + "id": "106926282333089592", + "slug": "worlds_2021", + "startDate": "2021-10-03", + "endDate": "2021-11-08" + }, + { + "id": "104841804583318464", + "slug": "worlds_2020", + "startDate": "2020-09-25", + "endDate": "2020-11-01" + }, + { + "id": "109381371670969695", + "slug": "worlds_2016", + "startDate": "2016-09-28", + "endDate": "2016-10-30" + }, + { + "id": "109393484577193964", + "slug": "worlds_2015", + "startDate": "2015-09-30", + "endDate": "2015-10-31" + }, + { + "id": "107385933322514307", + "slug": "worlds_2014", + "startDate": "2014-09-18", + "endDate": "2014-10-20" + }, + { + "id": "107125010264727827", + "slug": "worlds_2011", + "startDate": "2011-06-18", + "endDate": "2011-06-20" + } + ] + }, + "98767991325878492": { + "tournaments": [ + { + "id": "115570934354631452", + "slug": "msi_2026", + "startDate": "2026-06-26", + "endDate": "2026-07-12" + }, + { + "id": "113470835034591734", + "slug": "msi_2025", + "startDate": "2025-06-26", + "endDate": "2025-07-13" + }, + { + "id": "112099354464733424", + "slug": "msi_2024", + "startDate": "2024-04-30", + "endDate": "2024-05-19" + }, + { + "id": "110198981276611770", + "slug": "msi_2023", + "startDate": "2023-05-02", + "endDate": "2023-05-22" + }, + { + "id": "107905284983470149", + "slug": "msi_2022", + "startDate": "2022-05-09", + "endDate": "2022-05-30" + }, + { + "id": "105873410870441926", + "slug": "msi_2021", + "startDate": "2021-05-06", + "endDate": "2021-05-23" + }, + { + "id": "109383739753133748", + "slug": "msi_2016", + "startDate": "2016-05-03", + "endDate": "2016-05-15" + }, + { + "id": "109381717382073421", + "slug": "msi_2015", + "startDate": "2015-05-06", + "endDate": "2015-05-11" + } + ] + }, + "113464388705111224": { + "tournaments": [ + { + "id": "115570858980956868", + "slug": "first_stand_2026", + "startDate": "2026-03-16", + "endDate": "2026-03-22" + }, + { + "id": "113470740394381750", + "slug": "first_stand_2025", + "startDate": "2025-03-10", + "endDate": "2025-03-16" + } + ] + }, + "98767991299243165": { + "tournaments": [ + { + "id": "115564797158840434", + "slug": "lcs_split_3_2026", + "startDate": "2026-07-20", + "endDate": "2026-10-12" + }, + { + "id": "115564760172712809", + "slug": "lcs_split_2_2026", + "startDate": "2026-03-29", + "endDate": "2026-06-22" + }, + { + "id": "115564596163517554", + "slug": "lcs_split_1_2026", + "startDate": "2026-01-12", + "endDate": "2026-03-08" + }, + { + "id": "112523529392628088", + "slug": "lcs_summer_2024", + "startDate": "2024-06-15", + "endDate": "2024-09-07" + }, + { + "id": "111504625283627681", + "slug": "lcs_spring_2024", + "startDate": "2024-01-19", + "endDate": "2024-04-01" + }, + { + "id": "110303581083678395", + "slug": "lcs_summer_2023", + "startDate": "2023-05-31", + "endDate": "2023-08-22" + }, + { + "id": "109517090066605615", + "slug": "lcs_spring_2023", + "startDate": "2023-01-24", + "endDate": "2023-04-11" + }, + { + "id": "108206581962155974", + "slug": "lcs_summer_2022", + "startDate": "2022-06-16", + "endDate": "2022-09-13" + }, + { + "id": "107458367237283414", + "slug": "lcs_spring_2022", + "startDate": "2022-02-04", + "endDate": "2022-04-25" + }, + { + "id": "107458335260330212", + "slug": "lcs_lock_in_2022", + "startDate": "2022-01-14", + "endDate": "2022-01-31" + }, + { + "id": "105658534671026792", + "slug": "lcs_summer_2021", + "startDate": "2021-06-04", + "endDate": "2021-08-30" + }, + { + "id": "105788932118361426", + "slug": "mss_2021", + "startDate": "2021-03-20", + "endDate": "2021-04-12" + }, + { + "id": "109428868589633757", + "slug": "lcs_spring_2021", + "startDate": "2021-02-05", + "endDate": "2021-04-11" + }, + { + "id": "105522217230238828", + "slug": "lcs_lock_in_2021", + "startDate": "2021-01-15", + "endDate": "2021-01-31" + }, + { + "id": "104174992692075107", + "slug": "lcs_summer_2020", + "startDate": "2020-06-11", + "endDate": "2020-09-14" + }, + { + "id": "103462439438682788", + "slug": "lcs_spring_2020", + "startDate": "2020-01-24", + "endDate": "2020-04-20" + }, + { + "id": "108300620375000370", + "slug": "lcs_summer_2019", + "startDate": "2019-05-31", + "endDate": "2019-09-19" + }, + { + "id": "108294935083112239", + "slug": "lcs_spring_2019", + "startDate": "2019-01-25", + "endDate": "2019-05-13" + }, + { + "id": "108288780705657082", + "slug": "na_lcs_summer_2018", + "startDate": "2018-06-15", + "endDate": "2018-09-20" + }, + { + "id": "108283378783680768", + "slug": "na_lcs_spring_2018", + "startDate": "2018-01-19", + "endDate": "2018-05-17" + }, + { + "id": "108007809203463350", + "slug": "na_lcs_summer_2017", + "startDate": "2017-06-01", + "endDate": "2017-09-27" + }, + { + "id": "107784927885285215", + "slug": "na_lcs_spring_2017", + "startDate": "2017-01-19", + "endDate": "2017-04-24" + }, + { + "id": "107744640257699883", + "slug": "na_lcs_summer_2016", + "startDate": "2016-06-02", + "endDate": "2016-08-01" + }, + { + "id": "106972812538132507", + "slug": "na_lcs_spring_2016", + "startDate": "2016-01-16", + "endDate": "2016-04-18" + }, + { + "id": "107741488941545959", + "slug": "na_lcs_summer_2015", + "startDate": "2015-05-01", + "endDate": "2015-08-24" + }, + { + "id": "107045060626269295", + "slug": "na_lcs_spring_2015", + "startDate": "2015-01-01", + "endDate": "2015-04-30" + }, + { + "id": "107719921883398026", + "slug": "na_lcs_summer_2014", + "startDate": "2014-05-23", + "endDate": "2014-09-02" + }, + { + "id": "107697401518332544", + "slug": "na_lcs_spring_2014", + "startDate": "2014-01-16", + "endDate": "2014-08-30" + }, + { + "id": "107656643139734824", + "slug": "na_lcs_summer_2013", + "startDate": "2013-06-12", + "endDate": "2013-08-16" + }, + { + "id": "107620592294752774", + "slug": "na_lcs_spring_2013", + "startDate": "2013-02-06", + "endDate": "2013-04-29" + } + ] + }, + "98767991332355509": { + "tournaments": [ + { + "id": "115565671525288828", + "slug": "cblol_split_3_2026", + "startDate": "2026-07-25", + "endDate": "2026-10-04" + }, + { + "id": "115565650134506778", + "slug": "cblol_split_2_2026", + "startDate": "2026-03-28", + "endDate": "2026-06-14" + }, + { + "id": "115565518151768348", + "slug": "cblol_split_1_2026", + "startDate": "2026-01-17", + "endDate": "2026-03-01" + }, + { + "id": "112452930844731446", + "slug": "cblol_split_2_2024", + "startDate": "2024-05-31", + "endDate": "2024-09-08" + }, + { + "id": "111687593060275227", + "slug": "cblol_split_1_2024", + "startDate": "2024-01-19", + "endDate": "2024-04-21" + }, + { + "id": "110413046183015975", + "slug": "cblol_2023_split_2", + "startDate": "2023-06-09", + "endDate": "2023-09-10" + }, + { + "id": "109523641416750631", + "slug": "cblol_2023_split_1", + "startDate": "2023-01-20", + "endDate": "2023-04-16" + }, + { + "id": "108211865716506571", + "slug": "cblol_split_2_2022", + "startDate": "2022-06-10", + "endDate": "2022-09-04" + }, + { + "id": "107405837336179496", + "slug": "cblol_split_1_2022", + "startDate": "2022-01-22", + "endDate": "2022-04-24" + }, + { + "id": "106297375705058741", + "slug": "cblol_split_2_2021", + "startDate": "2021-06-05", + "endDate": "2021-09-05" + }, + { + "id": "105539760572983266", + "slug": "cblol_split_1_2021", + "startDate": "2021-01-16", + "endDate": "2021-04-18" + }, + { + "id": "104202471497759152", + "slug": "cblol_split_2_2020", + "startDate": "2020-06-06", + "endDate": "2020-09-13" + }, + { + "id": "103478354329449186", + "slug": "cblol_2020_split1", + "startDate": "2020-01-25", + "endDate": "2020-05-03" + } + ] + }, + "98767991302996019": { + "tournaments": [ + { + "id": "115548681802226458", + "slug": "lec_split_3_2026", + "startDate": "2026-07-18", + "endDate": "2026-09-20" + }, + { + "id": "115548668058343983", + "slug": "lec_split_2_2026", + "startDate": "2026-04-03", + "endDate": "2026-06-14" + }, + { + "id": "115548424304940735", + "slug": "lec_split_1_2026", + "startDate": "2026-01-16", + "endDate": "2026-03-01" + }, + { + "id": "113487526512660769", + "slug": "lec_summer_2025", + "startDate": "2025-08-02", + "endDate": "2025-09-29" + }, + { + "id": "113487400974323999", + "slug": "lec_spring_2025", + "startDate": "2025-03-29", + "endDate": "2025-06-08" + }, + { + "id": "113475994398658012", + "slug": "lec_winter_2025", + "startDate": "2025-01-18", + "endDate": "2025-03-02" + }, + { + "id": "112869331703771902", + "slug": "lec_season_finals_2024", + "startDate": "2024-08-10", + "endDate": "2024-09-01" + }, + { + "id": "112352881163915249", + "slug": "lec_summer_2024", + "startDate": "2024-06-08", + "endDate": "2024-07-28" + }, + { + "id": "111997906550466231", + "slug": "lec_spring_2024", + "startDate": "2024-03-08", + "endDate": "2024-04-15" + }, + { + "id": "111560983131400452", + "slug": "lec_winter_2024", + "startDate": "2024-01-12", + "endDate": "2024-02-19" + }, + { + "id": "110848560874526298", + "slug": "lec_season_finals_2023", + "startDate": "2023-08-17", + "endDate": "2023-09-12" + }, + { + "id": "110429332688604205", + "slug": "lec_summer_2023", + "startDate": "2023-06-15", + "endDate": "2023-08-01" + }, + { + "id": "109919226376366902", + "slug": "lec_spring_2023", + "startDate": "2023-03-08", + "endDate": "2023-04-27" + }, + { + "id": "109466537705744120", + "slug": "lec_winter_2023", + "startDate": "2023-01-19", + "endDate": "2023-02-28" + }, + { + "id": "108176672283976661", + "slug": "lec_summer_2022", + "startDate": "2022-06-16", + "endDate": "2022-09-12" + }, + { + "id": "107417059262120466", + "slug": "lec_spring_2022", + "startDate": "2022-01-01", + "endDate": "2022-05-01" + }, + { + "id": "106269680921022418", + "slug": "lec_summer_2021", + "startDate": "2021-06-11", + "endDate": "2021-08-30" + }, + { + "id": "105522958532258735", + "slug": "lec_spring_2021", + "startDate": "2021-01-04", + "endDate": "2021-04-11" + }, + { + "id": "104169295253189561", + "slug": "lec_summer_2020", + "startDate": "2020-06-11", + "endDate": "2020-09-07" + }, + { + "id": "103462459318635408", + "slug": "lec_spring_2020", + "startDate": "2020-01-24", + "endDate": "2020-04-27" + }, + { + "id": "109427822736905228", + "slug": "lec_summer_2019", + "startDate": "2019-06-07", + "endDate": "2019-09-08" + }, + { + "id": "109427411147317375", + "slug": "lec_spring_2019", + "startDate": "2019-01-18", + "endDate": "2019-04-14" + }, + { + "id": "109423067696022268", + "slug": "eu_lcs_summer_2018", + "startDate": "2018-06-15", + "endDate": "2018-09-09" + }, + { + "id": "109421587469439501", + "slug": "eu_lcs_spring_2018", + "startDate": "2018-01-19", + "endDate": "2018-04-08" + }, + { + "id": "109407348769591764", + "slug": "eu_lcs_summer_2017", + "startDate": "2017-06-01", + "endDate": "2017-09-03" + }, + { + "id": "109188748532737193", + "slug": "eu_lcs_spring_2017", + "startDate": "2017-01-19", + "endDate": "2017-04-23" + }, + { + "id": "109189749746037163", + "slug": "eu_lcs_summer_2016", + "startDate": "2016-06-02", + "endDate": "2016-08-28" + }, + { + "id": "109188863217118371", + "slug": "eu_lcs_spring_2016", + "startDate": "2016-01-14", + "endDate": "2016-04-17" + }, + { + "id": "109218068328726599", + "slug": "eu_lcs_summer_2015", + "startDate": "2015-05-28", + "endDate": "2015-08-23" + }, + { + "id": "109212709764395955", + "slug": "eu_lcs_spring_2015", + "startDate": "2015-01-22", + "endDate": "2015-04-19" + }, + { + "id": "109229629611154474", + "slug": "eu_lcs_summer_2014", + "startDate": "2014-05-20", + "endDate": "2014-08-17" + }, + { + "id": "109218949924663566", + "slug": "eu_lcs_spring_2014", + "startDate": "2014-01-14", + "endDate": "2014-04-17" + }, + { + "id": "109349946712116171", + "slug": "eu_lcs_summer_2013", + "startDate": "2013-06-14", + "endDate": "2022-08-26" + }, + { + "id": "109274702204084948", + "slug": "eu_lcs_spring_2013", + "startDate": "2013-02-08", + "endDate": "2013-04-29" + } + ] + }, + "98767991310872058": { + "tournaments": [ + { + "id": "115548147890329817", + "slug": "lck_split_3_2026", + "startDate": "2026-07-19", + "endDate": "2026-10-11" + }, + { + "id": "115548128960088078", + "slug": "lck_split_2_2026", + "startDate": "2026-03-28", + "endDate": "2026-06-21" + }, + { + "id": "115548106590082745", + "slug": "lck_split_1_2026", + "startDate": "2026-01-13", + "endDate": "2026-03-01" + }, + { + "id": "113503357263583149", + "slug": "lck_split_3_2025", + "startDate": "2025-07-23", + "endDate": "2025-09-28" + }, + { + "id": "113503260417890076", + "slug": "lck_split_2_2025", + "startDate": "2025-04-02", + "endDate": "2025-06-15" + }, + { + "id": "113480665704729522", + "slug": "lck_cup_2025", + "startDate": "2025-01-15", + "endDate": "2025-02-23" + }, + { + "id": "113107302832812920", + "slug": "lck_regional_qualifier_2024", + "startDate": "2024-09-11", + "endDate": "2024-09-14" + }, + { + "id": "112435564213994193", + "slug": "lck_summer_2024", + "startDate": "2024-06-12", + "endDate": "2024-09-08" + }, + { + "id": "111561337005798024", + "slug": "lck_spring_2024", + "startDate": "2024-01-16", + "endDate": "2024-04-15" + }, + { + "id": "110909366079472439", + "slug": "lck_regional_finals_2023", + "startDate": "2023-08-24", + "endDate": "2023-08-28" + }, + { + "id": "110371551277508787", + "slug": "lck_summer_2023", + "startDate": "2023-06-06", + "endDate": "2023-08-22" + }, + { + "id": "109625152894842837", + "slug": "lck_spring_2023", + "startDate": "2023-01-16", + "endDate": "2023-04-12" + }, + { + "id": "108797577868041021", + "slug": "lck_regional_finals_2022", + "startDate": "2022-08-30", + "endDate": "2022-09-05" + }, + { + "id": "108195478954601542", + "slug": "lck_summer_2022", + "startDate": "2022-05-03", + "endDate": "2022-08-29" + }, + { + "id": "107418445247362001", + "slug": "lck_spring_2022", + "startDate": "2022-01-11", + "endDate": "2022-04-05" + }, + { + "id": "106840590962292347", + "slug": "lck_regional_finals_2021", + "startDate": "2021-08-31", + "endDate": "2021-09-03" + }, + { + "id": "106269654659501670", + "slug": "lck_summer_2021", + "startDate": "2021-06-09", + "endDate": "2021-09-03" + }, + { + "id": "105522984810490982", + "slug": "lck_spring_2021", + "startDate": "2021-01-13", + "endDate": "2021-04-03" + }, + { + "id": "104174613295388764", + "slug": "lck_summer_2020", + "startDate": "2020-06-16", + "endDate": "2020-09-06" + }, + { + "id": "103540363364808496", + "slug": "lck_2020_split1", + "startDate": "2020-02-05", + "endDate": "2020-04-26" + }, + { + "id": "109478595377766234", + "slug": "lck_summer_2019", + "startDate": "2019-06-05", + "endDate": "2019-08-31" + }, + { + "id": "109473592653126678", + "slug": "lck_spring_2019", + "startDate": "2019-01-16", + "endDate": "2019-04-13" + }, + { + "id": "109472224539377660", + "slug": "lck_summer_2018", + "startDate": "2018-06-12", + "endDate": "2018-09-08" + }, + { + "id": "109468403671242972", + "slug": "lck_spring_2018", + "startDate": "2018-01-16", + "endDate": "2018-04-14" + }, + { + "id": "109467297671986286", + "slug": "lck_summer_2017", + "startDate": "2017-05-30", + "endDate": "2017-08-26" + }, + { + "id": "109462843692030951", + "slug": "lck_spring_2017", + "startDate": "2017-01-17", + "endDate": "2017-04-22" + }, + { + "id": "109461739707114350", + "slug": "lck_summer_2016", + "startDate": "2016-05-25", + "endDate": "2016-08-20" + }, + { + "id": "109461292917902160", + "slug": "lck_spring_2016", + "startDate": "2016-01-13", + "endDate": "2016-04-23" + }, + { + "id": "109445541215037058", + "slug": "champions_summer_2015", + "startDate": "2015-05-20", + "endDate": "2015-08-29" + }, + { + "id": "109444869705769128", + "slug": "champions_spring_2015", + "startDate": "2015-01-07", + "endDate": "2015-05-02" + }, + { + "id": "109441091720628455", + "slug": "champions_summer_2014", + "startDate": "2014-06-17", + "endDate": "2014-08-16" + }, + { + "id": "109440642555058105", + "slug": "champions_spring_2014", + "startDate": "2014-03-12", + "endDate": "2014-05-24" + }, + { + "id": "109440320603801592", + "slug": "champions_winter_2014", + "startDate": "2013-11-15", + "endDate": "2014-01-25" + }, + { + "id": "109434488623686609", + "slug": "champions_summer_2013", + "startDate": "2013-07-03", + "endDate": "2013-08-31" + }, + { + "id": "109434103072103929", + "slug": "champions_spring_2013", + "startDate": "2013-04-03", + "endDate": "2013-06-15" + }, + { + "id": "109433362199747894", + "slug": "champions_summer_2012", + "startDate": "2012-07-04", + "endDate": "2012-09-08" + }, + { + "id": "109479322498002624", + "slug": "champions_spring_2012", + "startDate": "2012-03-21", + "endDate": "2012-05-19" + } + ] + }, + "98767991314006698": { + "tournaments": [ + { + "id": "115616254668930796", + "slug": "lpl_split_3_2026", + "startDate": "2026-07-23", + "endDate": "2026-09-09" + }, + { + "id": "115615907996665826", + "slug": "lpl_split_2_2026", + "startDate": "2026-04-04", + "endDate": "2026-06-14" + }, + { + "id": "115610660442964993", + "slug": "lpl_split_1_2026", + "startDate": "2026-01-13", + "endDate": "2026-03-08" + }, + { + "id": "114162735077666074", + "slug": "lpl_split_3_2025", + "startDate": "2025-07-19", + "endDate": "2025-09-28" + }, + { + "id": "113503620829714518", + "slug": "lpl_split_2_2025", + "startDate": "2025-03-22", + "endDate": "2025-06-14" + }, + { + "id": "113481048385904309", + "slug": "lpl_split_1_2025", + "startDate": "2025-01-12", + "endDate": "2025-03-01" + }, + { + "id": "113039084006163124", + "slug": "lpl_regional_qualifier_2024", + "startDate": "2024-08-30", + "endDate": "2024-09-03" + }, + { + "id": "112449498998017060", + "slug": "lpl_summer_2024", + "startDate": "2024-05-31", + "endDate": "2024-09-02" + }, + { + "id": "111561319409710508", + "slug": "lpl_spring_2024", + "startDate": "2024-01-21", + "endDate": "2024-04-21" + }, + { + "id": "110825936250664572", + "slug": "lpl_regional_finals_2023", + "startDate": "2023-08-03", + "endDate": "2023-08-10" + }, + { + "id": "110428848766564346", + "slug": "lpl_summer_2023", + "startDate": "2023-05-28", + "endDate": "2023-08-19" + }, + { + "id": "109669600527985422", + "slug": "lpl_spring_2023", + "startDate": "2023-01-12", + "endDate": "2023-04-16" + }, + { + "id": "108888310291632913", + "slug": "lpl_regional_finals_2022", + "startDate": "2022-09-01", + "endDate": "2022-09-05" + }, + { + "id": "108431300950695970", + "slug": "lpl_summer_2022", + "startDate": "2022-06-09", + "endDate": "2022-09-01" + }, + { + "id": "107417779630700437", + "slug": "lpl_spring_2022", + "startDate": "2022-01-10", + "endDate": "2022-05-01" + }, + { + "id": "106860829994219982", + "slug": "lpl_regional_finals_2021", + "startDate": "2021-08-29", + "endDate": "2021-09-06" + }, + { + "id": "106269484328946755", + "slug": "lpl_summer_2021", + "startDate": "2021-06-05", + "endDate": "2021-09-06" + }, + { + "id": "105516880821527383", + "slug": "lpl_spring_2021", + "startDate": "2021-01-09", + "endDate": "2021-04-18" + }, + { + "id": "104282610668475466", + "slug": "lpl_summer_2020", + "startDate": "2020-06-05", + "endDate": "2020-08-10" + }, + { + "id": "103462420723438502", + "slug": "lpl_spring_2020", + "startDate": "2020-01-13", + "endDate": "2020-04-26" + } + ] + }, + "113476371197627891": { + "tournaments": [ + { + "id": "115570728597462574", + "slug": "lcp_split_3_2026", + "startDate": "2026-07-20", + "endDate": "2026-10-11" + }, + { + "id": "115570683338104198", + "slug": "lcp_split_2_2026", + "startDate": "2026-03-29", + "endDate": "2026-06-21" + }, + { + "id": "115570600643843079", + "slug": "lcp_split_1_2026", + "startDate": "2026-01-15", + "endDate": "2026-03-01" + }, + { + "id": "113503113902025188", + "slug": "lcp_split_3_2025", + "startDate": "2025-07-26", + "endDate": "2025-10-04" + }, + { + "id": "113503008259566005", + "slug": "lcp_split_2_2025", + "startDate": "2025-04-19", + "endDate": "2025-06-08" + }, + { + "id": "113476402439116806", + "slug": "lcp_split_1_2025", + "startDate": "2025-01-17", + "endDate": "2025-02-23" + } + ] + }, + "109511549831443335": { + "tournaments": [ + { + "id": "115214006908339829", + "slug": "lta_north_promotion_2025", + "startDate": "2025-10-04", + "endDate": "2025-10-13" + }, + { + "id": "114748438521004544", + "slug": "nacl_summer_2025", + "startDate": "2025-07-17", + "endDate": "2025-09-13" + }, + { + "id": "114058215057136873", + "slug": "nacl_spring_2025", + "startDate": "2025-03-26", + "endDate": "2025-06-06" + }, + { + "id": "112528884625788027", + "slug": "lcs_challengers_summer_2024", + "startDate": "2024-06-15", + "endDate": "2024-09-09" + }, + { + "id": "111720047044090655", + "slug": "lcs_challengers_spring_2024", + "startDate": "2024-01-19", + "endDate": "2024-04-02" + }, + { + "id": "110574243270525539", + "slug": "nacl_summer_2023", + "startDate": "2023-06-08", + "endDate": "2023-08-12" + }, + { + "id": "109518697660746274", + "slug": "nacl_spring_2023", + "startDate": "2023-01-19", + "endDate": "2023-04-03" + } + ] + }, + "100695891328981122": { + "tournaments": [ + { + "id": "115014688120087909", + "slug": "emea_masters_summer_2025", + "startDate": "2025-09-23", + "endDate": "2025-11-03" + }, + { + "id": "114382093098368605", + "slug": "emea_masters_spring_2025", + "startDate": "2025-06-03", + "endDate": "2025-06-21" + }, + { + "id": "113990292491935482", + "slug": "emea_masters_winter_2025", + "startDate": "2025-03-17", + "endDate": "2025-03-23" + }, + { + "id": "112800626303511505", + "slug": "emea_masters_summer_2024", + "startDate": "2024-07-31", + "endDate": "2024-08-30" + }, + { + "id": "112009683822726475", + "slug": "emea_masters_spring_2024", + "startDate": "2024-04-14", + "endDate": "2024-04-29" + }, + { + "id": "110535609415063567", + "slug": "emea_masters_summer_2023", + "startDate": "2023-08-12", + "endDate": "2023-09-10" + }, + { + "id": "110016463793610620", + "slug": "emea_masters_spring_main_2023", + "startDate": "2023-04-09", + "endDate": "2023-04-30" + }, + { + "id": "110016413865287161", + "slug": "emea_masters_spring_play_ins_2023", + "startDate": "2023-04-02", + "endDate": "2023-04-08" + }, + { + "id": "108746562333593659", + "slug": "european_masters_summer_2022_main_event", + "startDate": "2022-08-29", + "endDate": "2022-09-28" + }, + { + "id": "108746545967156991", + "slug": "european_masters_summer_2022_play_ins", + "startDate": "2022-08-21", + "endDate": "2022-08-29" + }, + { + "id": "107893386210553711", + "slug": "european_masters_spring_2022_main_event", + "startDate": "2022-04-13", + "endDate": "2022-05-08" + }, + { + "id": "107893136888836553", + "slug": "european_masters_spring_2022_play_ins", + "startDate": "2022-04-03", + "endDate": "2022-04-08" + }, + { + "id": "106748850929174796", + "slug": "european_masters_summer_2021_main_event", + "startDate": "2021-08-29", + "endDate": "2021-09-20" + }, + { + "id": "106744065768553123", + "slug": "european_masters_summer_2021_play_ins", + "startDate": "2021-08-12", + "endDate": "2021-08-19" + }, + { + "id": "105990084003609117", + "slug": "european_masters_spring_2021_main_event", + "startDate": "2021-04-14", + "endDate": "2021-05-02" + }, + { + "id": "105945560578760612", + "slug": "european_masters_spring_2021_play_ins", + "startDate": "2021-03-29", + "endDate": "2021-04-01" + }, + { + "id": "104727755399361381", + "slug": "eu_masters_summer_2020", + "startDate": "2020-08-17", + "endDate": "2020-09-20" + }, + { + "id": "103936903203607374", + "slug": "european-masters-spring-2020", + "startDate": "2020-04-05", + "endDate": "2020-05-11" + } + ] + }, + "98767991349978712": { + "tournaments": [ + { + "id": "114828703037724343", + "slug": "ljl_finals_2025", + "startDate": "2025-07-19", + "endDate": "2025-09-15" + }, + { + "id": "114539643217942349", + "slug": "ljl_ignite_2025", + "startDate": "2025-05-21", + "endDate": "2025-06-22" + }, + { + "id": "114029811391829122", + "slug": "ljl_storm_2025", + "startDate": "2025-04-04", + "endDate": "2025-05-06" + }, + { + "id": "113679560219811189", + "slug": "ljl_forge_2025", + "startDate": "2025-01-30", + "endDate": "2025-03-09" + }, + { + "id": "112432412659901029", + "slug": "ljl_summer_2024", + "startDate": "2024-06-06", + "endDate": "2024-07-29" + }, + { + "id": "111561344908135976", + "slug": "ljl_spring_2024", + "startDate": "2024-01-19", + "endDate": "2024-03-04" + }, + { + "id": "110395308894756789", + "slug": "ljl_summer_2023", + "startDate": "2023-06-08", + "endDate": "2023-08-22" + }, + { + "id": "109710208772220245", + "slug": "ljl_spring_2023", + "startDate": "2023-01-26", + "endDate": "2023-04-18" + }, + { + "id": "108231751506773283", + "slug": "ljl_summer_2022", + "startDate": "2022-06-10", + "endDate": "2022-09-17" + }, + { + "id": "107455808271204256", + "slug": "ljl_spring_2022", + "startDate": "2022-02-09", + "endDate": "2022-04-11" + }, + { + "id": "106269757536651711", + "slug": "ljl_summer_2021", + "startDate": "2021-06-19", + "endDate": "2021-09-06" + }, + { + "id": "105562833911566614", + "slug": "ljl_spring_2021", + "startDate": "2021-01-23", + "endDate": "2021-04-12" + }, + { + "id": "104169308670244006", + "slug": "ljl_summer_2020", + "startDate": "2020-06-12", + "endDate": "2020-08-24" + }, + { + "id": "103540397353089204", + "slug": "ljl_spring_2020", + "startDate": "2020-02-08", + "endDate": "2020-04-19" + }, + { + "id": "109055718152043307", + "slug": "ljl_summer_2018", + "startDate": "2018-06-22", + "endDate": "2018-09-15" + }, + { + "id": "109054419919088344", + "slug": "ljl_spring_2018", + "startDate": "2018-02-09", + "endDate": "2018-04-14" + }, + { + "id": "109031138017871490", + "slug": "ljl_summer_2017", + "startDate": "2017-06-02", + "endDate": "2017-08-26" + }, + { + "id": "109030936392726416", + "slug": "ljl_spring_2017", + "startDate": "2017-01-20", + "endDate": "2017-04-01" + }, + { + "id": "109030266425341631", + "slug": "ljl_summer_2016", + "startDate": "2016-05-25", + "endDate": "2016-08-07" + }, + { + "id": "109030099487086096", + "slug": "ljl_spring_2016", + "startDate": "2016-01-17", + "endDate": "2016-04-10" + } + ] + }, + "98767991343597634": { + "tournaments": [ + { + "id": "114794176900117431", + "slug": "tcl_summer_2025", + "startDate": "2025-07-17", + "endDate": "2025-09-12" + }, + { + "id": "114160047307686906", + "slug": "tcl_spring_2025", + "startDate": "2025-03-27", + "endDate": "2025-05-30" + }, + { + "id": "113674160190470909", + "slug": "tcl_winter_2025", + "startDate": "2025-01-23", + "endDate": "2025-03-09" + }, + { + "id": "112445424615553289", + "slug": "tcl_summer_2024", + "startDate": "2024-05-29", + "endDate": "2024-08-05" + }, + { + "id": "111561232442665448", + "slug": "tcl_spring_2024", + "startDate": "2024-01-24", + "endDate": "2024-04-08" + }, + { + "id": "110429898578299667", + "slug": "tcl_summer_2023", + "startDate": "2023-06-06", + "endDate": "2023-08-19" + }, + { + "id": "109467188125028146", + "slug": "tcl_spring_2023", + "startDate": "2023-01-17", + "endDate": "2023-04-02" + }, + { + "id": "108197589213750000", + "slug": "tcl_summer_2022", + "startDate": "2022-04-10", + "endDate": "2022-09-17" + }, + { + "id": "107566408953200568", + "slug": "tcl_winter_2022", + "startDate": "2022-01-20", + "endDate": "2022-04-11" + }, + { + "id": "106269459003590888", + "slug": "tcl_summer_2021", + "startDate": "2021-06-05", + "endDate": "2021-09-05" + }, + { + "id": "105562822074055437", + "slug": "tcl_winter_2021", + "startDate": "2021-01-23", + "endDate": "2021-04-18" + }, + { + "id": "104248884617992857", + "slug": "tcl_summer_2020", + "startDate": "2020-06-06", + "endDate": "2020-09-06" + }, + { + "id": "103495775740097550", + "slug": "tcl_winter_2020", + "startDate": "2020-02-01", + "endDate": "2020-04-25" + }, + { + "id": "109189886261421571", + "slug": "tcl_winter_2016", + "startDate": "2016-01-16", + "endDate": "2016-04-03" + } + ] + }, + "105266098308571975": { + "tournaments": [ + { + "id": "115762368780361599", + "slug": "nlc_winter_2026", + "startDate": "2026-01-14", + "endDate": "2026-03-07" + }, + { + "id": "114754434695977574", + "slug": "nlc_summer_2025", + "startDate": "2025-07-15", + "endDate": "2025-08-30" + }, + { + "id": "114154402090513719", + "slug": "nlc_spring_2025", + "startDate": "2025-04-02", + "endDate": "2025-06-01" + }, + { + "id": "113663225580894249", + "slug": "nlc_winter_2025", + "startDate": "2025-01-14", + "endDate": "2025-03-09" + }, + { + "id": "112472677071437423", + "slug": "nlc_summer_2024", + "startDate": "2024-06-03", + "endDate": "2024-08-04" + }, + { + "id": "111561276695573648", + "slug": "nlc_spring_2024", + "startDate": "2024-01-23", + "endDate": "2024-03-28" + }, + { + "id": "110425082378454783", + "slug": "nlc_summer_2023", + "startDate": "2023-06-04", + "endDate": "2023-08-19" + }, + { + "id": "109467209705050129", + "slug": "nlc_spring_2023", + "startDate": "2023-01-15", + "endDate": "2023-03-31" + }, + { + "id": "108172137675600410", + "slug": "nlc_summer_2022", + "startDate": "2022-05-29", + "endDate": "2022-08-22" + }, + { + "id": "107417432877679361", + "slug": "nlc_spring_2022", + "startDate": "2022-01-01", + "endDate": "2022-04-05" + }, + { + "id": "106340473013395166", + "slug": "nlc_summer_2021", + "startDate": "2021-06-02", + "endDate": "2021-08-10" + }, + { + "id": "105562790070504659", + "slug": "nlc_2021_split1", + "startDate": "2021-01-19", + "endDate": "2021-03-24" + } + ] + }, + "105266103462388553": { + "tournaments": [ + { + "id": "114755484276423823", + "slug": "lfl_summer_2025", + "startDate": "2025-07-23", + "endDate": "2025-09-12" + }, + { + "id": "114188277808117678", + "slug": "lfl_spring_2025", + "startDate": "2025-04-09", + "endDate": "2025-05-29" + }, + { + "id": "113662954820773942", + "slug": "lfl_ko_2025", + "startDate": "2025-01-22", + "endDate": "2025-02-27" + }, + { + "id": "112445505684034122", + "slug": "lfl_summer_2024", + "startDate": "2024-05-21", + "endDate": "2024-08-03" + }, + { + "id": "111561126754061496", + "slug": "lfl_spring_2024", + "startDate": "2024-01-16", + "endDate": "2024-04-05" + }, + { + "id": "110424922266960422", + "slug": "lfl_summer_2023", + "startDate": "2023-05-29", + "endDate": "2023-08-15" + }, + { + "id": "109467129925344897", + "slug": "lfl_spring_2023", + "startDate": "2023-01-17", + "endDate": "2023-04-01" + }, + { + "id": "108158179538212767", + "slug": "lfl_2022_summer", + "startDate": "2022-05-30", + "endDate": "2022-08-20" + }, + { + "id": "107468370558963709", + "slug": "lfl_2022_spring", + "startDate": "2022-01-09", + "endDate": "2022-04-02" + }, + { + "id": "106313258182079617", + "slug": "lfl_2021_summer", + "startDate": "2021-05-28", + "endDate": "2021-08-12" + }, + { + "id": "105568157420311272", + "slug": "lfl_2021_spring", + "startDate": "2021-01-19", + "endDate": "2021-03-25" + } + ] + }, + "107407335299756365": { + "tournaments": [ + { + "id": "115763627953892068", + "slug": "rol_winter_2026", + "startDate": "2026-01-12", + "endDate": "2026-02-19" + }, + { + "id": "114810386116506850", + "slug": "rol_summer_2025", + "startDate": "2025-07-15", + "endDate": "2025-09-13" + }, + { + "id": "114161480598590524", + "slug": "rol_spring_2025", + "startDate": "2025-03-25", + "endDate": "2025-06-15" + }, + { + "id": "113866388606726972", + "slug": "rol_winter_2025", + "startDate": "2025-02-11", + "endDate": "2025-03-06" + }, + { + "id": "112472854456120307", + "slug": "eslol_summer_2024", + "startDate": "2024-06-03", + "endDate": "2024-08-04" + }, + { + "id": "111561264585765889", + "slug": "elite_series_spring_2024", + "startDate": "2024-01-22", + "endDate": "2024-03-31" + }, + { + "id": "110424377524465827", + "slug": "elite_series_summer_2023", + "startDate": "2023-06-04", + "endDate": "2023-08-19" + }, + { + "id": "109467335886224883", + "slug": "elite_series_spring_2023", + "startDate": "2023-01-22", + "endDate": "2023-04-01" + }, + { + "id": "108172713549542364", + "slug": "elite_series_summer_2022", + "startDate": "2022-06-05", + "endDate": "2022-08-15" + }, + { + "id": "107563481236862420", + "slug": "elite_series_spring_2022", + "startDate": "2022-01-16", + "endDate": "2022-05-01" + } + ] + }, + "105266101075764040": { + "tournaments": [ + { + "id": "114862099837919799", + "slug": "lplol_summer_2025", + "startDate": "2025-08-06", + "endDate": "2025-09-12" + }, + { + "id": "114183680761848343", + "slug": "lplol_spring_2025", + "startDate": "2025-04-17", + "endDate": "2025-05-23" + }, + { + "id": "113674204176952562", + "slug": "lplol_winter_2025", + "startDate": "2025-02-06", + "endDate": "2025-03-08" + }, + { + "id": "112439222794352790", + "slug": "lplol_summer_2024", + "startDate": "2024-05-22", + "endDate": "2024-07-21" + }, + { + "id": "111561294123889145", + "slug": "liga_portuguesa_spring_2024", + "startDate": "2024-01-24", + "endDate": "2024-04-06" + }, + { + "id": "110425027634430773", + "slug": "liga_portuguesa_summer_2023", + "startDate": "2023-06-04", + "endDate": "2023-08-19" + }, + { + "id": "109467367966036144", + "slug": "liga_portuguesa_spring_2023", + "startDate": "2023-01-22", + "endDate": "2023-04-02" + }, + { + "id": "108171576055718204", + "slug": "liga_portuguesa_summer_2022", + "startDate": "2022-06-05", + "endDate": "2022-08-08" + }, + { + "id": "107417530552861626", + "slug": "liga_portuguesa_spring_2022", + "startDate": "2022-01-17", + "endDate": "2022-03-21" + }, + { + "id": "106311748110571694", + "slug": "liga_portuguesa_summer_2021", + "startDate": "2021-05-28", + "endDate": "2021-08-31" + }, + { + "id": "105596427125578664", + "slug": "liga_portuguesa_spring_2021", + "startDate": "2021-01-25", + "endDate": "2021-03-22" + } + ] + }, + "105266094998946936": { + "tournaments": [ + { + "id": "114732099821115263", + "slug": "lit_summer_2025", + "startDate": "2025-07-14", + "endDate": "2025-09-14" + }, + { + "id": "114177864783746428", + "slug": "lit_spring_2025", + "startDate": "2025-03-31", + "endDate": "2025-05-23" + }, + { + "id": "113668152169543868", + "slug": "lit_winter_2025", + "startDate": "2025-01-21", + "endDate": "2025-03-09" + }, + { + "id": "112432347543796162", + "slug": "lit_summer_2024", + "startDate": "2024-05-22", + "endDate": "2024-07-31" + }, + { + "id": "111561283082842475", + "slug": "lit_spring_2024", + "startDate": "2024-01-24", + "endDate": "2024-03-30" + }, + { + "id": "110444946767792846", + "slug": "pg_nationals_summer_2023", + "startDate": "2023-06-06", + "endDate": "2023-08-19" + }, + { + "id": "109539799647393670", + "slug": "pg_nationals_spring_2023", + "startDate": "2023-01-24", + "endDate": "2023-04-04" + }, + { + "id": "108166853206827117", + "slug": "pg_nationals_summer_2022", + "startDate": "2022-06-05", + "endDate": "2022-08-09" + }, + { + "id": "107457033672415830", + "slug": "pg_nationals_spring_2022", + "startDate": "2022-01-17", + "endDate": "2022-04-01" + }, + { + "id": "106319725617882570", + "slug": "pg_nationals_summer_2021", + "startDate": "2021-05-28", + "endDate": "2021-08-20" + }, + { + "id": "105539775517396799", + "slug": "pg_nationals_spring_2021", + "startDate": "2021-01-13", + "endDate": "2021-03-14" + } + ] + }, + "113673877956508505": { + "tournaments": [ + { + "id": "114742343627040803", + "slug": "rift_legends_summer_2025", + "startDate": "2025-07-22", + "endDate": "2025-09-07" + }, + { + "id": "114161562262767578", + "slug": "rift_legends_spring_2025", + "startDate": "2025-04-08", + "endDate": "2025-05-18" + }, + { + "id": "113674011499027435", + "slug": "rift_legends_winter_2025", + "startDate": "2025-01-28", + "endDate": "2025-03-09" + } + ] + }, + "105266074488398661": { + "tournaments": [ + { + "id": "114714388567729501", + "slug": "superliga_summer_2025", + "startDate": "2025-07-15", + "endDate": "2025-08-31" + }, + { + "id": "114188218388133640", + "slug": "superliga_spring_2025", + "startDate": "2025-04-08", + "endDate": "2025-05-30" + }, + { + "id": "113668596080359952", + "slug": "superliga_winter_2025", + "startDate": "2025-01-14", + "endDate": "2025-03-08" + }, + { + "id": "112410296061353653", + "slug": "superliga_summer_2024", + "startDate": "2024-05-21", + "endDate": "2024-08-05" + }, + { + "id": "111521474504777719", + "slug": "superliga_spring_2024", + "startDate": "2024-01-16", + "endDate": "2024-04-06" + }, + { + "id": "110349992504762921", + "slug": "superliga_summer_2023", + "startDate": "2023-05-28", + "endDate": "2023-08-19" + }, + { + "id": "109467087406180264", + "slug": "superliga_spring_2023", + "startDate": "2023-01-15", + "endDate": "2023-04-03" + }, + { + "id": "108171648025800968", + "slug": "superliga_summer_2022", + "startDate": "2022-05-29", + "endDate": "2022-08-22" + }, + { + "id": "107468241207873310", + "slug": "superliga_spring_2022", + "startDate": "2022-01-09", + "endDate": "2022-04-01" + }, + { + "id": "106312505037543791", + "slug": "superliga_summer_2021", + "startDate": "2021-05-28", + "endDate": "2021-08-20" + }, + { + "id": "105562529622379161", + "slug": "superliga_spring_2021", + "startDate": "2021-01-18", + "endDate": "2021-03-26" + } + ] + }, + "105266091639104326": { + "tournaments": [ + { + "id": "114630622108796034", + "slug": "prime_league_summer_2025", + "startDate": "2025-07-15", + "endDate": "2025-08-24" + }, + { + "id": "114177360302644932", + "slug": "prime_league_spring_2025", + "startDate": "2025-03-25", + "endDate": "2025-05-30" + }, + { + "id": "113668056932202938", + "slug": "prime_league_winter_2025", + "startDate": "2025-01-21", + "endDate": "2025-03-08" + }, + { + "id": "112444819259693797", + "slug": "prime_league_summer_2024", + "startDate": "2024-05-21", + "endDate": "2024-08-04" + }, + { + "id": "111561088092205854", + "slug": "prime_league_spring_2024", + "startDate": "2024-01-16", + "endDate": "2024-04-14" + }, + { + "id": "110343648526792583", + "slug": "prime_league_summer_2023", + "startDate": "2023-05-30", + "endDate": "2023-08-19" + }, + { + "id": "109539770333903339", + "slug": "prime_league_spring_2023", + "startDate": "2023-01-17", + "endDate": "2023-04-04" + }, + { + "id": "108158210393938046", + "slug": "prime_league_summer_2022", + "startDate": "2022-05-30", + "endDate": "2022-08-20" + }, + { + "id": "107417741193036913", + "slug": "prime_league_spring_2022", + "startDate": "2022-01-01", + "endDate": "2022-05-01" + }, + { + "id": "106305935741165084", + "slug": "prime_league_summer_2021", + "startDate": "2021-05-10", + "endDate": "2021-08-20" + }, + { + "id": "105562556573338448", + "slug": "prime_league_spring_2021", + "startDate": "2021-01-19", + "endDate": "2021-03-22" + } + ] + }, + "105266106309666619": { + "tournaments": [ + { + "id": "114776362561927401", + "slug": "hitpoint_masters_summer_2025", + "startDate": "2025-07-19", + "endDate": "2025-08-30" + }, + { + "id": "114177840000803018", + "slug": "hitpoint_masters_spring_2025", + "startDate": "2025-04-08", + "endDate": "2025-05-30" + }, + { + "id": "113663159610812486", + "slug": "hitpoint_masters_winter_2025", + "startDate": "2025-01-23", + "endDate": "2025-03-09" + }, + { + "id": "112512601839944105", + "slug": "hitpoint_masters_summer_2024", + "startDate": "2024-05-27", + "endDate": "2024-08-05" + }, + { + "id": "111561248544664195", + "slug": "hitpoint_masters_spring_2024", + "startDate": "2024-01-22", + "endDate": "2024-04-01" + }, + { + "id": "110444842958969834", + "slug": "hitpoint_masters_summer_2023", + "startDate": "2023-06-04", + "endDate": "2023-08-19" + }, + { + "id": "109467357559212289", + "slug": "hitpoint_masters_spring_2023", + "startDate": "2023-01-22", + "endDate": "2023-04-03" + }, + { + "id": "108155621258059329", + "slug": "hitpoint_masters_summer_2022", + "startDate": "2022-06-05", + "endDate": "2022-08-22" + }, + { + "id": "107575089348919003", + "slug": "hitpoint_masters_spring_2022", + "startDate": "2022-01-17", + "endDate": "2022-03-21" + }, + { + "id": "106419362022708584", + "slug": "hitpoint_masters_summer_2021", + "startDate": "2021-06-16", + "endDate": "2021-09-30" + }, + { + "id": "105596516630284353", + "slug": "hitpoint_masters_spring_2021", + "startDate": "2021-01-24", + "endDate": "2021-03-22" + } + ] + }, + "105266111679554379": { + "tournaments": [ + { + "id": "114828766172241106", + "slug": "ebl_summer_2025", + "startDate": "2025-07-23", + "endDate": "2025-09-05" + }, + { + "id": "114234181774636570", + "slug": "ebl_spring_2025", + "startDate": "2025-04-09", + "endDate": "2025-05-29" + }, + { + "id": "113668947062270672", + "slug": "ebl_winter_2025", + "startDate": "2025-02-05", + "endDate": "2025-03-09" + }, + { + "id": "110418013822985087", + "slug": "ebl_summer_2023", + "startDate": "2023-06-05", + "endDate": "2023-08-19" + }, + { + "id": "112472788805730101", + "slug": "ebl_summer_2024", + "startDate": "2023-05-22", + "endDate": "2024-07-20" + }, + { + "id": "111561304916423966", + "slug": "ebl_spring_2024", + "startDate": "2023-01-30", + "endDate": "2024-04-06" + }, + { + "id": "109467260897553204", + "slug": "ebl_spring_2023", + "startDate": "2023-01-22", + "endDate": "2023-04-04" + }, + { + "id": "108155414582681011", + "slug": "esports_balkan_league_summer_2022", + "startDate": "2022-06-05", + "endDate": "2022-08-15" + }, + { + "id": "107468404707086558", + "slug": "esports_balkan_league_spring_2022", + "startDate": "2022-01-16", + "endDate": "2022-04-01" + }, + { + "id": "106385973090763431", + "slug": "esports_balkan_league_summer_2021", + "startDate": "2021-06-10", + "endDate": "2021-09-30" + }, + { + "id": "105596416963238709", + "slug": "esports_balkan_league_spring_2021", + "startDate": "2021-01-25", + "endDate": "2021-03-28" + } + ] + }, + "105266108767593290": { + "tournaments": [ + { + "id": "115746382932861179", + "slug": "hll_winter_2026", + "startDate": "2026-01-13", + "endDate": "2026-02-28" + }, + { + "id": "114619859980624299", + "slug": "hll_split_3_2025", + "startDate": "2025-07-15", + "endDate": "2025-09-14" + }, + { + "id": "114183452234830184", + "slug": "hll_spring_2025", + "startDate": "2025-04-01", + "endDate": "2025-06-01" + }, + { + "id": "113794227627651012", + "slug": "hll_winter_2025", + "startDate": "2025-01-21", + "endDate": "2025-03-02" + }, + { + "id": "112438678921579763", + "slug": "gll_summer_2024", + "startDate": "2024-05-20", + "endDate": "2024-07-20" + }, + { + "id": "111561239818866071", + "slug": "gll_spring_2024", + "startDate": "2024-01-22", + "endDate": "2024-04-13" + }, + { + "id": "110428723804419399", + "slug": "gll_summer_2023", + "startDate": "2023-06-04", + "endDate": "2023-08-19" + }, + { + "id": "109467311739792322", + "slug": "gll_spring_2023", + "startDate": "2023-01-22", + "endDate": "2023-04-03" + }, + { + "id": "108171529103782009", + "slug": "greek_legends_league_summer_2022", + "startDate": "2022-05-29", + "endDate": "2022-08-01" + }, + { + "id": "107575345394138670", + "slug": "greek_legends_league_spring_2022", + "startDate": "2022-01-17", + "endDate": "2022-03-13" + }, + { + "id": "106295147953460518", + "slug": "greek_legends_league_summer_2021", + "startDate": "2021-05-25", + "endDate": "2021-08-31" + }, + { + "id": "105522904800920947", + "slug": "greek_legends_league_spring_2021", + "startDate": "2021-01-11", + "endDate": "2021-03-22" + } + ] + }, + "109545772895506419": { + "tournaments": [ + { + "id": "114715029855577701", + "slug": "arabian_league_summer_2025", + "startDate": "2025-07-14", + "endDate": "2025-08-20" + }, + { + "id": "114177474113380399", + "slug": "arabian_league_spring_2025", + "startDate": "2025-04-09", + "endDate": "2025-05-23" + }, + { + "id": "113871256871360643", + "slug": "arabian_league_winter_2025", + "startDate": "2025-02-07", + "endDate": "2025-03-07" + }, + { + "id": "112439197736079298", + "slug": "arabian_league_summer_2024", + "startDate": "2024-05-22", + "endDate": "2024-07-20" + }, + { + "id": "111561311789132563", + "slug": "arabian_league_spring_2024", + "startDate": "2024-01-31", + "endDate": "2024-04-06" + }, + { + "id": "110422923164198764", + "slug": "arabian_league_summer_2023", + "startDate": "2023-06-11", + "endDate": "2023-08-13" + }, + { + "id": "109545777182748074", + "slug": "arabian_league_spring_2023", + "startDate": "2023-01-23", + "endDate": "2023-04-02" + } + ] + }, + "98767991335774713": { + "tournaments": [ + { + "id": "114810847056492033", + "slug": "lck_cl_split_3_2025", + "startDate": "2025-07-21", + "endDate": "2025-09-30" + }, + { + "id": "114194683845864582", + "slug": "lck_cl_split_2_2025", + "startDate": "2025-03-31", + "endDate": "2025-05-30" + }, + { + "id": "113684769985506946", + "slug": "lck_cl_kickoff_2025", + "startDate": "2025-01-13", + "endDate": "2025-02-27" + }, + { + "id": "112489556223566026", + "slug": "lck_challengers_summer_2024", + "startDate": "2024-06-10", + "endDate": "2024-09-06" + }, + { + "id": "111697800628410448", + "slug": "lck_challengers_spring_2024", + "startDate": "2024-01-14", + "endDate": "2024-04-12" + }, + { + "id": "110378429156980338", + "slug": "lck_challengers_summer_2023", + "startDate": "2023-06-03", + "endDate": "2023-08-25" + }, + { + "id": "109625523800645158", + "slug": "lck_challengers_spring_2023", + "startDate": "2023-01-14", + "endDate": "2023-04-10" + }, + { + "id": "108211175216687366", + "slug": "lck_challengers_summer_2022", + "startDate": "2022-05-08", + "endDate": "2022-09-07" + }, + { + "id": "107439257586040014", + "slug": "lck_challengers_spring_2022", + "startDate": "2022-01-09", + "endDate": "2022-04-02" + }, + { + "id": "106308351107145908", + "slug": "lck_challengers_summer_2021", + "startDate": "2021-06-07", + "endDate": "2021-08-28" + }, + { + "id": "105562431502825774", + "slug": "lck_challengers_spring_2021", + "startDate": "2021-01-18", + "endDate": "2021-04-09" + } + ] + }, + "105549980953490846": { + "tournaments": [ + { + "id": "115213624509956729", + "slug": "lta_south_promotion_2025", + "startDate": "2025-09-30", + "endDate": "2025-10-09" + }, + { + "id": "114776759789906723", + "slug": "circuito_desafiante_split_2_2025", + "startDate": "2025-07-21", + "endDate": "2025-09-13" + }, + { + "id": "114023990064284422", + "slug": "circuito_desafiante_split_1_2025", + "startDate": "2025-03-17", + "endDate": "2025-06-09" + }, + { + "id": "112452946293598455", + "slug": "cblol_academy_split_2_2024", + "startDate": "2024-06-02", + "endDate": "2024-08-27" + }, + { + "id": "111561450266818827", + "slug": "cblol_academy_split_1_2024", + "startDate": "2024-02-04", + "endDate": "2024-04-29" + }, + { + "id": "110413232002702589", + "slug": "cblol_academy_2023_split_2", + "startDate": "2023-06-11", + "endDate": "2023-09-03" + }, + { + "id": "109523665497010762", + "slug": "cblol_academy_2023_split_1", + "startDate": "2023-01-22", + "endDate": "2023-04-23" + }, + { + "id": "108211948453261786", + "slug": "cblol_academy_split_2_2022", + "startDate": "2022-06-12", + "endDate": "2022-09-11" + }, + { + "id": "107565607659994755", + "slug": "cblol_academy_split_1_2022", + "startDate": "2022-01-24", + "endDate": "2022-04-18" + }, + { + "id": "106269705187845648", + "slug": "cblol_academy_split_2_2021", + "startDate": "2021-06-05", + "endDate": "2021-08-31" + }, + { + "id": "105562692792011783", + "slug": "cblol_academy_split_1_2021", + "startDate": "2021-01-19", + "endDate": "2021-04-18" + } + ] + }, + "104366947889790212": { + "tournaments": [ + { + "id": "114776963169708490", + "slug": "pcs_split_3_2025", + "startDate": "2025-07-21", + "endDate": "2025-08-31" + }, + { + "id": "114256436704994993", + "slug": "pcs_split_2_2025", + "startDate": "2025-04-07", + "endDate": "2025-06-18" + }, + { + "id": "113685278534131646", + "slug": "pcs_split_1_2025", + "startDate": "2025-01-10", + "endDate": "2025-03-26" + }, + { + "id": "112518304877432981", + "slug": "pcs_summer_2024", + "startDate": "2024-06-07", + "endDate": "2024-09-01" + }, + { + "id": "111561360819956641", + "slug": "pcs_spring_2024", + "startDate": "2024-01-18", + "endDate": "2024-04-08" + }, + { + "id": "110847340080101648", + "slug": "pcs_summer_playoffs_2023", + "startDate": "2023-08-09", + "endDate": "2023-09-12" + }, + { + "id": "110423696147088301", + "slug": "pcs_summer_2023", + "startDate": "2023-06-28", + "endDate": "2023-09-12" + }, + { + "id": "110017385374098523", + "slug": "pcs_spring_playoffs_2023", + "startDate": "2023-03-22", + "endDate": "2023-04-12" + }, + { + "id": "109704924270305512", + "slug": "pcs_spring_2023", + "startDate": "2023-01-31", + "endDate": "2023-03-13" + }, + { + "id": "108166997301178190", + "slug": "pcs_summer_2022", + "startDate": "2022-06-23", + "endDate": "2022-09-10" + }, + { + "id": "107693721179065689", + "slug": "pcs_spring_2022", + "startDate": "2022-02-11", + "endDate": "2022-04-18" + }, + { + "id": "106269875362449980", + "slug": "pcs_summer_2021", + "startDate": "2021-07-03", + "endDate": "2021-08-30" + }, + { + "id": "108883606278048211", + "slug": "pcs_spring_2021", + "startDate": "2021-02-19", + "endDate": "2021-04-19" + }, + { + "id": "104372946599464241", + "slug": "pcs_summer_2020", + "startDate": "2020-06-20", + "endDate": "2020-09-07" + }, + { + "id": "108795630627503777", + "slug": "pcs_spring_2020", + "startDate": "2020-02-29", + "endDate": "2020-05-04" + } + ] + }, + "110371976858004491": { + "tournaments": [ + { + "id": "114776441103870735", + "slug": "lrn_split_2_2025", + "startDate": "2025-07-13", + "endDate": "2025-09-09" + }, + { + "id": "114069328930761295", + "slug": "lrn_split_1_2025", + "startDate": "2025-03-24", + "endDate": "2025-06-03" + }, + { + "id": "111561403146382594", + "slug": "lrn_opening_2024", + "startDate": "2024-03-31", + "endDate": "2024-07-31" + }, + { + "id": "110372140231846916", + "slug": "lrn_closing_2023", + "startDate": "2023-05-27", + "endDate": "2023-08-21" + } + ] + }, + "110372322609949919": { + "tournaments": [ + { + "id": "114776582140270669", + "slug": "lrs_split_2_2025", + "startDate": "2025-07-15", + "endDate": "2025-09-11" + }, + { + "id": "114069355462093548", + "slug": "lrs_split_1_2025", + "startDate": "2025-03-23", + "endDate": "2025-06-04" + }, + { + "id": "111561409389989820", + "slug": "lrs_opening_2024", + "startDate": "2024-03-31", + "endDate": "2024-07-22" + }, + { + "id": "110372454557117766", + "slug": "lrs_closing_2023", + "startDate": "2023-05-31", + "endDate": "2023-08-28" + } + ] + }, + "108001239847565215": { + "tournaments": [ + { + "id": "111573236201487481", + "slug": "tft_events_2024", + "startDate": "2024-10-31", + "endDate": "2024-12-15" + }, + { + "id": "109761195185432372", + "slug": "tft_events_2023", + "startDate": "2023-01-01", + "endDate": "2023-11-30" + }, + { + "id": "108398603512314614", + "slug": "tft_event_summer", + "startDate": "2022-05-01", + "endDate": "2022-11-30" + } + ] + }, + "113475149040947852": { + "tournaments": [ + { + "id": "113487258403577480", + "slug": "lta_cross_split_3_2025", + "startDate": "2025-09-13", + "endDate": "2025-09-29" + }, + { + "id": "113475267410760335", + "slug": "lta_cross_split_1_2025", + "startDate": "2025-02-15", + "endDate": "2025-02-23" + } + ] + }, + "101382741235120470": { + "tournaments": [ + { + "id": "112483472172553086", + "slug": "lla_closing_2024", + "startDate": "2024-06-11", + "endDate": "2024-08-24" + }, + { + "id": "111561378016799834", + "slug": "lla_opening_2024", + "startDate": "2024-01-15", + "endDate": "2024-04-07" + }, + { + "id": "110411420269584926", + "slug": "lla_closing_2023", + "startDate": "2023-06-04", + "endDate": "2023-08-27" + }, + { + "id": "109672513958565698", + "slug": "lla_opening_2023", + "startDate": "2023-01-22", + "endDate": "2023-04-17" + }, + { + "id": "108916413227302339", + "slug": "lla_promotion_2022", + "startDate": "2022-09-09", + "endDate": "2022-09-12" + }, + { + "id": "108197521933954516", + "slug": "lla_closing_2022", + "startDate": "2022-06-10", + "endDate": "2022-08-01" + }, + { + "id": "107530554766055254", + "slug": "lla_opening_2022", + "startDate": "2022-01-28", + "endDate": "2022-04-17" + }, + { + "id": "106845973122821257", + "slug": "lla_promotion_2021", + "startDate": "2021-08-31", + "endDate": "2021-09-06" + }, + { + "id": "106269744788213905", + "slug": "lla_closing_2021", + "startDate": "2021-06-19", + "endDate": "2021-08-30" + }, + { + "id": "105551618304300204", + "slug": "lla_opening_2021", + "startDate": "2021-01-30", + "endDate": "2021-04-10" + }, + { + "id": "104237136838348356", + "slug": "lla-closing-2020", + "startDate": "2020-06-20", + "endDate": "2020-09-06" + }, + { + "id": "103540419468532110", + "slug": "lla_2020_split1", + "startDate": "2020-02-15", + "endDate": "2020-04-25" + } + ] + }, + "105709090213554609": { + "tournaments": [ + { + "id": "112439909522772195", + "slug": "lco_summer_2024", + "startDate": "2024-05-27", + "endDate": "2024-07-22" + }, + { + "id": "111561353913765677", + "slug": "lco_spring_2024", + "startDate": "2024-01-14", + "endDate": "2024-04-29" + }, + { + "id": "109675608880518030", + "slug": "lco_split_2_2023", + "startDate": "2023-06-04", + "endDate": "2023-08-01" + }, + { + "id": "109675619694467439", + "slug": "lco_split_1_2023", + "startDate": "2023-01-19", + "endDate": "2023-04-30" + }, + { + "id": "108197674522551242", + "slug": "lco_split_2_2022", + "startDate": "2022-06-03", + "endDate": "2022-09-10" + }, + { + "id": "107439320897210747", + "slug": "lco_split_1_2022", + "startDate": "2022-01-23", + "endDate": "2022-04-29" + }, + { + "id": "106273204408903419", + "slug": "lco_split_2_2021", + "startDate": "2021-06-15", + "endDate": "2021-08-29" + }, + { + "id": "105747961298296953", + "slug": "lco_split_1_2021", + "startDate": "2021-02-23", + "endDate": "2021-04-11" + }, + { + "id": "109639302112483684", + "slug": "opl_split_2_2020", + "startDate": "2020-06-04", + "endDate": "2020-08-29" + }, + { + "id": "109632411128070811", + "slug": "opl_split_1_2020", + "startDate": "2020-01-30", + "endDate": "2020-04-25" + } + ] + }, + "107213827295848783": { + "tournaments": [ + { + "id": "114676600192097598", + "slug": "vcs_finals_2025", + "startDate": "2025-07-17", + "endDate": "2025-07-20" + }, + { + "id": "114262097377734883", + "slug": "vcs_summer_2025", + "startDate": "2025-05-27", + "endDate": "2025-06-22" + }, + { + "id": "113843044274707798", + "slug": "vcs_spring_2025", + "startDate": "2025-02-28", + "endDate": "2025-03-30" + }, + { + "id": "112552481837121929", + "slug": "vcs_summer_2024", + "startDate": "2024-06-20", + "endDate": "2024-08-19" + }, + { + "id": "111561368670434346", + "slug": "vcs_spring_2024", + "startDate": "2024-01-19", + "endDate": "2024-04-07" + }, + { + "id": "110416959491275651", + "slug": "vcs_summer_2023", + "startDate": "2023-06-21", + "endDate": "2023-09-12" + }, + { + "id": "109749565997987636", + "slug": "vcs_spring_2023", + "startDate": "2023-02-14", + "endDate": "2023-05-03" + }, + { + "id": "109067014926424947", + "slug": "vcs_summer_2022", + "startDate": "2022-07-07", + "endDate": "2022-09-04" + }, + { + "id": "109066101880117809", + "slug": "vcs_spring_2022", + "startDate": "2022-02-11", + "endDate": "2022-04-24" + }, + { + "id": "107256578722475733", + "slug": "vcs_winter_2021", + "startDate": "2021-11-14", + "endDate": "2021-12-30" + } + ] + }, + "110988878756156222": { + "tournaments": [ + { + "id": "110988896196596544", + "slug": "wqs_emea_na_2023", + "startDate": "2023-10-08", + "endDate": "2023-10-09" + } + ] + }, + "111102022734849553": { + "tournaments": [ + { + "id": "111102042176368993", + "slug": "latam_ddr_2023", + "startDate": "2023-10-14", + "endDate": "2023-10-16" + } + ] + }, + "113470291645289904": { + "tournaments": [ + { + "id": "113487190604684835", + "slug": "lta_n_split_3_2025", + "startDate": "2025-07-26", + "endDate": "2025-09-29" + }, + { + "id": "113486836942544193", + "slug": "lta_n_split_2_2025", + "startDate": "2025-04-05", + "endDate": "2025-06-16" + }, + { + "id": "113470333882171435", + "slug": "lta_n_split_1_2025", + "startDate": "2025-01-25", + "endDate": "2025-02-10" + } + ] + }, + "113475181634818701": { + "tournaments": [ + { + "id": "113487198985031867", + "slug": "lta_s_split_3_2025", + "startDate": "2025-07-26", + "endDate": "2025-09-29" + }, + { + "id": "113486838366247730", + "slug": "lta_s_split_2_2025", + "startDate": "2025-04-05", + "endDate": "2025-06-16" + }, + { + "id": "113475306293679849", + "slug": "lta_s_split_1_2025", + "startDate": "2025-01-25", + "endDate": "2025-02-09" + } + ] + }, + "98767991355908944": { + "tournaments": [ + { + "id": "107417471555810057", + "slug": "lcl_spring_2022", + "startDate": "2022-02-11", + "endDate": "2022-04-16" + }, + { + "id": "106269769724268826", + "slug": "lcl_summer_2021", + "startDate": "2021-06-26", + "endDate": "2021-09-05" + }, + { + "id": "105663539171928276", + "slug": "lcl_spring_2021", + "startDate": "2021-02-13", + "endDate": "2021-04-17" + }, + { + "id": "110429321464170890", + "slug": "lcl_split_2_2020", + "startDate": "2020-06-20", + "endDate": "2020-09-07" + }, + { + "id": "110412360196989975", + "slug": "lcl_split_1_2020", + "startDate": "2020-02-22", + "endDate": "2020-04-27" + }, + { + "id": "110435858786009956", + "slug": "lcl_split_2_2019", + "startDate": "2019-07-20", + "endDate": "2019-09-15" + }, + { + "id": "110435531035300377", + "slug": "lcl_split_1_2019", + "startDate": "2019-02-16", + "endDate": "2019-04-14" + }, + { + "id": "110441433278896011", + "slug": "lcl_split_2_2018", + "startDate": "2018-07-20", + "endDate": "2018-09-03" + }, + { + "id": "110441119491168485", + "slug": "lcl_split_1_2018", + "startDate": "2018-02-10", + "endDate": "2018-04-01" + }, + { + "id": "110452684391414465", + "slug": "lcl_split_2_2017", + "startDate": "2017-06-24", + "endDate": "2017-09-03" + }, + { + "id": "110446876240436729", + "slug": "lcl_split_1_2017", + "startDate": "2017-01-28", + "endDate": "2017-04-09" + }, + { + "id": "110458354672238716", + "slug": "lcl_split_2_2016", + "startDate": "2016-05-28", + "endDate": "2016-08-14" + }, + { + "id": "110453006238802559", + "slug": "lcl_split_1_2016", + "startDate": "2016-01-16", + "endDate": "2016-04-03" + } + ] + } + } + } +} \ No newline at end of file diff --git a/src/Infrastructure/LolEsportOfficialAPI/HTTPLolEsportOfficialAPIEngine.php b/src/Infrastructure/LolEsportOfficialAPI/HTTPLolEsportOfficialAPIEngine.php index a261edc..58283cf 100644 --- a/src/Infrastructure/LolEsportOfficialAPI/HTTPLolEsportOfficialAPIEngine.php +++ b/src/Infrastructure/LolEsportOfficialAPI/HTTPLolEsportOfficialAPIEngine.php @@ -16,7 +16,7 @@ class HTTPLolEsportOfficialAPIEngine implements LolEsportOfficialAPIEngine // TODO: Implement getLeagues() method. } - public function getSeasons() + public function getSeasons(string $leagueId) { // TODO: Implement getSeasons() method. } diff --git a/src/Infrastructure/Persistence/Mapping/App.Application.ReadModel.Season.php b/src/Infrastructure/Persistence/Mapping/App.Application.ReadModel.Season.php new file mode 100644 index 0000000..e644405 --- /dev/null +++ b/src/Infrastructure/Persistence/Mapping/App.Application.ReadModel.Season.php @@ -0,0 +1,44 @@ +setReadOnly() + ->setTable('season') +; + +$builder + ->createField('id', 'uuid') + ->nullable(false) + ->makePrimaryKey() + ->build(); + +$builder + ->createField('providerId', 'uuid') + ->columnName('provider_id') + ->nullable(false) + ->build(); + +$builder + ->createField('providerSeasonId', 'string') + ->columnName('provider_season_id') + ->nullable(false) + ->build(); + +$builder + ->createField('year', 'integer') + ->nullable(false) + ->build(); + +$builder + ->createField('kind', 'string') + ->nullable(false) + ->build(); + +$builder + ->createField('leagueId', 'string') + ->columnName('league_id') + ->nullable(false) + ->build(); diff --git a/src/Infrastructure/Persistence/Mapping/App.Domain.Entity.Season.php b/src/Infrastructure/Persistence/Mapping/App.Domain.Entity.Season.php index ab4044c..c98313f 100644 --- a/src/Infrastructure/Persistence/Mapping/App.Domain.Entity.Season.php +++ b/src/Infrastructure/Persistence/Mapping/App.Domain.Entity.Season.php @@ -15,7 +15,7 @@ $builder ->build(); $builder - ->createField('providerSeasonId', 'uuid') + ->createField('providerSeasonId', 'string') ->columnName('provider_season_id') ->nullable(false) ->build(); -- 2.40.1