{ "cells": [ { "cell_type": "code", "execution_count": 2, "id": "043dcb6a", "metadata": { "pycharm": { "name": "#%%\n" } }, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "/Users/katemarg/miniconda3/lib/python3.9/site-packages/tqdm/auto.py:22: TqdmWarning: IProgress not found. Please update jupyter and ipywidgets. See https://ipywidgets.readthedocs.io/en/stable/user_install.html\n", " from .autonotebook import tqdm as notebook_tqdm\n" ] } ], "source": [ "import argparse\n", "import sys\n", "import os\n", "import json\n", "import pprint\n", "import numpy as np\n", "import pandas as pd\n", "import seaborn as sns\n", "import matplotlib.pyplot as plt\n", "import re\n", "import torch\n", "from collections import Counter\n", "from transformers import AutoModel, AutoTokenizer\n", "from tqdm import tqdm\n", "from sklearn.metrics import f1_score" ] }, { "cell_type": "code", "execution_count": 3, "id": "38b40238", "metadata": { "pycharm": { "name": "#%%\n" } }, "outputs": [], "source": [ "BASE_DIR = \"/Users/katemarg/PycharmProjects/temporal_robustness_evaluation\"\n", "DATA_DIR = os.path.join(BASE_DIR, 'data')\n", "CKPT_DIR = os.path.join(BASE_DIR, 'pretrained_models')\n", "RES_DIR = os.path.join(BASE_DIR, 'results')\n", "LOG_DIR = os.path.join(BASE_DIR, 'logs')\n", "CACHE_DIR = os.path.join(BASE_DIR, 'cached')\n", "\n", "TEMPLAMA_ORIG_DIR = os.path.join(\"data\", \"templama\", \"test.json\")\n", "TEMPLAMA_REPRODUCED_DIR = os.path.join(\"templama_docker\", \"reproduce1\", \"templama\", \"test.jsonl\")\n", "TEMPLAMA_NEW_DIR = os.path.join(DATA_DIR, \"dynamic-templama\",\n", " \"dataset_from_2019-1-1_to_2022-12-31_per_quarter\", \n", " \"test.jsonl\")\n", "\n", "dataset_filepath=CACHE_DIR+'/cardiffnlp-twitter-roberta-base-2021-124m_dynamic-templama_multiple_masks.pt'\n", "data_dict_multi_token = torch.load(dataset_filepath)\n", "\n", "\n", "lm = \"cardiffnlp/twitter-roberta-base-mar2022\"\n", "tokenizer = AutoTokenizer.from_pretrained(lm, use_fast=False, add_prefix_space=True)\n", "mask_token = \"\"" ] }, { "cell_type": "markdown", "id": "975d123b", "metadata": { "pycharm": { "name": "#%% md\n" } }, "source": [ "## This notebook is used for error analysis." ] }, { "cell_type": "code", "execution_count": 4, "id": "181d8245", "metadata": { "pycharm": { "name": "#%%\n" } }, "outputs": [], "source": [ "# Load pre-trained model tokenizer (vocabulary)\n", "tokenizer = AutoTokenizer.from_pretrained(lm, use_fast=False, add_prefix_space=True)\n", "\n", "CLS = tokenizer.cls_token\n", "PAD = tokenizer.pad_token\n", "SEP = tokenizer.sep_token\n", "MASK = tokenizer.mask_token\n", "\n", "mask_id = tokenizer.mask_token_id\n", "sep_id = tokenizer.sep_token_id\n", "cls_id = tokenizer.cls_token_id\n", "pad_id = tokenizer.pad_token_id\n", "\n", "special_ids = [mask_id, sep_id, cls_id, pad_id]\n", "def tokenizer_return_id(text, filter_special_tokens=False):\n", " \"\"\"\n", " Text to token ids for a string.\n", " \"\"\"\n", " output = tokenizer(text)\n", " if filter_special_tokens:\n", " token_ids = [i for i in output['input_ids'] if i not in tokenizer.all_special_ids]\n", " else:\n", " token_ids = [i for i in output['input_ids'] ]\n", " return token_ids\n", "\n", "def tokenize_batch(batch):\n", " \"\"\"\n", " Text to token ids for a list of strings.\n", " \"\"\"\n", "# return [tokenizer.convert_tokens_to_ids(sent) for sent in batch]\n", " return [tokenizer_return_id(sent) for sent in batch]\n", "\n", "def untokenize_id(ids):\n", " \"\"\"\n", " Token ids to strings.\n", " \"\"\"\n", "# return [tokenizer.convert_tokens_to_ids(sent) for sent in batch]\n", " return [tokenizer.decode(_id) for _id in ids]\n", "\n", "\n", "def untokenize_batch(batch, filter_special_tokens=False):\n", " \"\"\"\n", " Token ids to strings for a list of ids.\n", " \"\"\"\n", "# return [tokenizer.convert_ids_to_tokens(sent) for sent in batch]\n", "# print(label_id)\n", " if filter_special_tokens:\n", " _batch = []\n", " for sent in batch:\n", " _batch.append([x for x in sent if x not in special_ids])\n", " batch = _batch\n", "# return [tokenizer.decode(label_id) for label_id in batch if label_id not in special_ids]\n", "# else:\n", " return [untokenize_id(sent) for sent in batch]\n", "\n", "def detokenize(sent):\n", " \"\"\" Roughly detokenizes (mainly undoes wordpiece) \"\"\"\n", " # not sure what this does.... their code\n", " new_sent = []\n", " for i, tok in enumerate(sent):\n", " if tok.startswith(\"##\"):\n", " new_sent[len(new_sent) - 1] = new_sent[len(new_sent) - 1] + tok[2:]\n", " else:\n", " new_sent.append(tok)\n", " return new_sent" ] }, { "cell_type": "code", "execution_count": 5, "id": "3072fca6", "metadata": { "pycharm": { "name": "#%%\n" } }, "outputs": [], "source": [ "def split_dataset(data):\n", " \"\"\"\n", " Split temporal dataset Dt to D_unchanged, D_new and D_updated compared to D_(t-1) for all t.\n", " Specifically:\n", " - D_unchanged: data where text_t = text_(t-1) & label_t = label_(t-1)\n", " - D_updated: data where text_t = text_(t-1) & label_t != label_(t-1)\n", " - D_new: data where text_t not in D_(t-1)\n", " - D_deleted: data that exist in D_(t-1) but not in D_t\n", "\n", " Args:\n", " data: a dictionary with keys the time (year/quarter/month) and values dictionaries\n", " data = {\n", " '2019-Q1':\n", " {\n", " 'text': [list of text],\n", " 'labels': [list of labels],\n", " 'labels_ids': [list of label token ids -- for a given model/tokenizer],\n", " 'relations' [list of Wikidata relations]\n", " },\n", " '2019-Q2': {...}\n", " }\n", "\n", " Returns:\n", " D_unchanged, D_new, D_updated, D_deleted\n", " \"\"\"\n", " unchanged_t, new_t, updated_t, deleted_t = {}, {}, {}, {}\n", " quarters = list(data.keys())\n", " t_0 = quarters[0] # t=t0\n", " t_1 = quarters[0] # t-1\n", "\n", " for t in quarters[1:]:\n", " if t in ['2022-Q3', '2022-Q4']:\n", " continue # skip last two quarters of 2022\n", " data_t = data[t] # D_t\n", " data_t_1 = data[t_1] # D_(t-1)\n", "\n", " unchanged_t[t] = {key: [] for key in data_t.keys()}\n", " new_t[t] = {key: [] for key in data_t.keys()}\n", " updated_t[t] = {key: [] for key in data_t.keys()}\n", " deleted_t[t] = {key: [] for key in data_t.keys()}\n", "\n", " for i in range(0, len(data_t['text'])):\n", " text_t = data_t['text'][i]\n", " labels_ids_t = data_t['labels_ids'][i][0]\n", " if text_t in data_t_1['text']:\n", " t_1_index = data_t_1['text'].index(text_t)\n", " labels_inds_t_1 = data_t_1['labels_ids'][t_1_index][0]\n", " if labels_ids_t == labels_inds_t_1:\n", " # text_t = text_t-1 & label_t = label_t-1\n", " # add to D_unchanged\n", " for key in data_t.keys():\n", " unchanged_t[t][key].append(data_t[key][i])\n", " else:\n", " # text_t = text_(t-1) & label_t != label_(t-1)\n", " # add to D_updated\n", " for key in ['text', 'relation']:\n", " updated_t[t][key].append(data_t[key][i])\n", " else:\n", " # text_t not in D_(t-1) texts\n", " # add to D_new\n", " for key in data_t.keys():\n", " new_t[t][key].append(data_t[key][i])\n", " for j in range(0, len(data_t_1['text'])):\n", " text_t_1 = data_t_1['text'][j]\n", " if text_t_1 not in data_t['text']:\n", " # text_(t+1) not in D_t\n", " # add to D_deleted\n", " for key in data_t_1.keys():\n", " deleted_t[t][key].append(data_t_1[key][j])\n", " t_1 = t\n", "\n", " assert len(data_t['text']) == len(unchanged_t[t]['text']) + len(updated_t[t]['text']) + len(new_t[t]['text'])\n", " print(\n", " 't={}: From total {} samples in D_t, {} are unchanged, {} are updated, {} are deleted and {} are new, compared to D_(t-1).'.format(\n", " t,\n", " len(data_t['text']),\n", " len(unchanged_t[t]['text']),\n", " len(updated_t[t]['text']),\n", " len(deleted_t[t]['text']),\n", " len(new_t[t]['text'])))\n", " return unchanged_t, new_t, updated_t, deleted_t, data[t_0]" ] }, { "cell_type": "code", "execution_count": 6, "id": "f6540f61", "metadata": { "pycharm": { "name": "#%%\n" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "t=2019-Q2: From total 11237 samples in D_t, 10882 are unchanged, 55 are updated, 301 are deleted and 300 are new, compared to D_(t-1).\n", "t=2019-Q3: From total 11279 samples in D_t, 10710 are unchanged, 84 are updated, 442 are deleted and 485 are new, compared to D_(t-1).\n", "t=2019-Q4: From total 11411 samples in D_t, 10866 are unchanged, 69 are updated, 344 are deleted and 476 are new, compared to D_(t-1).\n", "t=2020-Q1: From total 11322 samples in D_t, 10512 are unchanged, 129 are updated, 771 are deleted and 681 are new, compared to D_(t-1).\n", "t=2020-Q2: From total 11304 samples in D_t, 11060 are unchanged, 39 are updated, 223 are deleted and 205 are new, compared to D_(t-1).\n", "t=2020-Q3: From total 11345 samples in D_t, 10991 are unchanged, 52 are updated, 261 are deleted and 302 are new, compared to D_(t-1).\n", "t=2020-Q4: From total 11325 samples in D_t, 11001 are unchanged, 37 are updated, 307 are deleted and 287 are new, compared to D_(t-1).\n", "t=2021-Q1: From total 11237 samples in D_t, 10582 are unchanged, 100 are updated, 642 are deleted and 555 are new, compared to D_(t-1).\n", "t=2021-Q2: From total 11180 samples in D_t, 10924 are unchanged, 40 are updated, 272 are deleted and 216 are new, compared to D_(t-1).\n", "t=2021-Q3: From total 11138 samples in D_t, 10801 are unchanged, 50 are updated, 331 are deleted and 287 are new, compared to D_(t-1).\n", "t=2021-Q4: From total 11147 samples in D_t, 10859 are unchanged, 42 are updated, 238 are deleted and 246 are new, compared to D_(t-1).\n", "t=2022-Q1: From total 11061 samples in D_t, 10620 are unchanged, 64 are updated, 462 are deleted and 377 are new, compared to D_(t-1).\n", "t=2022-Q2: From total 11050 samples in D_t, 10913 are unchanged, 27 are updated, 121 are deleted and 110 are new, compared to D_(t-1).\n" ] } ], "source": [ "# Split dataset\n", "unchanged_t, new_t, updated_t, deleted_t, orig = split_dataset(data_dict_multi_token)" ] }, { "cell_type": "code", "execution_count": 7, "id": "e98fe09b", "metadata": { "pycharm": { "name": "#%%\n" } }, "outputs": [ { "data": { "text/plain": [ "{'2019-Q2': {'text': [['Alex Morgan plays for .'],\n", " ['Lionel Messi plays for .'],\n", " ['Cristiano Ronaldo plays for .'],\n", " ['LeBron James plays for .'],\n", " ['Puck Moonen plays for .'],\n", " ['Zlatan Ibrahimović plays for .'],\n", " ['Neymar plays for .'],\n", " ['Ronaldinho plays for .'],\n", " [\"Samuel Eto'o plays for .\"],\n", " ['Megan Rapinoe plays for .'],\n", " ['Alisha Lehmann plays for .'],\n", " ['Robert Lewandowski plays for .'],\n", " ['Gianluigi Buffon plays for .'],\n", " ['Andrea Pirlo plays for .'],\n", " ['Kevin Durant plays for .'],\n", " ['Lukas Podolski plays for .'],\n", " ['Iker Casillas plays for .'],\n", " ['Lewis Hamilton plays for .'],\n", " ['Formiga plays for .'],\n", " ['Naomi Osaka plays for .'],\n", " ['José Mourinho plays for .'],\n", " ['Luis Suárez plays for .'],\n", " ['Franck Ribéry plays for .'],\n", " ['Tim Cahill plays for .'],\n", " ['Xavi Hernández plays for .'],\n", " ['Chris Froome plays for .'],\n", " ['Mario Balotelli plays for .'],\n", " ['Lieke Martens plays for .'],\n", " ['Manuel Neuer plays for .'],\n", " ['Lindsey Horan plays for .'],\n", " ['Javier Mascherano plays for .'],\n", " ['Mark Cavendish plays for .'],\n", " ['James Rodríguez plays for .'],\n", " ['Hope Solo plays for .'],\n", " ['Diego Forlán plays for .'],\n", " ['Sebastián Abreu plays for .'],\n", " ['Carli Lloyd plays for .'],\n", " ['Marta plays for .'],\n", " ['Javier Hernández plays for .'],\n", " ['Yuzvendra Chahal plays for .'],\n", " ['Thiago Silva plays for .'],\n", " ['Andrés Iniesta plays for .'],\n", " ['Wayne Rooney plays for .'],\n", " ['Fernando Torres plays for .'],\n", " ['Keisuke Honda plays for .'],\n", " ['Sergio Agüero plays for .'],\n", " ['Marianne Vos plays for .'],\n", " ['Sergio Ramos plays for .'],\n", " ['Mario Gómez plays for .'],\n", " ['Dani Alves plays for .'],\n", " ['Carlos Tevez plays for .'],\n", " ['Pepe Reina plays for .'],\n", " ['Giovani dos Santos plays for .'],\n", " ['David Villa plays for .'],\n", " ['Ricardo Quaresma plays for .'],\n", " ['Mesut Özil plays for .'],\n", " ['Freddy Adu plays for .'],\n", " ['Cristiane Rozeira plays for .'],\n", " ['Maya Moore plays for .'],\n", " ['Giorgio Chiellini plays for .'],\n", " ['Wesley Sneijder plays for .'],\n", " ['Robinho plays for .'],\n", " ['Bastian Schweinsteiger plays for .'],\n", " ['Petr Čech plays for .'],\n", " ['Luis Scola plays for .'],\n", " ['Jérôme Boateng plays for .'],\n", " ['Kevin-Prince Boateng plays for .'],\n", " ['Vincenzo Nibali plays for .'],\n", " ['Egidio Arévalo Rios plays for .'],\n", " ['Dwyane Wade plays for .'],\n", " ['Arjen Robben plays for .'],\n", " ['Dwight Howard plays for .'],\n", " ['Nigel de Jong plays for .'],\n", " ['Colin Kazim-Richards plays for .'],\n", " ['Pierre-Emerick Aubameyang plays for .'],\n", " ['David Alaba plays for .'],\n", " ['Xherdan Shaqiri plays for .'],\n", " ['Marc Gasol plays for .'],\n", " ['Laura Kenny plays for .'],\n", " ['Aristide Bancé plays for .'],\n", " ['Philippe Gilbert plays for .'],\n", " ['Edinson Cavani plays for .'],\n", " ['Breanna Stewart plays for .'],\n", " ['Luis Enrique plays for .'],\n", " ['Bruno Alves plays for .'],\n", " ['Ali Krieger plays for .'],\n", " ['Antoine Griezmann plays for .'],\n", " ['Mohamed Salah plays for .'],\n", " ['Beto plays for .'],\n", " ['Memphis Depay plays for .'],\n", " ['Pablo Zabaleta plays for .'],\n", " ['Jozy Altidore plays for .'],\n", " ['Steve Nash plays for .'],\n", " ['Shinji Okazaki plays for .'],\n", " ['Maya Yoshida plays for .'],\n", " ['Gary Cahill plays for .'],\n", " ['Guillermo Ochoa plays for .'],\n", " ['Serge Gnabry plays for .'],\n", " ['Christine Sinclair plays for .'],\n", " ['Paul Pogba plays for .'],\n", " ['DaMarcus Beasley plays for .'],\n", " ['Alexandre Pato plays for .'],\n", " ['Hugo Almeida plays for .'],\n", " [\"Raïs M'Bolhi plays for .\"],\n", " ['Peter Sagan plays for .'],\n", " ['Joel Campbell plays for .'],\n", " ['Luka Modrić Papá de Lionel Messi plays for .'],\n", " ['Elia Viviani plays for .'],\n", " ['Toni Kroos plays for .'],\n", " ['Giulia Gwinn plays for .'],\n", " ['Ellen van Dijk plays for .'],\n", " ['Lucas Barrios plays for .'],\n", " ['Daniel Fernandes plays for .'],\n", " ['Juan Mata plays for .'],\n", " ['Michael Bradley plays for .'],\n", " ['Gonzalo Higuaín plays for .'],\n", " ['Lúcio plays for .'],\n", " ['Greg Van Avermaet plays for .'],\n", " ['Alexandra Lacrabère plays for .'],\n", " ['David Andersen plays for .'],\n", " ['Javi Martínez plays for .'],\n", " ['Ricardo Costa plays for .'],\n", " ['Kyrie Irving plays for .'],\n", " ['Sebastian Vettel plays for .'],\n", " ['Ingrid Syrstad Engen plays for .'],\n", " ['Adrien Silva plays for .'],\n", " ['Rigoberto Urán plays for .'],\n", " ['John Arne Riise plays for .'],\n", " ['Tobin Heath plays for .'],\n", " ['Hedvig Lindahl plays for .'],\n", " ['Marcelo plays for .'],\n", " ['Radamel Falcao plays for .'],\n", " ['Jakob Fuglsang plays for .'],\n", " ['Marko Marin plays for .'],\n", " ['Mikel John Obi plays for .'],\n", " ['Hulk plays for .'],\n", " ['Rudy Fernández plays for .'],\n", " ['Lizzie Deignan plays for .'],\n", " ['Zé Roberto plays for .'],\n", " ['Rohan Dennis plays for .'],\n", " ['Milan Baroš plays for .'],\n", " ['Łukasz Fabiański plays for .'],\n", " ['Mats Hummels plays for .'],\n", " ['Diego Ribas da Cunha plays for .'],\n", " ['Artem Milevskyi plays for .'],\n", " ['Anna van der Breggen plays for .'],\n", " ['Rafinha plays for .'],\n", " ['Vladimir Stojković plays for .'],\n", " ['Ángel Di María plays for .'],\n", " ['Chris Paul plays for .'],\n", " ['Rosana dos Santos Augusto plays for .'],\n", " ['Manuel da Costa plays for .'],\n", " ['Ashley Cole plays for .'],\n", " ['Benny Feilhaber plays for .'],\n", " ['Alexis Sánchez plays for .'],\n", " ['Sophie Schmidt plays for .'],\n", " ['Mario Mandžukić plays for .'],\n", " ['Pepe plays for .'],\n", " ['Philippe Coutinho plays for .'],\n", " ['Sadio Mané plays for .'],\n", " ['Christen Press plays for .'],\n", " ['Keylor Navas plays for .'],\n", " ['Valentino Rossi plays for .'],\n", " ['Bojan Krkić plays for .'],\n", " ['Shinji Kagawa plays for .'],\n", " ['Diego Costa plays for .'],\n", " ['Steve Mandanda plays for .'],\n", " ['Miodrag Anđelković plays for .'],\n", " ['Thibaut Courtois plays for .'],\n", " ['Vincent Kompany plays for .'],\n", " ['Eiður Guðjohnsen plays for .'],\n", " ['Jakub Błaszczykowski plays for .'],\n", " ['Henning Berg plays for .'],\n", " ['Hilary Knight plays for .'],\n", " ['Annemiek van Vleuten plays for .'],\n", " ['Álvaro Pereira plays for .'],\n", " ['Carlos Arroyo plays for .'],\n", " ['Florent Sinama Pongolle plays for .'],\n", " ['Miljan Mrdaković plays for .'],\n", " ['Mario Götze plays for .'],\n", " ['Jô plays for .'],\n", " ['Claudio Pizarro plays for .'],\n", " ['Ivan Rakitić plays for .'],\n", " ['Erin McLeod plays for .'],\n", " ['Robin van Persie plays for .'],\n", " ['Peter Odemwingie plays for .'],\n", " ['Sofia Jakobsson plays for .'],\n", " ['David Luiz plays for .'],\n", " ['Jordi Alba plays for .'],\n", " ['Sami Khedira plays for .'],\n", " ['Tony Martin plays for .'],\n", " ['Kirsten Wild plays for .'],\n", " ['Nicklas Bendtner plays for .'],\n", " ['Junichi Inamoto plays for .'],\n", " ['Michael Umaña plays for .'],\n", " ['Niklas Süle plays for .'],\n", " ['Diego Godín plays for .'],\n", " ['José Calderón plays for .'],\n", " ['Yuto Nagatomo plays for .'],\n", " ['Olivier Giroud plays for .'],\n", " ['Tom Dumoulin plays for .'],\n", " ['Nicolas Roche plays for .'],\n", " [\"Kelley O'Hara plays for .\"],\n", " ['Lisa De Vanna plays for .'],\n", " ['Rafael van der Vaart plays for .'],\n", " ['Elena Delle Donne plays for .'],\n", " ['Sakina Karchaoui plays for .'],\n", " ['John Degenkolb plays for .'],\n", " ['Brittney Griner plays for .'],\n", " ['Shunsuke Nakamura plays for .'],\n", " ['David Silva plays for .'],\n", " ['Axel Witsel plays for .'],\n", " ['Andrés Guardado plays for .'],\n", " ['Kylian Mbappé plays for .'],\n", " ['Tom Brady plays for .'],\n", " ['Micah Richards plays for .'],\n", " ['Łukasz Piszczek plays for .'],\n", " ['Celso Borges plays for .'],\n", " ['Royston Drenthe plays for .'],\n", " ['Gareth Bale plays for .'],\n", " ['William Kvist plays for .'],\n", " ['Sergio Romero plays for .'],\n", " ['Filipe Luís plays for .'],\n", " ['Romelu Lukaku plays for .'],\n", " ['Erling Haaland plays for .'],\n", " ['Emmanuel Adebayor plays for .'],\n", " ['Arturo Vidal plays for .'],\n", " ['Jermaine Jones plays for .'],\n", " ['Eden Hazard plays for .'],\n", " ['Michael Essien plays for .'],\n", " ['Andrea Barzagli plays for .'],\n", " ['Demba Ba plays for .'],\n", " [\"Amar'e Stoudemire plays for .\"],\n", " ['Nuri Şahin plays for .'],\n", " ['Hugo Lloris plays for .'],\n", " ['Morgan Schneiderlin plays for .'],\n", " ['Thomas Vermaelen plays for .'],\n", " ['Henrikh Mkhitaryan plays for .'],\n", " ['Ryan Babel plays for .'],\n", " ['Aron Baynes plays for .'],\n", " ['Johan Djourou plays for .'],\n", " ['Kevin De Bruyne plays for .'],\n", " ['Shinji Ono plays for .'],\n", " ['Túlio Maravilha plays for .'],\n", " ['Idriss Carlos Kameni plays for .'],\n", " ['Fernando Llorente plays for .'],\n", " ['André Greipel plays for .'],\n", " ['Boris Diaw plays for .'],\n", " ['Anja Mittag plays for .'],\n", " ['Joakim Noah plays for .'],\n", " ['Ricky Rubio plays for .'],\n", " ['Stephan Andersen plays for .'],\n", " ['Ezequiel Lavezzi plays for .'],\n", " [\"Andrés D'Alessandro plays for .\"],\n", " ['Claudio Bravo plays for .'],\n", " ['Rafinha plays for .'],\n", " ['Blaise Matuidi plays for .'],\n", " ['Cristian Rodríguez plays for .'],\n", " ['Ciro Immobile plays for .'],\n", " [\"Dame N'Doye plays for .\"],\n", " ['Raphaël Varane plays for .'],\n", " ['Roger Kluge plays for .'],\n", " ['Asmir Begović plays for .'],\n", " ['Neven Subotić plays for .'],\n", " ['Christian Eriksen plays for .'],\n", " ['Luiz Gustavo plays for .'],\n", " ['Hamit Altıntop plays for .'],\n", " ['Brad Guzan plays for .'],\n", " ['André Ayew plays for .'],\n", " ['César Azpilicueta plays for .'],\n", " ['Éric Maxim Choupo-Moting plays for .'],\n", " ['Shkodran Mustafi plays for .'],\n", " ['Caroline Seger plays for .'],\n", " ['Fernando Muslera plays for .'],\n", " ['Leonardo Bonucci plays for .'],\n", " ['Nordin Amrabat plays for .'],\n", " ['Richard Kingson plays for .'],\n", " ['Jose Antonio Reyes plays for .'],\n", " ['Jonny Evans plays for .'],\n", " ['Jonathan de Guzmán plays for .'],\n", " ['Yannick Bolasie plays for .'],\n", " ['Dante Bonfim Costa Santos plays for .'],\n", " ['Daniele De Rossi plays for .'],\n", " ['Park Chu-young plays for .'],\n", " ['Lucas Hernandez plays for .'],\n", " ['Klaas-Jan Huntelaar plays for .'],\n", " ['Sonny Bill Williams plays for .'],\n", " ['Sydney Leroux plays for .'],\n", " ['Victor Moses plays for .'],\n", " ['Elano plays for .'],\n", " ['Asamoah Gyang plays for .'],\n", " ['Grzegorz Krychowiak plays for .'],\n", " ['Vasil Kiryienka plays for .'],\n", " ['Achraf Hakim plays for .'],\n", " ['John Guidetti plays for .'],\n", " ['Salomon Kalou plays for .'],\n", " ['Karen Bardsley plays for .'],\n", " ['Cédric Soares plays for .'],\n", " ['Dietmar Hamann plays for .'],\n", " ['Mark Milligan plays for .'],\n", " ['Yūki Nagasato plays for .'],\n", " ['Pedro plays for .'],\n", " ['Jack Wilshere plays for .'],\n", " ['Albert Riera plays for .'],\n", " ['Florent Malouda plays for .'],\n", " ['Medhi Benatia plays for .'],\n", " ['Eduardo Carvalho plays for .'],\n", " ['Maicon plays for .'],\n", " ['Giuseppe Rossi plays for .'],\n", " ['Samir Nasri plays for .'],\n", " ['Andrija Kaluđerović plays for .'],\n", " ['Emre Belözoğlu plays for .'],\n", " ['Sarah Storey plays for .'],\n", " ['Daniel Martin plays for .'],\n", " ['Nairo Quintana plays for .'],\n", " ['Leroy Sané plays for .'],\n", " ['Valon Behrami plays for .'],\n", " ['Eiji Kawashima plays for .'],\n", " ['Ana Dabović plays for .'],\n", " ['Carlos Sánchez plays for .'],\n", " ['Raúl Albiol plays for .'],\n", " ['Bryan Ruiz plays for .'],\n", " ['Steve Cummings plays for .'],\n", " ['Gabriel Torres plays for .'],\n", " ['Éver Banega plays for .'],\n", " ['Simon Kjær plays for .'],\n", " ['Willy Caballero plays for .'],\n", " ['Vince Carter plays for .'],\n", " ['Sergio Rodríguez plays for .'],\n", " ['Luuk de Jong plays for .'],\n", " ['Eduardo Vargas plays for .'],\n", " ['Ivan Perišić plays for .'],\n", " ['Diego Benaglio plays for .'],\n", " ['Michał Kwiatkowski plays for .'],\n", " ['Diego Reyes plays for .'],\n", " ['Lars Hirschfeld plays for .'],\n", " ['Abby Dahlkemper plays for .'],\n", " ['Daley Blind plays for .'],\n", " ['Roko Ukić plays for .'],\n", " ['Gélson Fernandes plays for .'],\n", " ['Darijo Srna plays for .'],\n", " ['Pablo Contreras plays for .'],\n", " ['Nando de Colo plays for .'],\n", " ['Steph Houghton plays for .'],\n", " ['Jermain Defoe plays for .'],\n", " ['Divock Origi plays for .'],\n", " ['el tete plays for .'],\n", " ['Maxi López plays for .'],\n", " ['Maximiliano Richeze plays for .'],\n", " ['Ashleigh Barty plays for .'],\n", " ['Paulinho plays for .'],\n", " ['Curao Ql plays for .'],\n", " ['Marquinhos plays for .'],\n", " ['Julie Ertz plays for .'],\n", " ['Sebastián Eguren plays for .'],\n", " ['Marco Fabián plays for .'],\n", " ['Edvald Boasson-Hagen plays for .'],\n", " ['João Moutinho plays for .'],\n", " ['İlkay Gündoğan plays for .'],\n", " ['Gary Medel plays for .'],\n", " ['Karim Ziani plays for .'],\n", " ['Christian Bolaños plays for .'],\n", " ['Gonzalo Jara plays for .'],\n", " ['David De Gea plays for .'],\n", " ['Daniel Sturridge plays for .'],\n", " ['Esteban Cambiasso plays for .'],\n", " ['Gabriel Enrique Gómez plays for .'],\n", " ['Douglas Costa plays for .'],\n", " ['Ezequiel Garay plays for .'],\n", " ['Michy Batshuayi plays for .'],\n", " ['Yakubu plays for .'],\n", " ['José Fonte plays for .'],\n", " ['Rui Costa plays for .'],\n", " ['Salvatore Sirigu plays for .'],\n", " ['Roman Kreuziger plays for .'],\n", " ['Kasper Schmeichel plays for .'],\n", " ['Roman Bürki plays for .'],\n", " ['Víctor Claver plays for .'],\n", " ['Arkadiusz Milik plays for .'],\n", " ['Daniel Ricciardo plays for .'],\n", " ['Thomas Delaney plays for .'],\n", " ['Kevin Love plays for .'],\n", " ['Stéphane Mbia plays for .'],\n", " ['Tatiana Guderzo plays for .'],\n", " ['André Schürrle plays for .'],\n", " ['Martín Demichelis plays for .'],\n", " ['Siraba Dembele plays for .'],\n", " ['Damian Lillard plays for .'],\n", " ['Richie Porte plays for .'],\n", " ['Sébastien Haller plays for .'],\n", " ['Edin Džeko plays for .'],\n", " ['Daisuke Matsui plays for .'],\n", " ['José Sosa plays for .'],\n", " ['Nelson Valdez plays for .'],\n", " ['Alexander Kristoff plays for .'],\n", " ['Luis Advíncula plays for .'],\n", " ['Danilo Pereira plays for .'],\n", " [\"N'Golo Kanté plays for .\"],\n", " ['Duško Tošić plays for .'],\n", " ['Ricardo Rodriguez plays for .'],\n", " ['Shane Smeltz plays for .'],\n", " ['Marcelo Martins Moreno plays for .'],\n", " ['Peter Crouch plays for .'],\n", " ['Simon Gerrans plays for .'],\n", " ['Mark González plays for .'],\n", " ['Kevin Mirallas plays for .'],\n", " ['Gervinho plays for .'],\n", " ['Alex Song plays for .'],\n", " ['Glenn Whelan plays for .'],\n", " ['Raul Meireles plays for .'],\n", " ['Ali Riley plays for .'],\n", " ['Anthony Davis plays for .'],\n", " ['Sani Kaita plays for .'],\n", " ['Christie Pearce plays for .'],\n", " ['Luís Fabiano plays for .'],\n", " ['Jan Vertonghen plays for .'],\n", " ['Thiago Alcântara plays for .'],\n", " ['João Mário plays for .'],\n", " ['Alisson plays for .'],\n", " ['Fridolina Rolfö plays for .'],\n", " ['Wout van Aert plays for .'],\n", " ['Alphonse Areola plays for .'],\n", " ['Babett Peter plays for .'],\n", " ['Fabiana da Silva Simões plays for .'],\n", " ['Blerim Džemaili plays for .'],\n", " ['Adriana Leon plays for .'],\n", " ['Naohiro Takahara plays for .'],\n", " ['oscar perez plays for .'],\n", " ['Gaël Kakuta plays for .'],\n", " ['Isco Alarcón plays for .'],\n", " ['Gabriel Tamaș plays for .'],\n", " ['Jaroslav Drobný plays for .'],\n", " ['Raheem Sterling plays for .'],\n", " ['Samuel Umtiti plays for .'],\n", " ['Amido Baldé plays for .'],\n", " ['Brad Jones plays for .'],\n", " ['Adil Rami plays for .'],\n", " ['Miguel Layún plays for .'],\n", " ['Jan Koller plays for .'],\n", " ['Dmitri Alenichev plays for .'],\n", " ['Marco Asensio plays for .'],\n", " ['Michael Mørkøv plays for .'],\n", " ['Kendall Waston plays for .'],\n", " ['Milan Borjan plays for .'],\n", " ['Kamil Glik plays for .'],\n", " ['Roman Neustädter plays for .'],\n", " ['Marcelo Díaz plays for .'],\n", " ['Jesé Rodríguez plays for .'],\n", " ['Roberto Acuña plays for .'],\n", " ['Ricardo Faty plays for .'],\n", " ['Verónica Boquete plays for .'],\n", " ['Danilo Luiz plays for .'],\n", " ['Olga Zabelinskaya plays for .'],\n", " ['Darron Gibson plays for .'],\n", " ['James Harden plays for .'],\n", " ['Russell Westbrak plays for .'],\n", " ['Jung Sung-ryong plays for .'],\n", " ['Melissa Tancredi plays for .'],\n", " ['Daryl Impey plays for .'],\n", " ['Henrik Ojamaa plays for .'],\n", " ['Leon Goretzka plays for .'],\n", " ['Pablo Hernández Domínguez plays for .'],\n", " ['Tomáš Necid plays for .'],\n", " ['Joseph Yobo plays for .'],\n", " ['Rafał Majka plays for .'],\n", " ['Bruma plays for .'],\n", " ['Samuel Inkoom plays for .'],\n", " ['Robbie Rogers plays for .'],\n", " ['Robert de Pinho de Souza plays for .'],\n", " ['Georges Mandjeck plays for .'],\n", " ['Lucho González plays for .'],\n", " ['Paul-Georges Ntep plays for .'],\n", " ['Ander Herrera plays for .'],\n", " ['Luis León Sánchez plays for .'],\n", " ['Érika Cristiano dos Santos plays for .'],\n", " ['Kingsley Coman plays for .'],\n", " ['Aymeric Laporte plays for .'],\n", " ['Primož Roglič plays for .'],\n", " ['Charles Aránguiz plays for .'],\n", " ['Julian Alaphilippe plays for .'],\n", " ['André Silva plays for .'],\n", " ['Pauline Ferrand-Prevot plays for .'],\n", " ['Elton Brand plays for .'],\n", " ['Nikita Rukavytsya plays for .'],\n", " ['Marc-André ter Stegen plays for .'],\n", " ['Steven Davis plays for .'],\n", " ['Anderson plays for .'],\n", " ['Matthias Ginter plays for .'],\n", " ['Haris Seferovic plays for .'],\n", " ['Rui Patrício plays for .'],\n", " ['Wojciech Szczęsny plays for .'],\n", " ['Rúrik Gíslason plays for .'],\n", " ['Oscar dos Santos Emboaba Júnior plays for .'],\n", " ['Koo Ja-cheol plays for .'],\n", " ['Lucy Bronze plays for .'],\n", " ['Crystal Dunn plays for .'],\n", " ['Toby Alderweireld plays for .'],\n", " ['Penalty in the UEL final plays for .'],\n", " ['Claudio Marchisio plays for .'],\n", " ['Joe Hart plays for .'],\n", " ['Kepa Arrizabalaga plays for .'],\n", " ['Giannis Antetokounmpo plays for .'],\n", " ['Besart Berisha plays for .'],\n", " ['Willian plays for .'],\n", " ['Obafemi Martins plays for .'],\n", " ['Moussa Maâzou plays for .'],\n", " ['Alexei Eremenko plays for .'],\n", " ['Moussa Dembélé plays for .'],\n", " ['Ashlyn Harris plays for .'],\n", " ['Chris Wood plays for .'],\n", " ['Reto Ziegler plays for .'],\n", " ['Antonio Nocerino plays for .'],\n", " ['Juanfran Torres plays for .'],\n", " ['Ji Dong-won plays for .'],\n", " ['Carlos Salcido plays for .'],\n", " ['Oribe Peralta plays for .'],\n", " ['Antar Yahia plays for .'],\n", " ['Georginio Wijnaldum plays for .'],\n", " ['Sam Kerr plays for .'],\n", " ['Martín Cáceres plays for .'],\n", " ['Valeri Bojinov plays for .'],\n", " ['Luis Tejada plays for .'],\n", " ['Gökhan İnler plays for .'],\n", " ['Javi García plays for .'],\n", " ['Nicolás Lodeiro plays for .'],\n", " ['Raúl Jiménez plays for .'],\n", " ['Janine Beckie plays for .'],\n", " ['Arda Turan plays for .'],\n", " ['Selim Benachour plays for .'],\n", " ['Mickaël Gelabale plays for .'],\n", " ['Daniel González Güiza plays for .'],\n", " ['Jackie Groenen plays for .'],\n", " ['John Mensah plays for .'],\n", " ['Federico Fazio plays for .'],\n", " ['Carl Medjani plays for .'],\n", " ['Ahmed Musa plays for .'],\n", " ['Essam El-Hadary plays for .'],\n", " ['Vedad Ibišević plays for .'],\n", " ['Miralem Pjanić plays for .'],\n", " ['Jorginho plays for .'],\n", " ['Lacina Traoré plays for .'],\n", " ['Christiane Endler plays for .'],\n", " ['Alyssa Naeher plays for .'],\n", " ['Steven Nzonzi plays for .'],\n", " ['Kim Dong-jin plays for .'],\n", " ['Joshua Kimmich plays for .'],\n", " ['Emre Can plays for .'],\n", " ['Nicolas Batum plays for .'],\n", " ['José Calderón plays for .'],\n", " ['Emiliano Insúa plays for .'],\n", " ['Stephan El Shaarawy plays for .'],\n", " ['Casemiro plays for .'],\n", " ['Jodie Taylor plays for .'],\n", " ['Robin Olsen plays for .'],\n", " ['Héctor Herrera plays for .'],\n", " ['Sebastian Giovinco plays for .'],\n", " ['Rodrigo plays for .'],\n", " ['Fernando Gaviria plays for .'],\n", " ['Oleksandr Aliyev plays for .'],\n", " ['Florian Thauvin plays for .'],\n", " ['Kim Bo-kyung plays for .'],\n", " ['Abel Hernández plays for .'],\n", " ['Thorgan Hazard plays for .'],\n", " ['Gotoku Sakai plays for .'],\n", " ['Odion Ighalo plays for .'],\n", " ['Jasmin Glaesser plays for .'],\n", " ['Eliaquim Mangala plays for .'],\n", " ['Felipe Melo plays for .'],\n", " ['Gábor Király plays for .'],\n", " ['Herculez Gomez plays for .'],\n", " ['Paulo da Silva plays for .'],\n", " ['Héctor Moreno plays for .'],\n", " ['Aliaksandr Hleb plays for .'],\n", " ['Cacau plays for .'],\n", " ['Ion Izagirre plays for .'],\n", " ['Denis Cheryshev plays for .'],\n", " ['Anthony Annan plays for .'],\n", " ['Darius Songaila plays for .'],\n", " ['Morgan De Sanctis plays for .'],\n", " ['Joe Ingles plays for .'],\n", " ['Paco Alcácer plays for .'],\n", " ['Sara Däbritz plays for .'],\n", " ['Nikola Mirotić plays for .'],\n", " ['Adlène Guedioura plays for .'],\n", " ['Fábio Coentrão plays for .'],\n", " ['Scott Carson plays for .'],\n", " ['Granit Xhaka plays for .'],\n", " ['Ashkan Dejagah plays for .'],\n", " ['Derrick Rose plays for .'],\n", " ['Yevhen Seleznyov plays for .'],\n", " ['Makoto Hasebe plays for .'],\n", " ['William Troost-Ekong plays for .'],\n", " ['Mauro Zárate plays for .'],\n", " ['Seydou Doumbia plays for .'],\n", " ['Tomáš Pekhart plays for .'],\n", " ['Jeffrén Suárez plays for .'],\n", " ['Kurt Zouma plays for .'],\n", " ['Nicolás Otamendi plays for .'],\n", " ['Silvestre Varela plays for .'],\n", " ['Hiroki Sakai plays for .'],\n", " ['Geoffrey Kondogbia plays for .'],\n", " ['Antonio Rüdiger plays for .'],\n", " ['Danko Lazović plays for .'],\n", " ['Admir Mehmedi plays for .'],\n", " ['Javier Aquino plays for .'],\n", " ['Kelsey Plum plays for .'],\n", " ['Teemu Pukki plays for .'],\n", " ['Grafite plays for .'],\n", " ['Lisa Brennauer plays for .'],\n", " ['Dejan Lovren plays for .'],\n", " ['Niki Terpstra plays for .'],\n", " ['Marcelinho Paraíba plays for .'],\n", " ['Mix Diskerud plays for .'],\n", " ['David Ospina plays for .'],\n", " ['Alexander Sørloth plays for .'],\n", " ['Manuel Fernandes plays for .'],\n", " ['Marek Saganowski plays for .'],\n", " ['Gabriel Barbosa plays for .'],\n", " ['Besart Abdurahimi plays for .'],\n", " ['Matthew Spiranovic plays for .'],\n", " ['Josip Tadić plays for .'],\n", " ['Younis Mahmoud plays for .'],\n", " ['Jordan Ayew plays for .'],\n", " ['Miguel Lopes plays for .'],\n", " ['Sokratis Papastathopoulos plays for .'],\n", " ['Martin Hansen plays for .'],\n", " ['Pierre Bengtsson plays for .'],\n", " ['Taye Taiwo plays for .'],\n", " ['David Carney plays for .'],\n", " ['Ángel Guirado plays for .'],\n", " ['Roberto Jiménez Gago plays for .'],\n", " ['Karen Carney plays for .'],\n", " ['Amin Younes plays for .'],\n", " ['Javier Balboa plays for .'],\n", " ['Francisco Javier Rodríguez plays for .'],\n", " ['Éder plays for .'],\n", " ['Daniëlle van de Donk plays for .'],\n", " ['Reza Ghoochannejhad plays for .'],\n", " ['Kaylyn Kyle plays for .'],\n", " ['André Lotterer plays for .'],\n", " ['Daniel Wass plays for .'],\n", " ['Matías Fernandez plays for .'],\n", " ['Harry Kane plays for .'],\n", " ['Son Heung-min plays for .'],\n", " ['Jhonny Acosta plays for .'],\n", " ['Cléopatre Darleux plays for .'],\n", " ['Tony Gallopin plays for .'],\n", " ['Yann Sommer plays for .'],\n", " ['Eniola Aluko plays for .'],\n", " ['Tyson Chandler plays for .'],\n", " ['Anthony Martial plays for .'],\n", " ['Greg Henderson plays for .'],\n", " ['Kiko Casillas plays for .'],\n", " ['Nilla Fischer plays for .'],\n", " ['Leon Balogun plays for .'],\n", " ['James Milner plays for .'],\n", " ['Cameron Meyer plays for .'],\n", " ['Benjamin Pavard plays for .'],\n", " ['Luís Leal plays for .'],\n", " ['Renato Sanches plays for .'],\n", " ['Mathew Ryan plays for .'],\n", " ['Shuichi Gonda plays for .'],\n", " ['Pierre-Emile Højbjerg plays for .'],\n", " ['Simon Mignolet plays for .'],\n", " ['Ben Sahar plays for .'],\n", " ['Mana Iwabuchi plays for .'],\n", " ['Desiree Scott plays for .'],\n", " ['Quinn plays for .'],\n", " ['Viktor Fischer plays for .'],\n", " ['Ron-Robert Zieler plays for .'],\n", " ['Alex Sandro plays for .'],\n", " ['Damien Le Tallec plays for .'],\n", " ['Tiago Mendes plays for .'],\n", " ['Martin Ødegaard plays for .'],\n", " ['Salvatore Bocchetti plays for .'],\n", " ['Olarenwaju Kayode plays for .'],\n", " ['Fraser Forster plays for .'],\n", " ['Corentin Tolisso plays for .'],\n", " ['Walter Pandiani (CR7 su papá) plays for .'],\n", " ['Justo Villar plays for .'],\n", " ['Francisco Arrué plays for .'],\n", " ['Abel Aguilar plays for .'],\n", " ['Esmaël Gonçalves plays for .'],\n", " ['Marvin Ogunjimi plays for .'],\n", " ['Sulley Muntari plays for .'],\n", " ['Izet Hajrović plays for .'],\n", " ['Ichiro Suzuki plays for .'],\n", " ['Ragnar Klavan plays for .'],\n", " ['Didier Zokora plays for .'],\n", " ['Oscar Ustari plays for .'],\n", " ['Mitchell Langerak plays for .'],\n", " ['Yassine Bounou plays for .'],\n", " ['Hakim Ziyech plays for .'],\n", " ['Lydia Williams plays for .'],\n", " ['Gabriel Jesus plays for .'],\n", " ['Álvaro Fernández plays for .'],\n", " ['Abdoulaye Ba plays for .'],\n", " ['Julian Draxler plays for .'],\n", " ['Stoycho Mladenov plays for .'],\n", " ['Raphaël Guerreiro plays for .'],\n", " ['Simão Sabrosa plays for .'],\n", " ['Anouk Hoogendijk plays for .'],\n", " ['Emanuel Pogatetz plays for .'],\n", " ['Yannick Carrasco plays for .'],\n", " ['Marko Arnautović plays for .'],\n", " ['Bruno Uvini plays for .'],\n", " ['Lukáš Hrádecký plays for .'],\n", " ['Charles Itandje plays for .'],\n", " ['Ján Mucha plays for .'],\n", " ['Florent Piétrus plays for .'],\n", " ['Riyad Mahrez plays for .'],\n", " ['Andre Iguodala plays for .'],\n", " ['Lasse Norman Hansen plays for .'],\n", " ['Nikos Zisis plays for .'],\n", " ['Alou Diarra plays for .'],\n", " ['Przemysław Tytoń plays for .'],\n", " ['Lucas Moura plays for .'],\n", " ['Álvaro Morata plays for .'],\n", " ['Amandine Henry plays for .'],\n", " ['Jefferson Farfán plays for .'],\n", " ['Martin Braithwaite plays for .'],\n", " ['Tom Heaton plays for .'],\n", " ['Carlos Salcedo plays for .'],\n", " ['Gabriel Torje plays for .'],\n", " ['Emily van Egmond plays for .'],\n", " ['Nicolás Laprovíttola plays for .'],\n", " ['Simon Clarke plays for .'],\n", " ['Elias Kachunga plays for .'],\n", " ['Adrián López Álvarez plays for .'],\n", " ['Maurice Edu plays for .'],\n", " ['Hatem Ben Arfa plays for .'],\n", " ['Nelson Oliveira plays for .'],\n", " ['Aco Stojkov plays for .'],\n", " ['Roy Miller plays for .'],\n", " ['Charlie Davies plays for .'],\n", " ['Carlos Fernandes plays for .'],\n", " ['Thaisa plays for .'],\n", " ['Álvaro Saborío plays for .'],\n", " ['Gabriel Cichero plays for .'],\n", " ['Fernandinho plays for .'],\n", " ['Vladimir Gabulov plays for .'],\n", " ['Taylor Rochestie plays for .'],\n", " ['Sven Bender plays for .'],\n", " ['Matías Aguirregaray plays for .'],\n", " ['Wilfried Zaha plays for .'],\n", " ['Ibrahim Afellay plays for .'],\n", " ['Mateo Kovačić plays for .'],\n", " ['Matteo Darmian plays for .'],\n", " ['Nathan Jawai plays for .'],\n", " ['Jérémy Ménez plays for .'],\n", " ['Marc Bartra plays for .'],\n", " ['Éric Djemba-Djemba plays for .'],\n", " ['Tarik Elyounoussi plays for .'],\n", " ['Yacine Brahimi plays for .'],\n", " ['Omar Bravo plays for .'],\n", " ['Yuri Zhirkov plays for .'],\n", " ['Antonio Valencia plays for .'],\n", " ['Kenneth Vermeer plays for .'],\n", " ['Dmytro Chyhrynskyi plays for .'],\n", " ['Robert Kubica plays for .'],\n", " ['Juan Manuel Iturbe plays for .'],\n", " ['Julian de Guzman plays for .'],\n", " ['Alexander Merkel plays for .'],\n", " ['Roman Eremenko plays for .'],\n", " ['Lars Bender plays for .'],\n", " ['Suk Hyun-jun plays for .'],\n", " ['Emre Mor plays for .'],\n", " ['Zoran Tošić plays for .'],\n", " ['Jonathan dos Santos plays for .'],\n", " ['Jonathan Mensah plays for .'],\n", " ['Enzo Fernández plays for .'],\n", " ['Kim Young-gwon plays for .'],\n", " ['Oscar Pérez Rojas plays for .'],\n", " ['Astrit Ajdarević plays for .'],\n", " ['Rolf Feltscher plays for .'],\n", " ['Vedran Ćorluka plays for .'],\n", " ['Darren Randolph plays for .'],\n", " ['Ivan Pelizzoli plays for .'],\n", " ['Radomir Đalović plays for .'],\n", " ['Adam Nemec plays for .'],\n", " ['Kristie Mewis plays for .'],\n", " ['Hannes Þór Halldórsson plays for .'],\n", " ['Valon Berisha plays for .'],\n", " ['Marco Donadel plays for .'],\n", " ['Ola Toivonen plays for .'],\n", " ['Winston Reid plays for .'],\n", " ['Max Kruse plays for .'],\n", " ['Saki Kumagai plays for .'],\n", " ['Branko Ilić plays for .'],\n", " ['Ignazio Abate plays for .'],\n", " ['Răzvan Raț plays for .'],\n", " ['Robert Snodgrass plays for .'],\n", " ['Viola plays for .'],\n", " ['Klay Thompson plays for .'],\n", " ['Stefan Nikolić plays for .'],\n", " ['Carlos Sainz Jr plays for .'],\n", " ['Andressa Alves da Silva plays for .'],\n", " ['Álvaro Negredo plays for .'],\n", " ['Michail Antonio plays for .'],\n", " ['José Bosingwa plays for .'],\n", " ['Atsuto Uchida plays for .'],\n", " ['Lisa Dahlkvist plays for .'],\n", " ['James Troisi plays for .'],\n", " ['Yacouba Sylla plays for .'],\n", " ['Simon Vukčević plays for .'],\n", " ['Cristian Gamboa plays for .'],\n", " ['Elisa Longo Borghini plays for .'],\n", " ['Roberto Soldado plays for .'],\n", " ['Diana Matheson plays for .'],\n", " ['Steven Caulker plays for .'],\n", " ['Ibrahima Baldé plays for .'],\n", " ['Roland Lamah plays for .'],\n", " ['Max Meyer plays for .'],\n", " ['Mbark Boussoufa plays for .'],\n", " ['Achille Emaná plays for .'],\n", " ['Patrice Bernier plays for .'],\n", " ['Ivan Vicelich plays for .'],\n", " ['Islam Slimani plays for .'],\n", " ['Dani Ceballos plays for .'],\n", " ['Lucas Digne plays for .'],\n", " ['Nemanja Matić plays for .'],\n", " ['Andreas Pereira plays for .'],\n", " ['Franck Dja Djédjé plays for .'],\n", " ['Ethan Ampadu plays for .'],\n", " ['R.A. Dickey plays for .'],\n", " ['Mike Havenaar plays for .'],\n", " ['Ryan Bertrand plays for .'],\n", " ['Ed Clancy plays for .'],\n", " ['Holger Badstuber plays for .'],\n", " ['Cristian Săpunaru plays for .'],\n", " ['Elinton Andrade plays for .'],\n", " ['Siem de Jong plays for .'],\n", " ['Carlos Bueno plays for .'],\n", " ['Loïc Rémy plays for .'],\n", " ['Kozue Ando plays for .'],\n", " ['Jimmy Durmaz plays for .'],\n", " ['Rafael Pereira da Silva plays for .'],\n", " ['Óscar Duarte plays for .'],\n", " ['Michael Hector plays for .'],\n", " ['Alex McCarthy plays for .'],\n", " ['Dzsenifer Marozsán plays for .'],\n", " ['Nélson Oliveira plays for .'],\n", " ['Fabio Aru plays for .'],\n", " ['Sacha Kljestan plays for .'],\n", " ['Sofiane Feghouli plays for .'],\n", " ['Emerson Palmieri plays for .'],\n", " ['Hristijan Kirovski plays for .'],\n", " ['Santiago Cazorla plays for .'],\n", " ['Melanie Behringer plays for .'],\n", " ['Stephan Lichtsteiner plays for .'],\n", " ['Hernanes plays for .'],\n", " ['Isabelle Yacoubou plays for .'],\n", " ['Mauricio Isla plays for .'],\n", " ['Hakan Çalhanoğlu plays for .'],\n", " ['Douglas dos Santos plays for .'],\n", " ['Sinan Bolat plays for .'],\n", " ['Esteban Chaves plays for .'],\n", " ['Marcos Lopes plays for .'],\n", " ['J. J. Barea plays for .'],\n", " ['Mario Suárez Mata plays for .'],\n", " ['Stine Bredal Oftedal plays for .'],\n", " ['Njazi Kuqi plays for .'],\n", " ['Jesús Navas plays for .'],\n", " ['Shane Duffy plays for .'],\n", " ['Willy Hernangómez plays for .'],\n", " ['Richard Keogh plays for .'],\n", " ['Rafael Bastos plays for .'],\n", " ['Carlos Beltrán plays for .'],\n", " ['Nelson Cruz plays for .'],\n", " ['Fiodor Smolov plays for .'],\n", " ['Boban Marjanović plays for .'],\n", " ['Fabián Carini plays for .'],\n", " ['Shelina Zadorsky plays for .'],\n", " ['Pavel Pogrebnyak plays for .'],\n", " ['Goran Pandev plays for .'],\n", " ['Marc Janko plays for .'],\n", " ['Jamal Alioui plays for .'],\n", " ['Mohammadou Idrissou plays for .'],\n", " ['Ousmane Dembélé plays for .'],\n", " ['Gordon Schildenfeld plays for .'],\n", " ['Bauke Mollema plays for .'],\n", " ['Kalu Uche plays for .'],\n", " ['Burak Yılmaz plays for .'],\n", " ['Jimmy Butler plays for .'],\n", " ['Eduardo da Silva plays for .'],\n", " ['Jefferson Louis plays for .'],\n", " ['Diomansy Kamara plays for .'],\n", " [\"Franck Songo'o plays for .\"],\n", " ['Marco Rojas plays for .'],\n", " ['Aarón Ñíguez plays for .'],\n", " ['Victor Lindelöf plays for .'],\n", " ['Iván Kaviedes plays for .'],\n", " ['Nikola Kalinić plays for .'],\n", " ['Jajá plays for .'],\n", " ['Iván Zarandona plays for .'],\n", " ['DeAndre Yedlin plays for .'],\n", " ['Ikechi Anya plays for .'],\n", " ['Anthony Lopes plays for .'],\n", " ['Clemente Rodríguez plays for .'],\n", " ['Jan Oblak plays for .'],\n", " ['Ritchie De Laet plays for .'],\n", " ['Lassana Diarra plays for .'],\n", " ['Fatos Bećiraj plays for .'],\n", " ['Kalidou Koulibaly plays for .'],\n", " ['Kostas Mitroglou plays for .'],\n", " ['Mario Lemina plays for .'],\n", " ['Mindaugas Kalonas plays for .'],\n", " ['Édouard Mendy plays for .'],\n", " ['Giovanni Sio plays for .'],\n", " ['Tijani Belaïd plays for .'],\n", " ['Park Joo-ho plays for .'],\n", " ['Emir Spahić plays for .'],\n", " ['Nikica Jelavić plays for .'],\n", " ['Erich Brabec plays for .'],\n", " ['Christian Cueva plays for .'],\n", " ['Yevhen Konoplyanka plays for .'],\n", " ['Paulo Dybala plays for .'],\n", " ['Emanuel Herrera plays for .'],\n", " ['Ludovic Obraniak plays for .'],\n", " ['Kleyr Vieira dos Santos plays for .'],\n", " ['Andriy Yakovlev plays for .'],\n", " ['DeMarcus Cousins plays for .'],\n", " ['Ross McCormack plays for .'],\n", " ['Taylor Phinney plays for .'],\n", " ['Maksim Shatskikh plays for .'],\n", " ['Abby Erceg plays for .'],\n", " ['Yukiya Arashiro plays for .'],\n", " ['Magaye Gueye plays for .'],\n", " ['Jason Denayer plays for .'],\n", " [\"Jolien D'Hoore plays for .\"],\n", " ['Marco Reus plays for .'],\n", " ['Michael Matthews plays for .'],\n", " ['Halil Altıntop plays for .'],\n", " ['Diego Tardelli plays for .'],\n", " ['John Alvbåge plays for .'],\n", " ['Isaac Promise plays for .'],\n", " ['Estelle Nze Minko plays for .'],\n", " ['Sergio Henao plays for .'],\n", " ['Andriy Yarmolenko plays for .'],\n", " ['Kamil Grosicki plays for .'],\n", " ['Fabinho plays for .'],\n", " ['Ishak Belfodil plays for .'],\n", " ['Tosaint Ricketts plays for .'],\n", " ['Linda Sembrant plays for .'],\n", " ['Tuncay Şanlı plays for .'],\n", " ['Hameur Bouazza plays for .'],\n", " ['Vladimír Weiss plays for .'],\n", " ['Bernard Mendy plays for .'],\n", " ['Matt Miazga plays for .'],\n", " ['Marcos Alonso plays for .'],\n", " ['Liassine Cadamuro plays for .'],\n", " ['Adam Federici plays for .'],\n", " ['Akaki Khubutia plays for .'],\n", " ['Miloš Teodosić plays for .'],\n", " ['Jarlinson Pantano plays for .'],\n", " ['Ellen White plays for .'],\n", " ['Román Torres plays for .'],\n", " ['Brown Ideye plays for .'],\n", " ['Trixi Worrack plays for .'],\n", " ['Sead Kolašinac plays for .'],\n", " ['Bernardo Silva plays for .'],\n", " ['Nils Petersen plays for .'],\n", " ['Oriol Romeu plays for .'],\n", " ['Adolfo Machado plays for .'],\n", " ['Filipe Machado Nascimento plays for .'],\n", " ['Rubén Iván Martínez plays for .'],\n", " ['Josephine Henning plays for .'],\n", " ['Dani Carvajal plays for .'],\n", " ['Joël Matip plays for .'],\n", " ['Marcus Berg plays for .'],\n", " ['Julio César de León plays for .'],\n", " ['Salomón Rondón plays for .'],\n", " ['Hajime Hosogai plays for .'],\n", " ['Edgar Ié plays for .'],\n", " ['Martín Montoya plays for .'],\n", " ['Lucas Piazón plays for .'],\n", " ['Markus Rosenberg plays for .'],\n", " ['Ognjen Vranješ plays for .'],\n", " ['Róbinson Zapata plays for .'],\n", " ['Sébastien Pocognoli plays for .'],\n", " ['Anders Lindegaard plays for .'],\n", " ['Jordan Henderson plays for .'],\n", " ['Josip Drmić plays for .'],\n", " ['Aleksandr Kokorin plays for .'],\n", " ['Juan Bernat plays for .'],\n", " ['Miranda plays for .'],\n", " ['Egan Bernal plays for .'],\n", " ['Camille Abily plays for .'],\n", " ['Stefan Maierhofer plays for .'],\n", " ['Matthieu Dossevi plays for .'],\n", " ['Bafétimbi Gomis plays for .'],\n", " ['Ignatas Konovalovas plays for .'],\n", " ['Karina Maruyama plays for .'],\n", " ['Enzo Maresca plays for .'],\n", " ['Tomáš Vaclík plays for .'],\n", " ['Zack Steffen plays for .'],\n", " ['Ricardo Clark plays for .'],\n", " ['Ricardo Oliveira plays for .'],\n", " ['Yun Suk-young plays for .'],\n", " ['Giannelli Imbula plays for .'],\n", " ...],\n", " 'labels': [[[\" United States women's national soccer team\"]],\n", " [[' FC Barcelona']],\n", " [[' Juventus F.C.']],\n", " [[' Los Angeles Lakers']],\n", " [[' Lotto Belisol Ladies']],\n", " [[' A.C. Milan']],\n", " [[' Brazil national football team']],\n", " [[' Independiente Santa Fe']],\n", " [[' Qatar SC']],\n", " [[' OL Reign']],\n", " [[' West Ham United F.C.']],\n", " [[' FC Bayern Munich']],\n", " [[' Paris Saint-Germain F.C.']],\n", " [[' New York City FC']],\n", " [[' Brooklyn Nets']],\n", " [[' Vissel Kobe']],\n", " [[' F.C. Porto']],\n", " [[' Mercedes']],\n", " [[' São José Esporte Clube']],\n", " [[' Japan Fed Cup team']],\n", " [[' Juventus F.C.']],\n", " [[' FC Barcelona']],\n", " [[' FC Bayern Munich']],\n", " [[' Zhejiang Professional F.C.']],\n", " [[' Al Sadd Sports Club']],\n", " [[' Ineos Grenadiers']],\n", " [[' Olympique de Marseille']],\n", " [[' FC Barcelona Femení']],\n", " [[' FC Bayern Munich']],\n", " [[\" United States women's national soccer team\"]],\n", " [[' Hebei F.C.']],\n", " [[' Qhubeka Assos']],\n", " [[' Colombia national football team']],\n", " [[' OL Reign']],\n", " [[' Club Atlético Peñarol']],\n", " [[' Audax Italiano']],\n", " [[' NJ/NY Gotham FC']],\n", " [[' FC Rosengård']],\n", " [[' West Ham United F.C.']],\n", " [[' Royal Challengers Bangalore']],\n", " [[' Paris Saint-Germain F.C.']],\n", " [[' Vissel Kobe']],\n", " [[' D.C. United']],\n", " [[' Sagan Tosu']],\n", " [[' Melbourne Victory']],\n", " [[' Argentina national football team']],\n", " [[' Liv Racing']],\n", " [[' Real Madrid CF']],\n", " [[' VfB Stuttgart']],\n", " [[' Brazil national football team']],\n", " [[' Boca Juniors']],\n", " [[' A.C. Milan']],\n", " [[' LA Galaxy']],\n", " [[' Vissel Kobe']],\n", " [[' Beşiktaş J.K.']],\n", " [[' Arsenal F.C.']],\n", " [[' Tampa Bay Rowdies']],\n", " [[' Paris Saint-Germain F.C.']],\n", " [[' Minnesota Lynx']],\n", " [[' Juventus F.C.']],\n", " [[' Al-Gharafa Sports Club']],\n", " [[' İstanbul Başakşehir FC']],\n", " [[' Chicago Fire FC']],\n", " [[' Arsenal F.C.']],\n", " [[' Olimpia Milano']],\n", " [[' FC Bayern Munich']],\n", " [[' Unione Sportiva Sassuolo Calcio']],\n", " [[' Bahrain Victorious']],\n", " [[' Atlas F.C.']],\n", " [[' Chicago Bulls']],\n", " [[' FC Bayern Munich']],\n", " [[' Houston Rockets']],\n", " [[' LA Galaxy']],\n", " [[' Coritiba F.C.']],\n", " [[' Arsenal F.C.']],\n", " [[' FC Bayern Munich']],\n", " [[' Swiss national football team']],\n", " [[' Toronto Raptors']],\n", " [[' Matrix Fitness']],\n", " [[' Union Sportive des Forces Armées']],\n", " [[' Quick-Step Alpha Vinyl Team']],\n", " [[' Paris Saint-Germain F.C.']],\n", " [[' Seattle Storm']],\n", " [[' Spain national association football team']],\n", " [[' Parma Calcio 1913']],\n", " [[' Washington Spirit']],\n", " [[' France national association football team']],\n", " [[' Egypt national football team']],\n", " [[' Göztepe S.K.']],\n", " [[' Netherlands national association football team']],\n", " [[' West Ham United F.C.']],\n", " [[' Toronto FC']],\n", " [[' Los Angeles Lakers']],\n", " [[' Japan national football team']],\n", " [[' Japan national football team']],\n", " [[' Chelsea F.C.']],\n", " [[' Standard Liège']],\n", " [[' FC Bayern Munich']],\n", " [[' Portland Thorns FC']],\n", " [[' France national association football team']],\n", " [[' Houston Dynamo FC']],\n", " [[' São Paulo FC']],\n", " [[' Associação Académica de Coimbra – O.A.F.']],\n", " [[' Algeria national football team']],\n", " [[' Bora-Hansgrohe']],\n", " [[' Costa Rica national football team']],\n", " [[' Real Madrid CF']],\n", " [[' Quick-Step Alpha Vinyl Team']],\n", " [[' Germany national association football team']],\n", " [[' SC Freiburg']],\n", " [[' Trek–Segafredo']],\n", " [[' Paraguay national football team']],\n", " [[' Rayo OKC']],\n", " [[' Manchester United F.C.']],\n", " [[' Club de Fútbol Monterrey']],\n", " [[' Juventus F.C.']],\n", " [[' Brasiliense Futebol Clube']],\n", " [[' CCC Team']],\n", " [[' Fleury Loiret HB']],\n", " [[' SIG Basket']],\n", " [[' FC Bayern Munich']],\n", " [[' CD Tondela']],\n", " [[' Brooklyn Nets']],\n", " [[' Scuderia Ferrari']],\n", " [[\" Norway women's national football team\"]],\n", " [[' Leicester City F.C.']],\n", " [[' EF Education-Nippo']],\n", " [[' Aalesunds FK']],\n", " [[' Portland Thorns FC']],\n", " [[' Chelsea F.C.']],\n", " [[' Real Madrid CF']],\n", " [[' AS Monaco FC']],\n", " [[' Astana Qazaqstan Team']],\n", " [[' Red Star Belgrade']],\n", " [[' Middlesbrough F.C.']],\n", " [[' Shanghai Port F.C.']],\n", " [[' Real Madrid Baloncesto']],\n", " [[' Trek–Segafredo']],\n", " [[' Sociedade Esportiva Palmeiras']],\n", " [[' Bahrain Victorious']],\n", " [[' FC Baník Ostrava']],\n", " [[' Swansea City A.F.C.']],\n", " [[' Germany national association football team']],\n", " [[' Clube de Regatas do Flamengo']],\n", " [[' FC Dynamo Brest']],\n", " [[' SD Worx']],\n", " [[' Brazil national football team']],\n", " [[' Maccabi Haifa F.C.']],\n", " [[' Paris Saint-Germain F.C.']],\n", " [[' Los Angeles Clippers']],\n", " [[' Paris Saint-Germain Féminine']],\n", " [[' Olympiacos F.C.']],\n", " [[' Derby County F.C.']],\n", " [[' Sporting Kansas City']],\n", " [[' Manchester United F.C.']],\n", " [[' Houston Dash']],\n", " [[' Juventus F.C.']],\n", " [[' F.C. Porto']],\n", " [[' Brazil national football team']],\n", " [[' Senegal national association football team']],\n", " [[' Chicago Red Stars']],\n", " [[' Real Madrid CF']],\n", " [[' Yamaha Motor Racing']],\n", " [[' Stoke City F.C.']],\n", " [[' Japan national football team']],\n", " [[' Atlético Madrid']],\n", " [[' Olympique de Marseille']],\n", " [[' O.F.K. Beograd']],\n", " [[' Belgium national football team']],\n", " [[' Belgium national football team']],\n", " [[' Pune F.C.']],\n", " [[' ACF Fiorentina']],\n", " [[' Stabæk Fotball']],\n", " [[' Canadiennes de Montréal']],\n", " [[' Team BikeExchange']],\n", " [[' Cerro Porteño']],\n", " [[' Fajardo Cariduros']],\n", " [[' Dundee United F.C.']],\n", " [[' Agrotikos Asteras F.C.']],\n", " [[' Germany national association football team']],\n", " [[' Jiangsu F.C.']],\n", " [[' SV Werder Bremen']],\n", " [[' FC Barcelona']],\n", " [[' FC Rosengård']],\n", " [[' Feyenoord']],\n", " [[' Bristol City F.C.']],\n", " [[\" Sweden women's national association football team\"]],\n", " [[' Chelsea F.C.']],\n", " [[' Spain national association football team']],\n", " [[' Juventus F.C.']],\n", " [[' Team Jumbo-Visma']],\n", " [[' Ceratizit–WNT Pro Cycling']],\n", " [[' Rosenborg BK']],\n", " [[' Hokkaido Consadole Sapporo']],\n", " [[' Comunicaciones FC']],\n", " [[' TSG 1899 Hoffenheim']],\n", " [[' Inter Milan']],\n", " [[' Detroit Pistons']],\n", " [[' Galatasaray S.K.']],\n", " [[' France national association football team']],\n", " [[' Team DSM']],\n", " [[' Team DSM']],\n", " [[' NJ/NY Gotham FC']],\n", " [[' Brisbane Roar FC W-League']],\n", " [[' Real Betis Balompié']],\n", " [[' Washington Mystics']],\n", " [[' Montpellier HSC']],\n", " [[' Trek–Segafredo']],\n", " [[' Phoenix Mercury']],\n", " [[' Júbilo Iwata']],\n", " [[' Manchester City F.C.']],\n", " [[' Borussia Dortmund']],\n", " [[' PSV Eindhoven']],\n", " [[' France national association football team']],\n", " [[' New England Patriots']],\n", " [[' Aston Villa F.C.']],\n", " [[' Poland national association football team']],\n", " [[' Göztepe S.K.']],\n", " [[' Baniyas SC']],\n", " [[' Real Madrid CF']],\n", " [[' F.C. Copenhagen']],\n", " [[' Manchester United F.C.']],\n", " [[' Atlético Madrid']],\n", " [[' Belgium national football team']],\n", " [[' Norway national association football team']],\n", " [[' İstanbul Başakşehir FC']],\n", " [[' FC Barcelona']],\n", " [[\" United States men's national soccer team\"]],\n", " [[' Real Madrid CF']],\n", " [[' Səbail FK']],\n", " [[' Juventus F.C.']],\n", " [[' Shanghai Shenhua F.C.']],\n", " [[' Hapoel Jerusalem B.C.']],\n", " [[' SV Werder Bremen']],\n", " [[' Tottenham Hotspur F.C.']],\n", " [[' Everton F.C.']],\n", " [[' Belgium national football team']],\n", " [[' Arsenal F.C.']],\n", " [[' Deportivo de La Coruña']],\n", " [[' Boston Celtics']],\n", " [[' Hamburger SV']],\n", " [[' Belgium national football team']],\n", " [[' Hokkaido Consadole Sapporo']],\n", " [[' Clube Atlético Taboão da Serra']],\n", " [[' Málaga CF']],\n", " [[' Tottenham Hotspur F.C.']],\n", " [[' Arkéa–Samsic']],\n", " [[' San Antonio Spurs']],\n", " [[' Paris Saint-Germain F.C.']],\n", " [[' New York Knicks']],\n", " [[' Utah Jazz']],\n", " [[' F.C. Copenhagen']],\n", " [[' Hebei F.C.']],\n", " [[' Club Atlético River Plate']],\n", " [[' Manchester City F.C.']],\n", " [[' FC Bayern Munich']],\n", " [[' France national association football team']],\n", " [[' Club Atlético Peñarol']],\n", " [[' Italy national association football team']],\n", " [[' Senegal national association football team']],\n", " [[' France national association football team']],\n", " [[' Lotto–Soudal']],\n", " [[' AFC Bournemouth']],\n", " [[' AS Saint-Étienne']],\n", " [[' Denmark national association football team']],\n", " [[' Olympique de Marseille']],\n", " [[' Galatasaray S.K.']],\n", " [[' Atlanta United FC']],\n", " [[' Swansea City A.F.C.']],\n", " [[' Spain national association football team']],\n", " [[' Cameroon national football team']],\n", " [[' Arsenal F.C.']],\n", " [[' FC Rosengård']],\n", " [[' Galatasaray S.K.']],\n", " [[' Italy national association football team']],\n", " [[' Morocco national football team']],\n", " [[' Accra Great Olympics F.C.']],\n", " [[' Extremadura UD']],\n", " [[' West Bromwich Albion F.C.']],\n", " [[' Netherlands national association football team']],\n", " [[' DR Congo national football team']],\n", " [[' Brazil national football team']],\n", " [[' A.S. Roma']],\n", " [[' FC Seoul']],\n", " [[' FC Bayern Munich']],\n", " [[' AFC Ajax']],\n", " [[' New Zealand national rugby union team']],\n", " [[\" United States women's national soccer team\"]],\n", " [[' Chelsea F.C.']],\n", " [[' Santos F.C.']],\n", " [[' Shanghai Port F.C.']],\n", " [[' Sevilla FC']],\n", " [[' Ineos Grenadiers']],\n", " [[' Morocco national football team']],\n", " [[' Sweden national association football team']],\n", " [[' Hertha BSC']],\n", " [[' Manchester City W.F.C.']],\n", " [[' Portugal national association football team']],\n", " [[' TuS Haltern']],\n", " [[' Baniyas SC']],\n", " [[' 1. FFC Frankfurt']],\n", " [[' Chelsea F.C.']],\n", " [[' West Ham United F.C.']],\n", " [[' FC Koper']],\n", " [[' Wadi Degla SC']],\n", " [[' Morocco national football team']],\n", " [[' Chelsea F.C.']],\n", " [[' Criciúma Esporte Clube']],\n", " [[' ACF Fiorentina']],\n", " [[' West Ham United F.C.']],\n", " [[' Brisbane Roar FC']],\n", " [[' Turkey national association football team']],\n", " [[' Storey Racing']],\n", " [[' UAE Team Emirates']],\n", " [[' Movistar Team']],\n", " [[' Germany national association football team']],\n", " [[' Udinese Calcio']],\n", " [[' FC Metz']],\n", " [[' Los Angeles Sparks']],\n", " [[' West Ham United F.C.']],\n", " [[' S.S.C. Napoli']],\n", " [[' Santos F.C.']],\n", " [[' Qhubeka Assos']],\n", " [[' Club Universidad de Chile']],\n", " [[' Sevilla FC']],\n", " [[' Sevilla FC']],\n", " [[' Chelsea F.C.']],\n", " [[' Atlanta Hawks']],\n", " [[' CSKA Moscow']],\n", " [[' Netherlands national association football team']],\n", " [[' Chile national football team']],\n", " [[' Croatia national association football team']],\n", " [[' AS Monaco FC']],\n", " [[' Ineos Grenadiers']],\n", " [[' Fenerbahçe SK']],\n", " [[' KFUM-Kameratene Oslo']],\n", " [[' Western New York Flash']],\n", " [[' Netherlands national association football team']],\n", " [[' Metropolitans 92']],\n", " [[' Eintracht Frankfurt']],\n", " [[' Cagliari Calcio']],\n", " [[' Melbourne Victory']],\n", " [[' PBC CSKA Moscow']],\n", " [[' Manchester City W.F.C.']],\n", " [[' Sunderland A.F.C.']],\n", " [[' Belgium national football team']],\n", " [[' São Paulo FC']],\n", " [[' CR Vasco da Gama']],\n", " [[' Quick-Step Alpha Vinyl Team']],\n", " [[' Australia Billie Jean King Cup team']],\n", " [[' Guangzhou Football Club']],\n", " [[' Atlético Junior']],\n", " [[' Brazil national football team']],\n", " [[' Chicago Red Stars']],\n", " [[' Club Nacional de Football']],\n", " [[' Mexico national football team']],\n", " [[' Qhubeka Assos']],\n", " [[' Wolverhampton Wanderers F.C.']],\n", " [[' Germany national association football team']],\n", " [[' Beşiktaş J.K.']],\n", " [[' US Orléans']],\n", " [[' Deportivo Saprissa']],\n", " [[' Chile national football team']],\n", " [[' Spain national association football team']],\n", " [[' Liverpool F.C.']],\n", " [[' Olympiacos F.C.']],\n", " [[' C.S. Cartaginés']],\n", " [[' Juventus F.C.']],\n", " [[' Valencia CF']],\n", " [[' Belgium national football team']],\n", " [[' Kayserispor']],\n", " [[' Portugal national association football team']],\n", " [[' UAE Team Emirates']],\n", " [[' Italy national association football team']],\n", " [[' Qhubeka Assos']],\n", " [[' Denmark national association football team']],\n", " [[' Swiss national football team']],\n", " [[' FC Barcelona Bàsquet']],\n", " [[' Poland national association football team']],\n", " [[' Renault F1 Team']],\n", " [[' Borussia Dortmund']],\n", " [[' Cleveland Cavaliers']],\n", " [[' Hebei F.C.']],\n", " [[' Bepink']],\n", " [[' Borussia Dortmund']],\n", " [[' Club Atlético Talleres']],\n", " [[' Toulon Saint-Cyr Var Handball']],\n", " [[' Portland Trail Blazers']],\n", " [[' Trek–Segafredo']],\n", " [[' Eintracht Frankfurt']],\n", " [[' A.S. Roma']],\n", " [[' Yokohama FC']],\n", " [[' Trabzonspor']],\n", " [[' Seattle Sounders FC']],\n", " [[' UAE Team Emirates']],\n", " [[' Peru national football team']],\n", " [[' Portugal national association football team']],\n", " [[' France national association football team']],\n", " [[' Beşiktaş J.K.']],\n", " [[' Swiss national football team']],\n", " [[' Sydney FC']],\n", " [[' Cangzhou Mighty Lions F.C.']],\n", " [[' Burnley F.C.']],\n", " [[' CCC Team']],\n", " [[' Club Deportivo Universidad Católica']],\n", " [[' ACF Fiorentina']],\n", " [[' Parma Calcio 1913']],\n", " [[' West Ham United F.C.']],\n", " [[' Republic of Ireland national association football team']],\n", " [[' Fenerbahçe SK']],\n", " [[' Chelsea F.C. Women']],\n", " [[' New Orleans Pelicans']],\n", " [[' G.S. Iraklis Thessaloniki']],\n", " [[' NJ/NY Gotham FC']],\n", " [[' CR Vasco da Gama']],\n", " [[' Tottenham Hotspur F.C.']],\n", " [[' Spain national association football team']],\n", " [[' Portugal national association football team']],\n", " [[' Brazil national football team']],\n", " [[' FC Bayern Munich']],\n", " [[' Team Jumbo-Visma']],\n", " [[' France national association football team']],\n", " [[' VfL Wolfsburg Women']],\n", " [[' Wuhan F.C.']],\n", " [[' Genoa CFC']],\n", " [[' Western New York Flash']],\n", " [[' Okinawa SV']],\n", " [[' C.D. Guadalajara']],\n", " [[' Hebei F.C.']],\n", " [[' Spain national association football team']],\n", " [[' Hapoel Haifa F.C.']],\n", " [[' SV Werder Bremen']],\n", " [[' England national association football team']],\n", " [[' France national association football team']],\n", " [[' Guinea-Bissau national football team']],\n", " [[' N.E.C.']],\n", " [[' Olympique de Marseille']],\n", " [[' Mexico national football team']],\n", " [[' Czech Republic national beach soccer team']],\n", " [[' FC Yenisey Krasnoyarsk']],\n", " [[' Real Madrid CF']],\n", " [[' Quick-Step Alpha Vinyl Team']],\n", " [[' Costa Rica national football team']],\n", " [[\" Canada men's national soccer team\"]],\n", " [[' Poland national association football team']],\n", " [[' Russia national football team']],\n", " [[' Chile national football team']],\n", " [[' Real Madrid CF']],\n", " [[' Club Rubio Ñu']],\n", " [[' Senegal national association football team']],\n", " [[' FC Bayern Munich Women']],\n", " [[' Manchester City F.C.']],\n", " [[' Roland Cogeas Edelweiss Squad']],\n", " [[' Wigan Athletic F.C.']],\n", " [[' Houston Rockets']],\n", " [[' Oklahoma City Thunder']],\n", " [[' Kawasaki Frontale']],\n", " [[' KIF Örebro DFF']],\n", " [[' Team BikeExchange Jayco']],\n", " [[' Estonia national football team']],\n", " [[' Germany national association football team']],\n", " [[' Rayo Vallecano']],\n", " [[' ADO Den Haag']],\n", " [[' FK AS Trenčín']],\n", " [[' Bora-Hansgrohe']],\n", " [[' Real Sociedad']],\n", " [[' Antalyaspor']],\n", " [[' LA Galaxy']],\n", " [[' E.C. Vitória']],\n", " [[' AC Sparta Prague']],\n", " [[' Club Atlético River Plate']],\n", " [[' Cameroon national football team']],\n", " [[' Spain national association football team']],\n", " [[' Astana Qazaqstan Team']],\n", " [[' Paris Saint-Germain F.C.']],\n", " [[' France national association football team']],\n", " [[' Manchester City F.C.']],\n", " [[' Team Jumbo-Visma']],\n", " [[' FC Bayern Munich']],\n", " [[' Quick-Step Alpha Vinyl Team']],\n", " [[' Portugal national association football team']],\n", " [[' Canyon–SRAM']],\n", " [[' Atlanta Hawks']],\n", " [[' Maccabi Haifa F.C.']],\n", " [[' Germany national association football team']],\n", " [[' Southampton F.C.']],\n", " [[' S.C. Internacional']],\n", " [[' Germany national association football team']],\n", " [[' Swiss national football team']],\n", " [[' Portugal national association football team']],\n", " [[' Juventus F.C.']],\n", " [[' 1. FC Nürnberg']],\n", " [[' Brazil national football team']],\n", " [[' FC Augsburg']],\n", " [[' Manchester City F.C.']],\n", " [[\" United States women's national soccer team\"]],\n", " [[' Tottenham Hotspur F.C.']],\n", " [[' Arsenal F.C.']],\n", " [[' FC Zenit Saint Petersburg']],\n", " [[' Burnley F.C.']],\n", " [[' Spain national association football team']],\n", " [[' Milwaukee Bucks']],\n", " [[' Melbourne Victory']],\n", " [[' Brazil national football team']],\n", " [[' Shanghai Shenhua F.C.']],\n", " [[' Sektzia Nes Tziona F.C.']],\n", " [[' Seinäjoen Jalkapallokerho']],\n", " [[' Olympique Lyonnais']],\n", " [[' Orlando Pride']],\n", " [[' Leeds United F.C.']],\n", " [[' FC Sion']],\n", " [[' Orlando City SC']],\n", " [[' Atlético Madrid']],\n", " [[' South Korea national football team']],\n", " [[' Tiburones Rojos de Veracruz']],\n", " [[' Club América']],\n", " [[' Angers SCO']],\n", " [[' Netherlands national association football team']],\n", " [[' Chicago Red Stars']],\n", " [[' Juventus F.C.']],\n", " [[' POFC Botev Vratsa']],\n", " [[' Pirata F.C']],\n", " [[' Leicester City F.C.']],\n", " [[' FC Zenit Saint Petersburg']],\n", " [[' Seattle Sounders FC']],\n", " [[' Mexico national football team']],\n", " [[' Houston Dash']],\n", " [[' FC Barcelona']],\n", " [[' Mumbai City FC']],\n", " [[' Élan Chalon']],\n", " [[' Atlético Sanluqueño CF']],\n", " [[' 1. FFC Frankfurt']],\n", " [[' AFC Eskilstuna']],\n", " [[' Argentina national football team']],\n", " [[' Algeria national football team']],\n", " [[' Nigeria national football team']],\n", " [[' Ismaily SC']],\n", " [[' Hertha BSC']],\n", " [[' Juventus F.C.']],\n", " [[' Italy national association football team']],\n", " [[' Ivory Coast national football team']],\n", " [[\" Colo-Colo women's\"]],\n", " [[' Chicago Red Stars']],\n", " [[' A.S. Roma']],\n", " [[' Seoul E-Land FC']],\n", " [[' Germany national association football team']],\n", " [[' Germany national association football team']],\n", " [[' Charlotte Hornets']],\n", " [[' Comunicaciones FC']],\n", " [[' VfB Stuttgart']],\n", " [[' Italy national association football team']],\n", " [[' Brazil national football team']],\n", " [[' Arsenal W.F.C.']],\n", " [[' Sweden national association football team']],\n", " [[' Mexico national football team']],\n", " [[' Italy national association football team']],\n", " [[' Spain national association football team']],\n", " [[' UAE Team Emirates']],\n", " [[' FC Rukh Lviv']],\n", " [[' Olympique de Marseille']],\n", " [[' South Korea national football team']],\n", " [[' PFC CSKA Moscow']],\n", " [[' Belgium national football team']],\n", " [[' Japan national football team']],\n", " [[' Nigeria national football team']],\n", " [[' TWENTY20 p/b Sho-Air']],\n", " [[' Manchester City F.C.']],\n", " [[' Sociedade Esportiva Palmeiras']],\n", " [[' Szombathelyi Haladás']],\n", " [[' Seattle Sounders FC']],\n", " [[' Deportivo Toluca F.C.']],\n", " [[' PSV Eindhoven']],\n", " [[' Belarus national football team']],\n", " [[' VfB Stuttgart II']],\n", " [[' Astana Qazaqstan Team']],\n", " [[' Russia national football team']],\n", " [[' Helsingin Jalkapalloklubi']],\n", " [[' BC Rytas']],\n", " [[' A.S. Roma']],\n", " [[' Utah Jazz']],\n", " [[' Spain national association football team']],\n", " [[\" Germany women's national football team\"]],\n", " [[' New Orleans Pelicans']],\n", " [[' Algeria national football team']],\n", " [[' Rio Ave F.C.']],\n", " [[' Derby County F.C.']],\n", " [[' Swiss national football team']],\n", " [[' Iran national football team']],\n", " [[' Minnesota Timberwolves']],\n", " [[' Málaga CF']],\n", " [[' Eintracht Frankfurt']],\n", " [[' Nigeria national football team']],\n", " [[' ACF Fiorentina']],\n", " [[' Newcastle United F.C.']],\n", " [[' Unión Deportiva Las Palmas']],\n", " [[' Venezuela national football team']],\n", " [[' France national association football team']],\n", " [[' Manchester City F.C.']],\n", " [[' Kayserispor']],\n", " [[' Japan national football team']],\n", " [[' Central African Republic national football team']],\n", " [[' Germany national association football team']],\n", " [[' NK Olimpija Ljubljana']],\n", " [[' Swiss national football team']],\n", " [[' Mexico national football team']],\n", " [[' Las Vegas Aces']],\n", " [[' Norwich City F.C.']],\n", " [[' Santa Cruz Futebol Clube']],\n", " [[' Ceratizit–WNT Pro Cycling']],\n", " [[' Liverpool F.C.']],\n", " [[' TotalEnergies']],\n", " [[' Oeste Futebol Clube']],\n", " [[\" United States men's national soccer team\"]],\n", " [[' Arsenal F.C.']],\n", " [[' Norway national association football team']],\n", " [[' FC Lokomotiv Moscow']],\n", " [[' Legia Warsaw']],\n", " [[' Brazil national football team']],\n", " [[' North Macedonia national football team']],\n", " [[' Zhejiang Professional F.C.']],\n", " [[' Balıkesirspor']],\n", " [[' Talaba SC']],\n", " [[' Ghana national football team']],\n", " [[' Akhisar Belediyespor']],\n", " [[' Arsenal F.C.']],\n", " [[' FC Ingolstadt 04']],\n", " [[' Sweden national association football team']],\n", " [[' Helsingin Jalkapalloklubi']],\n", " [[' Sydney FC']],\n", " [[' Philippines national football team']],\n", " [[' Olympiacos F.C.']],\n", " [[' Chelsea F.C. Women']],\n", " [[' S.S.C. Napoli']],\n", " [[' Al-Faisaly FC']],\n", " [[' Cruz Azul']],\n", " [[' FC Lokomotiv Moscow']],\n", " [[' Arsenal W.F.C.']],\n", " [[' Iran national football team']],\n", " [[' Orlando Pride']],\n", " [[' Porsche']],\n", " [[' Denmark national association football team']],\n", " [[' Atlético Junior']],\n", " [[' England national association football team']],\n", " [[' South Korea national football team']],\n", " [[' SC East Bengal']],\n", " [[' Brest Bretagne Handball']],\n", " [[' AG2R Citroën Team']],\n", " [[' Swiss national football team']],\n", " [[' Chelsea F.C. Women']],\n", " [[' Dallas Mavericks']],\n", " [[' France national association football team']],\n", " [[' UnitedHealthcare']],\n", " [[' Spain national association football team']],\n", " [[' Linköpings FC']],\n", " [[' Nigeria national football team']],\n", " [[' Liverpool F.C.']],\n", " [[' Team BikeExchange Jayco']],\n", " [[' France national association football team']],\n", " [[' São Tomé and Príncipe national football team']],\n", " [[' Portugal national association football team']],\n", " [[' Australia national association football team']],\n", " [[' Portimonense S.C.']],\n", " [[' Denmark national association football team']],\n", " [[' Belgium national football team']],\n", " [[\" Hapoel Be'er Sheva F.C.\"]],\n", " [[\" Japan women's national football team\"]],\n", " [[\" Canada women's national soccer team\"]],\n", " [[' OL Reign']],\n", " [[' Denmark national association football team']],\n", " [[' Germany national association football team']],\n", " [[' Brazil national football team']],\n", " [[' Montpellier Hérault Sport Club']],\n", " [[' Atlético Madrid']],\n", " [[' Norway national association football team']],\n", " [[' Hellas Verona F.C.']],\n", " [[' FC Shakhtar Donetsk']],\n", " [[' Southampton F.C.']],\n", " [[' Olympique Lyonnais']],\n", " [[' FC Lausanne-Sport']],\n", " [[' Club Social y Deportivo Colo Colo']],\n", " [[' Coquimbo Unido']],\n", " [[' Unión Magdalena']],\n", " [[' Anorthosis Famagusta FC']],\n", " [[' K.F.C. Oosterzonen Oosterwijk']],\n", " [[' Al Ittihad FC']],\n", " [[' Bosnia and Herzegovina national football team']],\n", " [[' Seattle Mariners']],\n", " [[' Cagliari Calcio']],\n", " [[' FC Pune City']],\n", " [[' Atlas F.C.']],\n", " [[' Australia national association football team']],\n", " [[' Morocco national football team']],\n", " [[' Morocco national football team']],\n", " [[' Houston Dash']],\n", " [[' FC Barcelona']],\n", " [[' San Martín de Tucumán']],\n", " [[' Senegal national association football team']],\n", " [[' Germany national association football team']],\n", " [[' FC Kaisar']],\n", " [[' Portugal national association football team']],\n", " [[' NorthEast United FC']],\n", " [[' AFC Ajax Vrouwen']],\n", " [[' 1. FC Union Berlin']],\n", " [[' Belgium national football team']],\n", " [[' Stoke City F.C.']],\n", " [[' FC Twente']],\n", " [[' Finland national football team']],\n", " [[' Cameroon national football team']],\n", " [[' ŠK Slovan Bratislava']],\n", " [[' SIG Basket']],\n", " [[' Algeria national football team']],\n", " [[' Golden State Warriors']],\n", " [[' Alpecin–Fenix']],\n", " [[' Brose Baskets']],\n", " [[' Charlton Athletic F.C.']],\n", " [[' Poland national association football team']],\n", " [[' Brazil national football team']],\n", " [[' Spain national association football team']],\n", " [[' Olympique Lyonnais']],\n", " [[' Al Jazira Club']],\n", " [[' Denmark national association football team']],\n", " [[' Aston Villa F.C.']],\n", " [[' Mexico national football team']],\n", " [[' Romania national association football team']],\n", " [[\" Australia women's national soccer team\"]],\n", " [[' Club Joventut Badalona']],\n", " [[' EF Education-Nippo']],\n", " [[' FC Ingolstadt 04']],\n", " [[' F.C. Porto']],\n", " [[' Philadelphia Union']],\n", " [[' Stade Rennais F.C.']],\n", " [[' Movistar Team']],\n", " [[' FK Vardar']],\n", " [[' Portland Timbers 2']],\n", " [[' New England Revolution']],\n", " [[' UD Vilafranquense']],\n", " [[' Associação Ferroviária de Esportes']],\n", " [[' D.C. United']],\n", " [[' FC Sion']],\n", " [[' Brazil national football team']],\n", " [[' FC Dinamo Moscow']],\n", " [[' Tianjin Ronggang']],\n", " [[' Germany national association football team']],\n", " [[' Uruguay national football team']],\n", " [[' Crystal Palace F.C.']],\n", " [[' Stoke City F.C.']],\n", " [[' Croatia national association football team']],\n", " [[' Manchester United F.C.']],\n", " [[' Metropolitans 92']],\n", " [[' Club América']],\n", " [[' Spain national association football team']],\n", " [[' Voltigeurs de Châteaubriant']],\n", " [[' TSG 1899 Hoffenheim']],\n", " [[' Algeria national football team']],\n", " [[' North Carolina FC']],\n", " [[' Russia national football team']],\n", " [[' Real Madrid CF']],\n", " [[' Feyenoord']],\n", " [[' A.E.K. Athens F.C.']],\n", " [[' Williams Grand Prix Engineering']],\n", " [[' Club Tijuana']],\n", " [[' Ottawa Fury FC']],\n", " [[' Kazakhstan national football team']],\n", " [[' FC Rostov']],\n", " [[' Germany national association football team']],\n", " [[' South Korea national football team']],\n", " [[' Turkey national association football team']],\n", " [[' PFC CSKA Moscow']],\n", " [[' Villarreal CF']],\n", " [[' FC Anzhi Makhachkala']],\n", " [[' Real Madrid Castilla']],\n", " [[' South Korea national football team']],\n", " [[' CF Pachuca']],\n", " [[' Örebro SK']],\n", " [[' Venezuela national football team']],\n", " [[' FC Lokomotiv Moscow']],\n", " [[' Republic of Ireland national association football team']],\n", " [[' Vicenza Calcio']],\n", " [[' FK Budućnost Podgorica']],\n", " [[' Pafos FC']],\n", " [[\" United States women's national soccer team\"]],\n", " [[' Iceland national association football team']],\n", " [[' Norway national association football team']],\n", " [[' CF Montréal']],\n", " [[' Sunderland A.F.C.']],\n", " [[' New Zealand national football team']],\n", " [[' SV Werder Bremen']],\n", " [[' Olympique Lyonnais Féminin']],\n", " [[' Urawa Red Diamonds']],\n", " [[' A.C. Milan']],\n", " [[' Rayo Vallecano']],\n", " [[' Scotland national football team']],\n", " [[' Clube Atlético Taboão da Serra']],\n", " [[' Golden State Warriors']],\n", " [[' LKS Nieciecza']],\n", " [[' McLaren']],\n", " [[' FC Barcelona Femení']],\n", " [[' Valencia CF']],\n", " [[' West Ham United F.C.']],\n", " [[' Trabzonspor']],\n", " [[' 1. FC Union Berlin']],\n", " [[' Paris Saint-Germain F.C.']],\n", " [[' Liaoning Whowin F.C.']],\n", " [[' Mali national football team']],\n", " [[' Enosis Neon Paralimni FC']],\n", " [[' Costa Rica national football team']],\n", " [[' Trek–Segafredo']],\n", " [[' Villarreal CF']],\n", " [[' Washington Spirit']],\n", " [[' Liverpool F.C.']],\n", " [[' Senegal national association football team']],\n", " [[' FC Cincinnati']],\n", " [[' Crystal Palace F.C.']],\n", " [[' KAA Gent']],\n", " [[' Gimnàstic de Tarragona']],\n", " [[' CF Montréal']],\n", " [[' Auckland City FC']],\n", " [[' Algeria national football team']],\n", " [[' Spain national association football team']],\n", " [[' France national association football team']],\n", " [[' Manchester United F.C.']],\n", " [[' Santos FC']],\n", " [[' Al-Shahaniya Sports Club']],\n", " [[' Chelsea F.C.']],\n", " [[' Toronto Blue Jays']],\n", " [[' Vissel Kobe']],\n", " [[' Southampton F.C.']],\n", " [[' JLT Condor']],\n", " [[' VfB Stuttgart']],\n", " [[' Romania national association football team']],\n", " [[' Goa ISL team']],\n", " [[' Netherlands national association football team']],\n", " [[' Argentinos Juniors']],\n", " [[' Lille OSC']],\n", " [[' SGS Essen']],\n", " [[' Sweden national association football team']],\n", " [[' Olympique Lyonnais']],\n", " [[' Costa Rica national football team']],\n", " [[' Jamaica national association football team']],\n", " [[' Crystal Palace F.C.']],\n", " [[' Olympique Lyonnais Féminin']],\n", " [[' Norwich City F.C.']],\n", " [[' UAE Team Emirates']],\n", " [[' New York Red Bulls']],\n", " [[' Algeria national football team']],\n", " [[' A.S. Roma']],\n", " [[' FK Shkëndija']],\n", " [[' Villarreal CF']],\n", " [[' FC Bayern Munich Women']],\n", " [[' Arsenal F.C.']],\n", " [[' São Paulo FC']],\n", " [[' CJM Bourges Basket']],\n", " [[' Fenerbahçe SK']],\n", " [[' Turkey national association football team']],\n", " [[' Brazil national football team']],\n", " [[' Turkey national association football team']],\n", " [[' Team BikeExchange Jayco']],\n", " [[' Lille OSC']],\n", " [[' Dallas Mavericks']],\n", " [[' Spain national association football team']],\n", " [[\" Norway women's national handball team\"]],\n", " [[' PK-35 Vantaa']],\n", " [[' Manchester City F.C.']],\n", " [[' Republic of Ireland national association football team']],\n", " [[' Philadelphia 76ers']],\n", " [[' Republic of Ireland national association football team']],\n", " [[' América Futebol Clube (MG)']],\n", " [[' St. Louis Cardinals']],\n", " [[' Baltimore Orioles']],\n", " [[' Russia national football team']],\n", " [[' Philadelphia 76ers']],\n", " [[' Juventud de Las Piedras']],\n", " [[' Orlando Pride']],\n", " [[' FC Dinamo Moscow']],\n", " [[' Genoa CFC']],\n", " [[' FC Basel']],\n", " [[\" Monts d'Or Azergues Foot\"]],\n", " [[' Maccabi Haifa F.C.']],\n", " [[' France national association football team']],\n", " [[' Anorthosis Famagusta FC']],\n", " [[' Trek–Segafredo']],\n", " [[' Unión Deportiva Almería']],\n", " [[' Beijing Guoan F.C.']],\n", " [[' Philadelphia 76ers']],\n", " [[' Legia Warsaw']],\n", " [[' Wealdstone F.C.']],\n", " [[' NorthEast United FC']],\n", " [[' PAS Giannina F.C.']],\n", " [[' New Zealand national football team']],\n", " [[' S.C. Braga']],\n", " [[' Sweden national association football team']],\n", " [[' Águilas CF']],\n", " [[' Atlético Madrid']],\n", " [[' K.S.C. Lokeren Oost-Vlaanderen']],\n", " [[' Burgos CF']],\n", " [[\" United States men's national soccer team\"]],\n", " [[' Scotland national football team']],\n", " [[' Portugal national association football team']],\n", " [[' Club Atlético Colón']],\n", " [[' Slovenia national football team']],\n", " [[' Middlesbrough F.C.']],\n", " [[' Olympique de Marseille']],\n", " [[' Maccabi Netanya F.C.']],\n", " [[' S.S.C. Napoli']],\n", " [[' S.L. Benfica']],\n", " [[' Gabon national football team']],\n", " [[' FK Kauno Žalgiris']],\n", " [[' Stade Rennais F.C.']],\n", " [[' Stade Rennais F.C.']],\n", " [[' Club Africain']],\n", " [[' South Korea national football team']],\n", " [[' Hamburger SV']],\n", " [[' Guizhou F.C.']],\n", " [[' FC Slovan Liberec']],\n", " [[' Peru national football team']],\n", " [[' Ukraine national association football team']],\n", " [[' Argentina national football team']],\n", " [[' FBC Melgar']],\n", " [[' Maccabi Haifa F.C.']],\n", " [[' Al-Faisaly SC']],\n", " [[' FC Ararat Yerevan']],\n", " [[' Los Angeles Lakers']],\n", " [[' Fulham F.C.']],\n", " [[' EF Education-Nippo']],\n", " [[' FC Rukh Lviv']],\n", " [[' Western New York Flash']],\n", " [[' Bahrain Victorious']],\n", " [[' Ankaraspor']],\n", " [[' Belgium national football team']],\n", " [[' SD Worx']],\n", " [[' Germany national association football team']],\n", " [[' Team DSM']],\n", " [[' FC Augsburg']],\n", " [[' Clube de Regatas do Flamengo']],\n", " [[' Nea Salamis Famagusta FC']],\n", " [[' Kardemir Karabükspor']],\n", " [[\" France women's national handball team\"]],\n", " [[' UAE Team Emirates']],\n", " [[' West Ham United F.C.']],\n", " [[' Stade Rennais F.C.']],\n", " [[' Liverpool F.C.']],\n", " [[' Algeria national football team']],\n", " [[\" Canada men's national soccer team\"]],\n", " [[' Montpellier Hérault Sport Club']],\n", " [[' FC Pune City']],\n", " [[' Red Star F.C.']],\n", " [[' Al-Gharafa Sports Club']],\n", " [[' SC East Bengal']],\n", " [[\" United States men's national soccer team\"]],\n", " [[' Chelsea F.C.']],\n", " [[' Algeria national football team']],\n", " [[' Australia national association football team']],\n", " [[' FC Vitebsk']],\n", " [[' Los Angeles Clippers']],\n", " [[' Trek–Segafredo']],\n", " [[' Arsenal F.C.']],\n", " [[' Seattle Sounders FC']],\n", " [[' Nigeria national football team']],\n", " [[' Trek–Segafredo']],\n", " [[' Bosnia and Herzegovina national football team']],\n", " [[' Portugal national association football team']],\n", " [[' Germany national association football team']],\n", " [[' Southampton F.C.']],\n", " [[' Deportivo Saprissa']],\n", " [[' Saba Qom F.C.']],\n", " [[' Club Atlético Osasuna']],\n", " [[' Arsenal F.C.']],\n", " [[' Spain national association football team']],\n", " [[' Liverpool F.C.']],\n", " [[' FC Krasnodar']],\n", " [[' Club Atlético Platense']],\n", " [[' Newcastle United F.C.']],\n", " [[' Buriram United F.C.']],\n", " [[' Villarreal CF']],\n", " [[' Real Betis Balompié']],\n", " [[' Chelsea F.C.']],\n", " [[' Malmö FF']],\n", " [[' Bosnia and Herzegovina national football team']],\n", " [[' Independiente Santa Fe']],\n", " [[' West Bromwich Albion F.C.']],\n", " [[' Preston North End F.C.']],\n", " [[' England national association football team']],\n", " [[' Swiss national football team']],\n", " [[' FC Zenit Saint Petersburg']],\n", " [[' Spain national association football team']],\n", " [[' Brazil national football team']],\n", " [[' Ineos Grenadiers']],\n", " [[' Olympique Lyonnais Féminin']],\n", " [[' FK AS Trenčín']],\n", " [[' Togo national football team']],\n", " [[' Al-Hilal SFC']],\n", " [[' Groupama-FDJ']],\n", " [[' Speranza Osaka-Takatsuki']],\n", " [[' Palermo FC']],\n", " [[' Czech Republic national association football team']],\n", " [[\" United States men's national soccer team\"]],\n", " [[' Columbus Crew']],\n", " [[' Santos F.C.']],\n", " [[' South Korea national football team']],\n", " [[' Stoke City F.C.']],\n", " ...],\n", " 'labels_ids': [[[315, 532, 390, 18, 632, 4191, 165]],\n", " [[5429, 4612]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[1287, 1422, 6772]],\n", " [[226, 15089, 4231, 36508, 17560]],\n", " [[83, 4, 347, 4, 7338]],\n", " [[2910, 632, 1037, 165]],\n", " [[4619, 26769, 4843, 242, 2005, 6945]],\n", " [[5978, 4998]],\n", " [[19763, 16872]],\n", " [[580, 3600, 315, 274, 4, 347, 4]],\n", " [[5429, 10402, 10489]],\n", " [[2201, 6130, 12, 534, 8362, 1851, 274, 4, 347, 4]],\n", " [[188, 469, 412, 5429]],\n", " [[6314, 16421]],\n", " [[10035, 5317, 24058]],\n", " [[274, 4, 347, 4, 2848, 139]],\n", " [[7016]],\n", " [[208, 4214, 23087, 7065, 3427, 242, 2893, 13345]],\n", " [[1429, 2337, 968, 165]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[5429, 4612]],\n", " [[5429, 10402, 10489]],\n", " [[525, 700, 20852, 12221, 274, 4, 347, 4]],\n", " [[726, 27530, 1847, 2009]],\n", " [[96, 242, 366, 13519, 625, 4733]],\n", " [[14993, 5150, 263, 23294, 4061]],\n", " [[5429, 4612, 274, 15035, 1977]],\n", " [[5429, 10402, 10489]],\n", " [[315, 532, 390, 18, 632, 4191, 165]],\n", " [[91, 1610, 118, 274, 4, 347, 4]],\n", " [[1209, 31002, 16146, 6331, 366]],\n", " [[8700, 632, 1037, 165]],\n", " [[19763, 16872]],\n", " [[2009, 29018, 10221, 2684, 4119, 6303, 271, 1168]],\n", " [[11917, 3631, 3108, 139]],\n", " [[10585, 73, 9873, 35733, 5429]],\n", " [[5429, 4168, 3314, 11489, 2586]],\n", " [[580, 3600, 315, 274, 4, 347, 4]],\n", " [[2930, 32109, 20434, 20071]],\n", " [[2201, 6130, 12, 534, 8362, 1851, 274, 4, 347, 4]],\n", " [[10035, 5317, 24058]],\n", " [[211, 4, 347, 4, 315]],\n", " [[38224, 17135, 257]],\n", " [[5703, 15908]],\n", " [[5244, 632, 1037, 165]],\n", " [[17057, 8441]],\n", " [[2822, 3622, 12612]],\n", " [[468, 506, 387, 312, 9259, 22739]],\n", " [[2910, 632, 1037, 165]],\n", " [[163, 14075, 6752, 10327]],\n", " [[83, 4, 347, 4, 7338]],\n", " [[5168, 5325]],\n", " [[10035, 5317, 24058]],\n", " [[1456, 5235, 967, 4349, 5235, 344, 4, 530, 4]],\n", " [[4152, 274, 4, 347, 4]],\n", " [[6415, 1501, 9224, 38707]],\n", " [[2201, 6130, 12, 534, 8362, 1851, 274, 4, 347, 4]],\n", " [[3161, 14122, 1178]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[726, 12, 534, 4759, 15997, 1847, 2009]],\n", " [[4236, 7487, 46770, 5597, 5235, 677, 5235, 14897, 853, 5429]],\n", " [[1568, 1833, 5429]],\n", " [[4152, 274, 4, 347, 4]],\n", " [[384, 10839, 642, 493, 5366, 2601]],\n", " [[5429, 10402, 10489]],\n", " [[1332, 242, 5413, 7222, 30089, 257, 5675, 2912, 438, 1020]],\n", " [[13800, 41269, 31221]],\n", " [[22705, 274, 4, 347, 4]],\n", " [[1568, 9926]],\n", " [[5429, 10402, 10489]],\n", " [[2499, 11476]],\n", " [[5168, 5325]],\n", " [[2812, 405, 15577, 274, 4, 347, 4]],\n", " [[4152, 274, 4, 347, 4]],\n", " [[5429, 10402, 10489]],\n", " [[5092, 632, 1037, 165]],\n", " [[2177, 13114]],\n", " [[29830, 18961]],\n", " [[1332, 5413, 2088, 2694, 8717, 10617, 1140, 293]],\n", " [[13287, 12, 25093, 7829, 40236, 2711]],\n", " [[2201, 6130, 12, 534, 8362, 1851, 274, 4, 347, 4]],\n", " [[3417, 5809]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[221, 15277, 2912, 438, 1020, 38220]],\n", " [[663, 11758]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[5028, 632, 1037, 165]],\n", " [[41135, 329, 859, 2379, 208, 4, 530, 4]],\n", " [[7556, 632, 5259, 1037, 165]],\n", " [[580, 3600, 315, 274, 4, 347, 4]],\n", " [[2177, 5429]],\n", " [[1287, 1422, 6772]],\n", " [[1429, 632, 1037, 165]],\n", " [[1429, 632, 1037, 165]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[5787, 5991, 8025, 1899]],\n", " [[5429, 10402, 10489]],\n", " [[5926, 2032, 16248, 5429]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[2499, 37960, 5429]],\n", " [[208, 4214, 15333, 5429]],\n", " [[6331,\n", " 1975,\n", " 493,\n", " 3381,\n", " 4214,\n", " 20341,\n", " 1140,\n", " 119,\n", " 2426,\n", " 263,\n", " 944,\n", " 16231,\n", " 763,\n", " 126,\n", " 384,\n", " 4,\n", " 250,\n", " 4,\n", " 597,\n", " 4]],\n", " [[21774, 632, 1037, 165]],\n", " [[163, 4330, 12, 725, 1253, 15821, 700]],\n", " [[7505, 17458, 632, 1037, 165]],\n", " [[2822, 3622, 12612]],\n", " [[13287, 12, 25093, 7829, 40236, 2711]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[4998, 5547, 1452, 7150]],\n", " [[20351, 2383, 42775, 2001, 33293]],\n", " [[31162, 857, 632, 1037, 165]],\n", " [[4622, 139, 4954, 347]],\n", " [[2361, 315, 274, 4, 347, 4]],\n", " [[2009, 263, 274, 5874, 90, 18217, 3385, 1334, 5460]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[17128, 4715, 9401, 274, 4467, 18217, 2893, 13345]],\n", " [[230, 3376, 2711]],\n", " [[12602, 6801, 5463, 1885, 90, 22783]],\n", " [[38499, 163, 20997]],\n", " [[5429, 10402, 10489]],\n", " [[7522, 255, 2832, 6658]],\n", " [[6314, 16421]],\n", " [[2741, 1906, 6971, 10482]],\n", " [[8683, 390, 18, 632, 1037, 165]],\n", " [[9035, 412, 274, 4, 347, 4]],\n", " [[17112, 3061, 12, 487, 5600, 139]],\n", " [[83, 4575, 3194, 29, 274, 530]],\n", " [[5926, 2032, 16248, 5429]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[2822, 3622, 12612]],\n", " [[6015, 12696, 5429]],\n", " [[8937, 1113, 1209, 11868, 1343, 22398, 2711]],\n", " [[1211, 2141, 4231, 8425]],\n", " [[20421, 428, 10344, 274, 4, 347, 4]],\n", " [[7137, 2848, 274, 4, 347, 4]],\n", " [[2822, 3622, 4317, 261, 35678, 139]],\n", " [[20351, 2383, 42775, 2001, 33293]],\n", " [[14585, 2550, 1829, 7065, 3427, 7222, 4677, 1794, 853, 281]],\n", " [[13800, 41269, 31221]],\n", " [[5429, 5981, 1977, 330, 21932, 6472, 102]],\n", " [[15338, 412, 83, 4, 597, 4, 347, 4]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[2893, 13345, 263, 6304, 415, 281, 109, 37313, 3314, 139]],\n", " [[5429, 37960, 163, 7110]],\n", " [[12723, 12130, 1178]],\n", " [[2910, 632, 1037, 165]],\n", " [[1775, 438, 10810, 4936, 15247, 274, 4, 347, 4]],\n", " [[2201, 6130, 12, 534, 8362, 1851, 274, 4, 347, 4]],\n", " [[1287, 1422, 12190]],\n", " [[2201, 6130, 12, 534, 8362, 1851, 274, 1140, 4691, 833]],\n", " [[14993, 9504, 366, 274, 4, 347, 4]],\n", " [[11211, 413, 274, 4, 347, 4]],\n", " [[16512, 3110, 412]],\n", " [[2361, 315, 274, 4, 347, 4]],\n", " [[2499, 18946]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[274, 4, 347, 4, 2848, 139]],\n", " [[2910, 632, 1037, 165]],\n", " [[18490, 632, 5259, 1037, 165]],\n", " [[1568, 1211, 7144]],\n", " [[2822, 3622, 12612]],\n", " [[25297, 5512, 8441]],\n", " [[15607, 412, 274, 4, 347, 4]],\n", " [[1429, 632, 1037, 165]],\n", " [[29018, 10221, 2684, 3622]],\n", " [[14993, 5150, 263, 23294, 4061]],\n", " [[384, 4, 597, 4, 530, 4, 1456, 2154, 7822]],\n", " [[7320, 632, 1037, 165]],\n", " [[7320, 632, 1037, 165]],\n", " [[221, 4438, 274, 4, 347, 4]],\n", " [[7224, 597, 19643, 1688, 3999, 1243]],\n", " [[34138, 30422, 330, 274, 1242, 3512]],\n", " [[40836, 118, 24800, 263, 4436, 20287, 337]],\n", " [[2711, 23070, 9089, 14035]],\n", " [[13943, 1001, 2848, 242, 14182]],\n", " [[274, 1176, 6782, 1653, 808, 7367, 29]],\n", " [[15809, 1942, 315, 274, 4, 347, 4]],\n", " [[3303, 12179, 967, 366, 40431, 281, 274, 4, 347, 4]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[27268, 9228, 274, 4, 347, 4]],\n", " [[22753, 21386, 3624, 163, 5593, 225]],\n", " [[5429, 4612]],\n", " [[5429, 4168, 3314, 11489, 2586]],\n", " [[33445, 14511, 3109]],\n", " [[10600, 412, 274, 4, 347, 4]],\n", " [[6171, 390, 18, 632, 5259, 1037, 165]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[2711, 344, 20031, 12, 846, 40837]],\n", " [[13943, 415, 1210, 405, 2383, 771, 16966, 1698, 28544]],\n", " [[11998, 28659, 163, 530]],\n", " [[26455, 330, 23759, 9051, 625, 4104, 37151, 11104]],\n", " [[4556, 26488, 8647, 293, 5429]],\n", " [[12932, 534, 43130, 22590, 225, 10436]],\n", " [[3870, 7338]],\n", " [[2921, 18290]],\n", " [[4537, 415, 31126, 857, 208, 4, 530, 4]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[2711, 43657]],\n", " [[2711, 43657]],\n", " [[10585, 73, 9873, 35733, 5429]],\n", " [[10157, 3830, 271, 5429, 305, 12, 17608]],\n", " [[2822, 6525, 354, 4317, 7474, 118, 1140]],\n", " [[663, 41375, 2857]],\n", " [[4436, 26827, 906, 289, 3632]],\n", " [[20351, 2383, 42775, 2001, 33293]],\n", " [[5524, 15933]],\n", " [[344, 5874, 428, 11313, 28579, 2186]],\n", " [[2361, 412, 274, 4, 347, 4]],\n", " [[7943, 17280, 13039]],\n", " [[4868, 846, 381, 2028, 5410, 2987]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[188, 1156, 4314]],\n", " [[16518, 12470, 274, 4, 347, 4]],\n", " [[6508, 632, 5259, 1037, 165]],\n", " [[41135, 329, 859, 2379, 208, 4, 530, 4]],\n", " [[163, 1543, 219, 281, 4998]],\n", " [[2822, 3622, 12612]],\n", " [[274, 4, 347, 4, 22843]],\n", " [[2361, 315, 274, 4, 347, 4]],\n", " [[29018, 10221, 2684, 3622]],\n", " [[7320, 632, 1037, 165]],\n", " [[8683, 632, 5259, 1037, 165]],\n", " [[4236, 7487, 46770, 5597, 5235, 677, 5235, 14897, 853, 5429]],\n", " [[5429, 4612]],\n", " [[315, 532, 604, 18, 632, 4191, 165]],\n", " [[2822, 3622, 12612]],\n", " [[208, 35423, 27, 428, 3760, 274, 530]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[7137, 12242, 15363, 274, 4, 347, 4]],\n", " [[289, 24812, 523, 7007, 163, 4, 347, 4]],\n", " [[22753, 21386, 3624, 163, 5593, 225]],\n", " [[7570, 20302, 7748, 274, 4, 347, 4]],\n", " [[9692, 274, 4, 347, 4]],\n", " [[7320, 632, 1037, 165]],\n", " [[4152, 274, 4, 347, 4]],\n", " [[6748, 2723, 9697, 263, 1587, 2812, 257, 14379]],\n", " [[2278, 8734]],\n", " [[36858, 25278, 22753]],\n", " [[7320, 632, 1037, 165]],\n", " [[26455, 330, 23759, 9051, 625, 4104, 37151, 11104]],\n", " [[2893, 13345, 29018, 10221, 2684, 12765, 139, 4214, 2955, 6251, 763]],\n", " [[256, 1526, 462, 6080, 12612]],\n", " [[7570, 20302, 7748, 274, 4, 347, 4]],\n", " [[19365, 1140, 102, 2383, 104, 7042, 636]],\n", " [[764, 4578, 7963]],\n", " [[2201, 6130, 12, 534, 8362, 1851, 274, 4, 347, 4]],\n", " [[188, 469, 11836]],\n", " [[4514, 9529]],\n", " [[274, 4, 347, 4, 22843]],\n", " [[91, 1610, 118, 274, 4, 347, 4]],\n", " [[2009, 29018, 10221, 2684, 1995, 19201]],\n", " [[2361, 412, 274, 4, 347, 4]],\n", " [[5429, 10402, 10489]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[2009, 29018, 10221, 2684, 4119, 6303, 271, 1168]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[18490, 632, 5259, 1037, 165]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[226, 15089, 2383, 104, 6998, 337]],\n", " [[9601, 163, 8371, 14393]],\n", " [[6015, 6130, 12, 23791, 90, 21302]],\n", " [[10060, 632, 5259, 1037, 165]],\n", " [[14993, 5150, 263, 23294, 4061]],\n", " [[4537, 415, 31126, 857, 208, 4, 530, 4]],\n", " [[3317, 315, 5429]],\n", " [[15338, 412, 83, 4, 597, 4, 347, 4]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[14781, 632, 1037, 165]],\n", " [[4152, 274, 4, 347, 4]],\n", " [[5429, 4168, 3314, 11489, 2586]],\n", " [[4537, 415, 31126, 857, 208, 4, 530, 4]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[13733, 632, 1037, 165]],\n", " [[5438, 763, 2860, 4365, 274, 4, 347, 4]],\n", " [[40313, 625, 3851, 33846]],\n", " [[580, 14312, 11645, 19032, 274, 4, 347, 4]],\n", " [[7556, 632, 5259, 1037, 165]],\n", " [[10994, 11536, 632, 1037, 165]],\n", " [[2910, 632, 1037, 165]],\n", " [[83, 4, 104, 4, 12218]],\n", " [[5429, 9176]],\n", " [[5429, 10402, 10489]],\n", " [[9601, 24857]],\n", " [[188, 3324, 632, 8808, 2918, 165]],\n", " [[315, 532, 390, 18, 632, 4191, 165]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[12919, 274, 4, 347, 4]],\n", " [[7137, 2848, 274, 4, 347, 4]],\n", " [[15206, 4699, 5429]],\n", " [[96, 242, 366, 13519, 625, 4733]],\n", " [[13733, 632, 1037, 165]],\n", " [[6171, 632, 5259, 1037, 165]],\n", " [[1405, 12037, 163, 3632]],\n", " [[2361, 412, 305, 4, 597, 4, 347, 4]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[9688, 104, 6579, 18995]],\n", " [[163, 1543, 219, 281, 4998]],\n", " [[112, 4, 274, 5268, 14184]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[580, 3600, 315, 274, 4, 347, 4]],\n", " [[5429, 229, 8428]],\n", " [[305, 5416, 926, 7210, 102, 4998]],\n", " [[13733, 632, 1037, 165]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[230, 4063, 118, 5874, 1916, 7065, 3427, 242, 2893, 13345]],\n", " [[7224, 597, 19643, 1688, 3999, 1243]],\n", " [[580, 3600, 315, 274, 4, 347, 4]],\n", " [[10157, 3830, 271, 5429]],\n", " [[2769, 632, 5259, 1037, 165]],\n", " [[7248, 219, 8441]],\n", " [[9170, 2711, 8313]],\n", " [[28147, 31732, 2711]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[23917, 33965, 2912, 438, 1020]],\n", " [[5429, 4369, 329]],\n", " [[1287, 1422, 22320]],\n", " [[580, 3600, 315, 274, 4, 347, 4]],\n", " [[208, 4, 104, 4, 347, 4, 7645, 6483]],\n", " [[12919, 274, 4, 347, 4]],\n", " [[1209, 31002, 16146, 6331, 366]],\n", " [[2009, 24066, 8843, 263, 9614]],\n", " [[15206, 4699, 5429]],\n", " [[15206, 4699, 5429]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[3317, 10506]],\n", " [[7038, 14559, 3467]],\n", " [[7556, 632, 5259, 1037, 165]],\n", " [[9614, 632, 1037, 165]],\n", " [[11437, 632, 5259, 1037, 165]],\n", " [[6015, 12696, 5429]],\n", " [[96, 242, 366, 13519, 625, 4733]],\n", " [[274, 5777, 28185, 3381, 242, 14795]],\n", " [[229, 597, 5725, 12, 530, 8015, 415, 2552, 26067]],\n", " [[2027, 188, 469, 15626]],\n", " [[7556, 632, 5259, 1037, 165]],\n", " [[4369, 6884, 20726, 1253, 8403]],\n", " [[381, 2544, 338, 11629, 14184]],\n", " [[230, 1073, 3572, 1512, 2912, 438, 1020]],\n", " [[5703, 15908]],\n", " [[221, 3573, 7038, 14559, 3467]],\n", " [[2361, 412, 305, 4, 597, 4, 347, 4]],\n", " [[13633, 83, 4, 597, 4, 347, 4]],\n", " [[7320, 632, 1037, 165]],\n", " [[208, 4214, 15333, 5429]],\n", " [[4307, 12599, 876, 2955, 272, 2583]],\n", " [[13287, 12, 25093, 7829, 40236, 2711]],\n", " [[1221, 1585, 324, 5363, 1745, 968, 165]],\n", " [[21105, 18604, 3910, 2009]],\n", " [[29018, 10221, 2684, 6843]],\n", " [[2910, 632, 1037, 165]],\n", " [[1568, 1211, 7144]],\n", " [[2009, 234, 1043, 6073, 263, 3910]],\n", " [[1625, 632, 1037, 165]],\n", " [[1209, 31002, 16146, 6331, 366]],\n", " [[17100, 1908, 9216, 20233, 16885, 274, 4, 347, 4]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[1456, 5235, 967, 4349, 5235, 344, 4, 530, 4]],\n", " [[382, 1793, 24227, 1253]],\n", " [[6748, 2723, 9697, 25452, 338, 12109]],\n", " [[9614, 632, 1037, 165]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[3426, 274, 4, 347, 4]],\n", " [[14993, 9504, 366, 274, 4, 347, 4]],\n", " [[230, 4, 104, 4, 13142, 23065, 5739]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[14567, 12612]],\n", " [[7320, 632, 1037, 165]],\n", " [[229, 4113, 254, 354, 12150]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[9170, 2711, 8313]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[1209, 31002, 16146, 6331, 366]],\n", " [[10060, 632, 5259, 1037, 165]],\n", " [[5092, 632, 1037, 165]],\n", " [[5429, 4612, 163, 5269, 30919, 594]],\n", " [[6508, 632, 5259, 1037, 165]],\n", " [[14833, 274, 134, 2711]],\n", " [[7943, 17280, 13039]],\n", " [[2986, 9207]],\n", " [[91, 1610, 118, 274, 4, 347, 4]],\n", " [[163, 2462, 4291]],\n", " [[7943, 17280, 13039]],\n", " [[2009, 29018, 10221, 2684, 255, 11186, 1535]],\n", " [[255, 5156, 261, 6130, 12, 347, 4503, 9676, 7406, 3512]],\n", " [[5926, 8393, 18191]],\n", " [[20351, 2383, 42775, 2001, 33293]],\n", " [[381, 2544, 338, 11629, 14184]],\n", " [[83, 4, 104, 4, 12218]],\n", " [[31853, 2678, 2583, 5429]],\n", " [[2393, 873, 329, 1790, 12150]],\n", " [[3417, 36802, 5429]],\n", " [[9170, 2711, 8313]],\n", " [[12132, 632, 1037, 165]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[1456, 5235, 967, 4349, 5235, 344, 4, 530, 4]],\n", " [[5092, 632, 1037, 165]],\n", " [[4290, 5429]],\n", " [[230, 1097, 18604, 34028, 4574, 274, 4, 347, 4]],\n", " [[7960, 607, 274, 4, 347, 4]],\n", " [[230, 3376, 2711]],\n", " [[2009, 6748, 2723, 9697, 24066, 8843, 7641, 1479, 5895, 102]],\n", " [[7224, 597, 19643, 1688, 3999, 1243]],\n", " [[221, 15277, 2912, 438, 1020, 38220]],\n", " [[580, 3600, 315, 274, 4, 347, 4]],\n", " [[3497, 9, 2487, 632, 5259, 1037, 165]],\n", " [[274, 5777, 28185, 3381, 242, 14795]],\n", " [[3098, 274, 4, 347, 4, 2691]],\n", " [[188, 4942, 17168]],\n", " [[272, 4, 104, 4, 38, 9418, 14496, 20, 7485, 30521, 8907]],\n", " [[10585, 73, 9873, 35733, 5429]],\n", " [[4307, 12599, 876, 2955, 272, 2583]],\n", " [[7570, 20302, 7748, 274, 4, 347, 4]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[2910, 632, 1037, 165]],\n", " [[5429, 10402, 10489]],\n", " [[2711, 344, 20031, 12, 846, 40837]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[468, 506, 574, 7602, 16408, 2691]],\n", " [[305, 2957, 260, 274, 4, 347, 4]],\n", " [[4380, 8271, 230, 5268]],\n", " [[2027, 188, 469, 15626]],\n", " [[36265, 22753]],\n", " [[230, 4, 495, 4, 2646, 23073, 1176, 1742]],\n", " [[91, 1610, 118, 274, 4, 347, 4]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[289, 24812, 523, 4936, 15247, 274, 4, 347, 4]],\n", " [[22753, 21386, 3624, 163, 5593, 225]],\n", " [[1156, 632, 5259, 1037, 165]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[14667, 12, 387, 3006, 1180, 632, 1037, 165]],\n", " [[234, 4, 717, 4, 347, 4]],\n", " [[14993, 5150, 263, 23294, 4061]],\n", " [[1625, 632, 1037, 165]],\n", " [[9096, 3497, 632, 4105, 4191, 165]],\n", " [[5429, 30377, 1496, 219, 229, 5079, 282, 2160, 2726, 330]],\n", " [[2822, 3622, 12612]],\n", " [[13287, 12, 25093, 7829, 40236, 2711]],\n", " [[7505, 17458, 632, 1037, 165]],\n", " [[896, 604, 18, 632, 4191, 165]],\n", " [[6508, 632, 5259, 1037, 165]],\n", " [[798, 632, 1037, 165]],\n", " [[9614, 632, 1037, 165]],\n", " [[2822, 3622, 12612]],\n", " [[2009, 16528, 952, 3602, 257]],\n", " [[18490, 632, 5259, 1037, 165]],\n", " [[5429, 10402, 10489, 2691]],\n", " [[2361, 412, 274, 4, 347, 4]],\n", " [[15897, 944, 1899, 281, 2344, 523, 1694, 3006, 19200]],\n", " [[305, 6703, 8899, 274, 4, 347, 4]],\n", " [[2499, 11476]],\n", " [[4020, 412, 8314]],\n", " [[13694, 25280, 7204, 1627]],\n", " [[229, 7025, 30492, 241, 7450, 211, 7389]],\n", " [[2711, 23070, 9089, 14035, 3309, 876]],\n", " [[24799, 632, 1037, 165]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[4622, 139, 3767, 459, 38754]],\n", " [[4516, 673, 6743, 4936, 1073]],\n", " [[274, 530, 6015, 255, 2558, 4955, 17010]],\n", " [[163, 4330, 12, 725, 1253, 15821, 700]],\n", " [[2822, 14585, 2550, 625]],\n", " [[3702, 7776, 281, 12150]],\n", " [[5168, 5325]],\n", " [[381, 4, 347, 4, 24589, 1479, 6374]],\n", " [[7224, 30140, 102, 25204]],\n", " [[2009, 29018, 10221, 2684, 1995, 19201]],\n", " [[14781, 632, 1037, 165]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[8937, 1113, 1209, 11868, 1343, 22398, 2711]],\n", " [[2201, 6130, 12, 534, 8362, 1851, 274, 4, 347, 4]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[2361, 412, 274, 4, 347, 4]],\n", " [[2711, 344, 20031, 12, 846, 40837]],\n", " [[5429, 10402, 10489]],\n", " [[13287, 12, 25093, 7829, 40236, 2711]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[10500, 2383, 17973, 2620]],\n", " [[3317, 10506]],\n", " [[1775, 438, 10810, 4936, 15247, 274, 4, 347, 4]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[11666, 274, 4, 347, 4]],\n", " [[208, 4, 347, 4, 23094, 1043, 6073]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[5092, 632, 1037, 165]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[112, 4, 5429, 234, 5172, 282, 2865]],\n", " [[2910, 632, 1037, 165]],\n", " [[5429, 2049, 16408]],\n", " [[2361, 412, 274, 4, 347, 4]],\n", " [[315, 532, 390, 18, 632, 4191, 165]],\n", " [[7570, 20302, 7748, 274, 4, 347, 4]],\n", " [[4152, 274, 4, 347, 4]],\n", " [[5429, 13985, 405, 6130, 14330]],\n", " [[7960, 607, 274, 4, 347, 4]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[5819, 12770]],\n", " [[5703, 15908]],\n", " [[2910, 632, 1037, 165]],\n", " [[7137, 12242, 15363, 274, 4, 347, 4]],\n", " [[21780, 12527, 493, 234, 293, 255, 329, 26051, 274, 4, 347, 4]],\n", " [[1608, 179, 1561, 267, 18057, 344, 9707, 1115, 1250, 21783, 5410]],\n", " [[14993, 5150, 10888, 19864, 354]],\n", " [[5854, 13170]],\n", " [[9245, 315, 274, 4, 347, 4]],\n", " [[5429, 208, 1499]],\n", " [[5854, 412, 4998]],\n", " [[29018, 10221, 2684, 3622]],\n", " [[391, 1101, 632, 1037, 165]],\n", " [[25103, 710, 6909, 3830, 267, 366, 263, 3060, 1043, 2070, 329]],\n", " [[2009, 1918, 1140, 14962]],\n", " [[7413, 268, 4998, 673]],\n", " [[7556, 632, 5259, 1037, 165]],\n", " [[1568, 1211, 7144]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[17182, 5268, 163, 6457, 705, 468, 28814, 102]],\n", " [[21299, 2186, 274, 4, 347]],\n", " [[9035, 412, 274, 4, 347, 4]],\n", " [[5429, 13985, 405, 6130, 14330]],\n", " [[3417, 36802, 5429]],\n", " [[1625, 632, 1037, 165]],\n", " [[2499, 18946]],\n", " [[5429, 4612]],\n", " [[5729, 412, 5429]],\n", " [[24986, 6847, 20623, 261]],\n", " [[29018, 10221, 2684, 764, 6487, 3407, 14182, 12612]],\n", " [[112, 4, 274, 5268, 14184]],\n", " [[9601, 19119, 32482, 4989]],\n", " [[5244, 632, 1037, 165]],\n", " [[21774, 632, 1037, 165]],\n", " [[2000, 632, 1037, 165]],\n", " [[1534, 1916, 5846, 4998]],\n", " [[1405, 12037, 163, 3632]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[22256, 2565, 632, 1037, 165]],\n", " [[22378, 12, 18551, 139, 390, 18]],\n", " [[1568, 1211, 7144]],\n", " [[83, 4, 104, 4, 12218]],\n", " [[9176, 381, 12, 26902, 5429]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[5420, 15929]],\n", " [[4556, 26488, 8647, 293, 5429]],\n", " [[468, 506, 387, 312, 9259, 22739]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[2910, 632, 1037, 165]],\n", " [[4152, 305, 4, 597, 4, 347, 4]],\n", " [[6171, 632, 5259, 1037, 165]],\n", " [[1625, 632, 1037, 165]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[9170, 2711, 8313]],\n", " [[5429, 24542, 298, 45739, 1879]],\n", " [[14993, 5150, 263, 23294, 4061]],\n", " [[391, 1101, 632, 1037, 165]],\n", " [[221, 5268, 7038, 14559, 3467]],\n", " [[7320, 632, 1037, 165]],\n", " [[1429, 632, 1037, 165]],\n", " [[2000, 632, 1037, 165]],\n", " [[17535, 5382, 975, 844, 181, 73, 428, 17411, 12, 17906]],\n", " [[2361, 412, 274, 4, 347, 4]],\n", " [[14585, 2550, 1829, 7065, 3427, 7222, 4677, 1794, 853, 281]],\n", " [[15837, 5223, 23872, 352, 118, 6579, 625, 6417]],\n", " [[3417, 36802, 5429]],\n", " [[6748, 2723, 9697, 17686, 26802, 274, 4, 347, 4]],\n", " [[4868, 846, 381, 2028, 5410, 2987]],\n", " [[22514, 632, 1037, 165]],\n", " [[468, 506, 387, 312, 9259, 22739, 3082]],\n", " [[8937, 1113, 1209, 11868, 1343, 22398, 2711]],\n", " [[798, 632, 1037, 165]],\n", " [[44602, 154, 179, 344, 9707, 1115, 1250, 1638, 462, 36384]],\n", " [[9543, 11861, 90, 281]],\n", " [[83, 4, 104, 4, 12218]],\n", " [[4514, 9529]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[1600, 390, 18, 632, 1037, 165]],\n", " [[188, 4942, 17168]],\n", " [[21774, 632, 1037, 165]],\n", " [[5716, 4597, 274, 4, 347, 4]],\n", " [[11211, 413, 274, 4, 347, 4]],\n", " [[5092, 632, 1037, 165]],\n", " [[1603, 632, 1037, 165]],\n", " [[3161, 20165]],\n", " [[256, 1526, 462, 6080, 12612]],\n", " [[381, 2544, 338, 11629, 14184]],\n", " [[2000, 632, 1037, 165]],\n", " [[7224, 597, 19643, 1688, 3999, 1243]],\n", " [[8983, 315, 274, 4, 347, 4]],\n", " [[22839, 2727, 6748, 2723, 7222, 2588, 4677, 13738]],\n", " [[6037, 632, 1037, 165]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[2361, 412, 274, 4, 347, 4]],\n", " [[229, 4113, 254, 354, 12150]],\n", " [[1429, 632, 1037, 165]],\n", " [[1505, 1704, 3497, 632, 1037, 165]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[35906, 384, 10839, 642, 12733, 226, 267, 1792, 462, 267, 1113]],\n", " [[5092, 632, 1037, 165]],\n", " [[1625, 632, 1037, 165]],\n", " [[2588, 2461, 83, 4643]],\n", " [[18749, 412, 274, 4, 347, 4]],\n", " [[2005, 3590, 274, 4467, 18217, 2893, 13345]],\n", " [[13943, 415, 1210, 405, 2383, 771, 16966, 1698, 28544]],\n", " [[3426, 274, 4, 347, 4]],\n", " [[5480, 717, 27093, 918]],\n", " [[384, 13967, 274, 4467, 18217, 2893, 13345]],\n", " [[315, 532, 604, 18, 632, 4191, 165]],\n", " [[4152, 274, 4, 347, 4]],\n", " [[8683, 632, 5259, 1037, 165]],\n", " [[5429, 13073, 1075, 1242, 1879, 3467]],\n", " [[15376, 493, 21115]],\n", " [[2910, 632, 1037, 165]],\n", " [[369, 21894, 632, 1037, 165]],\n", " [[525, 700, 20852, 12221, 274, 4, 347, 4]],\n", " [[4317, 10031, 7339, 21098, 12150]],\n", " [[7765, 6412, 4998]],\n", " [[5498, 632, 1037, 165]],\n", " [[3773, 12724, 271, 4231, 196, 4911, 293, 12150]],\n", " [[4152, 274, 4, 347, 4]],\n", " [[5429, 11996, 1168, 22487, 14722]],\n", " [[6171, 632, 5259, 1037, 165]],\n", " [[44602, 154, 179, 344, 9707, 1115, 1250, 1638, 462, 36384]],\n", " [[4290, 5429]],\n", " [[5639, 632, 1037, 165]],\n", " [[14993, 9504, 366, 274, 4, 347, 4]],\n", " [[3098, 274, 4, 347, 4, 2691]],\n", " [[208, 4, 104, 4, 347, 4, 7645, 6483]],\n", " [[726, 12, 597, 5655, 7776, 5429]],\n", " [[3590, 4947, 922]],\n", " [[5429, 13073, 1075, 1242, 1879, 3467]],\n", " [[4152, 305, 4, 597, 4, 347, 4]],\n", " [[1603, 632, 1037, 165]],\n", " [[5854, 13170]],\n", " [[15091]],\n", " [[10060, 632, 5259, 1037, 165]],\n", " [[29018, 10221, 2684, 6843]],\n", " [[1156, 632, 5259, 1037, 165]],\n", " [[391, 1101, 632, 1037, 165]],\n", " [[4998, 953, 7104]],\n", " [[163, 7110, 27547, 16784, 7406, 3512]],\n", " [[5680, 176, 500, 7801, 1001, 105, 282, 2711]],\n", " [[5092, 632, 1037, 165]],\n", " [[3098, 274, 4, 347, 4, 2691]],\n", " [[3160, 17492]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[315, 13716, 6350]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[4341, 3671, 642, 1033, 5429]],\n", " [[2000, 632, 1037, 165]],\n", " [[3426, 274, 4, 347, 4]],\n", " [[2711, 23070, 9089, 14035, 3309, 876]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[208, 4214, 1560, 1140, 8, 2869, 17010, 2520, 2379, 632, 1037, 165]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[1221, 632, 5259, 1037, 165]],\n", " [[2848, 26298, 9401, 208, 4, 347, 4]],\n", " [[10060, 632, 5259, 1037, 165]],\n", " [[7320, 632, 1037, 165]],\n", " [[289, 24812, 523, 1456, 108, 254, 264, 3952, 274, 4, 347, 4]],\n", " [[1429, 390, 18, 632, 1037, 165]],\n", " [[896, 390, 18, 632, 4191, 165]],\n", " [[19763, 16872]],\n", " [[10060, 632, 5259, 1037, 165]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[2910, 632, 1037, 165]],\n", " [[4436, 26827, 906, 289, 1140, 763, 6070, 5413, 2009]],\n", " [[29018, 10221, 2684, 3622]],\n", " [[8683, 632, 5259, 1037, 165]],\n", " [[11141, 281, 3060, 4488, 274, 4, 347, 4]],\n", " [[5429, 17326, 19654, 29712]],\n", " [[11666, 274, 4, 347, 4]],\n", " [[14993, 5150, 10888, 19864, 354]],\n", " [[5429, 1587, 687, 8799, 12, 19451]],\n", " [[2009, 3574, 1423, 6748, 2723, 9697, 22378, 22378]],\n", " [[944, 2253, 757, 3983, 1890, 6005]],\n", " [[22839, 2727, 3771, 20375, 4242]],\n", " [[660, 22494, 13310, 18440, 1073, 4193, 102, 5429]],\n", " [[229, 4, 597, 4, 347, 4, 384, 13991, 15892, 225, 384, 13991, 605, 18474]],\n", " [[726, 85, 90, 19284, 5429]],\n", " [[25305, 8, 26288, 3733, 1417, 1243, 632, 1037, 165]],\n", " [[3417, 13486]],\n", " [[230, 1073, 3572, 1512, 2912, 438, 1020]],\n", " [[5429, 221, 4438, 412]],\n", " [[22705, 274, 4, 347, 4]],\n", " [[1221, 632, 5259, 1037, 165]],\n", " [[13733, 632, 1037, 165]],\n", " [[13733, 632, 1037, 165]],\n", " [[2499, 18946]],\n", " [[5429, 4612]],\n", " [[764, 5465, 17010, 263, 33759, 783, 7499]],\n", " [[18490, 632, 5259, 1037, 165]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[5429, 7916, 354, 271]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[369, 17577, 315, 5429]],\n", " [[9601, 24857, 468, 8508, 11760]],\n", " [[112, 4, 5429, 1332, 5459]],\n", " [[7320, 632, 1037, 165]],\n", " [[15607, 412, 274, 4, 347, 4]],\n", " [[5429, 9922, 8530]],\n", " [[12587, 632, 1037, 165]],\n", " [[14781, 632, 1037, 165]],\n", " [[2742, 21402, 530, 4424, 22015, 2265, 415, 13714, 8604]],\n", " [[38499, 163, 20997]],\n", " [[21774, 632, 1037, 165]],\n", " [[3274, 331, 4223]],\n", " [[726, 2379, 28366, 2383, 597, 225, 3181]],\n", " [[4994, 1090, 163, 4970, 2580]],\n", " [[15959, 1054, 8899, 274, 4, 347, 4]],\n", " [[6508, 632, 5259, 1037, 165]],\n", " [[2910, 632, 1037, 165]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[14993, 5150, 10888, 19864, 354]],\n", " [[726, 344, 1222, 3578, 2009]],\n", " [[10060, 632, 5259, 1037, 165]],\n", " [[16518, 12470, 274, 4, 347, 4]],\n", " [[1625, 632, 1037, 165]],\n", " [[12940, 632, 5259, 1037, 165]],\n", " [[1221, 390, 18, 632, 4191, 165]],\n", " [[2009, 344, 1417, 1342, 1182, 5654, 337, 4488]],\n", " [[17112, 3061, 12, 487, 5600, 139]],\n", " [[5429, 11996, 1168, 22487, 14722]],\n", " [[274, 4, 347, 4, 2848, 139]],\n", " [[3378, 1332]],\n", " [[312, 1829, 248, 18974, 354, 274, 4, 347, 4]],\n", " [[28147, 31732, 2711]],\n", " [[274, 530, 468, 1120, 271]],\n", " [[5926, 34303, 132]],\n", " [[188, 1156, 13340]],\n", " [[33846, 22153, 2001, 3917, 2253, 9401]],\n", " [[6331,\n", " 1975,\n", " 493,\n", " 3381,\n", " 4214,\n", " 6838,\n", " 1001,\n", " 6873,\n", " 1526,\n", " 6374,\n", " 263,\n", " 7065,\n", " 3427,\n", " 293]],\n", " [[211, 4, 347, 4, 315]],\n", " [[5429, 208, 1499]],\n", " [[2910, 632, 1037, 165]],\n", " [[5429, 15757, 12705, 3467]],\n", " [[22336, 17177, 248, 1657, 21251]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[17609, 632, 1037, 165]],\n", " [[9793, 5928, 274, 4, 347, 4]],\n", " [[15607, 412, 274, 4, 347, 4]],\n", " [[11437, 632, 5259, 1037, 165]],\n", " [[2361, 315, 274, 4, 347, 4]],\n", " [[4369, 6884, 20726, 1253, 8403]],\n", " [[2009, 1918, 1140, 14962]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[36589, 7876, 4668, 263, 732, 3695, 859, 102, 1792, 1069, 927]],\n", " [[12932, 534, 43130, 22590, 225, 10436]],\n", " [[21774, 632, 1037, 165]],\n", " [[369, 1961, 5429]],\n", " [[798, 632, 1037, 165]],\n", " [[2822, 3622, 12612]],\n", " [[33445, 14511, 3109]],\n", " [[83, 4, 717, 4, 530, 4, 11198, 274, 4, 347, 4]],\n", " [[1604, 2374, 11761, 9466]],\n", " [[2009, 255, 25491]],\n", " [[5837, 15945, 5429]],\n", " [[17983, 632, 1037, 165]],\n", " [[5429, 30610, 1417]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[391, 1101, 632, 1037, 165]],\n", " [[2769, 632, 5259, 1037, 165]],\n", " [[221, 5268, 7038, 14559, 3467]],\n", " [[7296, 271, 8726, 12612]],\n", " [[5429, 660, 329, 3592, 256, 7352, 1488, 330, 2331]],\n", " [[2822, 3622, 6719, 4699]],\n", " [[391, 1101, 632, 1037, 165]],\n", " [[12612, 221, 1488, 26802]],\n", " [[30492, 241, 7450, 14795]],\n", " [[6037, 632, 1037, 165]],\n", " [[5429, 13073, 1075, 1242, 1879, 3467]],\n", " [[3497, 9, 2487, 632, 5259, 1037, 165]],\n", " [[13708, 26450, 2912, 438, 1020]],\n", " [[274, 530, 11504, 257, 4807, 282, 2603, 21752, 26084, 2426]],\n", " [[221, 2001, 366, 5429]],\n", " [[315, 532, 390, 18, 632, 4191, 165]],\n", " [[14605, 632, 5259, 1037, 165]],\n", " [[8683, 632, 5259, 1037, 165]],\n", " [[12612, 4436, 20287, 337]],\n", " [[13633, 83, 4, 597, 4, 347, 4]],\n", " [[188, 3324, 632, 1037, 165]],\n", " [[22753, 21386, 3624, 163, 5593, 225]],\n", " [[14993, 5150, 10888, 19864, 354, 274, 1140, 4691, 179]],\n", " [[121, 9056, 102, 1211, 7128, 29]],\n", " [[83, 4, 347, 4, 7338]],\n", " [[4622, 139, 3767, 459, 38754]],\n", " [[3430, 632, 1037, 165]],\n", " [[2893, 13345, 29018, 10221, 2684, 12765, 139, 4214, 2955, 6251, 763]],\n", " [[3274, 331, 4223]],\n", " [[226, 18307, 234, 324, 438, 324, 438, 2478]],\n", " [[15081]],\n", " [[5429, 4612, 274, 15035, 1977]],\n", " [[14567, 12612]],\n", " [[580, 3600, 315, 274, 4, 347, 4]],\n", " [[2393, 873, 329, 1790, 12150]],\n", " [[112, 4, 5429, 1332, 5459]],\n", " [[2201, 6130, 12, 534, 8362, 1851, 274, 4, 347, 4]],\n", " [[27162, 11626, 3990, 1722, 179, 274, 4, 347, 4]],\n", " [[16193, 632, 1037, 165]],\n", " [[2271, 13310, 36349, 2884, 337, 757, 5107, 5429]],\n", " [[7505, 17458, 632, 1037, 165]],\n", " [[20351, 2383, 42775, 2001, 33293]],\n", " [[7296, 271, 8726, 12612]],\n", " [[663, 11758]],\n", " [[3426, 274, 4, 347, 4]],\n", " [[18490, 632, 5259, 1037, 165]],\n", " [[5429, 6322]],\n", " [[9793, 5928, 274, 4, 347, 4]],\n", " [[229, 5596, 21834]],\n", " [[31280, 282, 5269, 29048, 263, 255, 6166, 11408, 102]],\n", " [[12612, 4436, 20287, 337]],\n", " [[14664, 412, 5429]],\n", " [[21774, 632, 1037, 165]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[2361, 315, 274, 4, 347, 4]],\n", " [[12919, 5429]],\n", " [[726, 12, 3609, 895, 1543, 2636, 1847, 2009]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[2177, 2692, 10929]],\n", " [[10035, 5317, 24058]],\n", " [[11666, 274, 4, 347, 4]],\n", " [[344, 30395, 12108, 368]],\n", " [[468, 506, 387, 312, 9259, 22739]],\n", " [[12940, 632, 5259, 1037, 165]],\n", " [[2381, 102, 3703, 574, 165]],\n", " [[7556, 632, 5259, 1037, 165]],\n", " [[19041, 10968, 6752, 10327]],\n", " [[226, 4061, 384, 3632]],\n", " [[208, 10729, 14777, 225]],\n", " [[6171, 632, 5259, 1037, 165]],\n", " [[14993, 5150, 10888, 19864, 354]],\n", " [[7505, 17458, 632, 1037, 165]],\n", " [[15639, 632, 5259, 1037, 165]],\n", " [[9793, 5928, 274, 4, 347, 4]],\n", " [[14993, 5150, 10888, 19864, 354, 274, 1140, 4691, 179]],\n", " [[18749, 412, 274, 4, 347, 4]],\n", " [[9170, 2711, 8313]],\n", " [[188, 469, 1211, 9926]],\n", " [[21774, 632, 1037, 165]],\n", " [[83, 4, 104, 4, 12218]],\n", " [[274, 530, 840, 330, 105, 1187, 12733]],\n", " [[7296, 271, 8726, 12612]],\n", " [[5429, 10402, 10489, 2691]],\n", " [[4152, 274, 4, 347, 4]],\n", " [[208, 4214, 15333, 5429]],\n", " [[17468, 448, 13023, 5641, 163, 20997]],\n", " [[274, 5777, 28185, 3381, 242, 14795]],\n", " [[2769, 632, 5259, 1037, 165]],\n", " [[2910, 632, 1037, 165]],\n", " [[2769, 632, 5259, 1037, 165]],\n", " [[2711, 23070, 9089, 14035, 3309, 876]],\n", " [[226, 4061, 384, 3632]],\n", " [[3160, 17492]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[8683, 390, 18, 632, 865, 3512, 165]],\n", " [[25011, 12, 2022, 468, 11485, 102]],\n", " [[2361, 412, 274, 4, 347, 4]],\n", " [[3497, 9, 2487, 632, 5259, 1037, 165]],\n", " [[3378, 5553, 268]],\n", " [[3497, 9, 2487, 632, 5259, 1037, 165]],\n", " [[1918, 1140, 14962, 274, 4467, 18217, 2893, 13345, 36, 21963, 43]],\n", " [[312, 4, 3217, 6293]],\n", " [[4766, 14572]],\n", " [[798, 632, 1037, 165]],\n", " [[3378, 5553, 268]],\n", " [[8873, 9399, 1906, 263, 2588, 221, 2550, 5079]],\n", " [[5854, 13170]],\n", " [[5429, 15757, 12705, 3467]],\n", " [[4380, 8271, 230, 5268]],\n", " [[5429, 7093, 523]],\n", " [[4436, 29, 385, 108, 11094, 4947, 11249, 3663, 13324]],\n", " [[1775, 438, 10810, 4936, 15247, 274, 4, 347, 4]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[660, 22494, 13310, 18440, 1073, 4193, 102, 5429]],\n", " [[20351, 2383, 42775, 2001, 33293]],\n", " [[22839, 2727, 6748, 2723, 7222, 726, 2089, 5272]],\n", " [[3332, 2646, 26681, 274, 4, 347, 4]],\n", " [[3378, 5553, 268]],\n", " [[15376, 493, 21115]],\n", " [[166, 5618, 4670, 274, 4, 347, 4]],\n", " [[369, 17577, 315, 5429]],\n", " [[221, 2336, 272, 30265, 1243, 274, 4, 347, 4]],\n", " [[188, 3324, 632, 1037, 165]],\n", " [[208, 4, 347, 4, 2265, 6080]],\n", " [[6171, 632, 5259, 1037, 165]],\n", " [[952, 10172, 5521, 718, 281, 12612]],\n", " [[29018, 10221, 2684, 3622]],\n", " [[229,\n", " 4,\n", " 104,\n", " 4,\n", " 347,\n", " 4,\n", " 226,\n", " 5361,\n", " 2558,\n", " 384,\n", " 2603,\n", " 12,\n", " 846,\n", " 2560,\n", " 463,\n", " 8663]],\n", " [[16588, 366, 12612]],\n", " [[315, 532, 604, 18, 632, 4191, 165]],\n", " [[3430, 632, 1037, 165]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[2009, 29018, 10221, 2684, 3182, 2727]],\n", " [[24195, 632, 1037, 165]],\n", " [[20421, 428, 10344, 274, 4, 347, 4]],\n", " [[14993, 5150, 263, 23294, 4061]],\n", " [[1775, 438, 10810, 5008, 12837, 274, 4, 347, 4]],\n", " [[208, 4, 104, 4, 347, 4, 7645, 6483]],\n", " [[208, 4, 574, 4, 1664, 506, 2426]],\n", " [[9341, 261, 632, 1037, 165]],\n", " [[274, 530, 229, 7381, 139, 2742, 10809, 31316, 36533]],\n", " [[312, 1829, 248, 18974, 354, 274, 4, 347, 4]],\n", " [[312, 1829, 248, 18974, 354, 274, 4, 347, 4]],\n", " [[2009, 44285, 1851]],\n", " [[391, 1101, 632, 1037, 165]],\n", " [[36858, 25278, 22753]],\n", " [[2646, 1210, 24181, 274, 4, 347, 4]],\n", " [[5429, 4424, 22015, 11135, 2816, 438]],\n", " [[12132, 632, 1037, 165]],\n", " [[4174, 632, 5259, 1037, 165]],\n", " [[5244, 632, 1037, 165]],\n", " [[274, 3573, 4448, 6276]],\n", " [[1775, 438, 10810, 4936, 15247, 274, 4, 347, 4]],\n", " [[726, 12, 597, 5655, 7776, 4998]],\n", " [[5429, 1586, 15021, 854, 2816, 9965]],\n", " [[1287, 1422, 6772]],\n", " [[11193, 1908, 274, 4, 347, 4]],\n", " [[17112, 3061, 12, 487, 5600, 139]],\n", " [[5429, 24542, 298, 45739, 1879]],\n", " [[2027, 188, 469, 15626]],\n", " [[13800, 41269, 31221]],\n", " [[660, 8722, 281, 12150]],\n", " [[7320, 632, 1037, 165]],\n", " [[12723, 12130, 1178]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[2711, 43657]],\n", " [[5429, 2049, 16408]],\n", " [[2893, 13345, 263, 6304, 415, 281, 109, 37313, 3314, 139]],\n", " [[3864, 102, 35020, 354, 18440, 1073, 4193, 102, 5429]],\n", " [[44558, 991, 853, 4077, 873, 2768, 2258, 12150]],\n", " [[1470, 390, 18, 632, 865, 3512, 165]],\n", " [[9170, 2711, 8313]],\n", " [[580, 3600, 315, 274, 4, 347, 4]],\n", " [[312, 1829, 248, 18974, 354, 274, 4, 347, 4]],\n", " [[3426, 274, 4, 347, 4]],\n", " [[21774, 632, 1037, 165]],\n", " [[896, 604, 18, 632, 4191, 165]],\n", " [[4436, 26827, 906, 289, 1140, 763, 6070, 5413, 2009]],\n", " [[5429, 221, 4438, 412]],\n", " [[1211, 2141, 274, 4, 347, 4]],\n", " [[726, 12, 534, 4759, 15997, 1847, 2009]],\n", " [[4998, 953, 7104]],\n", " [[315, 532, 604, 18, 632, 4191, 165]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[21774, 632, 1037, 165]],\n", " [[1221, 632, 5259, 1037, 165]],\n", " [[5429, 468, 1459, 4311, 330]],\n", " [[1287, 1422, 12190]],\n", " [[20351, 2383, 42775, 2001, 33293]],\n", " [[4152, 274, 4, 347, 4]],\n", " [[3417, 36802, 5429]],\n", " [[2000, 632, 1037, 165]],\n", " [[20351, 2383, 42775, 2001, 33293]],\n", " [[25305, 8, 26288, 3733, 1417, 1243, 632, 1037, 165]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[11666, 274, 4, 347, 4]],\n", " [[6748, 2723, 9697, 25452, 338, 12109]],\n", " [[6371, 102, 1209, 1075, 274, 4, 347, 4]],\n", " [[2009, 29018, 10221, 2684, 4838, 281, 4989]],\n", " [[4152, 274, 4, 347, 4]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[3426, 274, 4, 347, 4]],\n", " [[5429, 229, 5079, 282, 1630, 271]],\n", " [[2009, 29018, 10221, 2684, 23654, 9401]],\n", " [[8983, 315, 274, 4, 347, 4]],\n", " [[4273, 853, 424, 315, 274, 4, 347, 4]],\n", " [[7296, 271, 8726, 12612]],\n", " [[2822, 6525, 354, 4317, 7474, 118, 1140]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[2529, 119, 3671, 35960]],\n", " [[25305, 8, 26288, 3733, 1417, 1243, 632, 1037, 165]],\n", " [[4619, 26769, 4843, 242, 2005, 6945]],\n", " [[580, 14312, 11645, 19032, 274, 4, 347, 4]],\n", " [[14056, 369, 4680, 274, 4, 347, 4]],\n", " [[1156, 632, 5259, 1037, 165]],\n", " [[5092, 632, 1037, 165]],\n", " [[5429, 13985, 405, 6130, 14330]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[2910, 632, 1037, 165]],\n", " [[96, 242, 366, 13519, 625, 4733]],\n", " [[14993, 5150, 10888, 19864, 354, 274, 1140, 4691, 179]],\n", " [[274, 530, 6015, 255, 2558, 4955, 17010]],\n", " [[255, 14744, 632, 1037, 165]],\n", " [[726, 12, 725, 718, 337, 208, 5268]],\n", " [[826, 2583, 12, 24667, 863]],\n", " [[208, 1741, 19209, 19380, 12, 565, 677, 47497]],\n", " [[4677, 254, 4992, 5429]],\n", " [[9096, 3497, 632, 5259, 1037, 165]],\n", " [[315, 532, 604, 18, 632, 4191, 165]],\n", " [[7270, 10493]],\n", " [[12919, 274, 4, 347, 4]],\n", " [[391, 1101, 632, 1037, 165]],\n", " [[15607, 412, 274, 4, 347, 4]],\n", " ...],\n", " 'relation': ['P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " ...],\n", " 'num_answers': [1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " ...]},\n", " '2019-Q3': {'text': [['Alex Morgan plays for .'],\n", " ['Lionel Messi plays for .'],\n", " ['Cristiano Ronaldo plays for .'],\n", " ['LeBron James plays for .'],\n", " ['Puck Moonen plays for .'],\n", " ['Zlatan Ibrahimović plays for .'],\n", " ['Neymar plays for .'],\n", " ['Ronaldinho plays for .'],\n", " [\"Samuel Eto'o plays for .\"],\n", " ['Megan Rapinoe plays for .'],\n", " ['Alisha Lehmann plays for .'],\n", " ['Robert Lewandowski plays for .'],\n", " ['Andrea Pirlo plays for .'],\n", " ['Kevin Durant plays for .'],\n", " ['Lukas Podolski plays for .'],\n", " ['Iker Casillas plays for .'],\n", " ['Lewis Hamilton plays for .'],\n", " ['Formiga plays for .'],\n", " ['Naomi Osaka plays for .'],\n", " ['José Mourinho plays for .'],\n", " ['Luis Suárez plays for .'],\n", " ['Franck Ribéry plays for .'],\n", " ['Tim Cahill plays for .'],\n", " ['Chris Froome plays for .'],\n", " ['Lieke Martens plays for .'],\n", " ['Manuel Neuer plays for .'],\n", " ['Lindsey Horan plays for .'],\n", " ['Javier Mascherano plays for .'],\n", " ['Mark Cavendish plays for .'],\n", " ['James Rodríguez plays for .'],\n", " ['Hope Solo plays for .'],\n", " ['Diego Forlán plays for .'],\n", " ['Sebastián Abreu plays for .'],\n", " ['Carli Lloyd plays for .'],\n", " ['Marta plays for .'],\n", " ['Javier Hernández plays for .'],\n", " ['Yuzvendra Chahal plays for .'],\n", " ['Thiago Silva plays for .'],\n", " ['Andrés Iniesta plays for .'],\n", " ['Wayne Rooney plays for .'],\n", " ['Fernando Torres plays for .'],\n", " ['Sergio Agüero plays for .'],\n", " ['Marianne Vos plays for .'],\n", " ['Sergio Ramos plays for .'],\n", " ['Mario Gómez plays for .'],\n", " ['Dani Alves plays for .'],\n", " ['Carlos Tevez plays for .'],\n", " ['Pepe Reina plays for .'],\n", " ['Giovani dos Santos plays for .'],\n", " ['David Villa plays for .'],\n", " ['Ricardo Quaresma plays for .'],\n", " ['Mesut Özil plays for .'],\n", " ['Freddy Adu plays for .'],\n", " ['Cristiane Rozeira plays for .'],\n", " ['Maya Moore plays for .'],\n", " ['Giorgio Chiellini plays for .'],\n", " ['Wesley Sneijder plays for .'],\n", " ['Robinho plays for .'],\n", " ['Bastian Schweinsteiger plays for .'],\n", " ['Luis Scola plays for .'],\n", " ['Jérôme Boateng plays for .'],\n", " ['Kevin-Prince Boateng plays for .'],\n", " ['Vincenzo Nibali plays for .'],\n", " ['Egidio Arévalo Rios plays for .'],\n", " ['Dwyane Wade plays for .'],\n", " ['Arjen Robben plays for .'],\n", " ['Dwight Howard plays for .'],\n", " ['Cesc Fàbregas plays for .'],\n", " ['Nigel de Jong plays for .'],\n", " ['Colin Kazim-Richards plays for .'],\n", " ['Pierre-Emerick Aubameyang plays for .'],\n", " ['David Alaba plays for .'],\n", " ['Xherdan Shaqiri plays for .'],\n", " ['Marc Gasol plays for .'],\n", " ['Laura Kenny plays for .'],\n", " ['Aristide Bancé plays for .'],\n", " ['Philippe Gilbert plays for .'],\n", " ['Edinson Cavani plays for .'],\n", " ['Breanna Stewart plays for .'],\n", " ['Luis Enrique plays for .'],\n", " ['Bruno Alves plays for .'],\n", " ['Ali Krieger plays for .'],\n", " ['Antoine Griezmann plays for .'],\n", " ['Mohamed Salah plays for .'],\n", " ['Beto plays for .'],\n", " ['Memphis Depay plays for .'],\n", " ['Pablo Zabaleta plays for .'],\n", " ['Jozy Altidore plays for .'],\n", " ['Steve Nash plays for .'],\n", " ['Shinji Okazaki plays for .'],\n", " ['Maya Yoshida plays for .'],\n", " ['Gary Cahill plays for .'],\n", " ['Guillermo Ochoa plays for .'],\n", " ['Serge Gnabry plays for .'],\n", " ['Christine Sinclair plays for .'],\n", " ['Paul Pogba plays for .'],\n", " ['DaMarcus Beasley plays for .'],\n", " ['Alexandre Pato plays for .'],\n", " ['Hugo Almeida plays for .'],\n", " [\"Raïs M'Bolhi plays for .\"],\n", " ['Peter Sagan plays for .'],\n", " ['Joel Campbell plays for .'],\n", " ['Luka Modrić Papá de Lionel Messi plays for .'],\n", " ['Elia Viviani plays for .'],\n", " ['Toni Kroos plays for .'],\n", " ['Giulia Gwinn plays for .'],\n", " ['Ellen van Dijk plays for .'],\n", " ['Lucas Barrios plays for .'],\n", " ['Daniel Fernandes plays for .'],\n", " ['Juan Mata plays for .'],\n", " ['Michael Bradley plays for .'],\n", " ['Gonzalo Higuaín plays for .'],\n", " ['Lúcio plays for .'],\n", " ['Greg Van Avermaet plays for .'],\n", " ['Alexandra Lacrabère plays for .'],\n", " ['David Andersen plays for .'],\n", " ['Javi Martínez plays for .'],\n", " ['Davide Rebellin plays for .'],\n", " ['Kyrie Irving plays for .'],\n", " ['Sebastian Vettel plays for .'],\n", " ['Ingrid Syrstad Engen plays for .'],\n", " ['Adrien Silva plays for .'],\n", " ['Rigoberto Urán plays for .'],\n", " ['John Arne Riise plays for .'],\n", " ['Tobin Heath plays for .'],\n", " ['Hedvig Lindahl plays for .'],\n", " ['Marcelo plays for .'],\n", " ['Jakob Fuglsang plays for .'],\n", " ['Marko Marin plays for .'],\n", " ['Hulk plays for .'],\n", " ['Rudy Fernández plays for .'],\n", " ['Lizzie Deignan plays for .'],\n", " ['Zé Roberto plays for .'],\n", " ['Rohan Dennis plays for .'],\n", " ['Milan Baroš plays for .'],\n", " ['Łukasz Fabiański plays for .'],\n", " ['Mats Hummels plays for .'],\n", " ['Diego Ribas da Cunha plays for .'],\n", " ['Artem Milevskyi plays for .'],\n", " ['Anna van der Breggen plays for .'],\n", " ['Rafinha plays for .'],\n", " ['Vladimir Stojković plays for .'],\n", " ['Ángel Di María plays for .'],\n", " ['Chris Paul plays for .'],\n", " ['Rosana dos Santos Augusto plays for .'],\n", " ['Manuel da Costa plays for .'],\n", " ['Benny Feilhaber plays for .'],\n", " ['Sophie Schmidt plays for .'],\n", " ['Mario Mandžukić plays for .'],\n", " ['Pepe plays for .'],\n", " ['Philippe Coutinho plays for .'],\n", " ['Sadio Mané plays for .'],\n", " ['Christen Press plays for .'],\n", " ['Keylor Navas plays for .'],\n", " ['Valentino Rossi plays for .'],\n", " ['Bojan Krkić plays for .'],\n", " ['Shinji Kagawa plays for .'],\n", " ['Diego Costa plays for .'],\n", " ['Steve Mandanda plays for .'],\n", " ['Miodrag Anđelković plays for .'],\n", " ['Thibaut Courtois plays for .'],\n", " ['Vincent Kompany plays for .'],\n", " ['Eiður Guðjohnsen plays for .'],\n", " ['Jakub Błaszczykowski plays for .'],\n", " ['Henning Berg plays for .'],\n", " ['Hilary Knight plays for .'],\n", " ['Annemiek van Vleuten plays for .'],\n", " ['Álvaro Pereira plays for .'],\n", " ['Carlos Arroyo plays for .'],\n", " ['Florent Sinama Pongolle plays for .'],\n", " ['Miljan Mrdaković plays for .'],\n", " ['Mario Götze plays for .'],\n", " ['Jô plays for .'],\n", " ['Claudio Pizarro plays for .'],\n", " ['Nani plays for .'],\n", " ['Ivan Rakitić plays for .'],\n", " ['Erin McLeod plays for .'],\n", " ['Peter Odemwingie plays for .'],\n", " ['Sofia Jakobsson plays for .'],\n", " ['Jordi Alba plays for .'],\n", " ['Sami Khedira plays for .'],\n", " ['Tony Martin plays for .'],\n", " ['Kirsten Wild plays for .'],\n", " ['Nicklas Bendtner plays for .'],\n", " ['Junichi Inamoto plays for .'],\n", " ['Michael Umaña plays for .'],\n", " ['Niklas Süle plays for .'],\n", " ['Diego Godín plays for .'],\n", " ['José Calderón plays for .'],\n", " ['Yuto Nagatomo plays for .'],\n", " ['Olivier Giroud plays for .'],\n", " ['Tom Dumoulin plays for .'],\n", " ['Nicolas Roche plays for .'],\n", " [\"Kelley O'Hara plays for .\"],\n", " ['Lisa De Vanna plays for .'],\n", " ['Rafael van der Vaart plays for .'],\n", " ['Elena Delle Donne plays for .'],\n", " ['Sakina Karchaoui plays for .'],\n", " ['John Degenkolb plays for .'],\n", " ['Brittney Griner plays for .'],\n", " ['Shunsuke Nakamura plays for .'],\n", " ['David Silva plays for .'],\n", " ['Axel Witsel plays for .'],\n", " ['Andrés Guardado plays for .'],\n", " ['Kylian Mbappé plays for .'],\n", " ['Tom Brady plays for .'],\n", " ['Micah Richards plays for .'],\n", " ['Łukasz Piszczek plays for .'],\n", " ['Celso Borges plays for .'],\n", " ['Royston Drenthe plays for .'],\n", " ['Gareth Bale plays for .'],\n", " ['Sergio Romero plays for .'],\n", " ['Filipe Luís plays for .'],\n", " ['Romelu Lukaku plays for .'],\n", " ['Erling Haaland plays for .'],\n", " ['Arturo Vidal plays for .'],\n", " ['Jermaine Jones plays for .'],\n", " ['Eden Hazard plays for .'],\n", " ['Michael Essien plays for .'],\n", " ['Demba Ba plays for .'],\n", " [\"Amar'e Stoudemire plays for .\"],\n", " ['Nuri Şahin plays for .'],\n", " ['Hugo Lloris plays for .'],\n", " ['Morgan Schneiderlin plays for .'],\n", " ['Thomas Vermaelen plays for .'],\n", " ['Henrikh Mkhitaryan plays for .'],\n", " ['Ryan Babel plays for .'],\n", " ['Aron Baynes plays for .'],\n", " ['Johan Djourou plays for .'],\n", " ['Kevin De Bruyne plays for .'],\n", " ['Shinji Ono plays for .'],\n", " ['Túlio Maravilha plays for .'],\n", " ['Idriss Carlos Kameni plays for .'],\n", " ['Fernando Llorente plays for .'],\n", " ['André Greipel plays for .'],\n", " ['Boris Diaw plays for .'],\n", " ['Anja Mittag plays for .'],\n", " ['Joakim Noah plays for .'],\n", " ['Ricky Rubio plays for .'],\n", " ['Stephan Andersen plays for .'],\n", " ['Ezequiel Lavezzi plays for .'],\n", " [\"Andrés D'Alessandro plays for .\"],\n", " ['Claudio Bravo plays for .'],\n", " ['Rafinha plays for .'],\n", " ['Blaise Matuidi plays for .'],\n", " ['Cristian Rodríguez plays for .'],\n", " ['Marek Hamšík plays for .'],\n", " ['Ciro Immobile plays for .'],\n", " [\"Dame N'Doye plays for .\"],\n", " ['Raphaël Varane plays for .'],\n", " ['Roger Kluge plays for .'],\n", " ['Asmir Begović plays for .'],\n", " ['Christian Eriksen plays for .'],\n", " ['Luiz Gustavo plays for .'],\n", " ['Hamit Altıntop plays for .'],\n", " ['Brad Guzan plays for .'],\n", " ['André Ayew plays for .'],\n", " ['César Azpilicueta plays for .'],\n", " ['Éric Maxim Choupo-Moting plays for .'],\n", " ['Shkodran Mustafi plays for .'],\n", " ['Caroline Seger plays for .'],\n", " ['Fernando Muslera plays for .'],\n", " ['Leonardo Bonucci plays for .'],\n", " ['Nordin Amrabat plays for .'],\n", " ['Richard Kingson plays for .'],\n", " ['Jonny Evans plays for .'],\n", " ['Jonathan de Guzmán plays for .'],\n", " ['Yannick Bolasie plays for .'],\n", " ['Dante Bonfim Costa Santos plays for .'],\n", " ['Daniele De Rossi plays for .'],\n", " ['Park Chu-young plays for .'],\n", " ['Lucas Hernandez plays for .'],\n", " ['Klaas-Jan Huntelaar plays for .'],\n", " ['Sonny Bill Williams plays for .'],\n", " ['Sydney Leroux plays for .'],\n", " ['Victor Moses plays for .'],\n", " ['Elano plays for .'],\n", " ['Asamoah Gyang plays for .'],\n", " ['Grzegorz Krychowiak plays for .'],\n", " ['Vasil Kiryienka plays for .'],\n", " ['Achraf Hakim plays for .'],\n", " ['John Guidetti plays for .'],\n", " ['Salomon Kalou plays for .'],\n", " ['Karen Bardsley plays for .'],\n", " ['Cédric Soares plays for .'],\n", " ['Dietmar Hamann plays for .'],\n", " ['Mark Milligan plays for .'],\n", " ['Yūki Nagasato plays for .'],\n", " ['Pedro plays for .'],\n", " ['Jack Wilshere plays for .'],\n", " ['Albert Riera plays for .'],\n", " ['Florent Malouda plays for .'],\n", " ['Medhi Benatia plays for .'],\n", " ['Eduardo Carvalho plays for .'],\n", " ['Maicon plays for .'],\n", " ['Giuseppe Rossi plays for .'],\n", " ['Andrija Kaluđerović plays for .'],\n", " ['Emre Belözoğlu plays for .'],\n", " ['Sarah Storey plays for .'],\n", " ['Daniel Martin plays for .'],\n", " ['Nairo Quintana plays for .'],\n", " ['Leroy Sané plays for .'],\n", " ['Valon Behrami plays for .'],\n", " ['Eiji Kawashima plays for .'],\n", " ['Ana Dabović plays for .'],\n", " ['Carlos Sánchez plays for .'],\n", " ['Raúl Albiol plays for .'],\n", " ['Bryan Ruiz plays for .'],\n", " ['Steve Cummings plays for .'],\n", " ['Gabriel Torres plays for .'],\n", " ['Éver Banega plays for .'],\n", " ['Simon Kjær plays for .'],\n", " ['Willy Caballero plays for .'],\n", " ['Vince Carter plays for .'],\n", " ['Sergio Rodríguez plays for .'],\n", " ['Luuk de Jong plays for .'],\n", " ['Eduardo Vargas plays for .'],\n", " ['Ivan Perišić plays for .'],\n", " ['Diego Benaglio plays for .'],\n", " ['Michał Kwiatkowski plays for .'],\n", " ['Diego Reyes plays for .'],\n", " ['Lars Hirschfeld plays for .'],\n", " ['Abby Dahlkemper plays for .'],\n", " ['Daley Blind plays for .'],\n", " ['Roko Ukić plays for .'],\n", " ['Gélson Fernandes plays for .'],\n", " ['Pablo Contreras plays for .'],\n", " ['Nando de Colo plays for .'],\n", " ['Steph Houghton plays for .'],\n", " ['Ramires plays for .'],\n", " ['Jermain Defoe plays for .'],\n", " ['Divock Origi plays for .'],\n", " ['el tete plays for .'],\n", " ['Maximiliano Richeze plays for .'],\n", " ['Ashleigh Barty plays for .'],\n", " ['Paulinho plays for .'],\n", " ['Curao Ql plays for .'],\n", " ['Marquinhos plays for .'],\n", " ['Julie Ertz plays for .'],\n", " ['Sebastián Eguren plays for .'],\n", " ['Marco Fabián plays for .'],\n", " ['Edvald Boasson-Hagen plays for .'],\n", " ['João Moutinho plays for .'],\n", " ['İlkay Gündoğan plays for .'],\n", " ['Karim Ziani plays for .'],\n", " ['Christian Bolaños plays for .'],\n", " ['Gonzalo Jara plays for .'],\n", " ['David De Gea plays for .'],\n", " ['Esteban Cambiasso plays for .'],\n", " ['Gabriel Enrique Gómez plays for .'],\n", " ['Douglas Costa plays for .'],\n", " ['Ezequiel Garay plays for .'],\n", " ['Michy Batshuayi plays for .'],\n", " ['Yakubu plays for .'],\n", " ['José Fonte plays for .'],\n", " ['Rui Costa plays for .'],\n", " ['Salvatore Sirigu plays for .'],\n", " ['Roman Kreuziger plays for .'],\n", " ['Kasper Schmeichel plays for .'],\n", " ['Roman Bürki plays for .'],\n", " ['Víctor Claver plays for .'],\n", " ['Arkadiusz Milik plays for .'],\n", " ['Daniel Ricciardo plays for .'],\n", " ['Thomas Delaney plays for .'],\n", " ['Kevin Love plays for .'],\n", " ['Stéphane Mbia plays for .'],\n", " ['Tatiana Guderzo plays for .'],\n", " ['André Schürrle plays for .'],\n", " ['Martín Demichelis plays for .'],\n", " ['Siraba Dembele plays for .'],\n", " ['Damian Lillard plays for .'],\n", " ['Richie Porte plays for .'],\n", " ['Sébastien Haller plays for .'],\n", " ['Edin Džeko plays for .'],\n", " ['Daisuke Matsui plays for .'],\n", " ['José Sosa plays for .'],\n", " ['Nelson Valdez plays for .'],\n", " ['Alexander Kristoff plays for .'],\n", " ['Luis Advíncula plays for .'],\n", " ['Danilo Pereira plays for .'],\n", " [\"N'Golo Kanté plays for .\"],\n", " ['Duško Tošić plays for .'],\n", " ['Ricardo Rodriguez plays for .'],\n", " ['Shane Smeltz plays for .'],\n", " ['Marcelo Martins Moreno plays for .'],\n", " ['Peter Crouch plays for .'],\n", " ['Simon Gerrans plays for .'],\n", " ['Mark González plays for .'],\n", " ['Gervinho plays for .'],\n", " ['Alex Song plays for .'],\n", " ['Glenn Whelan plays for .'],\n", " ['Raul Meireles plays for .'],\n", " ['Ali Riley plays for .'],\n", " ['Sani Kaita plays for .'],\n", " ['Christie Pearce plays for .'],\n", " ['Luís Fabiano plays for .'],\n", " ['Jan Vertonghen plays for .'],\n", " ['Thiago Alcântara plays for .'],\n", " ['João Mário plays for .'],\n", " ['Alisson plays for .'],\n", " ['Fridolina Rolfö plays for .'],\n", " ['Wout van Aert plays for .'],\n", " ['Alphonse Areola plays for .'],\n", " ['Mousa Dembélé plays for .'],\n", " ['Babett Peter plays for .'],\n", " ['Fabiana da Silva Simões plays for .'],\n", " ['Blerim Džemaili plays for .'],\n", " ['Adriana Leon plays for .'],\n", " ['Naohiro Takahara plays for .'],\n", " ['oscar perez plays for .'],\n", " ['Gaël Kakuta plays for .'],\n", " ['Isco Alarcón plays for .'],\n", " ['Jaroslav Drobný plays for .'],\n", " ['Raheem Sterling plays for .'],\n", " ['Samuel Umtiti plays for .'],\n", " ['Amido Baldé plays for .'],\n", " ['Brad Jones plays for .'],\n", " ['Adil Rami plays for .'],\n", " ['Miguel Layún plays for .'],\n", " ['Jan Koller plays for .'],\n", " ['Dmitri Alenichev plays for .'],\n", " ['Marco Asensio plays for .'],\n", " ['Michael Mørkøv plays for .'],\n", " ['Kendall Waston plays for .'],\n", " ['Milan Borjan plays for .'],\n", " ['Kamil Glik plays for .'],\n", " ['Roman Neustädter plays for .'],\n", " ['Marcelo Díaz plays for .'],\n", " ['Jesé Rodríguez plays for .'],\n", " ['Roberto Acuña plays for .'],\n", " ['Ricardo Faty plays for .'],\n", " ['Verónica Boquete plays for .'],\n", " ['Olga Zabelinskaya plays for .'],\n", " ['James Harden plays for .'],\n", " ['Russell Westbrak plays for .'],\n", " ['Jung Sung-ryong plays for .'],\n", " ['Melissa Tancredi plays for .'],\n", " ['Daryl Impey plays for .'],\n", " ['Henrik Ojamaa plays for .'],\n", " ['Leon Goretzka plays for .'],\n", " ['Pablo Hernández Domínguez plays for .'],\n", " ['Tomáš Necid plays for .'],\n", " ['Joseph Yobo plays for .'],\n", " ['Rafał Majka plays for .'],\n", " ['Bruma plays for .'],\n", " ['Samuel Inkoom plays for .'],\n", " ['Robbie Rogers plays for .'],\n", " ['Robert de Pinho de Souza plays for .'],\n", " ['Georges Mandjeck plays for .'],\n", " ['Lucho González plays for .'],\n", " ['Paul-Georges Ntep plays for .'],\n", " ['Ander Herrera plays for .'],\n", " ['Luis León Sánchez plays for .'],\n", " ['Érika Cristiano dos Santos plays for .'],\n", " ['Kingsley Coman plays for .'],\n", " ['Aymeric Laporte plays for .'],\n", " ['Primož Roglič plays for .'],\n", " ['Charles Aránguiz plays for .'],\n", " ['Julian Alaphilippe plays for .'],\n", " ['André Silva plays for .'],\n", " ['Pauline Ferrand-Prevot plays for .'],\n", " ['Elton Brand plays for .'],\n", " ['Nikita Rukavytsya plays for .'],\n", " ['Marc-André ter Stegen plays for .'],\n", " ['Steven Davis plays for .'],\n", " ['Anderson plays for .'],\n", " ['Matthias Ginter plays for .'],\n", " ['Haris Seferovic plays for .'],\n", " ['Rui Patrício plays for .'],\n", " ['Wojciech Szczęsny plays for .'],\n", " ['Rúrik Gíslason plays for .'],\n", " ['Oscar dos Santos Emboaba Júnior plays for .'],\n", " ['Koo Ja-cheol plays for .'],\n", " ['Lucy Bronze plays for .'],\n", " ['Crystal Dunn plays for .'],\n", " ['Toby Alderweireld plays for .'],\n", " ['Joe Hart plays for .'],\n", " ['Kepa Arrizabalaga plays for .'],\n", " ['Giannis Antetokounmpo plays for .'],\n", " ['Besart Berisha plays for .'],\n", " ['Willian plays for .'],\n", " ['Obafemi Martins plays for .'],\n", " ['Moussa Maâzou plays for .'],\n", " ['Alexei Eremenko plays for .'],\n", " ['Moussa Dembélé plays for .'],\n", " ['Ashlyn Harris plays for .'],\n", " ['Chris Wood plays for .'],\n", " ['Reto Ziegler plays for .'],\n", " ['Antonio Nocerino plays for .'],\n", " ['Ji Dong-won plays for .'],\n", " ['Carlos Salcido plays for .'],\n", " ['Marco Ureña plays for .'],\n", " ['Antar Yahia plays for .'],\n", " ['Georginio Wijnaldum plays for .'],\n", " ['Sam Kerr plays for .'],\n", " ['Valeri Bojinov plays for .'],\n", " ['Luis Tejada plays for .'],\n", " ['Gökhan İnler plays for .'],\n", " ['Javi García plays for .'],\n", " ['Nicolás Lodeiro plays for .'],\n", " ['Raúl Jiménez plays for .'],\n", " ['Janine Beckie plays for .'],\n", " ['Arda Turan plays for .'],\n", " ['Selim Benachour plays for .'],\n", " ['Mickaël Gelabale plays for .'],\n", " ['Daniel González Güiza plays for .'],\n", " ['Jackie Groenen plays for .'],\n", " ['John Mensah plays for .'],\n", " ['Federico Fazio plays for .'],\n", " ['Carl Medjani plays for .'],\n", " ['Ahmed Musa plays for .'],\n", " ['Essam El-Hadary plays for .'],\n", " ['Vedad Ibišević plays for .'],\n", " ['Marouane Fellaini plays for .'],\n", " ['Miralem Pjanić plays for .'],\n", " ['Jorginho plays for .'],\n", " ['Lacina Traoré plays for .'],\n", " ['Christiane Endler plays for .'],\n", " ['Alyssa Naeher plays for .'],\n", " ['Steven Nzonzi plays for .'],\n", " ['Kim Dong-jin plays for .'],\n", " ['Joshua Kimmich plays for .'],\n", " ['Emre Can plays for .'],\n", " ['Nicolas Batum plays for .'],\n", " ['José Calderón plays for .'],\n", " ['Emiliano Insúa plays for .'],\n", " ['Stephan El Shaarawy plays for .'],\n", " ['Casemiro plays for .'],\n", " ['Júnior Díaz plays for .'],\n", " ['Jodie Taylor plays for .'],\n", " ['Robin Olsen plays for .'],\n", " ['Héctor Herrera plays for .'],\n", " ['Sebastian Giovinco plays for .'],\n", " ['Rodrigo plays for .'],\n", " ['Fernando Gaviria plays for .'],\n", " ['Oleksandr Aliyev plays for .'],\n", " ['Florian Thauvin plays for .'],\n", " ['Kim Bo-kyung plays for .'],\n", " ['Thorgan Hazard plays for .'],\n", " ['Gotoku Sakai plays for .'],\n", " ['Odion Ighalo plays for .'],\n", " ['Jasmin Glaesser plays for .'],\n", " ['Eliaquim Mangala plays for .'],\n", " ['Felipe Melo plays for .'],\n", " ['Gábor Király plays for .'],\n", " ['Herculez Gomez plays for .'],\n", " ['Paulo da Silva plays for .'],\n", " ['Héctor Moreno plays for .'],\n", " ['Aliaksandr Hleb plays for .'],\n", " ['Cacau plays for .'],\n", " ['Ion Izagirre plays for .'],\n", " ['Denis Cheryshev plays for .'],\n", " ['Anthony Annan plays for .'],\n", " ['Darius Songaila plays for .'],\n", " ['Morgan De Sanctis plays for .'],\n", " ['Joe Ingles plays for .'],\n", " ['Paco Alcácer plays for .'],\n", " ['Sara Däbritz plays for .'],\n", " ['Nikola Mirotić plays for .'],\n", " ['Adlène Guedioura plays for .'],\n", " ['Fábio Coentrão plays for .'],\n", " ['Granit Xhaka plays for .'],\n", " ['Ashkan Dejagah plays for .'],\n", " ['Derrick Rose plays for .'],\n", " ['Makoto Hasebe plays for .'],\n", " ['William Troost-Ekong plays for .'],\n", " ['Mauro Zárate plays for .'],\n", " ['Seydou Doumbia plays for .'],\n", " ['Tomáš Pekhart plays for .'],\n", " ['Jeffrén Suárez plays for .'],\n", " ['Kurt Zouma plays for .'],\n", " ['Nicolás Otamendi plays for .'],\n", " ['Hiroki Sakai plays for .'],\n", " ['Geoffrey Kondogbia plays for .'],\n", " ['Antonio Rüdiger plays for .'],\n", " ['Danko Lazović plays for .'],\n", " ['Admir Mehmedi plays for .'],\n", " ['Javier Aquino plays for .'],\n", " ['Kelsey Plum plays for .'],\n", " ['Teemu Pukki plays for .'],\n", " ['Grafite plays for .'],\n", " ['Lisa Brennauer plays for .'],\n", " ['Dejan Lovren plays for .'],\n", " ['Niki Terpstra plays for .'],\n", " ['Marcelinho Paraíba plays for .'],\n", " ['Mix Diskerud plays for .'],\n", " ['David Ospina plays for .'],\n", " ['Alexander Sørloth plays for .'],\n", " ['Marek Saganowski plays for .'],\n", " ['Gabriel Barbosa plays for .'],\n", " ['Besart Abdurahimi plays for .'],\n", " ['Matthew Spiranovic plays for .'],\n", " ['Josip Tadić plays for .'],\n", " ['Younis Mahmoud plays for .'],\n", " ['Jordan Ayew plays for .'],\n", " ['Miguel Lopes plays for .'],\n", " ['Sokratis Papastathopoulos plays for .'],\n", " ['Martin Hansen plays for .'],\n", " ['Pierre Bengtsson plays for .'],\n", " ['Taye Taiwo plays for .'],\n", " ['David Carney plays for .'],\n", " ['Ángel Guirado plays for .'],\n", " ['Roberto Jiménez Gago plays for .'],\n", " ['Karen Carney plays for .'],\n", " ['Amin Younes plays for .'],\n", " ['Javier Balboa plays for .'],\n", " ['Francisco Javier Rodríguez plays for .'],\n", " ['Éder plays for .'],\n", " ['Daniëlle van de Donk plays for .'],\n", " ['Reza Ghoochannejhad plays for .'],\n", " ['Kaylyn Kyle plays for .'],\n", " ['André Lotterer plays for .'],\n", " ['Daniel Wass plays for .'],\n", " ['Matías Fernandez plays for .'],\n", " ['Harry Kane plays for .'],\n", " ['Son Heung-min plays for .'],\n", " ['Jhonny Acosta plays for .'],\n", " ['Cléopatre Darleux plays for .'],\n", " ['Tony Gallopin plays for .'],\n", " ['Yann Sommer plays for .'],\n", " ['Eniola Aluko plays for .'],\n", " ['Tyson Chandler plays for .'],\n", " ['Anthony Martial plays for .'],\n", " ['Greg Henderson plays for .'],\n", " ['Kiko Casillas plays for .'],\n", " ['Nilla Fischer plays for .'],\n", " ['Leon Balogun plays for .'],\n", " ['James Milner plays for .'],\n", " ['Cameron Meyer plays for .'],\n", " ['Benjamin Pavard plays for .'],\n", " ['Luís Leal plays for .'],\n", " ['Renato Sanches plays for .'],\n", " ['Mathew Ryan plays for .'],\n", " ['Shuichi Gonda plays for .'],\n", " ['Pierre-Emile Højbjerg plays for .'],\n", " ['Simon Mignolet plays for .'],\n", " ['Ben Sahar plays for .'],\n", " ['Mana Iwabuchi plays for .'],\n", " ['Desiree Scott plays for .'],\n", " ['Quinn plays for .'],\n", " ['Viktor Fischer plays for .'],\n", " ['Ron-Robert Zieler plays for .'],\n", " ['Alex Sandro plays for .'],\n", " ['Damien Le Tallec plays for .'],\n", " ['Tiago Mendes plays for .'],\n", " ['Martin Ødegaard plays for .'],\n", " ['Salvatore Bocchetti plays for .'],\n", " ['Olarenwaju Kayode plays for .'],\n", " ['Corentin Tolisso plays for .'],\n", " ['Walter Pandiani (CR7 su papá) plays for .'],\n", " ['Justo Villar plays for .'],\n", " ['Francisco Arrué plays for .'],\n", " ['Abel Aguilar plays for .'],\n", " ['Esmaël Gonçalves plays for .'],\n", " ['Sulley Muntari plays for .'],\n", " ['Izet Hajrović plays for .'],\n", " ['Ichiro Suzuki plays for .'],\n", " ['Ragnar Klavan plays for .'],\n", " ['Didier Zokora plays for .'],\n", " ['Oscar Ustari plays for .'],\n", " ['Mitchell Langerak plays for .'],\n", " ['Yassine Bounou plays for .'],\n", " ['Hakim Ziyech plays for .'],\n", " ['Lydia Williams plays for .'],\n", " ['Gabriel Jesus plays for .'],\n", " ['Álvaro Fernández plays for .'],\n", " ['Abdoulaye Ba plays for .'],\n", " ['Julian Draxler plays for .'],\n", " ['Stoycho Mladenov plays for .'],\n", " ['Raphaël Guerreiro plays for .'],\n", " ['Simão Sabrosa plays for .'],\n", " ['Anouk Hoogendijk plays for .'],\n", " ['Emanuel Pogatetz plays for .'],\n", " ['Yannick Carrasco plays for .'],\n", " ['Marko Arnautović plays for .'],\n", " ['Bruno Uvini plays for .'],\n", " ['Lukáš Hrádecký plays for .'],\n", " ['Charles Itandje plays for .'],\n", " ['Ján Mucha plays for .'],\n", " ['Florent Piétrus plays for .'],\n", " ['Riyad Mahrez plays for .'],\n", " ['Andre Iguodala plays for .'],\n", " ['Lasse Norman Hansen plays for .'],\n", " ['Alou Diarra plays for .'],\n", " ['Przemysław Tytoń plays for .'],\n", " ['Lucas Moura plays for .'],\n", " ['Álvaro Morata plays for .'],\n", " ['Amandine Henry plays for .'],\n", " ['Jefferson Farfán plays for .'],\n", " ['Martin Braithwaite plays for .'],\n", " ['Tom Heaton plays for .'],\n", " ['Carlos Salcedo plays for .'],\n", " ['Gabriel Torje plays for .'],\n", " ['Emily van Egmond plays for .'],\n", " ['Nicolás Laprovíttola plays for .'],\n", " ['Simon Clarke plays for .'],\n", " ['Elias Kachunga plays for .'],\n", " ['Maurice Edu plays for .'],\n", " ['Hatem Ben Arfa plays for .'],\n", " ['Nelson Oliveira plays for .'],\n", " ['Aco Stojkov plays for .'],\n", " ['Roy Miller plays for .'],\n", " ['Charlie Davies plays for .'],\n", " ['Carlos Fernandes plays for .'],\n", " ['Thaisa plays for .'],\n", " ['Álvaro Saborío plays for .'],\n", " ['Gabriel Cichero plays for .'],\n", " ['Fernandinho plays for .'],\n", " ['Vladimir Gabulov plays for .'],\n", " ['Taylor Rochestie plays for .'],\n", " ['Sven Bender plays for .'],\n", " ['Matías Aguirregaray plays for .'],\n", " ['Wilfried Zaha plays for .'],\n", " ['Mateo Kovačić plays for .'],\n", " ['Matteo Darmian plays for .'],\n", " ['Nathan Jawai plays for .'],\n", " ['Jérémy Ménez plays for .'],\n", " ['Marc Bartra plays for .'],\n", " ['Éric Djemba-Djemba plays for .'],\n", " ['Tarik Elyounoussi plays for .'],\n", " ['Yacine Brahimi plays for .'],\n", " ['Omar Bravo plays for .'],\n", " ['Yuri Zhirkov plays for .'],\n", " ['Antonio Valencia plays for .'],\n", " ['Kenneth Vermeer plays for .'],\n", " ['Dmytro Chyhrynskyi plays for .'],\n", " ['Robert Kubica plays for .'],\n", " ['Juan Manuel Iturbe plays for .'],\n", " ['Julian de Guzman plays for .'],\n", " ['Alexander Merkel plays for .'],\n", " ['Roman Eremenko plays for .'],\n", " ['Lars Bender plays for .'],\n", " ['Suk Hyun-jun plays for .'],\n", " ['Emre Mor plays for .'],\n", " ['Zoran Tošić plays for .'],\n", " ['Jonathan dos Santos plays for .'],\n", " ['Jonathan Mensah plays for .'],\n", " ['Enzo Fernández plays for .'],\n", " ['Kim Young-gwon plays for .'],\n", " ['Oscar Pérez Rojas plays for .'],\n", " ['Astrit Ajdarević plays for .'],\n", " ['Rolf Feltscher plays for .'],\n", " ['Vedran Ćorluka plays for .'],\n", " ['Darren Randolph plays for .'],\n", " ['Ivan Pelizzoli plays for .'],\n", " ['Radomir Đalović plays for .'],\n", " ['Adam Nemec plays for .'],\n", " ['Kristie Mewis plays for .'],\n", " ['Hannes Þór Halldórsson plays for .'],\n", " ['Valon Berisha plays for .'],\n", " ['Marco Donadel plays for .'],\n", " ['Ola Toivonen plays for .'],\n", " ['Winston Reid plays for .'],\n", " ['Saki Kumagai plays for .'],\n", " ['Branko Ilić plays for .'],\n", " ['Răzvan Raț plays for .'],\n", " ['Robert Snodgrass plays for .'],\n", " ['Viola plays for .'],\n", " ['Klay Thompson plays for .'],\n", " ['Stefan Nikolić plays for .'],\n", " ['Carlos Sainz Jr plays for .'],\n", " ['Andressa Alves da Silva plays for .'],\n", " ['Álvaro Negredo plays for .'],\n", " ['Michail Antonio plays for .'],\n", " ['José Bosingwa plays for .'],\n", " ['Atsuto Uchida plays for .'],\n", " ['Lisa Dahlkvist plays for .'],\n", " ['James Troisi plays for .'],\n", " ['Yacouba Sylla plays for .'],\n", " ['Simon Vukčević plays for .'],\n", " ['Cristian Gamboa plays for .'],\n", " ['Elisa Longo Borghini plays for .'],\n", " ['Roberto Soldado plays for .'],\n", " ['Diana Matheson plays for .'],\n", " ['Steven Caulker plays for .'],\n", " ['Ibrahima Baldé plays for .'],\n", " ['Roland Lamah plays for .'],\n", " ['Max Meyer plays for .'],\n", " ['Mbark Boussoufa plays for .'],\n", " ['Achille Emaná plays for .'],\n", " ['Patrice Bernier plays for .'],\n", " ['Ivan Vicelich plays for .'],\n", " ['Islam Slimani plays for .'],\n", " ['Dani Ceballos plays for .'],\n", " ['Lucas Digne plays for .'],\n", " ['Nemanja Matić plays for .'],\n", " ['Andreas Pereira plays for .'],\n", " ['Franck Dja Djédjé plays for .'],\n", " ['Ethan Ampadu plays for .'],\n", " ['R.A. Dickey plays for .'],\n", " ['Mike Havenaar plays for .'],\n", " ['Yukari Kinga plays for .'],\n", " ['Ryan Bertrand plays for .'],\n", " ['Ed Clancy plays for .'],\n", " ['Holger Badstuber plays for .'],\n", " ['Cristian Săpunaru plays for .'],\n", " ['Elinton Andrade plays for .'],\n", " ['Siem de Jong plays for .'],\n", " ['Carlos Bueno plays for .'],\n", " ['Loïc Rémy plays for .'],\n", " ['Kozue Ando plays for .'],\n", " ['Jimmy Durmaz plays for .'],\n", " ['Rafael Pereira da Silva plays for .'],\n", " ['Óscar Duarte plays for .'],\n", " ['Michael Hector plays for .'],\n", " ['Alex McCarthy plays for .'],\n", " ['Dzsenifer Marozsán plays for .'],\n", " ['Nélson Oliveira plays for .'],\n", " ['Fabio Aru plays for .'],\n", " ['Sacha Kljestan plays for .'],\n", " ['Sofiane Feghouli plays for .'],\n", " ['Emerson Palmieri plays for .'],\n", " ['Hristijan Kirovski plays for .'],\n", " ['Santiago Cazorla plays for .'],\n", " ['Melanie Behringer plays for .'],\n", " ['Hugo Vieira plays for .'],\n", " ['Hernanes plays for .'],\n", " ['Isabelle Yacoubou plays for .'],\n", " ['Mauricio Isla plays for .'],\n", " ['Hakan Çalhanoğlu plays for .'],\n", " ['Douglas dos Santos plays for .'],\n", " ['Sinan Bolat plays for .'],\n", " ['Esteban Chaves plays for .'],\n", " ['Marcos Lopes plays for .'],\n", " ['J. J. Barea plays for .'],\n", " ['Mario Suárez Mata plays for .'],\n", " ['Stine Bredal Oftedal plays for .'],\n", " ['Njazi Kuqi plays for .'],\n", " ['Jesús Navas plays for .'],\n", " ['Shane Duffy plays for .'],\n", " ['Willy Hernangómez plays for .'],\n", " ['Richard Keogh plays for .'],\n", " ['Rafael Bastos plays for .'],\n", " ['Carlos Beltrán plays for .'],\n", " ['Nelson Cruz plays for .'],\n", " ['Fiodor Smolov plays for .'],\n", " ['Boban Marjanović plays for .'],\n", " ['Fabián Carini plays for .'],\n", " ['Shelina Zadorsky plays for .'],\n", " ['Pavel Pogrebnyak plays for .'],\n", " ['Goran Pandev plays for .'],\n", " ['Marc Janko plays for .'],\n", " ['Jamal Alioui plays for .'],\n", " ['Mohammadou Idrissou plays for .'],\n", " ['Ousmane Dembélé plays for .'],\n", " ['Gordon Schildenfeld plays for .'],\n", " ['Bauke Mollema plays for .'],\n", " ['Kalu Uche plays for .'],\n", " ['Burak Yılmaz plays for .'],\n", " ['Jimmy Butler plays for .'],\n", " ['Eduardo da Silva plays for .'],\n", " ['Jefferson Louis plays for .'],\n", " ['Diomansy Kamara plays for .'],\n", " [\"Franck Songo'o plays for .\"],\n", " ['Marco Rojas plays for .'],\n", " ['Aarón Ñíguez plays for .'],\n", " ['Victor Lindelöf plays for .'],\n", " ['Iván Kaviedes plays for .'],\n", " ['Nikola Kalinić plays for .'],\n", " ['Jajá plays for .'],\n", " ['Iván Zarandona plays for .'],\n", " ['DeAndre Yedlin plays for .'],\n", " ['Ikechi Anya plays for .'],\n", " ['Anthony Lopes plays for .'],\n", " ['Clemente Rodríguez plays for .'],\n", " ['Jan Oblak plays for .'],\n", " ['Ritchie De Laet plays for .'],\n", " ['Lassana Diarra plays for .'],\n", " ['Fatos Bećiraj plays for .'],\n", " ['Kalidou Koulibaly plays for .'],\n", " ['Kostas Mitroglou plays for .'],\n", " ['Mario Lemina plays for .'],\n", " ['Mindaugas Kalonas plays for .'],\n", " ['Édouard Mendy plays for .'],\n", " ['Giovanni Sio plays for .'],\n", " ['Tijani Belaïd plays for .'],\n", " ['Park Joo-ho plays for .'],\n", " ['Emir Spahić plays for .'],\n", " ['Nikica Jelavić plays for .'],\n", " ['Erich Brabec plays for .'],\n", " ['Christian Cueva plays for .'],\n", " ['Yevhen Konoplyanka plays for .'],\n", " ['Paulo Dybala plays for .'],\n", " ['Emanuel Herrera plays for .'],\n", " ['Ludovic Obraniak plays for .'],\n", " ['Kleyr Vieira dos Santos plays for .'],\n", " ['DeMarcus Cousins plays for .'],\n", " ['Ross McCormack plays for .'],\n", " ['Taylor Phinney plays for .'],\n", " ['Maksim Shatskikh plays for .'],\n", " ['Abby Erceg plays for .'],\n", " ['Yukiya Arashiro plays for .'],\n", " ['Jason Denayer plays for .'],\n", " [\"Jolien D'Hoore plays for .\"],\n", " ['Marco Reus plays for .'],\n", " ['Michael Matthews plays for .'],\n", " ['Halil Altıntop plays for .'],\n", " ['Diego Tardelli plays for .'],\n", " ['John Alvbåge plays for .'],\n", " ['Isaac Promise plays for .'],\n", " ['Estelle Nze Minko plays for .'],\n", " ['Sergio Henao plays for .'],\n", " ['Andriy Yarmolenko plays for .'],\n", " ['Kamil Grosicki plays for .'],\n", " ['Fabinho plays for .'],\n", " ['Ishak Belfodil plays for .'],\n", " ['Tosaint Ricketts plays for .'],\n", " ['Linda Sembrant plays for .'],\n", " ['Tuncay Şanlı plays for .'],\n", " ['Hameur Bouazza plays for .'],\n", " ['Vladimír Weiss plays for .'],\n", " ['Bernard Mendy plays for .'],\n", " ['Matt Miazga plays for .'],\n", " ['Marcos Alonso plays for .'],\n", " ['Liassine Cadamuro plays for .'],\n", " ['Adam Federici plays for .'],\n", " ['Akaki Khubutia plays for .'],\n", " ['Miloš Teodosić plays for .'],\n", " ['Ellen White plays for .'],\n", " ['Román Torres plays for .'],\n", " ['Brown Ideye plays for .'],\n", " ['Trixi Worrack plays for .'],\n", " ['Sead Kolašinac plays for .'],\n", " ['Bernardo Silva plays for .'],\n", " ['Nils Petersen plays for .'],\n", " ['Oriol Romeu plays for .'],\n", " ['Adolfo Machado plays for .'],\n", " ['Filipe Machado Nascimento plays for .'],\n", " ['Rubén Iván Martínez plays for .'],\n", " ['Josephine Henning plays for .'],\n", " ['Dani Carvajal plays for .'],\n", " ['Joël Matip plays for .'],\n", " ['Marcus Berg plays for .'],\n", " ['Julio César de León plays for .'],\n", " ['Hajime Hosogai plays for .'],\n", " ['Edgar Ié plays for .'],\n", " ['Martín Montoya plays for .'],\n", " ['Lucas Piazón plays for .'],\n", " ['Markus Rosenberg plays for .'],\n", " ['Ognjen Vranješ plays for .'],\n", " ['Róbinson Zapata plays for .'],\n", " ['Sébastien Pocognoli plays for .'],\n", " ['Anders Lindegaard plays for .'],\n", " ['Jordan Henderson plays for .'],\n", " ['Josip Drmić plays for .'],\n", " ['Aleksandr Kokorin plays for .'],\n", " ['Juan Bernat plays for .'],\n", " ['Miranda plays for .'],\n", " ['Egan Bernal plays for .'],\n", " ['Camille Abily plays for .'],\n", " ['Stefan Maierhofer plays for .'],\n", " ['Matthieu Dossevi plays for .'],\n", " ['Bafétimbi Gomis plays for .'],\n", " ['Ignatas Konovalovas plays for .'],\n", " ['Karina Maruyama plays for .'],\n", " ['Adreian Payne plays for .'],\n", " ['Enzo Maresca plays for .'],\n", " ['Tomáš Vaclík plays for .'],\n", " ['Zack Steffen plays for .'],\n", " ['Ricardo Clark plays for .'],\n", " ['Ricardo Oliveira plays for .'],\n", " ['Yun Suk-young plays for .'],\n", " ['Giannelli Imbula plays for .'],\n", " ['Lorenzo Insigne plays for .'],\n", " ['Malcom plays for .'],\n", " ['Albert Bunjaku plays for .'],\n", " ['Victor Obinna plays for .'],\n", " ['William Carvalho plays for .'],\n", " ['Felipe Anderson plays for .'],\n", " ['Isaac Cuenca plays for .'],\n", " ['Luis Antonio Jiménez plays for .'],\n", " ['Curtis Davies plays for .'],\n", " ['Dan Ito plays for .'],\n", " ['Odysseas Vlachodimos plays for .'],\n", " ['Eljero Elia plays for .'],\n", " ['Fernando Amorebieta plays for .'],\n", " ['Renato Augusto plays for .'],\n", " ['Milan Mačvan plays for .'],\n", " ['Vivianne Miedema plays for .'],\n", " ['Fabian Schär plays for .'],\n", " ['Ashleigh Moolman-Pasio plays for .'],\n", " ['Marcus Rashford plays for .'],\n", " ['Dominique Malonga plays for .'],\n", " ['Max Verstappen plays for .'],\n", " ['Mehdi Abeid plays for .'],\n", " ['Alanna Kennedy plays for .'],\n", " ['Ahmed Hegazi plays for .'],\n", " ['Alen Halilović plays for .'],\n", " ['Kenny Miller plays for .'],\n", " ['Dimitris Papadopoulos plays for .'],\n", " ['Fran Mérida plays for .'],\n", " ['Idrissa Gueye plays for .'],\n", " ['Shahid Afridi plays for .'],\n", " ['Adrianna Franch plays for .'],\n", " ['Ludovic Giuly plays for .'],\n", " ['Nastja Čeh plays for .'],\n", " ['Zé Eduardo plays for .'],\n", " ['Riccardo Montolivo plays for .'],\n", " ['Benedikt Höwedes plays for .'],\n", " ['José Holebas plays for .'],\n", " ...],\n", " 'labels': [[[\" United States women's national soccer team\"]],\n", " [[' FC Barcelona']],\n", " [[' Juventus F.C.']],\n", " [[' Los Angeles Lakers']],\n", " [[' Lotto Belisol Ladies']],\n", " [[' A.C. Milan']],\n", " [[' Brazil national football team']],\n", " [[' Independiente Santa Fe']],\n", " [[' Qatar SC']],\n", " [[' OL Reign']],\n", " [[' West Ham United F.C.']],\n", " [[' FC Bayern Munich']],\n", " [[' New York City FC']],\n", " [[' Brooklyn Nets']],\n", " [[' Vissel Kobe']],\n", " [[' F.C. Porto']],\n", " [[' Mercedes']],\n", " [[' São José Esporte Clube']],\n", " [[' Japan Fed Cup team']],\n", " [[' Juventus F.C.']],\n", " [[' FC Barcelona']],\n", " [[' FC Bayern Munich']],\n", " [[' Zhejiang Professional F.C.']],\n", " [[' Ineos Grenadiers']],\n", " [[' FC Barcelona Femení']],\n", " [[' FC Bayern Munich']],\n", " [[\" United States women's national soccer team\"]],\n", " [[' Hebei F.C.']],\n", " [[' Qhubeka Assos']],\n", " [[' Colombia national football team']],\n", " [[' OL Reign']],\n", " [[' Club Atlético Peñarol']],\n", " [[' Audax Italiano']],\n", " [[' NJ/NY Gotham FC']],\n", " [[' FC Rosengård']],\n", " [[' West Ham United F.C.']],\n", " [[' Royal Challengers Bangalore']],\n", " [[' Paris Saint-Germain F.C.']],\n", " [[' Vissel Kobe']],\n", " [[' D.C. United']],\n", " [[' Sagan Tosu']],\n", " [[' Argentina national football team']],\n", " [[' Liv Racing']],\n", " [[' Real Madrid CF']],\n", " [[' VfB Stuttgart']],\n", " [[' Brazil national football team']],\n", " [[' Boca Juniors']],\n", " [[' A.C. Milan']],\n", " [[' LA Galaxy']],\n", " [[' Vissel Kobe']],\n", " [[' Beşiktaş J.K.']],\n", " [[' Arsenal F.C.']],\n", " [[' Tampa Bay Rowdies']],\n", " [[' Paris Saint-Germain F.C.']],\n", " [[' Minnesota Lynx']],\n", " [[' Juventus F.C.']],\n", " [[' Al-Gharafa Sports Club']],\n", " [[' İstanbul Başakşehir FC']],\n", " [[' Chicago Fire FC']],\n", " [[' Olimpia Milano']],\n", " [[' FC Bayern Munich']],\n", " [[' Unione Sportiva Sassuolo Calcio']],\n", " [[' Bahrain Victorious']],\n", " [[' Atlas F.C.']],\n", " [[' Chicago Bulls']],\n", " [[' FC Bayern Munich']],\n", " [[' Houston Rockets']],\n", " [[' AS Monaco FC']],\n", " [[' LA Galaxy']],\n", " [[' Coritiba F.C.']],\n", " [[' Arsenal F.C.']],\n", " [[' FC Bayern Munich']],\n", " [[' Swiss national football team']],\n", " [[' Toronto Raptors']],\n", " [[' Matrix Fitness']],\n", " [[' Union Sportive des Forces Armées']],\n", " [[' Quick-Step Alpha Vinyl Team']],\n", " [[' Paris Saint-Germain F.C.']],\n", " [[' Seattle Storm']],\n", " [[' Spain national association football team']],\n", " [[' Parma Calcio 1913']],\n", " [[' Washington Spirit']],\n", " [[' France national association football team']],\n", " [[' Egypt national football team']],\n", " [[' Göztepe S.K.']],\n", " [[' Netherlands national association football team']],\n", " [[' West Ham United F.C.']],\n", " [[' Toronto FC']],\n", " [[' Los Angeles Lakers']],\n", " [[' Japan national football team']],\n", " [[' Japan national football team']],\n", " [[' Chelsea F.C.']],\n", " [[' Standard Liège']],\n", " [[' FC Bayern Munich']],\n", " [[' Portland Thorns FC']],\n", " [[' France national association football team']],\n", " [[' Houston Dynamo FC']],\n", " [[' São Paulo FC']],\n", " [[' Associação Académica de Coimbra – O.A.F.']],\n", " [[' Algeria national football team']],\n", " [[' Bora-Hansgrohe']],\n", " [[' Costa Rica national football team']],\n", " [[' Real Madrid CF']],\n", " [[' Quick-Step Alpha Vinyl Team']],\n", " [[' Germany national association football team']],\n", " [[' SC Freiburg']],\n", " [[' Trek–Segafredo']],\n", " [[' Paraguay national football team']],\n", " [[' Rayo OKC']],\n", " [[' Manchester United F.C.']],\n", " [[' Club de Fútbol Monterrey']],\n", " [[' Juventus F.C.']],\n", " [[' Brasiliense Futebol Clube']],\n", " [[' CCC Team']],\n", " [[' Fleury Loiret HB']],\n", " [[' SIG Basket']],\n", " [[' FC Bayern Munich']],\n", " [[' Meridiana-Kamen']],\n", " [[' Brooklyn Nets']],\n", " [[' Scuderia Ferrari']],\n", " [[\" Norway women's national football team\"]],\n", " [[' Leicester City F.C.']],\n", " [[' EF Education-Nippo']],\n", " [[' Aalesunds FK']],\n", " [[' Portland Thorns FC']],\n", " [[' Chelsea F.C.']],\n", " [[' Real Madrid CF']],\n", " [[' Astana Qazaqstan Team']],\n", " [[' Red Star Belgrade']],\n", " [[' Shanghai Port F.C.']],\n", " [[' Real Madrid Baloncesto']],\n", " [[' Trek–Segafredo']],\n", " [[' Sociedade Esportiva Palmeiras']],\n", " [[' Bahrain Victorious']],\n", " [[' FC Baník Ostrava']],\n", " [[' Swansea City A.F.C.']],\n", " [[' Germany national association football team']],\n", " [[' Clube de Regatas do Flamengo']],\n", " [[' FC Dynamo Brest']],\n", " [[' SD Worx']],\n", " [[' Brazil national football team']],\n", " [[' Maccabi Haifa F.C.']],\n", " [[' Paris Saint-Germain F.C.']],\n", " [[' Los Angeles Clippers']],\n", " [[' Paris Saint-Germain Féminine']],\n", " [[' Olympiacos F.C.']],\n", " [[' Sporting Kansas City']],\n", " [[' Houston Dash']],\n", " [[' Juventus F.C.']],\n", " [[' F.C. Porto']],\n", " [[' Brazil national football team']],\n", " [[' Senegal national association football team']],\n", " [[' Chicago Red Stars']],\n", " [[' Real Madrid CF']],\n", " [[' Yamaha Motor Racing']],\n", " [[' Stoke City F.C.']],\n", " [[' Japan national football team']],\n", " [[' Atlético Madrid']],\n", " [[' Olympique de Marseille']],\n", " [[' O.F.K. Beograd']],\n", " [[' Belgium national football team']],\n", " [[' Belgium national football team']],\n", " [[' Pune F.C.']],\n", " [[' ACF Fiorentina']],\n", " [[' Stabæk Fotball']],\n", " [[' Canadiennes de Montréal']],\n", " [[' Team BikeExchange']],\n", " [[' Cerro Porteño']],\n", " [[' Fajardo Cariduros']],\n", " [[' Dundee United F.C.']],\n", " [[' Agrotikos Asteras F.C.']],\n", " [[' Germany national association football team']],\n", " [[' Jiangsu F.C.']],\n", " [[' SV Werder Bremen']],\n", " [[' Orlando City SC']],\n", " [[' FC Barcelona']],\n", " [[' FC Rosengård']],\n", " [[' Bristol City F.C.']],\n", " [[\" Sweden women's national association football team\"]],\n", " [[' Spain national association football team']],\n", " [[' Juventus F.C.']],\n", " [[' Team Jumbo-Visma']],\n", " [[' Ceratizit–WNT Pro Cycling']],\n", " [[' Rosenborg BK']],\n", " [[' Hokkaido Consadole Sapporo']],\n", " [[' Comunicaciones FC']],\n", " [[' TSG 1899 Hoffenheim']],\n", " [[' Inter Milan']],\n", " [[' Detroit Pistons']],\n", " [[' Galatasaray S.K.']],\n", " [[' France national association football team']],\n", " [[' Team DSM']],\n", " [[' Team DSM']],\n", " [[' NJ/NY Gotham FC']],\n", " [[' Brisbane Roar FC W-League']],\n", " [[' Real Betis Balompié']],\n", " [[' Washington Mystics']],\n", " [[' Montpellier HSC']],\n", " [[' Trek–Segafredo']],\n", " [[' Phoenix Mercury']],\n", " [[' Júbilo Iwata']],\n", " [[' Manchester City F.C.']],\n", " [[' Borussia Dortmund']],\n", " [[' PSV Eindhoven']],\n", " [[' France national association football team']],\n", " [[' New England Patriots']],\n", " [[' Aston Villa F.C.']],\n", " [[' Poland national association football team']],\n", " [[' Göztepe S.K.']],\n", " [[' Baniyas SC']],\n", " [[' Real Madrid CF']],\n", " [[' Manchester United F.C.']],\n", " [[' Atlético Madrid']],\n", " [[' Belgium national football team']],\n", " [[' Norway national association football team']],\n", " [[' FC Barcelona']],\n", " [[\" United States men's national soccer team\"]],\n", " [[' Real Madrid CF']],\n", " [[' Səbail FK']],\n", " [[' Shanghai Shenhua F.C.']],\n", " [[' Hapoel Jerusalem B.C.']],\n", " [[' SV Werder Bremen']],\n", " [[' Tottenham Hotspur F.C.']],\n", " [[' Everton F.C.']],\n", " [[' Belgium national football team']],\n", " [[' Arsenal F.C.']],\n", " [[' Deportivo de La Coruña']],\n", " [[' Boston Celtics']],\n", " [[' Hamburger SV']],\n", " [[' Belgium national football team']],\n", " [[' Hokkaido Consadole Sapporo']],\n", " [[' Clube Atlético Taboão da Serra']],\n", " [[' Málaga CF']],\n", " [[' Tottenham Hotspur F.C.']],\n", " [[' Arkéa–Samsic']],\n", " [[' San Antonio Spurs']],\n", " [[' Paris Saint-Germain F.C.']],\n", " [[' New York Knicks']],\n", " [[' Utah Jazz']],\n", " [[' F.C. Copenhagen']],\n", " [[' Hebei F.C.']],\n", " [[' Club Atlético River Plate']],\n", " [[' Manchester City F.C.']],\n", " [[' FC Bayern Munich']],\n", " [[' France national association football team']],\n", " [[' Club Atlético Peñarol']],\n", " [[' Dalian Professional F.C.']],\n", " [[' Italy national association football team']],\n", " [[' Senegal national association football team']],\n", " [[' France national association football team']],\n", " [[' Lotto–Soudal']],\n", " [[' AFC Bournemouth']],\n", " [[' Denmark national association football team']],\n", " [[' Olympique de Marseille']],\n", " [[' Galatasaray S.K.']],\n", " [[' Atlanta United FC']],\n", " [[' Swansea City A.F.C.']],\n", " [[' Spain national association football team']],\n", " [[' Cameroon national football team']],\n", " [[' Arsenal F.C.']],\n", " [[' FC Rosengård']],\n", " [[' Galatasaray S.K.']],\n", " [[' Italy national association football team']],\n", " [[' Morocco national football team']],\n", " [[' Accra Great Olympics F.C.']],\n", " [[' West Bromwich Albion F.C.']],\n", " [[' Netherlands national association football team']],\n", " [[' DR Congo national football team']],\n", " [[' Brazil national football team']],\n", " [[' A.S. Roma']],\n", " [[' FC Seoul']],\n", " [[' FC Bayern Munich']],\n", " [[' AFC Ajax']],\n", " [[' New Zealand national rugby union team']],\n", " [[\" United States women's national soccer team\"]],\n", " [[' Chelsea F.C.']],\n", " [[' Santos F.C.']],\n", " [[' Shanghai Port F.C.']],\n", " [[' Sevilla FC']],\n", " [[' Ineos Grenadiers']],\n", " [[' Morocco national football team']],\n", " [[' Sweden national association football team']],\n", " [[' Hertha BSC']],\n", " [[' Manchester City W.F.C.']],\n", " [[' Portugal national association football team']],\n", " [[' TuS Haltern']],\n", " [[' Baniyas SC']],\n", " [[' 1. FFC Frankfurt']],\n", " [[' Chelsea F.C.']],\n", " [[' West Ham United F.C.']],\n", " [[' FC Koper']],\n", " [[' Wadi Degla SC']],\n", " [[' Morocco national football team']],\n", " [[' Chelsea F.C.']],\n", " [[' Criciúma Esporte Clube']],\n", " [[' ACF Fiorentina']],\n", " [[' Brisbane Roar FC']],\n", " [[' Turkey national association football team']],\n", " [[' Storey Racing']],\n", " [[' UAE Team Emirates']],\n", " [[' Movistar Team']],\n", " [[' Germany national association football team']],\n", " [[' Udinese Calcio']],\n", " [[' FC Metz']],\n", " [[' Los Angeles Sparks']],\n", " [[' West Ham United F.C.']],\n", " [[' S.S.C. Napoli']],\n", " [[' Santos F.C.']],\n", " [[' Qhubeka Assos']],\n", " [[' Club Universidad de Chile']],\n", " [[' Sevilla FC']],\n", " [[' Sevilla FC']],\n", " [[' Chelsea F.C.']],\n", " [[' Atlanta Hawks']],\n", " [[' CSKA Moscow']],\n", " [[' Netherlands national association football team']],\n", " [[' Chile national football team']],\n", " [[' Croatia national association football team']],\n", " [[' AS Monaco FC']],\n", " [[' Ineos Grenadiers']],\n", " [[' Fenerbahçe SK']],\n", " [[' KFUM-Kameratene Oslo']],\n", " [[' Western New York Flash']],\n", " [[' Netherlands national association football team']],\n", " [[' Metropolitans 92']],\n", " [[' Eintracht Frankfurt']],\n", " [[' Melbourne Victory']],\n", " [[' PBC CSKA Moscow']],\n", " [[' Manchester City W.F.C.']],\n", " [[' Sociedade Esportiva Palmeiras']],\n", " [[' Sunderland A.F.C.']],\n", " [[' Belgium national football team']],\n", " [[' São Paulo FC']],\n", " [[' Quick-Step Alpha Vinyl Team']],\n", " [[' Australia Billie Jean King Cup team']],\n", " [[' Guangzhou Football Club']],\n", " [[' Atlético Junior']],\n", " [[' Brazil national football team']],\n", " [[' Chicago Red Stars']],\n", " [[' Club Nacional de Football']],\n", " [[' Mexico national football team']],\n", " [[' Qhubeka Assos']],\n", " [[' Wolverhampton Wanderers F.C.']],\n", " [[' Germany national association football team']],\n", " [[' US Orléans']],\n", " [[' Deportivo Saprissa']],\n", " [[' Chile national football team']],\n", " [[' Spain national association football team']],\n", " [[' Olympiacos F.C.']],\n", " [[' C.S. Cartaginés']],\n", " [[' Juventus F.C.']],\n", " [[' Valencia CF']],\n", " [[' Belgium national football team']],\n", " [[' Kayserispor']],\n", " [[' Portugal national association football team']],\n", " [[' UAE Team Emirates']],\n", " [[' Italy national association football team']],\n", " [[' Qhubeka Assos']],\n", " [[' Denmark national association football team']],\n", " [[' Swiss national football team']],\n", " [[' FC Barcelona Bàsquet']],\n", " [[' Poland national association football team']],\n", " [[' Renault F1 Team']],\n", " [[' Borussia Dortmund']],\n", " [[' Cleveland Cavaliers']],\n", " [[' Hebei F.C.']],\n", " [[' Bepink']],\n", " [[' Borussia Dortmund']],\n", " [[' Club Atlético Talleres']],\n", " [[' Toulon Saint-Cyr Var Handball']],\n", " [[' Portland Trail Blazers']],\n", " [[' Trek–Segafredo']],\n", " [[' Eintracht Frankfurt']],\n", " [[' A.S. Roma']],\n", " [[' Yokohama FC']],\n", " [[' Trabzonspor']],\n", " [[' Seattle Sounders FC']],\n", " [[' UAE Team Emirates']],\n", " [[' Peru national football team']],\n", " [[' Portugal national association football team']],\n", " [[' France national association football team']],\n", " [[' Beşiktaş J.K.']],\n", " [[' Swiss national football team']],\n", " [[' Sydney FC']],\n", " [[' Cangzhou Mighty Lions F.C.']],\n", " [[' Burnley F.C.']],\n", " [[' CCC Team']],\n", " [[' Club Deportivo Universidad Católica']],\n", " [[' Parma Calcio 1913']],\n", " [[' West Ham United F.C.']],\n", " [[' Republic of Ireland national association football team']],\n", " [[' Fenerbahçe SK']],\n", " [[' Chelsea F.C. Women']],\n", " [[' G.S. Iraklis Thessaloniki']],\n", " [[' NJ/NY Gotham FC']],\n", " [[' CR Vasco da Gama']],\n", " [[' Tottenham Hotspur F.C.']],\n", " [[' Spain national association football team']],\n", " [[' Portugal national association football team']],\n", " [[' Brazil national football team']],\n", " [[' FC Bayern Munich']],\n", " [[' Team Jumbo-Visma']],\n", " [[' France national association football team']],\n", " [[' Guangzhou City F.C.']],\n", " [[' VfL Wolfsburg Women']],\n", " [[' Wuhan F.C.']],\n", " [[' Genoa CFC']],\n", " [[' Western New York Flash']],\n", " [[' Okinawa SV']],\n", " [[' C.D. Guadalajara']],\n", " [[' Hebei F.C.']],\n", " [[' Spain national association football team']],\n", " [[' SV Werder Bremen']],\n", " [[' England national association football team']],\n", " [[' France national association football team']],\n", " [[' Guinea-Bissau national football team']],\n", " [[' N.E.C.']],\n", " [[' Olympique de Marseille']],\n", " [[' Mexico national football team']],\n", " [[' Czech Republic national beach soccer team']],\n", " [[' FC Yenisey Krasnoyarsk']],\n", " [[' Real Madrid CF']],\n", " [[' Quick-Step Alpha Vinyl Team']],\n", " [[' Costa Rica national football team']],\n", " [[\" Canada men's national soccer team\"]],\n", " [[' Poland national association football team']],\n", " [[' Russia national football team']],\n", " [[' Chile national football team']],\n", " [[' Real Madrid CF']],\n", " [[' Club Rubio Ñu']],\n", " [[' Senegal national association football team']],\n", " [[' FC Bayern Munich Women']],\n", " [[' Roland Cogeas Edelweiss Squad']],\n", " [[' Houston Rockets']],\n", " [[' Oklahoma City Thunder']],\n", " [[' Kawasaki Frontale']],\n", " [[' KIF Örebro DFF']],\n", " [[' Team BikeExchange Jayco']],\n", " [[' Estonia national football team']],\n", " [[' Germany national association football team']],\n", " [[' Rayo Vallecano']],\n", " [[' ADO Den Haag']],\n", " [[' FK AS Trenčín']],\n", " [[' Bora-Hansgrohe']],\n", " [[' Real Sociedad']],\n", " [[' Antalyaspor']],\n", " [[' LA Galaxy']],\n", " [[' E.C. Vitória']],\n", " [[' AC Sparta Prague']],\n", " [[' Club Atlético River Plate']],\n", " [[' Cameroon national football team']],\n", " [[' Spain national association football team']],\n", " [[' Astana Qazaqstan Team']],\n", " [[' Paris Saint-Germain F.C.']],\n", " [[' France national association football team']],\n", " [[' Manchester City F.C.']],\n", " [[' Team Jumbo-Visma']],\n", " [[' FC Bayern Munich']],\n", " [[' Quick-Step Alpha Vinyl Team']],\n", " [[' Portugal national association football team']],\n", " [[' Canyon–SRAM']],\n", " [[' Atlanta Hawks']],\n", " [[' Maccabi Haifa F.C.']],\n", " [[' Germany national association football team']],\n", " [[' Southampton F.C.']],\n", " [[' S.C. Internacional']],\n", " [[' Germany national association football team']],\n", " [[' Swiss national football team']],\n", " [[' Portugal national association football team']],\n", " [[' Juventus F.C.']],\n", " [[' 1. FC Nürnberg']],\n", " [[' Brazil national football team']],\n", " [[' FC Augsburg']],\n", " [[' Manchester City F.C.']],\n", " [[\" United States women's national soccer team\"]],\n", " [[' Tottenham Hotspur F.C.']],\n", " [[' Burnley F.C.']],\n", " [[' Spain national association football team']],\n", " [[' Milwaukee Bucks']],\n", " [[' Melbourne Victory']],\n", " [[' Brazil national football team']],\n", " [[' Shanghai Shenhua F.C.']],\n", " [[' Sektzia Nes Tziona F.C.']],\n", " [[' Seinäjoen Jalkapallokerho']],\n", " [[' Olympique Lyonnais']],\n", " [[' Orlando Pride']],\n", " [[' Leeds United F.C.']],\n", " [[' FC Sion']],\n", " [[' Orlando City SC']],\n", " [[' South Korea national football team']],\n", " [[' Tiburones Rojos de Veracruz']],\n", " [[' Liga Deportiva Alajuelense']],\n", " [[' Angers SCO']],\n", " [[' Netherlands national association football team']],\n", " [[' Chicago Red Stars']],\n", " [[' POFC Botev Vratsa']],\n", " [[' Pirata F.C']],\n", " [[' Leicester City F.C.']],\n", " [[' FC Zenit Saint Petersburg']],\n", " [[' Seattle Sounders FC']],\n", " [[' Mexico national football team']],\n", " [[' Houston Dash']],\n", " [[' FC Barcelona']],\n", " [[' Mumbai City FC']],\n", " [[' Élan Chalon']],\n", " [[' Atlético Sanluqueño CF']],\n", " [[' 1. FFC Frankfurt']],\n", " [[' AFC Eskilstuna']],\n", " [[' Argentina national football team']],\n", " [[' Algeria national football team']],\n", " [[' Nigeria national football team']],\n", " [[' Ismaily SC']],\n", " [[' Hertha BSC']],\n", " [[' Shandong Taishan F.C.']],\n", " [[' Juventus F.C.']],\n", " [[' Italy national association football team']],\n", " [[' Ivory Coast national football team']],\n", " [[\" Colo-Colo women's\"]],\n", " [[' Chicago Red Stars']],\n", " [[' A.S. Roma']],\n", " [[' Seoul E-Land FC']],\n", " [[' Germany national association football team']],\n", " [[' Germany national association football team']],\n", " [[' Charlotte Hornets']],\n", " [[' Comunicaciones FC']],\n", " [[' VfB Stuttgart']],\n", " [[' Italy national association football team']],\n", " [[' Brazil national football team']],\n", " [[' Liga Deportiva Alajuelense']],\n", " [[' Arsenal W.F.C.']],\n", " [[' Sweden national association football team']],\n", " [[' Mexico national football team']],\n", " [[' Italy national association football team']],\n", " [[' Spain national association football team']],\n", " [[' UAE Team Emirates']],\n", " [[' FC Rukh Lviv']],\n", " [[' Olympique de Marseille']],\n", " [[' South Korea national football team']],\n", " [[' Belgium national football team']],\n", " [[' Japan national football team']],\n", " [[' Nigeria national football team']],\n", " [[' TWENTY20 p/b Sho-Air']],\n", " [[' Manchester City F.C.']],\n", " [[' Sociedade Esportiva Palmeiras']],\n", " [[' Szombathelyi Haladás']],\n", " [[' Seattle Sounders FC']],\n", " [[' Deportivo Toluca F.C.']],\n", " [[' PSV Eindhoven']],\n", " [[' Belarus national football team']],\n", " [[' VfB Stuttgart II']],\n", " [[' Astana Qazaqstan Team']],\n", " [[' Russia national football team']],\n", " [[' Helsingin Jalkapalloklubi']],\n", " [[' BC Rytas']],\n", " [[' A.S. Roma']],\n", " [[' Utah Jazz']],\n", " [[' Spain national association football team']],\n", " [[\" Germany women's national football team\"]],\n", " [[' New Orleans Pelicans']],\n", " [[' Algeria national football team']],\n", " [[' Rio Ave F.C.']],\n", " [[' Swiss national football team']],\n", " [[' Iran national football team']],\n", " [[' Minnesota Timberwolves']],\n", " [[' Eintracht Frankfurt']],\n", " [[' Nigeria national football team']],\n", " [[' ACF Fiorentina']],\n", " [[' Newcastle United F.C.']],\n", " [[' Unión Deportiva Las Palmas']],\n", " [[' Venezuela national football team']],\n", " [[' France national association football team']],\n", " [[' Manchester City F.C.']],\n", " [[' Japan national football team']],\n", " [[' Central African Republic national football team']],\n", " [[' Germany national association football team']],\n", " [[' NK Olimpija Ljubljana']],\n", " [[' Swiss national football team']],\n", " [[' Mexico national football team']],\n", " [[' Las Vegas Aces']],\n", " [[' Norwich City F.C.']],\n", " [[' Santa Cruz Futebol Clube']],\n", " [[' Ceratizit–WNT Pro Cycling']],\n", " [[' Liverpool F.C.']],\n", " [[' TotalEnergies']],\n", " [[' Oeste Futebol Clube']],\n", " [[\" United States men's national soccer team\"]],\n", " [[' Arsenal F.C.']],\n", " [[' Norway national association football team']],\n", " [[' Legia Warsaw']],\n", " [[' Brazil national football team']],\n", " [[' North Macedonia national football team']],\n", " [[' Zhejiang Professional F.C.']],\n", " [[' Balıkesirspor']],\n", " [[' Talaba SC']],\n", " [[' Ghana national football team']],\n", " [[' Akhisar Belediyespor']],\n", " [[' Arsenal F.C.']],\n", " [[' FC Ingolstadt 04']],\n", " [[' Sweden national association football team']],\n", " [[' Helsingin Jalkapalloklubi']],\n", " [[' Sydney FC']],\n", " [[' Philippines national football team']],\n", " [[' Olympiacos F.C.']],\n", " [[' Chelsea F.C. Women']],\n", " [[' S.S.C. Napoli']],\n", " [[' Al-Faisaly FC']],\n", " [[' Cruz Azul']],\n", " [[' FC Lokomotiv Moscow']],\n", " [[' Arsenal W.F.C.']],\n", " [[' Iran national football team']],\n", " [[' Orlando Pride']],\n", " [[' Porsche']],\n", " [[' Denmark national association football team']],\n", " [[' Atlético Junior']],\n", " [[' England national association football team']],\n", " [[' South Korea national football team']],\n", " [[' SC East Bengal']],\n", " [[' Brest Bretagne Handball']],\n", " [[' AG2R Citroën Team']],\n", " [[' Swiss national football team']],\n", " [[' Chelsea F.C. Women']],\n", " [[' Dallas Mavericks']],\n", " [[' France national association football team']],\n", " [[' UnitedHealthcare']],\n", " [[' Spain national association football team']],\n", " [[' Linköpings FC']],\n", " [[' Nigeria national football team']],\n", " [[' Liverpool F.C.']],\n", " [[' Team BikeExchange Jayco']],\n", " [[' France national association football team']],\n", " [[' São Tomé and Príncipe national football team']],\n", " [[' Portugal national association football team']],\n", " [[' Australia national association football team']],\n", " [[' Portimonense S.C.']],\n", " [[' Denmark national association football team']],\n", " [[' Belgium national football team']],\n", " [[\" Hapoel Be'er Sheva F.C.\"]],\n", " [[\" Japan women's national football team\"]],\n", " [[\" Canada women's national soccer team\"]],\n", " [[' OL Reign']],\n", " [[' Denmark national association football team']],\n", " [[' Germany national association football team']],\n", " [[' Brazil national football team']],\n", " [[' Montpellier Hérault Sport Club']],\n", " [[' Atlético Madrid']],\n", " [[' Norway national association football team']],\n", " [[' Hellas Verona F.C.']],\n", " [[' FC Shakhtar Donetsk']],\n", " [[' Olympique Lyonnais']],\n", " [[' FC Lausanne-Sport']],\n", " [[' Club Social y Deportivo Colo Colo']],\n", " [[' Coquimbo Unido']],\n", " [[' Unión Magdalena']],\n", " [[' Anorthosis Famagusta FC']],\n", " [[' Al Ittihad FC']],\n", " [[' Bosnia and Herzegovina national football team']],\n", " [[' Seattle Mariners']],\n", " [[' Cagliari Calcio']],\n", " [[' FC Pune City']],\n", " [[' Atlas F.C.']],\n", " [[' Australia national association football team']],\n", " [[' Morocco national football team']],\n", " [[' Morocco national football team']],\n", " [[' Houston Dash']],\n", " [[' FC Barcelona']],\n", " [[' San Martín de Tucumán']],\n", " [[' Senegal national association football team']],\n", " [[' Germany national association football team']],\n", " [[' FC Kaisar']],\n", " [[' Portugal national association football team']],\n", " [[' NorthEast United FC']],\n", " [[' AFC Ajax Vrouwen']],\n", " [[' 1. FC Union Berlin']],\n", " [[' Belgium national football team']],\n", " [[' Stoke City F.C.']],\n", " [[' FC Twente']],\n", " [[' Finland national football team']],\n", " [[' Cameroon national football team']],\n", " [[' ŠK Slovan Bratislava']],\n", " [[' SIG Basket']],\n", " [[' Algeria national football team']],\n", " [[' Golden State Warriors']],\n", " [[' Alpecin–Fenix']],\n", " [[' Charlton Athletic F.C.']],\n", " [[' Poland national association football team']],\n", " [[' Brazil national football team']],\n", " [[' Spain national association football team']],\n", " [[' Olympique Lyonnais']],\n", " [[' Al Jazira Club']],\n", " [[' Denmark national association football team']],\n", " [[' Aston Villa F.C.']],\n", " [[' Mexico national football team']],\n", " [[' Romania national association football team']],\n", " [[\" Australia women's national soccer team\"]],\n", " [[' Club Joventut Badalona']],\n", " [[' EF Education-Nippo']],\n", " [[' FC Ingolstadt 04']],\n", " [[' Philadelphia Union']],\n", " [[' Stade Rennais F.C.']],\n", " [[' Movistar Team']],\n", " [[' FK Vardar']],\n", " [[' Portland Timbers 2']],\n", " [[' New England Revolution']],\n", " [[' UD Vilafranquense']],\n", " [[' Associação Ferroviária de Esportes']],\n", " [[' D.C. United']],\n", " [[' FC Sion']],\n", " [[' Brazil national football team']],\n", " [[' FC Dinamo Moscow']],\n", " [[' Tianjin Ronggang']],\n", " [[' Germany national association football team']],\n", " [[' Uruguay national football team']],\n", " [[' Crystal Palace F.C.']],\n", " [[' Croatia national association football team']],\n", " [[' Manchester United F.C.']],\n", " [[' Metropolitans 92']],\n", " [[' Club América']],\n", " [[' Spain national association football team']],\n", " [[' Voltigeurs de Châteaubriant']],\n", " [[' TSG 1899 Hoffenheim']],\n", " [[' Algeria national football team']],\n", " [[' North Carolina FC']],\n", " [[' Russia national football team']],\n", " [[' Real Madrid CF']],\n", " [[' Feyenoord']],\n", " [[' A.E.K. Athens F.C.']],\n", " [[' Williams Grand Prix Engineering']],\n", " [[' Club Tijuana']],\n", " [[' Ottawa Fury FC']],\n", " [[' Kazakhstan national football team']],\n", " [[' FC Rostov']],\n", " [[' Germany national association football team']],\n", " [[' South Korea national football team']],\n", " [[' Turkey national association football team']],\n", " [[' PFC CSKA Moscow']],\n", " [[' Villarreal CF']],\n", " [[' FC Anzhi Makhachkala']],\n", " [[' Real Madrid Castilla']],\n", " [[' South Korea national football team']],\n", " [[' CF Pachuca']],\n", " [[' Örebro SK']],\n", " [[' Venezuela national football team']],\n", " [[' FC Lokomotiv Moscow']],\n", " [[' Republic of Ireland national association football team']],\n", " [[' Vicenza Calcio']],\n", " [[' FK Budućnost Podgorica']],\n", " [[' Pafos FC']],\n", " [[\" United States women's national soccer team\"]],\n", " [[' Iceland national association football team']],\n", " [[' Norway national association football team']],\n", " [[' CF Montréal']],\n", " [[' Sunderland A.F.C.']],\n", " [[' New Zealand national football team']],\n", " [[' Olympique Lyonnais Féminin']],\n", " [[' Urawa Red Diamonds']],\n", " [[' Rayo Vallecano']],\n", " [[' Scotland national football team']],\n", " [[' Clube Atlético Taboão da Serra']],\n", " [[' Golden State Warriors']],\n", " [[' LKS Nieciecza']],\n", " [[' McLaren']],\n", " [[' FC Barcelona Femení']],\n", " [[' Valencia CF']],\n", " [[' West Ham United F.C.']],\n", " [[' Trabzonspor']],\n", " [[' 1. FC Union Berlin']],\n", " [[' Paris Saint-Germain F.C.']],\n", " [[' Liaoning Whowin F.C.']],\n", " [[' Mali national football team']],\n", " [[' Enosis Neon Paralimni FC']],\n", " [[' Costa Rica national football team']],\n", " [[' Trek–Segafredo']],\n", " [[' Villarreal CF']],\n", " [[' Washington Spirit']],\n", " [[' Liverpool F.C.']],\n", " [[' Senegal national association football team']],\n", " [[' FC Cincinnati']],\n", " [[' Crystal Palace F.C.']],\n", " [[' KAA Gent']],\n", " [[' Gimnàstic de Tarragona']],\n", " [[' CF Montréal']],\n", " [[' Auckland City FC']],\n", " [[' Algeria national football team']],\n", " [[' Spain national association football team']],\n", " [[' France national association football team']],\n", " [[' Manchester United F.C.']],\n", " [[' Santos FC']],\n", " [[' Al-Shahaniya Sports Club']],\n", " [[' Chelsea F.C.']],\n", " [[' Toronto Blue Jays']],\n", " [[' Vissel Kobe']],\n", " [[' Orca Kamogawa FC']],\n", " [[' Southampton F.C.']],\n", " [[' JLT Condor']],\n", " [[' VfB Stuttgart']],\n", " [[' Romania national association football team']],\n", " [[' Goa ISL team']],\n", " [[' Netherlands national association football team']],\n", " [[' Argentinos Juniors']],\n", " [[' Lille OSC']],\n", " [[' SGS Essen']],\n", " [[' Sweden national association football team']],\n", " [[' Olympique Lyonnais']],\n", " [[' Costa Rica national football team']],\n", " [[' Jamaica national association football team']],\n", " [[' Crystal Palace F.C.']],\n", " [[' Olympique Lyonnais Féminin']],\n", " [[' Norwich City F.C.']],\n", " [[' UAE Team Emirates']],\n", " [[' New York Red Bulls']],\n", " [[' Algeria national football team']],\n", " [[' A.S. Roma']],\n", " [[' FK Shkëndija']],\n", " [[' Villarreal CF']],\n", " [[' FC Bayern Munich Women']],\n", " [[' Sivasspor']],\n", " [[' São Paulo FC']],\n", " [[' CJM Bourges Basket']],\n", " [[' Fenerbahçe SK']],\n", " [[' Turkey national association football team']],\n", " [[' Brazil national football team']],\n", " [[' Turkey national association football team']],\n", " [[' Team BikeExchange Jayco']],\n", " [[' Lille OSC']],\n", " [[' Dallas Mavericks']],\n", " [[' Spain national association football team']],\n", " [[\" Norway women's national handball team\"]],\n", " [[' PK-35 Vantaa']],\n", " [[' Manchester City F.C.']],\n", " [[' Republic of Ireland national association football team']],\n", " [[' Philadelphia 76ers']],\n", " [[' Republic of Ireland national association football team']],\n", " [[' América Futebol Clube (MG)']],\n", " [[' St. Louis Cardinals']],\n", " [[' Baltimore Orioles']],\n", " [[' Russia national football team']],\n", " [[' Philadelphia 76ers']],\n", " [[' Juventud de Las Piedras']],\n", " [[' Orlando Pride']],\n", " [[' FC Dinamo Moscow']],\n", " [[' Genoa CFC']],\n", " [[' FC Basel']],\n", " [[\" Monts d'Or Azergues Foot\"]],\n", " [[' Maccabi Haifa F.C.']],\n", " [[' France national association football team']],\n", " [[' Anorthosis Famagusta FC']],\n", " [[' Trek–Segafredo']],\n", " [[' Unión Deportiva Almería']],\n", " [[' Beijing Guoan F.C.']],\n", " [[' Philadelphia 76ers']],\n", " [[' Legia Warsaw']],\n", " [[' Wealdstone F.C.']],\n", " [[' NorthEast United FC']],\n", " [[' PAS Giannina F.C.']],\n", " [[' New Zealand national football team']],\n", " [[' S.C. Braga']],\n", " [[' Sweden national association football team']],\n", " [[' Águilas CF']],\n", " [[' Atlético Madrid']],\n", " [[' K.S.C. Lokeren Oost-Vlaanderen']],\n", " [[' Burgos CF']],\n", " [[\" United States men's national soccer team\"]],\n", " [[' Scotland national football team']],\n", " [[' Portugal national association football team']],\n", " [[' Club Atlético Colón']],\n", " [[' Slovenia national football team']],\n", " [[' Middlesbrough F.C.']],\n", " [[' Olympique de Marseille']],\n", " [[' Maccabi Netanya F.C.']],\n", " [[' S.S.C. Napoli']],\n", " [[' S.L. Benfica']],\n", " [[' Gabon national football team']],\n", " [[' FK Kauno Žalgiris']],\n", " [[' Stade Rennais F.C.']],\n", " [[' Stade Rennais F.C.']],\n", " [[' Club Africain']],\n", " [[' South Korea national football team']],\n", " [[' Hamburger SV']],\n", " [[' Guizhou F.C.']],\n", " [[' FC Slovan Liberec']],\n", " [[' Peru national football team']],\n", " [[' Ukraine national association football team']],\n", " [[' Argentina national football team']],\n", " [[' FBC Melgar']],\n", " [[' Maccabi Haifa F.C.']],\n", " [[' Al-Faisaly SC']],\n", " [[' Los Angeles Lakers']],\n", " [[' Fulham F.C.']],\n", " [[' EF Education-Nippo']],\n", " [[' FC Rukh Lviv']],\n", " [[' Western New York Flash']],\n", " [[' Bahrain Victorious']],\n", " [[' Belgium national football team']],\n", " [[' SD Worx']],\n", " [[' Germany national association football team']],\n", " [[' Team DSM']],\n", " [[' FC Augsburg']],\n", " [[' Clube de Regatas do Flamengo']],\n", " [[' Nea Salamis Famagusta FC']],\n", " [[' Kardemir Karabükspor']],\n", " [[\" France women's national handball team\"]],\n", " [[' UAE Team Emirates']],\n", " [[' West Ham United F.C.']],\n", " [[' Stade Rennais F.C.']],\n", " [[' Liverpool F.C.']],\n", " [[' Algeria national football team']],\n", " [[\" Canada men's national soccer team\"]],\n", " [[' Montpellier Hérault Sport Club']],\n", " [[' FC Pune City']],\n", " [[' Red Star F.C.']],\n", " [[' Al-Gharafa Sports Club']],\n", " [[' SC East Bengal']],\n", " [[\" United States men's national soccer team\"]],\n", " [[' Chelsea F.C.']],\n", " [[' Algeria national football team']],\n", " [[' Australia national association football team']],\n", " [[' FC Vitebsk']],\n", " [[' Los Angeles Clippers']],\n", " [[' Arsenal F.C.']],\n", " [[' Seattle Sounders FC']],\n", " [[' Nigeria national football team']],\n", " [[' Trek–Segafredo']],\n", " [[' Bosnia and Herzegovina national football team']],\n", " [[' Portugal national association football team']],\n", " [[' Germany national association football team']],\n", " [[' Southampton F.C.']],\n", " [[' Deportivo Saprissa']],\n", " [[' Saba Qom F.C.']],\n", " [[' Club Atlético Osasuna']],\n", " [[' Arsenal F.C.']],\n", " [[' Spain national association football team']],\n", " [[' Liverpool F.C.']],\n", " [[' FC Krasnodar']],\n", " [[' Club Atlético Platense']],\n", " [[' Buriram United F.C.']],\n", " [[' Villarreal CF']],\n", " [[' Real Betis Balompié']],\n", " [[' Chelsea F.C.']],\n", " [[' Malmö FF']],\n", " [[' Bosnia and Herzegovina national football team']],\n", " [[' Independiente Santa Fe']],\n", " [[' West Bromwich Albion F.C.']],\n", " [[' Preston North End F.C.']],\n", " [[' England national association football team']],\n", " [[' Swiss national football team']],\n", " [[' FC Zenit Saint Petersburg']],\n", " [[' Spain national association football team']],\n", " [[' Brazil national football team']],\n", " [[' Ineos Grenadiers']],\n", " [[' Olympique Lyonnais Féminin']],\n", " [[' FK AS Trenčín']],\n", " [[' Togo national football team']],\n", " [[' Al-Hilal SFC']],\n", " [[' Groupama-FDJ']],\n", " [[' Speranza Osaka-Takatsuki']],\n", " [[' ASVEL Basket']],\n", " [[' Palermo FC']],\n", " [[' Czech Republic national association football team']],\n", " [[\" United States men's national soccer team\"]],\n", " [[' Columbus Crew']],\n", " [[' Santos F.C.']],\n", " [[' South Korea national football team']],\n", " [[' Stoke City F.C.']],\n", " [[' Italy national association football team']],\n", " [[' FC Barcelona']],\n", " [[' FC Viktoria Köln']],\n", " [[' MSV Duisburg']],\n", " [[' Portugal national association football team']],\n", " [[' Brazil national football team']],\n", " [[\" Hapoel Be'er Sheva F.C.\"]],\n", " [[' Al Nasr SC']],\n", " [[' Hull City A.F.C.']],\n", " [[' Thimpu FC']],\n", " [[' Panathinaikos F.C.']],\n", " [[' Feyenoord']],\n", " [[' Club Atlético Independiente']],\n", " [[' Brazil national football team']],\n", " [[' Olimpia Milano']],\n", " [[' Arsenal W.F.C.']],\n", " [[' Swiss national football team']],\n", " [[' Liv Racing']],\n", " [[' England national association football team']],\n", " [[' Congo national football team']],\n", " [[' Red Bull Racing']],\n", " [[' Algeria national football team']],\n", " [[\" Australia women's national soccer team\"]],\n", " [[' Egypt national football team']],\n", " [[' Croatia national association football team']],\n", " [[' Rangers F.C.']],\n", " [[' Atromitos F.C.']],\n", " [[' Club Atlético Osasuna']],\n", " [[' Senegal national association football team']],\n", " [[' Melbourne Renegades']],\n", " [[' Portland Thorns FC']],\n", " [[\" Monts d'Or Azergues Foot\"]],\n", " [[' NŠ Drava Ptuj']],\n", " [[' Al-Shaab CSC']],\n", " [[' A.C. Milan']],\n", " [[' Germany national association football team']],\n", " [[' Greece national association football team']],\n", " ...],\n", " 'labels_ids': [[[315, 532, 390, 18, 632, 4191, 165]],\n", " [[5429, 4612]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[1287, 1422, 6772]],\n", " [[226, 15089, 4231, 36508, 17560]],\n", " [[83, 4, 347, 4, 7338]],\n", " [[2910, 632, 1037, 165]],\n", " [[4619, 26769, 4843, 242, 2005, 6945]],\n", " [[5978, 4998]],\n", " [[19763, 16872]],\n", " [[580, 3600, 315, 274, 4, 347, 4]],\n", " [[5429, 10402, 10489]],\n", " [[188, 469, 412, 5429]],\n", " [[6314, 16421]],\n", " [[10035, 5317, 24058]],\n", " [[274, 4, 347, 4, 2848, 139]],\n", " [[7016]],\n", " [[208, 4214, 23087, 7065, 3427, 242, 2893, 13345]],\n", " [[1429, 2337, 968, 165]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[5429, 4612]],\n", " [[5429, 10402, 10489]],\n", " [[525, 700, 20852, 12221, 274, 4, 347, 4]],\n", " [[96, 242, 366, 13519, 625, 4733]],\n", " [[5429, 4612, 274, 15035, 1977]],\n", " [[5429, 10402, 10489]],\n", " [[315, 532, 390, 18, 632, 4191, 165]],\n", " [[91, 1610, 118, 274, 4, 347, 4]],\n", " [[1209, 31002, 16146, 6331, 366]],\n", " [[8700, 632, 1037, 165]],\n", " [[19763, 16872]],\n", " [[2009, 29018, 10221, 2684, 4119, 6303, 271, 1168]],\n", " [[11917, 3631, 3108, 139]],\n", " [[10585, 73, 9873, 35733, 5429]],\n", " [[5429, 4168, 3314, 11489, 2586]],\n", " [[580, 3600, 315, 274, 4, 347, 4]],\n", " [[2930, 32109, 20434, 20071]],\n", " [[2201, 6130, 12, 534, 8362, 1851, 274, 4, 347, 4]],\n", " [[10035, 5317, 24058]],\n", " [[211, 4, 347, 4, 315]],\n", " [[38224, 17135, 257]],\n", " [[5244, 632, 1037, 165]],\n", " [[17057, 8441]],\n", " [[2822, 3622, 12612]],\n", " [[468, 506, 387, 312, 9259, 22739]],\n", " [[2910, 632, 1037, 165]],\n", " [[163, 14075, 6752, 10327]],\n", " [[83, 4, 347, 4, 7338]],\n", " [[5168, 5325]],\n", " [[10035, 5317, 24058]],\n", " [[1456, 5235, 967, 4349, 5235, 344, 4, 530, 4]],\n", " [[4152, 274, 4, 347, 4]],\n", " [[6415, 1501, 9224, 38707]],\n", " [[2201, 6130, 12, 534, 8362, 1851, 274, 4, 347, 4]],\n", " [[3161, 14122, 1178]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[726, 12, 534, 4759, 15997, 1847, 2009]],\n", " [[4236, 7487, 46770, 5597, 5235, 677, 5235, 14897, 853, 5429]],\n", " [[1568, 1833, 5429]],\n", " [[384, 10839, 642, 493, 5366, 2601]],\n", " [[5429, 10402, 10489]],\n", " [[1332, 242, 5413, 7222, 30089, 257, 5675, 2912, 438, 1020]],\n", " [[13800, 41269, 31221]],\n", " [[22705, 274, 4, 347, 4]],\n", " [[1568, 9926]],\n", " [[5429, 10402, 10489]],\n", " [[2499, 11476]],\n", " [[6015, 12696, 5429]],\n", " [[5168, 5325]],\n", " [[2812, 405, 15577, 274, 4, 347, 4]],\n", " [[4152, 274, 4, 347, 4]],\n", " [[5429, 10402, 10489]],\n", " [[5092, 632, 1037, 165]],\n", " [[2177, 13114]],\n", " [[29830, 18961]],\n", " [[1332, 5413, 2088, 2694, 8717, 10617, 1140, 293]],\n", " [[13287, 12, 25093, 7829, 40236, 2711]],\n", " [[2201, 6130, 12, 534, 8362, 1851, 274, 4, 347, 4]],\n", " [[3417, 5809]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[221, 15277, 2912, 438, 1020, 38220]],\n", " [[663, 11758]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[5028, 632, 1037, 165]],\n", " [[41135, 329, 859, 2379, 208, 4, 530, 4]],\n", " [[7556, 632, 5259, 1037, 165]],\n", " [[580, 3600, 315, 274, 4, 347, 4]],\n", " [[2177, 5429]],\n", " [[1287, 1422, 6772]],\n", " [[1429, 632, 1037, 165]],\n", " [[1429, 632, 1037, 165]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[5787, 5991, 8025, 1899]],\n", " [[5429, 10402, 10489]],\n", " [[5926, 2032, 16248, 5429]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[2499, 37960, 5429]],\n", " [[208, 4214, 15333, 5429]],\n", " [[6331,\n", " 1975,\n", " 493,\n", " 3381,\n", " 4214,\n", " 20341,\n", " 1140,\n", " 119,\n", " 2426,\n", " 263,\n", " 944,\n", " 16231,\n", " 763,\n", " 126,\n", " 384,\n", " 4,\n", " 250,\n", " 4,\n", " 597,\n", " 4]],\n", " [[21774, 632, 1037, 165]],\n", " [[163, 4330, 12, 725, 1253, 15821, 700]],\n", " [[7505, 17458, 632, 1037, 165]],\n", " [[2822, 3622, 12612]],\n", " [[13287, 12, 25093, 7829, 40236, 2711]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[4998, 5547, 1452, 7150]],\n", " [[20351, 2383, 42775, 2001, 33293]],\n", " [[31162, 857, 632, 1037, 165]],\n", " [[4622, 139, 4954, 347]],\n", " [[2361, 315, 274, 4, 347, 4]],\n", " [[2009, 263, 274, 5874, 90, 18217, 3385, 1334, 5460]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[17128, 4715, 9401, 274, 4467, 18217, 2893, 13345]],\n", " [[230, 3376, 2711]],\n", " [[12602, 6801, 5463, 1885, 90, 22783]],\n", " [[38499, 163, 20997]],\n", " [[5429, 10402, 10489]],\n", " [[4213, 808, 8878, 12, 530, 21228]],\n", " [[6314, 16421]],\n", " [[2741, 1906, 6971, 10482]],\n", " [[8683, 390, 18, 632, 1037, 165]],\n", " [[9035, 412, 274, 4, 347, 4]],\n", " [[17112, 3061, 12, 487, 5600, 139]],\n", " [[83, 4575, 3194, 29, 274, 530]],\n", " [[5926, 2032, 16248, 5429]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[2822, 3622, 12612]],\n", " [[8937, 1113, 1209, 11868, 1343, 22398, 2711]],\n", " [[1211, 2141, 4231, 8425]],\n", " [[7137, 2848, 274, 4, 347, 4]],\n", " [[2822, 3622, 4317, 261, 35678, 139]],\n", " [[20351, 2383, 42775, 2001, 33293]],\n", " [[14585, 2550, 1829, 7065, 3427, 7222, 4677, 1794, 853, 281]],\n", " [[13800, 41269, 31221]],\n", " [[5429, 5981, 1977, 330, 21932, 6472, 102]],\n", " [[15338, 412, 83, 4, 597, 4, 347, 4]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[2893, 13345, 263, 6304, 415, 281, 109, 37313, 3314, 139]],\n", " [[5429, 37960, 163, 7110]],\n", " [[12723, 12130, 1178]],\n", " [[2910, 632, 1037, 165]],\n", " [[1775, 438, 10810, 4936, 15247, 274, 4, 347, 4]],\n", " [[2201, 6130, 12, 534, 8362, 1851, 274, 4, 347, 4]],\n", " [[1287, 1422, 12190]],\n", " [[2201, 6130, 12, 534, 8362, 1851, 274, 1140, 4691, 833]],\n", " [[14993, 9504, 366, 274, 4, 347, 4]],\n", " [[16512, 3110, 412]],\n", " [[2499, 18946]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[274, 4, 347, 4, 2848, 139]],\n", " [[2910, 632, 1037, 165]],\n", " [[18490, 632, 5259, 1037, 165]],\n", " [[1568, 1211, 7144]],\n", " [[2822, 3622, 12612]],\n", " [[25297, 5512, 8441]],\n", " [[15607, 412, 274, 4, 347, 4]],\n", " [[1429, 632, 1037, 165]],\n", " [[29018, 10221, 2684, 3622]],\n", " [[14993, 5150, 263, 23294, 4061]],\n", " [[384, 4, 597, 4, 530, 4, 1456, 2154, 7822]],\n", " [[7320, 632, 1037, 165]],\n", " [[7320, 632, 1037, 165]],\n", " [[221, 4438, 274, 4, 347, 4]],\n", " [[7224, 597, 19643, 1688, 3999, 1243]],\n", " [[34138, 30422, 330, 274, 1242, 3512]],\n", " [[40836, 118, 24800, 263, 4436, 20287, 337]],\n", " [[2711, 23070, 9089, 14035]],\n", " [[13943, 1001, 2848, 242, 14182]],\n", " [[274, 1176, 6782, 1653, 808, 7367, 29]],\n", " [[15809, 1942, 315, 274, 4, 347, 4]],\n", " [[3303, 12179, 967, 366, 40431, 281, 274, 4, 347, 4]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[27268, 9228, 274, 4, 347, 4]],\n", " [[22753, 21386, 3624, 163, 5593, 225]],\n", " [[5854, 412, 4998]],\n", " [[5429, 4612]],\n", " [[5429, 4168, 3314, 11489, 2586]],\n", " [[10600, 412, 274, 4, 347, 4]],\n", " [[6171, 390, 18, 632, 5259, 1037, 165]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[2711, 344, 20031, 12, 846, 40837]],\n", " [[13943, 415, 1210, 405, 2383, 771, 16966, 1698, 28544]],\n", " [[11998, 28659, 163, 530]],\n", " [[26455, 330, 23759, 9051, 625, 4104, 37151, 11104]],\n", " [[4556, 26488, 8647, 293, 5429]],\n", " [[12932, 534, 43130, 22590, 225, 10436]],\n", " [[3870, 7338]],\n", " [[2921, 18290]],\n", " [[4537, 415, 31126, 857, 208, 4, 530, 4]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[2711, 43657]],\n", " [[2711, 43657]],\n", " [[10585, 73, 9873, 35733, 5429]],\n", " [[10157, 3830, 271, 5429, 305, 12, 17608]],\n", " [[2822, 6525, 354, 4317, 7474, 118, 1140]],\n", " [[663, 41375, 2857]],\n", " [[4436, 26827, 906, 289, 3632]],\n", " [[20351, 2383, 42775, 2001, 33293]],\n", " [[5524, 15933]],\n", " [[344, 5874, 428, 11313, 28579, 2186]],\n", " [[2361, 412, 274, 4, 347, 4]],\n", " [[7943, 17280, 13039]],\n", " [[4868, 846, 381, 2028, 5410, 2987]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[188, 1156, 4314]],\n", " [[16518, 12470, 274, 4, 347, 4]],\n", " [[6508, 632, 5259, 1037, 165]],\n", " [[41135, 329, 859, 2379, 208, 4, 530, 4]],\n", " [[163, 1543, 219, 281, 4998]],\n", " [[2822, 3622, 12612]],\n", " [[2361, 315, 274, 4, 347, 4]],\n", " [[29018, 10221, 2684, 3622]],\n", " [[7320, 632, 1037, 165]],\n", " [[8683, 632, 5259, 1037, 165]],\n", " [[5429, 4612]],\n", " [[315, 532, 604, 18, 632, 4191, 165]],\n", " [[2822, 3622, 12612]],\n", " [[208, 35423, 27, 428, 3760, 274, 530]],\n", " [[7137, 12242, 15363, 274, 4, 347, 4]],\n", " [[289, 24812, 523, 7007, 163, 4, 347, 4]],\n", " [[22753, 21386, 3624, 163, 5593, 225]],\n", " [[7570, 20302, 7748, 274, 4, 347, 4]],\n", " [[9692, 274, 4, 347, 4]],\n", " [[7320, 632, 1037, 165]],\n", " [[4152, 274, 4, 347, 4]],\n", " [[6748, 2723, 9697, 263, 1587, 2812, 257, 14379]],\n", " [[2278, 8734]],\n", " [[36858, 25278, 22753]],\n", " [[7320, 632, 1037, 165]],\n", " [[26455, 330, 23759, 9051, 625, 4104, 37151, 11104]],\n", " [[2893, 13345, 29018, 10221, 2684, 12765, 139, 4214, 2955, 6251, 763]],\n", " [[256, 1526, 462, 6080, 12612]],\n", " [[7570, 20302, 7748, 274, 4, 347, 4]],\n", " [[19365, 1140, 102, 2383, 104, 7042, 636]],\n", " [[764, 4578, 7963]],\n", " [[2201, 6130, 12, 534, 8362, 1851, 274, 4, 347, 4]],\n", " [[188, 469, 11836]],\n", " [[4514, 9529]],\n", " [[274, 4, 347, 4, 22843]],\n", " [[91, 1610, 118, 274, 4, 347, 4]],\n", " [[2009, 29018, 10221, 2684, 1995, 19201]],\n", " [[2361, 412, 274, 4, 347, 4]],\n", " [[5429, 10402, 10489]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[2009, 29018, 10221, 2684, 4119, 6303, 271, 1168]],\n", " [[211, 21999, 12221, 274, 4, 347, 4]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[18490, 632, 5259, 1037, 165]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[226, 15089, 2383, 104, 6998, 337]],\n", " [[9601, 163, 8371, 14393]],\n", " [[10060, 632, 5259, 1037, 165]],\n", " [[14993, 5150, 263, 23294, 4061]],\n", " [[4537, 415, 31126, 857, 208, 4, 530, 4]],\n", " [[3317, 315, 5429]],\n", " [[15338, 412, 83, 4, 597, 4, 347, 4]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[14781, 632, 1037, 165]],\n", " [[4152, 274, 4, 347, 4]],\n", " [[5429, 4168, 3314, 11489, 2586]],\n", " [[4537, 415, 31126, 857, 208, 4, 530, 4]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[13733, 632, 1037, 165]],\n", " [[5438, 763, 2860, 4365, 274, 4, 347, 4]],\n", " [[580, 14312, 11645, 19032, 274, 4, 347, 4]],\n", " [[7556, 632, 5259, 1037, 165]],\n", " [[10994, 11536, 632, 1037, 165]],\n", " [[2910, 632, 1037, 165]],\n", " [[83, 4, 104, 4, 12218]],\n", " [[5429, 9176]],\n", " [[5429, 10402, 10489]],\n", " [[9601, 24857]],\n", " [[188, 3324, 632, 8808, 2918, 165]],\n", " [[315, 532, 390, 18, 632, 4191, 165]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[12919, 274, 4, 347, 4]],\n", " [[7137, 2848, 274, 4, 347, 4]],\n", " [[15206, 4699, 5429]],\n", " [[96, 242, 366, 13519, 625, 4733]],\n", " [[13733, 632, 1037, 165]],\n", " [[6171, 632, 5259, 1037, 165]],\n", " [[1405, 12037, 163, 3632]],\n", " [[2361, 412, 305, 4, 597, 4, 347, 4]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[9688, 104, 6579, 18995]],\n", " [[163, 1543, 219, 281, 4998]],\n", " [[112, 4, 274, 5268, 14184]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[580, 3600, 315, 274, 4, 347, 4]],\n", " [[5429, 229, 8428]],\n", " [[305, 5416, 926, 7210, 102, 4998]],\n", " [[13733, 632, 1037, 165]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[230, 4063, 118, 5874, 1916, 7065, 3427, 242, 2893, 13345]],\n", " [[7224, 597, 19643, 1688, 3999, 1243]],\n", " [[10157, 3830, 271, 5429]],\n", " [[2769, 632, 5259, 1037, 165]],\n", " [[7248, 219, 8441]],\n", " [[9170, 2711, 8313]],\n", " [[28147, 31732, 2711]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[23917, 33965, 2912, 438, 1020]],\n", " [[5429, 4369, 329]],\n", " [[1287, 1422, 22320]],\n", " [[580, 3600, 315, 274, 4, 347, 4]],\n", " [[208, 4, 104, 4, 347, 4, 7645, 6483]],\n", " [[12919, 274, 4, 347, 4]],\n", " [[1209, 31002, 16146, 6331, 366]],\n", " [[2009, 24066, 8843, 263, 9614]],\n", " [[15206, 4699, 5429]],\n", " [[15206, 4699, 5429]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[3317, 10506]],\n", " [[7038, 14559, 3467]],\n", " [[7556, 632, 5259, 1037, 165]],\n", " [[9614, 632, 1037, 165]],\n", " [[11437, 632, 5259, 1037, 165]],\n", " [[6015, 12696, 5429]],\n", " [[96, 242, 366, 13519, 625, 4733]],\n", " [[274, 5777, 28185, 3381, 242, 14795]],\n", " [[229, 597, 5725, 12, 530, 8015, 415, 2552, 26067]],\n", " [[2027, 188, 469, 15626]],\n", " [[7556, 632, 5259, 1037, 165]],\n", " [[4369, 6884, 20726, 1253, 8403]],\n", " [[381, 2544, 338, 11629, 14184]],\n", " [[5703, 15908]],\n", " [[221, 3573, 7038, 14559, 3467]],\n", " [[2361, 412, 305, 4, 597, 4, 347, 4]],\n", " [[14585, 2550, 1829, 7065, 3427, 7222, 4677, 1794, 853, 281]],\n", " [[13633, 83, 4, 597, 4, 347, 4]],\n", " [[7320, 632, 1037, 165]],\n", " [[208, 4214, 15333, 5429]],\n", " [[13287, 12, 25093, 7829, 40236, 2711]],\n", " [[1221, 1585, 324, 5363, 1745, 968, 165]],\n", " [[21105, 18604, 3910, 2009]],\n", " [[29018, 10221, 2684, 6843]],\n", " [[2910, 632, 1037, 165]],\n", " [[1568, 1211, 7144]],\n", " [[2009, 234, 1043, 6073, 263, 3910]],\n", " [[1625, 632, 1037, 165]],\n", " [[1209, 31002, 16146, 6331, 366]],\n", " [[17100, 1908, 9216, 20233, 16885, 274, 4, 347, 4]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[382, 1793, 24227, 1253]],\n", " [[6748, 2723, 9697, 25452, 338, 12109]],\n", " [[9614, 632, 1037, 165]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[14993, 9504, 366, 274, 4, 347, 4]],\n", " [[230, 4, 104, 4, 13142, 23065, 5739]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[14567, 12612]],\n", " [[7320, 632, 1037, 165]],\n", " [[229, 4113, 254, 354, 12150]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[9170, 2711, 8313]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[1209, 31002, 16146, 6331, 366]],\n", " [[10060, 632, 5259, 1037, 165]],\n", " [[5092, 632, 1037, 165]],\n", " [[5429, 4612, 163, 5269, 30919, 594]],\n", " [[6508, 632, 5259, 1037, 165]],\n", " [[14833, 274, 134, 2711]],\n", " [[7943, 17280, 13039]],\n", " [[2986, 9207]],\n", " [[91, 1610, 118, 274, 4, 347, 4]],\n", " [[163, 2462, 4291]],\n", " [[7943, 17280, 13039]],\n", " [[2009, 29018, 10221, 2684, 255, 11186, 1535]],\n", " [[255, 5156, 261, 6130, 12, 347, 4503, 9676, 7406, 3512]],\n", " [[5926, 8393, 18191]],\n", " [[20351, 2383, 42775, 2001, 33293]],\n", " [[381, 2544, 338, 11629, 14184]],\n", " [[83, 4, 104, 4, 12218]],\n", " [[31853, 2678, 2583, 5429]],\n", " [[2393, 873, 329, 1790, 12150]],\n", " [[3417, 36802, 5429]],\n", " [[9170, 2711, 8313]],\n", " [[12132, 632, 1037, 165]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[1456, 5235, 967, 4349, 5235, 344, 4, 530, 4]],\n", " [[5092, 632, 1037, 165]],\n", " [[4290, 5429]],\n", " [[230, 1097, 18604, 34028, 4574, 274, 4, 347, 4]],\n", " [[7960, 607, 274, 4, 347, 4]],\n", " [[230, 3376, 2711]],\n", " [[2009, 6748, 2723, 9697, 24066, 8843, 7641, 1479, 5895, 102]],\n", " [[221, 15277, 2912, 438, 1020, 38220]],\n", " [[580, 3600, 315, 274, 4, 347, 4]],\n", " [[3497, 9, 2487, 632, 5259, 1037, 165]],\n", " [[274, 5777, 28185, 3381, 242, 14795]],\n", " [[3098, 274, 4, 347, 4, 2691]],\n", " [[272, 4, 104, 4, 38, 9418, 14496, 20, 7485, 30521, 8907]],\n", " [[10585, 73, 9873, 35733, 5429]],\n", " [[4307, 12599, 876, 2955, 272, 2583]],\n", " [[7570, 20302, 7748, 274, 4, 347, 4]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[2910, 632, 1037, 165]],\n", " [[5429, 10402, 10489]],\n", " [[2711, 344, 20031, 12, 846, 40837]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[21105, 18604, 412, 274, 4, 347, 4]],\n", " [[468, 506, 574, 7602, 16408, 2691]],\n", " [[305, 2957, 260, 274, 4, 347, 4]],\n", " [[4380, 8271, 230, 5268]],\n", " [[2027, 188, 469, 15626]],\n", " [[36265, 22753]],\n", " [[230, 4, 495, 4, 2646, 23073, 1176, 1742]],\n", " [[91, 1610, 118, 274, 4, 347, 4]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[22753, 21386, 3624, 163, 5593, 225]],\n", " [[1156, 632, 5259, 1037, 165]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[14667, 12, 387, 3006, 1180, 632, 1037, 165]],\n", " [[234, 4, 717, 4, 347, 4]],\n", " [[14993, 5150, 263, 23294, 4061]],\n", " [[1625, 632, 1037, 165]],\n", " [[9096, 3497, 632, 4105, 4191, 165]],\n", " [[5429, 30377, 1496, 219, 229, 5079, 282, 2160, 2726, 330]],\n", " [[2822, 3622, 12612]],\n", " [[13287, 12, 25093, 7829, 40236, 2711]],\n", " [[7505, 17458, 632, 1037, 165]],\n", " [[896, 604, 18, 632, 4191, 165]],\n", " [[6508, 632, 5259, 1037, 165]],\n", " [[798, 632, 1037, 165]],\n", " [[9614, 632, 1037, 165]],\n", " [[2822, 3622, 12612]],\n", " [[2009, 16528, 952, 3602, 257]],\n", " [[18490, 632, 5259, 1037, 165]],\n", " [[5429, 10402, 10489, 2691]],\n", " [[15897, 944, 1899, 281, 2344, 523, 1694, 3006, 19200]],\n", " [[2499, 11476]],\n", " [[4020, 412, 8314]],\n", " [[13694, 25280, 7204, 1627]],\n", " [[229, 7025, 30492, 241, 7450, 211, 7389]],\n", " [[2711, 23070, 9089, 14035, 3309, 876]],\n", " [[24799, 632, 1037, 165]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[4622, 139, 3767, 459, 38754]],\n", " [[4516, 673, 6743, 4936, 1073]],\n", " [[274, 530, 6015, 255, 2558, 4955, 17010]],\n", " [[163, 4330, 12, 725, 1253, 15821, 700]],\n", " [[2822, 14585, 2550, 625]],\n", " [[3702, 7776, 281, 12150]],\n", " [[5168, 5325]],\n", " [[381, 4, 347, 4, 24589, 1479, 6374]],\n", " [[7224, 30140, 102, 25204]],\n", " [[2009, 29018, 10221, 2684, 1995, 19201]],\n", " [[14781, 632, 1037, 165]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[8937, 1113, 1209, 11868, 1343, 22398, 2711]],\n", " [[2201, 6130, 12, 534, 8362, 1851, 274, 4, 347, 4]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[2361, 412, 274, 4, 347, 4]],\n", " [[2711, 344, 20031, 12, 846, 40837]],\n", " [[5429, 10402, 10489]],\n", " [[13287, 12, 25093, 7829, 40236, 2711]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[10500, 2383, 17973, 2620]],\n", " [[3317, 10506]],\n", " [[1775, 438, 10810, 4936, 15247, 274, 4, 347, 4]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[11666, 274, 4, 347, 4]],\n", " [[208, 4, 347, 4, 23094, 1043, 6073]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[5092, 632, 1037, 165]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[112, 4, 5429, 234, 5172, 282, 2865]],\n", " [[2910, 632, 1037, 165]],\n", " [[5429, 2049, 16408]],\n", " [[2361, 412, 274, 4, 347, 4]],\n", " [[315, 532, 390, 18, 632, 4191, 165]],\n", " [[7570, 20302, 7748, 274, 4, 347, 4]],\n", " [[7960, 607, 274, 4, 347, 4]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[5819, 12770]],\n", " [[5703, 15908]],\n", " [[2910, 632, 1037, 165]],\n", " [[7137, 12242, 15363, 274, 4, 347, 4]],\n", " [[21780, 12527, 493, 234, 293, 255, 329, 26051, 274, 4, 347, 4]],\n", " [[1608, 179, 1561, 267, 18057, 344, 9707, 1115, 1250, 21783, 5410]],\n", " [[14993, 5150, 10888, 19864, 354]],\n", " [[5854, 13170]],\n", " [[9245, 315, 274, 4, 347, 4]],\n", " [[5429, 208, 1499]],\n", " [[5854, 412, 4998]],\n", " [[391, 1101, 632, 1037, 165]],\n", " [[25103, 710, 6909, 3830, 267, 366, 263, 3060, 1043, 2070, 329]],\n", " [[12966, 6748, 2723, 7222, 726, 1176, 8129, 9401]],\n", " [[7413, 268, 4998, 673]],\n", " [[7556, 632, 5259, 1037, 165]],\n", " [[1568, 1211, 7144]],\n", " [[17182, 5268, 163, 6457, 705, 468, 28814, 102]],\n", " [[21299, 2186, 274, 4, 347]],\n", " [[9035, 412, 274, 4, 347, 4]],\n", " [[5429, 13985, 405, 6130, 14330]],\n", " [[3417, 36802, 5429]],\n", " [[1625, 632, 1037, 165]],\n", " [[2499, 18946]],\n", " [[5429, 4612]],\n", " [[5729, 412, 5429]],\n", " [[24986, 6847, 20623, 261]],\n", " [[29018, 10221, 2684, 764, 6487, 3407, 14182, 12612]],\n", " [[112, 4, 274, 5268, 14184]],\n", " [[9601, 19119, 32482, 4989]],\n", " [[5244, 632, 1037, 165]],\n", " [[21774, 632, 1037, 165]],\n", " [[2000, 632, 1037, 165]],\n", " [[1534, 1916, 5846, 4998]],\n", " [[1405, 12037, 163, 3632]],\n", " [[840, 463, 1657, 9002, 1173, 260, 274, 4, 347, 4]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[22256, 2565, 632, 1037, 165]],\n", " [[22378, 12, 18551, 139, 390, 18]],\n", " [[1568, 1211, 7144]],\n", " [[83, 4, 104, 4, 12218]],\n", " [[9176, 381, 12, 26902, 5429]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[5420, 15929]],\n", " [[4556, 26488, 8647, 293, 5429]],\n", " [[468, 506, 387, 312, 9259, 22739]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[2910, 632, 1037, 165]],\n", " [[12966, 6748, 2723, 7222, 726, 1176, 8129, 9401]],\n", " [[4152, 305, 4, 597, 4, 347, 4]],\n", " [[6171, 632, 5259, 1037, 165]],\n", " [[1625, 632, 1037, 165]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[9170, 2711, 8313]],\n", " [[5429, 24542, 298, 45739, 1879]],\n", " [[14993, 5150, 263, 23294, 4061]],\n", " [[391, 1101, 632, 1037, 165]],\n", " [[7320, 632, 1037, 165]],\n", " [[1429, 632, 1037, 165]],\n", " [[2000, 632, 1037, 165]],\n", " [[17535, 5382, 975, 844, 181, 73, 428, 17411, 12, 17906]],\n", " [[2361, 412, 274, 4, 347, 4]],\n", " [[14585, 2550, 1829, 7065, 3427, 7222, 4677, 1794, 853, 281]],\n", " [[15837, 5223, 23872, 352, 118, 6579, 625, 6417]],\n", " [[3417, 36802, 5429]],\n", " [[6748, 2723, 9697, 17686, 26802, 274, 4, 347, 4]],\n", " [[4868, 846, 381, 2028, 5410, 2987]],\n", " [[22514, 632, 1037, 165]],\n", " [[468, 506, 387, 312, 9259, 22739, 3082]],\n", " [[8937, 1113, 1209, 11868, 1343, 22398, 2711]],\n", " [[798, 632, 1037, 165]],\n", " [[44602, 154, 179, 344, 9707, 1115, 1250, 1638, 462, 36384]],\n", " [[9543, 11861, 90, 281]],\n", " [[83, 4, 104, 4, 12218]],\n", " [[4514, 9529]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[1600, 390, 18, 632, 1037, 165]],\n", " [[188, 4942, 17168]],\n", " [[21774, 632, 1037, 165]],\n", " [[5716, 4597, 274, 4, 347, 4]],\n", " [[5092, 632, 1037, 165]],\n", " [[1603, 632, 1037, 165]],\n", " [[3161, 20165]],\n", " [[381, 2544, 338, 11629, 14184]],\n", " [[2000, 632, 1037, 165]],\n", " [[7224, 597, 19643, 1688, 3999, 1243]],\n", " [[8983, 315, 274, 4, 347, 4]],\n", " [[22839, 2727, 6748, 2723, 7222, 2588, 4677, 13738]],\n", " [[6037, 632, 1037, 165]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[2361, 412, 274, 4, 347, 4]],\n", " [[1429, 632, 1037, 165]],\n", " [[1505, 1704, 3497, 632, 1037, 165]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[35906, 384, 10839, 642, 12733, 226, 267, 1792, 462, 267, 1113]],\n", " [[5092, 632, 1037, 165]],\n", " [[1625, 632, 1037, 165]],\n", " [[2588, 2461, 83, 4643]],\n", " [[18749, 412, 274, 4, 347, 4]],\n", " [[2005, 3590, 274, 4467, 18217, 2893, 13345]],\n", " [[13943, 415, 1210, 405, 2383, 771, 16966, 1698, 28544]],\n", " [[3426, 274, 4, 347, 4]],\n", " [[5480, 717, 27093, 918]],\n", " [[384, 13967, 274, 4467, 18217, 2893, 13345]],\n", " [[315, 532, 604, 18, 632, 4191, 165]],\n", " [[4152, 274, 4, 347, 4]],\n", " [[8683, 632, 5259, 1037, 165]],\n", " [[15376, 493, 21115]],\n", " [[2910, 632, 1037, 165]],\n", " [[369, 21894, 632, 1037, 165]],\n", " [[525, 700, 20852, 12221, 274, 4, 347, 4]],\n", " [[4317, 10031, 7339, 21098, 12150]],\n", " [[7765, 6412, 4998]],\n", " [[5498, 632, 1037, 165]],\n", " [[3773, 12724, 271, 4231, 196, 4911, 293, 12150]],\n", " [[4152, 274, 4, 347, 4]],\n", " [[5429, 11996, 1168, 22487, 14722]],\n", " [[6171, 632, 5259, 1037, 165]],\n", " [[44602, 154, 179, 344, 9707, 1115, 1250, 1638, 462, 36384]],\n", " [[4290, 5429]],\n", " [[5639, 632, 1037, 165]],\n", " [[14993, 9504, 366, 274, 4, 347, 4]],\n", " [[3098, 274, 4, 347, 4, 2691]],\n", " [[208, 4, 104, 4, 347, 4, 7645, 6483]],\n", " [[726, 12, 597, 5655, 7776, 5429]],\n", " [[3590, 4947, 922]],\n", " [[5429, 13073, 1075, 1242, 1879, 3467]],\n", " [[4152, 305, 4, 597, 4, 347, 4]],\n", " [[1603, 632, 1037, 165]],\n", " [[5854, 13170]],\n", " [[15091]],\n", " [[10060, 632, 5259, 1037, 165]],\n", " [[29018, 10221, 2684, 6843]],\n", " [[1156, 632, 5259, 1037, 165]],\n", " [[391, 1101, 632, 1037, 165]],\n", " [[4998, 953, 7104]],\n", " [[163, 7110, 27547, 16784, 7406, 3512]],\n", " [[5680, 176, 500, 7801, 1001, 105, 282, 2711]],\n", " [[5092, 632, 1037, 165]],\n", " [[3098, 274, 4, 347, 4, 2691]],\n", " [[3160, 17492]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[315, 13716, 6350]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[4341, 3671, 642, 1033, 5429]],\n", " [[2000, 632, 1037, 165]],\n", " [[3426, 274, 4, 347, 4]],\n", " [[2711, 23070, 9089, 14035, 3309, 876]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[208, 4214, 1560, 1140, 8, 2869, 17010, 2520, 2379, 632, 1037, 165]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[1221, 632, 5259, 1037, 165]],\n", " [[2848, 26298, 9401, 208, 4, 347, 4]],\n", " [[10060, 632, 5259, 1037, 165]],\n", " [[7320, 632, 1037, 165]],\n", " [[289, 24812, 523, 1456, 108, 254, 264, 3952, 274, 4, 347, 4]],\n", " [[1429, 390, 18, 632, 1037, 165]],\n", " [[896, 390, 18, 632, 4191, 165]],\n", " [[19763, 16872]],\n", " [[10060, 632, 5259, 1037, 165]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[2910, 632, 1037, 165]],\n", " [[4436, 26827, 906, 289, 1140, 763, 6070, 5413, 2009]],\n", " [[29018, 10221, 2684, 3622]],\n", " [[8683, 632, 5259, 1037, 165]],\n", " [[11141, 281, 3060, 4488, 274, 4, 347, 4]],\n", " [[5429, 17326, 19654, 29712]],\n", " [[14993, 5150, 10888, 19864, 354]],\n", " [[5429, 1587, 687, 8799, 12, 19451]],\n", " [[2009, 3574, 1423, 6748, 2723, 9697, 22378, 22378]],\n", " [[944, 2253, 757, 3983, 1890, 6005]],\n", " [[22839, 2727, 3771, 20375, 4242]],\n", " [[660, 22494, 13310, 18440, 1073, 4193, 102, 5429]],\n", " [[726, 85, 90, 19284, 5429]],\n", " [[25305, 8, 26288, 3733, 1417, 1243, 632, 1037, 165]],\n", " [[3417, 13486]],\n", " [[230, 1073, 3572, 1512, 2912, 438, 1020]],\n", " [[5429, 221, 4438, 412]],\n", " [[22705, 274, 4, 347, 4]],\n", " [[1221, 632, 5259, 1037, 165]],\n", " [[13733, 632, 1037, 165]],\n", " [[13733, 632, 1037, 165]],\n", " [[2499, 18946]],\n", " [[5429, 4612]],\n", " [[764, 5465, 17010, 263, 33759, 783, 7499]],\n", " [[18490, 632, 5259, 1037, 165]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[5429, 7916, 354, 271]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[369, 17577, 315, 5429]],\n", " [[9601, 24857, 468, 8508, 11760]],\n", " [[112, 4, 5429, 1332, 5459]],\n", " [[7320, 632, 1037, 165]],\n", " [[15607, 412, 274, 4, 347, 4]],\n", " [[5429, 9922, 8530]],\n", " [[12587, 632, 1037, 165]],\n", " [[14781, 632, 1037, 165]],\n", " [[2742, 21402, 530, 4424, 22015, 2265, 415, 13714, 8604]],\n", " [[38499, 163, 20997]],\n", " [[21774, 632, 1037, 165]],\n", " [[3274, 331, 4223]],\n", " [[726, 2379, 28366, 2383, 597, 225, 3181]],\n", " [[15959, 1054, 8899, 274, 4, 347, 4]],\n", " [[6508, 632, 5259, 1037, 165]],\n", " [[2910, 632, 1037, 165]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[14993, 5150, 10888, 19864, 354]],\n", " [[726, 344, 1222, 3578, 2009]],\n", " [[10060, 632, 5259, 1037, 165]],\n", " [[16518, 12470, 274, 4, 347, 4]],\n", " [[1625, 632, 1037, 165]],\n", " [[12940, 632, 5259, 1037, 165]],\n", " [[1221, 390, 18, 632, 4191, 165]],\n", " [[2009, 344, 1417, 1342, 1182, 5654, 337, 4488]],\n", " [[17112, 3061, 12, 487, 5600, 139]],\n", " [[5429, 11996, 1168, 22487, 14722]],\n", " [[3378, 1332]],\n", " [[312, 1829, 248, 18974, 354, 274, 4, 347, 4]],\n", " [[28147, 31732, 2711]],\n", " [[274, 530, 468, 1120, 271]],\n", " [[5926, 34303, 132]],\n", " [[188, 1156, 13340]],\n", " [[33846, 22153, 2001, 3917, 2253, 9401]],\n", " [[6331,\n", " 1975,\n", " 493,\n", " 3381,\n", " 4214,\n", " 6838,\n", " 1001,\n", " 6873,\n", " 1526,\n", " 6374,\n", " 263,\n", " 7065,\n", " 3427,\n", " 293]],\n", " [[211, 4, 347, 4, 315]],\n", " [[5429, 208, 1499]],\n", " [[2910, 632, 1037, 165]],\n", " [[5429, 15757, 12705, 3467]],\n", " [[22336, 17177, 248, 1657, 21251]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[17609, 632, 1037, 165]],\n", " [[9793, 5928, 274, 4, 347, 4]],\n", " [[11437, 632, 5259, 1037, 165]],\n", " [[2361, 315, 274, 4, 347, 4]],\n", " [[4369, 6884, 20726, 1253, 8403]],\n", " [[2009, 1918, 1140, 14962]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[36589, 7876, 4668, 263, 732, 3695, 859, 102, 1792, 1069, 927]],\n", " [[12932, 534, 43130, 22590, 225, 10436]],\n", " [[21774, 632, 1037, 165]],\n", " [[369, 1961, 5429]],\n", " [[798, 632, 1037, 165]],\n", " [[2822, 3622, 12612]],\n", " [[33445, 14511, 3109]],\n", " [[83, 4, 717, 4, 530, 4, 11198, 274, 4, 347, 4]],\n", " [[1604, 2374, 11761, 9466]],\n", " [[2009, 255, 25491]],\n", " [[5837, 15945, 5429]],\n", " [[17983, 632, 1037, 165]],\n", " [[5429, 30610, 1417]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[391, 1101, 632, 1037, 165]],\n", " [[2769, 632, 5259, 1037, 165]],\n", " [[221, 5268, 7038, 14559, 3467]],\n", " [[7296, 271, 8726, 12612]],\n", " [[5429, 660, 329, 3592, 256, 7352, 1488, 330, 2331]],\n", " [[2822, 3622, 6719, 4699]],\n", " [[391, 1101, 632, 1037, 165]],\n", " [[12612, 221, 1488, 26802]],\n", " [[30492, 241, 7450, 14795]],\n", " [[6037, 632, 1037, 165]],\n", " [[5429, 13073, 1075, 1242, 1879, 3467]],\n", " [[3497, 9, 2487, 632, 5259, 1037, 165]],\n", " [[13708, 26450, 2912, 438, 1020]],\n", " [[274, 530, 11504, 257, 4807, 282, 2603, 21752, 26084, 2426]],\n", " [[221, 2001, 366, 5429]],\n", " [[315, 532, 390, 18, 632, 4191, 165]],\n", " [[14605, 632, 5259, 1037, 165]],\n", " [[8683, 632, 5259, 1037, 165]],\n", " [[12612, 4436, 20287, 337]],\n", " [[13633, 83, 4, 597, 4, 347, 4]],\n", " [[188, 3324, 632, 1037, 165]],\n", " [[14993, 5150, 10888, 19864, 354, 274, 1140, 4691, 179]],\n", " [[121, 9056, 102, 1211, 7128, 29]],\n", " [[4622, 139, 3767, 459, 38754]],\n", " [[3430, 632, 1037, 165]],\n", " [[2893, 13345, 29018, 10221, 2684, 12765, 139, 4214, 2955, 6251, 763]],\n", " [[3274, 331, 4223]],\n", " [[226, 18307, 234, 324, 438, 324, 438, 2478]],\n", " [[15081]],\n", " [[5429, 4612, 274, 15035, 1977]],\n", " [[14567, 12612]],\n", " [[580, 3600, 315, 274, 4, 347, 4]],\n", " [[2393, 873, 329, 1790, 12150]],\n", " [[112, 4, 5429, 1332, 5459]],\n", " [[2201, 6130, 12, 534, 8362, 1851, 274, 4, 347, 4]],\n", " [[27162, 11626, 3990, 1722, 179, 274, 4, 347, 4]],\n", " [[16193, 632, 1037, 165]],\n", " [[2271, 13310, 36349, 2884, 337, 757, 5107, 5429]],\n", " [[7505, 17458, 632, 1037, 165]],\n", " [[20351, 2383, 42775, 2001, 33293]],\n", " [[7296, 271, 8726, 12612]],\n", " [[663, 11758]],\n", " [[3426, 274, 4, 347, 4]],\n", " [[18490, 632, 5259, 1037, 165]],\n", " [[5429, 6322]],\n", " [[9793, 5928, 274, 4, 347, 4]],\n", " [[229, 5596, 21834]],\n", " [[31280, 282, 5269, 29048, 263, 255, 6166, 11408, 102]],\n", " [[12612, 4436, 20287, 337]],\n", " [[14664, 412, 5429]],\n", " [[21774, 632, 1037, 165]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[2361, 315, 274, 4, 347, 4]],\n", " [[12919, 5429]],\n", " [[726, 12, 3609, 895, 1543, 2636, 1847, 2009]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[2177, 2692, 10929]],\n", " [[10035, 5317, 24058]],\n", " [[1793, 3245, 5911, 2154, 6498, 5429]],\n", " [[11666, 274, 4, 347, 4]],\n", " [[344, 30395, 12108, 368]],\n", " [[468, 506, 387, 312, 9259, 22739]],\n", " [[12940, 632, 5259, 1037, 165]],\n", " [[2381, 102, 3703, 574, 165]],\n", " [[7556, 632, 5259, 1037, 165]],\n", " [[19041, 10968, 6752, 10327]],\n", " [[226, 4061, 384, 3632]],\n", " [[208, 10729, 14777, 225]],\n", " [[6171, 632, 5259, 1037, 165]],\n", " [[14993, 5150, 10888, 19864, 354]],\n", " [[7505, 17458, 632, 1037, 165]],\n", " [[15639, 632, 5259, 1037, 165]],\n", " [[9793, 5928, 274, 4, 347, 4]],\n", " [[14993, 5150, 10888, 19864, 354, 274, 1140, 4691, 179]],\n", " [[18749, 412, 274, 4, 347, 4]],\n", " [[9170, 2711, 8313]],\n", " [[188, 469, 1211, 9926]],\n", " [[21774, 632, 1037, 165]],\n", " [[83, 4, 104, 4, 12218]],\n", " [[274, 530, 840, 330, 105, 1187, 12733]],\n", " [[7296, 271, 8726, 12612]],\n", " [[5429, 10402, 10489, 2691]],\n", " [[208, 1879, 2401, 12150]],\n", " [[208, 4214, 15333, 5429]],\n", " [[17468, 448, 13023, 5641, 163, 20997]],\n", " [[274, 5777, 28185, 3381, 242, 14795]],\n", " [[2769, 632, 5259, 1037, 165]],\n", " [[2910, 632, 1037, 165]],\n", " [[2769, 632, 5259, 1037, 165]],\n", " [[2711, 23070, 9089, 14035, 3309, 876]],\n", " [[226, 4061, 384, 3632]],\n", " [[3160, 17492]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[8683, 390, 18, 632, 865, 3512, 165]],\n", " [[25011, 12, 2022, 468, 11485, 102]],\n", " [[2361, 412, 274, 4, 347, 4]],\n", " [[3497, 9, 2487, 632, 5259, 1037, 165]],\n", " [[3378, 5553, 268]],\n", " [[3497, 9, 2487, 632, 5259, 1037, 165]],\n", " [[1918, 1140, 14962, 274, 4467, 18217, 2893, 13345, 36, 21963, 43]],\n", " [[312, 4, 3217, 6293]],\n", " [[4766, 14572]],\n", " [[798, 632, 1037, 165]],\n", " [[3378, 5553, 268]],\n", " [[8873, 9399, 1906, 263, 2588, 221, 2550, 5079]],\n", " [[5854, 13170]],\n", " [[5429, 15757, 12705, 3467]],\n", " [[4380, 8271, 230, 5268]],\n", " [[5429, 7093, 523]],\n", " [[4436, 29, 385, 108, 11094, 4947, 11249, 3663, 13324]],\n", " [[1775, 438, 10810, 4936, 15247, 274, 4, 347, 4]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[660, 22494, 13310, 18440, 1073, 4193, 102, 5429]],\n", " [[20351, 2383, 42775, 2001, 33293]],\n", " [[22839, 2727, 6748, 2723, 7222, 726, 2089, 5272]],\n", " [[3332, 2646, 26681, 274, 4, 347, 4]],\n", " [[3378, 5553, 268]],\n", " [[15376, 493, 21115]],\n", " [[166, 5618, 4670, 274, 4, 347, 4]],\n", " [[369, 17577, 315, 5429]],\n", " [[221, 2336, 272, 30265, 1243, 274, 4, 347, 4]],\n", " [[188, 3324, 632, 1037, 165]],\n", " [[208, 4, 347, 4, 2265, 6080]],\n", " [[6171, 632, 5259, 1037, 165]],\n", " [[952, 10172, 5521, 718, 281, 12612]],\n", " [[29018, 10221, 2684, 3622]],\n", " [[229,\n", " 4,\n", " 104,\n", " 4,\n", " 347,\n", " 4,\n", " 226,\n", " 5361,\n", " 2558,\n", " 384,\n", " 2603,\n", " 12,\n", " 846,\n", " 2560,\n", " 463,\n", " 8663]],\n", " [[16588, 366, 12612]],\n", " [[315, 532, 604, 18, 632, 4191, 165]],\n", " [[3430, 632, 1037, 165]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[2009, 29018, 10221, 2684, 3182, 2727]],\n", " [[24195, 632, 1037, 165]],\n", " [[20421, 428, 10344, 274, 4, 347, 4]],\n", " [[14993, 5150, 263, 23294, 4061]],\n", " [[1775, 438, 10810, 5008, 12837, 274, 4, 347, 4]],\n", " [[208, 4, 104, 4, 347, 4, 7645, 6483]],\n", " [[208, 4, 574, 4, 1664, 506, 2426]],\n", " [[9341, 261, 632, 1037, 165]],\n", " [[274, 530, 229, 7381, 139, 2742, 10809, 31316, 36533]],\n", " [[312, 1829, 248, 18974, 354, 274, 4, 347, 4]],\n", " [[312, 1829, 248, 18974, 354, 274, 4, 347, 4]],\n", " [[2009, 44285, 1851]],\n", " [[391, 1101, 632, 1037, 165]],\n", " [[36858, 25278, 22753]],\n", " [[2646, 1210, 24181, 274, 4, 347, 4]],\n", " [[5429, 4424, 22015, 11135, 2816, 438]],\n", " [[12132, 632, 1037, 165]],\n", " [[4174, 632, 5259, 1037, 165]],\n", " [[5244, 632, 1037, 165]],\n", " [[274, 3573, 4448, 6276]],\n", " [[1775, 438, 10810, 4936, 15247, 274, 4, 347, 4]],\n", " [[726, 12, 597, 5655, 7776, 4998]],\n", " [[1287, 1422, 6772]],\n", " [[11193, 1908, 274, 4, 347, 4]],\n", " [[17112, 3061, 12, 487, 5600, 139]],\n", " [[5429, 24542, 298, 45739, 1879]],\n", " [[2027, 188, 469, 15626]],\n", " [[13800, 41269, 31221]],\n", " [[7320, 632, 1037, 165]],\n", " [[12723, 12130, 1178]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[2711, 43657]],\n", " [[5429, 2049, 16408]],\n", " [[2893, 13345, 263, 6304, 415, 281, 109, 37313, 3314, 139]],\n", " [[3864, 102, 35020, 354, 18440, 1073, 4193, 102, 5429]],\n", " [[44558, 991, 853, 4077, 873, 2768, 2258, 12150]],\n", " [[1470, 390, 18, 632, 865, 3512, 165]],\n", " [[9170, 2711, 8313]],\n", " [[580, 3600, 315, 274, 4, 347, 4]],\n", " [[312, 1829, 248, 18974, 354, 274, 4, 347, 4]],\n", " [[3426, 274, 4, 347, 4]],\n", " [[21774, 632, 1037, 165]],\n", " [[896, 604, 18, 632, 4191, 165]],\n", " [[4436, 26827, 906, 289, 1140, 763, 6070, 5413, 2009]],\n", " [[5429, 221, 4438, 412]],\n", " [[1211, 2141, 274, 4, 347, 4]],\n", " [[726, 12, 534, 4759, 15997, 1847, 2009]],\n", " [[4998, 953, 7104]],\n", " [[315, 532, 604, 18, 632, 4191, 165]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[21774, 632, 1037, 165]],\n", " [[1221, 632, 5259, 1037, 165]],\n", " [[5429, 468, 1459, 4311, 330]],\n", " [[1287, 1422, 12190]],\n", " [[4152, 274, 4, 347, 4]],\n", " [[3417, 36802, 5429]],\n", " [[2000, 632, 1037, 165]],\n", " [[20351, 2383, 42775, 2001, 33293]],\n", " [[25305, 8, 26288, 3733, 1417, 1243, 632, 1037, 165]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[11666, 274, 4, 347, 4]],\n", " [[6748, 2723, 9697, 25452, 338, 12109]],\n", " [[6371, 102, 1209, 1075, 274, 4, 347, 4]],\n", " [[2009, 29018, 10221, 2684, 4838, 281, 4989]],\n", " [[4152, 274, 4, 347, 4]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[3426, 274, 4, 347, 4]],\n", " [[5429, 229, 5079, 282, 1630, 271]],\n", " [[2009, 29018, 10221, 2684, 23654, 9401]],\n", " [[4273, 853, 424, 315, 274, 4, 347, 4]],\n", " [[7296, 271, 8726, 12612]],\n", " [[2822, 6525, 354, 4317, 7474, 118, 1140]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[2529, 119, 3671, 35960]],\n", " [[25305, 8, 26288, 3733, 1417, 1243, 632, 1037, 165]],\n", " [[4619, 26769, 4843, 242, 2005, 6945]],\n", " [[580, 14312, 11645, 19032, 274, 4, 347, 4]],\n", " [[14056, 369, 4680, 274, 4, 347, 4]],\n", " [[1156, 632, 5259, 1037, 165]],\n", " [[5092, 632, 1037, 165]],\n", " [[5429, 13985, 405, 6130, 14330]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[2910, 632, 1037, 165]],\n", " [[96, 242, 366, 13519, 625, 4733]],\n", " [[14993, 5150, 10888, 19864, 354, 274, 1140, 4691, 179]],\n", " [[274, 530, 6015, 255, 2558, 4955, 17010]],\n", " [[255, 14744, 632, 1037, 165]],\n", " [[726, 12, 725, 718, 337, 208, 5268]],\n", " [[826, 2583, 12, 24667, 863]],\n", " [[208, 1741, 19209, 19380, 12, 565, 677, 47497]],\n", " [[6015, 16641, 163, 20997]],\n", " [[4677, 254, 4992, 5429]],\n", " [[9096, 3497, 632, 5259, 1037, 165]],\n", " [[315, 532, 604, 18, 632, 4191, 165]],\n", " [[7270, 10493]],\n", " [[12919, 274, 4, 347, 4]],\n", " [[391, 1101, 632, 1037, 165]],\n", " [[15607, 412, 274, 4, 347, 4]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[5429, 4612]],\n", " [[5429, 16706, 90, 7228, 229, 3671, 8502]],\n", " [[6253, 846, 5620, 354, 3321]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[2910, 632, 1037, 165]],\n", " [[289, 24812, 523, 1456, 108, 254, 264, 3952, 274, 4, 347, 4]],\n", " [[726, 4417, 338, 4998]],\n", " [[13077, 412, 83, 4, 597, 4, 347, 4]],\n", " [[2032, 11850, 257, 5429]],\n", " [[5302, 2681, 1243, 967, 366, 274, 4, 347, 4]],\n", " [[33445, 14511, 3109]],\n", " [[2009, 29018, 10221, 2684, 4619, 26769, 4843, 242]],\n", " [[2910, 632, 1037, 165]],\n", " [[384, 10839, 642, 493, 5366, 2601]],\n", " [[4152, 305, 4, 597, 4, 347, 4]],\n", " [[5092, 632, 1037, 165]],\n", " [[17057, 8441]],\n", " [[1156, 632, 5259, 1037, 165]],\n", " [[11536, 632, 1037, 165]],\n", " [[1211, 6518, 8441]],\n", " [[21774, 632, 1037, 165]],\n", " [[1221, 390, 18, 632, 4191, 165]],\n", " [[5028, 632, 1037, 165]],\n", " [[11437, 632, 5259, 1037, 165]],\n", " [[5706, 274, 4, 347, 4]],\n", " [[497, 5638, 405, 366, 274, 4, 347, 4]],\n", " [[2009, 29018, 10221, 2684, 4838, 281, 4989]],\n", " [[18490, 632, 5259, 1037, 165]],\n", " [[5703, 38901, 4216]],\n", " [[5926, 2032, 16248, 5429]],\n", " [[4436, 29, 385, 108, 11094, 4947, 11249, 3663, 13324]],\n", " [[234, 1277, 21402, 211, 6472, 102, 42191, 11591]],\n", " [[726, 12, 3609, 102, 873, 230, 3632]],\n", " [[83, 4, 347, 4, 7338]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[4644, 632, 5259, 1037, 165]],\n", " ...],\n", " 'relation': ['P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " ...],\n", " 'num_answers': [1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " ...]},\n", " '2019-Q4': {'text': [['Alex Morgan plays for .'],\n", " ['Lionel Messi plays for .'],\n", " ['Cristiano Ronaldo plays for .'],\n", " ['LeBron James plays for .'],\n", " ['Puck Moonen plays for .'],\n", " ['Zlatan Ibrahimović plays for .'],\n", " ['Neymar plays for .'],\n", " ['Ronaldinho plays for .'],\n", " ['Megan Rapinoe plays for .'],\n", " ['Pau Gasol plays for .'],\n", " ['Alisha Lehmann plays for .'],\n", " ['Robert Lewandowski plays for .'],\n", " ['Gianluigi Buffon plays for .'],\n", " ['Andrea Pirlo plays for .'],\n", " ['Kevin Durant plays for .'],\n", " ['Lukas Podolski plays for .'],\n", " ['Iker Casillas plays for .'],\n", " ['Lewis Hamilton plays for .'],\n", " ['Formiga plays for .'],\n", " ['Naomi Osaka plays for .'],\n", " ['José Mourinho plays for .'],\n", " ['Luis Suárez plays for .'],\n", " ['Franck Ribéry plays for .'],\n", " ['Tim Cahill plays for .'],\n", " ['Chris Froome plays for .'],\n", " ['Mario Balotelli plays for .'],\n", " ['Lieke Martens plays for .'],\n", " ['Manuel Neuer plays for .'],\n", " ['Lindsey Horan plays for .'],\n", " ['Javier Mascherano plays for .'],\n", " ['Mark Cavendish plays for .'],\n", " ['James Rodríguez plays for .'],\n", " ['Hope Solo plays for .'],\n", " ['Diego Forlán plays for .'],\n", " ['Sebastián Abreu plays for .'],\n", " ['Carli Lloyd plays for .'],\n", " ['Marta plays for .'],\n", " ['Yuzvendra Chahal plays for .'],\n", " ['Thiago Silva plays for .'],\n", " ['Andrés Iniesta plays for .'],\n", " ['Wayne Rooney plays for .'],\n", " ['Sergio Agüero plays for .'],\n", " ['Marianne Vos plays for .'],\n", " ['Sergio Ramos plays for .'],\n", " ['Mario Gómez plays for .'],\n", " ['Dani Alves plays for .'],\n", " ['Carlos Tevez plays for .'],\n", " ['Pepe Reina plays for .'],\n", " ['Giovani dos Santos plays for .'],\n", " ['David Villa plays for .'],\n", " ['Mesut Özil plays for .'],\n", " ['Freddy Adu plays for .'],\n", " ['Cristiane Rozeira plays for .'],\n", " ['Maya Moore plays for .'],\n", " ['Giorgio Chiellini plays for .'],\n", " ['Robinho plays for .'],\n", " ['Bastian Schweinsteiger plays for .'],\n", " ['Luis Scola plays for .'],\n", " ['Jérôme Boateng plays for .'],\n", " ['Kevin-Prince Boateng plays for .'],\n", " ['Vincenzo Nibali plays for .'],\n", " ['Egidio Arévalo Rios plays for .'],\n", " ['Dwyane Wade plays for .'],\n", " ['Arjen Robben plays for .'],\n", " ['Dwight Howard plays for .'],\n", " ['Cesc Fàbregas plays for .'],\n", " ['Nigel de Jong plays for .'],\n", " ['Colin Kazim-Richards plays for .'],\n", " ['Pierre-Emerick Aubameyang plays for .'],\n", " ['David Alaba plays for .'],\n", " ['Xherdan Shaqiri plays for .'],\n", " ['Marc Gasol plays for .'],\n", " ['Laura Kenny plays for .'],\n", " ['Aristide Bancé plays for .'],\n", " ['Philippe Gilbert plays for .'],\n", " ['Edinson Cavani plays for .'],\n", " ['Breanna Stewart plays for .'],\n", " ['Luis Enrique plays for .'],\n", " ['Bruno Alves plays for .'],\n", " ['Ali Krieger plays for .'],\n", " ['Antoine Griezmann plays for .'],\n", " ['Mohamed Salah plays for .'],\n", " ['Beto plays for .'],\n", " ['Memphis Depay plays for .'],\n", " ['Pablo Zabaleta plays for .'],\n", " ['Jozy Altidore plays for .'],\n", " ['Steve Nash plays for .'],\n", " ['Shinji Okazaki plays for .'],\n", " ['Maya Yoshida plays for .'],\n", " ['Gary Cahill plays for .'],\n", " ['David Touré plays for .'],\n", " ['Guillermo Ochoa plays for .'],\n", " ['Serge Gnabry plays for .'],\n", " ['Christine Sinclair plays for .'],\n", " ['Paul Pogba plays for .'],\n", " ['DaMarcus Beasley plays for .'],\n", " ['Alexandre Pato plays for .'],\n", " ['Hugo Almeida plays for .'],\n", " [\"Raïs M'Bolhi plays for .\"],\n", " ['Peter Sagan plays for .'],\n", " ['Joel Campbell plays for .'],\n", " ['Luka Modrić Papá de Lionel Messi plays for .'],\n", " ['Elia Viviani plays for .'],\n", " ['Toni Kroos plays for .'],\n", " ['Giulia Gwinn plays for .'],\n", " ['Ellen van Dijk plays for .'],\n", " ['Lucas Barrios plays for .'],\n", " ['Daniel Fernandes plays for .'],\n", " ['Juan Mata plays for .'],\n", " ['Michael Bradley plays for .'],\n", " ['Gonzalo Higuaín plays for .'],\n", " ['Lúcio plays for .'],\n", " ['Greg Van Avermaet plays for .'],\n", " ['Alexandra Lacrabère plays for .'],\n", " ['David Andersen plays for .'],\n", " ['Javi Martínez plays for .'],\n", " ['Davide Rebellin plays for .'],\n", " ['Ricardo Costa plays for .'],\n", " ['Kyrie Irving plays for .'],\n", " ['Sebastian Vettel plays for .'],\n", " ['Ingrid Syrstad Engen plays for .'],\n", " ['Adrien Silva plays for .'],\n", " ['Rigoberto Urán plays for .'],\n", " ['John Arne Riise plays for .'],\n", " ['Tobin Heath plays for .'],\n", " ['Hedvig Lindahl plays for .'],\n", " ['Marcelo plays for .'],\n", " ['Radamel Falcao plays for .'],\n", " ['Jakob Fuglsang plays for .'],\n", " ['Marko Marin plays for .'],\n", " ['Mikel John Obi plays for .'],\n", " ['Hulk plays for .'],\n", " ['Rudy Fernández plays for .'],\n", " ['Lizzie Deignan plays for .'],\n", " ['Zé Roberto plays for .'],\n", " ['Milan Baroš plays for .'],\n", " ['Łukasz Fabiański plays for .'],\n", " ['Mats Hummels plays for .'],\n", " ['Diego Ribas da Cunha plays for .'],\n", " ['Artem Milevskyi plays for .'],\n", " ['Anna van der Breggen plays for .'],\n", " ['Rafinha plays for .'],\n", " ['Vladimir Stojković plays for .'],\n", " ['Ángel Di María plays for .'],\n", " ['Chris Paul plays for .'],\n", " ['Rosana dos Santos Augusto plays for .'],\n", " ['Manuel da Costa plays for .'],\n", " ['Benny Feilhaber plays for .'],\n", " ['Alexis Sánchez plays for .'],\n", " ['Sophie Schmidt plays for .'],\n", " ['Mario Mandžukić plays for .'],\n", " ['Pepe plays for .'],\n", " ['Philippe Coutinho plays for .'],\n", " ['Sadio Mané plays for .'],\n", " ['Christen Press plays for .'],\n", " ['Keylor Navas plays for .'],\n", " ['Valentino Rossi plays for .'],\n", " ['Bojan Krkić plays for .'],\n", " ['Shinji Kagawa plays for .'],\n", " ['Diego Costa plays for .'],\n", " ['Steve Mandanda plays for .'],\n", " ['Miodrag Anđelković plays for .'],\n", " ['Thibaut Courtois plays for .'],\n", " ['Vincent Kompany plays for .'],\n", " ['Eiður Guðjohnsen plays for .'],\n", " ['Jakub Błaszczykowski plays for .'],\n", " ['Henning Berg plays for .'],\n", " ['Hilary Knight plays for .'],\n", " ['Annemiek van Vleuten plays for .'],\n", " ['Álvaro Pereira plays for .'],\n", " ['Carlos Arroyo plays for .'],\n", " ['Florent Sinama Pongolle plays for .'],\n", " ['Miljan Mrdaković plays for .'],\n", " ['Mario Götze plays for .'],\n", " ['Jô plays for .'],\n", " ['Claudio Pizarro plays for .'],\n", " ['Nani plays for .'],\n", " ['Ivan Rakitić plays for .'],\n", " ['Erin McLeod plays for .'],\n", " ['Peter Odemwingie plays for .'],\n", " ['Sofia Jakobsson plays for .'],\n", " ['David Luiz plays for .'],\n", " ['Jordi Alba plays for .'],\n", " ['Sami Khedira plays for .'],\n", " ['Tony Martin plays for .'],\n", " ['Kirsten Wild plays for .'],\n", " ['Nicklas Bendtner plays for .'],\n", " ['Junichi Inamoto plays for .'],\n", " ['Michael Umaña plays for .'],\n", " ['Niklas Süle plays for .'],\n", " ['Diego Godín plays for .'],\n", " ['José Calderón plays for .'],\n", " ['Yuto Nagatomo plays for .'],\n", " ['Olivier Giroud plays for .'],\n", " ['Tom Dumoulin plays for .'],\n", " ['Nicolas Roche plays for .'],\n", " [\"Kelley O'Hara plays for .\"],\n", " ['Lisa De Vanna plays for .'],\n", " ['Rafael van der Vaart plays for .'],\n", " ['Elena Delle Donne plays for .'],\n", " ['Sakina Karchaoui plays for .'],\n", " ['John Degenkolb plays for .'],\n", " ['Brittney Griner plays for .'],\n", " ['David Silva plays for .'],\n", " ['Axel Witsel plays for .'],\n", " ['Andrés Guardado plays for .'],\n", " ['Kylian Mbappé plays for .'],\n", " ['Tom Brady plays for .'],\n", " ['Micah Richards plays for .'],\n", " ['Łukasz Piszczek plays for .'],\n", " ['Celso Borges plays for .'],\n", " ['Royston Drenthe plays for .'],\n", " ['Gareth Bale plays for .'],\n", " ['Sergio Romero plays for .'],\n", " ['Filipe Luís plays for .'],\n", " ['Romelu Lukaku plays for .'],\n", " ['Erling Haaland plays for .'],\n", " ['Emmanuel Adebayor plays for .'],\n", " ['Arturo Vidal plays for .'],\n", " ['Jermaine Jones plays for .'],\n", " ['Eden Hazard plays for .'],\n", " ['Michael Essien plays for .'],\n", " ['Demba Ba plays for .'],\n", " [\"Amar'e Stoudemire plays for .\"],\n", " ['Nuri Şahin plays for .'],\n", " ['Hugo Lloris plays for .'],\n", " ['Morgan Schneiderlin plays for .'],\n", " ['Thomas Vermaelen plays for .'],\n", " ['Henrikh Mkhitaryan plays for .'],\n", " ['Ryan Babel plays for .'],\n", " ['Aron Baynes plays for .'],\n", " ['Johan Djourou plays for .'],\n", " ['Kevin De Bruyne plays for .'],\n", " ['Túlio Maravilha plays for .'],\n", " ['Idriss Carlos Kameni plays for .'],\n", " ['Fernando Llorente plays for .'],\n", " ['André Greipel plays for .'],\n", " ['Boris Diaw plays for .'],\n", " ['Anja Mittag plays for .'],\n", " ['Joakim Noah plays for .'],\n", " ['Ricky Rubio plays for .'],\n", " ['Stephan Andersen plays for .'],\n", " ['Ezequiel Lavezzi plays for .'],\n", " [\"Andrés D'Alessandro plays for .\"],\n", " ['Claudio Bravo plays for .'],\n", " ['Rafinha plays for .'],\n", " ['Blaise Matuidi plays for .'],\n", " ['Cristian Rodríguez plays for .'],\n", " ['Marek Hamšík plays for .'],\n", " ['Ciro Immobile plays for .'],\n", " [\"Dame N'Doye plays for .\"],\n", " ['Raphaël Varane plays for .'],\n", " ['Roger Kluge plays for .'],\n", " ['Asmir Begović plays for .'],\n", " ['Neven Subotić plays for .'],\n", " ['Christian Eriksen plays for .'],\n", " ['Hamit Altıntop plays for .'],\n", " ['Brad Guzan plays for .'],\n", " ['André Ayew plays for .'],\n", " ['César Azpilicueta plays for .'],\n", " ['Éric Maxim Choupo-Moting plays for .'],\n", " ['Shkodran Mustafi plays for .'],\n", " ['Caroline Seger plays for .'],\n", " ['Fernando Muslera plays for .'],\n", " ['Leonardo Bonucci plays for .'],\n", " ['Nordin Amrabat plays for .'],\n", " ['Richard Kingson plays for .'],\n", " ['Jonny Evans plays for .'],\n", " ['Jonathan de Guzmán plays for .'],\n", " ['Yannick Bolasie plays for .'],\n", " ['Dante Bonfim Costa Santos plays for .'],\n", " ['Daniele De Rossi plays for .'],\n", " ['Park Chu-young plays for .'],\n", " ['Lucas Hernandez plays for .'],\n", " ['Klaas-Jan Huntelaar plays for .'],\n", " ['Sonny Bill Williams plays for .'],\n", " ['Sydney Leroux plays for .'],\n", " ['Victor Moses plays for .'],\n", " ['Elano plays for .'],\n", " ['Asamoah Gyang plays for .'],\n", " ['Grzegorz Krychowiak plays for .'],\n", " ['Vasil Kiryienka plays for .'],\n", " ['Achraf Hakim plays for .'],\n", " ['John Guidetti plays for .'],\n", " ['Salomon Kalou plays for .'],\n", " ['Karen Bardsley plays for .'],\n", " ['Cédric Soares plays for .'],\n", " ['Dietmar Hamann plays for .'],\n", " ['Mark Milligan plays for .'],\n", " ['Yūki Nagasato plays for .'],\n", " ['Pedro plays for .'],\n", " ['Jack Wilshere plays for .'],\n", " ['Albert Riera plays for .'],\n", " ['Florent Malouda plays for .'],\n", " ['Medhi Benatia plays for .'],\n", " ['Maicon plays for .'],\n", " ['Giuseppe Rossi plays for .'],\n", " ['Samir Nasri plays for .'],\n", " ['Andrija Kaluđerović plays for .'],\n", " ['Emre Belözoğlu plays for .'],\n", " ['Sarah Storey plays for .'],\n", " ['Daniel Martin plays for .'],\n", " ['Nairo Quintana plays for .'],\n", " ['Leroy Sané plays for .'],\n", " ['Eiji Kawashima plays for .'],\n", " ['Ana Dabović plays for .'],\n", " ['Carlos Sánchez plays for .'],\n", " ['Bryan Ruiz plays for .'],\n", " ['Steve Cummings plays for .'],\n", " ['Gabriel Torres plays for .'],\n", " ['Éver Banega plays for .'],\n", " ['Simon Kjær plays for .'],\n", " ['Willy Caballero plays for .'],\n", " ['Vince Carter plays for .'],\n", " ['Sergio Rodríguez plays for .'],\n", " ['Luuk de Jong plays for .'],\n", " ['Eduardo Vargas plays for .'],\n", " ['Ivan Perišić plays for .'],\n", " ['Diego Benaglio plays for .'],\n", " ['Michał Kwiatkowski plays for .'],\n", " ['Diego Reyes plays for .'],\n", " ['Lars Hirschfeld plays for .'],\n", " ['Abby Dahlkemper plays for .'],\n", " ['Daley Blind plays for .'],\n", " ['Roko Ukić plays for .'],\n", " ['Gélson Fernandes plays for .'],\n", " ['Pablo Contreras plays for .'],\n", " ['Nando de Colo plays for .'],\n", " ['Steph Houghton plays for .'],\n", " ['Ramires plays for .'],\n", " ['Jermain Defoe plays for .'],\n", " ['Divock Origi plays for .'],\n", " ['el tete plays for .'],\n", " ['Maxi López plays for .'],\n", " ['Maximiliano Richeze plays for .'],\n", " ['Ashleigh Barty plays for .'],\n", " ['Paulinho plays for .'],\n", " ['Curao Ql plays for .'],\n", " ['Marquinhos plays for .'],\n", " ['Julie Ertz plays for .'],\n", " ['Sebastián Eguren plays for .'],\n", " ['Marco Fabián plays for .'],\n", " ['Edvald Boasson-Hagen plays for .'],\n", " ['João Moutinho plays for .'],\n", " ['İlkay Gündoğan plays for .'],\n", " ['Gary Medel plays for .'],\n", " ['Karim Ziani plays for .'],\n", " ['Christian Bolaños plays for .'],\n", " ['Gonzalo Jara plays for .'],\n", " ['David De Gea plays for .'],\n", " ['Daniel Sturridge plays for .'],\n", " ['Esteban Cambiasso plays for .'],\n", " ['Gabriel Enrique Gómez plays for .'],\n", " ['Douglas Costa plays for .'],\n", " ['Ezequiel Garay plays for .'],\n", " ['Michy Batshuayi plays for .'],\n", " ['Yakubu plays for .'],\n", " ['José Fonte plays for .'],\n", " ['Rui Costa plays for .'],\n", " ['Salvatore Sirigu plays for .'],\n", " ['Roman Kreuziger plays for .'],\n", " ['Kasper Schmeichel plays for .'],\n", " ['Roman Bürki plays for .'],\n", " ['Víctor Claver plays for .'],\n", " ['Arkadiusz Milik plays for .'],\n", " ['Daniel Ricciardo plays for .'],\n", " ['Thomas Delaney plays for .'],\n", " ['Kevin Love plays for .'],\n", " ['Stéphane Mbia plays for .'],\n", " ['Tatiana Guderzo plays for .'],\n", " ['André Schürrle plays for .'],\n", " ['Martín Demichelis plays for .'],\n", " ['Siraba Dembele plays for .'],\n", " ['Damian Lillard plays for .'],\n", " ['Richie Porte plays for .'],\n", " ['Sébastien Haller plays for .'],\n", " ['Edin Džeko plays for .'],\n", " ['Daisuke Matsui plays for .'],\n", " ['José Sosa plays for .'],\n", " ['Nelson Valdez plays for .'],\n", " ['Alexander Kristoff plays for .'],\n", " ['Luis Advíncula plays for .'],\n", " ['Danilo Pereira plays for .'],\n", " [\"N'Golo Kanté plays for .\"],\n", " ['Duško Tošić plays for .'],\n", " ['Ricardo Rodriguez plays for .'],\n", " ['Shane Smeltz plays for .'],\n", " ['Marcelo Martins Moreno plays for .'],\n", " ['Peter Crouch plays for .'],\n", " ['Simon Gerrans plays for .'],\n", " ['Mark González plays for .'],\n", " ['Kevin Mirallas plays for .'],\n", " ['Gervinho plays for .'],\n", " ['Alex Song plays for .'],\n", " ['Glenn Whelan plays for .'],\n", " ['Raul Meireles plays for .'],\n", " ['Ali Riley plays for .'],\n", " ['Anthony Davis plays for .'],\n", " ['Sani Kaita plays for .'],\n", " ['Christie Pearce plays for .'],\n", " ['Luís Fabiano plays for .'],\n", " ['Jan Vertonghen plays for .'],\n", " ['Thiago Alcântara plays for .'],\n", " ['João Mário plays for .'],\n", " ['Alisson plays for .'],\n", " ['Fridolina Rolfö plays for .'],\n", " ['Wout van Aert plays for .'],\n", " ['Alphonse Areola plays for .'],\n", " ['Mousa Dembélé plays for .'],\n", " ['Babett Peter plays for .'],\n", " ['Fabiana da Silva Simões plays for .'],\n", " ['Blerim Džemaili plays for .'],\n", " ['Adriana Leon plays for .'],\n", " ['Naohiro Takahara plays for .'],\n", " ['oscar perez plays for .'],\n", " ['Gaël Kakuta plays for .'],\n", " ['Isco Alarcón plays for .'],\n", " ['Gabriel Tamaș plays for .'],\n", " ['Jaroslav Drobný plays for .'],\n", " ['Raheem Sterling plays for .'],\n", " ['Samuel Umtiti plays for .'],\n", " ['Amido Baldé plays for .'],\n", " ['Brad Jones plays for .'],\n", " ['Miguel Layún plays for .'],\n", " ['Jan Koller plays for .'],\n", " ['Dmitri Alenichev plays for .'],\n", " ['Marco Asensio plays for .'],\n", " ['Michael Mørkøv plays for .'],\n", " ['Kendall Waston plays for .'],\n", " ['Milan Borjan plays for .'],\n", " ['Kamil Glik plays for .'],\n", " ['Roman Neustädter plays for .'],\n", " ['Marcelo Díaz plays for .'],\n", " ['Jesé Rodríguez plays for .'],\n", " ['Roberto Acuña plays for .'],\n", " ['Ricardo Faty plays for .'],\n", " ['Verónica Boquete plays for .'],\n", " ['Danilo Luiz plays for .'],\n", " ['Olga Zabelinskaya plays for .'],\n", " ['James Harden plays for .'],\n", " ['Russell Westbrak plays for .'],\n", " ['Jung Sung-ryong plays for .'],\n", " ['Melissa Tancredi plays for .'],\n", " ['Daryl Impey plays for .'],\n", " ['Henrik Ojamaa plays for .'],\n", " ['Leon Goretzka plays for .'],\n", " ['Pablo Hernández Domínguez plays for .'],\n", " ['Tomáš Necid plays for .'],\n", " ['Joseph Yobo plays for .'],\n", " ['Rafał Majka plays for .'],\n", " ['Bruma plays for .'],\n", " ['Samuel Inkoom plays for .'],\n", " ['Robbie Rogers plays for .'],\n", " ['Robert de Pinho de Souza plays for .'],\n", " ['Georges Mandjeck plays for .'],\n", " ['Lucho González plays for .'],\n", " ['Paul-Georges Ntep plays for .'],\n", " ['Ander Herrera plays for .'],\n", " ['Luis León Sánchez plays for .'],\n", " ['Érika Cristiano dos Santos plays for .'],\n", " ['Kingsley Coman plays for .'],\n", " ['Aymeric Laporte plays for .'],\n", " ['Primož Roglič plays for .'],\n", " ['Charles Aránguiz plays for .'],\n", " ['Julian Alaphilippe plays for .'],\n", " ['André Silva plays for .'],\n", " ['Pauline Ferrand-Prevot plays for .'],\n", " ['Elton Brand plays for .'],\n", " ['Nikita Rukavytsya plays for .'],\n", " ['Marc-André ter Stegen plays for .'],\n", " ['Steven Davis plays for .'],\n", " ['Anderson plays for .'],\n", " ['Matthias Ginter plays for .'],\n", " ['Haris Seferovic plays for .'],\n", " ['Rui Patrício plays for .'],\n", " ['Wojciech Szczęsny plays for .'],\n", " ['Rúrik Gíslason plays for .'],\n", " ['Oscar dos Santos Emboaba Júnior plays for .'],\n", " ['Koo Ja-cheol plays for .'],\n", " ['Lucy Bronze plays for .'],\n", " ['Crystal Dunn plays for .'],\n", " ['Toby Alderweireld plays for .'],\n", " ['Penalty in the UEL final plays for .'],\n", " ['Joe Hart plays for .'],\n", " ['Kepa Arrizabalaga plays for .'],\n", " ['Giannis Antetokounmpo plays for .'],\n", " ['Besart Berisha plays for .'],\n", " ['Willian plays for .'],\n", " ['Obafemi Martins plays for .'],\n", " ['Moussa Maâzou plays for .'],\n", " ['Alexei Eremenko plays for .'],\n", " ['Moussa Dembélé plays for .'],\n", " ['Ashlyn Harris plays for .'],\n", " ['Chris Wood plays for .'],\n", " ['Reto Ziegler plays for .'],\n", " ['Antonio Nocerino plays for .'],\n", " ['Juanfran Torres plays for .'],\n", " ['Fernando Gago plays for .'],\n", " ['Ji Dong-won plays for .'],\n", " ['Carlos Salcido plays for .'],\n", " ['Oribe Peralta plays for .'],\n", " ['Marco Ureña plays for .'],\n", " ['Antar Yahia plays for .'],\n", " ['Georginio Wijnaldum plays for .'],\n", " ['Sam Kerr plays for .'],\n", " ['Martín Cáceres plays for .'],\n", " ['Valeri Bojinov plays for .'],\n", " ['Luis Tejada plays for .'],\n", " ['Gökhan İnler plays for .'],\n", " ['Javi García plays for .'],\n", " ['Nicolás Lodeiro plays for .'],\n", " ['Raúl Jiménez plays for .'],\n", " ['Janine Beckie plays for .'],\n", " ['Arda Turan plays for .'],\n", " ['Selim Benachour plays for .'],\n", " ['Mickaël Gelabale plays for .'],\n", " ['Daniel González Güiza plays for .'],\n", " ['John Mensah plays for .'],\n", " ['Federico Fazio plays for .'],\n", " ['Carl Medjani plays for .'],\n", " ['Ahmed Musa plays for .'],\n", " ['Essam El-Hadary plays for .'],\n", " ['Vedad Ibišević plays for .'],\n", " ['Marouane Fellaini plays for .'],\n", " ['Miralem Pjanić plays for .'],\n", " ['Jorginho plays for .'],\n", " ['Lacina Traoré plays for .'],\n", " ['Christiane Endler plays for .'],\n", " ['Alyssa Naeher plays for .'],\n", " ['Steven Nzonzi plays for .'],\n", " ['Kim Dong-jin plays for .'],\n", " ['Joshua Kimmich plays for .'],\n", " ['Emre Can plays for .'],\n", " ['Nicolas Batum plays for .'],\n", " ['José Calderón plays for .'],\n", " ['Emiliano Insúa plays for .'],\n", " ['Stephan El Shaarawy plays for .'],\n", " ['Casemiro plays for .'],\n", " ['Júnior Díaz plays for .'],\n", " ['Jodie Taylor plays for .'],\n", " ['Robin Olsen plays for .'],\n", " ['Héctor Herrera plays for .'],\n", " ['Sebastian Giovinco plays for .'],\n", " ['Rodrigo plays for .'],\n", " ['Fernando Gaviria plays for .'],\n", " ['Oleksandr Aliyev plays for .'],\n", " ['Florian Thauvin plays for .'],\n", " ['Kim Bo-kyung plays for .'],\n", " ['Abel Hernández plays for .'],\n", " ['Thorgan Hazard plays for .'],\n", " ['Gotoku Sakai plays for .'],\n", " ['Odion Ighalo plays for .'],\n", " ['Jasmin Glaesser plays for .'],\n", " ['Felipe Melo plays for .'],\n", " ['Gábor Király plays for .'],\n", " ['Herculez Gomez plays for .'],\n", " ['Paulo da Silva plays for .'],\n", " ['Héctor Moreno plays for .'],\n", " ['Aliaksandr Hleb plays for .'],\n", " ['Cacau plays for .'],\n", " ['Ion Izagirre plays for .'],\n", " ['Denis Cheryshev plays for .'],\n", " ['Anthony Annan plays for .'],\n", " ['Darius Songaila plays for .'],\n", " ['Morgan De Sanctis plays for .'],\n", " ['Joe Ingles plays for .'],\n", " ['Paco Alcácer plays for .'],\n", " ['Sara Däbritz plays for .'],\n", " ['Nikola Mirotić plays for .'],\n", " ['Adlène Guedioura plays for .'],\n", " ['Fábio Coentrão plays for .'],\n", " ['Scott Carson plays for .'],\n", " ['Granit Xhaka plays for .'],\n", " ['Ashkan Dejagah plays for .'],\n", " ['Derrick Rose plays for .'],\n", " ['Yevhen Seleznyov plays for .'],\n", " ['Makoto Hasebe plays for .'],\n", " ['William Troost-Ekong plays for .'],\n", " ['Mauro Zárate plays for .'],\n", " ['Seydou Doumbia plays for .'],\n", " ['Tomáš Pekhart plays for .'],\n", " ['Jeffrén Suárez plays for .'],\n", " ['Kurt Zouma plays for .'],\n", " ['Nicolás Otamendi plays for .'],\n", " ['Hiroki Sakai plays for .'],\n", " ['Geoffrey Kondogbia plays for .'],\n", " ['Antonio Rüdiger plays for .'],\n", " ['Danko Lazović plays for .'],\n", " ['Admir Mehmedi plays for .'],\n", " ['Javier Aquino plays for .'],\n", " ['Kelsey Plum plays for .'],\n", " ['Teemu Pukki plays for .'],\n", " ['Grafite plays for .'],\n", " ['Lisa Brennauer plays for .'],\n", " ['Dejan Lovren plays for .'],\n", " ['Niki Terpstra plays for .'],\n", " ['Marcelinho Paraíba plays for .'],\n", " ['Mix Diskerud plays for .'],\n", " ['Alexander Sørloth plays for .'],\n", " ['Manuel Fernandes plays for .'],\n", " ['Marek Saganowski plays for .'],\n", " ['Gabriel Barbosa plays for .'],\n", " ['Besart Abdurahimi plays for .'],\n", " ['Matthew Spiranovic plays for .'],\n", " ['Josip Tadić plays for .'],\n", " ['Younis Mahmoud plays for .'],\n", " ['Jordan Ayew plays for .'],\n", " ['Sokratis Papastathopoulos plays for .'],\n", " ['Martin Hansen plays for .'],\n", " ['Pierre Bengtsson plays for .'],\n", " ['Taye Taiwo plays for .'],\n", " ['David Carney plays for .'],\n", " ['Ángel Guirado plays for .'],\n", " ['Roberto Jiménez Gago plays for .'],\n", " ['Karen Carney plays for .'],\n", " ['Amin Younes plays for .'],\n", " ['Javier Balboa plays for .'],\n", " ['Francisco Javier Rodríguez plays for .'],\n", " ['Éder plays for .'],\n", " ['Daniëlle van de Donk plays for .'],\n", " ['Reza Ghoochannejhad plays for .'],\n", " ['Kaylyn Kyle plays for .'],\n", " ['André Lotterer plays for .'],\n", " ['Daniel Wass plays for .'],\n", " ['Matías Fernandez plays for .'],\n", " ['Harry Kane plays for .'],\n", " ['Son Heung-min plays for .'],\n", " ['Jhonny Acosta plays for .'],\n", " ['Cléopatre Darleux plays for .'],\n", " ['Tony Gallopin plays for .'],\n", " ['Yann Sommer plays for .'],\n", " ['Eniola Aluko plays for .'],\n", " ['Tyson Chandler plays for .'],\n", " ['Anthony Martial plays for .'],\n", " ['Greg Henderson plays for .'],\n", " ['Kiko Casillas plays for .'],\n", " ['Nilla Fischer plays for .'],\n", " ['Leon Balogun plays for .'],\n", " ['James Milner plays for .'],\n", " ['Cameron Meyer plays for .'],\n", " ['Benjamin Pavard plays for .'],\n", " ['Luís Leal plays for .'],\n", " ['Renato Sanches plays for .'],\n", " ['Mathew Ryan plays for .'],\n", " ['Shuichi Gonda plays for .'],\n", " ['Pierre-Emile Højbjerg plays for .'],\n", " ['Simon Mignolet plays for .'],\n", " ['Ben Sahar plays for .'],\n", " ['Mana Iwabuchi plays for .'],\n", " ['Desiree Scott plays for .'],\n", " ['Quinn plays for .'],\n", " ['Viktor Fischer plays for .'],\n", " ['Ron-Robert Zieler plays for .'],\n", " ['Alex Sandro plays for .'],\n", " ['Damien Le Tallec plays for .'],\n", " ['Tiago Mendes plays for .'],\n", " ['Martin Ødegaard plays for .'],\n", " ['Salvatore Bocchetti plays for .'],\n", " ['Olarenwaju Kayode plays for .'],\n", " ['Fraser Forster plays for .'],\n", " ['Corentin Tolisso plays for .'],\n", " ['Walter Pandiani (CR7 su papá) plays for .'],\n", " ['Justo Villar plays for .'],\n", " ['Francisco Arrué plays for .'],\n", " ['Abel Aguilar plays for .'],\n", " ['Esmaël Gonçalves plays for .'],\n", " ['Marvin Ogunjimi plays for .'],\n", " ['Sulley Muntari plays for .'],\n", " ['Izet Hajrović plays for .'],\n", " ['Ichiro Suzuki plays for .'],\n", " ['Ragnar Klavan plays for .'],\n", " ['Didier Zokora plays for .'],\n", " ['Oscar Ustari plays for .'],\n", " ['Mitchell Langerak plays for .'],\n", " ['Yassine Bounou plays for .'],\n", " ['Hakim Ziyech plays for .'],\n", " ['Lydia Williams plays for .'],\n", " ['Gabriel Jesus plays for .'],\n", " ['Álvaro Fernández plays for .'],\n", " ['Abdoulaye Ba plays for .'],\n", " ['Julian Draxler plays for .'],\n", " ['Stoycho Mladenov plays for .'],\n", " ['Raphaël Guerreiro plays for .'],\n", " ['Simão Sabrosa plays for .'],\n", " ['Anouk Hoogendijk plays for .'],\n", " ['Emanuel Pogatetz plays for .'],\n", " ['Yannick Carrasco plays for .'],\n", " ['Marko Arnautović plays for .'],\n", " ['Bruno Uvini plays for .'],\n", " ['Lukáš Hrádecký plays for .'],\n", " ['Charles Itandje plays for .'],\n", " ['Ján Mucha plays for .'],\n", " ['Florent Piétrus plays for .'],\n", " ['Riyad Mahrez plays for .'],\n", " ['Lasse Norman Hansen plays for .'],\n", " ['Nikos Zisis plays for .'],\n", " ['Alou Diarra plays for .'],\n", " ['Przemysław Tytoń plays for .'],\n", " ['Lucas Moura plays for .'],\n", " ['Álvaro Morata plays for .'],\n", " ['Amandine Henry plays for .'],\n", " ['Jefferson Farfán plays for .'],\n", " ['Martin Braithwaite plays for .'],\n", " ['Tom Heaton plays for .'],\n", " ['Carlos Salcedo plays for .'],\n", " ['Gabriel Torje plays for .'],\n", " ['Emily van Egmond plays for .'],\n", " ['Simon Clarke plays for .'],\n", " ['Elias Kachunga plays for .'],\n", " ['Adrián López Álvarez plays for .'],\n", " ['Maurice Edu plays for .'],\n", " ['Hatem Ben Arfa plays for .'],\n", " ['Nelson Oliveira plays for .'],\n", " ['Aco Stojkov plays for .'],\n", " ['Charlie Davies plays for .'],\n", " ['Carlos Fernandes plays for .'],\n", " ['Thaisa plays for .'],\n", " ['Álvaro Saborío plays for .'],\n", " ['Gabriel Cichero plays for .'],\n", " ['Fernandinho plays for .'],\n", " ['Vladimir Gabulov plays for .'],\n", " ['Taylor Rochestie plays for .'],\n", " ['Sven Bender plays for .'],\n", " ['Matías Aguirregaray plays for .'],\n", " ['Wilfried Zaha plays for .'],\n", " ['Ibrahim Afellay plays for .'],\n", " ['Mateo Kovačić plays for .'],\n", " ['Nathan Jawai plays for .'],\n", " ['Marc Bartra plays for .'],\n", " ['Éric Djemba-Djemba plays for .'],\n", " ['Tarik Elyounoussi plays for .'],\n", " ['Yacine Brahimi plays for .'],\n", " ['Omar Bravo plays for .'],\n", " ['Yuri Zhirkov plays for .'],\n", " ['Antonio Valencia plays for .'],\n", " ['Kenneth Vermeer plays for .'],\n", " ['Dmytro Chyhrynskyi plays for .'],\n", " ['Robert Kubica plays for .'],\n", " ['Juan Manuel Iturbe plays for .'],\n", " ['Julian de Guzman plays for .'],\n", " ['Alexander Merkel plays for .'],\n", " ['Roman Eremenko plays for .'],\n", " ['Lars Bender plays for .'],\n", " ['Suk Hyun-jun plays for .'],\n", " ['Emre Mor plays for .'],\n", " ['Zoran Tošić plays for .'],\n", " ['Jonathan dos Santos plays for .'],\n", " ['Jonathan Mensah plays for .'],\n", " ['Enzo Fernández plays for .'],\n", " ['Kim Young-gwon plays for .'],\n", " ['Oscar Pérez Rojas plays for .'],\n", " ['Astrit Ajdarević plays for .'],\n", " ['Rolf Feltscher plays for .'],\n", " ['Vedran Ćorluka plays for .'],\n", " ['Darren Randolph plays for .'],\n", " ['Ivan Pelizzoli plays for .'],\n", " ['Radomir Đalović plays for .'],\n", " ['Adam Nemec plays for .'],\n", " ['Kristie Mewis plays for .'],\n", " ['Hannes Þór Halldórsson plays for .'],\n", " ['Valon Berisha plays for .'],\n", " ['Marco Donadel plays for .'],\n", " ['Ola Toivonen plays for .'],\n", " ['Winston Reid plays for .'],\n", " ['Max Kruse plays for .'],\n", " ['Saki Kumagai plays for .'],\n", " ['Branko Ilić plays for .'],\n", " ['Răzvan Raț plays for .'],\n", " ['Robert Snodgrass plays for .'],\n", " ['Viola plays for .'],\n", " ['Klay Thompson plays for .'],\n", " ['Stefan Nikolić plays for .'],\n", " ['Carlos Sainz Jr plays for .'],\n", " ['Andressa Alves da Silva plays for .'],\n", " ['Álvaro Negredo plays for .'],\n", " ['Michail Antonio plays for .'],\n", " ['José Bosingwa plays for .'],\n", " ['Atsuto Uchida plays for .'],\n", " ['Lisa Dahlkvist plays for .'],\n", " ['James Troisi plays for .'],\n", " ['Yacouba Sylla plays for .'],\n", " ['Simon Vukčević plays for .'],\n", " ['Cristian Gamboa plays for .'],\n", " ['Elisa Longo Borghini plays for .'],\n", " ['Roberto Soldado plays for .'],\n", " ['Diana Matheson plays for .'],\n", " ['Steven Caulker plays for .'],\n", " ['Ibrahima Baldé plays for .'],\n", " ['Roland Lamah plays for .'],\n", " ['Max Meyer plays for .'],\n", " ['Mbark Boussoufa plays for .'],\n", " ['Achille Emaná plays for .'],\n", " ['Patrice Bernier plays for .'],\n", " ['Ivan Vicelich plays for .'],\n", " ['Islam Slimani plays for .'],\n", " ['Dani Ceballos plays for .'],\n", " ['Lucas Digne plays for .'],\n", " ['Nemanja Matić plays for .'],\n", " ['Andreas Pereira plays for .'],\n", " ['Franck Dja Djédjé plays for .'],\n", " ['Ethan Ampadu plays for .'],\n", " ['R.A. Dickey plays for .'],\n", " ['Mike Havenaar plays for .'],\n", " ['Ryan Bertrand plays for .'],\n", " ['Ed Clancy plays for .'],\n", " ['Holger Badstuber plays for .'],\n", " ['Cristian Săpunaru plays for .'],\n", " ['Elinton Andrade plays for .'],\n", " ['Siem de Jong plays for .'],\n", " ['Carlos Bueno plays for .'],\n", " ['Loïc Rémy plays for .'],\n", " ['Kozue Ando plays for .'],\n", " ['Jimmy Durmaz plays for .'],\n", " ['Rafael Pereira da Silva plays for .'],\n", " ['Óscar Duarte plays for .'],\n", " ['Michael Hector plays for .'],\n", " ['Alex McCarthy plays for .'],\n", " ['Dzsenifer Marozsán plays for .'],\n", " ['Fabio Aru plays for .'],\n", " ['Sacha Kljestan plays for .'],\n", " ['Sofiane Feghouli plays for .'],\n", " ['Emerson Palmieri plays for .'],\n", " ['Hristijan Kirovski plays for .'],\n", " ['Santiago Cazorla plays for .'],\n", " ['Melanie Behringer plays for .'],\n", " ['Stephan Lichtsteiner plays for .'],\n", " ['Hugo Vieira plays for .'],\n", " ['Hernanes plays for .'],\n", " ['Isabelle Yacoubou plays for .'],\n", " ['Mauricio Isla plays for .'],\n", " ['Hakan Çalhanoğlu plays for .'],\n", " ['Douglas dos Santos plays for .'],\n", " ['Sinan Bolat plays for .'],\n", " ['Esteban Chaves plays for .'],\n", " ['Marcos Lopes plays for .'],\n", " ['J. J. Barea plays for .'],\n", " ['Mario Suárez Mata plays for .'],\n", " ['Stine Bredal Oftedal plays for .'],\n", " ['Njazi Kuqi plays for .'],\n", " ['Jesús Navas plays for .'],\n", " ['Shane Duffy plays for .'],\n", " ['Willy Hernangómez plays for .'],\n", " ['Richard Keogh plays for .'],\n", " ['Rafael Bastos plays for .'],\n", " ['Carlos Beltrán plays for .'],\n", " ['Nelson Cruz plays for .'],\n", " ['Fiodor Smolov plays for .'],\n", " ['Boban Marjanović plays for .'],\n", " ['Fabián Carini plays for .'],\n", " ['Shelina Zadorsky plays for .'],\n", " ['Pavel Pogrebnyak plays for .'],\n", " ['Goran Pandev plays for .'],\n", " ['Marc Janko plays for .'],\n", " ['Jamal Alioui plays for .'],\n", " ['Mohammadou Idrissou plays for .'],\n", " ['Ousmane Dembélé plays for .'],\n", " ['Gordon Schildenfeld plays for .'],\n", " ['Bauke Mollema plays for .'],\n", " ['Kalu Uche plays for .'],\n", " ['Burak Yılmaz plays for .'],\n", " ['Jimmy Butler plays for .'],\n", " ['Eduardo da Silva plays for .'],\n", " ['Jefferson Louis plays for .'],\n", " ['Diomansy Kamara plays for .'],\n", " [\"Franck Songo'o plays for .\"],\n", " ['Marco Rojas plays for .'],\n", " ['Aarón Ñíguez plays for .'],\n", " ['Victor Lindelöf plays for .'],\n", " ['Iván Kaviedes plays for .'],\n", " ['Nikola Kalinić plays for .'],\n", " ['Jajá plays for .'],\n", " ['Iván Zarandona plays for .'],\n", " ['DeAndre Yedlin plays for .'],\n", " ['Ikechi Anya plays for .'],\n", " ['Anthony Lopes plays for .'],\n", " ['Clemente Rodríguez plays for .'],\n", " ['Jan Oblak plays for .'],\n", " ['Ritchie De Laet plays for .'],\n", " ['Lassana Diarra plays for .'],\n", " ['Fatos Bećiraj plays for .'],\n", " ['Kalidou Koulibaly plays for .'],\n", " ['Kostas Mitroglou plays for .'],\n", " ['Yohan Cabaye plays for .'],\n", " ['Mario Lemina plays for .'],\n", " ['Mindaugas Kalonas plays for .'],\n", " ['Édouard Mendy plays for .'],\n", " ['Giovanni Sio plays for .'],\n", " ['Tijani Belaïd plays for .'],\n", " ['Park Joo-ho plays for .'],\n", " ['Emir Spahić plays for .'],\n", " ['Nikica Jelavić plays for .'],\n", " ['Erich Brabec plays for .'],\n", " ['Christian Cueva plays for .'],\n", " ['Yevhen Konoplyanka plays for .'],\n", " ['Paulo Dybala plays for .'],\n", " ['Emanuel Herrera plays for .'],\n", " ['Ludovic Obraniak plays for .'],\n", " ['Kleyr Vieira dos Santos plays for .'],\n", " ['Andriy Yakovlev plays for .'],\n", " ['DeMarcus Cousins plays for .'],\n", " ['Ross McCormack plays for .'],\n", " ['Taylor Phinney plays for .'],\n", " ['Maksim Shatskikh plays for .'],\n", " ['Abby Erceg plays for .'],\n", " ['Yukiya Arashiro plays for .'],\n", " ['Magaye Gueye plays for .'],\n", " ['Jason Denayer plays for .'],\n", " [\"Jolien D'Hoore plays for .\"],\n", " ['Marco Reus plays for .'],\n", " ['Michael Matthews plays for .'],\n", " ['Halil Altıntop plays for .'],\n", " ['Diego Tardelli plays for .'],\n", " ['John Alvbåge plays for .'],\n", " ['Isaac Promise plays for .'],\n", " ['Estelle Nze Minko plays for .'],\n", " ['Sergio Henao plays for .'],\n", " ['Andriy Yarmolenko plays for .'],\n", " ['Kamil Grosicki plays for .'],\n", " ['Fabinho plays for .'],\n", " ['Ishak Belfodil plays for .'],\n", " ['Tosaint Ricketts plays for .'],\n", " ['Linda Sembrant plays for .'],\n", " ['Tuncay Şanlı plays for .'],\n", " ['Hameur Bouazza plays for .'],\n", " ['Vladimír Weiss plays for .'],\n", " ['Bernard Mendy plays for .'],\n", " ['Matt Miazga plays for .'],\n", " ['Marcos Alonso plays for .'],\n", " ['Liassine Cadamuro plays for .'],\n", " ['Adam Federici plays for .'],\n", " ['Akaki Khubutia plays for .'],\n", " ['Miloš Teodosić plays for .'],\n", " ['Ellen White plays for .'],\n", " ['Román Torres plays for .'],\n", " ['Brown Ideye plays for .'],\n", " ['Trixi Worrack plays for .'],\n", " ['Sead Kolašinac plays for .'],\n", " ['Bernardo Silva plays for .'],\n", " ['Nils Petersen plays for .'],\n", " ['Oriol Romeu plays for .'],\n", " ['Adolfo Machado plays for .'],\n", " ['Filipe Machado Nascimento plays for .'],\n", " ['Rubén Iván Martínez plays for .'],\n", " ['Josephine Henning plays for .'],\n", " ['Dani Carvajal plays for .'],\n", " ['Joël Matip plays for .'],\n", " ['Marcus Berg plays for .'],\n", " ['Julio César de León plays for .'],\n", " ['Salomón Rondón plays for .'],\n", " ['Hajime Hosogai plays for .'],\n", " ['Edgar Ié plays for .'],\n", " ['Martín Montoya plays for .'],\n", " ['Lucas Piazón plays for .'],\n", " ['Markus Rosenberg plays for .'],\n", " ['Ognjen Vranješ plays for .'],\n", " ['Róbinson Zapata plays for .'],\n", " ['Sébastien Pocognoli plays for .'],\n", " ['Anders Lindegaard plays for .'],\n", " ['Jordan Henderson plays for .'],\n", " ['Josip Drmić plays for .'],\n", " ['Aleksandr Kokorin plays for .'],\n", " ['Juan Bernat plays for .'],\n", " ['Miranda plays for .'],\n", " ['Egan Bernal plays for .'],\n", " ['Camille Abily plays for .'],\n", " ['Stefan Maierhofer plays for .'],\n", " ['Matthieu Dossevi plays for .'],\n", " ['Bafétimbi Gomis plays for .'],\n", " ['Ignatas Konovalovas plays for .'],\n", " ['Karina Maruyama plays for .'],\n", " ['Adreian Payne plays for .'],\n", " ['Enzo Maresca plays for .'],\n", " ['Tomáš Vaclík plays for .'],\n", " ['Zack Steffen plays for .'],\n", " ['Ricardo Clark plays for .'],\n", " ['Ricardo Oliveira plays for .'],\n", " ['Yun Suk-young plays for .'],\n", " ['Giannelli Imbula plays for .'],\n", " ['Lorenzo Insigne plays for .'],\n", " ['Albert Bunjaku plays for .'],\n", " ['Victor Obinna plays for .'],\n", " ['William Carvalho plays for .'],\n", " ['Miguel Veloso plays for .'],\n", " ['Felipe Anderson plays for .'],\n", " ['Isaac Cuenca plays for .'],\n", " ['Luis Antonio Jiménez plays for .'],\n", " ['Curtis Davies plays for .'],\n", " ['Dan Ito plays for .'],\n", " ['Odysseas Vlachodimos plays for .'],\n", " ['Eljero Elia plays for .'],\n", " ['Fernando Amorebieta plays for .'],\n", " ['Renato Augusto plays for .'],\n", " ['Milan Mačvan plays for .'],\n", " ['Vivianne Miedema plays for .'],\n", " ['Fabian Schär plays for .'],\n", " ['Ashleigh Moolman-Pasio plays for .'],\n", " ['Marcus Rashford plays for .'],\n", " ['André Gomes plays for .'],\n", " ['Dominique Malonga plays for .'],\n", " ['Max Verstappen plays for .'],\n", " ...],\n", " 'labels': [[[\" United States women's national soccer team\"]],\n", " [[' FC Barcelona']],\n", " [[' Juventus F.C.']],\n", " [[' Los Angeles Lakers']],\n", " [[' Lotto Belisol Ladies']],\n", " [[' A.C. Milan']],\n", " [[' Brazil national football team']],\n", " [[' Independiente Santa Fe']],\n", " [[' OL Reign']],\n", " [[\" Spain men's national basketball team\"]],\n", " [[' West Ham United F.C.']],\n", " [[' FC Bayern Munich']],\n", " [[' Juventus F.C.']],\n", " [[' New York City FC']],\n", " [[' Brooklyn Nets']],\n", " [[' Vissel Kobe']],\n", " [[' F.C. Porto']],\n", " [[' Mercedes']],\n", " [[' São José Esporte Clube']],\n", " [[' Japan Fed Cup team']],\n", " [[' Juventus F.C.']],\n", " [[' FC Barcelona']],\n", " [[' FC Bayern Munich']],\n", " [[' Zhejiang Professional F.C.']],\n", " [[' Ineos Grenadiers']],\n", " [[' Brescia Calcio']],\n", " [[' FC Barcelona Femení']],\n", " [[' FC Bayern Munich']],\n", " [[\" United States women's national soccer team\"]],\n", " [[' Hebei F.C.']],\n", " [[' Qhubeka Assos']],\n", " [[' Colombia national football team']],\n", " [[' OL Reign']],\n", " [[' Club Atlético Peñarol']],\n", " [[' Audax Italiano']],\n", " [[' NJ/NY Gotham FC']],\n", " [[' FC Rosengård']],\n", " [[' Royal Challengers Bangalore']],\n", " [[' Paris Saint-Germain F.C.']],\n", " [[' Vissel Kobe']],\n", " [[' D.C. United']],\n", " [[' Argentina national football team']],\n", " [[' Liv Racing']],\n", " [[' Real Madrid CF']],\n", " [[' VfB Stuttgart']],\n", " [[' Brazil national football team']],\n", " [[' Boca Juniors']],\n", " [[' A.C. Milan']],\n", " [[' LA Galaxy']],\n", " [[' Vissel Kobe']],\n", " [[' Arsenal F.C.']],\n", " [[' Tampa Bay Rowdies']],\n", " [[' Paris Saint-Germain F.C.']],\n", " [[' Minnesota Lynx']],\n", " [[' Juventus F.C.']],\n", " [[' İstanbul Başakşehir FC']],\n", " [[' Chicago Fire FC']],\n", " [[' Olimpia Milano']],\n", " [[' FC Bayern Munich']],\n", " [[' Unione Sportiva Sassuolo Calcio']],\n", " [[' Bahrain Victorious']],\n", " [[' Atlas F.C.']],\n", " [[' Chicago Bulls']],\n", " [[' FC Bayern Munich']],\n", " [[' Houston Rockets']],\n", " [[' AS Monaco FC']],\n", " [[' LA Galaxy']],\n", " [[' Coritiba F.C.']],\n", " [[' Arsenal F.C.']],\n", " [[' FC Bayern Munich']],\n", " [[' Swiss national football team']],\n", " [[' Toronto Raptors']],\n", " [[' Matrix Fitness']],\n", " [[' Union Sportive des Forces Armées']],\n", " [[' Quick-Step Alpha Vinyl Team']],\n", " [[' Paris Saint-Germain F.C.']],\n", " [[' Seattle Storm']],\n", " [[' Spain national association football team']],\n", " [[' Parma Calcio 1913']],\n", " [[' Washington Spirit']],\n", " [[' France national association football team']],\n", " [[' Egypt national football team']],\n", " [[' Göztepe S.K.']],\n", " [[' Netherlands national association football team']],\n", " [[' West Ham United F.C.']],\n", " [[' Toronto FC']],\n", " [[' Los Angeles Lakers']],\n", " [[' Japan national football team']],\n", " [[' Japan national football team']],\n", " [[' Chelsea F.C.']],\n", " [[' Qingdao F.C.']],\n", " [[' Standard Liège']],\n", " [[' FC Bayern Munich']],\n", " [[' Portland Thorns FC']],\n", " [[' France national association football team']],\n", " [[' Houston Dynamo FC']],\n", " [[' São Paulo FC']],\n", " [[' Associação Académica de Coimbra – O.A.F.']],\n", " [[' Algeria national football team']],\n", " [[' Bora-Hansgrohe']],\n", " [[' Costa Rica national football team']],\n", " [[' Real Madrid CF']],\n", " [[' Quick-Step Alpha Vinyl Team']],\n", " [[' Germany national association football team']],\n", " [[' SC Freiburg']],\n", " [[' Trek–Segafredo']],\n", " [[' Paraguay national football team']],\n", " [[' Rayo OKC']],\n", " [[' Manchester United F.C.']],\n", " [[' Club de Fútbol Monterrey']],\n", " [[' Juventus F.C.']],\n", " [[' Brasiliense Futebol Clube']],\n", " [[' CCC Team']],\n", " [[' Fleury Loiret HB']],\n", " [[' SIG Basket']],\n", " [[' FC Bayern Munich']],\n", " [[' Meridiana-Kamen']],\n", " [[' Boavista F.C.']],\n", " [[' Brooklyn Nets']],\n", " [[' Scuderia Ferrari']],\n", " [[\" Norway women's national football team\"]],\n", " [[' Leicester City F.C.']],\n", " [[' EF Education-Nippo']],\n", " [[' Aalesunds FK']],\n", " [[' Portland Thorns FC']],\n", " [[' Chelsea F.C.']],\n", " [[' Real Madrid CF']],\n", " [[' Galatasaray S.K.']],\n", " [[' Astana Qazaqstan Team']],\n", " [[' Red Star Belgrade']],\n", " [[' Trabzonspor']],\n", " [[' Shanghai Port F.C.']],\n", " [[' Real Madrid Baloncesto']],\n", " [[' Trek–Segafredo']],\n", " [[' Sociedade Esportiva Palmeiras']],\n", " [[' FC Baník Ostrava']],\n", " [[' Swansea City A.F.C.']],\n", " [[' Germany national association football team']],\n", " [[' Clube de Regatas do Flamengo']],\n", " [[' FC Dynamo Brest']],\n", " [[' SD Worx']],\n", " [[' Brazil national football team']],\n", " [[' Maccabi Haifa F.C.']],\n", " [[' Paris Saint-Germain F.C.']],\n", " [[' Los Angeles Clippers']],\n", " [[' Paris Saint-Germain Féminine']],\n", " [[' Olympiacos F.C.']],\n", " [[' Sporting Kansas City']],\n", " [[' Inter Milan']],\n", " [[' Houston Dash']],\n", " [[' Juventus F.C.']],\n", " [[' F.C. Porto']],\n", " [[' Brazil national football team']],\n", " [[' Senegal national association football team']],\n", " [[' Chicago Red Stars']],\n", " [[' Real Madrid CF']],\n", " [[' Yamaha Motor Racing']],\n", " [[' Stoke City F.C.']],\n", " [[' Japan national football team']],\n", " [[' Atlético Madrid']],\n", " [[' Olympique de Marseille']],\n", " [[' O.F.K. Beograd']],\n", " [[' Belgium national football team']],\n", " [[' Belgium national football team']],\n", " [[' Pune F.C.']],\n", " [[' ACF Fiorentina']],\n", " [[' Stabæk Fotball']],\n", " [[' Canadiennes de Montréal']],\n", " [[' Team BikeExchange']],\n", " [[' Cerro Porteño']],\n", " [[' Fajardo Cariduros']],\n", " [[' Dundee United F.C.']],\n", " [[' Agrotikos Asteras F.C.']],\n", " [[' Germany national association football team']],\n", " [[' Jiangsu F.C.']],\n", " [[' SV Werder Bremen']],\n", " [[' Orlando City SC']],\n", " [[' FC Barcelona']],\n", " [[' FC Rosengård']],\n", " [[' Bristol City F.C.']],\n", " [[\" Sweden women's national association football team\"]],\n", " [[' Arsenal F.C.']],\n", " [[' Spain national association football team']],\n", " [[' Juventus F.C.']],\n", " [[' Team Jumbo-Visma']],\n", " [[' Ceratizit–WNT Pro Cycling']],\n", " [[' Rosenborg BK']],\n", " [[' Hokkaido Consadole Sapporo']],\n", " [[' Comunicaciones FC']],\n", " [[' TSG 1899 Hoffenheim']],\n", " [[' Inter Milan']],\n", " [[' Detroit Pistons']],\n", " [[' Galatasaray S.K.']],\n", " [[' France national association football team']],\n", " [[' Team DSM']],\n", " [[' Team DSM']],\n", " [[' NJ/NY Gotham FC']],\n", " [[' Brisbane Roar FC W-League']],\n", " [[' Real Betis Balompié']],\n", " [[' Washington Mystics']],\n", " [[' Montpellier HSC']],\n", " [[' Trek–Segafredo']],\n", " [[' Phoenix Mercury']],\n", " [[' Manchester City F.C.']],\n", " [[' Borussia Dortmund']],\n", " [[' PSV Eindhoven']],\n", " [[' France national association football team']],\n", " [[' New England Patriots']],\n", " [[' Aston Villa F.C.']],\n", " [[' Poland national association football team']],\n", " [[' Göztepe S.K.']],\n", " [[' Baniyas SC']],\n", " [[' Real Madrid CF']],\n", " [[' Manchester United F.C.']],\n", " [[' Atlético Madrid']],\n", " [[' Belgium national football team']],\n", " [[' Norway national association football team']],\n", " [[' Kayserispor']],\n", " [[' FC Barcelona']],\n", " [[\" United States men's national soccer team\"]],\n", " [[' Real Madrid CF']],\n", " [[' Səbail FK']],\n", " [[' Shanghai Shenhua F.C.']],\n", " [[' Hapoel Jerusalem B.C.']],\n", " [[' SV Werder Bremen']],\n", " [[' Tottenham Hotspur F.C.']],\n", " [[' Everton F.C.']],\n", " [[' Belgium national football team']],\n", " [[' Arsenal F.C.']],\n", " [[' Deportivo de La Coruña']],\n", " [[' Boston Celtics']],\n", " [[' Hamburger SV']],\n", " [[' Belgium national football team']],\n", " [[' Clube Atlético Taboão da Serra']],\n", " [[' Málaga CF']],\n", " [[' Tottenham Hotspur F.C.']],\n", " [[' Arkéa–Samsic']],\n", " [[' San Antonio Spurs']],\n", " [[' Paris Saint-Germain F.C.']],\n", " [[' New York Knicks']],\n", " [[' Utah Jazz']],\n", " [[' F.C. Copenhagen']],\n", " [[' Hebei F.C.']],\n", " [[' Club Atlético River Plate']],\n", " [[' Manchester City F.C.']],\n", " [[' FC Bayern Munich']],\n", " [[' France national association football team']],\n", " [[' Club Atlético Peñarol']],\n", " [[' Dalian Professional F.C.']],\n", " [[' Italy national association football team']],\n", " [[' Senegal national association football team']],\n", " [[' France national association football team']],\n", " [[' Lotto–Soudal']],\n", " [[' AFC Bournemouth']],\n", " [[' 1. FC Union Berlin']],\n", " [[' Denmark national association football team']],\n", " [[' Galatasaray S.K.']],\n", " [[' Atlanta United FC']],\n", " [[' Swansea City A.F.C.']],\n", " [[' Spain national association football team']],\n", " [[' Cameroon national football team']],\n", " [[' Arsenal F.C.']],\n", " [[' FC Rosengård']],\n", " [[' Galatasaray S.K.']],\n", " [[' Italy national association football team']],\n", " [[' Morocco national football team']],\n", " [[' Accra Great Olympics F.C.']],\n", " [[' West Bromwich Albion F.C.']],\n", " [[' Netherlands national association football team']],\n", " [[' DR Congo national football team']],\n", " [[' Brazil national football team']],\n", " [[' A.S. Roma']],\n", " [[' FC Seoul']],\n", " [[' FC Bayern Munich']],\n", " [[' AFC Ajax']],\n", " [[' New Zealand national rugby union team']],\n", " [[\" United States women's national soccer team\"]],\n", " [[' Chelsea F.C.']],\n", " [[' Santos F.C.']],\n", " [[' Shanghai Port F.C.']],\n", " [[' Sevilla FC']],\n", " [[' Ineos Grenadiers']],\n", " [[' Morocco national football team']],\n", " [[' Sweden national association football team']],\n", " [[' Hertha BSC']],\n", " [[' Manchester City W.F.C.']],\n", " [[' Portugal national association football team']],\n", " [[' TuS Haltern']],\n", " [[' Baniyas SC']],\n", " [[' 1. FFC Frankfurt']],\n", " [[' Chelsea F.C.']],\n", " [[' West Ham United F.C.']],\n", " [[' FC Koper']],\n", " [[' Wadi Degla SC']],\n", " [[' Morocco national football team']],\n", " [[' Criciúma Esporte Clube']],\n", " [[' ACF Fiorentina']],\n", " [[' Real Betis Balompié']],\n", " [[' Brisbane Roar FC']],\n", " [[' Turkey national association football team']],\n", " [[' Storey Racing']],\n", " [[' UAE Team Emirates']],\n", " [[' Movistar Team']],\n", " [[' Germany national association football team']],\n", " [[' FC Metz']],\n", " [[' Los Angeles Sparks']],\n", " [[' West Ham United F.C.']],\n", " [[' Santos F.C.']],\n", " [[' Qhubeka Assos']],\n", " [[' Club Universidad de Chile']],\n", " [[' Sevilla FC']],\n", " [[' Sevilla FC']],\n", " [[' Chelsea F.C.']],\n", " [[' Atlanta Hawks']],\n", " [[' CSKA Moscow']],\n", " [[' Netherlands national association football team']],\n", " [[' Chile national football team']],\n", " [[' Croatia national association football team']],\n", " [[' AS Monaco FC']],\n", " [[' Ineos Grenadiers']],\n", " [[' Fenerbahçe SK']],\n", " [[' KFUM-Kameratene Oslo']],\n", " [[' Western New York Flash']],\n", " [[' Netherlands national association football team']],\n", " [[' Metropolitans 92']],\n", " [[' Eintracht Frankfurt']],\n", " [[' Melbourne Victory']],\n", " [[' PBC CSKA Moscow']],\n", " [[' Manchester City W.F.C.']],\n", " [[' Sociedade Esportiva Palmeiras']],\n", " [[' Sunderland A.F.C.']],\n", " [[' Belgium national football team']],\n", " [[' São Paulo FC']],\n", " [[' F.C. Crotone']],\n", " [[' Quick-Step Alpha Vinyl Team']],\n", " [[' Australia Billie Jean King Cup team']],\n", " [[' Guangzhou Football Club']],\n", " [[' Atlético Junior']],\n", " [[' Brazil national football team']],\n", " [[' Chicago Red Stars']],\n", " [[' Club Nacional de Football']],\n", " [[' Mexico national football team']],\n", " [[' Qhubeka Assos']],\n", " [[' Wolverhampton Wanderers F.C.']],\n", " [[' Germany national association football team']],\n", " [[' Bologna F.C. 1909']],\n", " [[' US Orléans']],\n", " [[' Deportivo Saprissa']],\n", " [[' Chile national football team']],\n", " [[' Spain national association football team']],\n", " [[' Trabzonspor']],\n", " [[' Olympiacos F.C.']],\n", " [[' C.S. Cartaginés']],\n", " [[' Juventus F.C.']],\n", " [[' Valencia CF']],\n", " [[' Belgium national football team']],\n", " [[' Kayserispor']],\n", " [[' Portugal national association football team']],\n", " [[' UAE Team Emirates']],\n", " [[' Italy national association football team']],\n", " [[' Qhubeka Assos']],\n", " [[' Denmark national association football team']],\n", " [[' Swiss national football team']],\n", " [[' FC Barcelona Bàsquet']],\n", " [[' Poland national association football team']],\n", " [[' Renault F1 Team']],\n", " [[' Borussia Dortmund']],\n", " [[' Cleveland Cavaliers']],\n", " [[' Hebei F.C.']],\n", " [[' Bepink']],\n", " [[' Borussia Dortmund']],\n", " [[' Club Atlético Talleres']],\n", " [[' Toulon Saint-Cyr Var Handball']],\n", " [[' Portland Trail Blazers']],\n", " [[' Trek–Segafredo']],\n", " [[' Eintracht Frankfurt']],\n", " [[' A.S. Roma']],\n", " [[' Yokohama FC']],\n", " [[' Trabzonspor']],\n", " [[' Seattle Sounders FC']],\n", " [[' UAE Team Emirates']],\n", " [[' Peru national football team']],\n", " [[' Portugal national association football team']],\n", " [[' France national association football team']],\n", " [[' Beşiktaş J.K.']],\n", " [[' Swiss national football team']],\n", " [[' Sydney FC']],\n", " [[' Cangzhou Mighty Lions F.C.']],\n", " [[' Burnley F.C.']],\n", " [[' CCC Team']],\n", " [[' Club Deportivo Universidad Católica']],\n", " [[' Everton F.C.']],\n", " [[' Parma Calcio 1913']],\n", " [[' West Ham United F.C.']],\n", " [[' Republic of Ireland national association football team']],\n", " [[' Fenerbahçe SK']],\n", " [[' Chelsea F.C. Women']],\n", " [[' Los Angeles Lakers']],\n", " [[' G.S. Iraklis Thessaloniki']],\n", " [[' NJ/NY Gotham FC']],\n", " [[' CR Vasco da Gama']],\n", " [[' Tottenham Hotspur F.C.']],\n", " [[' Spain national association football team']],\n", " [[' Portugal national association football team']],\n", " [[' Brazil national football team']],\n", " [[' FC Bayern Munich']],\n", " [[' Team Jumbo-Visma']],\n", " [[' France national association football team']],\n", " [[' Guangzhou City F.C.']],\n", " [[' VfL Wolfsburg Women']],\n", " [[' Wuhan F.C.']],\n", " [[' Genoa CFC']],\n", " [[' Western New York Flash']],\n", " [[' Okinawa SV']],\n", " [[' C.D. Guadalajara']],\n", " [[' Hebei F.C.']],\n", " [[' Spain national association football team']],\n", " [[' FC Astra Giurgiu']],\n", " [[' SV Werder Bremen']],\n", " [[' England national association football team']],\n", " [[' France national association football team']],\n", " [[' Guinea-Bissau national football team']],\n", " [[' N.E.C.']],\n", " [[' Mexico national football team']],\n", " [[' Czech Republic national beach soccer team']],\n", " [[' FC Yenisey Krasnoyarsk']],\n", " [[' Real Madrid CF']],\n", " [[' Quick-Step Alpha Vinyl Team']],\n", " [[' Costa Rica national football team']],\n", " [[\" Canada men's national soccer team\"]],\n", " [[' Poland national association football team']],\n", " [[' Russia national football team']],\n", " [[' Chile national football team']],\n", " [[' Real Madrid CF']],\n", " [[' Club Rubio Ñu']],\n", " [[' Senegal national association football team']],\n", " [[' FC Bayern Munich Women']],\n", " [[' Juventus F.C.']],\n", " [[' Roland Cogeas Edelweiss Squad']],\n", " [[' Houston Rockets']],\n", " [[' Oklahoma City Thunder']],\n", " [[' Kawasaki Frontale']],\n", " [[' KIF Örebro DFF']],\n", " [[' Team BikeExchange Jayco']],\n", " [[' Estonia national football team']],\n", " [[' Germany national association football team']],\n", " [[' Rayo Vallecano']],\n", " [[' ADO Den Haag']],\n", " [[' FK AS Trenčín']],\n", " [[' Bora-Hansgrohe']],\n", " [[' Real Sociedad']],\n", " [[' Antalyaspor']],\n", " [[' LA Galaxy']],\n", " [[' E.C. Vitória']],\n", " [[' AC Sparta Prague']],\n", " [[' Club Atlético River Plate']],\n", " [[' Cameroon national football team']],\n", " [[' Spain national association football team']],\n", " [[' Astana Qazaqstan Team']],\n", " [[' Paris Saint-Germain F.C.']],\n", " [[' France national association football team']],\n", " [[' Manchester City F.C.']],\n", " [[' Team Jumbo-Visma']],\n", " [[' FC Bayern Munich']],\n", " [[' Quick-Step Alpha Vinyl Team']],\n", " [[' Portugal national association football team']],\n", " [[' Canyon–SRAM']],\n", " [[' Atlanta Hawks']],\n", " [[' Maccabi Haifa F.C.']],\n", " [[' Germany national association football team']],\n", " [[' Southampton F.C.']],\n", " [[' S.C. Internacional']],\n", " [[' Germany national association football team']],\n", " [[' Swiss national football team']],\n", " [[' Portugal national association football team']],\n", " [[' Juventus F.C.']],\n", " [[' 1. FC Nürnberg']],\n", " [[' Brazil national football team']],\n", " [[' FC Augsburg']],\n", " [[' Manchester City F.C.']],\n", " [[\" United States women's national soccer team\"]],\n", " [[' Tottenham Hotspur F.C.']],\n", " [[' Juventus F.C.']],\n", " [[' Burnley F.C.']],\n", " [[' Spain national association football team']],\n", " [[' Milwaukee Bucks']],\n", " [[' Melbourne Victory']],\n", " [[' Brazil national football team']],\n", " [[' Shanghai Shenhua F.C.']],\n", " [[' Sektzia Nes Tziona F.C.']],\n", " [[' Seinäjoen Jalkapallokerho']],\n", " [[' Olympique Lyonnais']],\n", " [[' Orlando Pride']],\n", " [[' Leeds United F.C.']],\n", " [[' FC Sion']],\n", " [[' Orlando City SC']],\n", " [[' São Paulo FC']],\n", " [[' C.A. Vélez Sarsfield']],\n", " [[' South Korea national football team']],\n", " [[' Tiburones Rojos de Veracruz']],\n", " [[' C.D. Guadalajara']],\n", " [[' Liga Deportiva Alajuelense']],\n", " [[' Angers SCO']],\n", " [[' Netherlands national association football team']],\n", " [[' Chicago Red Stars']],\n", " [[' ACF Fiorentina']],\n", " [[' POFC Botev Vratsa']],\n", " [[' Pirata F.C']],\n", " [[' Leicester City F.C.']],\n", " [[' FC Zenit Saint Petersburg']],\n", " [[' Seattle Sounders FC']],\n", " [[' Mexico national football team']],\n", " [[' Houston Dash']],\n", " [[' FC Barcelona']],\n", " [[' Mumbai City FC']],\n", " [[' Élan Chalon']],\n", " [[' Atlético Sanluqueño CF']],\n", " [[' AFC Eskilstuna']],\n", " [[' Argentina national football team']],\n", " [[' Algeria national football team']],\n", " [[' Nigeria national football team']],\n", " [[' Ismaily SC']],\n", " [[' Hertha BSC']],\n", " [[' Shandong Taishan F.C.']],\n", " [[' Juventus F.C.']],\n", " [[' Italy national association football team']],\n", " [[' Ivory Coast national football team']],\n", " [[\" Colo-Colo women's\"]],\n", " [[' Chicago Red Stars']],\n", " [[' A.S. Roma']],\n", " [[' Seoul E-Land FC']],\n", " [[' Germany national association football team']],\n", " [[' Germany national association football team']],\n", " [[' Charlotte Hornets']],\n", " [[' Comunicaciones FC']],\n", " [[' VfB Stuttgart']],\n", " [[' Italy national association football team']],\n", " [[' Brazil national football team']],\n", " [[' Liga Deportiva Alajuelense']],\n", " [[' Arsenal W.F.C.']],\n", " [[' Sweden national association football team']],\n", " [[' Mexico national football team']],\n", " [[' Italy national association football team']],\n", " [[' Spain national association football team']],\n", " [[' UAE Team Emirates']],\n", " [[' FC Rukh Lviv']],\n", " [[' Olympique de Marseille']],\n", " [[' South Korea national football team']],\n", " [[' Al Ahli SC']],\n", " [[' Belgium national football team']],\n", " [[' Japan national football team']],\n", " [[' Nigeria national football team']],\n", " [[' TWENTY20 p/b Sho-Air']],\n", " [[' Sociedade Esportiva Palmeiras']],\n", " [[' Szombathelyi Haladás']],\n", " [[' Seattle Sounders FC']],\n", " [[' Deportivo Toluca F.C.']],\n", " [[' PSV Eindhoven']],\n", " [[' Belarus national football team']],\n", " [[' VfB Stuttgart II']],\n", " [[' Astana Qazaqstan Team']],\n", " [[' Russia national football team']],\n", " [[' Helsingin Jalkapalloklubi']],\n", " [[' BC Rytas']],\n", " [[' A.S. Roma']],\n", " [[' Utah Jazz']],\n", " [[' Spain national association football team']],\n", " [[\" Germany women's national football team\"]],\n", " [[' New Orleans Pelicans']],\n", " [[' Algeria national football team']],\n", " [[' Rio Ave F.C.']],\n", " [[' Manchester City F.C.']],\n", " [[' Swiss national football team']],\n", " [[' Iran national football team']],\n", " [[' Minnesota Timberwolves']],\n", " [[' Bursaspor']],\n", " [[' Eintracht Frankfurt']],\n", " [[' Nigeria national football team']],\n", " [[' ACF Fiorentina']],\n", " [[' Newcastle United F.C.']],\n", " [[' Unión Deportiva Las Palmas']],\n", " [[' Venezuela national football team']],\n", " [[' France national association football team']],\n", " [[' Manchester City F.C.']],\n", " [[' Japan national football team']],\n", " [[' Central African Republic national football team']],\n", " [[' Germany national association football team']],\n", " [[' NK Olimpija Ljubljana']],\n", " [[' Swiss national football team']],\n", " [[' Mexico national football team']],\n", " [[' Las Vegas Aces']],\n", " [[' Norwich City F.C.']],\n", " [[' Santa Cruz Futebol Clube']],\n", " [[' Ceratizit–WNT Pro Cycling']],\n", " [[' Liverpool F.C.']],\n", " [[' TotalEnergies']],\n", " [[' Oeste Futebol Clube']],\n", " [[\" United States men's national soccer team\"]],\n", " [[' Norway national association football team']],\n", " [[' FC Krasnodar']],\n", " [[' Legia Warsaw']],\n", " [[' Brazil national football team']],\n", " [[' North Macedonia national football team']],\n", " [[' Zhejiang Professional F.C.']],\n", " [[' Balıkesirspor']],\n", " [[' Talaba SC']],\n", " [[' Ghana national football team']],\n", " [[' Arsenal F.C.']],\n", " [[' FC Ingolstadt 04']],\n", " [[' Sweden national association football team']],\n", " [[' Helsingin Jalkapalloklubi']],\n", " [[' Sydney FC']],\n", " [[' Philippines national football team']],\n", " [[' Olympiacos F.C.']],\n", " [[' Chelsea F.C. Women']],\n", " [[' S.S.C. Napoli']],\n", " [[' Al-Faisaly FC']],\n", " [[' Cruz Azul']],\n", " [[' FC Lokomotiv Moscow']],\n", " [[' Arsenal W.F.C.']],\n", " [[' Iran national football team']],\n", " [[' Orlando Pride']],\n", " [[' Porsche']],\n", " [[' Denmark national association football team']],\n", " [[' Atlético Junior']],\n", " [[' England national association football team']],\n", " [[' South Korea national football team']],\n", " [[' SC East Bengal']],\n", " [[' Brest Bretagne Handball']],\n", " [[' AG2R Citroën Team']],\n", " [[' Swiss national football team']],\n", " [[' Chelsea F.C. Women']],\n", " [[' Dallas Mavericks']],\n", " [[' France national association football team']],\n", " [[' UnitedHealthcare']],\n", " [[' Spain national association football team']],\n", " [[' Linköpings FC']],\n", " [[' Nigeria national football team']],\n", " [[' Liverpool F.C.']],\n", " [[' Team BikeExchange Jayco']],\n", " [[' France national association football team']],\n", " [[' São Tomé and Príncipe national football team']],\n", " [[' Portugal national association football team']],\n", " [[' Australia national association football team']],\n", " [[' Portimonense S.C.']],\n", " [[' Denmark national association football team']],\n", " [[' Belgium national football team']],\n", " [[\" Hapoel Be'er Sheva F.C.\"]],\n", " [[\" Japan women's national football team\"]],\n", " [[\" Canada women's national soccer team\"]],\n", " [[' OL Reign']],\n", " [[' Denmark national association football team']],\n", " [[' Germany national association football team']],\n", " [[' Brazil national football team']],\n", " [[' Montpellier Hérault Sport Club']],\n", " [[' Atlético Madrid']],\n", " [[' Norway national association football team']],\n", " [[' Hellas Verona F.C.']],\n", " [[' FC Shakhtar Donetsk']],\n", " [[' Celtic F.C.']],\n", " [[' Olympique Lyonnais']],\n", " [[' FC Lausanne-Sport']],\n", " [[' Club Social y Deportivo Colo Colo']],\n", " [[' Coquimbo Unido']],\n", " [[' Unión Magdalena']],\n", " [[' Anorthosis Famagusta FC']],\n", " [[' K. Patro Eisden Maasmechelen']],\n", " [[' Al Ittihad FC']],\n", " [[' Bosnia and Herzegovina national football team']],\n", " [[' Seattle Mariners']],\n", " [[' Cagliari Calcio']],\n", " [[' FC Pune City']],\n", " [[' Atlas F.C.']],\n", " [[' Australia national association football team']],\n", " [[' Morocco national football team']],\n", " [[' Morocco national football team']],\n", " [[' Houston Dash']],\n", " [[' FC Barcelona']],\n", " [[' San Martín de Tucumán']],\n", " [[' Senegal national association football team']],\n", " [[' Germany national association football team']],\n", " [[' FC Kaisar']],\n", " [[' Portugal national association football team']],\n", " [[' NorthEast United FC']],\n", " [[' AFC Ajax Vrouwen']],\n", " [[' 1. FC Union Berlin']],\n", " [[' Belgium national football team']],\n", " [[' Stoke City F.C.']],\n", " [[' FC Twente']],\n", " [[' Finland national football team']],\n", " [[' Cameroon national football team']],\n", " [[' ŠK Slovan Bratislava']],\n", " [[' SIG Basket']],\n", " [[' Algeria national football team']],\n", " [[' Alpecin–Fenix']],\n", " [[' Club Joventut Badalona']],\n", " [[' Charlton Athletic F.C.']],\n", " [[' Poland national association football team']],\n", " [[' Brazil national football team']],\n", " [[' Spain national association football team']],\n", " [[' Olympique Lyonnais']],\n", " [[' Al Jazira Club']],\n", " [[' Denmark national association football team']],\n", " [[' Aston Villa F.C.']],\n", " [[' Mexico national football team']],\n", " [[' Romania national association football team']],\n", " [[\" Australia women's national soccer team\"]],\n", " [[' EF Education-Nippo']],\n", " [[' FC Ingolstadt 04']],\n", " [[' Club Atlético Osasuna']],\n", " [[' Philadelphia Union']],\n", " [[' Stade Rennais F.C.']],\n", " [[' Movistar Team']],\n", " [[' FK Vardar']],\n", " [[' New England Revolution']],\n", " [[' UD Vilafranquense']],\n", " [[' Associação Ferroviária de Esportes']],\n", " [[' D.C. United']],\n", " [[' FC Sion']],\n", " [[' Brazil national football team']],\n", " [[' FC Dinamo Moscow']],\n", " [[' Tianjin Ronggang']],\n", " [[' Germany national association football team']],\n", " [[' Uruguay national football team']],\n", " [[' Crystal Palace F.C.']],\n", " [[' PSV Eindhoven']],\n", " [[' Croatia national association football team']],\n", " [[' Metropolitans 92']],\n", " [[' Spain national association football team']],\n", " [[' Voltigeurs de Châteaubriant']],\n", " [[' TSG 1899 Hoffenheim']],\n", " [[' Algeria national football team']],\n", " [[' North Carolina FC']],\n", " [[' Russia national football team']],\n", " [[' Real Madrid CF']],\n", " [[' Feyenoord']],\n", " [[' A.E.K. Athens F.C.']],\n", " [[' Williams Grand Prix Engineering']],\n", " [[' Club Tijuana']],\n", " [[' Ottawa Fury FC']],\n", " [[' Kazakhstan national football team']],\n", " [[' FC Rostov']],\n", " [[' Germany national association football team']],\n", " [[' South Korea national football team']],\n", " [[' Turkey national association football team']],\n", " [[' PFC CSKA Moscow']],\n", " [[' Villarreal CF']],\n", " [[' FC Anzhi Makhachkala']],\n", " [[' Real Madrid Castilla']],\n", " [[' South Korea national football team']],\n", " [[' CF Pachuca']],\n", " [[' Örebro SK']],\n", " [[' Venezuela national football team']],\n", " [[' FC Lokomotiv Moscow']],\n", " [[' Republic of Ireland national association football team']],\n", " [[' Vicenza Calcio']],\n", " [[' FK Budućnost Podgorica']],\n", " [[' Pafos FC']],\n", " [[\" United States women's national soccer team\"]],\n", " [[' Iceland national association football team']],\n", " [[' Norway national association football team']],\n", " [[' CF Montréal']],\n", " [[' Sunderland A.F.C.']],\n", " [[' New Zealand national football team']],\n", " [[' Fenerbahçe SK']],\n", " [[' Olympique Lyonnais Féminin']],\n", " [[' Urawa Red Diamonds']],\n", " [[' Rayo Vallecano']],\n", " [[' Scotland national football team']],\n", " [[' Clube Atlético Taboão da Serra']],\n", " [[' Golden State Warriors']],\n", " [[' LKS Nieciecza']],\n", " [[' McLaren']],\n", " [[' FC Barcelona Femení']],\n", " [[' Valencia CF']],\n", " [[' West Ham United F.C.']],\n", " [[' Trabzonspor']],\n", " [[' 1. FC Union Berlin']],\n", " [[' Paris Saint-Germain F.C.']],\n", " [[' Liaoning Whowin F.C.']],\n", " [[' Mali national football team']],\n", " [[' Enosis Neon Paralimni FC']],\n", " [[' Costa Rica national football team']],\n", " [[' Trek–Segafredo']],\n", " [[' Villarreal CF']],\n", " [[' Washington Spirit']],\n", " [[' Liverpool F.C.']],\n", " [[' Senegal national association football team']],\n", " [[' FC Cincinnati']],\n", " [[' Crystal Palace F.C.']],\n", " [[' KAA Gent']],\n", " [[' Gimnàstic de Tarragona']],\n", " [[' CF Montréal']],\n", " [[' Auckland City FC']],\n", " [[' Algeria national football team']],\n", " [[' Spain national association football team']],\n", " [[' France national association football team']],\n", " [[' Manchester United F.C.']],\n", " [[' Santos FC']],\n", " [[' Al-Shahaniya Sports Club']],\n", " [[' Chelsea F.C.']],\n", " [[' Toronto Blue Jays']],\n", " [[' Vissel Kobe']],\n", " [[' Southampton F.C.']],\n", " [[' JLT Condor']],\n", " [[' VfB Stuttgart']],\n", " [[' Romania national association football team']],\n", " [[' Goa ISL team']],\n", " [[' Netherlands national association football team']],\n", " [[' Argentinos Juniors']],\n", " [[' Lille OSC']],\n", " [[' SGS Essen']],\n", " [[' Sweden national association football team']],\n", " [[' Olympique Lyonnais']],\n", " [[' Costa Rica national football team']],\n", " [[' Jamaica national association football team']],\n", " [[' Crystal Palace F.C.']],\n", " [[' Olympique Lyonnais Féminin']],\n", " [[' UAE Team Emirates']],\n", " [[' New York Red Bulls']],\n", " [[' Algeria national football team']],\n", " [[' A.S. Roma']],\n", " [[' FK Shkëndija']],\n", " [[' Villarreal CF']],\n", " [[' FC Bayern Munich Women']],\n", " [[' FC Augsburg']],\n", " [[' Sivasspor']],\n", " [[' São Paulo FC']],\n", " [[' CJM Bourges Basket']],\n", " [[' Fenerbahçe SK']],\n", " [[' Turkey national association football team']],\n", " [[' Brazil national football team']],\n", " [[' Turkey national association football team']],\n", " [[' Team BikeExchange Jayco']],\n", " [[' Lille OSC']],\n", " [[' Dallas Mavericks']],\n", " [[' Spain national association football team']],\n", " [[\" Norway women's national handball team\"]],\n", " [[' PK-35 Vantaa']],\n", " [[' Manchester City F.C.']],\n", " [[' Republic of Ireland national association football team']],\n", " [[' Philadelphia 76ers']],\n", " [[' Republic of Ireland national association football team']],\n", " [[' América Futebol Clube (MG)']],\n", " [[' St. Louis Cardinals']],\n", " [[' Baltimore Orioles']],\n", " [[' Russia national football team']],\n", " [[' Philadelphia 76ers']],\n", " [[' Juventud de Las Piedras']],\n", " [[' Orlando Pride']],\n", " [[' FC Dinamo Moscow']],\n", " [[' Genoa CFC']],\n", " [[' FC Basel']],\n", " [[\" Monts d'Or Azergues Foot\"]],\n", " [[' Maccabi Haifa F.C.']],\n", " [[' France national association football team']],\n", " [[' Anorthosis Famagusta FC']],\n", " [[' Trek–Segafredo']],\n", " [[' Unión Deportiva Almería']],\n", " [[' Beijing Guoan F.C.']],\n", " [[' Philadelphia 76ers']],\n", " [[' Legia Warsaw']],\n", " [[' Wealdstone F.C.']],\n", " [[' NorthEast United FC']],\n", " [[' PAS Giannina F.C.']],\n", " [[' New Zealand national football team']],\n", " [[' S.C. Braga']],\n", " [[' Sweden national association football team']],\n", " [[' Águilas CF']],\n", " [[' Atlético Madrid']],\n", " [[' K.S.C. Lokeren Oost-Vlaanderen']],\n", " [[' Burgos CF']],\n", " [[\" United States men's national soccer team\"]],\n", " [[' Scotland national football team']],\n", " [[' Portugal national association football team']],\n", " [[' Club Atlético Colón']],\n", " [[' Slovenia national football team']],\n", " [[' Middlesbrough F.C.']],\n", " [[' Olympique de Marseille']],\n", " [[' Maccabi Netanya F.C.']],\n", " [[' S.S.C. Napoli']],\n", " [[' S.L. Benfica']],\n", " [[' AS Saint-Étienne']],\n", " [[' Gabon national football team']],\n", " [[' FK Kauno Žalgiris']],\n", " [[' Stade Rennais F.C.']],\n", " [[' Stade Rennais F.C.']],\n", " [[' Club Africain']],\n", " [[' South Korea national football team']],\n", " [[' Hamburger SV']],\n", " [[' Guizhou F.C.']],\n", " [[' FC Slovan Liberec']],\n", " [[' Peru national football team']],\n", " [[' Ukraine national association football team']],\n", " [[' Argentina national football team']],\n", " [[' FBC Melgar']],\n", " [[' Maccabi Haifa F.C.']],\n", " [[' Al-Faisaly SC']],\n", " [[' FK Palanga']],\n", " [[' Los Angeles Lakers']],\n", " [[' Fulham F.C.']],\n", " [[' EF Education-Nippo']],\n", " [[' FC Rukh Lviv']],\n", " [[' Western New York Flash']],\n", " [[' Bahrain Victorious']],\n", " [[' FK Qarabagh']],\n", " [[' Belgium national football team']],\n", " [[' SD Worx']],\n", " [[' Germany national association football team']],\n", " [[' Team DSM']],\n", " [[' FC Augsburg']],\n", " [[' Clube de Regatas do Flamengo']],\n", " [[' Nea Salamis Famagusta FC']],\n", " [[' Kardemir Karabükspor']],\n", " [[\" France women's national handball team\"]],\n", " [[' UAE Team Emirates']],\n", " [[' West Ham United F.C.']],\n", " [[' Stade Rennais F.C.']],\n", " [[' Liverpool F.C.']],\n", " [[' Algeria national football team']],\n", " [[\" Canada men's national soccer team\"]],\n", " [[' Montpellier Hérault Sport Club']],\n", " [[' FC Pune City']],\n", " [[' Red Star F.C.']],\n", " [[' Al-Gharafa Sports Club']],\n", " [[' SC East Bengal']],\n", " [[\" United States men's national soccer team\"]],\n", " [[' Chelsea F.C.']],\n", " [[' Algeria national football team']],\n", " [[' Australia national association football team']],\n", " [[' FC Vitebsk']],\n", " [[' Los Angeles Clippers']],\n", " [[' Arsenal F.C.']],\n", " [[' Seattle Sounders FC']],\n", " [[' Nigeria national football team']],\n", " [[' Trek–Segafredo']],\n", " [[' Bosnia and Herzegovina national football team']],\n", " [[' Portugal national association football team']],\n", " [[' Germany national association football team']],\n", " [[' Southampton F.C.']],\n", " [[' Deportivo Saprissa']],\n", " [[' Saba Qom F.C.']],\n", " [[' Club Atlético Osasuna']],\n", " [[' Arsenal F.C.']],\n", " [[' Spain national association football team']],\n", " [[' Liverpool F.C.']],\n", " [[' FC Krasnodar']],\n", " [[' Club Atlético Platense']],\n", " [[' Everton F.C.']],\n", " [[' Buriram United F.C.']],\n", " [[' Villarreal CF']],\n", " [[' Real Betis Balompié']],\n", " [[' Chelsea F.C.']],\n", " [[' Malmö FF']],\n", " [[' Bosnia and Herzegovina national football team']],\n", " [[' Independiente Santa Fe']],\n", " [[' West Bromwich Albion F.C.']],\n", " [[' Preston North End F.C.']],\n", " [[' England national association football team']],\n", " [[' Swiss national football team']],\n", " [[' FC Zenit Saint Petersburg']],\n", " [[' Spain national association football team']],\n", " [[' Brazil national football team']],\n", " [[' Ineos Grenadiers']],\n", " [[' Olympique Lyonnais Féminin']],\n", " [[' FK AS Trenčín']],\n", " [[' Togo national football team']],\n", " [[' Al-Hilal SFC']],\n", " [[' Groupama-FDJ']],\n", " [[' Speranza Osaka-Takatsuki']],\n", " [[' ASVEL Basket']],\n", " [[' Palermo FC']],\n", " [[' Czech Republic national association football team']],\n", " [[\" United States men's national soccer team\"]],\n", " [[' Columbus Crew']],\n", " [[' Santos F.C.']],\n", " [[' South Korea national football team']],\n", " [[' Stoke City F.C.']],\n", " [[' Italy national association football team']],\n", " [[' FC Viktoria Köln']],\n", " [[' MSV Duisburg']],\n", " [[' Portugal national association football team']],\n", " [[' Hellas Verona F.C.']],\n", " [[' Brazil national football team']],\n", " [[\" Hapoel Be'er Sheva F.C.\"]],\n", " [[' Al Nasr SC']],\n", " [[' Hull City A.F.C.']],\n", " [[' Thimpu FC']],\n", " [[' Panathinaikos F.C.']],\n", " [[' Feyenoord']],\n", " [[' Club Atlético Independiente']],\n", " [[' Brazil national football team']],\n", " [[' Olimpia Milano']],\n", " [[' Arsenal W.F.C.']],\n", " [[' Swiss national football team']],\n", " [[' Liv Racing']],\n", " [[' England national association football team']],\n", " [[' Everton F.C.']],\n", " [[' Congo national football team']],\n", " [[' Red Bull Racing']],\n", " ...],\n", " 'labels_ids': [[[315, 532, 390, 18, 632, 4191, 165]],\n", " [[5429, 4612]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[1287, 1422, 6772]],\n", " [[226, 15089, 4231, 36508, 17560]],\n", " [[83, 4, 347, 4, 7338]],\n", " [[2910, 632, 1037, 165]],\n", " [[4619, 26769, 4843, 242, 2005, 6945]],\n", " [[19763, 16872]],\n", " [[2809, 604, 18, 632, 2613, 165]],\n", " [[580, 3600, 315, 274, 4, 347, 4]],\n", " [[5429, 10402, 10489]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[188, 469, 412, 5429]],\n", " [[6314, 16421]],\n", " [[10035, 5317, 24058]],\n", " [[274, 4, 347, 4, 2848, 139]],\n", " [[7016]],\n", " [[208, 4214, 23087, 7065, 3427, 242, 2893, 13345]],\n", " [[1429, 2337, 968, 165]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[5429, 4612]],\n", " [[5429, 10402, 10489]],\n", " [[525, 700, 20852, 12221, 274, 4, 347, 4]],\n", " [[96, 242, 366, 13519, 625, 4733]],\n", " [[163, 1535, 14555, 2912, 438, 1020]],\n", " [[5429, 4612, 274, 15035, 1977]],\n", " [[5429, 10402, 10489]],\n", " [[315, 532, 390, 18, 632, 4191, 165]],\n", " [[91, 1610, 118, 274, 4, 347, 4]],\n", " [[1209, 31002, 16146, 6331, 366]],\n", " [[8700, 632, 1037, 165]],\n", " [[19763, 16872]],\n", " [[2009, 29018, 10221, 2684, 4119, 6303, 271, 1168]],\n", " [[11917, 3631, 3108, 139]],\n", " [[10585, 73, 9873, 35733, 5429]],\n", " [[5429, 4168, 3314, 11489, 2586]],\n", " [[2930, 32109, 20434, 20071]],\n", " [[2201, 6130, 12, 534, 8362, 1851, 274, 4, 347, 4]],\n", " [[10035, 5317, 24058]],\n", " [[211, 4, 347, 4, 315]],\n", " [[5244, 632, 1037, 165]],\n", " [[17057, 8441]],\n", " [[2822, 3622, 12612]],\n", " [[468, 506, 387, 312, 9259, 22739]],\n", " [[2910, 632, 1037, 165]],\n", " [[163, 14075, 6752, 10327]],\n", " [[83, 4, 347, 4, 7338]],\n", " [[5168, 5325]],\n", " [[10035, 5317, 24058]],\n", " [[4152, 274, 4, 347, 4]],\n", " [[6415, 1501, 9224, 38707]],\n", " [[2201, 6130, 12, 534, 8362, 1851, 274, 4, 347, 4]],\n", " [[3161, 14122, 1178]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[4236, 7487, 46770, 5597, 5235, 677, 5235, 14897, 853, 5429]],\n", " [[1568, 1833, 5429]],\n", " [[384, 10839, 642, 493, 5366, 2601]],\n", " [[5429, 10402, 10489]],\n", " [[1332, 242, 5413, 7222, 30089, 257, 5675, 2912, 438, 1020]],\n", " [[13800, 41269, 31221]],\n", " [[22705, 274, 4, 347, 4]],\n", " [[1568, 9926]],\n", " [[5429, 10402, 10489]],\n", " [[2499, 11476]],\n", " [[6015, 12696, 5429]],\n", " [[5168, 5325]],\n", " [[2812, 405, 15577, 274, 4, 347, 4]],\n", " [[4152, 274, 4, 347, 4]],\n", " [[5429, 10402, 10489]],\n", " [[5092, 632, 1037, 165]],\n", " [[2177, 13114]],\n", " [[29830, 18961]],\n", " [[1332, 5413, 2088, 2694, 8717, 10617, 1140, 293]],\n", " [[13287, 12, 25093, 7829, 40236, 2711]],\n", " [[2201, 6130, 12, 534, 8362, 1851, 274, 4, 347, 4]],\n", " [[3417, 5809]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[221, 15277, 2912, 438, 1020, 38220]],\n", " [[663, 11758]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[5028, 632, 1037, 165]],\n", " [[41135, 329, 859, 2379, 208, 4, 530, 4]],\n", " [[7556, 632, 5259, 1037, 165]],\n", " [[580, 3600, 315, 274, 4, 347, 4]],\n", " [[2177, 5429]],\n", " [[1287, 1422, 6772]],\n", " [[1429, 632, 1037, 165]],\n", " [[1429, 632, 1037, 165]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[34446, 417, 3853, 274, 4, 347, 4]],\n", " [[5787, 5991, 8025, 1899]],\n", " [[5429, 10402, 10489]],\n", " [[5926, 2032, 16248, 5429]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[2499, 37960, 5429]],\n", " [[208, 4214, 15333, 5429]],\n", " [[6331,\n", " 1975,\n", " 493,\n", " 3381,\n", " 4214,\n", " 20341,\n", " 1140,\n", " 119,\n", " 2426,\n", " 263,\n", " 944,\n", " 16231,\n", " 763,\n", " 126,\n", " 384,\n", " 4,\n", " 250,\n", " 4,\n", " 597,\n", " 4]],\n", " [[21774, 632, 1037, 165]],\n", " [[163, 4330, 12, 725, 1253, 15821, 700]],\n", " [[7505, 17458, 632, 1037, 165]],\n", " [[2822, 3622, 12612]],\n", " [[13287, 12, 25093, 7829, 40236, 2711]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[4998, 5547, 1452, 7150]],\n", " [[20351, 2383, 42775, 2001, 33293]],\n", " [[31162, 857, 632, 1037, 165]],\n", " [[4622, 139, 4954, 347]],\n", " [[2361, 315, 274, 4, 347, 4]],\n", " [[2009, 263, 274, 5874, 90, 18217, 3385, 1334, 5460]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[17128, 4715, 9401, 274, 4467, 18217, 2893, 13345]],\n", " [[230, 3376, 2711]],\n", " [[12602, 6801, 5463, 1885, 90, 22783]],\n", " [[38499, 163, 20997]],\n", " [[5429, 10402, 10489]],\n", " [[4213, 808, 8878, 12, 530, 21228]],\n", " [[3542, 1469, 6377, 274, 4, 347, 4]],\n", " [[6314, 16421]],\n", " [[2741, 1906, 6971, 10482]],\n", " [[8683, 390, 18, 632, 1037, 165]],\n", " [[9035, 412, 274, 4, 347, 4]],\n", " [[17112, 3061, 12, 487, 5600, 139]],\n", " [[83, 4575, 3194, 29, 274, 530]],\n", " [[5926, 2032, 16248, 5429]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[2822, 3622, 12612]],\n", " [[4537, 415, 31126, 857, 208, 4, 530, 4]],\n", " [[8937, 1113, 1209, 11868, 1343, 22398, 2711]],\n", " [[1211, 2141, 4231, 8425]],\n", " [[2393, 873, 329, 1790, 12150]],\n", " [[7137, 2848, 274, 4, 347, 4]],\n", " [[2822, 3622, 4317, 261, 35678, 139]],\n", " [[20351, 2383, 42775, 2001, 33293]],\n", " [[14585, 2550, 1829, 7065, 3427, 7222, 4677, 1794, 853, 281]],\n", " [[5429, 5981, 1977, 330, 21932, 6472, 102]],\n", " [[15338, 412, 83, 4, 597, 4, 347, 4]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[2893, 13345, 263, 6304, 415, 281, 109, 37313, 3314, 139]],\n", " [[5429, 37960, 163, 7110]],\n", " [[12723, 12130, 1178]],\n", " [[2910, 632, 1037, 165]],\n", " [[1775, 438, 10810, 4936, 15247, 274, 4, 347, 4]],\n", " [[2201, 6130, 12, 534, 8362, 1851, 274, 4, 347, 4]],\n", " [[1287, 1422, 12190]],\n", " [[2201, 6130, 12, 534, 8362, 1851, 274, 1140, 4691, 833]],\n", " [[14993, 9504, 366, 274, 4, 347, 4]],\n", " [[16512, 3110, 412]],\n", " [[3870, 7338]],\n", " [[2499, 18946]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[274, 4, 347, 4, 2848, 139]],\n", " [[2910, 632, 1037, 165]],\n", " [[18490, 632, 5259, 1037, 165]],\n", " [[1568, 1211, 7144]],\n", " [[2822, 3622, 12612]],\n", " [[25297, 5512, 8441]],\n", " [[15607, 412, 274, 4, 347, 4]],\n", " [[1429, 632, 1037, 165]],\n", " [[29018, 10221, 2684, 3622]],\n", " [[14993, 5150, 263, 23294, 4061]],\n", " [[384, 4, 597, 4, 530, 4, 1456, 2154, 7822]],\n", " [[7320, 632, 1037, 165]],\n", " [[7320, 632, 1037, 165]],\n", " [[221, 4438, 274, 4, 347, 4]],\n", " [[7224, 597, 19643, 1688, 3999, 1243]],\n", " [[34138, 30422, 330, 274, 1242, 3512]],\n", " [[40836, 118, 24800, 263, 4436, 20287, 337]],\n", " [[2711, 23070, 9089, 14035]],\n", " [[13943, 1001, 2848, 242, 14182]],\n", " [[274, 1176, 6782, 1653, 808, 7367, 29]],\n", " [[15809, 1942, 315, 274, 4, 347, 4]],\n", " [[3303, 12179, 967, 366, 40431, 281, 274, 4, 347, 4]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[27268, 9228, 274, 4, 347, 4]],\n", " [[22753, 21386, 3624, 163, 5593, 225]],\n", " [[5854, 412, 4998]],\n", " [[5429, 4612]],\n", " [[5429, 4168, 3314, 11489, 2586]],\n", " [[10600, 412, 274, 4, 347, 4]],\n", " [[6171, 390, 18, 632, 5259, 1037, 165]],\n", " [[4152, 274, 4, 347, 4]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[2711, 344, 20031, 12, 846, 40837]],\n", " [[13943, 415, 1210, 405, 2383, 771, 16966, 1698, 28544]],\n", " [[11998, 28659, 163, 530]],\n", " [[26455, 330, 23759, 9051, 625, 4104, 37151, 11104]],\n", " [[4556, 26488, 8647, 293, 5429]],\n", " [[12932, 534, 43130, 22590, 225, 10436]],\n", " [[3870, 7338]],\n", " [[2921, 18290]],\n", " [[4537, 415, 31126, 857, 208, 4, 530, 4]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[2711, 43657]],\n", " [[2711, 43657]],\n", " [[10585, 73, 9873, 35733, 5429]],\n", " [[10157, 3830, 271, 5429, 305, 12, 17608]],\n", " [[2822, 6525, 354, 4317, 7474, 118, 1140]],\n", " [[663, 41375, 2857]],\n", " [[4436, 26827, 906, 289, 3632]],\n", " [[20351, 2383, 42775, 2001, 33293]],\n", " [[5524, 15933]],\n", " [[2361, 412, 274, 4, 347, 4]],\n", " [[7943, 17280, 13039]],\n", " [[4868, 846, 381, 2028, 5410, 2987]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[188, 1156, 4314]],\n", " [[16518, 12470, 274, 4, 347, 4]],\n", " [[6508, 632, 5259, 1037, 165]],\n", " [[41135, 329, 859, 2379, 208, 4, 530, 4]],\n", " [[163, 1543, 219, 281, 4998]],\n", " [[2822, 3622, 12612]],\n", " [[2361, 315, 274, 4, 347, 4]],\n", " [[29018, 10221, 2684, 3622]],\n", " [[7320, 632, 1037, 165]],\n", " [[8683, 632, 5259, 1037, 165]],\n", " [[229, 4113, 254, 354, 12150]],\n", " [[5429, 4612]],\n", " [[315, 532, 604, 18, 632, 4191, 165]],\n", " [[2822, 3622, 12612]],\n", " [[208, 35423, 27, 428, 3760, 274, 530]],\n", " [[7137, 12242, 15363, 274, 4, 347, 4]],\n", " [[289, 24812, 523, 7007, 163, 4, 347, 4]],\n", " [[22753, 21386, 3624, 163, 5593, 225]],\n", " [[7570, 20302, 7748, 274, 4, 347, 4]],\n", " [[9692, 274, 4, 347, 4]],\n", " [[7320, 632, 1037, 165]],\n", " [[4152, 274, 4, 347, 4]],\n", " [[6748, 2723, 9697, 263, 1587, 2812, 257, 14379]],\n", " [[2278, 8734]],\n", " [[36858, 25278, 22753]],\n", " [[7320, 632, 1037, 165]],\n", " [[2893, 13345, 29018, 10221, 2684, 12765, 139, 4214, 2955, 6251, 763]],\n", " [[256, 1526, 462, 6080, 12612]],\n", " [[7570, 20302, 7748, 274, 4, 347, 4]],\n", " [[19365, 1140, 102, 2383, 104, 7042, 636]],\n", " [[764, 4578, 7963]],\n", " [[2201, 6130, 12, 534, 8362, 1851, 274, 4, 347, 4]],\n", " [[188, 469, 11836]],\n", " [[4514, 9529]],\n", " [[274, 4, 347, 4, 22843]],\n", " [[91, 1610, 118, 274, 4, 347, 4]],\n", " [[2009, 29018, 10221, 2684, 1995, 19201]],\n", " [[2361, 412, 274, 4, 347, 4]],\n", " [[5429, 10402, 10489]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[2009, 29018, 10221, 2684, 4119, 6303, 271, 1168]],\n", " [[211, 21999, 12221, 274, 4, 347, 4]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[18490, 632, 5259, 1037, 165]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[226, 15089, 2383, 104, 6998, 337]],\n", " [[9601, 163, 8371, 14393]],\n", " [[112, 4, 5429, 1332, 5459]],\n", " [[10060, 632, 5259, 1037, 165]],\n", " [[4537, 415, 31126, 857, 208, 4, 530, 4]],\n", " [[3317, 315, 5429]],\n", " [[15338, 412, 83, 4, 597, 4, 347, 4]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[14781, 632, 1037, 165]],\n", " [[4152, 274, 4, 347, 4]],\n", " [[5429, 4168, 3314, 11489, 2586]],\n", " [[4537, 415, 31126, 857, 208, 4, 530, 4]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[13733, 632, 1037, 165]],\n", " [[5438, 763, 2860, 4365, 274, 4, 347, 4]],\n", " [[580, 14312, 11645, 19032, 274, 4, 347, 4]],\n", " [[7556, 632, 5259, 1037, 165]],\n", " [[10994, 11536, 632, 1037, 165]],\n", " [[2910, 632, 1037, 165]],\n", " [[83, 4, 104, 4, 12218]],\n", " [[5429, 9176]],\n", " [[5429, 10402, 10489]],\n", " [[9601, 24857]],\n", " [[188, 3324, 632, 8808, 2918, 165]],\n", " [[315, 532, 390, 18, 632, 4191, 165]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[12919, 274, 4, 347, 4]],\n", " [[7137, 2848, 274, 4, 347, 4]],\n", " [[15206, 4699, 5429]],\n", " [[96, 242, 366, 13519, 625, 4733]],\n", " [[13733, 632, 1037, 165]],\n", " [[6171, 632, 5259, 1037, 165]],\n", " [[1405, 12037, 163, 3632]],\n", " [[2361, 412, 305, 4, 597, 4, 347, 4]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[9688, 104, 6579, 18995]],\n", " [[163, 1543, 219, 281, 4998]],\n", " [[112, 4, 274, 5268, 14184]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[580, 3600, 315, 274, 4, 347, 4]],\n", " [[5429, 229, 8428]],\n", " [[305, 5416, 926, 7210, 102, 4998]],\n", " [[13733, 632, 1037, 165]],\n", " [[230, 4063, 118, 5874, 1916, 7065, 3427, 242, 2893, 13345]],\n", " [[7224, 597, 19643, 1688, 3999, 1243]],\n", " [[2822, 6525, 354, 4317, 7474, 118, 1140]],\n", " [[10157, 3830, 271, 5429]],\n", " [[2769, 632, 5259, 1037, 165]],\n", " [[7248, 219, 8441]],\n", " [[9170, 2711, 8313]],\n", " [[28147, 31732, 2711]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[5429, 4369, 329]],\n", " [[1287, 1422, 22320]],\n", " [[580, 3600, 315, 274, 4, 347, 4]],\n", " [[12919, 274, 4, 347, 4]],\n", " [[1209, 31002, 16146, 6331, 366]],\n", " [[2009, 24066, 8843, 263, 9614]],\n", " [[15206, 4699, 5429]],\n", " [[15206, 4699, 5429]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[3317, 10506]],\n", " [[7038, 14559, 3467]],\n", " [[7556, 632, 5259, 1037, 165]],\n", " [[9614, 632, 1037, 165]],\n", " [[11437, 632, 5259, 1037, 165]],\n", " [[6015, 12696, 5429]],\n", " [[96, 242, 366, 13519, 625, 4733]],\n", " [[274, 5777, 28185, 3381, 242, 14795]],\n", " [[229, 597, 5725, 12, 530, 8015, 415, 2552, 26067]],\n", " [[2027, 188, 469, 15626]],\n", " [[7556, 632, 5259, 1037, 165]],\n", " [[4369, 6884, 20726, 1253, 8403]],\n", " [[381, 2544, 338, 11629, 14184]],\n", " [[5703, 15908]],\n", " [[221, 3573, 7038, 14559, 3467]],\n", " [[2361, 412, 305, 4, 597, 4, 347, 4]],\n", " [[14585, 2550, 1829, 7065, 3427, 7222, 4677, 1794, 853, 281]],\n", " [[13633, 83, 4, 597, 4, 347, 4]],\n", " [[7320, 632, 1037, 165]],\n", " [[208, 4214, 15333, 5429]],\n", " [[274, 4, 347, 4, 6466, 32612]],\n", " [[13287, 12, 25093, 7829, 40236, 2711]],\n", " [[1221, 1585, 324, 5363, 1745, 968, 165]],\n", " [[21105, 18604, 3910, 2009]],\n", " [[29018, 10221, 2684, 6843]],\n", " [[2910, 632, 1037, 165]],\n", " [[1568, 1211, 7144]],\n", " [[2009, 234, 1043, 6073, 263, 3910]],\n", " [[1625, 632, 1037, 165]],\n", " [[1209, 31002, 16146, 6331, 366]],\n", " [[17100, 1908, 9216, 20233, 16885, 274, 4, 347, 4]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[163, 8982, 2133, 274, 4, 347, 4, 41861]],\n", " [[382, 1793, 24227, 1253]],\n", " [[6748, 2723, 9697, 25452, 338, 12109]],\n", " [[9614, 632, 1037, 165]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[2393, 873, 329, 1790, 12150]],\n", " [[14993, 9504, 366, 274, 4, 347, 4]],\n", " [[230, 4, 104, 4, 13142, 23065, 5739]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[14567, 12612]],\n", " [[7320, 632, 1037, 165]],\n", " [[229, 4113, 254, 354, 12150]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[9170, 2711, 8313]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[1209, 31002, 16146, 6331, 366]],\n", " [[10060, 632, 5259, 1037, 165]],\n", " [[5092, 632, 1037, 165]],\n", " [[5429, 4612, 163, 5269, 30919, 594]],\n", " [[6508, 632, 5259, 1037, 165]],\n", " [[14833, 274, 134, 2711]],\n", " [[7943, 17280, 13039]],\n", " [[2986, 9207]],\n", " [[91, 1610, 118, 274, 4, 347, 4]],\n", " [[163, 2462, 4291]],\n", " [[7943, 17280, 13039]],\n", " [[2009, 29018, 10221, 2684, 255, 11186, 1535]],\n", " [[255, 5156, 261, 6130, 12, 347, 4503, 9676, 7406, 3512]],\n", " [[5926, 8393, 18191]],\n", " [[20351, 2383, 42775, 2001, 33293]],\n", " [[381, 2544, 338, 11629, 14184]],\n", " [[83, 4, 104, 4, 12218]],\n", " [[31853, 2678, 2583, 5429]],\n", " [[2393, 873, 329, 1790, 12150]],\n", " [[3417, 36802, 5429]],\n", " [[9170, 2711, 8313]],\n", " [[12132, 632, 1037, 165]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[1456, 5235, 967, 4349, 5235, 344, 4, 530, 4]],\n", " [[5092, 632, 1037, 165]],\n", " [[4290, 5429]],\n", " [[230, 1097, 18604, 34028, 4574, 274, 4, 347, 4]],\n", " [[7960, 607, 274, 4, 347, 4]],\n", " [[230, 3376, 2711]],\n", " [[2009, 6748, 2723, 9697, 24066, 8843, 7641, 1479, 5895, 102]],\n", " [[9692, 274, 4, 347, 4]],\n", " [[221, 15277, 2912, 438, 1020, 38220]],\n", " [[580, 3600, 315, 274, 4, 347, 4]],\n", " [[3497, 9, 2487, 632, 5259, 1037, 165]],\n", " [[274, 5777, 28185, 3381, 242, 14795]],\n", " [[3098, 274, 4, 347, 4, 2691]],\n", " [[1287, 1422, 6772]],\n", " [[272, 4, 104, 4, 38, 9418, 14496, 20, 7485, 30521, 8907]],\n", " [[10585, 73, 9873, 35733, 5429]],\n", " [[4307, 12599, 876, 2955, 272, 2583]],\n", " [[7570, 20302, 7748, 274, 4, 347, 4]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[2910, 632, 1037, 165]],\n", " [[5429, 10402, 10489]],\n", " [[2711, 344, 20031, 12, 846, 40837]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[21105, 18604, 412, 274, 4, 347, 4]],\n", " [[468, 506, 574, 7602, 16408, 2691]],\n", " [[305, 2957, 260, 274, 4, 347, 4]],\n", " [[4380, 8271, 230, 5268]],\n", " [[2027, 188, 469, 15626]],\n", " [[36265, 22753]],\n", " [[230, 4, 495, 4, 2646, 23073, 1176, 1742]],\n", " [[91, 1610, 118, 274, 4, 347, 4]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[5429, 8937, 763, 12422, 7150, 9060]],\n", " [[22753, 21386, 3624, 163, 5593, 225]],\n", " [[1156, 632, 5259, 1037, 165]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[14667, 12, 387, 3006, 1180, 632, 1037, 165]],\n", " [[234, 4, 717, 4, 347, 4]],\n", " [[1625, 632, 1037, 165]],\n", " [[9096, 3497, 632, 4105, 4191, 165]],\n", " [[5429, 30377, 1496, 219, 229, 5079, 282, 2160, 2726, 330]],\n", " [[2822, 3622, 12612]],\n", " [[13287, 12, 25093, 7829, 40236, 2711]],\n", " [[7505, 17458, 632, 1037, 165]],\n", " [[896, 604, 18, 632, 4191, 165]],\n", " [[6508, 632, 5259, 1037, 165]],\n", " [[798, 632, 1037, 165]],\n", " [[9614, 632, 1037, 165]],\n", " [[2822, 3622, 12612]],\n", " [[2009, 16528, 952, 3602, 257]],\n", " [[18490, 632, 5259, 1037, 165]],\n", " [[5429, 10402, 10489, 2691]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[15897, 944, 1899, 281, 2344, 523, 1694, 3006, 19200]],\n", " [[2499, 11476]],\n", " [[4020, 412, 8314]],\n", " [[13694, 25280, 7204, 1627]],\n", " [[229, 7025, 30492, 241, 7450, 211, 7389]],\n", " [[2711, 23070, 9089, 14035, 3309, 876]],\n", " [[24799, 632, 1037, 165]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[4622, 139, 3767, 459, 38754]],\n", " [[4516, 673, 6743, 4936, 1073]],\n", " [[274, 530, 6015, 255, 2558, 4955, 17010]],\n", " [[163, 4330, 12, 725, 1253, 15821, 700]],\n", " [[2822, 14585, 2550, 625]],\n", " [[3702, 7776, 281, 12150]],\n", " [[5168, 5325]],\n", " [[381, 4, 347, 4, 24589, 1479, 6374]],\n", " [[7224, 30140, 102, 25204]],\n", " [[2009, 29018, 10221, 2684, 1995, 19201]],\n", " [[14781, 632, 1037, 165]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[8937, 1113, 1209, 11868, 1343, 22398, 2711]],\n", " [[2201, 6130, 12, 534, 8362, 1851, 274, 4, 347, 4]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[2361, 412, 274, 4, 347, 4]],\n", " [[2711, 344, 20031, 12, 846, 40837]],\n", " [[5429, 10402, 10489]],\n", " [[13287, 12, 25093, 7829, 40236, 2711]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[10500, 2383, 17973, 2620]],\n", " [[3317, 10506]],\n", " [[1775, 438, 10810, 4936, 15247, 274, 4, 347, 4]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[11666, 274, 4, 347, 4]],\n", " [[208, 4, 347, 4, 23094, 1043, 6073]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[5092, 632, 1037, 165]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[112, 4, 5429, 234, 5172, 282, 2865]],\n", " [[2910, 632, 1037, 165]],\n", " [[5429, 2049, 16408]],\n", " [[2361, 412, 274, 4, 347, 4]],\n", " [[315, 532, 390, 18, 632, 4191, 165]],\n", " [[7570, 20302, 7748, 274, 4, 347, 4]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[7960, 607, 274, 4, 347, 4]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[5819, 12770]],\n", " [[5703, 15908]],\n", " [[2910, 632, 1037, 165]],\n", " [[7137, 12242, 15363, 274, 4, 347, 4]],\n", " [[21780, 12527, 493, 234, 293, 255, 329, 26051, 274, 4, 347, 4]],\n", " [[1608, 179, 1561, 267, 18057, 344, 9707, 1115, 1250, 21783, 5410]],\n", " [[14993, 5150, 10888, 19864, 354]],\n", " [[5854, 13170]],\n", " [[9245, 315, 274, 4, 347, 4]],\n", " [[5429, 208, 1499]],\n", " [[5854, 412, 4998]],\n", " [[208, 4214, 15333, 5429]],\n", " [[230, 4, 250, 4, 468, 1140, 23250, 208, 2726, 1399]],\n", " [[391, 1101, 632, 1037, 165]],\n", " [[25103, 710, 6909, 3830, 267, 366, 263, 3060, 1043, 2070, 329]],\n", " [[230, 4, 495, 4, 2646, 23073, 1176, 1742]],\n", " [[12966, 6748, 2723, 7222, 726, 1176, 8129, 9401]],\n", " [[7413, 268, 4998, 673]],\n", " [[7556, 632, 5259, 1037, 165]],\n", " [[1568, 1211, 7144]],\n", " [[7224, 597, 19643, 1688, 3999, 1243]],\n", " [[17182, 5268, 163, 6457, 705, 468, 28814, 102]],\n", " [[21299, 2186, 274, 4, 347]],\n", " [[9035, 412, 274, 4, 347, 4]],\n", " [[5429, 13985, 405, 6130, 14330]],\n", " [[3417, 36802, 5429]],\n", " [[1625, 632, 1037, 165]],\n", " [[2499, 18946]],\n", " [[5429, 4612]],\n", " [[5729, 412, 5429]],\n", " [[24986, 6847, 20623, 261]],\n", " [[29018, 10221, 2684, 764, 6487, 3407, 14182, 12612]],\n", " [[9601, 19119, 32482, 4989]],\n", " [[5244, 632, 1037, 165]],\n", " [[21774, 632, 1037, 165]],\n", " [[2000, 632, 1037, 165]],\n", " [[1534, 1916, 5846, 4998]],\n", " [[1405, 12037, 163, 3632]],\n", " [[840, 463, 1657, 9002, 1173, 260, 274, 4, 347, 4]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[22256, 2565, 632, 1037, 165]],\n", " [[22378, 12, 18551, 139, 390, 18]],\n", " [[1568, 1211, 7144]],\n", " [[83, 4, 104, 4, 12218]],\n", " [[9176, 381, 12, 26902, 5429]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[5420, 15929]],\n", " [[4556, 26488, 8647, 293, 5429]],\n", " [[468, 506, 387, 312, 9259, 22739]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[2910, 632, 1037, 165]],\n", " [[12966, 6748, 2723, 7222, 726, 1176, 8129, 9401]],\n", " [[4152, 305, 4, 597, 4, 347, 4]],\n", " [[6171, 632, 5259, 1037, 165]],\n", " [[1625, 632, 1037, 165]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[9170, 2711, 8313]],\n", " [[5429, 24542, 298, 45739, 1879]],\n", " [[14993, 5150, 263, 23294, 4061]],\n", " [[391, 1101, 632, 1037, 165]],\n", " [[726, 7746, 3572, 4998]],\n", " [[7320, 632, 1037, 165]],\n", " [[1429, 632, 1037, 165]],\n", " [[2000, 632, 1037, 165]],\n", " [[17535, 5382, 975, 844, 181, 73, 428, 17411, 12, 17906]],\n", " [[14585, 2550, 1829, 7065, 3427, 7222, 4677, 1794, 853, 281]],\n", " [[15837, 5223, 23872, 352, 118, 6579, 625, 6417]],\n", " [[3417, 36802, 5429]],\n", " [[6748, 2723, 9697, 17686, 26802, 274, 4, 347, 4]],\n", " [[4868, 846, 381, 2028, 5410, 2987]],\n", " [[22514, 632, 1037, 165]],\n", " [[468, 506, 387, 312, 9259, 22739, 3082]],\n", " [[8937, 1113, 1209, 11868, 1343, 22398, 2711]],\n", " [[798, 632, 1037, 165]],\n", " [[44602, 154, 179, 344, 9707, 1115, 1250, 1638, 462, 36384]],\n", " [[9543, 11861, 90, 281]],\n", " [[83, 4, 104, 4, 12218]],\n", " [[4514, 9529]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[1600, 390, 18, 632, 1037, 165]],\n", " [[188, 4942, 17168]],\n", " [[21774, 632, 1037, 165]],\n", " [[5716, 4597, 274, 4, 347, 4]],\n", " [[2361, 412, 274, 4, 347, 4]],\n", " [[5092, 632, 1037, 165]],\n", " [[1603, 632, 1037, 165]],\n", " [[3161, 20165]],\n", " [[163, 4668, 281, 12150]],\n", " [[381, 2544, 338, 11629, 14184]],\n", " [[2000, 632, 1037, 165]],\n", " [[7224, 597, 19643, 1688, 3999, 1243]],\n", " [[8983, 315, 274, 4, 347, 4]],\n", " [[22839, 2727, 6748, 2723, 7222, 2588, 4677, 13738]],\n", " [[6037, 632, 1037, 165]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[2361, 412, 274, 4, 347, 4]],\n", " [[1429, 632, 1037, 165]],\n", " [[1505, 1704, 3497, 632, 1037, 165]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[35906, 384, 10839, 642, 12733, 226, 267, 1792, 462, 267, 1113]],\n", " [[5092, 632, 1037, 165]],\n", " [[1625, 632, 1037, 165]],\n", " [[2588, 2461, 83, 4643]],\n", " [[18749, 412, 274, 4, 347, 4]],\n", " [[2005, 3590, 274, 4467, 18217, 2893, 13345]],\n", " [[13943, 415, 1210, 405, 2383, 771, 16966, 1698, 28544]],\n", " [[3426, 274, 4, 347, 4]],\n", " [[5480, 717, 27093, 918]],\n", " [[384, 13967, 274, 4467, 18217, 2893, 13345]],\n", " [[315, 532, 604, 18, 632, 4191, 165]],\n", " [[8683, 632, 5259, 1037, 165]],\n", " [[5429, 229, 5079, 282, 1630, 271]],\n", " [[15376, 493, 21115]],\n", " [[2910, 632, 1037, 165]],\n", " [[369, 21894, 632, 1037, 165]],\n", " [[525, 700, 20852, 12221, 274, 4, 347, 4]],\n", " [[4317, 10031, 7339, 21098, 12150]],\n", " [[7765, 6412, 4998]],\n", " [[5498, 632, 1037, 165]],\n", " [[4152, 274, 4, 347, 4]],\n", " [[5429, 11996, 1168, 22487, 14722]],\n", " [[6171, 632, 5259, 1037, 165]],\n", " [[44602, 154, 179, 344, 9707, 1115, 1250, 1638, 462, 36384]],\n", " [[4290, 5429]],\n", " [[5639, 632, 1037, 165]],\n", " [[14993, 9504, 366, 274, 4, 347, 4]],\n", " [[3098, 274, 4, 347, 4, 2691]],\n", " [[208, 4, 104, 4, 347, 4, 7645, 6483]],\n", " [[726, 12, 597, 5655, 7776, 5429]],\n", " [[3590, 4947, 922]],\n", " [[5429, 13073, 1075, 1242, 1879, 3467]],\n", " [[4152, 305, 4, 597, 4, 347, 4]],\n", " [[1603, 632, 1037, 165]],\n", " [[5854, 13170]],\n", " [[15091]],\n", " [[10060, 632, 5259, 1037, 165]],\n", " [[29018, 10221, 2684, 6843]],\n", " [[1156, 632, 5259, 1037, 165]],\n", " [[391, 1101, 632, 1037, 165]],\n", " [[4998, 953, 7104]],\n", " [[163, 7110, 27547, 16784, 7406, 3512]],\n", " [[5680, 176, 500, 7801, 1001, 105, 282, 2711]],\n", " [[5092, 632, 1037, 165]],\n", " [[3098, 274, 4, 347, 4, 2691]],\n", " [[3160, 17492]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[315, 13716, 6350]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[4341, 3671, 642, 1033, 5429]],\n", " [[2000, 632, 1037, 165]],\n", " [[3426, 274, 4, 347, 4]],\n", " [[2711, 23070, 9089, 14035, 3309, 876]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[208, 4214, 1560, 1140, 8, 2869, 17010, 2520, 2379, 632, 1037, 165]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[1221, 632, 5259, 1037, 165]],\n", " [[2848, 26298, 9401, 208, 4, 347, 4]],\n", " [[10060, 632, 5259, 1037, 165]],\n", " [[7320, 632, 1037, 165]],\n", " [[289, 24812, 523, 1456, 108, 254, 264, 3952, 274, 4, 347, 4]],\n", " [[1429, 390, 18, 632, 1037, 165]],\n", " [[896, 390, 18, 632, 4191, 165]],\n", " [[19763, 16872]],\n", " [[10060, 632, 5259, 1037, 165]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[2910, 632, 1037, 165]],\n", " [[4436, 26827, 906, 289, 1140, 763, 6070, 5413, 2009]],\n", " [[29018, 10221, 2684, 3622]],\n", " [[8683, 632, 5259, 1037, 165]],\n", " [[11141, 281, 3060, 4488, 274, 4, 347, 4]],\n", " [[5429, 17326, 19654, 29712]],\n", " [[11955, 274, 4, 347, 4]],\n", " [[14993, 5150, 10888, 19864, 354]],\n", " [[5429, 1587, 687, 8799, 12, 19451]],\n", " [[2009, 3574, 1423, 6748, 2723, 9697, 22378, 22378]],\n", " [[944, 2253, 757, 3983, 1890, 6005]],\n", " [[22839, 2727, 3771, 20375, 4242]],\n", " [[660, 22494, 13310, 18440, 1073, 4193, 102, 5429]],\n", " [[229, 4, 3769, 1001, 381, 354, 3898, 3066, 16836, 3204, 4393, 225]],\n", " [[726, 85, 90, 19284, 5429]],\n", " [[25305, 8, 26288, 3733, 1417, 1243, 632, 1037, 165]],\n", " [[3417, 13486]],\n", " [[230, 1073, 3572, 1512, 2912, 438, 1020]],\n", " [[5429, 221, 4438, 412]],\n", " [[22705, 274, 4, 347, 4]],\n", " [[1221, 632, 5259, 1037, 165]],\n", " [[13733, 632, 1037, 165]],\n", " [[13733, 632, 1037, 165]],\n", " [[2499, 18946]],\n", " [[5429, 4612]],\n", " [[764, 5465, 17010, 263, 33759, 783, 7499]],\n", " [[18490, 632, 5259, 1037, 165]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[5429, 7916, 354, 271]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[369, 17577, 315, 5429]],\n", " [[9601, 24857, 468, 8508, 11760]],\n", " [[112, 4, 5429, 1332, 5459]],\n", " [[7320, 632, 1037, 165]],\n", " [[15607, 412, 274, 4, 347, 4]],\n", " [[5429, 9922, 8530]],\n", " [[12587, 632, 1037, 165]],\n", " [[14781, 632, 1037, 165]],\n", " [[2742, 21402, 530, 4424, 22015, 2265, 415, 13714, 8604]],\n", " [[38499, 163, 20997]],\n", " [[21774, 632, 1037, 165]],\n", " [[726, 2379, 28366, 2383, 597, 225, 3181]],\n", " [[2009, 344, 1417, 1342, 1182, 5654, 337, 4488]],\n", " [[15959, 1054, 8899, 274, 4, 347, 4]],\n", " [[6508, 632, 5259, 1037, 165]],\n", " [[2910, 632, 1037, 165]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[14993, 5150, 10888, 19864, 354]],\n", " [[726, 344, 1222, 3578, 2009]],\n", " [[10060, 632, 5259, 1037, 165]],\n", " [[16518, 12470, 274, 4, 347, 4]],\n", " [[1625, 632, 1037, 165]],\n", " [[12940, 632, 5259, 1037, 165]],\n", " [[1221, 390, 18, 632, 4191, 165]],\n", " [[17112, 3061, 12, 487, 5600, 139]],\n", " [[5429, 11996, 1168, 22487, 14722]],\n", " [[2009, 29018, 10221, 2684, 4838, 281, 4989]],\n", " [[3378, 1332]],\n", " [[312, 1829, 248, 18974, 354, 274, 4, 347, 4]],\n", " [[28147, 31732, 2711]],\n", " [[274, 530, 468, 1120, 271]],\n", " [[188, 1156, 13340]],\n", " [[33846, 22153, 2001, 3917, 2253, 9401]],\n", " [[6331,\n", " 1975,\n", " 493,\n", " 3381,\n", " 4214,\n", " 6838,\n", " 1001,\n", " 6873,\n", " 1526,\n", " 6374,\n", " 263,\n", " 7065,\n", " 3427,\n", " 293]],\n", " [[211, 4, 347, 4, 315]],\n", " [[5429, 208, 1499]],\n", " [[2910, 632, 1037, 165]],\n", " [[5429, 15757, 12705, 3467]],\n", " [[22336, 17177, 248, 1657, 21251]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[17609, 632, 1037, 165]],\n", " [[9793, 5928, 274, 4, 347, 4]],\n", " [[4868, 846, 381, 2028, 5410, 2987]],\n", " [[11437, 632, 5259, 1037, 165]],\n", " [[4369, 6884, 20726, 1253, 8403]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[36589, 7876, 4668, 263, 732, 3695, 859, 102, 1792, 1069, 927]],\n", " [[12932, 534, 43130, 22590, 225, 10436]],\n", " [[21774, 632, 1037, 165]],\n", " [[369, 1961, 5429]],\n", " [[798, 632, 1037, 165]],\n", " [[2822, 3622, 12612]],\n", " [[33445, 14511, 3109]],\n", " [[83, 4, 717, 4, 530, 4, 11198, 274, 4, 347, 4]],\n", " [[1604, 2374, 11761, 9466]],\n", " [[2009, 255, 25491]],\n", " [[5837, 15945, 5429]],\n", " [[17983, 632, 1037, 165]],\n", " [[5429, 30610, 1417]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[391, 1101, 632, 1037, 165]],\n", " [[2769, 632, 5259, 1037, 165]],\n", " [[221, 5268, 7038, 14559, 3467]],\n", " [[7296, 271, 8726, 12612]],\n", " [[5429, 660, 329, 3592, 256, 7352, 1488, 330, 2331]],\n", " [[2822, 3622, 6719, 4699]],\n", " [[391, 1101, 632, 1037, 165]],\n", " [[12612, 221, 1488, 26802]],\n", " [[30492, 241, 7450, 14795]],\n", " [[6037, 632, 1037, 165]],\n", " [[5429, 13073, 1075, 1242, 1879, 3467]],\n", " [[3497, 9, 2487, 632, 5259, 1037, 165]],\n", " [[13708, 26450, 2912, 438, 1020]],\n", " [[274, 530, 11504, 257, 4807, 282, 2603, 21752, 26084, 2426]],\n", " [[221, 2001, 366, 5429]],\n", " [[315, 532, 390, 18, 632, 4191, 165]],\n", " [[14605, 632, 5259, 1037, 165]],\n", " [[8683, 632, 5259, 1037, 165]],\n", " [[12612, 4436, 20287, 337]],\n", " [[13633, 83, 4, 597, 4, 347, 4]],\n", " [[188, 3324, 632, 1037, 165]],\n", " [[274, 5777, 28185, 3381, 242, 14795]],\n", " [[14993, 5150, 10888, 19864, 354, 274, 1140, 4691, 179]],\n", " [[121, 9056, 102, 1211, 7128, 29]],\n", " [[4622, 139, 3767, 459, 38754]],\n", " [[3430, 632, 1037, 165]],\n", " [[2893, 13345, 29018, 10221, 2684, 12765, 139, 4214, 2955, 6251, 763]],\n", " [[3274, 331, 4223]],\n", " [[226, 18307, 234, 324, 438, 324, 438, 2478]],\n", " [[15081]],\n", " [[5429, 4612, 274, 15035, 1977]],\n", " [[14567, 12612]],\n", " [[580, 3600, 315, 274, 4, 347, 4]],\n", " [[2393, 873, 329, 1790, 12150]],\n", " [[112, 4, 5429, 1332, 5459]],\n", " [[2201, 6130, 12, 534, 8362, 1851, 274, 4, 347, 4]],\n", " [[27162, 11626, 3990, 1722, 179, 274, 4, 347, 4]],\n", " [[16193, 632, 1037, 165]],\n", " [[2271, 13310, 36349, 2884, 337, 757, 5107, 5429]],\n", " [[7505, 17458, 632, 1037, 165]],\n", " [[20351, 2383, 42775, 2001, 33293]],\n", " [[7296, 271, 8726, 12612]],\n", " [[663, 11758]],\n", " [[3426, 274, 4, 347, 4]],\n", " [[18490, 632, 5259, 1037, 165]],\n", " [[5429, 6322]],\n", " [[9793, 5928, 274, 4, 347, 4]],\n", " [[229, 5596, 21834]],\n", " [[31280, 282, 5269, 29048, 263, 255, 6166, 11408, 102]],\n", " [[12612, 4436, 20287, 337]],\n", " [[14664, 412, 5429]],\n", " [[21774, 632, 1037, 165]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[2361, 315, 274, 4, 347, 4]],\n", " [[12919, 5429]],\n", " [[726, 12, 3609, 895, 1543, 2636, 1847, 2009]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[2177, 2692, 10929]],\n", " [[10035, 5317, 24058]],\n", " [[11666, 274, 4, 347, 4]],\n", " [[344, 30395, 12108, 368]],\n", " [[468, 506, 387, 312, 9259, 22739]],\n", " [[12940, 632, 5259, 1037, 165]],\n", " [[2381, 102, 3703, 574, 165]],\n", " [[7556, 632, 5259, 1037, 165]],\n", " [[19041, 10968, 6752, 10327]],\n", " [[226, 4061, 384, 3632]],\n", " [[208, 10729, 14777, 225]],\n", " [[6171, 632, 5259, 1037, 165]],\n", " [[14993, 5150, 10888, 19864, 354]],\n", " [[7505, 17458, 632, 1037, 165]],\n", " [[15639, 632, 5259, 1037, 165]],\n", " [[9793, 5928, 274, 4, 347, 4]],\n", " [[14993, 5150, 10888, 19864, 354, 274, 1140, 4691, 179]],\n", " [[9170, 2711, 8313]],\n", " [[188, 469, 1211, 9926]],\n", " [[21774, 632, 1037, 165]],\n", " [[83, 4, 104, 4, 12218]],\n", " [[274, 530, 840, 330, 105, 1187, 12733]],\n", " [[7296, 271, 8726, 12612]],\n", " [[5429, 10402, 10489, 2691]],\n", " [[5429, 2049, 16408]],\n", " [[208, 1879, 2401, 12150]],\n", " [[208, 4214, 15333, 5429]],\n", " [[17468, 448, 13023, 5641, 163, 20997]],\n", " [[274, 5777, 28185, 3381, 242, 14795]],\n", " [[2769, 632, 5259, 1037, 165]],\n", " [[2910, 632, 1037, 165]],\n", " [[2769, 632, 5259, 1037, 165]],\n", " [[2711, 23070, 9089, 14035, 3309, 876]],\n", " [[226, 4061, 384, 3632]],\n", " [[3160, 17492]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[8683, 390, 18, 632, 865, 3512, 165]],\n", " [[25011, 12, 2022, 468, 11485, 102]],\n", " [[2361, 412, 274, 4, 347, 4]],\n", " [[3497, 9, 2487, 632, 5259, 1037, 165]],\n", " [[3378, 5553, 268]],\n", " [[3497, 9, 2487, 632, 5259, 1037, 165]],\n", " [[1918, 1140, 14962, 274, 4467, 18217, 2893, 13345, 36, 21963, 43]],\n", " [[312, 4, 3217, 6293]],\n", " [[4766, 14572]],\n", " [[798, 632, 1037, 165]],\n", " [[3378, 5553, 268]],\n", " [[8873, 9399, 1906, 263, 2588, 221, 2550, 5079]],\n", " [[5854, 13170]],\n", " [[5429, 15757, 12705, 3467]],\n", " [[4380, 8271, 230, 5268]],\n", " [[5429, 7093, 523]],\n", " [[4436, 29, 385, 108, 11094, 4947, 11249, 3663, 13324]],\n", " [[1775, 438, 10810, 4936, 15247, 274, 4, 347, 4]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[660, 22494, 13310, 18440, 1073, 4193, 102, 5429]],\n", " [[20351, 2383, 42775, 2001, 33293]],\n", " [[22839, 2727, 6748, 2723, 7222, 726, 2089, 5272]],\n", " [[3332, 2646, 26681, 274, 4, 347, 4]],\n", " [[3378, 5553, 268]],\n", " [[15376, 493, 21115]],\n", " [[166, 5618, 4670, 274, 4, 347, 4]],\n", " [[369, 17577, 315, 5429]],\n", " [[221, 2336, 272, 30265, 1243, 274, 4, 347, 4]],\n", " [[188, 3324, 632, 1037, 165]],\n", " [[208, 4, 347, 4, 2265, 6080]],\n", " [[6171, 632, 5259, 1037, 165]],\n", " [[952, 10172, 5521, 718, 281, 12612]],\n", " [[29018, 10221, 2684, 3622]],\n", " [[229,\n", " 4,\n", " 104,\n", " 4,\n", " 347,\n", " 4,\n", " 226,\n", " 5361,\n", " 2558,\n", " 384,\n", " 2603,\n", " 12,\n", " 846,\n", " 2560,\n", " 463,\n", " 8663]],\n", " [[16588, 366, 12612]],\n", " [[315, 532, 604, 18, 632, 4191, 165]],\n", " [[3430, 632, 1037, 165]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[2009, 29018, 10221, 2684, 3182, 2727]],\n", " [[24195, 632, 1037, 165]],\n", " [[20421, 428, 10344, 274, 4, 347, 4]],\n", " [[14993, 5150, 263, 23294, 4061]],\n", " [[1775, 438, 10810, 5008, 12837, 274, 4, 347, 4]],\n", " [[208, 4, 104, 4, 347, 4, 7645, 6483]],\n", " [[208, 4, 574, 4, 1664, 506, 2426]],\n", " [[6015, 6130, 12, 23791, 90, 21302]],\n", " [[9341, 261, 632, 1037, 165]],\n", " [[274, 530, 229, 7381, 139, 2742, 10809, 31316, 36533]],\n", " [[312, 1829, 248, 18974, 354, 274, 4, 347, 4]],\n", " [[312, 1829, 248, 18974, 354, 274, 4, 347, 4]],\n", " [[2009, 44285, 1851]],\n", " [[391, 1101, 632, 1037, 165]],\n", " [[36858, 25278, 22753]],\n", " [[2646, 1210, 24181, 274, 4, 347, 4]],\n", " [[5429, 4424, 22015, 11135, 2816, 438]],\n", " [[12132, 632, 1037, 165]],\n", " [[4174, 632, 5259, 1037, 165]],\n", " [[5244, 632, 1037, 165]],\n", " [[274, 3573, 4448, 6276]],\n", " [[1775, 438, 10810, 4936, 15247, 274, 4, 347, 4]],\n", " [[726, 12, 597, 5655, 7776, 4998]],\n", " [[274, 530, 4677, 9615]],\n", " [[1287, 1422, 6772]],\n", " [[11193, 1908, 274, 4, 347, 4]],\n", " [[17112, 3061, 12, 487, 5600, 139]],\n", " [[5429, 24542, 298, 45739, 1879]],\n", " [[2027, 188, 469, 15626]],\n", " [[13800, 41269, 31221]],\n", " [[274, 530, 1209, 271, 873, 7669]],\n", " [[7320, 632, 1037, 165]],\n", " [[12723, 12130, 1178]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[2711, 43657]],\n", " [[5429, 2049, 16408]],\n", " [[2893, 13345, 263, 6304, 415, 281, 109, 37313, 3314, 139]],\n", " [[3864, 102, 35020, 354, 18440, 1073, 4193, 102, 5429]],\n", " [[44558, 991, 853, 4077, 873, 2768, 2258, 12150]],\n", " [[1470, 390, 18, 632, 865, 3512, 165]],\n", " [[9170, 2711, 8313]],\n", " [[580, 3600, 315, 274, 4, 347, 4]],\n", " [[312, 1829, 248, 18974, 354, 274, 4, 347, 4]],\n", " [[3426, 274, 4, 347, 4]],\n", " [[21774, 632, 1037, 165]],\n", " [[896, 604, 18, 632, 4191, 165]],\n", " [[4436, 26827, 906, 289, 1140, 763, 6070, 5413, 2009]],\n", " [[5429, 221, 4438, 412]],\n", " [[1211, 2141, 274, 4, 347, 4]],\n", " [[726, 12, 534, 4759, 15997, 1847, 2009]],\n", " [[4998, 953, 7104]],\n", " [[315, 532, 604, 18, 632, 4191, 165]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[21774, 632, 1037, 165]],\n", " [[1221, 632, 5259, 1037, 165]],\n", " [[5429, 468, 1459, 4311, 330]],\n", " [[1287, 1422, 12190]],\n", " [[4152, 274, 4, 347, 4]],\n", " [[3417, 36802, 5429]],\n", " [[2000, 632, 1037, 165]],\n", " [[20351, 2383, 42775, 2001, 33293]],\n", " [[25305, 8, 26288, 3733, 1417, 1243, 632, 1037, 165]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[11666, 274, 4, 347, 4]],\n", " [[6748, 2723, 9697, 25452, 338, 12109]],\n", " [[6371, 102, 1209, 1075, 274, 4, 347, 4]],\n", " [[2009, 29018, 10221, 2684, 4838, 281, 4989]],\n", " [[4152, 274, 4, 347, 4]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[3426, 274, 4, 347, 4]],\n", " [[5429, 229, 5079, 282, 1630, 271]],\n", " [[2009, 29018, 10221, 2684, 23654, 9401]],\n", " [[9692, 274, 4, 347, 4]],\n", " [[4273, 853, 424, 315, 274, 4, 347, 4]],\n", " [[7296, 271, 8726, 12612]],\n", " [[2822, 6525, 354, 4317, 7474, 118, 1140]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[2529, 119, 3671, 35960]],\n", " [[25305, 8, 26288, 3733, 1417, 1243, 632, 1037, 165]],\n", " [[4619, 26769, 4843, 242, 2005, 6945]],\n", " [[580, 14312, 11645, 19032, 274, 4, 347, 4]],\n", " [[14056, 369, 4680, 274, 4, 347, 4]],\n", " [[1156, 632, 5259, 1037, 165]],\n", " [[5092, 632, 1037, 165]],\n", " [[5429, 13985, 405, 6130, 14330]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[2910, 632, 1037, 165]],\n", " [[96, 242, 366, 13519, 625, 4733]],\n", " [[14993, 5150, 10888, 19864, 354, 274, 1140, 4691, 179]],\n", " [[274, 530, 6015, 255, 2558, 4955, 17010]],\n", " [[255, 14744, 632, 1037, 165]],\n", " [[726, 12, 725, 718, 337, 208, 5268]],\n", " [[826, 2583, 12, 24667, 863]],\n", " [[208, 1741, 19209, 19380, 12, 565, 677, 47497]],\n", " [[6015, 16641, 163, 20997]],\n", " [[4677, 254, 4992, 5429]],\n", " [[9096, 3497, 632, 5259, 1037, 165]],\n", " [[315, 532, 604, 18, 632, 4191, 165]],\n", " [[7270, 10493]],\n", " [[12919, 274, 4, 347, 4]],\n", " [[391, 1101, 632, 1037, 165]],\n", " [[15607, 412, 274, 4, 347, 4]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[5429, 16706, 90, 7228, 229, 3671, 8502]],\n", " [[6253, 846, 5620, 354, 3321]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[11141, 281, 3060, 4488, 274, 4, 347, 4]],\n", " [[2910, 632, 1037, 165]],\n", " [[289, 24812, 523, 1456, 108, 254, 264, 3952, 274, 4, 347, 4]],\n", " [[726, 4417, 338, 4998]],\n", " [[13077, 412, 83, 4, 597, 4, 347, 4]],\n", " [[2032, 11850, 257, 5429]],\n", " [[5302, 2681, 1243, 967, 366, 274, 4, 347, 4]],\n", " [[33445, 14511, 3109]],\n", " [[2009, 29018, 10221, 2684, 4619, 26769, 4843, 242]],\n", " [[2910, 632, 1037, 165]],\n", " [[384, 10839, 642, 493, 5366, 2601]],\n", " [[4152, 305, 4, 597, 4, 347, 4]],\n", " [[5092, 632, 1037, 165]],\n", " [[17057, 8441]],\n", " [[1156, 632, 5259, 1037, 165]],\n", " [[9692, 274, 4, 347, 4]],\n", " [[11536, 632, 1037, 165]],\n", " [[1211, 6518, 8441]],\n", " ...],\n", " 'relation': ['P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " ...],\n", " 'num_answers': [1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " ...]},\n", " '2020-Q1': {'text': [['Alex Morgan plays for .'],\n", " ['Lionel Messi plays for .'],\n", " ['Cristiano Ronaldo plays for .'],\n", " ['LeBron James plays for .'],\n", " ['Zlatan Ibrahimović plays for .'],\n", " ['Neymar plays for .'],\n", " ['Ronaldinho plays for .'],\n", " ['Megan Rapinoe plays for .'],\n", " ['Pau Gasol plays for .'],\n", " ['Alisha Lehmann plays for .'],\n", " ['Robert Lewandowski plays for .'],\n", " ['Gianluigi Buffon plays for .'],\n", " ['Andrea Pirlo plays for .'],\n", " ['Kevin Durant plays for .'],\n", " ['Lukas Podolski plays for .'],\n", " ['Iker Casillas plays for .'],\n", " ['Lewis Hamilton plays for .'],\n", " ['Formiga plays for .'],\n", " ['Naomi Osaka plays for .'],\n", " ['José Mourinho plays for .'],\n", " ['Luis Suárez plays for .'],\n", " ['Tim Cahill plays for .'],\n", " ['Chris Froome plays for .'],\n", " ['Mario Balotelli plays for .'],\n", " ['Lieke Martens plays for .'],\n", " ['Manuel Neuer plays for .'],\n", " ['Lindsey Horan plays for .'],\n", " ['Javier Mascherano plays for .'],\n", " ['James Rodríguez plays for .'],\n", " ['Hope Solo plays for .'],\n", " ['Diego Forlán plays for .'],\n", " ['Sebastián Abreu plays for .'],\n", " ['Carli Lloyd plays for .'],\n", " ['Marta plays for .'],\n", " ['Javier Hernández plays for .'],\n", " ['Yuzvendra Chahal plays for .'],\n", " ['Thiago Silva plays for .'],\n", " ['Andrés Iniesta plays for .'],\n", " ['Sergio Agüero plays for .'],\n", " ['Marianne Vos plays for .'],\n", " ['Sergio Ramos plays for .'],\n", " ['Mario Gómez plays for .'],\n", " ['Carlos Tevez plays for .'],\n", " ['Pepe Reina plays for .'],\n", " ['Giovani dos Santos plays for .'],\n", " ['David Villa plays for .'],\n", " ['Ricardo Quaresma plays for .'],\n", " ['Mesut Özil plays for .'],\n", " ['Freddy Adu plays for .'],\n", " ['Cristiane Rozeira plays for .'],\n", " ['Maya Moore plays for .'],\n", " ['Giorgio Chiellini plays for .'],\n", " ['Robinho plays for .'],\n", " ['Bastian Schweinsteiger plays for .'],\n", " ['Luis Scola plays for .'],\n", " ['Jérôme Boateng plays for .'],\n", " ['Kevin-Prince Boateng plays for .'],\n", " ['Egidio Arévalo Rios plays for .'],\n", " ['Dwyane Wade plays for .'],\n", " ['Dwight Howard plays for .'],\n", " ['Cesc Fàbregas plays for .'],\n", " ['Nigel de Jong plays for .'],\n", " ['Colin Kazim-Richards plays for .'],\n", " ['Pierre-Emerick Aubameyang plays for .'],\n", " ['David Alaba plays for .'],\n", " ['Xherdan Shaqiri plays for .'],\n", " ['Laura Kenny plays for .'],\n", " ['Edinson Cavani plays for .'],\n", " ['Breanna Stewart plays for .'],\n", " ['Bruno Alves plays for .'],\n", " ['Ali Krieger plays for .'],\n", " ['Antoine Griezmann plays for .'],\n", " ['Mohamed Salah plays for .'],\n", " ['Beto plays for .'],\n", " ['Memphis Depay plays for .'],\n", " ['Pablo Zabaleta plays for .'],\n", " ['Jozy Altidore plays for .'],\n", " ['Steve Nash plays for .'],\n", " ['Maya Yoshida plays for .'],\n", " ['Guillermo Ochoa plays for .'],\n", " ['Serge Gnabry plays for .'],\n", " ['Christine Sinclair plays for .'],\n", " ['Paul Pogba plays for .'],\n", " ['Alexandre Pato plays for .'],\n", " ['Hugo Almeida plays for .'],\n", " [\"Raïs M'Bolhi plays for .\"],\n", " ['Peter Sagan plays for .'],\n", " ['Joel Campbell plays for .'],\n", " ['Luka Modrić Papá de Lionel Messi plays for .'],\n", " ['Toni Kroos plays for .'],\n", " ['Giulia Gwinn plays for .'],\n", " ['Ellen van Dijk plays for .'],\n", " ['Lucas Barrios plays for .'],\n", " ['Daniel Fernandes plays for .'],\n", " ['Juan Mata plays for .'],\n", " ['Michael Bradley plays for .'],\n", " ['Gonzalo Higuaín plays for .'],\n", " ['Greg Van Avermaet plays for .'],\n", " ['Alexandra Lacrabère plays for .'],\n", " ['Javi Martínez plays for .'],\n", " ['Davide Rebellin plays for .'],\n", " ['Ricardo Costa plays for .'],\n", " ['Kyrie Irving plays for .'],\n", " ['Sebastian Vettel plays for .'],\n", " ['Ingrid Syrstad Engen plays for .'],\n", " ['Adrien Silva plays for .'],\n", " ['Rigoberto Urán plays for .'],\n", " ['John Arne Riise plays for .'],\n", " ['Tobin Heath plays for .'],\n", " ['Hedvig Lindahl plays for .'],\n", " ['Marcelo plays for .'],\n", " ['Radamel Falcao plays for .'],\n", " ['Jakob Fuglsang plays for .'],\n", " ['Mikel John Obi plays for .'],\n", " ['Hulk plays for .'],\n", " ['Rudy Fernández plays for .'],\n", " ['Lizzie Deignan plays for .'],\n", " ['Zé Roberto plays for .'],\n", " ['Milan Baroš plays for .'],\n", " ['Łukasz Fabiański plays for .'],\n", " ['Mats Hummels plays for .'],\n", " ['Diego Ribas da Cunha plays for .'],\n", " ['Artem Milevskyi plays for .'],\n", " ['Anna van der Breggen plays for .'],\n", " ['Rafinha plays for .'],\n", " ['Vladimir Stojković plays for .'],\n", " ['Ángel Di María plays for .'],\n", " ['Chris Paul plays for .'],\n", " ['Rosana dos Santos Augusto plays for .'],\n", " ['Manuel da Costa plays for .'],\n", " ['Alexis Sánchez plays for .'],\n", " ['Sophie Schmidt plays for .'],\n", " ['Mario Mandžukić plays for .'],\n", " ['Pepe plays for .'],\n", " ['Philippe Coutinho plays for .'],\n", " ['Sadio Mané plays for .'],\n", " ['Christen Press plays for .'],\n", " ['Keylor Navas plays for .'],\n", " ['Valentino Rossi plays for .'],\n", " ['Bojan Krkić plays for .'],\n", " ['Diego Costa plays for .'],\n", " ['Steve Mandanda plays for .'],\n", " ['Miodrag Anđelković plays for .'],\n", " ['Thibaut Courtois plays for .'],\n", " ['Eiður Guðjohnsen plays for .'],\n", " ['Jakub Błaszczykowski plays for .'],\n", " ['Henning Berg plays for .'],\n", " ['Annemiek van Vleuten plays for .'],\n", " ['Álvaro Pereira plays for .'],\n", " ['Florent Sinama Pongolle plays for .'],\n", " ['Miljan Mrdaković plays for .'],\n", " ['Mario Götze plays for .'],\n", " ['Jô plays for .'],\n", " ['Claudio Pizarro plays for .'],\n", " ['Nani plays for .'],\n", " ['Ivan Rakitić plays for .'],\n", " ['Erin McLeod plays for .'],\n", " ['Peter Odemwingie plays for .'],\n", " ['Sofia Jakobsson plays for .'],\n", " ['David Luiz plays for .'],\n", " ['Jordi Alba plays for .'],\n", " ['Sami Khedira plays for .'],\n", " ['Tony Martin plays for .'],\n", " ['Kirsten Wild plays for .'],\n", " ['Nicklas Bendtner plays for .'],\n", " ['Junichi Inamoto plays for .'],\n", " ['Michael Umaña plays for .'],\n", " ['Niklas Süle plays for .'],\n", " ['Diego Godín plays for .'],\n", " ['Yuto Nagatomo plays for .'],\n", " ['Olivier Giroud plays for .'],\n", " ['Nicolas Roche plays for .'],\n", " [\"Kelley O'Hara plays for .\"],\n", " ['Lisa De Vanna plays for .'],\n", " ['Rafael van der Vaart plays for .'],\n", " ['Elena Delle Donne plays for .'],\n", " ['Brittney Griner plays for .'],\n", " ['Shunsuke Nakamura plays for .'],\n", " ['David Silva plays for .'],\n", " ['Axel Witsel plays for .'],\n", " ['Andrés Guardado plays for .'],\n", " ['Kylian Mbappé plays for .'],\n", " ['Micah Richards plays for .'],\n", " ['Celso Borges plays for .'],\n", " ['Royston Drenthe plays for .'],\n", " ['Gareth Bale plays for .'],\n", " ['Sergio Romero plays for .'],\n", " ['Filipe Luís plays for .'],\n", " ['Romelu Lukaku plays for .'],\n", " ['Erling Haaland plays for .'],\n", " ['Arturo Vidal plays for .'],\n", " ['Jermaine Jones plays for .'],\n", " ['Eden Hazard plays for .'],\n", " ['Michael Essien plays for .'],\n", " ['Demba Ba plays for .'],\n", " ['Nuri Şahin plays for .'],\n", " ['Hugo Lloris plays for .'],\n", " ['Morgan Schneiderlin plays for .'],\n", " ['Thomas Vermaelen plays for .'],\n", " ['Henrikh Mkhitaryan plays for .'],\n", " ['Ryan Babel plays for .'],\n", " ['Johan Djourou plays for .'],\n", " ['Kevin De Bruyne plays for .'],\n", " ['Shinji Ono plays for .'],\n", " ['Idriss Carlos Kameni plays for .'],\n", " ['Boris Diaw plays for .'],\n", " ['Anja Mittag plays for .'],\n", " ['Joakim Noah plays for .'],\n", " ['Stephan Andersen plays for .'],\n", " [\"Andrés D'Alessandro plays for .\"],\n", " ['Claudio Bravo plays for .'],\n", " ['Rafinha plays for .'],\n", " ['Blaise Matuidi plays for .'],\n", " ['Cristian Rodríguez plays for .'],\n", " ['Marek Hamšík plays for .'],\n", " ['Ciro Immobile plays for .'],\n", " [\"Dame N'Doye plays for .\"],\n", " ['Raphaël Varane plays for .'],\n", " ['Roger Kluge plays for .'],\n", " ['Neven Subotić plays for .'],\n", " ['Christian Eriksen plays for .'],\n", " ['Luiz Gustavo plays for .'],\n", " ['Hamit Altıntop plays for .'],\n", " ['Brad Guzan plays for .'],\n", " ['André Ayew plays for .'],\n", " ['César Azpilicueta plays for .'],\n", " ['Éric Maxim Choupo-Moting plays for .'],\n", " ['Shkodran Mustafi plays for .'],\n", " ['Caroline Seger plays for .'],\n", " ['Fernando Muslera plays for .'],\n", " ['Leonardo Bonucci plays for .'],\n", " ['Nordin Amrabat plays for .'],\n", " ['Richard Kingson plays for .'],\n", " ['Jonny Evans plays for .'],\n", " ['Jonathan de Guzmán plays for .'],\n", " ['Yannick Bolasie plays for .'],\n", " ['Dante Bonfim Costa Santos plays for .'],\n", " ['Park Chu-young plays for .'],\n", " ['Lucas Hernandez plays for .'],\n", " ['Klaas-Jan Huntelaar plays for .'],\n", " ['Sonny Bill Williams plays for .'],\n", " ['Sydney Leroux plays for .'],\n", " ['Elano plays for .'],\n", " ['Asamoah Gyang plays for .'],\n", " ['Grzegorz Krychowiak plays for .'],\n", " ['Vasil Kiryienka plays for .'],\n", " ['Achraf Hakim plays for .'],\n", " ['John Guidetti plays for .'],\n", " ['Salomon Kalou plays for .'],\n", " ['Karen Bardsley plays for .'],\n", " ['Cédric Soares plays for .'],\n", " ['Dietmar Hamann plays for .'],\n", " ['Mark Milligan plays for .'],\n", " ['Yūki Nagasato plays for .'],\n", " ['Pedro plays for .'],\n", " ['Jack Wilshere plays for .'],\n", " ['Albert Riera plays for .'],\n", " ['Florent Malouda plays for .'],\n", " ['Eduardo Carvalho plays for .'],\n", " ['Giuseppe Rossi plays for .'],\n", " ['Samir Nasri plays for .'],\n", " ['Andrija Kaluđerović plays for .'],\n", " ['Sarah Storey plays for .'],\n", " ['Leroy Sané plays for .'],\n", " ['Eiji Kawashima plays for .'],\n", " ['Ana Dabović plays for .'],\n", " ['Carlos Sánchez plays for .'],\n", " ['Raúl Albiol plays for .'],\n", " ['Bryan Ruiz plays for .'],\n", " ['Gabriel Torres plays for .'],\n", " ['Éver Banega plays for .'],\n", " ['Simon Kjær plays for .'],\n", " ['Willy Caballero plays for .'],\n", " ['Vince Carter plays for .'],\n", " ['Luuk de Jong plays for .'],\n", " ['Eduardo Vargas plays for .'],\n", " ['Ivan Perišić plays for .'],\n", " ['Diego Benaglio plays for .'],\n", " ['Michał Kwiatkowski plays for .'],\n", " ['Lars Hirschfeld plays for .'],\n", " ['Abby Dahlkemper plays for .'],\n", " ['Daley Blind plays for .'],\n", " ['Gélson Fernandes plays for .'],\n", " ['Pablo Contreras plays for .'],\n", " ['Steph Houghton plays for .'],\n", " ['Ramires plays for .'],\n", " ['Jermain Defoe plays for .'],\n", " ['Divock Origi plays for .'],\n", " ['el tete plays for .'],\n", " ['Maxi López plays for .'],\n", " ['Ashleigh Barty plays for .'],\n", " ['Paulinho plays for .'],\n", " ['Curao Ql plays for .'],\n", " ['Marquinhos plays for .'],\n", " ['Julie Ertz plays for .'],\n", " ['Sebastián Eguren plays for .'],\n", " ['Marco Fabián plays for .'],\n", " ['Edvald Boasson-Hagen plays for .'],\n", " ['João Moutinho plays for .'],\n", " ['İlkay Gündoğan plays for .'],\n", " ['Gary Medel plays for .'],\n", " ['Karim Ziani plays for .'],\n", " ['Christian Bolaños plays for .'],\n", " ['David De Gea plays for .'],\n", " ['Daniel Sturridge plays for .'],\n", " ['Esteban Cambiasso plays for .'],\n", " ['Gabriel Enrique Gómez plays for .'],\n", " ['Douglas Costa plays for .'],\n", " ['Ezequiel Garay plays for .'],\n", " ['Michy Batshuayi plays for .'],\n", " ['Yakubu plays for .'],\n", " ['José Fonte plays for .'],\n", " ['Rui Costa plays for .'],\n", " ['Salvatore Sirigu plays for .'],\n", " ['Roman Kreuziger plays for .'],\n", " ['Kasper Schmeichel plays for .'],\n", " ['Roman Bürki plays for .'],\n", " ['Víctor Claver plays for .'],\n", " ['Arkadiusz Milik plays for .'],\n", " ['Daniel Ricciardo plays for .'],\n", " ['Thomas Delaney plays for .'],\n", " ['Kevin Love plays for .'],\n", " ['Stéphane Mbia plays for .'],\n", " ['André Schürrle plays for .'],\n", " ['Martín Demichelis plays for .'],\n", " ['Siraba Dembele plays for .'],\n", " ['Damian Lillard plays for .'],\n", " ['Richie Porte plays for .'],\n", " ['Edin Džeko plays for .'],\n", " ['Daisuke Matsui plays for .'],\n", " ['José Sosa plays for .'],\n", " ['Nelson Valdez plays for .'],\n", " ['Alexander Kristoff plays for .'],\n", " ['Luis Advíncula plays for .'],\n", " ['Danilo Pereira plays for .'],\n", " [\"N'Golo Kanté plays for .\"],\n", " ['Duško Tošić plays for .'],\n", " ['Ricardo Rodriguez plays for .'],\n", " ['Shane Smeltz plays for .'],\n", " ['Peter Crouch plays for .'],\n", " ['Simon Gerrans plays for .'],\n", " ['Mark González plays for .'],\n", " ['Kevin Mirallas plays for .'],\n", " ['Gervinho plays for .'],\n", " ['Alex Song plays for .'],\n", " ['Raul Meireles plays for .'],\n", " ['Ali Riley plays for .'],\n", " ['Anthony Davis plays for .'],\n", " ['Sani Kaita plays for .'],\n", " ['Christie Pearce plays for .'],\n", " ['Luís Fabiano plays for .'],\n", " ['Thiago Alcântara plays for .'],\n", " ['Alisson plays for .'],\n", " ['Wout van Aert plays for .'],\n", " ['Alphonse Areola plays for .'],\n", " ['Mousa Dembélé plays for .'],\n", " ['Babett Peter plays for .'],\n", " ['Fabiana da Silva Simões plays for .'],\n", " ['Blerim Džemaili plays for .'],\n", " ['Adriana Leon plays for .'],\n", " ['Naohiro Takahara plays for .'],\n", " ['oscar perez plays for .'],\n", " ['Gaël Kakuta plays for .'],\n", " ['Isco Alarcón plays for .'],\n", " ['Gabriel Tamaș plays for .'],\n", " ['Jaroslav Drobný plays for .'],\n", " ['Raheem Sterling plays for .'],\n", " ['Samuel Umtiti plays for .'],\n", " ['Amido Baldé plays for .'],\n", " ['Brad Jones plays for .'],\n", " ['Adil Rami plays for .'],\n", " ['Miguel Layún plays for .'],\n", " ['Jan Koller plays for .'],\n", " ['Dmitri Alenichev plays for .'],\n", " ['Marco Asensio plays for .'],\n", " ['Michael Mørkøv plays for .'],\n", " ['Kendall Waston plays for .'],\n", " ['Milan Borjan plays for .'],\n", " ['Kamil Glik plays for .'],\n", " ['Roman Neustädter plays for .'],\n", " ['Marcelo Díaz plays for .'],\n", " ['Jesé Rodríguez plays for .'],\n", " ['Roberto Acuña plays for .'],\n", " ['Ricardo Faty plays for .'],\n", " ['Danilo Luiz plays for .'],\n", " ['Olga Zabelinskaya plays for .'],\n", " ['James Harden plays for .'],\n", " ['Jung Sung-ryong plays for .'],\n", " ['Melissa Tancredi plays for .'],\n", " ['Daryl Impey plays for .'],\n", " ['Henrik Ojamaa plays for .'],\n", " ['Leon Goretzka plays for .'],\n", " ['Pablo Hernández Domínguez plays for .'],\n", " ['Tomáš Necid plays for .'],\n", " ['Joseph Yobo plays for .'],\n", " ['Rafał Majka plays for .'],\n", " ['Bruma plays for .'],\n", " ['Samuel Inkoom plays for .'],\n", " ['Robbie Rogers plays for .'],\n", " ['Robert de Pinho de Souza plays for .'],\n", " ['Georges Mandjeck plays for .'],\n", " ['Lucho González plays for .'],\n", " ['Ander Herrera plays for .'],\n", " ['Luis León Sánchez plays for .'],\n", " ['Érika Cristiano dos Santos plays for .'],\n", " ['Kingsley Coman plays for .'],\n", " ['Aymeric Laporte plays for .'],\n", " ['Primož Roglič plays for .'],\n", " ['Charles Aránguiz plays for .'],\n", " ['Julian Alaphilippe plays for .'],\n", " ['André Silva plays for .'],\n", " ['Pauline Ferrand-Prevot plays for .'],\n", " ['Elton Brand plays for .'],\n", " ['Nikita Rukavytsya plays for .'],\n", " ['Marc-André ter Stegen plays for .'],\n", " ['Steven Davis plays for .'],\n", " ['Anderson plays for .'],\n", " ['Matthias Ginter plays for .'],\n", " ['Haris Seferovic plays for .'],\n", " ['Rui Patrício plays for .'],\n", " ['Wojciech Szczęsny plays for .'],\n", " ['Rúrik Gíslason plays for .'],\n", " ['Oscar dos Santos Emboaba Júnior plays for .'],\n", " ['Koo Ja-cheol plays for .'],\n", " ['Lucy Bronze plays for .'],\n", " ['Crystal Dunn plays for .'],\n", " ['Toby Alderweireld plays for .'],\n", " ['Penalty in the UEL final plays for .'],\n", " ['Joe Hart plays for .'],\n", " ['Kepa Arrizabalaga plays for .'],\n", " ['Giannis Antetokounmpo plays for .'],\n", " ['Besart Berisha plays for .'],\n", " ['Obafemi Martins plays for .'],\n", " ['Moussa Maâzou plays for .'],\n", " ['Alexei Eremenko plays for .'],\n", " ['Moussa Dembélé plays for .'],\n", " ['Ashlyn Harris plays for .'],\n", " ['Chris Wood plays for .'],\n", " ['Reto Ziegler plays for .'],\n", " ['Antonio Nocerino plays for .'],\n", " ['Juanfran Torres plays for .'],\n", " ['Fernando Gago plays for .'],\n", " ['Carlos Salcido plays for .'],\n", " ['Oribe Peralta plays for .'],\n", " ['Antar Yahia plays for .'],\n", " ['Georginio Wijnaldum plays for .'],\n", " ['Martín Cáceres plays for .'],\n", " ['Valeri Bojinov plays for .'],\n", " ['Luis Tejada plays for .'],\n", " ['Gökhan İnler plays for .'],\n", " ['Javi García plays for .'],\n", " ['Nicolás Lodeiro plays for .'],\n", " ['Raúl Jiménez plays for .'],\n", " ['Janine Beckie plays for .'],\n", " ['Arda Turan plays for .'],\n", " ['Selim Benachour plays for .'],\n", " ['Mickaël Gelabale plays for .'],\n", " ['Daniel González Güiza plays for .'],\n", " ['Jackie Groenen plays for .'],\n", " ['John Mensah plays for .'],\n", " ['Federico Fazio plays for .'],\n", " ['Carl Medjani plays for .'],\n", " ['Ahmed Musa plays for .'],\n", " ['Vedad Ibišević plays for .'],\n", " ['Marouane Fellaini plays for .'],\n", " ['Miralem Pjanić plays for .'],\n", " ['Jorginho plays for .'],\n", " ['Lacina Traoré plays for .'],\n", " ['Christiane Endler plays for .'],\n", " ['Alyssa Naeher plays for .'],\n", " ['Steven Nzonzi plays for .'],\n", " ['Kim Dong-jin plays for .'],\n", " ['Joshua Kimmich plays for .'],\n", " ['Emre Can plays for .'],\n", " ['Nicolas Batum plays for .'],\n", " ['José Calderón plays for .'],\n", " ['Emiliano Insúa plays for .'],\n", " ['Stephan El Shaarawy plays for .'],\n", " ['Casemiro plays for .'],\n", " ['Júnior Díaz plays for .'],\n", " ['Jodie Taylor plays for .'],\n", " ['Robin Olsen plays for .'],\n", " ['Héctor Herrera plays for .'],\n", " ['Sebastian Giovinco plays for .'],\n", " ['Rodrigo plays for .'],\n", " ['Fernando Gaviria plays for .'],\n", " ['Oleksandr Aliyev plays for .'],\n", " ['Florian Thauvin plays for .'],\n", " ['Kim Bo-kyung plays for .'],\n", " ['Abel Hernández plays for .'],\n", " ['Thorgan Hazard plays for .'],\n", " ['Gotoku Sakai plays for .'],\n", " ['Odion Ighalo plays for .'],\n", " ['Jasmin Glaesser plays for .'],\n", " ['Eliaquim Mangala plays for .'],\n", " ['Felipe Melo plays for .'],\n", " ['Gábor Király plays for .'],\n", " ['Herculez Gomez plays for .'],\n", " ['Paulo da Silva plays for .'],\n", " ['Héctor Moreno plays for .'],\n", " ['Cacau plays for .'],\n", " ['Ion Izagirre plays for .'],\n", " ['Denis Cheryshev plays for .'],\n", " ['Anthony Annan plays for .'],\n", " ['Darius Songaila plays for .'],\n", " ['Morgan De Sanctis plays for .'],\n", " ['Joe Ingles plays for .'],\n", " ['Paco Alcácer plays for .'],\n", " ['Sara Däbritz plays for .'],\n", " ['Adlène Guedioura plays for .'],\n", " ['Fábio Coentrão plays for .'],\n", " ['Scott Carson plays for .'],\n", " ['Granit Xhaka plays for .'],\n", " ['Ashkan Dejagah plays for .'],\n", " ['Yevhen Seleznyov plays for .'],\n", " ['Makoto Hasebe plays for .'],\n", " ['William Troost-Ekong plays for .'],\n", " ['Mauro Zárate plays for .'],\n", " ['Seydou Doumbia plays for .'],\n", " ['Jeffrén Suárez plays for .'],\n", " ['Kurt Zouma plays for .'],\n", " ['Nicolás Otamendi plays for .'],\n", " ['Silvestre Varela plays for .'],\n", " ['Hiroki Sakai plays for .'],\n", " ['Geoffrey Kondogbia plays for .'],\n", " ['Antonio Rüdiger plays for .'],\n", " ['Danko Lazović plays for .'],\n", " ['Admir Mehmedi plays for .'],\n", " ['Javier Aquino plays for .'],\n", " ['Kelsey Plum plays for .'],\n", " ['Teemu Pukki plays for .'],\n", " ['Grafite plays for .'],\n", " ['Lisa Brennauer plays for .'],\n", " ['Dejan Lovren plays for .'],\n", " ['Niki Terpstra plays for .'],\n", " ['Marcelinho Paraíba plays for .'],\n", " ['Mix Diskerud plays for .'],\n", " ['David Ospina plays for .'],\n", " ['Alexander Sørloth plays for .'],\n", " ['Manuel Fernandes plays for .'],\n", " ['Marek Saganowski plays for .'],\n", " ['Gabriel Barbosa plays for .'],\n", " ['Besart Abdurahimi plays for .'],\n", " ['Matthew Spiranovic plays for .'],\n", " ['Josip Tadić plays for .'],\n", " ['Younis Mahmoud plays for .'],\n", " ['Jordan Ayew plays for .'],\n", " ['Miguel Lopes plays for .'],\n", " ['Sokratis Papastathopoulos plays for .'],\n", " ['Martin Hansen plays for .'],\n", " ['Pierre Bengtsson plays for .'],\n", " ['Taye Taiwo plays for .'],\n", " ['David Carney plays for .'],\n", " ['Ángel Guirado plays for .'],\n", " ['Roberto Jiménez Gago plays for .'],\n", " ['Karen Carney plays for .'],\n", " ['Amin Younes plays for .'],\n", " ['Javier Balboa plays for .'],\n", " ['Francisco Javier Rodríguez plays for .'],\n", " ['Éder plays for .'],\n", " ['Daniëlle van de Donk plays for .'],\n", " ['Reza Ghoochannejhad plays for .'],\n", " ['Kaylyn Kyle plays for .'],\n", " ['André Lotterer plays for .'],\n", " ['Daniel Wass plays for .'],\n", " ['Harry Kane plays for .'],\n", " ['Son Heung-min plays for .'],\n", " ['Jhonny Acosta plays for .'],\n", " ['Cléopatre Darleux plays for .'],\n", " ['Tony Gallopin plays for .'],\n", " ['Yann Sommer plays for .'],\n", " ['Eniola Aluko plays for .'],\n", " ['Tyson Chandler plays for .'],\n", " ['Anthony Martial plays for .'],\n", " ['Greg Henderson plays for .'],\n", " ['Kiko Casillas plays for .'],\n", " ['Nilla Fischer plays for .'],\n", " ['Leon Balogun plays for .'],\n", " ['James Milner plays for .'],\n", " ['Cameron Meyer plays for .'],\n", " ['Benjamin Pavard plays for .'],\n", " ['Luís Leal plays for .'],\n", " ['Renato Sanches plays for .'],\n", " ['Mathew Ryan plays for .'],\n", " ['Shuichi Gonda plays for .'],\n", " ['Pierre-Emile Højbjerg plays for .'],\n", " ['Simon Mignolet plays for .'],\n", " ['Ben Sahar plays for .'],\n", " ['Mana Iwabuchi plays for .'],\n", " ['Desiree Scott plays for .'],\n", " ['Quinn plays for .'],\n", " ['Viktor Fischer plays for .'],\n", " ['Ron-Robert Zieler plays for .'],\n", " ['Alex Sandro plays for .'],\n", " ['Damien Le Tallec plays for .'],\n", " ['Tiago Mendes plays for .'],\n", " ['Martin Ødegaard plays for .'],\n", " ['Salvatore Bocchetti plays for .'],\n", " ['Olarenwaju Kayode plays for .'],\n", " ['Fraser Forster plays for .'],\n", " ['Corentin Tolisso plays for .'],\n", " ['Walter Pandiani (CR7 su papá) plays for .'],\n", " ['Justo Villar plays for .'],\n", " ['Francisco Arrué plays for .'],\n", " ['Abel Aguilar plays for .'],\n", " ['Esmaël Gonçalves plays for .'],\n", " ['Marvin Ogunjimi plays for .'],\n", " ['Sulley Muntari plays for .'],\n", " ['Ragnar Klavan plays for .'],\n", " ['Didier Zokora plays for .'],\n", " ['Oscar Ustari plays for .'],\n", " ['Mitchell Langerak plays for .'],\n", " ['Yassine Bounou plays for .'],\n", " ['Hakim Ziyech plays for .'],\n", " ['Gabriel Jesus plays for .'],\n", " ['Álvaro Fernández plays for .'],\n", " ['Abdoulaye Ba plays for .'],\n", " ['Julian Draxler plays for .'],\n", " ['Stoycho Mladenov plays for .'],\n", " ['Raphaël Guerreiro plays for .'],\n", " ['Simão Sabrosa plays for .'],\n", " ['Anouk Hoogendijk plays for .'],\n", " ['Emanuel Pogatetz plays for .'],\n", " ['Yannick Carrasco plays for .'],\n", " ['Marko Arnautović plays for .'],\n", " ['Bruno Uvini plays for .'],\n", " ['Lukáš Hrádecký plays for .'],\n", " ['Charles Itandje plays for .'],\n", " ['Ján Mucha plays for .'],\n", " ['Riyad Mahrez plays for .'],\n", " ['Andre Iguodala plays for .'],\n", " ['Lasse Norman Hansen plays for .'],\n", " ['Nikos Zisis plays for .'],\n", " ['Alou Diarra plays for .'],\n", " ['Przemysław Tytoń plays for .'],\n", " ['Lucas Moura plays for .'],\n", " ['Álvaro Morata plays for .'],\n", " ['Amandine Henry plays for .'],\n", " ['Jefferson Farfán plays for .'],\n", " ['Tom Heaton plays for .'],\n", " ['Carlos Salcedo plays for .'],\n", " ['Gabriel Torje plays for .'],\n", " ['Emily van Egmond plays for .'],\n", " ['Nicolás Laprovíttola plays for .'],\n", " ['Simon Clarke plays for .'],\n", " ['Elias Kachunga plays for .'],\n", " ['Adrián López Álvarez plays for .'],\n", " ['Maurice Edu plays for .'],\n", " ['Nelson Oliveira plays for .'],\n", " ['Aco Stojkov plays for .'],\n", " ['Roy Miller plays for .'],\n", " ['Charlie Davies plays for .'],\n", " ['Carlos Fernandes plays for .'],\n", " ['Thaisa plays for .'],\n", " ['Álvaro Saborío plays for .'],\n", " ['Gabriel Cichero plays for .'],\n", " ['Fernandinho plays for .'],\n", " ['Vladimir Gabulov plays for .'],\n", " ['Sven Bender plays for .'],\n", " ['Matías Aguirregaray plays for .'],\n", " ['Wilfried Zaha plays for .'],\n", " ['Ibrahim Afellay plays for .'],\n", " ['Mateo Kovačić plays for .'],\n", " ['Matteo Darmian plays for .'],\n", " ['Jérémy Ménez plays for .'],\n", " ['Marc Bartra plays for .'],\n", " ['Éric Djemba-Djemba plays for .'],\n", " ['Tarik Elyounoussi plays for .'],\n", " ['Yacine Brahimi plays for .'],\n", " ['Omar Bravo plays for .'],\n", " ['Yuri Zhirkov plays for .'],\n", " ['Antonio Valencia plays for .'],\n", " ['Dmytro Chyhrynskyi plays for .'],\n", " ['Juan Manuel Iturbe plays for .'],\n", " ['Julian de Guzman plays for .'],\n", " ['Alexander Merkel plays for .'],\n", " ['Roman Eremenko plays for .'],\n", " ['Lars Bender plays for .'],\n", " ['Suk Hyun-jun plays for .'],\n", " ['Emre Mor plays for .'],\n", " ['Zoran Tošić plays for .'],\n", " ['Jonathan dos Santos plays for .'],\n", " ['Jonathan Mensah plays for .'],\n", " ['Enzo Fernández plays for .'],\n", " ['Kim Young-gwon plays for .'],\n", " ['Oscar Pérez Rojas plays for .'],\n", " ['Astrit Ajdarević plays for .'],\n", " ['Rolf Feltscher plays for .'],\n", " ['Vedran Ćorluka plays for .'],\n", " ['Darren Randolph plays for .'],\n", " ['Ivan Pelizzoli plays for .'],\n", " ['Radomir Đalović plays for .'],\n", " ['Adam Nemec plays for .'],\n", " ['Kristie Mewis plays for .'],\n", " ['Hannes Þór Halldórsson plays for .'],\n", " ['Valon Berisha plays for .'],\n", " ['Marco Donadel plays for .'],\n", " ['Ola Toivonen plays for .'],\n", " ['Winston Reid plays for .'],\n", " ['Max Kruse plays for .'],\n", " ['Saki Kumagai plays for .'],\n", " ['Branko Ilić plays for .'],\n", " ['Răzvan Raț plays for .'],\n", " ['Robert Snodgrass plays for .'],\n", " ['Viola plays for .'],\n", " ['Klay Thompson plays for .'],\n", " ['Stefan Nikolić plays for .'],\n", " ['Carlos Sainz Jr plays for .'],\n", " ['Álvaro Negredo plays for .'],\n", " ['Michail Antonio plays for .'],\n", " ['José Bosingwa plays for .'],\n", " ['Atsuto Uchida plays for .'],\n", " ['Lisa Dahlkvist plays for .'],\n", " ['James Troisi plays for .'],\n", " ['Yacouba Sylla plays for .'],\n", " ['Simon Vukčević plays for .'],\n", " ['Cristian Gamboa plays for .'],\n", " ['Elisa Longo Borghini plays for .'],\n", " ['Roberto Soldado plays for .'],\n", " ['Diana Matheson plays for .'],\n", " ['Steven Caulker plays for .'],\n", " ['Ibrahima Baldé plays for .'],\n", " ['Max Meyer plays for .'],\n", " ['Mbark Boussoufa plays for .'],\n", " ['Achille Emaná plays for .'],\n", " ['Patrice Bernier plays for .'],\n", " ['Ivan Vicelich plays for .'],\n", " ['Islam Slimani plays for .'],\n", " ['Dani Ceballos plays for .'],\n", " ['Lucas Digne plays for .'],\n", " ['Nemanja Matić plays for .'],\n", " ['Andreas Pereira plays for .'],\n", " ['Franck Dja Djédjé plays for .'],\n", " ['Ethan Ampadu plays for .'],\n", " ['R.A. Dickey plays for .'],\n", " ['Yukari Kinga plays for .'],\n", " ['Ryan Bertrand plays for .'],\n", " ['Ed Clancy plays for .'],\n", " ['Holger Badstuber plays for .'],\n", " ['Elinton Andrade plays for .'],\n", " ['Siem de Jong plays for .'],\n", " ['Carlos Bueno plays for .'],\n", " ['Loïc Rémy plays for .'],\n", " ['Kozue Ando plays for .'],\n", " ['Jimmy Durmaz plays for .'],\n", " ['Rafael Pereira da Silva plays for .'],\n", " ['Óscar Duarte plays for .'],\n", " ['Michael Hector plays for .'],\n", " ['Alex McCarthy plays for .'],\n", " ['Dzsenifer Marozsán plays for .'],\n", " ['Nélson Oliveira plays for .'],\n", " ['Fabio Aru plays for .'],\n", " ['Sacha Kljestan plays for .'],\n", " ['Sofiane Feghouli plays for .'],\n", " ['Emerson Palmieri plays for .'],\n", " ['Hristijan Kirovski plays for .'],\n", " ['Santiago Cazorla plays for .'],\n", " ['Melanie Behringer plays for .'],\n", " ['Stephan Lichtsteiner plays for .'],\n", " ['Hugo Vieira plays for .'],\n", " ['Hernanes plays for .'],\n", " ['Isabelle Yacoubou plays for .'],\n", " ['Mauricio Isla plays for .'],\n", " ['Hakan Çalhanoğlu plays for .'],\n", " ['Douglas dos Santos plays for .'],\n", " ['Sinan Bolat plays for .'],\n", " ['Esteban Chaves plays for .'],\n", " ['Marcos Lopes plays for .'],\n", " ['J. J. Barea plays for .'],\n", " ['Mario Suárez Mata plays for .'],\n", " ['Stine Bredal Oftedal plays for .'],\n", " ['Njazi Kuqi plays for .'],\n", " ['Jesús Navas plays for .'],\n", " ['Shane Duffy plays for .'],\n", " ['Willy Hernangómez plays for .'],\n", " ['Rafael Bastos plays for .'],\n", " ['Carlos Beltrán plays for .'],\n", " ['Nelson Cruz plays for .'],\n", " ['Fiodor Smolov plays for .'],\n", " ['Fabián Carini plays for .'],\n", " ['Shelina Zadorsky plays for .'],\n", " ['Pavel Pogrebnyak plays for .'],\n", " ['Goran Pandev plays for .'],\n", " ['Marc Janko plays for .'],\n", " ['Jamal Alioui plays for .'],\n", " ['Mohammadou Idrissou plays for .'],\n", " ['Ousmane Dembélé plays for .'],\n", " ['Gordon Schildenfeld plays for .'],\n", " ['Bauke Mollema plays for .'],\n", " ['Kalu Uche plays for .'],\n", " ['Burak Yılmaz plays for .'],\n", " ['Jimmy Butler plays for .'],\n", " ['Eduardo da Silva plays for .'],\n", " ['Jefferson Louis plays for .'],\n", " ['Diomansy Kamara plays for .'],\n", " [\"Franck Songo'o plays for .\"],\n", " ['Marco Rojas plays for .'],\n", " ['Aarón Ñíguez plays for .'],\n", " ['Victor Lindelöf plays for .'],\n", " ['Iván Kaviedes plays for .'],\n", " ['Nikola Kalinić plays for .'],\n", " ['Jajá plays for .'],\n", " ['Iván Zarandona plays for .'],\n", " ['DeAndre Yedlin plays for .'],\n", " ['Ikechi Anya plays for .'],\n", " ['Anthony Lopes plays for .'],\n", " ['Clemente Rodríguez plays for .'],\n", " ['Jan Oblak plays for .'],\n", " ['Ritchie De Laet plays for .'],\n", " ['Lassana Diarra plays for .'],\n", " ['Fatos Bećiraj plays for .'],\n", " ['Kalidou Koulibaly plays for .'],\n", " ['Kostas Mitroglou plays for .'],\n", " ['Yohan Cabaye plays for .'],\n", " ['Mario Lemina plays for .'],\n", " ['Mindaugas Kalonas plays for .'],\n", " ['Édouard Mendy plays for .'],\n", " ['Giovanni Sio plays for .'],\n", " ['Tijani Belaïd plays for .'],\n", " ['Park Joo-ho plays for .'],\n", " ['Emir Spahić plays for .'],\n", " ['Nikica Jelavić plays for .'],\n", " ['Erich Brabec plays for .'],\n", " ['Christian Cueva plays for .'],\n", " ['Yevhen Konoplyanka plays for .'],\n", " ['Paulo Dybala plays for .'],\n", " ['Emanuel Herrera plays for .'],\n", " ['Ludovic Obraniak plays for .'],\n", " ['Kleyr Vieira dos Santos plays for .'],\n", " ['DeMarcus Cousins plays for .'],\n", " ['Ross McCormack plays for .'],\n", " ['Taylor Phinney plays for .'],\n", " ['Maksim Shatskikh plays for .'],\n", " ['Abby Erceg plays for .'],\n", " ['Yukiya Arashiro plays for .'],\n", " ['Magaye Gueye plays for .'],\n", " ['Jason Denayer plays for .'],\n", " [\"Jolien D'Hoore plays for .\"],\n", " ['Marco Reus plays for .'],\n", " ['Michael Matthews plays for .'],\n", " ['Halil Altıntop plays for .'],\n", " ['Diego Tardelli plays for .'],\n", " ['Isaac Promise plays for .'],\n", " ['Estelle Nze Minko plays for .'],\n", " ['Sergio Henao plays for .'],\n", " ['Andriy Yarmolenko plays for .'],\n", " ['Kamil Grosicki plays for .'],\n", " ['Fabinho plays for .'],\n", " ['Ishak Belfodil plays for .'],\n", " ['Tosaint Ricketts plays for .'],\n", " ['Linda Sembrant plays for .'],\n", " ['Tuncay Şanlı plays for .'],\n", " ['Hameur Bouazza plays for .'],\n", " ['Vladimír Weiss plays for .'],\n", " ['Bernard Mendy plays for .'],\n", " ['Matt Miazga plays for .'],\n", " ['Marcos Alonso plays for .'],\n", " ['Liassine Cadamuro plays for .'],\n", " ['Adam Federici plays for .'],\n", " ['Ellen White plays for .'],\n", " ['Román Torres plays for .'],\n", " ['Brown Ideye plays for .'],\n", " ['Trixi Worrack plays for .'],\n", " ['Sead Kolašinac plays for .'],\n", " ['Bernardo Silva plays for .'],\n", " ['Nils Petersen plays for .'],\n", " ['Oriol Romeu plays for .'],\n", " ['Adolfo Machado plays for .'],\n", " ['Filipe Machado Nascimento plays for .'],\n", " ['Rubén Iván Martínez plays for .'],\n", " ['Josephine Henning plays for .'],\n", " ['Dani Carvajal plays for .'],\n", " ['Joël Matip plays for .'],\n", " ['Marcus Berg plays for .'],\n", " ['Julio César de León plays for .'],\n", " ['Salomón Rondón plays for .'],\n", " ['Hajime Hosogai plays for .'],\n", " ['Edgar Ié plays for .'],\n", " ['Martín Montoya plays for .'],\n", " ['Lucas Piazón plays for .'],\n", " ['Markus Rosenberg plays for .'],\n", " ['Ognjen Vranješ plays for .'],\n", " ['Róbinson Zapata plays for .'],\n", " ['Sébastien Pocognoli plays for .'],\n", " ['Anders Lindegaard plays for .'],\n", " ['Jordan Henderson plays for .'],\n", " ['Josip Drmić plays for .'],\n", " ['Aleksandr Kokorin plays for .'],\n", " ['Juan Bernat plays for .'],\n", " ['Egan Bernal plays for .'],\n", " ['Camille Abily plays for .'],\n", " ['Stefan Maierhofer plays for .'],\n", " ['Matthieu Dossevi plays for .'],\n", " ['Bafétimbi Gomis plays for .'],\n", " ['Ignatas Konovalovas plays for .'],\n", " ['Karina Maruyama plays for .'],\n", " ['Adreian Payne plays for .'],\n", " ['Enzo Maresca plays for .'],\n", " ['Tomáš Vaclík plays for .'],\n", " ['Zack Steffen plays for .'],\n", " ['Ricardo Oliveira plays for .'],\n", " ['Yun Suk-young plays for .'],\n", " ['Giannelli Imbula plays for .'],\n", " ['Lorenzo Insigne plays for .'],\n", " ['Malcom plays for .'],\n", " ['Albert Bunjaku plays for .'],\n", " ['Victor Obinna plays for .'],\n", " ['William Carvalho plays for .'],\n", " ['Miguel Veloso plays for .'],\n", " ['Felipe Anderson plays for .'],\n", " ['Isaac Cuenca plays for .'],\n", " ['Luis Antonio Jiménez plays for .'],\n", " ['Curtis Davies plays for .'],\n", " ['Dan Ito plays for .'],\n", " ['Odysseas Vlachodimos plays for .'],\n", " ['Eljero Elia plays for .'],\n", " ['Renato Augusto plays for .'],\n", " ['Milan Mačvan plays for .'],\n", " ['Vivianne Miedema plays for .'],\n", " ['Fabian Schär plays for .'],\n", " ['Ashleigh Moolman-Pasio plays for .'],\n", " ['Marcus Rashford plays for .'],\n", " ['André Gomes plays for .'],\n", " ['Dominique Malonga plays for .'],\n", " ['Max Verstappen plays for .'],\n", " ['Mehdi Abeid plays for .'],\n", " ['Alanna Kennedy plays for .'],\n", " ['Ahmed Hegazi plays for .'],\n", " ['Alen Halilović plays for .'],\n", " ['Kenny Miller plays for .'],\n", " ['Dimitris Papadopoulos plays for .'],\n", " ['Adriano Correia Claro plays for .'],\n", " ['Idrissa Gueye plays for .'],\n", " ['Shahid Afridi plays for .'],\n", " ['Adrianna Franch plays for .'],\n", " ['Ludovic Giuly plays for .'],\n", " ['Nastja Čeh plays for .'],\n", " ['Zé Eduardo plays for .'],\n", " ['Riccardo Montolivo plays for .'],\n", " ['Benedikt Höwedes plays for .'],\n", " ['Luka Jović plays for .'],\n", " ['José Holebas plays for .'],\n", " ['Yasuhito Endo plays for .'],\n", " ['Artem Dzyuba plays for .'],\n", " ['Moussa Sow plays for .'],\n", " ['Tomáš Kalas plays for .'],\n", " ['Luis Aguiar plays for .'],\n", " ['Yossi Benayoun plays for .'],\n", " ['Nick Calathes plays for .'],\n", " ['Jorge Ribeiro plays for .'],\n", " ['Wilfried Bony plays for .'],\n", " ['Jamal Blackman plays for .'],\n", " ['Diego Alves plays for .'],\n", " ['Filip Đuričić plays for .'],\n", " ['Roy Carroll plays for .'],\n", " ['Mathieu Valbuena plays for .'],\n", " ['Danilo Cirino de Oliveira plays for .'],\n", " ['Orlando Sá plays for .'],\n", " ['Sérgio Oliveira plays for .'],\n", " ['Miloš Krasić plays for .'],\n", " ['Javad Nekounam plays for .'],\n", " ['Stina Blackstenius plays for .'],\n", " ['James Chester plays for .'],\n", " ['Alexia Putellas plays for .'],\n", " ['Gianluigi Donnarumma plays for .'],\n", " ['Zdeněk Štybar plays for .'],\n", " ['Stephen Sunday plays for .'],\n", " ['Steven Zuber plays for .'],\n", " ['Santiago Arias plays for .'],\n", " ['Aleix Vidal plays for .'],\n", " ['Jordan Pickford plays for .'],\n", " ['Jason Davidson plays for .'],\n", " ['Alfreð Finnbogason plays for .'],\n", " ['Artur Boruc plays for .'],\n", " ['Nicki Bille Nielsen plays for .'],\n", " ['Jonathas de Jesus plays for .'],\n", " ['Sebastián Coates plays for .'],\n", " ['Dimitar Makriev plays for .'],\n", " ['Nick Swisher plays for .'],\n", " ['João Pereira plays for .'],\n", " ['Stefano Okaka plays for .'],\n", " ['Emerson plays for .'],\n", " ['Damiano Caruso plays for .'],\n", " ['Ifeoma Dieke plays for .'],\n", " ['Javier Pastore plays for .'],\n", " ['Christian Tiffert plays for .'],\n", " ['Dalibor Stevanovič plays for .'],\n", " ['Cenk Tosun plays for .'],\n", " ['Aya Sameshima plays for .'],\n", " ['Dries Mertens plays for .'],\n", " ['Ryan Miller plays for .'],\n", " ['Kim Jin-kyu plays for .'],\n", " ['Lena Goeßling plays for .'],\n", " ['Roberto Firmino plays for .'],\n", " ['Clément Lenglet plays for .'],\n", " ['John Paintsil plays for .'],\n", " ['Tomasz Kuszczak plays for .'],\n", " ['Richard Sukuta-Pasu plays for .'],\n", " ['Henri Anier plays for .'],\n", " ['Juan Fernando Quintero plays for .'],\n", " ...],\n", " 'labels': [[[\" United States women's national soccer team\"]],\n", " [[' FC Barcelona']],\n", " [[' Juventus F.C.']],\n", " [[' Los Angeles Lakers']],\n", " [[' A.C. Milan']],\n", " [[' Brazil national football team']],\n", " [[' Independiente Santa Fe']],\n", " [[' OL Reign']],\n", " [[\" Spain men's national basketball team\"]],\n", " [[' West Ham United F.C.']],\n", " [[' FC Bayern Munich']],\n", " [[' Juventus F.C.']],\n", " [[' New York City FC']],\n", " [[' Brooklyn Nets']],\n", " [[' Vissel Kobe']],\n", " [[' F.C. Porto']],\n", " [[' Mercedes']],\n", " [[' São José Esporte Clube']],\n", " [[' Japan Fed Cup team']],\n", " [[' Juventus F.C.']],\n", " [[' FC Barcelona']],\n", " [[' Zhejiang Professional F.C.']],\n", " [[' Ineos Grenadiers']],\n", " [[' Brescia Calcio']],\n", " [[' FC Barcelona Femení']],\n", " [[' FC Bayern Munich']],\n", " [[\" United States women's national soccer team\"]],\n", " [[' Hebei F.C.']],\n", " [[' Colombia national football team']],\n", " [[' OL Reign']],\n", " [[' Club Atlético Peñarol']],\n", " [[' Audax Italiano']],\n", " [[' NJ/NY Gotham FC']],\n", " [[' FC Rosengård']],\n", " [[' Sevilla FC']],\n", " [[' Royal Challengers Bangalore']],\n", " [[' Paris Saint-Germain F.C.']],\n", " [[' Vissel Kobe']],\n", " [[' Argentina national football team']],\n", " [[' Liv Racing']],\n", " [[' Real Madrid CF']],\n", " [[' VfB Stuttgart']],\n", " [[' Boca Juniors']],\n", " [[' A.C. Milan']],\n", " [[' LA Galaxy']],\n", " [[' Vissel Kobe']],\n", " [[' Kasımpaşa S.K.']],\n", " [[' Arsenal F.C.']],\n", " [[' Tampa Bay Rowdies']],\n", " [[' Paris Saint-Germain F.C.']],\n", " [[' Minnesota Lynx']],\n", " [[' Juventus F.C.']],\n", " [[' İstanbul Başakşehir FC']],\n", " [[' Chicago Fire FC']],\n", " [[' Olimpia Milano']],\n", " [[' FC Bayern Munich']],\n", " [[' Unione Sportiva Sassuolo Calcio']],\n", " [[' Atlas F.C.']],\n", " [[' Chicago Bulls']],\n", " [[' Houston Rockets']],\n", " [[' AS Monaco FC']],\n", " [[' LA Galaxy']],\n", " [[' Coritiba F.C.']],\n", " [[' Arsenal F.C.']],\n", " [[' FC Bayern Munich']],\n", " [[' Swiss national football team']],\n", " [[' Matrix Fitness']],\n", " [[' Paris Saint-Germain F.C.']],\n", " [[' Seattle Storm']],\n", " [[' Parma Calcio 1913']],\n", " [[' Washington Spirit']],\n", " [[' France national association football team']],\n", " [[' Egypt national football team']],\n", " [[' Göztepe S.K.']],\n", " [[' Netherlands national association football team']],\n", " [[' West Ham United F.C.']],\n", " [[' Toronto FC']],\n", " [[' Los Angeles Lakers']],\n", " [[' Japan national football team']],\n", " [[' Standard Liège']],\n", " [[' FC Bayern Munich']],\n", " [[' Portland Thorns FC']],\n", " [[' France national association football team']],\n", " [[' São Paulo FC']],\n", " [[' Associação Académica de Coimbra – O.A.F.']],\n", " [[' Algeria national football team']],\n", " [[' Bora-Hansgrohe']],\n", " [[' Costa Rica national football team']],\n", " [[' Real Madrid CF']],\n", " [[' Germany national association football team']],\n", " [[' SC Freiburg']],\n", " [[' Trek–Segafredo']],\n", " [[' Paraguay national football team']],\n", " [[' Rayo OKC']],\n", " [[' Manchester United F.C.']],\n", " [[' Club de Fútbol Monterrey']],\n", " [[' Juventus F.C.']],\n", " [[' CCC Team']],\n", " [[' Fleury Loiret HB']],\n", " [[' FC Bayern Munich']],\n", " [[' Meridiana-Kamen']],\n", " [[' Boavista F.C.']],\n", " [[' Brooklyn Nets']],\n", " [[' Scuderia Ferrari']],\n", " [[\" Norway women's national football team\"]],\n", " [[' Leicester City F.C.']],\n", " [[' EF Education-Nippo']],\n", " [[' Aalesunds FK']],\n", " [[' Portland Thorns FC']],\n", " [[' Chelsea F.C.']],\n", " [[' Real Madrid CF']],\n", " [[' Galatasaray S.K.']],\n", " [[' Astana Qazaqstan Team']],\n", " [[' Trabzonspor']],\n", " [[' Shanghai Port F.C.']],\n", " [[' Real Madrid Baloncesto']],\n", " [[' Trek–Segafredo']],\n", " [[' Sociedade Esportiva Palmeiras']],\n", " [[' FC Baník Ostrava']],\n", " [[' Swansea City A.F.C.']],\n", " [[' Germany national association football team']],\n", " [[' Clube de Regatas do Flamengo']],\n", " [[' FC Dynamo Brest']],\n", " [[' SD Worx']],\n", " [[' Brazil national football team']],\n", " [[' Maccabi Haifa F.C.']],\n", " [[' Paris Saint-Germain F.C.']],\n", " [[' Los Angeles Clippers']],\n", " [[' Paris Saint-Germain Féminine']],\n", " [[' Olympiacos F.C.']],\n", " [[' Inter Milan']],\n", " [[' Houston Dash']],\n", " [[' Juventus F.C.']],\n", " [[' F.C. Porto']],\n", " [[' Brazil national football team']],\n", " [[' Senegal national association football team']],\n", " [[' Chicago Red Stars']],\n", " [[' Real Madrid CF']],\n", " [[' Yamaha Motor Racing']],\n", " [[' Stoke City F.C.']],\n", " [[' Atlético Madrid']],\n", " [[' Olympique de Marseille']],\n", " [[' O.F.K. Beograd']],\n", " [[' Belgium national football team']],\n", " [[' Pune F.C.']],\n", " [[' ACF Fiorentina']],\n", " [[' Stabæk Fotball']],\n", " [[' Team BikeExchange']],\n", " [[' Cerro Porteño']],\n", " [[' Dundee United F.C.']],\n", " [[' Agrotikos Asteras F.C.']],\n", " [[' Germany national association football team']],\n", " [[' Jiangsu F.C.']],\n", " [[' SV Werder Bremen']],\n", " [[' Orlando City SC']],\n", " [[' FC Barcelona']],\n", " [[' FC Rosengård']],\n", " [[' Bristol City F.C.']],\n", " [[\" Sweden women's national association football team\"]],\n", " [[' Arsenal F.C.']],\n", " [[' Spain national association football team']],\n", " [[' Juventus F.C.']],\n", " [[' Team Jumbo-Visma']],\n", " [[' Ceratizit–WNT Pro Cycling']],\n", " [[' Rosenborg BK']],\n", " [[' Hokkaido Consadole Sapporo']],\n", " [[' Comunicaciones FC']],\n", " [[' TSG 1899 Hoffenheim']],\n", " [[' Inter Milan']],\n", " [[' Galatasaray S.K.']],\n", " [[' France national association football team']],\n", " [[' Team DSM']],\n", " [[' NJ/NY Gotham FC']],\n", " [[' Brisbane Roar FC W-League']],\n", " [[' Real Betis Balompié']],\n", " [[' Washington Mystics']],\n", " [[' Phoenix Mercury']],\n", " [[' Yokohama FC']],\n", " [[' Manchester City F.C.']],\n", " [[' Borussia Dortmund']],\n", " [[' PSV Eindhoven']],\n", " [[' France national association football team']],\n", " [[' Aston Villa F.C.']],\n", " [[' Göztepe S.K.']],\n", " [[' Baniyas SC']],\n", " [[' Real Madrid CF']],\n", " [[' Manchester United F.C.']],\n", " [[' Atlético Madrid']],\n", " [[' Belgium national football team']],\n", " [[' Norway national association football team']],\n", " [[' FC Barcelona']],\n", " [[\" United States men's national soccer team\"]],\n", " [[' Real Madrid CF']],\n", " [[' Səbail FK']],\n", " [[' Shanghai Shenhua F.C.']],\n", " [[' SV Werder Bremen']],\n", " [[' Tottenham Hotspur F.C.']],\n", " [[' Everton F.C.']],\n", " [[' Belgium national football team']],\n", " [[' Arsenal F.C.']],\n", " [[' Deportivo de La Coruña']],\n", " [[' Hamburger SV']],\n", " [[' Belgium national football team']],\n", " [[' FC Ryukyu']],\n", " [[' Málaga CF']],\n", " [[' San Antonio Spurs']],\n", " [[' Paris Saint-Germain F.C.']],\n", " [[' New York Knicks']],\n", " [[' F.C. Copenhagen']],\n", " [[' Club Atlético River Plate']],\n", " [[' Manchester City F.C.']],\n", " [[' FC Bayern Munich']],\n", " [[' France national association football team']],\n", " [[' Club Atlético Peñarol']],\n", " [[' Dalian Professional F.C.']],\n", " [[' Italy national association football team']],\n", " [[' Senegal national association football team']],\n", " [[' France national association football team']],\n", " [[' Lotto–Soudal']],\n", " [[' 1. FC Union Berlin']],\n", " [[' Denmark national association football team']],\n", " [[' Fenerbahçe SK']],\n", " [[' Galatasaray S.K.']],\n", " [[' Atlanta United FC']],\n", " [[' Swansea City A.F.C.']],\n", " [[' Spain national association football team']],\n", " [[' Cameroon national football team']],\n", " [[' Arsenal F.C.']],\n", " [[' FC Rosengård']],\n", " [[' Galatasaray S.K.']],\n", " [[' Italy national association football team']],\n", " [[' Morocco national football team']],\n", " [[' Accra Great Olympics F.C.']],\n", " [[' West Bromwich Albion F.C.']],\n", " [[' Netherlands national association football team']],\n", " [[' DR Congo national football team']],\n", " [[' Brazil national football team']],\n", " [[' FC Seoul']],\n", " [[' FC Bayern Munich']],\n", " [[' AFC Ajax']],\n", " [[' New Zealand national rugby union team']],\n", " [[\" United States women's national soccer team\"]],\n", " [[' Santos F.C.']],\n", " [[' Shanghai Port F.C.']],\n", " [[' Sevilla FC']],\n", " [[' Ineos Grenadiers']],\n", " [[' Morocco national football team']],\n", " [[' Sweden national association football team']],\n", " [[' Hertha BSC']],\n", " [[' Manchester City W.F.C.']],\n", " [[' Portugal national association football team']],\n", " [[' TuS Haltern']],\n", " [[' Baniyas SC']],\n", " [[' 1. FFC Frankfurt']],\n", " [[' Chelsea F.C.']],\n", " [[' West Ham United F.C.']],\n", " [[' FC Koper']],\n", " [[' Wadi Degla SC']],\n", " [[' S.C. Braga']],\n", " [[' ACF Fiorentina']],\n", " [[' Real Betis Balompié']],\n", " [[' Brisbane Roar FC']],\n", " [[' Storey Racing']],\n", " [[' Germany national association football team']],\n", " [[' FC Metz']],\n", " [[' Los Angeles Sparks']],\n", " [[' West Ham United F.C.']],\n", " [[' Villarreal CF']],\n", " [[' Santos F.C.']],\n", " [[' Club Universidad de Chile']],\n", " [[' Sevilla FC']],\n", " [[' Sevilla FC']],\n", " [[' Chelsea F.C.']],\n", " [[' Atlanta Hawks']],\n", " [[' Netherlands national association football team']],\n", " [[' Chile national football team']],\n", " [[' Croatia national association football team']],\n", " [[' AS Monaco FC']],\n", " [[' Ineos Grenadiers']],\n", " [[' KFUM-Kameratene Oslo']],\n", " [[' Western New York Flash']],\n", " [[' Netherlands national association football team']],\n", " [[' Eintracht Frankfurt']],\n", " [[' Melbourne Victory']],\n", " [[' Manchester City W.F.C.']],\n", " [[' Sociedade Esportiva Palmeiras']],\n", " [[' Sunderland A.F.C.']],\n", " [[' Belgium national football team']],\n", " [[' São Paulo FC']],\n", " [[' F.C. Crotone']],\n", " [[' Australia Billie Jean King Cup team']],\n", " [[' Guangzhou Football Club']],\n", " [[' Atlético Junior']],\n", " [[' Brazil national football team']],\n", " [[' Chicago Red Stars']],\n", " [[' Club Nacional de Football']],\n", " [[' Mexico national football team']],\n", " [[' Qhubeka Assos']],\n", " [[' Wolverhampton Wanderers F.C.']],\n", " [[' Germany national association football team']],\n", " [[' Bologna F.C. 1909']],\n", " [[' US Orléans']],\n", " [[' Deportivo Saprissa']],\n", " [[' Spain national association football team']],\n", " [[' Trabzonspor']],\n", " [[' Olympiacos F.C.']],\n", " [[' C.S. Cartaginés']],\n", " [[' Juventus F.C.']],\n", " [[' Valencia CF']],\n", " [[' Belgium national football team']],\n", " [[' Kayserispor']],\n", " [[' Portugal national association football team']],\n", " [[' UAE Team Emirates']],\n", " [[' Italy national association football team']],\n", " [[' Qhubeka Assos']],\n", " [[' Denmark national association football team']],\n", " [[' Swiss national football team']],\n", " [[' FC Barcelona Bàsquet']],\n", " [[' Poland national association football team']],\n", " [[' Renault F1 Team']],\n", " [[' Borussia Dortmund']],\n", " [[' Cleveland Cavaliers']],\n", " [[' Hebei F.C.']],\n", " [[' Borussia Dortmund']],\n", " [[' Club Atlético Talleres']],\n", " [[' Toulon Saint-Cyr Var Handball']],\n", " [[' Portland Trail Blazers']],\n", " [[' Trek–Segafredo']],\n", " [[' A.S. Roma']],\n", " [[' Yokohama FC']],\n", " [[' Trabzonspor']],\n", " [[' Seattle Sounders FC']],\n", " [[' UAE Team Emirates']],\n", " [[' Peru national football team']],\n", " [[' Portugal national association football team']],\n", " [[' France national association football team']],\n", " [[' Beşiktaş J.K.']],\n", " [[' Swiss national football team']],\n", " [[' Sydney FC']],\n", " [[' Burnley F.C.']],\n", " [[' CCC Team']],\n", " [[' Club Deportivo Universidad Católica']],\n", " [[' Everton F.C.']],\n", " [[' Parma Calcio 1913']],\n", " [[' West Ham United F.C.']],\n", " [[' Fenerbahçe SK']],\n", " [[' Chelsea F.C. Women']],\n", " [[' Los Angeles Lakers']],\n", " [[' G.S. Iraklis Thessaloniki']],\n", " [[' NJ/NY Gotham FC']],\n", " [[' CR Vasco da Gama']],\n", " [[' Spain national association football team']],\n", " [[' Brazil national football team']],\n", " [[' Team Jumbo-Visma']],\n", " [[' France national association football team']],\n", " [[' Guangzhou City F.C.']],\n", " [[' VfL Wolfsburg Women']],\n", " [[' Wuhan F.C.']],\n", " [[' Genoa CFC']],\n", " [[' Western New York Flash']],\n", " [[' Okinawa SV']],\n", " [[' C.D. Guadalajara']],\n", " [[' Hebei F.C.']],\n", " [[' Spain national association football team']],\n", " [[' FC Astra Giurgiu']],\n", " [[' SV Werder Bremen']],\n", " [[' England national association football team']],\n", " [[' France national association football team']],\n", " [[' Guinea-Bissau national football team']],\n", " [[' N.E.C.']],\n", " [[' Fenerbahçe SK']],\n", " [[' Mexico national football team']],\n", " [[' Czech Republic national beach soccer team']],\n", " [[' FC Yenisey Krasnoyarsk']],\n", " [[' Real Madrid CF']],\n", " [[' Quick-Step Alpha Vinyl Team']],\n", " [[' Costa Rica national football team']],\n", " [[\" Canada men's national soccer team\"]],\n", " [[' Poland national association football team']],\n", " [[' Russia national football team']],\n", " [[' Chile national football team']],\n", " [[' Real Madrid CF']],\n", " [[' Club Rubio Ñu']],\n", " [[' Senegal national association football team']],\n", " [[' Juventus F.C.']],\n", " [[' Roland Cogeas Edelweiss Squad']],\n", " [[' Houston Rockets']],\n", " [[' Kawasaki Frontale']],\n", " [[' KIF Örebro DFF']],\n", " [[' Team BikeExchange Jayco']],\n", " [[' Estonia national football team']],\n", " [[' Germany national association football team']],\n", " [[' Rayo Vallecano']],\n", " [[' ADO Den Haag']],\n", " [[' FK AS Trenčín']],\n", " [[' Bora-Hansgrohe']],\n", " [[' Real Sociedad']],\n", " [[' Antalyaspor']],\n", " [[' LA Galaxy']],\n", " [[' E.C. Vitória']],\n", " [[' AC Sparta Prague']],\n", " [[' Club Atlético River Plate']],\n", " [[' Spain national association football team']],\n", " [[' Astana Qazaqstan Team']],\n", " [[' Paris Saint-Germain F.C.']],\n", " [[' France national association football team']],\n", " [[' Manchester City F.C.']],\n", " [[' Team Jumbo-Visma']],\n", " [[' FC Bayern Munich']],\n", " [[' Quick-Step Alpha Vinyl Team']],\n", " [[' Portugal national association football team']],\n", " [[' Canyon–SRAM']],\n", " [[' Atlanta Hawks']],\n", " [[' Maccabi Haifa F.C.']],\n", " [[' Germany national association football team']],\n", " [[' Southampton F.C.']],\n", " [[' S.C. Internacional']],\n", " [[' Germany national association football team']],\n", " [[' Swiss national football team']],\n", " [[' Portugal national association football team']],\n", " [[' Juventus F.C.']],\n", " [[' 1. FC Nürnberg']],\n", " [[' Brazil national football team']],\n", " [[' FC Augsburg']],\n", " [[' Manchester City F.C.']],\n", " [[\" United States women's national soccer team\"]],\n", " [[' Tottenham Hotspur F.C.']],\n", " [[' Juventus F.C.']],\n", " [[' Burnley F.C.']],\n", " [[' Spain national association football team']],\n", " [[' Milwaukee Bucks']],\n", " [[' Melbourne Victory']],\n", " [[' Shanghai Shenhua F.C.']],\n", " [[' Sektzia Nes Tziona F.C.']],\n", " [[' Seinäjoen Jalkapallokerho']],\n", " [[' Olympique Lyonnais']],\n", " [[' Orlando Pride']],\n", " [[' Leeds United F.C.']],\n", " [[' FC Sion']],\n", " [[' Orlando City SC']],\n", " [[' São Paulo FC']],\n", " [[' C.A. Vélez Sarsfield']],\n", " [[' Tiburones Rojos de Veracruz']],\n", " [[' C.D. Guadalajara']],\n", " [[' Angers SCO']],\n", " [[' Netherlands national association football team']],\n", " [[' ACF Fiorentina']],\n", " [[' POFC Botev Vratsa']],\n", " [[' Pirata F.C']],\n", " [[' Leicester City F.C.']],\n", " [[' FC Zenit Saint Petersburg']],\n", " [[' Seattle Sounders FC']],\n", " [[' Mexico national football team']],\n", " [[' Houston Dash']],\n", " [[' FC Barcelona']],\n", " [[' Mumbai City FC']],\n", " [[' Élan Chalon']],\n", " [[' Atlético Sanluqueño CF']],\n", " [[' Manchester United W.F.C.']],\n", " [[' AFC Eskilstuna']],\n", " [[' Argentina national football team']],\n", " [[' Algeria national football team']],\n", " [[' Nigeria national football team']],\n", " [[' Hertha BSC']],\n", " [[' Shandong Taishan F.C.']],\n", " [[' Juventus F.C.']],\n", " [[' Italy national association football team']],\n", " [[' Ivory Coast national football team']],\n", " [[\" Colo-Colo women's\"]],\n", " [[' Chicago Red Stars']],\n", " [[' A.S. Roma']],\n", " [[' Seoul E-Land FC']],\n", " [[' Germany national association football team']],\n", " [[' Germany national association football team']],\n", " [[' Charlotte Hornets']],\n", " [[' Comunicaciones FC']],\n", " [[' VfB Stuttgart']],\n", " [[' Italy national association football team']],\n", " [[' Brazil national football team']],\n", " [[' Liga Deportiva Alajuelense']],\n", " [[' Arsenal W.F.C.']],\n", " [[' Sweden national association football team']],\n", " [[' Mexico national football team']],\n", " [[' Italy national association football team']],\n", " [[' Spain national association football team']],\n", " [[' UAE Team Emirates']],\n", " [[' FC Rukh Lviv']],\n", " [[' Olympique de Marseille']],\n", " [[' South Korea national football team']],\n", " [[' Al Ahli SC']],\n", " [[' Belgium national football team']],\n", " [[' Japan national football team']],\n", " [[' Nigeria national football team']],\n", " [[' TWENTY20 p/b Sho-Air']],\n", " [[' Valencia CF']],\n", " [[' Sociedade Esportiva Palmeiras']],\n", " [[' Szombathelyi Haladás']],\n", " [[' Seattle Sounders FC']],\n", " [[' Deportivo Toluca F.C.']],\n", " [[' PSV Eindhoven']],\n", " [[' VfB Stuttgart II']],\n", " [[' Astana Qazaqstan Team']],\n", " [[' Russia national football team']],\n", " [[' Helsingin Jalkapalloklubi']],\n", " [[' BC Rytas']],\n", " [[' A.S. Roma']],\n", " [[' Utah Jazz']],\n", " [[' Spain national association football team']],\n", " [[\" Germany women's national football team\"]],\n", " [[' Algeria national football team']],\n", " [[' Rio Ave F.C.']],\n", " [[' Manchester City F.C.']],\n", " [[' Swiss national football team']],\n", " [[' Iran national football team']],\n", " [[' Bursaspor']],\n", " [[' Eintracht Frankfurt']],\n", " [[' Nigeria national football team']],\n", " [[' ACF Fiorentina']],\n", " [[' Newcastle United F.C.']],\n", " [[' Venezuela national football team']],\n", " [[' France national association football team']],\n", " [[' Manchester City F.C.']],\n", " [[' C.F. Os Belenenses']],\n", " [[' Japan national football team']],\n", " [[' Central African Republic national football team']],\n", " [[' Germany national association football team']],\n", " [[' NK Olimpija Ljubljana']],\n", " [[' Swiss national football team']],\n", " [[' Mexico national football team']],\n", " [[' Las Vegas Aces']],\n", " [[' Norwich City F.C.']],\n", " [[' Santa Cruz Futebol Clube']],\n", " [[' Ceratizit–WNT Pro Cycling']],\n", " [[' Liverpool F.C.']],\n", " [[' TotalEnergies']],\n", " [[' Oeste Futebol Clube']],\n", " [[\" United States men's national soccer team\"]],\n", " [[' S.S.C. Napoli']],\n", " [[' Norway national association football team']],\n", " [[' FC Krasnodar']],\n", " [[' Legia Warsaw']],\n", " [[' Brazil national football team']],\n", " [[' North Macedonia national football team']],\n", " [[' Zhejiang Professional F.C.']],\n", " [[' Balıkesirspor']],\n", " [[' Talaba SC']],\n", " [[' Ghana national football team']],\n", " [[' Kayserispor']],\n", " [[' Arsenal F.C.']],\n", " [[' FC Ingolstadt 04']],\n", " [[' Sweden national association football team']],\n", " [[' Helsingin Jalkapalloklubi']],\n", " [[' Sydney FC']],\n", " [[' Philippines national football team']],\n", " [[' Olympiacos F.C.']],\n", " [[' Chelsea F.C. Women']],\n", " [[' S.S.C. Napoli']],\n", " [[' Al-Faisaly FC']],\n", " [[' Cruz Azul']],\n", " [[' FC Lokomotiv Moscow']],\n", " [[' Arsenal W.F.C.']],\n", " [[' Iran national football team']],\n", " [[' Orlando Pride']],\n", " [[' Porsche']],\n", " [[' Denmark national association football team']],\n", " [[' England national association football team']],\n", " [[' South Korea national football team']],\n", " [[' SC East Bengal']],\n", " [[' Brest Bretagne Handball']],\n", " [[' AG2R Citroën Team']],\n", " [[' Swiss national football team']],\n", " [[' Chelsea F.C. Women']],\n", " [[' Dallas Mavericks']],\n", " [[' France national association football team']],\n", " [[' UnitedHealthcare']],\n", " [[' Spain national association football team']],\n", " [[' Linköpings FC']],\n", " [[' Nigeria national football team']],\n", " [[' Liverpool F.C.']],\n", " [[' Team BikeExchange Jayco']],\n", " [[' France national association football team']],\n", " [[' São Tomé and Príncipe national football team']],\n", " [[' Portugal national association football team']],\n", " [[' Australia national association football team']],\n", " [[' Portimonense S.C.']],\n", " [[' Denmark national association football team']],\n", " [[' Belgium national football team']],\n", " [[\" Hapoel Be'er Sheva F.C.\"]],\n", " [[\" Japan women's national football team\"]],\n", " [[\" Canada women's national soccer team\"]],\n", " [[' OL Reign']],\n", " [[' Denmark national association football team']],\n", " [[' Germany national association football team']],\n", " [[' Brazil national football team']],\n", " [[' Montpellier Hérault Sport Club']],\n", " [[' Atlético Madrid']],\n", " [[' Norway national association football team']],\n", " [[' Hellas Verona F.C.']],\n", " [[' FC Shakhtar Donetsk']],\n", " [[' Celtic F.C.']],\n", " [[' Olympique Lyonnais']],\n", " [[' FC Lausanne-Sport']],\n", " [[' Club Social y Deportivo Colo Colo']],\n", " [[' Coquimbo Unido']],\n", " [[' Unión Magdalena']],\n", " [[' Anorthosis Famagusta FC']],\n", " [[' K. Patro Eisden Maasmechelen']],\n", " [[' Al Ittihad FC']],\n", " [[' Cagliari Calcio']],\n", " [[' FC Pune City']],\n", " [[' Atlas F.C.']],\n", " [[' Australia national association football team']],\n", " [[' Morocco national football team']],\n", " [[' Morocco national football team']],\n", " [[' FC Barcelona']],\n", " [[' San Martín de Tucumán']],\n", " [[' Senegal national association football team']],\n", " [[' Germany national association football team']],\n", " [[' FC Kaisar']],\n", " [[' Portugal national association football team']],\n", " [[' NorthEast United FC']],\n", " [[' AFC Ajax Vrouwen']],\n", " [[' 1. FC Union Berlin']],\n", " [[' Belgium national football team']],\n", " [[' Stoke City F.C.']],\n", " [[' FC Twente']],\n", " [[' Finland national football team']],\n", " [[' Cameroon national football team']],\n", " [[' ŠK Slovan Bratislava']],\n", " [[' Algeria national football team']],\n", " [[' Memphis Grizzlies']],\n", " [[' Alpecin–Fenix']],\n", " [[' Club Joventut Badalona']],\n", " [[' Charlton Athletic F.C.']],\n", " [[' Poland national association football team']],\n", " [[' Brazil national football team']],\n", " [[' Spain national association football team']],\n", " [[' Olympique Lyonnais']],\n", " [[' Al Jazira Club']],\n", " [[' Aston Villa F.C.']],\n", " [[' Mexico national football team']],\n", " [[' Romania national association football team']],\n", " [[\" Australia women's national soccer team\"]],\n", " [[' Real Madrid Baloncesto']],\n", " [[' EF Education-Nippo']],\n", " [[' FC Ingolstadt 04']],\n", " [[' Club Atlético Osasuna']],\n", " [[' Philadelphia Union']],\n", " [[' Movistar Team']],\n", " [[' FK Vardar']],\n", " [[' Deportivo Saprissa']],\n", " [[' New England Revolution']],\n", " [[' UD Vilafranquense']],\n", " [[' Associação Ferroviária de Esportes']],\n", " [[' D.C. United']],\n", " [[' FC Sion']],\n", " [[' Brazil national football team']],\n", " [[' FC Dinamo Moscow']],\n", " [[' Germany national association football team']],\n", " [[' Uruguay national football team']],\n", " [[' Crystal Palace F.C.']],\n", " [[' PSV Eindhoven']],\n", " [[' Croatia national association football team']],\n", " [[' Parma Calcio 1913']],\n", " [[' Paris FC']],\n", " [[' Spain national association football team']],\n", " [[' Voltigeurs de Châteaubriant']],\n", " [[' TSG 1899 Hoffenheim']],\n", " [[' Algeria national football team']],\n", " [[' North Carolina FC']],\n", " [[' Russia national football team']],\n", " [[' Real Madrid CF']],\n", " [[' A.E.K. Athens F.C.']],\n", " [[' Club Tijuana']],\n", " [[' Ottawa Fury FC']],\n", " [[' Kazakhstan national football team']],\n", " [[' FC Rostov']],\n", " [[' Germany national association football team']],\n", " [[' South Korea national football team']],\n", " [[' Turkey national association football team']],\n", " [[' PFC CSKA Moscow']],\n", " [[' Villarreal CF']],\n", " [[' FC Anzhi Makhachkala']],\n", " [[' Real Madrid Castilla']],\n", " [[' South Korea national football team']],\n", " [[' CF Pachuca']],\n", " [[' Örebro SK']],\n", " [[' Venezuela national football team']],\n", " [[' FC Lokomotiv Moscow']],\n", " [[' Republic of Ireland national association football team']],\n", " [[' Vicenza Calcio']],\n", " [[' FK Budućnost Podgorica']],\n", " [[' Pafos FC']],\n", " [[\" United States women's national soccer team\"]],\n", " [[' Iceland national association football team']],\n", " [[' Norway national association football team']],\n", " [[' CF Montréal']],\n", " [[' Sunderland A.F.C.']],\n", " [[' New Zealand national football team']],\n", " [[' Fenerbahçe SK']],\n", " [[' Olympique Lyonnais Féminin']],\n", " [[' Urawa Red Diamonds']],\n", " [[' Rayo Vallecano']],\n", " [[' Scotland national football team']],\n", " [[' Clube Atlético Taboão da Serra']],\n", " [[' Golden State Warriors']],\n", " [[' LKS Nieciecza']],\n", " [[' McLaren']],\n", " [[' Valencia CF']],\n", " [[' West Ham United F.C.']],\n", " [[' Trabzonspor']],\n", " [[' 1. FC Union Berlin']],\n", " [[' Paris Saint-Germain F.C.']],\n", " [[' Liaoning Whowin F.C.']],\n", " [[' Mali national football team']],\n", " [[' Enosis Neon Paralimni FC']],\n", " [[' Costa Rica national football team']],\n", " [[' Trek–Segafredo']],\n", " [[' Villarreal CF']],\n", " [[' Washington Spirit']],\n", " [[' Liverpool F.C.']],\n", " [[' Senegal national association football team']],\n", " [[' Crystal Palace F.C.']],\n", " [[' KAA Gent']],\n", " [[' Gimnàstic de Tarragona']],\n", " [[' CF Montréal']],\n", " [[' Auckland City FC']],\n", " [[' Algeria national football team']],\n", " [[' Spain national association football team']],\n", " [[' France national association football team']],\n", " [[' Manchester United F.C.']],\n", " [[' Santos FC']],\n", " [[' Al-Shahaniya Sports Club']],\n", " [[' Chelsea F.C.']],\n", " [[' Toronto Blue Jays']],\n", " [[' Melbourne City FC W-League']],\n", " [[' Southampton F.C.']],\n", " [[' JLT Condor']],\n", " [[' VfB Stuttgart']],\n", " [[' Goa ISL team']],\n", " [[' Netherlands national association football team']],\n", " [[' Argentinos Juniors']],\n", " [[' Lille OSC']],\n", " [[' SGS Essen']],\n", " [[' Sweden national association football team']],\n", " [[' Olympique Lyonnais']],\n", " [[' Costa Rica national football team']],\n", " [[' Jamaica national association football team']],\n", " [[' Crystal Palace F.C.']],\n", " [[' Olympique Lyonnais Féminin']],\n", " [[' A.E.K. Athens F.C.']],\n", " [[' UAE Team Emirates']],\n", " [[' New York Red Bulls']],\n", " [[' Algeria national football team']],\n", " [[' A.S. Roma']],\n", " [[' FK Shkëndija']],\n", " [[' Villarreal CF']],\n", " [[' FC Bayern Munich Women']],\n", " [[' FC Augsburg']],\n", " [[' Sivasspor']],\n", " [[' São Paulo FC']],\n", " [[' CJM Bourges Basket']],\n", " [[' Fenerbahçe SK']],\n", " [[' Turkey national association football team']],\n", " [[' Brazil national football team']],\n", " [[' Turkey national association football team']],\n", " [[' Team BikeExchange Jayco']],\n", " [[' Lille OSC']],\n", " [[' Dallas Mavericks']],\n", " [[' Spain national association football team']],\n", " [[\" Norway women's national handball team\"]],\n", " [[' PK-35 Vantaa']],\n", " [[' Manchester City F.C.']],\n", " [[' Republic of Ireland national association football team']],\n", " [[' Philadelphia 76ers']],\n", " [[' América Futebol Clube (MG)']],\n", " [[' St. Louis Cardinals']],\n", " [[' Baltimore Orioles']],\n", " [[' Russia national football team']],\n", " [[' Juventud de Las Piedras']],\n", " [[' Orlando Pride']],\n", " [[' FC Dinamo Moscow']],\n", " [[' Genoa CFC']],\n", " [[' FC Basel']],\n", " [[\" Monts d'Or Azergues Foot\"]],\n", " [[' Maccabi Haifa F.C.']],\n", " [[' France national association football team']],\n", " [[' Anorthosis Famagusta FC']],\n", " [[' Trek–Segafredo']],\n", " [[' Unión Deportiva Almería']],\n", " [[' Beijing Guoan F.C.']],\n", " [[' Philadelphia 76ers']],\n", " [[' Legia Warsaw']],\n", " [[' Wealdstone F.C.']],\n", " [[' NorthEast United FC']],\n", " [[' PAS Giannina F.C.']],\n", " [[' New Zealand national football team']],\n", " [[' S.C. Braga']],\n", " [[' Sweden national association football team']],\n", " [[' Águilas CF']],\n", " [[' Atlético Madrid']],\n", " [[' K.S.C. Lokeren Oost-Vlaanderen']],\n", " [[' Burgos CF']],\n", " [[\" United States men's national soccer team\"]],\n", " [[' Scotland national football team']],\n", " [[' Portugal national association football team']],\n", " [[' Club Atlético Colón']],\n", " [[' Slovenia national football team']],\n", " [[' Middlesbrough F.C.']],\n", " [[' Olympique de Marseille']],\n", " [[' Maccabi Netanya F.C.']],\n", " [[' S.S.C. Napoli']],\n", " [[' S.L. Benfica']],\n", " [[' AS Saint-Étienne']],\n", " [[' Gabon national football team']],\n", " [[' FK Kauno Žalgiris']],\n", " [[' Stade Rennais F.C.']],\n", " [[' Stade Rennais F.C.']],\n", " [[' Club Africain']],\n", " [[' South Korea national football team']],\n", " [[' Hamburger SV']],\n", " [[' Guizhou F.C.']],\n", " [[' FC Slovan Liberec']],\n", " [[' Peru national football team']],\n", " [[' Ukraine national association football team']],\n", " [[' Argentina national football team']],\n", " [[' FBC Melgar']],\n", " [[' Maccabi Haifa F.C.']],\n", " [[' Al-Faisaly SC']],\n", " [[' Los Angeles Lakers']],\n", " [[' Fulham F.C.']],\n", " [[' EF Education-Nippo']],\n", " [[' FC Rukh Lviv']],\n", " [[' Western New York Flash']],\n", " [[' Bahrain Victorious']],\n", " [[' FK Qarabagh']],\n", " [[' Belgium national football team']],\n", " [[' SD Worx']],\n", " [[' Germany national association football team']],\n", " [[' Team DSM']],\n", " [[' FC Augsburg']],\n", " [[' Clube de Regatas do Flamengo']],\n", " [[' Kardemir Karabükspor']],\n", " [[\" France women's national handball team\"]],\n", " [[' UAE Team Emirates']],\n", " [[' West Ham United F.C.']],\n", " [[' Stade Rennais F.C.']],\n", " [[' Liverpool F.C.']],\n", " [[' Algeria national football team']],\n", " [[\" Canada men's national soccer team\"]],\n", " [[' Montpellier Hérault Sport Club']],\n", " [[' FC Pune City']],\n", " [[' Red Star F.C.']],\n", " [[' Al-Gharafa Sports Club']],\n", " [[' SC East Bengal']],\n", " [[\" United States men's national soccer team\"]],\n", " [[' Chelsea F.C.']],\n", " [[' Algeria national football team']],\n", " [[' Australia national association football team']],\n", " [[' Arsenal F.C.']],\n", " [[' Seattle Sounders FC']],\n", " [[' Nigeria national football team']],\n", " [[' Trek–Segafredo']],\n", " [[' Bosnia and Herzegovina national football team']],\n", " [[' Portugal national association football team']],\n", " [[' Germany national association football team']],\n", " [[' Southampton F.C.']],\n", " [[' Deportivo Saprissa']],\n", " [[' Saba Qom F.C.']],\n", " [[' Club Atlético Osasuna']],\n", " [[' Arsenal F.C.']],\n", " [[' Spain national association football team']],\n", " [[' Liverpool F.C.']],\n", " [[' FC Krasnodar']],\n", " [[' Club Atlético Platense']],\n", " [[' Everton F.C.']],\n", " [[' Buriram United F.C.']],\n", " [[' Villarreal CF']],\n", " [[' Real Betis Balompié']],\n", " [[' Chelsea F.C.']],\n", " [[' Malmö FF']],\n", " [[' Bosnia and Herzegovina national football team']],\n", " [[' Independiente Santa Fe']],\n", " [[' West Bromwich Albion F.C.']],\n", " [[' Preston North End F.C.']],\n", " [[' England national association football team']],\n", " [[' Swiss national football team']],\n", " [[' FC Zenit Saint Petersburg']],\n", " [[' Spain national association football team']],\n", " [[' Ineos Grenadiers']],\n", " [[' Olympique Lyonnais Féminin']],\n", " [[' FK AS Trenčín']],\n", " [[' Togo national football team']],\n", " [[' Al-Hilal SFC']],\n", " [[' Groupama-FDJ']],\n", " [[' Speranza Osaka-Takatsuki']],\n", " [[' ASVEL Basket']],\n", " [[' Palermo FC']],\n", " [[' Czech Republic national association football team']],\n", " [[\" United States men's national soccer team\"]],\n", " [[' Santos F.C.']],\n", " [[' South Korea national football team']],\n", " [[' Stoke City F.C.']],\n", " [[' Italy national association football team']],\n", " [[' FC Zenit Saint Petersburg']],\n", " [[' FC Viktoria Köln']],\n", " [[' MSV Duisburg']],\n", " [[' Portugal national association football team']],\n", " [[' Hellas Verona F.C.']],\n", " [[' Brazil national football team']],\n", " [[\" Hapoel Be'er Sheva F.C.\"]],\n", " [[' Al Nasr SC']],\n", " [[' Hull City A.F.C.']],\n", " [[' Thimpu FC']],\n", " [[' Panathinaikos F.C.']],\n", " [[' Feyenoord']],\n", " [[' Brazil national football team']],\n", " [[' Olimpia Milano']],\n", " [[' Arsenal W.F.C.']],\n", " [[' Swiss national football team']],\n", " [[' Liv Racing']],\n", " [[' England national association football team']],\n", " [[' Everton F.C.']],\n", " [[' Congo national football team']],\n", " [[' Red Bull Racing']],\n", " [[' Algeria national football team']],\n", " [[\" Australia women's national soccer team\"]],\n", " [[' Egypt national football team']],\n", " [[' Croatia national association football team']],\n", " [[' Rangers F.C.']],\n", " [[' Atromitos F.C.']],\n", " [[' Club Athletico Paranaense']],\n", " [[' Senegal national association football team']],\n", " [[' Melbourne Renegades']],\n", " [[' Portland Thorns FC']],\n", " [[\" Monts d'Or Azergues Foot\"]],\n", " [[' NŠ Drava Ptuj']],\n", " [[' Al-Shaab CSC']],\n", " [[' A.C. Milan']],\n", " [[' Germany national association football team']],\n", " [[' Real Madrid CF']],\n", " [[' Greece national association football team']],\n", " [[' Gamba Osaka']],\n", " [[' Russia national football team']],\n", " [[' Shabab Al Ahli Club']],\n", " [[' Czech Republic national association football team']],\n", " [[' Club Atlético Peñarol']],\n", " [[' Maccabi Haifa F.C.']],\n", " [[' Panathinaikos B.C.']],\n", " [[' Atlético Clube de Portugal']],\n", " [[' Ivory Coast national football team']],\n", " [[' Chelsea F.C.']],\n", " [[' Brazil national football team']],\n", " [[' Serbia national football team']],\n", " [[' Notts County F.C.']],\n", " [[' Olympiacos F.C.']],\n", " [[' Buriram United F.C.']],\n", " [[' Maccabi Tel Aviv F.C.']],\n", " [[' F.C. Porto']],\n", " [[' Lechia Gdańsk']],\n", " [[' Al-Arabi SC']],\n", " [[' Linköpings FC']],\n", " [[' Wales national association football team']],\n", " [[' FC Barcelona Femení']],\n", " [[' Italy national association football team']],\n", " [[' Quick-Step Alpha Vinyl Team']],\n", " [[' Real Salt Lake']],\n", " [[' TSG 1899 Hoffenheim']],\n", " [[' Colombia national football team']],\n", " [[' Spain national association football team']],\n", " [[' England national association football team']],\n", " [[' Australia national association football team']],\n", " [[' Iceland national association football team']],\n", " [[' AFC Bournemouth']],\n", " [[' Panionios F.C.']],\n", " [[' Real Sociedad']],\n", " [[' Uruguay national football team']],\n", " [[' Nea Salamis Famagusta FC']],\n", " [[' Atlanta Braves']],\n", " [[' Trabzonspor']],\n", " [[' Italy national association football team']],\n", " [[' S.L. Benfica']],\n", " [[' Bahrain Victorious']],\n", " [[' Vittsjö GIK']],\n", " [[' Argentina national football team']],\n", " [[' FC Erzgebirge Aue']],\n", " [[' FC Mordovia Saransk']],\n", " [[' Turkey national association football team']],\n", " [[' INAC Kobe Leonessa']],\n", " [[' Belgium national football team']],\n", " [[' Vancouver Canucks']],\n", " [[' Muangthong United F.C.']],\n", " [[' VfL Wolfsburg Women']],\n", " [[' Brazil national football team']],\n", " [[' FC Barcelona']],\n", " [[' Maritzburg United F.C.']],\n", " [[' Birmingham City F.C.']],\n", " [[' SV Sandhausen']],\n", " [[' Estonia national football team']],\n", " [[' Colombia national football team']],\n", " ...],\n", " 'labels_ids': [[[315, 532, 390, 18, 632, 4191, 165]],\n", " [[5429, 4612]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[1287, 1422, 6772]],\n", " [[83, 4, 347, 4, 7338]],\n", " [[2910, 632, 1037, 165]],\n", " [[4619, 26769, 4843, 242, 2005, 6945]],\n", " [[19763, 16872]],\n", " [[2809, 604, 18, 632, 2613, 165]],\n", " [[580, 3600, 315, 274, 4, 347, 4]],\n", " [[5429, 10402, 10489]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[188, 469, 412, 5429]],\n", " [[6314, 16421]],\n", " [[10035, 5317, 24058]],\n", " [[274, 4, 347, 4, 2848, 139]],\n", " [[7016]],\n", " [[208, 4214, 23087, 7065, 3427, 242, 2893, 13345]],\n", " [[1429, 2337, 968, 165]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[5429, 4612]],\n", " [[525, 700, 20852, 12221, 274, 4, 347, 4]],\n", " [[96, 242, 366, 13519, 625, 4733]],\n", " [[163, 1535, 14555, 2912, 438, 1020]],\n", " [[5429, 4612, 274, 15035, 1977]],\n", " [[5429, 10402, 10489]],\n", " [[315, 532, 390, 18, 632, 4191, 165]],\n", " [[91, 1610, 118, 274, 4, 347, 4]],\n", " [[8700, 632, 1037, 165]],\n", " [[19763, 16872]],\n", " [[2009, 29018, 10221, 2684, 4119, 6303, 271, 1168]],\n", " [[11917, 3631, 3108, 139]],\n", " [[10585, 73, 9873, 35733, 5429]],\n", " [[5429, 4168, 3314, 11489, 2586]],\n", " [[15206, 4699, 5429]],\n", " [[2930, 32109, 20434, 20071]],\n", " [[2201, 6130, 12, 534, 8362, 1851, 274, 4, 347, 4]],\n", " [[10035, 5317, 24058]],\n", " [[5244, 632, 1037, 165]],\n", " [[17057, 8441]],\n", " [[2822, 3622, 12612]],\n", " [[468, 506, 387, 312, 9259, 22739]],\n", " [[163, 14075, 6752, 10327]],\n", " [[83, 4, 347, 4, 7338]],\n", " [[5168, 5325]],\n", " [[10035, 5317, 24058]],\n", " [[10124, 10031, 6195, 102, 5235, 102, 208, 4, 530, 4]],\n", " [[4152, 274, 4, 347, 4]],\n", " [[6415, 1501, 9224, 38707]],\n", " [[2201, 6130, 12, 534, 8362, 1851, 274, 4, 347, 4]],\n", " [[3161, 14122, 1178]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[4236, 7487, 46770, 5597, 5235, 677, 5235, 14897, 853, 5429]],\n", " [[1568, 1833, 5429]],\n", " [[384, 10839, 642, 493, 5366, 2601]],\n", " [[5429, 10402, 10489]],\n", " [[1332, 242, 5413, 7222, 30089, 257, 5675, 2912, 438, 1020]],\n", " [[22705, 274, 4, 347, 4]],\n", " [[1568, 9926]],\n", " [[2499, 11476]],\n", " [[6015, 12696, 5429]],\n", " [[5168, 5325]],\n", " [[2812, 405, 15577, 274, 4, 347, 4]],\n", " [[4152, 274, 4, 347, 4]],\n", " [[5429, 10402, 10489]],\n", " [[5092, 632, 1037, 165]],\n", " [[29830, 18961]],\n", " [[2201, 6130, 12, 534, 8362, 1851, 274, 4, 347, 4]],\n", " [[3417, 5809]],\n", " [[221, 15277, 2912, 438, 1020, 38220]],\n", " [[663, 11758]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[5028, 632, 1037, 165]],\n", " [[41135, 329, 859, 2379, 208, 4, 530, 4]],\n", " [[7556, 632, 5259, 1037, 165]],\n", " [[580, 3600, 315, 274, 4, 347, 4]],\n", " [[2177, 5429]],\n", " [[1287, 1422, 6772]],\n", " [[1429, 632, 1037, 165]],\n", " [[5787, 5991, 8025, 1899]],\n", " [[5429, 10402, 10489]],\n", " [[5926, 2032, 16248, 5429]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[208, 4214, 15333, 5429]],\n", " [[6331,\n", " 1975,\n", " 493,\n", " 3381,\n", " 4214,\n", " 20341,\n", " 1140,\n", " 119,\n", " 2426,\n", " 263,\n", " 944,\n", " 16231,\n", " 763,\n", " 126,\n", " 384,\n", " 4,\n", " 250,\n", " 4,\n", " 597,\n", " 4]],\n", " [[21774, 632, 1037, 165]],\n", " [[163, 4330, 12, 725, 1253, 15821, 700]],\n", " [[7505, 17458, 632, 1037, 165]],\n", " [[2822, 3622, 12612]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[4998, 5547, 1452, 7150]],\n", " [[20351, 2383, 42775, 2001, 33293]],\n", " [[31162, 857, 632, 1037, 165]],\n", " [[4622, 139, 4954, 347]],\n", " [[2361, 315, 274, 4, 347, 4]],\n", " [[2009, 263, 274, 5874, 90, 18217, 3385, 1334, 5460]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[230, 3376, 2711]],\n", " [[12602, 6801, 5463, 1885, 90, 22783]],\n", " [[5429, 10402, 10489]],\n", " [[4213, 808, 8878, 12, 530, 21228]],\n", " [[3542, 1469, 6377, 274, 4, 347, 4]],\n", " [[6314, 16421]],\n", " [[2741, 1906, 6971, 10482]],\n", " [[8683, 390, 18, 632, 1037, 165]],\n", " [[9035, 412, 274, 4, 347, 4]],\n", " [[17112, 3061, 12, 487, 5600, 139]],\n", " [[83, 4575, 3194, 29, 274, 530]],\n", " [[5926, 2032, 16248, 5429]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[2822, 3622, 12612]],\n", " [[4537, 415, 31126, 857, 208, 4, 530, 4]],\n", " [[8937, 1113, 1209, 11868, 1343, 22398, 2711]],\n", " [[2393, 873, 329, 1790, 12150]],\n", " [[7137, 2848, 274, 4, 347, 4]],\n", " [[2822, 3622, 4317, 261, 35678, 139]],\n", " [[20351, 2383, 42775, 2001, 33293]],\n", " [[14585, 2550, 1829, 7065, 3427, 7222, 4677, 1794, 853, 281]],\n", " [[5429, 5981, 1977, 330, 21932, 6472, 102]],\n", " [[15338, 412, 83, 4, 597, 4, 347, 4]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[2893, 13345, 263, 6304, 415, 281, 109, 37313, 3314, 139]],\n", " [[5429, 37960, 163, 7110]],\n", " [[12723, 12130, 1178]],\n", " [[2910, 632, 1037, 165]],\n", " [[1775, 438, 10810, 4936, 15247, 274, 4, 347, 4]],\n", " [[2201, 6130, 12, 534, 8362, 1851, 274, 4, 347, 4]],\n", " [[1287, 1422, 12190]],\n", " [[2201, 6130, 12, 534, 8362, 1851, 274, 1140, 4691, 833]],\n", " [[14993, 9504, 366, 274, 4, 347, 4]],\n", " [[3870, 7338]],\n", " [[2499, 18946]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[274, 4, 347, 4, 2848, 139]],\n", " [[2910, 632, 1037, 165]],\n", " [[18490, 632, 5259, 1037, 165]],\n", " [[1568, 1211, 7144]],\n", " [[2822, 3622, 12612]],\n", " [[25297, 5512, 8441]],\n", " [[15607, 412, 274, 4, 347, 4]],\n", " [[29018, 10221, 2684, 3622]],\n", " [[14993, 5150, 263, 23294, 4061]],\n", " [[384, 4, 597, 4, 530, 4, 1456, 2154, 7822]],\n", " [[7320, 632, 1037, 165]],\n", " [[221, 4438, 274, 4, 347, 4]],\n", " [[7224, 597, 19643, 1688, 3999, 1243]],\n", " [[34138, 30422, 330, 274, 1242, 3512]],\n", " [[2711, 23070, 9089, 14035]],\n", " [[13943, 1001, 2848, 242, 14182]],\n", " [[15809, 1942, 315, 274, 4, 347, 4]],\n", " [[3303, 12179, 967, 366, 40431, 281, 274, 4, 347, 4]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[27268, 9228, 274, 4, 347, 4]],\n", " [[22753, 21386, 3624, 163, 5593, 225]],\n", " [[5854, 412, 4998]],\n", " [[5429, 4612]],\n", " [[5429, 4168, 3314, 11489, 2586]],\n", " [[10600, 412, 274, 4, 347, 4]],\n", " [[6171, 390, 18, 632, 5259, 1037, 165]],\n", " [[4152, 274, 4, 347, 4]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[2711, 344, 20031, 12, 846, 40837]],\n", " [[13943, 415, 1210, 405, 2383, 771, 16966, 1698, 28544]],\n", " [[11998, 28659, 163, 530]],\n", " [[26455, 330, 23759, 9051, 625, 4104, 37151, 11104]],\n", " [[4556, 26488, 8647, 293, 5429]],\n", " [[12932, 534, 43130, 22590, 225, 10436]],\n", " [[3870, 7338]],\n", " [[4537, 415, 31126, 857, 208, 4, 530, 4]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[2711, 43657]],\n", " [[10585, 73, 9873, 35733, 5429]],\n", " [[10157, 3830, 271, 5429, 305, 12, 17608]],\n", " [[2822, 6525, 354, 4317, 7474, 118, 1140]],\n", " [[663, 41375, 2857]],\n", " [[5524, 15933]],\n", " [[31853, 2678, 2583, 5429]],\n", " [[2361, 412, 274, 4, 347, 4]],\n", " [[7943, 17280, 13039]],\n", " [[4868, 846, 381, 2028, 5410, 2987]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[16518, 12470, 274, 4, 347, 4]],\n", " [[41135, 329, 859, 2379, 208, 4, 530, 4]],\n", " [[163, 1543, 219, 281, 4998]],\n", " [[2822, 3622, 12612]],\n", " [[2361, 315, 274, 4, 347, 4]],\n", " [[29018, 10221, 2684, 3622]],\n", " [[7320, 632, 1037, 165]],\n", " [[8683, 632, 5259, 1037, 165]],\n", " [[5429, 4612]],\n", " [[315, 532, 604, 18, 632, 4191, 165]],\n", " [[2822, 3622, 12612]],\n", " [[208, 35423, 27, 428, 3760, 274, 530]],\n", " [[7137, 12242, 15363, 274, 4, 347, 4]],\n", " [[22753, 21386, 3624, 163, 5593, 225]],\n", " [[7570, 20302, 7748, 274, 4, 347, 4]],\n", " [[9692, 274, 4, 347, 4]],\n", " [[7320, 632, 1037, 165]],\n", " [[4152, 274, 4, 347, 4]],\n", " [[6748, 2723, 9697, 263, 1587, 2812, 257, 14379]],\n", " [[36858, 25278, 22753]],\n", " [[7320, 632, 1037, 165]],\n", " [[5429, 35068, 4122, 257]],\n", " [[256, 1526, 462, 6080, 12612]],\n", " [[764, 4578, 7963]],\n", " [[2201, 6130, 12, 534, 8362, 1851, 274, 4, 347, 4]],\n", " [[188, 469, 11836]],\n", " [[274, 4, 347, 4, 22843]],\n", " [[2009, 29018, 10221, 2684, 1995, 19201]],\n", " [[2361, 412, 274, 4, 347, 4]],\n", " [[5429, 10402, 10489]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[2009, 29018, 10221, 2684, 4119, 6303, 271, 1168]],\n", " [[211, 21999, 12221, 274, 4, 347, 4]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[18490, 632, 5259, 1037, 165]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[226, 15089, 2383, 104, 6998, 337]],\n", " [[112, 4, 5429, 1332, 5459]],\n", " [[10060, 632, 5259, 1037, 165]],\n", " [[274, 5777, 28185, 3381, 242, 14795]],\n", " [[4537, 415, 31126, 857, 208, 4, 530, 4]],\n", " [[3317, 315, 5429]],\n", " [[15338, 412, 83, 4, 597, 4, 347, 4]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[14781, 632, 1037, 165]],\n", " [[4152, 274, 4, 347, 4]],\n", " [[5429, 4168, 3314, 11489, 2586]],\n", " [[4537, 415, 31126, 857, 208, 4, 530, 4]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[13733, 632, 1037, 165]],\n", " [[5438, 763, 2860, 4365, 274, 4, 347, 4]],\n", " [[580, 14312, 11645, 19032, 274, 4, 347, 4]],\n", " [[7556, 632, 5259, 1037, 165]],\n", " [[10994, 11536, 632, 1037, 165]],\n", " [[2910, 632, 1037, 165]],\n", " [[5429, 9176]],\n", " [[5429, 10402, 10489]],\n", " [[9601, 24857]],\n", " [[188, 3324, 632, 8808, 2918, 165]],\n", " [[315, 532, 390, 18, 632, 4191, 165]],\n", " [[12919, 274, 4, 347, 4]],\n", " [[7137, 2848, 274, 4, 347, 4]],\n", " [[15206, 4699, 5429]],\n", " [[96, 242, 366, 13519, 625, 4733]],\n", " [[13733, 632, 1037, 165]],\n", " [[6171, 632, 5259, 1037, 165]],\n", " [[1405, 12037, 163, 3632]],\n", " [[2361, 412, 305, 4, 597, 4, 347, 4]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[9688, 104, 6579, 18995]],\n", " [[163, 1543, 219, 281, 4998]],\n", " [[112, 4, 274, 5268, 14184]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[580, 3600, 315, 274, 4, 347, 4]],\n", " [[5429, 229, 8428]],\n", " [[305, 5416, 926, 7210, 102, 4998]],\n", " [[208, 4, 347, 4, 2265, 6080]],\n", " [[7224, 597, 19643, 1688, 3999, 1243]],\n", " [[2822, 6525, 354, 4317, 7474, 118, 1140]],\n", " [[10157, 3830, 271, 5429]],\n", " [[7248, 219, 8441]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[5429, 4369, 329]],\n", " [[1287, 1422, 22320]],\n", " [[580, 3600, 315, 274, 4, 347, 4]],\n", " [[7296, 271, 8726, 12612]],\n", " [[12919, 274, 4, 347, 4]],\n", " [[2009, 24066, 8843, 263, 9614]],\n", " [[15206, 4699, 5429]],\n", " [[15206, 4699, 5429]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[3317, 10506]],\n", " [[7556, 632, 5259, 1037, 165]],\n", " [[9614, 632, 1037, 165]],\n", " [[11437, 632, 5259, 1037, 165]],\n", " [[6015, 12696, 5429]],\n", " [[96, 242, 366, 13519, 625, 4733]],\n", " [[229, 597, 5725, 12, 530, 8015, 415, 2552, 26067]],\n", " [[2027, 188, 469, 15626]],\n", " [[7556, 632, 5259, 1037, 165]],\n", " [[381, 2544, 338, 11629, 14184]],\n", " [[5703, 15908]],\n", " [[2361, 412, 305, 4, 597, 4, 347, 4]],\n", " [[14585, 2550, 1829, 7065, 3427, 7222, 4677, 1794, 853, 281]],\n", " [[13633, 83, 4, 597, 4, 347, 4]],\n", " [[7320, 632, 1037, 165]],\n", " [[208, 4214, 15333, 5429]],\n", " [[274, 4, 347, 4, 6466, 32612]],\n", " [[1221, 1585, 324, 5363, 1745, 968, 165]],\n", " [[21105, 18604, 3910, 2009]],\n", " [[29018, 10221, 2684, 6843]],\n", " [[2910, 632, 1037, 165]],\n", " [[1568, 1211, 7144]],\n", " [[2009, 234, 1043, 6073, 263, 3910]],\n", " [[1625, 632, 1037, 165]],\n", " [[1209, 31002, 16146, 6331, 366]],\n", " [[17100, 1908, 9216, 20233, 16885, 274, 4, 347, 4]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[163, 8982, 2133, 274, 4, 347, 4, 41861]],\n", " [[382, 1793, 24227, 1253]],\n", " [[6748, 2723, 9697, 25452, 338, 12109]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[2393, 873, 329, 1790, 12150]],\n", " [[14993, 9504, 366, 274, 4, 347, 4]],\n", " [[230, 4, 104, 4, 13142, 23065, 5739]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[14567, 12612]],\n", " [[7320, 632, 1037, 165]],\n", " [[229, 4113, 254, 354, 12150]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[9170, 2711, 8313]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[1209, 31002, 16146, 6331, 366]],\n", " [[10060, 632, 5259, 1037, 165]],\n", " [[5092, 632, 1037, 165]],\n", " [[5429, 4612, 163, 5269, 30919, 594]],\n", " [[6508, 632, 5259, 1037, 165]],\n", " [[14833, 274, 134, 2711]],\n", " [[7943, 17280, 13039]],\n", " [[2986, 9207]],\n", " [[91, 1610, 118, 274, 4, 347, 4]],\n", " [[7943, 17280, 13039]],\n", " [[2009, 29018, 10221, 2684, 255, 11186, 1535]],\n", " [[255, 5156, 261, 6130, 12, 347, 4503, 9676, 7406, 3512]],\n", " [[5926, 8393, 18191]],\n", " [[20351, 2383, 42775, 2001, 33293]],\n", " [[83, 4, 104, 4, 12218]],\n", " [[31853, 2678, 2583, 5429]],\n", " [[2393, 873, 329, 1790, 12150]],\n", " [[3417, 36802, 5429]],\n", " [[9170, 2711, 8313]],\n", " [[12132, 632, 1037, 165]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[1456, 5235, 967, 4349, 5235, 344, 4, 530, 4]],\n", " [[5092, 632, 1037, 165]],\n", " [[4290, 5429]],\n", " [[7960, 607, 274, 4, 347, 4]],\n", " [[230, 3376, 2711]],\n", " [[2009, 6748, 2723, 9697, 24066, 8843, 7641, 1479, 5895, 102]],\n", " [[9692, 274, 4, 347, 4]],\n", " [[221, 15277, 2912, 438, 1020, 38220]],\n", " [[580, 3600, 315, 274, 4, 347, 4]],\n", " [[274, 5777, 28185, 3381, 242, 14795]],\n", " [[3098, 274, 4, 347, 4, 2691]],\n", " [[1287, 1422, 6772]],\n", " [[272, 4, 104, 4, 38, 9418, 14496, 20, 7485, 30521, 8907]],\n", " [[10585, 73, 9873, 35733, 5429]],\n", " [[4307, 12599, 876, 2955, 272, 2583]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[2910, 632, 1037, 165]],\n", " [[2711, 344, 20031, 12, 846, 40837]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[21105, 18604, 412, 274, 4, 347, 4]],\n", " [[468, 506, 574, 7602, 16408, 2691]],\n", " [[305, 2957, 260, 274, 4, 347, 4]],\n", " [[4380, 8271, 230, 5268]],\n", " [[2027, 188, 469, 15626]],\n", " [[36265, 22753]],\n", " [[230, 4, 495, 4, 2646, 23073, 1176, 1742]],\n", " [[91, 1610, 118, 274, 4, 347, 4]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[5429, 8937, 763, 12422, 7150, 9060]],\n", " [[22753, 21386, 3624, 163, 5593, 225]],\n", " [[1156, 632, 5259, 1037, 165]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[14667, 12, 387, 3006, 1180, 632, 1037, 165]],\n", " [[234, 4, 717, 4, 347, 4]],\n", " [[274, 5777, 28185, 3381, 242, 14795]],\n", " [[1625, 632, 1037, 165]],\n", " [[9096, 3497, 632, 4105, 4191, 165]],\n", " [[5429, 30377, 1496, 219, 229, 5079, 282, 2160, 2726, 330]],\n", " [[2822, 3622, 12612]],\n", " [[13287, 12, 25093, 7829, 40236, 2711]],\n", " [[7505, 17458, 632, 1037, 165]],\n", " [[896, 604, 18, 632, 4191, 165]],\n", " [[6508, 632, 5259, 1037, 165]],\n", " [[798, 632, 1037, 165]],\n", " [[9614, 632, 1037, 165]],\n", " [[2822, 3622, 12612]],\n", " [[2009, 16528, 952, 3602, 257]],\n", " [[18490, 632, 5259, 1037, 165]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[15897, 944, 1899, 281, 2344, 523, 1694, 3006, 19200]],\n", " [[2499, 11476]],\n", " [[13694, 25280, 7204, 1627]],\n", " [[229, 7025, 30492, 241, 7450, 211, 7389]],\n", " [[2711, 23070, 9089, 14035, 3309, 876]],\n", " [[24799, 632, 1037, 165]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[4622, 139, 3767, 459, 38754]],\n", " [[4516, 673, 6743, 4936, 1073]],\n", " [[274, 530, 6015, 255, 2558, 4955, 17010]],\n", " [[163, 4330, 12, 725, 1253, 15821, 700]],\n", " [[2822, 14585, 2550, 625]],\n", " [[3702, 7776, 281, 12150]],\n", " [[5168, 5325]],\n", " [[381, 4, 347, 4, 24589, 1479, 6374]],\n", " [[7224, 30140, 102, 25204]],\n", " [[2009, 29018, 10221, 2684, 1995, 19201]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[8937, 1113, 1209, 11868, 1343, 22398, 2711]],\n", " [[2201, 6130, 12, 534, 8362, 1851, 274, 4, 347, 4]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[2361, 412, 274, 4, 347, 4]],\n", " [[2711, 344, 20031, 12, 846, 40837]],\n", " [[5429, 10402, 10489]],\n", " [[13287, 12, 25093, 7829, 40236, 2711]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[10500, 2383, 17973, 2620]],\n", " [[3317, 10506]],\n", " [[1775, 438, 10810, 4936, 15247, 274, 4, 347, 4]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[11666, 274, 4, 347, 4]],\n", " [[208, 4, 347, 4, 23094, 1043, 6073]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[5092, 632, 1037, 165]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[112, 4, 5429, 234, 5172, 282, 2865]],\n", " [[2910, 632, 1037, 165]],\n", " [[5429, 2049, 16408]],\n", " [[2361, 412, 274, 4, 347, 4]],\n", " [[315, 532, 390, 18, 632, 4191, 165]],\n", " [[7570, 20302, 7748, 274, 4, 347, 4]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[7960, 607, 274, 4, 347, 4]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[5819, 12770]],\n", " [[5703, 15908]],\n", " [[7137, 12242, 15363, 274, 4, 347, 4]],\n", " [[21780, 12527, 493, 234, 293, 255, 329, 26051, 274, 4, 347, 4]],\n", " [[1608, 179, 1561, 267, 18057, 344, 9707, 1115, 1250, 21783, 5410]],\n", " [[14993, 5150, 10888, 19864, 354]],\n", " [[5854, 13170]],\n", " [[9245, 315, 274, 4, 347, 4]],\n", " [[5429, 208, 1499]],\n", " [[5854, 412, 4998]],\n", " [[208, 4214, 15333, 5429]],\n", " [[230, 4, 250, 4, 468, 1140, 23250, 208, 2726, 1399]],\n", " [[25103, 710, 6909, 3830, 267, 366, 263, 3060, 1043, 2070, 329]],\n", " [[230, 4, 495, 4, 2646, 23073, 1176, 1742]],\n", " [[7413, 268, 4998, 673]],\n", " [[7556, 632, 5259, 1037, 165]],\n", " [[7224, 597, 19643, 1688, 3999, 1243]],\n", " [[17182, 5268, 163, 6457, 705, 468, 28814, 102]],\n", " [[21299, 2186, 274, 4, 347]],\n", " [[9035, 412, 274, 4, 347, 4]],\n", " [[5429, 13985, 405, 6130, 14330]],\n", " [[3417, 36802, 5429]],\n", " [[1625, 632, 1037, 165]],\n", " [[2499, 18946]],\n", " [[5429, 4612]],\n", " [[5729, 412, 5429]],\n", " [[24986, 6847, 20623, 261]],\n", " [[29018, 10221, 2684, 764, 6487, 3407, 14182, 12612]],\n", " [[2361, 315, 305, 4, 597, 4, 347, 4]],\n", " [[9601, 19119, 32482, 4989]],\n", " [[5244, 632, 1037, 165]],\n", " [[21774, 632, 1037, 165]],\n", " [[2000, 632, 1037, 165]],\n", " [[1405, 12037, 163, 3632]],\n", " [[840, 463, 1657, 9002, 1173, 260, 274, 4, 347, 4]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[22256, 2565, 632, 1037, 165]],\n", " [[22378, 12, 18551, 139, 390, 18]],\n", " [[1568, 1211, 7144]],\n", " [[83, 4, 104, 4, 12218]],\n", " [[9176, 381, 12, 26902, 5429]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[5420, 15929]],\n", " [[4556, 26488, 8647, 293, 5429]],\n", " [[468, 506, 387, 312, 9259, 22739]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[2910, 632, 1037, 165]],\n", " [[12966, 6748, 2723, 7222, 726, 1176, 8129, 9401]],\n", " [[4152, 305, 4, 597, 4, 347, 4]],\n", " [[6171, 632, 5259, 1037, 165]],\n", " [[1625, 632, 1037, 165]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[9170, 2711, 8313]],\n", " [[5429, 24542, 298, 45739, 1879]],\n", " [[14993, 5150, 263, 23294, 4061]],\n", " [[391, 1101, 632, 1037, 165]],\n", " [[726, 7746, 3572, 4998]],\n", " [[7320, 632, 1037, 165]],\n", " [[1429, 632, 1037, 165]],\n", " [[2000, 632, 1037, 165]],\n", " [[17535, 5382, 975, 844, 181, 73, 428, 17411, 12, 17906]],\n", " [[14567, 12612]],\n", " [[14585, 2550, 1829, 7065, 3427, 7222, 4677, 1794, 853, 281]],\n", " [[15837, 5223, 23872, 352, 118, 6579, 625, 6417]],\n", " [[3417, 36802, 5429]],\n", " [[6748, 2723, 9697, 17686, 26802, 274, 4, 347, 4]],\n", " [[4868, 846, 381, 2028, 5410, 2987]],\n", " [[468, 506, 387, 312, 9259, 22739, 3082]],\n", " [[8937, 1113, 1209, 11868, 1343, 22398, 2711]],\n", " [[798, 632, 1037, 165]],\n", " [[44602, 154, 179, 344, 9707, 1115, 1250, 1638, 462, 36384]],\n", " [[9543, 11861, 90, 281]],\n", " [[83, 4, 104, 4, 12218]],\n", " [[4514, 9529]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[1600, 390, 18, 632, 1037, 165]],\n", " [[21774, 632, 1037, 165]],\n", " [[5716, 4597, 274, 4, 347, 4]],\n", " [[2361, 412, 274, 4, 347, 4]],\n", " [[5092, 632, 1037, 165]],\n", " [[1603, 632, 1037, 165]],\n", " [[163, 4668, 281, 12150]],\n", " [[381, 2544, 338, 11629, 14184]],\n", " [[2000, 632, 1037, 165]],\n", " [[7224, 597, 19643, 1688, 3999, 1243]],\n", " [[8983, 315, 274, 4, 347, 4]],\n", " [[6037, 632, 1037, 165]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[2361, 412, 274, 4, 347, 4]],\n", " [[230, 4, 597, 4, 4838, 4231, 225, 21526]],\n", " [[1429, 632, 1037, 165]],\n", " [[1505, 1704, 3497, 632, 1037, 165]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[35906, 384, 10839, 642, 12733, 226, 267, 1792, 462, 267, 1113]],\n", " [[5092, 632, 1037, 165]],\n", " [[1625, 632, 1037, 165]],\n", " [[2588, 2461, 83, 4643]],\n", " [[18749, 412, 274, 4, 347, 4]],\n", " [[2005, 3590, 274, 4467, 18217, 2893, 13345]],\n", " [[13943, 415, 1210, 405, 2383, 771, 16966, 1698, 28544]],\n", " [[3426, 274, 4, 347, 4]],\n", " [[5480, 717, 27093, 918]],\n", " [[384, 13967, 274, 4467, 18217, 2893, 13345]],\n", " [[315, 532, 604, 18, 632, 4191, 165]],\n", " [[208, 4, 104, 4, 347, 4, 7645, 6483]],\n", " [[8683, 632, 5259, 1037, 165]],\n", " [[5429, 229, 5079, 282, 1630, 271]],\n", " [[15376, 493, 21115]],\n", " [[2910, 632, 1037, 165]],\n", " [[369, 21894, 632, 1037, 165]],\n", " [[525, 700, 20852, 12221, 274, 4, 347, 4]],\n", " [[4317, 10031, 7339, 21098, 12150]],\n", " [[7765, 6412, 4998]],\n", " [[5498, 632, 1037, 165]],\n", " [[229, 4113, 254, 354, 12150]],\n", " [[4152, 274, 4, 347, 4]],\n", " [[5429, 11996, 1168, 22487, 14722]],\n", " [[6171, 632, 5259, 1037, 165]],\n", " [[44602, 154, 179, 344, 9707, 1115, 1250, 1638, 462, 36384]],\n", " [[4290, 5429]],\n", " [[5639, 632, 1037, 165]],\n", " [[14993, 9504, 366, 274, 4, 347, 4]],\n", " [[3098, 274, 4, 347, 4, 2691]],\n", " [[208, 4, 104, 4, 347, 4, 7645, 6483]],\n", " [[726, 12, 597, 5655, 7776, 5429]],\n", " [[3590, 4947, 922]],\n", " [[5429, 13073, 1075, 1242, 1879, 3467]],\n", " [[4152, 305, 4, 597, 4, 347, 4]],\n", " [[1603, 632, 1037, 165]],\n", " [[5854, 13170]],\n", " [[15091]],\n", " [[10060, 632, 5259, 1037, 165]],\n", " [[1156, 632, 5259, 1037, 165]],\n", " [[391, 1101, 632, 1037, 165]],\n", " [[4998, 953, 7104]],\n", " [[163, 7110, 27547, 16784, 7406, 3512]],\n", " [[5680, 176, 500, 7801, 1001, 105, 282, 2711]],\n", " [[5092, 632, 1037, 165]],\n", " [[3098, 274, 4, 347, 4, 2691]],\n", " [[3160, 17492]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[315, 13716, 6350]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[4341, 3671, 642, 1033, 5429]],\n", " [[2000, 632, 1037, 165]],\n", " [[3426, 274, 4, 347, 4]],\n", " [[2711, 23070, 9089, 14035, 3309, 876]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[208, 4214, 1560, 1140, 8, 2869, 17010, 2520, 2379, 632, 1037, 165]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[1221, 632, 5259, 1037, 165]],\n", " [[2848, 26298, 9401, 208, 4, 347, 4]],\n", " [[10060, 632, 5259, 1037, 165]],\n", " [[7320, 632, 1037, 165]],\n", " [[289, 24812, 523, 1456, 108, 254, 264, 3952, 274, 4, 347, 4]],\n", " [[1429, 390, 18, 632, 1037, 165]],\n", " [[896, 390, 18, 632, 4191, 165]],\n", " [[19763, 16872]],\n", " [[10060, 632, 5259, 1037, 165]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[2910, 632, 1037, 165]],\n", " [[4436, 26827, 906, 289, 1140, 763, 6070, 5413, 2009]],\n", " [[29018, 10221, 2684, 3622]],\n", " [[8683, 632, 5259, 1037, 165]],\n", " [[11141, 281, 3060, 4488, 274, 4, 347, 4]],\n", " [[5429, 17326, 19654, 29712]],\n", " [[11955, 274, 4, 347, 4]],\n", " [[14993, 5150, 10888, 19864, 354]],\n", " [[5429, 1587, 687, 8799, 12, 19451]],\n", " [[2009, 3574, 1423, 6748, 2723, 9697, 22378, 22378]],\n", " [[944, 2253, 757, 3983, 1890, 6005]],\n", " [[22839, 2727, 3771, 20375, 4242]],\n", " [[660, 22494, 13310, 18440, 1073, 4193, 102, 5429]],\n", " [[229, 4, 3769, 1001, 381, 354, 3898, 3066, 16836, 3204, 4393, 225]],\n", " [[726, 85, 90, 19284, 5429]],\n", " [[230, 1073, 3572, 1512, 2912, 438, 1020]],\n", " [[5429, 221, 4438, 412]],\n", " [[22705, 274, 4, 347, 4]],\n", " [[1221, 632, 5259, 1037, 165]],\n", " [[13733, 632, 1037, 165]],\n", " [[13733, 632, 1037, 165]],\n", " [[5429, 4612]],\n", " [[764, 5465, 17010, 263, 33759, 783, 7499]],\n", " [[18490, 632, 5259, 1037, 165]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[5429, 7916, 354, 271]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[369, 17577, 315, 5429]],\n", " [[9601, 24857, 468, 8508, 11760]],\n", " [[112, 4, 5429, 1332, 5459]],\n", " [[7320, 632, 1037, 165]],\n", " [[15607, 412, 274, 4, 347, 4]],\n", " [[5429, 9922, 8530]],\n", " [[12587, 632, 1037, 165]],\n", " [[14781, 632, 1037, 165]],\n", " [[2742, 21402, 530, 4424, 22015, 2265, 415, 13714, 8604]],\n", " [[21774, 632, 1037, 165]],\n", " [[7995, 18710]],\n", " [[726, 2379, 28366, 2383, 597, 225, 3181]],\n", " [[2009, 344, 1417, 1342, 1182, 5654, 337, 4488]],\n", " [[15959, 1054, 8899, 274, 4, 347, 4]],\n", " [[6508, 632, 5259, 1037, 165]],\n", " [[2910, 632, 1037, 165]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[14993, 5150, 10888, 19864, 354]],\n", " [[726, 344, 1222, 3578, 2009]],\n", " [[16518, 12470, 274, 4, 347, 4]],\n", " [[1625, 632, 1037, 165]],\n", " [[12940, 632, 5259, 1037, 165]],\n", " [[1221, 390, 18, 632, 4191, 165]],\n", " [[2822, 3622, 4317, 261, 35678, 139]],\n", " [[17112, 3061, 12, 487, 5600, 139]],\n", " [[5429, 11996, 1168, 22487, 14722]],\n", " [[2009, 29018, 10221, 2684, 4838, 281, 4989]],\n", " [[3378, 1332]],\n", " [[28147, 31732, 2711]],\n", " [[274, 530, 468, 1120, 271]],\n", " [[6748, 2723, 9697, 25452, 338, 12109]],\n", " [[188, 1156, 13340]],\n", " [[33846, 22153, 2001, 3917, 2253, 9401]],\n", " [[6331,\n", " 1975,\n", " 493,\n", " 3381,\n", " 4214,\n", " 6838,\n", " 1001,\n", " 6873,\n", " 1526,\n", " 6374,\n", " 263,\n", " 7065,\n", " 3427,\n", " 293]],\n", " [[211, 4, 347, 4, 315]],\n", " [[5429, 208, 1499]],\n", " [[2910, 632, 1037, 165]],\n", " [[5429, 15757, 12705, 3467]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[17609, 632, 1037, 165]],\n", " [[9793, 5928, 274, 4, 347, 4]],\n", " [[4868, 846, 381, 2028, 5410, 2987]],\n", " [[11437, 632, 5259, 1037, 165]],\n", " [[221, 15277, 2912, 438, 1020, 38220]],\n", " [[2201, 5429]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[36589, 7876, 4668, 263, 732, 3695, 859, 102, 1792, 1069, 927]],\n", " [[12932, 534, 43130, 22590, 225, 10436]],\n", " [[21774, 632, 1037, 165]],\n", " [[369, 1961, 5429]],\n", " [[798, 632, 1037, 165]],\n", " [[2822, 3622, 12612]],\n", " [[83, 4, 717, 4, 530, 4, 11198, 274, 4, 347, 4]],\n", " [[2009, 255, 25491]],\n", " [[5837, 15945, 5429]],\n", " [[17983, 632, 1037, 165]],\n", " [[5429, 30610, 1417]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[391, 1101, 632, 1037, 165]],\n", " [[2769, 632, 5259, 1037, 165]],\n", " [[221, 5268, 7038, 14559, 3467]],\n", " [[7296, 271, 8726, 12612]],\n", " [[5429, 660, 329, 3592, 256, 7352, 1488, 330, 2331]],\n", " [[2822, 3622, 6719, 4699]],\n", " [[391, 1101, 632, 1037, 165]],\n", " [[12612, 221, 1488, 26802]],\n", " [[30492, 241, 7450, 14795]],\n", " [[6037, 632, 1037, 165]],\n", " [[5429, 13073, 1075, 1242, 1879, 3467]],\n", " [[3497, 9, 2487, 632, 5259, 1037, 165]],\n", " [[13708, 26450, 2912, 438, 1020]],\n", " [[274, 530, 11504, 257, 4807, 282, 2603, 21752, 26084, 2426]],\n", " [[221, 2001, 366, 5429]],\n", " [[315, 532, 390, 18, 632, 4191, 165]],\n", " [[14605, 632, 5259, 1037, 165]],\n", " [[8683, 632, 5259, 1037, 165]],\n", " [[12612, 4436, 20287, 337]],\n", " [[13633, 83, 4, 597, 4, 347, 4]],\n", " [[188, 3324, 632, 1037, 165]],\n", " [[274, 5777, 28185, 3381, 242, 14795]],\n", " [[14993, 5150, 10888, 19864, 354, 274, 1140, 4691, 179]],\n", " [[121, 9056, 102, 1211, 7128, 29]],\n", " [[4622, 139, 3767, 459, 38754]],\n", " [[3430, 632, 1037, 165]],\n", " [[2893, 13345, 29018, 10221, 2684, 12765, 139, 4214, 2955, 6251, 763]],\n", " [[3274, 331, 4223]],\n", " [[226, 18307, 234, 324, 438, 324, 438, 2478]],\n", " [[15081]],\n", " [[14567, 12612]],\n", " [[580, 3600, 315, 274, 4, 347, 4]],\n", " [[2393, 873, 329, 1790, 12150]],\n", " [[112, 4, 5429, 1332, 5459]],\n", " [[2201, 6130, 12, 534, 8362, 1851, 274, 4, 347, 4]],\n", " [[27162, 11626, 3990, 1722, 179, 274, 4, 347, 4]],\n", " [[16193, 632, 1037, 165]],\n", " [[2271, 13310, 36349, 2884, 337, 757, 5107, 5429]],\n", " [[7505, 17458, 632, 1037, 165]],\n", " [[20351, 2383, 42775, 2001, 33293]],\n", " [[7296, 271, 8726, 12612]],\n", " [[663, 11758]],\n", " [[3426, 274, 4, 347, 4]],\n", " [[18490, 632, 5259, 1037, 165]],\n", " [[9793, 5928, 274, 4, 347, 4]],\n", " [[229, 5596, 21834]],\n", " [[31280, 282, 5269, 29048, 263, 255, 6166, 11408, 102]],\n", " [[12612, 4436, 20287, 337]],\n", " [[14664, 412, 5429]],\n", " [[21774, 632, 1037, 165]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[2361, 315, 274, 4, 347, 4]],\n", " [[12919, 5429]],\n", " [[726, 12, 3609, 895, 1543, 2636, 1847, 2009]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[2177, 2692, 10929]],\n", " [[5703, 412, 5429, 305, 12, 17608]],\n", " [[11666, 274, 4, 347, 4]],\n", " [[344, 30395, 12108, 368]],\n", " [[468, 506, 387, 312, 9259, 22739]],\n", " [[2381, 102, 3703, 574, 165]],\n", " [[7556, 632, 5259, 1037, 165]],\n", " [[19041, 10968, 6752, 10327]],\n", " [[226, 4061, 384, 3632]],\n", " [[208, 10729, 14777, 225]],\n", " [[6171, 632, 5259, 1037, 165]],\n", " [[14993, 5150, 10888, 19864, 354]],\n", " [[7505, 17458, 632, 1037, 165]],\n", " [[15639, 632, 5259, 1037, 165]],\n", " [[9793, 5928, 274, 4, 347, 4]],\n", " [[14993, 5150, 10888, 19864, 354, 274, 1140, 4691, 179]],\n", " [[83, 4, 717, 4, 530, 4, 11198, 274, 4, 347, 4]],\n", " [[9170, 2711, 8313]],\n", " [[188, 469, 1211, 9926]],\n", " [[21774, 632, 1037, 165]],\n", " [[83, 4, 104, 4, 12218]],\n", " [[274, 530, 840, 330, 105, 1187, 12733]],\n", " [[7296, 271, 8726, 12612]],\n", " [[5429, 10402, 10489, 2691]],\n", " [[5429, 2049, 16408]],\n", " [[208, 1879, 2401, 12150]],\n", " [[208, 4214, 15333, 5429]],\n", " [[17468, 448, 13023, 5641, 163, 20997]],\n", " [[274, 5777, 28185, 3381, 242, 14795]],\n", " [[2769, 632, 5259, 1037, 165]],\n", " [[2910, 632, 1037, 165]],\n", " [[2769, 632, 5259, 1037, 165]],\n", " [[2711, 23070, 9089, 14035, 3309, 876]],\n", " [[226, 4061, 384, 3632]],\n", " [[3160, 17492]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[8683, 390, 18, 632, 865, 3512, 165]],\n", " [[25011, 12, 2022, 468, 11485, 102]],\n", " [[2361, 412, 274, 4, 347, 4]],\n", " [[3497, 9, 2487, 632, 5259, 1037, 165]],\n", " [[3378, 5553, 268]],\n", " [[1918, 1140, 14962, 274, 4467, 18217, 2893, 13345, 36, 21963, 43]],\n", " [[312, 4, 3217, 6293]],\n", " [[4766, 14572]],\n", " [[798, 632, 1037, 165]],\n", " [[8873, 9399, 1906, 263, 2588, 221, 2550, 5079]],\n", " [[5854, 13170]],\n", " [[5429, 15757, 12705, 3467]],\n", " [[4380, 8271, 230, 5268]],\n", " [[5429, 7093, 523]],\n", " [[4436, 29, 385, 108, 11094, 4947, 11249, 3663, 13324]],\n", " [[1775, 438, 10810, 4936, 15247, 274, 4, 347, 4]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[660, 22494, 13310, 18440, 1073, 4193, 102, 5429]],\n", " [[20351, 2383, 42775, 2001, 33293]],\n", " [[22839, 2727, 6748, 2723, 7222, 726, 2089, 5272]],\n", " [[3332, 2646, 26681, 274, 4, 347, 4]],\n", " [[3378, 5553, 268]],\n", " [[15376, 493, 21115]],\n", " [[166, 5618, 4670, 274, 4, 347, 4]],\n", " [[369, 17577, 315, 5429]],\n", " [[221, 2336, 272, 30265, 1243, 274, 4, 347, 4]],\n", " [[188, 3324, 632, 1037, 165]],\n", " [[208, 4, 347, 4, 2265, 6080]],\n", " [[6171, 632, 5259, 1037, 165]],\n", " [[952, 10172, 5521, 718, 281, 12612]],\n", " [[29018, 10221, 2684, 3622]],\n", " [[229,\n", " 4,\n", " 104,\n", " 4,\n", " 347,\n", " 4,\n", " 226,\n", " 5361,\n", " 2558,\n", " 384,\n", " 2603,\n", " 12,\n", " 846,\n", " 2560,\n", " 463,\n", " 8663]],\n", " [[16588, 366, 12612]],\n", " [[315, 532, 604, 18, 632, 4191, 165]],\n", " [[3430, 632, 1037, 165]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[2009, 29018, 10221, 2684, 3182, 2727]],\n", " [[24195, 632, 1037, 165]],\n", " [[20421, 428, 10344, 274, 4, 347, 4]],\n", " [[14993, 5150, 263, 23294, 4061]],\n", " [[1775, 438, 10810, 5008, 12837, 274, 4, 347, 4]],\n", " [[208, 4, 104, 4, 347, 4, 7645, 6483]],\n", " [[208, 4, 574, 4, 1664, 506, 2426]],\n", " [[6015, 6130, 12, 23791, 90, 21302]],\n", " [[9341, 261, 632, 1037, 165]],\n", " [[274, 530, 229, 7381, 139, 2742, 10809, 31316, 36533]],\n", " [[312, 1829, 248, 18974, 354, 274, 4, 347, 4]],\n", " [[312, 1829, 248, 18974, 354, 274, 4, 347, 4]],\n", " [[2009, 44285, 1851]],\n", " [[391, 1101, 632, 1037, 165]],\n", " [[36858, 25278, 22753]],\n", " [[2646, 1210, 24181, 274, 4, 347, 4]],\n", " [[5429, 4424, 22015, 11135, 2816, 438]],\n", " [[12132, 632, 1037, 165]],\n", " [[4174, 632, 5259, 1037, 165]],\n", " [[5244, 632, 1037, 165]],\n", " [[274, 3573, 4448, 6276]],\n", " [[1775, 438, 10810, 4936, 15247, 274, 4, 347, 4]],\n", " [[726, 12, 597, 5655, 7776, 4998]],\n", " [[1287, 1422, 6772]],\n", " [[11193, 1908, 274, 4, 347, 4]],\n", " [[17112, 3061, 12, 487, 5600, 139]],\n", " [[5429, 24542, 298, 45739, 1879]],\n", " [[2027, 188, 469, 15626]],\n", " [[13800, 41269, 31221]],\n", " [[274, 530, 1209, 271, 873, 7669]],\n", " [[7320, 632, 1037, 165]],\n", " [[12723, 12130, 1178]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[2711, 43657]],\n", " [[5429, 2049, 16408]],\n", " [[2893, 13345, 263, 6304, 415, 281, 109, 37313, 3314, 139]],\n", " [[44558, 991, 853, 4077, 873, 2768, 2258, 12150]],\n", " [[1470, 390, 18, 632, 865, 3512, 165]],\n", " [[9170, 2711, 8313]],\n", " [[580, 3600, 315, 274, 4, 347, 4]],\n", " [[312, 1829, 248, 18974, 354, 274, 4, 347, 4]],\n", " [[3426, 274, 4, 347, 4]],\n", " [[21774, 632, 1037, 165]],\n", " [[896, 604, 18, 632, 4191, 165]],\n", " [[4436, 26827, 906, 289, 1140, 763, 6070, 5413, 2009]],\n", " [[5429, 221, 4438, 412]],\n", " [[1211, 2141, 274, 4, 347, 4]],\n", " [[726, 12, 534, 4759, 15997, 1847, 2009]],\n", " [[4998, 953, 7104]],\n", " [[315, 532, 604, 18, 632, 4191, 165]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[21774, 632, 1037, 165]],\n", " [[1221, 632, 5259, 1037, 165]],\n", " [[4152, 274, 4, 347, 4]],\n", " [[3417, 36802, 5429]],\n", " [[2000, 632, 1037, 165]],\n", " [[20351, 2383, 42775, 2001, 33293]],\n", " [[25305, 8, 26288, 3733, 1417, 1243, 632, 1037, 165]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[11666, 274, 4, 347, 4]],\n", " [[6748, 2723, 9697, 25452, 338, 12109]],\n", " [[6371, 102, 1209, 1075, 274, 4, 347, 4]],\n", " [[2009, 29018, 10221, 2684, 4838, 281, 4989]],\n", " [[4152, 274, 4, 347, 4]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[3426, 274, 4, 347, 4]],\n", " [[5429, 229, 5079, 282, 1630, 271]],\n", " [[2009, 29018, 10221, 2684, 23654, 9401]],\n", " [[9692, 274, 4, 347, 4]],\n", " [[4273, 853, 424, 315, 274, 4, 347, 4]],\n", " [[7296, 271, 8726, 12612]],\n", " [[2822, 6525, 354, 4317, 7474, 118, 1140]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[2529, 119, 3671, 35960]],\n", " [[25305, 8, 26288, 3733, 1417, 1243, 632, 1037, 165]],\n", " [[4619, 26769, 4843, 242, 2005, 6945]],\n", " [[580, 14312, 11645, 19032, 274, 4, 347, 4]],\n", " [[14056, 369, 4680, 274, 4, 347, 4]],\n", " [[1156, 632, 5259, 1037, 165]],\n", " [[5092, 632, 1037, 165]],\n", " [[5429, 13985, 405, 6130, 14330]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[96, 242, 366, 13519, 625, 4733]],\n", " [[14993, 5150, 10888, 19864, 354, 274, 1140, 4691, 179]],\n", " [[274, 530, 6015, 255, 2558, 4955, 17010]],\n", " [[255, 14744, 632, 1037, 165]],\n", " [[726, 12, 725, 718, 337, 208, 5268]],\n", " [[826, 2583, 12, 24667, 863]],\n", " [[208, 1741, 19209, 19380, 12, 565, 677, 47497]],\n", " [[6015, 16641, 163, 20997]],\n", " [[4677, 254, 4992, 5429]],\n", " [[9096, 3497, 632, 5259, 1037, 165]],\n", " [[315, 532, 604, 18, 632, 4191, 165]],\n", " [[12919, 274, 4, 347, 4]],\n", " [[391, 1101, 632, 1037, 165]],\n", " [[15607, 412, 274, 4, 347, 4]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[5429, 13985, 405, 6130, 14330]],\n", " [[5429, 16706, 90, 7228, 229, 3671, 8502]],\n", " [[6253, 846, 5620, 354, 3321]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[11141, 281, 3060, 4488, 274, 4, 347, 4]],\n", " [[2910, 632, 1037, 165]],\n", " [[289, 24812, 523, 1456, 108, 254, 264, 3952, 274, 4, 347, 4]],\n", " [[726, 4417, 338, 4998]],\n", " [[13077, 412, 83, 4, 597, 4, 347, 4]],\n", " [[2032, 11850, 257, 5429]],\n", " [[5302, 2681, 1243, 967, 366, 274, 4, 347, 4]],\n", " [[33445, 14511, 3109]],\n", " [[2910, 632, 1037, 165]],\n", " [[384, 10839, 642, 493, 5366, 2601]],\n", " [[4152, 305, 4, 597, 4, 347, 4]],\n", " [[5092, 632, 1037, 165]],\n", " [[17057, 8441]],\n", " [[1156, 632, 5259, 1037, 165]],\n", " [[9692, 274, 4, 347, 4]],\n", " [[11536, 632, 1037, 165]],\n", " [[1211, 6518, 8441]],\n", " [[21774, 632, 1037, 165]],\n", " [[1221, 390, 18, 632, 4191, 165]],\n", " [[5028, 632, 1037, 165]],\n", " [[11437, 632, 5259, 1037, 165]],\n", " [[5706, 274, 4, 347, 4]],\n", " [[497, 5638, 405, 366, 274, 4, 347, 4]],\n", " [[2009, 27417, 2684, 2884, 1113, 9401]],\n", " [[18490, 632, 5259, 1037, 165]],\n", " [[5703, 38901, 4216]],\n", " [[5926, 2032, 16248, 5429]],\n", " [[4436, 29, 385, 108, 11094, 4947, 11249, 3663, 13324]],\n", " [[234, 1277, 21402, 211, 6472, 102, 42191, 11591]],\n", " [[726, 12, 3609, 102, 873, 230, 3632]],\n", " [[83, 4, 347, 4, 7338]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[2822, 3622, 12612]],\n", " [[4644, 632, 5259, 1037, 165]],\n", " [[272, 14996, 19380]],\n", " [[798, 632, 1037, 165]],\n", " [[840, 873, 873, 726, 7746, 3572, 2009]],\n", " [[9096, 3497, 632, 5259, 1037, 165]],\n", " [[2009, 29018, 10221, 2684, 4119, 6303, 271, 1168]],\n", " [[1775, 438, 10810, 4936, 15247, 274, 4, 347, 4]],\n", " [[5302, 2681, 1243, 967, 366, 163, 4, 347, 4]],\n", " [[29018, 10221, 2684, 2893, 13345, 263, 8062]],\n", " [[22256, 2565, 632, 1037, 165]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[2910, 632, 1037, 165]],\n", " [[12933, 632, 1037, 165]],\n", " [[1491, 1872, 413, 274, 4, 347, 4]],\n", " [[14993, 9504, 366, 274, 4, 347, 4]],\n", " [[4273, 853, 424, 315, 274, 4, 347, 4]],\n", " [[1775, 438, 10810, 5477, 19067, 274, 4, 347, 4]],\n", " [[274, 4, 347, 4, 2848, 139]],\n", " [[1063, 611, 493, 272, 6106, 1277, 11936, 7771]],\n", " [[726, 12, 8138, 10810, 4998]],\n", " [[4341, 3671, 642, 1033, 5429]],\n", " [[5295, 632, 5259, 1037, 165]],\n", " [[5429, 4612, 274, 15035, 1977]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[13287, 12, 25093, 7829, 40236, 2711]],\n", " [[2822, 8957, 1777]],\n", " [[12932, 534, 43130, 22590, 225, 10436]],\n", " [[8700, 632, 1037, 165]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[1156, 632, 5259, 1037, 165]],\n", " [[1221, 632, 5259, 1037, 165]],\n", " [[14605, 632, 5259, 1037, 165]],\n", " [[9601, 163, 8371, 14393]],\n", " [[5302, 1499, 4544, 274, 4, 347, 4]],\n", " [[2822, 14585, 2550, 625]],\n", " [[17609, 632, 1037, 165]],\n", " [[3864, 102, 35020, 354, 18440, 1073, 4193, 102, 5429]],\n", " [[3317, 13376]],\n", " [[2393, 873, 329, 1790, 12150]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[208, 4, 574, 4, 1664, 506, 2426]],\n", " [[13800, 41269, 31221]],\n", " [[468, 2582, 29, 267, 3671, 272, 20458]],\n", " [[5244, 632, 1037, 165]],\n", " [[5429, 4594, 329, 1899, 428, 853, 1899, 83, 1780]],\n", " [[5429, 32889, 1417, 493, 4701, 30075]],\n", " [[2769, 632, 5259, 1037, 165]],\n", " [[2808, 2562, 24058, 9213, 15620]],\n", " [[7320, 632, 1037, 165]],\n", " [[5071, 19011]],\n", " [[6186, 1097, 212, 1657, 315, 274, 4, 347, 4]],\n", " [[468, 506, 574, 7602, 16408, 2691]],\n", " [[2910, 632, 1037, 165]],\n", " [[5429, 4612]],\n", " [[1127, 4494, 3321, 315, 274, 4, 347, 4]],\n", " [[8353, 412, 274, 4, 347, 4]],\n", " [[22753, 4219, 19493, 225]],\n", " [[24799, 632, 1037, 165]],\n", " [[8700, 632, 1037, 165]],\n", " ...],\n", " 'relation': ['P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " ...],\n", " 'num_answers': [1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " ...]},\n", " '2020-Q2': {'text': [['Alex Morgan plays for .'],\n", " ['Lionel Messi plays for .'],\n", " ['Cristiano Ronaldo plays for .'],\n", " ['LeBron James plays for .'],\n", " ['Puck Moonen plays for .'],\n", " ['Zlatan Ibrahimović plays for .'],\n", " ['Neymar plays for .'],\n", " ['Ronaldinho plays for .'],\n", " ['Megan Rapinoe plays for .'],\n", " ['Pau Gasol plays for .'],\n", " ['Alisha Lehmann plays for .'],\n", " ['Robert Lewandowski plays for .'],\n", " ['Gianluigi Buffon plays for .'],\n", " ['Andrea Pirlo plays for .'],\n", " ['Kevin Durant plays for .'],\n", " ['Lewis Hamilton plays for .'],\n", " ['Formiga plays for .'],\n", " ['Naomi Osaka plays for .'],\n", " ['José Mourinho plays for .'],\n", " ['Luis Suárez plays for .'],\n", " ['Franck Ribéry plays for .'],\n", " ['Tim Cahill plays for .'],\n", " ['Chris Froome plays for .'],\n", " ['Mario Balotelli plays for .'],\n", " ['Lieke Martens plays for .'],\n", " ['Manuel Neuer plays for .'],\n", " ['Lindsey Horan plays for .'],\n", " ['Javier Mascherano plays for .'],\n", " ['Mark Cavendish plays for .'],\n", " ['James Rodríguez plays for .'],\n", " ['Hope Solo plays for .'],\n", " ['Diego Forlán plays for .'],\n", " ['Sebastián Abreu plays for .'],\n", " ['Carli Lloyd plays for .'],\n", " ['Marta plays for .'],\n", " ['Yuzvendra Chahal plays for .'],\n", " ['Thiago Silva plays for .'],\n", " ['Andrés Iniesta plays for .'],\n", " ['Wayne Rooney plays for .'],\n", " ['Keisuke Honda plays for .'],\n", " ['Sergio Agüero plays for .'],\n", " ['Marianne Vos plays for .'],\n", " ['Sergio Ramos plays for .'],\n", " ['Mario Gómez plays for .'],\n", " ['Dani Alves plays for .'],\n", " ['Carlos Tevez plays for .'],\n", " ['Pepe Reina plays for .'],\n", " ['Giovani dos Santos plays for .'],\n", " ['Ricardo Quaresma plays for .'],\n", " ['Mesut Özil plays for .'],\n", " ['Freddy Adu plays for .'],\n", " ['Cristiane Rozeira plays for .'],\n", " ['Maya Moore plays for .'],\n", " ['Giorgio Chiellini plays for .'],\n", " ['Robinho plays for .'],\n", " ['Bastian Schweinsteiger plays for .'],\n", " ['Luis Scola plays for .'],\n", " ['Jérôme Boateng plays for .'],\n", " ['Kevin-Prince Boateng plays for .'],\n", " ['Vincenzo Nibali plays for .'],\n", " ['Egidio Arévalo Rios plays for .'],\n", " ['Dwyane Wade plays for .'],\n", " ['Dwight Howard plays for .'],\n", " ['Cesc Fàbregas plays for .'],\n", " ['Nigel de Jong plays for .'],\n", " ['Colin Kazim-Richards plays for .'],\n", " ['Pierre-Emerick Aubameyang plays for .'],\n", " ['David Alaba plays for .'],\n", " ['Xherdan Shaqiri plays for .'],\n", " ['Marc Gasol plays for .'],\n", " ['Laura Kenny plays for .'],\n", " ['Aristide Bancé plays for .'],\n", " ['Philippe Gilbert plays for .'],\n", " ['Edinson Cavani plays for .'],\n", " ['Breanna Stewart plays for .'],\n", " ['Bruno Alves plays for .'],\n", " ['Ali Krieger plays for .'],\n", " ['Antoine Griezmann plays for .'],\n", " ['Mohamed Salah plays for .'],\n", " ['Beto plays for .'],\n", " ['Memphis Depay plays for .'],\n", " ['Pablo Zabaleta plays for .'],\n", " ['Jozy Altidore plays for .'],\n", " ['Steve Nash plays for .'],\n", " ['Shinji Okazaki plays for .'],\n", " ['Maya Yoshida plays for .'],\n", " ['Gary Cahill plays for .'],\n", " ['Guillermo Ochoa plays for .'],\n", " ['Serge Gnabry plays for .'],\n", " ['Christine Sinclair plays for .'],\n", " ['Paul Pogba plays for .'],\n", " ['Alexandre Pato plays for .'],\n", " ['Hugo Almeida plays for .'],\n", " [\"Raïs M'Bolhi plays for .\"],\n", " ['Peter Sagan plays for .'],\n", " ['Joel Campbell plays for .'],\n", " ['Luka Modrić Papá de Lionel Messi plays for .'],\n", " ['Elia Viviani plays for .'],\n", " ['Toni Kroos plays for .'],\n", " ['Giulia Gwinn plays for .'],\n", " ['Ellen van Dijk plays for .'],\n", " ['Lucas Barrios plays for .'],\n", " ['Daniel Fernandes plays for .'],\n", " ['Juan Mata plays for .'],\n", " ['Michael Bradley plays for .'],\n", " ['Gonzalo Higuaín plays for .'],\n", " ['Greg Van Avermaet plays for .'],\n", " ['Alexandra Lacrabère plays for .'],\n", " ['David Andersen plays for .'],\n", " ['Javi Martínez plays for .'],\n", " ['Davide Rebellin plays for .'],\n", " ['Ricardo Costa plays for .'],\n", " ['Kyrie Irving plays for .'],\n", " ['Sebastian Vettel plays for .'],\n", " ['Ingrid Syrstad Engen plays for .'],\n", " ['Adrien Silva plays for .'],\n", " ['Rigoberto Urán plays for .'],\n", " ['John Arne Riise plays for .'],\n", " ['Tobin Heath plays for .'],\n", " ['Hedvig Lindahl plays for .'],\n", " ['Marcelo plays for .'],\n", " ['Radamel Falcao plays for .'],\n", " ['Jakob Fuglsang plays for .'],\n", " ['Marko Marin plays for .'],\n", " ['Mikel John Obi plays for .'],\n", " ['Hulk plays for .'],\n", " ['Rudy Fernández plays for .'],\n", " ['Lizzie Deignan plays for .'],\n", " ['Zé Roberto plays for .'],\n", " ['Rohan Dennis plays for .'],\n", " ['Milan Baroš plays for .'],\n", " ['Łukasz Fabiański plays for .'],\n", " ['Mats Hummels plays for .'],\n", " ['Diego Ribas da Cunha plays for .'],\n", " ['Artem Milevskyi plays for .'],\n", " ['Anna van der Breggen plays for .'],\n", " ['Rafinha plays for .'],\n", " ['Vladimir Stojković plays for .'],\n", " ['Ángel Di María plays for .'],\n", " ['Chris Paul plays for .'],\n", " ['Rosana dos Santos Augusto plays for .'],\n", " ['Manuel da Costa plays for .'],\n", " ['Alexis Sánchez plays for .'],\n", " ['Sophie Schmidt plays for .'],\n", " ['Pepe plays for .'],\n", " ['Philippe Coutinho plays for .'],\n", " ['Sadio Mané plays for .'],\n", " ['Christen Press plays for .'],\n", " ['Keylor Navas plays for .'],\n", " ['Valentino Rossi plays for .'],\n", " ['Bojan Krkić plays for .'],\n", " ['Shinji Kagawa plays for .'],\n", " ['Diego Costa plays for .'],\n", " ['Steve Mandanda plays for .'],\n", " ['Miodrag Anđelković plays for .'],\n", " ['Thibaut Courtois plays for .'],\n", " ['Vincent Kompany plays for .'],\n", " ['Eiður Guðjohnsen plays for .'],\n", " ['Jakub Błaszczykowski plays for .'],\n", " ['Henning Berg plays for .'],\n", " ['Annemiek van Vleuten plays for .'],\n", " ['Álvaro Pereira plays for .'],\n", " ['Florent Sinama Pongolle plays for .'],\n", " ['Miljan Mrdaković plays for .'],\n", " ['Mario Götze plays for .'],\n", " ['Jô plays for .'],\n", " ['Claudio Pizarro plays for .'],\n", " ['Nani plays for .'],\n", " ['Ivan Rakitić plays for .'],\n", " ['Erin McLeod plays for .'],\n", " ['Peter Odemwingie plays for .'],\n", " ['Sofia Jakobsson plays for .'],\n", " ['David Luiz plays for .'],\n", " ['Jordi Alba plays for .'],\n", " ['Sami Khedira plays for .'],\n", " ['Tony Martin plays for .'],\n", " ['Kirsten Wild plays for .'],\n", " ['Nicklas Bendtner plays for .'],\n", " ['Junichi Inamoto plays for .'],\n", " ['Michael Umaña plays for .'],\n", " ['Niklas Süle plays for .'],\n", " ['Diego Godín plays for .'],\n", " ['Yuto Nagatomo plays for .'],\n", " ['Olivier Giroud plays for .'],\n", " ['Tom Dumoulin plays for .'],\n", " ['Nicolas Roche plays for .'],\n", " [\"Kelley O'Hara plays for .\"],\n", " ['Lisa De Vanna plays for .'],\n", " ['Rafael van der Vaart plays for .'],\n", " ['Elena Delle Donne plays for .'],\n", " ['Sakina Karchaoui plays for .'],\n", " ['John Degenkolb plays for .'],\n", " ['Brittney Griner plays for .'],\n", " ['Shunsuke Nakamura plays for .'],\n", " ['David Silva plays for .'],\n", " ['Axel Witsel plays for .'],\n", " ['Andrés Guardado plays for .'],\n", " ['Kylian Mbappé plays for .'],\n", " ['Tom Brady plays for .'],\n", " ['Micah Richards plays for .'],\n", " ['Łukasz Piszczek plays for .'],\n", " ['Celso Borges plays for .'],\n", " ['Royston Drenthe plays for .'],\n", " ['Gareth Bale plays for .'],\n", " ['Sergio Romero plays for .'],\n", " ['Filipe Luís plays for .'],\n", " ['Romelu Lukaku plays for .'],\n", " ['Erling Haaland plays for .'],\n", " ['Emmanuel Adebayor plays for .'],\n", " ['Arturo Vidal plays for .'],\n", " ['Jermaine Jones plays for .'],\n", " ['Eden Hazard plays for .'],\n", " ['Michael Essien plays for .'],\n", " ['Demba Ba plays for .'],\n", " [\"Amar'e Stoudemire plays for .\"],\n", " ['Nuri Şahin plays for .'],\n", " ['Hugo Lloris plays for .'],\n", " ['Morgan Schneiderlin plays for .'],\n", " ['Thomas Vermaelen plays for .'],\n", " ['Henrikh Mkhitaryan plays for .'],\n", " ['Ryan Babel plays for .'],\n", " ['Aron Baynes plays for .'],\n", " ['Johan Djourou plays for .'],\n", " ['Kevin De Bruyne plays for .'],\n", " ['Shinji Ono plays for .'],\n", " ['Idriss Carlos Kameni plays for .'],\n", " ['Fernando Llorente plays for .'],\n", " ['André Greipel plays for .'],\n", " ['Boris Diaw plays for .'],\n", " ['Anja Mittag plays for .'],\n", " ['Joakim Noah plays for .'],\n", " ['Ricky Rubio plays for .'],\n", " ['Stephan Andersen plays for .'],\n", " [\"Andrés D'Alessandro plays for .\"],\n", " ['Claudio Bravo plays for .'],\n", " ['Becky Sauerbrunn plays for .'],\n", " ['Rafinha plays for .'],\n", " ['Blaise Matuidi plays for .'],\n", " ['Cristian Rodríguez plays for .'],\n", " ['Marek Hamšík plays for .'],\n", " ['Ciro Immobile plays for .'],\n", " [\"Dame N'Doye plays for .\"],\n", " ['Raphaël Varane plays for .'],\n", " ['Roger Kluge plays for .'],\n", " ['Asmir Begović plays for .'],\n", " ['Neven Subotić plays for .'],\n", " ['Christian Eriksen plays for .'],\n", " ['Luiz Gustavo plays for .'],\n", " ['Hamit Altıntop plays for .'],\n", " ['Brad Guzan plays for .'],\n", " ['André Ayew plays for .'],\n", " ['César Azpilicueta plays for .'],\n", " ['Éric Maxim Choupo-Moting plays for .'],\n", " ['Shkodran Mustafi plays for .'],\n", " ['Caroline Seger plays for .'],\n", " ['Fernando Muslera plays for .'],\n", " ['Leonardo Bonucci plays for .'],\n", " ['Nordin Amrabat plays for .'],\n", " ['Richard Kingson plays for .'],\n", " ['Jonny Evans plays for .'],\n", " ['Jonathan de Guzmán plays for .'],\n", " ['Yannick Bolasie plays for .'],\n", " ['Dante Bonfim Costa Santos plays for .'],\n", " ['Park Chu-young plays for .'],\n", " ['Lucas Hernandez plays for .'],\n", " ['Klaas-Jan Huntelaar plays for .'],\n", " ['Sonny Bill Williams plays for .'],\n", " ['Sydney Leroux plays for .'],\n", " ['Victor Moses plays for .'],\n", " ['Elano plays for .'],\n", " ['Asamoah Gyang plays for .'],\n", " ['Grzegorz Krychowiak plays for .'],\n", " ['Achraf Hakim plays for .'],\n", " ['John Guidetti plays for .'],\n", " ['Salomon Kalou plays for .'],\n", " ['Karen Bardsley plays for .'],\n", " ['Cédric Soares plays for .'],\n", " ['Dietmar Hamann plays for .'],\n", " ['Mark Milligan plays for .'],\n", " ['Yūki Nagasato plays for .'],\n", " ['Pedro plays for .'],\n", " ['Jack Wilshere plays for .'],\n", " ['Albert Riera plays for .'],\n", " ['Florent Malouda plays for .'],\n", " ['Medhi Benatia plays for .'],\n", " ['Eduardo Carvalho plays for .'],\n", " ['Giuseppe Rossi plays for .'],\n", " ['Samir Nasri plays for .'],\n", " ['Andrija Kaluđerović plays for .'],\n", " ['Emre Belözoğlu plays for .'],\n", " ['Sarah Storey plays for .'],\n", " ['Daniel Martin plays for .'],\n", " ['Nairo Quintana plays for .'],\n", " ['Leroy Sané plays for .'],\n", " ['Valon Behrami plays for .'],\n", " ['Eiji Kawashima plays for .'],\n", " ['Ana Dabović plays for .'],\n", " ['Carlos Sánchez plays for .'],\n", " ['Raúl Albiol plays for .'],\n", " ['Bryan Ruiz plays for .'],\n", " ['Gabriel Torres plays for .'],\n", " ['Éver Banega plays for .'],\n", " ['Simon Kjær plays for .'],\n", " ['Willy Caballero plays for .'],\n", " ['Vince Carter plays for .'],\n", " ['Sergio Rodríguez plays for .'],\n", " ['Luuk de Jong plays for .'],\n", " ['Eduardo Vargas plays for .'],\n", " ['Ivan Perišić plays for .'],\n", " ['Diego Benaglio plays for .'],\n", " ['Michał Kwiatkowski plays for .'],\n", " ['Diego Reyes plays for .'],\n", " ['Lars Hirschfeld plays for .'],\n", " ['Abby Dahlkemper plays for .'],\n", " ['Daley Blind plays for .'],\n", " ['Roko Ukić plays for .'],\n", " ['Gélson Fernandes plays for .'],\n", " ['Pablo Contreras plays for .'],\n", " ['Nando de Colo plays for .'],\n", " ['Steph Houghton plays for .'],\n", " ['Ramires plays for .'],\n", " ['Jermain Defoe plays for .'],\n", " ['Divock Origi plays for .'],\n", " ['el tete plays for .'],\n", " ['Maxi López plays for .'],\n", " ['Maximiliano Richeze plays for .'],\n", " ['Ashleigh Barty plays for .'],\n", " ['Paulinho plays for .'],\n", " ['Curao Ql plays for .'],\n", " ['Marquinhos plays for .'],\n", " ['Julie Ertz plays for .'],\n", " ['Sebastián Eguren plays for .'],\n", " ['Marco Fabián plays for .'],\n", " ['Edvald Boasson-Hagen plays for .'],\n", " ['João Moutinho plays for .'],\n", " ['İlkay Gündoğan plays for .'],\n", " ['Gary Medel plays for .'],\n", " ['Karim Ziani plays for .'],\n", " ['Christian Bolaños plays for .'],\n", " ['Gonzalo Jara plays for .'],\n", " ['David De Gea plays for .'],\n", " ['Esteban Cambiasso plays for .'],\n", " ['Gabriel Enrique Gómez plays for .'],\n", " ['Douglas Costa plays for .'],\n", " ['Ezequiel Garay plays for .'],\n", " ['Michy Batshuayi plays for .'],\n", " ['Yakubu plays for .'],\n", " ['José Fonte plays for .'],\n", " ['Rui Costa plays for .'],\n", " ['Salvatore Sirigu plays for .'],\n", " ['Roman Kreuziger plays for .'],\n", " ['Kasper Schmeichel plays for .'],\n", " ['Roman Bürki plays for .'],\n", " ['Víctor Claver plays for .'],\n", " ['Arkadiusz Milik plays for .'],\n", " ['Daniel Ricciardo plays for .'],\n", " ['Thomas Delaney plays for .'],\n", " ['Kevin Love plays for .'],\n", " ['Stéphane Mbia plays for .'],\n", " ['Tatiana Guderzo plays for .'],\n", " ['André Schürrle plays for .'],\n", " ['Martín Demichelis plays for .'],\n", " ['Siraba Dembele plays for .'],\n", " ['Damian Lillard plays for .'],\n", " ['Richie Porte plays for .'],\n", " ['Sébastien Haller plays for .'],\n", " ['Edin Džeko plays for .'],\n", " ['Daisuke Matsui plays for .'],\n", " ['José Sosa plays for .'],\n", " ['Nelson Valdez plays for .'],\n", " ['Alexander Kristoff plays for .'],\n", " ['Luis Advíncula plays for .'],\n", " ['Danilo Pereira plays for .'],\n", " [\"N'Golo Kanté plays for .\"],\n", " ['Duško Tošić plays for .'],\n", " ['Ricardo Rodriguez plays for .'],\n", " ['Shane Smeltz plays for .'],\n", " ['Marcelo Martins Moreno plays for .'],\n", " ['Peter Crouch plays for .'],\n", " ['Simon Gerrans plays for .'],\n", " ['Mark González plays for .'],\n", " ['Kevin Mirallas plays for .'],\n", " ['Gervinho plays for .'],\n", " ['Alex Song plays for .'],\n", " ['Raul Meireles plays for .'],\n", " ['Ali Riley plays for .'],\n", " ['Anthony Davis plays for .'],\n", " ['Sani Kaita plays for .'],\n", " ['Christie Pearce plays for .'],\n", " ['Luís Fabiano plays for .'],\n", " ['Jan Vertonghen plays for .'],\n", " ['Thiago Alcântara plays for .'],\n", " ['João Mário plays for .'],\n", " ['Alisson plays for .'],\n", " ['Fridolina Rolfö plays for .'],\n", " ['Wout van Aert plays for .'],\n", " ['Alphonse Areola plays for .'],\n", " ['Mousa Dembélé plays for .'],\n", " ['Babett Peter plays for .'],\n", " ['Fabiana da Silva Simões plays for .'],\n", " ['Blerim Džemaili plays for .'],\n", " ['Adriana Leon plays for .'],\n", " ['Naohiro Takahara plays for .'],\n", " ['oscar perez plays for .'],\n", " ['Gaël Kakuta plays for .'],\n", " ['Isco Alarcón plays for .'],\n", " ['Gabriel Tamaș plays for .'],\n", " ['Jaroslav Drobný plays for .'],\n", " ['Raheem Sterling plays for .'],\n", " ['Samuel Umtiti plays for .'],\n", " ['Amido Baldé plays for .'],\n", " ['Brad Jones plays for .'],\n", " ['Miguel Layún plays for .'],\n", " ['Jan Koller plays for .'],\n", " ['Dmitri Alenichev plays for .'],\n", " ['Marco Asensio plays for .'],\n", " ['Michael Mørkøv plays for .'],\n", " ['Kendall Waston plays for .'],\n", " ['Milan Borjan plays for .'],\n", " ['Kamil Glik plays for .'],\n", " ['Roman Neustädter plays for .'],\n", " ['Marcelo Díaz plays for .'],\n", " ['Jesé Rodríguez plays for .'],\n", " ['Roberto Acuña plays for .'],\n", " ['Ricardo Faty plays for .'],\n", " ['Verónica Boquete plays for .'],\n", " ['Danilo Luiz plays for .'],\n", " ['Olga Zabelinskaya plays for .'],\n", " ['Darron Gibson plays for .'],\n", " ['James Harden plays for .'],\n", " ['Russell Westbrak plays for .'],\n", " ['Jung Sung-ryong plays for .'],\n", " ['Melissa Tancredi plays for .'],\n", " ['Daryl Impey plays for .'],\n", " ['Henrik Ojamaa plays for .'],\n", " ['Leon Goretzka plays for .'],\n", " ['Pablo Hernández Domínguez plays for .'],\n", " ['Tomáš Necid plays for .'],\n", " ['Joseph Yobo plays for .'],\n", " ['Rafał Majka plays for .'],\n", " ['Bruma plays for .'],\n", " ['Samuel Inkoom plays for .'],\n", " ['Robbie Rogers plays for .'],\n", " ['Robert de Pinho de Souza plays for .'],\n", " ['Georges Mandjeck plays for .'],\n", " ['Lucho González plays for .'],\n", " ['Ander Herrera plays for .'],\n", " ['Luis León Sánchez plays for .'],\n", " ['Érika Cristiano dos Santos plays for .'],\n", " ['Kingsley Coman plays for .'],\n", " ['Aymeric Laporte plays for .'],\n", " ['Primož Roglič plays for .'],\n", " ['Charles Aránguiz plays for .'],\n", " ['Julian Alaphilippe plays for .'],\n", " ['André Silva plays for .'],\n", " ['Pauline Ferrand-Prevot plays for .'],\n", " ['Elton Brand plays for .'],\n", " ['Nikita Rukavytsya plays for .'],\n", " ['Marc-André ter Stegen plays for .'],\n", " ['Steven Davis plays for .'],\n", " ['Anderson plays for .'],\n", " ['Matthias Ginter plays for .'],\n", " ['Haris Seferovic plays for .'],\n", " ['Rui Patrício plays for .'],\n", " ['Wojciech Szczęsny plays for .'],\n", " ['Rúrik Gíslason plays for .'],\n", " ['Oscar dos Santos Emboaba Júnior plays for .'],\n", " ['Koo Ja-cheol plays for .'],\n", " ['Lucy Bronze plays for .'],\n", " ['Crystal Dunn plays for .'],\n", " ['Toby Alderweireld plays for .'],\n", " ['Penalty in the UEL final plays for .'],\n", " ['Joe Hart plays for .'],\n", " ['Kepa Arrizabalaga plays for .'],\n", " ['Giannis Antetokounmpo plays for .'],\n", " ['Besart Berisha plays for .'],\n", " ['Willian plays for .'],\n", " ['Obafemi Martins plays for .'],\n", " ['Moussa Maâzou plays for .'],\n", " ['Alexei Eremenko plays for .'],\n", " ['Moussa Dembélé plays for .'],\n", " ['Ashlyn Harris plays for .'],\n", " ['Chris Wood plays for .'],\n", " ['Reto Ziegler plays for .'],\n", " ['Antonio Nocerino plays for .'],\n", " ['Juanfran Torres plays for .'],\n", " ['Fernando Gago plays for .'],\n", " ['Ji Dong-won plays for .'],\n", " ['Carlos Salcido plays for .'],\n", " ['Oribe Peralta plays for .'],\n", " ['Marco Ureña plays for .'],\n", " ['Antar Yahia plays for .'],\n", " ['Georginio Wijnaldum plays for .'],\n", " ['Sam Kerr plays for .'],\n", " ['Martín Cáceres plays for .'],\n", " ['Valeri Bojinov plays for .'],\n", " ['Luis Tejada plays for .'],\n", " ['Gökhan İnler plays for .'],\n", " ['Javi García plays for .'],\n", " ['Nicolás Lodeiro plays for .'],\n", " ['Raúl Jiménez plays for .'],\n", " ['Janine Beckie plays for .'],\n", " ['Arda Turan plays for .'],\n", " ['Selim Benachour plays for .'],\n", " ['Mickaël Gelabale plays for .'],\n", " ['Daniel González Güiza plays for .'],\n", " ['Jackie Groenen plays for .'],\n", " ['John Mensah plays for .'],\n", " ['Federico Fazio plays for .'],\n", " ['Carl Medjani plays for .'],\n", " ['Ahmed Musa plays for .'],\n", " ['Essam El-Hadary plays for .'],\n", " ['Vedad Ibišević plays for .'],\n", " ['Marouane Fellaini plays for .'],\n", " ['Miralem Pjanić plays for .'],\n", " ['Jorginho plays for .'],\n", " ['Lacina Traoré plays for .'],\n", " ['Christiane Endler plays for .'],\n", " ['Alyssa Naeher plays for .'],\n", " ['Steven Nzonzi plays for .'],\n", " ['Kim Dong-jin plays for .'],\n", " ['Joshua Kimmich plays for .'],\n", " ['Emre Can plays for .'],\n", " ['Nicolas Batum plays for .'],\n", " ['José Calderón plays for .'],\n", " ['Emiliano Insúa plays for .'],\n", " ['Stephan El Shaarawy plays for .'],\n", " ['Casemiro plays for .'],\n", " ['Júnior Díaz plays for .'],\n", " ['Jodie Taylor plays for .'],\n", " ['Robin Olsen plays for .'],\n", " ['Héctor Herrera plays for .'],\n", " ['Sebastian Giovinco plays for .'],\n", " ['Rodrigo plays for .'],\n", " ['Fernando Gaviria plays for .'],\n", " ['Oleksandr Aliyev plays for .'],\n", " ['Florian Thauvin plays for .'],\n", " ['Kim Bo-kyung plays for .'],\n", " ['Abel Hernández plays for .'],\n", " ['Thorgan Hazard plays for .'],\n", " ['Gotoku Sakai plays for .'],\n", " ['Odion Ighalo plays for .'],\n", " ['Jasmin Glaesser plays for .'],\n", " ['Eliaquim Mangala plays for .'],\n", " ['Felipe Melo plays for .'],\n", " ['Gábor Király plays for .'],\n", " ['Herculez Gomez plays for .'],\n", " ['Paulo da Silva plays for .'],\n", " ['Héctor Moreno plays for .'],\n", " ['Cacau plays for .'],\n", " ['Ion Izagirre plays for .'],\n", " ['Denis Cheryshev plays for .'],\n", " ['Anthony Annan plays for .'],\n", " ['Darius Songaila plays for .'],\n", " ['Morgan De Sanctis plays for .'],\n", " ['Joe Ingles plays for .'],\n", " ['Paco Alcácer plays for .'],\n", " ['Sara Däbritz plays for .'],\n", " ['Nikola Mirotić plays for .'],\n", " ['Adlène Guedioura plays for .'],\n", " ['Fábio Coentrão plays for .'],\n", " ['Scott Carson plays for .'],\n", " ['Granit Xhaka plays for .'],\n", " ['Ashkan Dejagah plays for .'],\n", " ['Derrick Rose plays for .'],\n", " ['Yevhen Seleznyov plays for .'],\n", " ['Makoto Hasebe plays for .'],\n", " ['William Troost-Ekong plays for .'],\n", " ['Mauro Zárate plays for .'],\n", " ['Seydou Doumbia plays for .'],\n", " ['Tomáš Pekhart plays for .'],\n", " ['Jeffrén Suárez plays for .'],\n", " ['Kurt Zouma plays for .'],\n", " ['Nicolás Otamendi plays for .'],\n", " ['Silvestre Varela plays for .'],\n", " ['Hiroki Sakai plays for .'],\n", " ['Geoffrey Kondogbia plays for .'],\n", " ['Antonio Rüdiger plays for .'],\n", " ['Danko Lazović plays for .'],\n", " ['Admir Mehmedi plays for .'],\n", " ['Javier Aquino plays for .'],\n", " ['Kelsey Plum plays for .'],\n", " ['Teemu Pukki plays for .'],\n", " ['Grafite plays for .'],\n", " ['Lisa Brennauer plays for .'],\n", " ['Dejan Lovren plays for .'],\n", " ['Niki Terpstra plays for .'],\n", " ['Marcelinho Paraíba plays for .'],\n", " ['Mix Diskerud plays for .'],\n", " ['David Ospina plays for .'],\n", " ['Alexander Sørloth plays for .'],\n", " ['Manuel Fernandes plays for .'],\n", " ['Marek Saganowski plays for .'],\n", " ['Gabriel Barbosa plays for .'],\n", " ['Besart Abdurahimi plays for .'],\n", " ['Matthew Spiranovic plays for .'],\n", " ['Josip Tadić plays for .'],\n", " ['Younis Mahmoud plays for .'],\n", " ['Jordan Ayew plays for .'],\n", " ['Miguel Lopes plays for .'],\n", " ['Sokratis Papastathopoulos plays for .'],\n", " ['Martin Hansen plays for .'],\n", " ['Pierre Bengtsson plays for .'],\n", " ['Taye Taiwo plays for .'],\n", " ['David Carney plays for .'],\n", " ['Ángel Guirado plays for .'],\n", " ['Roberto Jiménez Gago plays for .'],\n", " ['Karen Carney plays for .'],\n", " ['Amin Younes plays for .'],\n", " ['Javier Balboa plays for .'],\n", " ['Francisco Javier Rodríguez plays for .'],\n", " ['Éder plays for .'],\n", " ['Daniëlle van de Donk plays for .'],\n", " ['Reza Ghoochannejhad plays for .'],\n", " ['Kaylyn Kyle plays for .'],\n", " ['André Lotterer plays for .'],\n", " ['Daniel Wass plays for .'],\n", " ['Matías Fernandez plays for .'],\n", " ['Harry Kane plays for .'],\n", " ['Son Heung-min plays for .'],\n", " ['Jhonny Acosta plays for .'],\n", " ['Cléopatre Darleux plays for .'],\n", " ['Tony Gallopin plays for .'],\n", " ['Yann Sommer plays for .'],\n", " ['Eniola Aluko plays for .'],\n", " ['Tyson Chandler plays for .'],\n", " ['Anthony Martial plays for .'],\n", " ['Greg Henderson plays for .'],\n", " ['Kiko Casillas plays for .'],\n", " ['Nilla Fischer plays for .'],\n", " ['Leon Balogun plays for .'],\n", " ['James Milner plays for .'],\n", " ['Cameron Meyer plays for .'],\n", " ['Benjamin Pavard plays for .'],\n", " ['Luís Leal plays for .'],\n", " ['Renato Sanches plays for .'],\n", " ['Mathew Ryan plays for .'],\n", " ['Shuichi Gonda plays for .'],\n", " ['Pierre-Emile Højbjerg plays for .'],\n", " ['Simon Mignolet plays for .'],\n", " ['Ben Sahar plays for .'],\n", " ['Mana Iwabuchi plays for .'],\n", " ['Desiree Scott plays for .'],\n", " ['Quinn plays for .'],\n", " ['Viktor Fischer plays for .'],\n", " ['Ron-Robert Zieler plays for .'],\n", " ['Alex Sandro plays for .'],\n", " ['Damien Le Tallec plays for .'],\n", " ['Tiago Mendes plays for .'],\n", " ['Martin Ødegaard plays for .'],\n", " ['Salvatore Bocchetti plays for .'],\n", " ['Olarenwaju Kayode plays for .'],\n", " ['Fraser Forster plays for .'],\n", " ['Corentin Tolisso plays for .'],\n", " ['Walter Pandiani (CR7 su papá) plays for .'],\n", " ['Justo Villar plays for .'],\n", " ['Francisco Arrué plays for .'],\n", " ['Abel Aguilar plays for .'],\n", " ['Esmaël Gonçalves plays for .'],\n", " ['Marvin Ogunjimi plays for .'],\n", " ['Sulley Muntari plays for .'],\n", " ['Izet Hajrović plays for .'],\n", " ['Ragnar Klavan plays for .'],\n", " ['Didier Zokora plays for .'],\n", " ['Oscar Ustari plays for .'],\n", " ['Mitchell Langerak plays for .'],\n", " ['Yassine Bounou plays for .'],\n", " ['Hakim Ziyech plays for .'],\n", " ['Lydia Williams plays for .'],\n", " ['Gabriel Jesus plays for .'],\n", " ['Álvaro Fernández plays for .'],\n", " ['Abdoulaye Ba plays for .'],\n", " ['Julian Draxler plays for .'],\n", " ['Stoycho Mladenov plays for .'],\n", " ['Raphaël Guerreiro plays for .'],\n", " ['Simão Sabrosa plays for .'],\n", " ['Anouk Hoogendijk plays for .'],\n", " ['Emanuel Pogatetz plays for .'],\n", " ['Yannick Carrasco plays for .'],\n", " ['Marko Arnautović plays for .'],\n", " ['Bruno Uvini plays for .'],\n", " ['Lukáš Hrádecký plays for .'],\n", " ['Charles Itandje plays for .'],\n", " ['Ján Mucha plays for .'],\n", " ['Florent Piétrus plays for .'],\n", " ['Riyad Mahrez plays for .'],\n", " ['Lasse Norman Hansen plays for .'],\n", " ['Alou Diarra plays for .'],\n", " ['Przemysław Tytoń plays for .'],\n", " ['Lucas Moura plays for .'],\n", " ['Álvaro Morata plays for .'],\n", " ['Amandine Henry plays for .'],\n", " ['Jefferson Farfán plays for .'],\n", " ['Martin Braithwaite plays for .'],\n", " ['Tom Heaton plays for .'],\n", " ['Carlos Salcedo plays for .'],\n", " ['Gabriel Torje plays for .'],\n", " ['Emily van Egmond plays for .'],\n", " ['Nicolás Laprovíttola plays for .'],\n", " ['Simon Clarke plays for .'],\n", " ['Elias Kachunga plays for .'],\n", " ['Adrián López Álvarez plays for .'],\n", " ['Maurice Edu plays for .'],\n", " ['Hatem Ben Arfa plays for .'],\n", " ['Nelson Oliveira plays for .'],\n", " ['Aco Stojkov plays for .'],\n", " ['Roy Miller plays for .'],\n", " ['Charlie Davies plays for .'],\n", " ['Carlos Fernandes plays for .'],\n", " ['Thaisa plays for .'],\n", " ['Álvaro Saborío plays for .'],\n", " ['Gabriel Cichero plays for .'],\n", " ['Fernandinho plays for .'],\n", " ['Vladimir Gabulov plays for .'],\n", " ['Taylor Rochestie plays for .'],\n", " ['Sven Bender plays for .'],\n", " ['Matías Aguirregaray plays for .'],\n", " ['Wilfried Zaha plays for .'],\n", " ['Ibrahim Afellay plays for .'],\n", " ['Mateo Kovačić plays for .'],\n", " ['Matteo Darmian plays for .'],\n", " ['Nathan Jawai plays for .'],\n", " ['Jérémy Ménez plays for .'],\n", " ['Marc Bartra plays for .'],\n", " ['Éric Djemba-Djemba plays for .'],\n", " ['Tarik Elyounoussi plays for .'],\n", " ['Yacine Brahimi plays for .'],\n", " ['Omar Bravo plays for .'],\n", " ['Yuri Zhirkov plays for .'],\n", " ['Antonio Valencia plays for .'],\n", " ['Kenneth Vermeer plays for .'],\n", " ['Dmytro Chyhrynskyi plays for .'],\n", " ['Juan Manuel Iturbe plays for .'],\n", " ['Julian de Guzman plays for .'],\n", " ['Alexander Merkel plays for .'],\n", " ['Roman Eremenko plays for .'],\n", " ['Lars Bender plays for .'],\n", " ['Suk Hyun-jun plays for .'],\n", " ['Emre Mor plays for .'],\n", " ['Zoran Tošić plays for .'],\n", " ['Jonathan dos Santos plays for .'],\n", " ['Jonathan Mensah plays for .'],\n", " ['Enzo Fernández plays for .'],\n", " ['Kim Young-gwon plays for .'],\n", " ['Oscar Pérez Rojas plays for .'],\n", " ['Astrit Ajdarević plays for .'],\n", " ['Rolf Feltscher plays for .'],\n", " ['Vedran Ćorluka plays for .'],\n", " ['Darren Randolph plays for .'],\n", " ['Ivan Pelizzoli plays for .'],\n", " ['Radomir Đalović plays for .'],\n", " ['Adam Nemec plays for .'],\n", " ['Kristie Mewis plays for .'],\n", " ['Hannes Þór Halldórsson plays for .'],\n", " ['Valon Berisha plays for .'],\n", " ['Marco Donadel plays for .'],\n", " ['Ola Toivonen plays for .'],\n", " ['Winston Reid plays for .'],\n", " ['Max Kruse plays for .'],\n", " ['Saki Kumagai plays for .'],\n", " ['Branko Ilić plays for .'],\n", " ['Răzvan Raț plays for .'],\n", " ['Robert Snodgrass plays for .'],\n", " ['Viola plays for .'],\n", " ['Klay Thompson plays for .'],\n", " ['Stefan Nikolić plays for .'],\n", " ['Carlos Sainz Jr plays for .'],\n", " ['Andressa Alves da Silva plays for .'],\n", " ['Álvaro Negredo plays for .'],\n", " ['Michail Antonio plays for .'],\n", " ['José Bosingwa plays for .'],\n", " ['Atsuto Uchida plays for .'],\n", " ['Lisa Dahlkvist plays for .'],\n", " ['James Troisi plays for .'],\n", " ['Yacouba Sylla plays for .'],\n", " ['Simon Vukčević plays for .'],\n", " ['Cristian Gamboa plays for .'],\n", " ['Elisa Longo Borghini plays for .'],\n", " ['Roberto Soldado plays for .'],\n", " ['Diana Matheson plays for .'],\n", " ['Steven Caulker plays for .'],\n", " ['Ibrahima Baldé plays for .'],\n", " ['Max Meyer plays for .'],\n", " ['Mbark Boussoufa plays for .'],\n", " ['Achille Emaná plays for .'],\n", " ['Patrice Bernier plays for .'],\n", " ['Ivan Vicelich plays for .'],\n", " ['Islam Slimani plays for .'],\n", " ['Dani Ceballos plays for .'],\n", " ['Lucas Digne plays for .'],\n", " ['Nemanja Matić plays for .'],\n", " ['Andreas Pereira plays for .'],\n", " ['Franck Dja Djédjé plays for .'],\n", " ['Ethan Ampadu plays for .'],\n", " ['R.A. Dickey plays for .'],\n", " ['Mike Havenaar plays for .'],\n", " ['Ryan Bertrand plays for .'],\n", " ['Ed Clancy plays for .'],\n", " ['Holger Badstuber plays for .'],\n", " ['Cristian Săpunaru plays for .'],\n", " ['Elinton Andrade plays for .'],\n", " ['Siem de Jong plays for .'],\n", " ['Carlos Bueno plays for .'],\n", " ['Loïc Rémy plays for .'],\n", " ['Kozue Ando plays for .'],\n", " ['Jimmy Durmaz plays for .'],\n", " ['Rafael Pereira da Silva plays for .'],\n", " ['Óscar Duarte plays for .'],\n", " ['Michael Hector plays for .'],\n", " ['Alex McCarthy plays for .'],\n", " ['Dzsenifer Marozsán plays for .'],\n", " ['Nélson Oliveira plays for .'],\n", " ['Fabio Aru plays for .'],\n", " ['Sacha Kljestan plays for .'],\n", " ['Sofiane Feghouli plays for .'],\n", " ['Emerson Palmieri plays for .'],\n", " ['Hristijan Kirovski plays for .'],\n", " ['Santiago Cazorla plays for .'],\n", " ['Melanie Behringer plays for .'],\n", " ['Stephan Lichtsteiner plays for .'],\n", " ['Hernanes plays for .'],\n", " ['Isabelle Yacoubou plays for .'],\n", " ['Mauricio Isla plays for .'],\n", " ['Hakan Çalhanoğlu plays for .'],\n", " ['Douglas dos Santos plays for .'],\n", " ['Sinan Bolat plays for .'],\n", " ['Esteban Chaves plays for .'],\n", " ['Marcos Lopes plays for .'],\n", " ['J. J. Barea plays for .'],\n", " ['Mario Suárez Mata plays for .'],\n", " ['Stine Bredal Oftedal plays for .'],\n", " ['Njazi Kuqi plays for .'],\n", " ['Jesús Navas plays for .'],\n", " ['Shane Duffy plays for .'],\n", " ['Willy Hernangómez plays for .'],\n", " ['Rafael Bastos plays for .'],\n", " ['Carlos Beltrán plays for .'],\n", " ['Nelson Cruz plays for .'],\n", " ['Fiodor Smolov plays for .'],\n", " ['Boban Marjanović plays for .'],\n", " ['Fabián Carini plays for .'],\n", " ['Shelina Zadorsky plays for .'],\n", " ['Pavel Pogrebnyak plays for .'],\n", " ['Goran Pandev plays for .'],\n", " ['Marc Janko plays for .'],\n", " ['Jamal Alioui plays for .'],\n", " ['Mohammadou Idrissou plays for .'],\n", " ['Ousmane Dembélé plays for .'],\n", " ['Gordon Schildenfeld plays for .'],\n", " ['Bauke Mollema plays for .'],\n", " ['Kalu Uche plays for .'],\n", " ['Burak Yılmaz plays for .'],\n", " ['Jimmy Butler plays for .'],\n", " ['Eduardo da Silva plays for .'],\n", " ['Jefferson Louis plays for .'],\n", " ['Diomansy Kamara plays for .'],\n", " [\"Franck Songo'o plays for .\"],\n", " ['Marco Rojas plays for .'],\n", " ['Aarón Ñíguez plays for .'],\n", " ['Victor Lindelöf plays for .'],\n", " ['Iván Kaviedes plays for .'],\n", " ['Nikola Kalinić plays for .'],\n", " ['Jajá plays for .'],\n", " ['Iván Zarandona plays for .'],\n", " ['DeAndre Yedlin plays for .'],\n", " ['Ikechi Anya plays for .'],\n", " ['Anthony Lopes plays for .'],\n", " ['Clemente Rodríguez plays for .'],\n", " ['Jan Oblak plays for .'],\n", " ['Ritchie De Laet plays for .'],\n", " ['Lassana Diarra plays for .'],\n", " ['Fatos Bećiraj plays for .'],\n", " ['Kalidou Koulibaly plays for .'],\n", " ['Kostas Mitroglou plays for .'],\n", " ['Yohan Cabaye plays for .'],\n", " ['Mario Lemina plays for .'],\n", " ['Mindaugas Kalonas plays for .'],\n", " ['Édouard Mendy plays for .'],\n", " ['Giovanni Sio plays for .'],\n", " ['Tijani Belaïd plays for .'],\n", " ['Park Joo-ho plays for .'],\n", " ['Emir Spahić plays for .'],\n", " ['Nikica Jelavić plays for .'],\n", " ['Erich Brabec plays for .'],\n", " ['Christian Cueva plays for .'],\n", " ['Yevhen Konoplyanka plays for .'],\n", " ['Paulo Dybala plays for .'],\n", " ['Emanuel Herrera plays for .'],\n", " ['Ludovic Obraniak plays for .'],\n", " ['Kleyr Vieira dos Santos plays for .'],\n", " ['Andriy Yakovlev plays for .'],\n", " ['DeMarcus Cousins plays for .'],\n", " ['Ross McCormack plays for .'],\n", " ['Taylor Phinney plays for .'],\n", " ['Maksim Shatskikh plays for .'],\n", " ['Abby Erceg plays for .'],\n", " ['Yukiya Arashiro plays for .'],\n", " ['Magaye Gueye plays for .'],\n", " ['Jason Denayer plays for .'],\n", " [\"Jolien D'Hoore plays for .\"],\n", " ['Marco Reus plays for .'],\n", " ['Michael Matthews plays for .'],\n", " ['Halil Altıntop plays for .'],\n", " ['Diego Tardelli plays for .'],\n", " ['Isaac Promise plays for .'],\n", " ['Estelle Nze Minko plays for .'],\n", " ['Sergio Henao plays for .'],\n", " ['Andriy Yarmolenko plays for .'],\n", " ['Kamil Grosicki plays for .'],\n", " ['Fabinho plays for .'],\n", " ['Ishak Belfodil plays for .'],\n", " ['Tosaint Ricketts plays for .'],\n", " ['Linda Sembrant plays for .'],\n", " ['Tuncay Şanlı plays for .'],\n", " ['Hameur Bouazza plays for .'],\n", " ['Vladimír Weiss plays for .'],\n", " ['Bernard Mendy plays for .'],\n", " ['Matt Miazga plays for .'],\n", " ['Marcos Alonso plays for .'],\n", " ['Liassine Cadamuro plays for .'],\n", " ['Adam Federici plays for .'],\n", " ['Miloš Teodosić plays for .'],\n", " ['Ellen White plays for .'],\n", " ['Román Torres plays for .'],\n", " ['Brown Ideye plays for .'],\n", " ['Trixi Worrack plays for .'],\n", " ['Sead Kolašinac plays for .'],\n", " ['Bernardo Silva plays for .'],\n", " ['Nils Petersen plays for .'],\n", " ['Oriol Romeu plays for .'],\n", " ['Adolfo Machado plays for .'],\n", " ['Filipe Machado Nascimento plays for .'],\n", " ['Rubén Iván Martínez plays for .'],\n", " ['Josephine Henning plays for .'],\n", " ['Dani Carvajal plays for .'],\n", " ['Joël Matip plays for .'],\n", " ['Marcus Berg plays for .'],\n", " ['Julio César de León plays for .'],\n", " ['Salomón Rondón plays for .'],\n", " ['Hajime Hosogai plays for .'],\n", " ['Edgar Ié plays for .'],\n", " ['Martín Montoya plays for .'],\n", " ['Lucas Piazón plays for .'],\n", " ['Markus Rosenberg plays for .'],\n", " ['Ognjen Vranješ plays for .'],\n", " ['Róbinson Zapata plays for .'],\n", " ['Sébastien Pocognoli plays for .'],\n", " ['Anders Lindegaard plays for .'],\n", " ['Jordan Henderson plays for .'],\n", " ['Josip Drmić plays for .'],\n", " ['Aleksandr Kokorin plays for .'],\n", " ['Juan Bernat plays for .'],\n", " ['Miranda plays for .'],\n", " ['Egan Bernal plays for .'],\n", " ['Camille Abily plays for .'],\n", " ['Stefan Maierhofer plays for .'],\n", " ['Matthieu Dossevi plays for .'],\n", " ['Bafétimbi Gomis plays for .'],\n", " ['Ignatas Konovalovas plays for .'],\n", " ['Karina Maruyama plays for .'],\n", " ['Adreian Payne plays for .'],\n", " ['Enzo Maresca plays for .'],\n", " ['Tomáš Vaclík plays for .'],\n", " ['Zack Steffen plays for .'],\n", " ['Ricardo Oliveira plays for .'],\n", " ['Yun Suk-young plays for .'],\n", " ['Giannelli Imbula plays for .'],\n", " ['Lorenzo Insigne plays for .'],\n", " ['Malcom plays for .'],\n", " ['Albert Bunjaku plays for .'],\n", " ['Victor Obinna plays for .'],\n", " ['William Carvalho plays for .'],\n", " ['Miguel Veloso plays for .'],\n", " ['Felipe Anderson plays for .'],\n", " ['Isaac Cuenca plays for .'],\n", " ['Luis Antonio Jiménez plays for .'],\n", " ['Curtis Davies plays for .'],\n", " ['Dan Ito plays for .'],\n", " ['Odysseas Vlachodimos plays for .'],\n", " ['Eljero Elia plays for .'],\n", " ['Fernando Amorebieta plays for .'],\n", " ['Renato Augusto plays for .'],\n", " ['Milan Mačvan plays for .'],\n", " ['Vivianne Miedema plays for .'],\n", " ['Fabian Schär plays for .'],\n", " ['Ashleigh Moolman-Pasio plays for .'],\n", " ['Marcus Rashford plays for .'],\n", " ['André Gomes plays for .'],\n", " ['Dominique Malonga plays for .'],\n", " ['Max Verstappen plays for .'],\n", " ['Mehdi Abeid plays for .'],\n", " ['Alanna Kennedy plays for .'],\n", " ['Ahmed Hegazi plays for .'],\n", " ['Alen Halilović plays for .'],\n", " ['Kenny Miller plays for .'],\n", " ['Dimitris Papadopoulos plays for .'],\n", " ['Adriano Correia Claro plays for .'],\n", " ['Fran Mérida plays for .'],\n", " ['Idrissa Gueye plays for .'],\n", " ['Shahid Afridi plays for .'],\n", " ...],\n", " 'labels': [[[\" United States women's national soccer team\"]],\n", " [[' FC Barcelona']],\n", " [[' Juventus F.C.']],\n", " [[' Los Angeles Lakers']],\n", " [[' Bingoal-Chevalmeire']],\n", " [[' A.C. Milan']],\n", " [[' Brazil national football team']],\n", " [[' Independiente Santa Fe']],\n", " [[' OL Reign']],\n", " [[\" Spain men's national basketball team\"]],\n", " [[' West Ham United F.C.']],\n", " [[' FC Bayern Munich']],\n", " [[' Juventus F.C.']],\n", " [[' New York City FC']],\n", " [[' Brooklyn Nets']],\n", " [[' Mercedes']],\n", " [[' São José Esporte Clube']],\n", " [[' Japan Fed Cup team']],\n", " [[' Juventus F.C.']],\n", " [[' FC Barcelona']],\n", " [[' ACF Fiorentina']],\n", " [[' Zhejiang Professional F.C.']],\n", " [[' Ineos Grenadiers']],\n", " [[' Brescia Calcio']],\n", " [[' FC Barcelona Femení']],\n", " [[' FC Bayern Munich']],\n", " [[\" United States women's national soccer team\"]],\n", " [[' Hebei F.C.']],\n", " [[' Bahrain Victorious']],\n", " [[' Colombia national football team']],\n", " [[' OL Reign']],\n", " [[' Club Atlético Peñarol']],\n", " [[' Audax Italiano']],\n", " [[' NJ/NY Gotham FC']],\n", " [[' FC Rosengård']],\n", " [[' Royal Challengers Bangalore']],\n", " [[' Paris Saint-Germain F.C.']],\n", " [[' Vissel Kobe']],\n", " [[' Derby County F.C.']],\n", " [[' Botafogo F.R.']],\n", " [[' Argentina national football team']],\n", " [[' Liv Racing']],\n", " [[' Real Madrid CF']],\n", " [[' VfB Stuttgart']],\n", " [[' São Paulo FC']],\n", " [[' Boca Juniors']],\n", " [[' A.C. Milan']],\n", " [[' LA Galaxy']],\n", " [[' Kasımpaşa S.K.']],\n", " [[' Arsenal F.C.']],\n", " [[' Tampa Bay Rowdies']],\n", " [[' Paris Saint-Germain F.C.']],\n", " [[' Minnesota Lynx']],\n", " [[' Juventus F.C.']],\n", " [[' İstanbul Başakşehir FC']],\n", " [[' Chicago Fire FC']],\n", " [[' Olimpia Milano']],\n", " [[' FC Bayern Munich']],\n", " [[' Unione Sportiva Sassuolo Calcio']],\n", " [[' Trek–Segafredo']],\n", " [[' Atlas F.C.']],\n", " [[' Chicago Bulls']],\n", " [[' Houston Rockets']],\n", " [[' AS Monaco FC']],\n", " [[' LA Galaxy']],\n", " [[' Coritiba F.C.']],\n", " [[' Arsenal F.C.']],\n", " [[' FC Bayern Munich']],\n", " [[' Swiss national football team']],\n", " [[' Los Angeles Lakers']],\n", " [[' Matrix Fitness']],\n", " [[' Horoya AC']],\n", " [[' Lotto–Soudal']],\n", " [[' Paris Saint-Germain F.C.']],\n", " [[' Seattle Storm']],\n", " [[' Parma Calcio 1913']],\n", " [[' Washington Spirit']],\n", " [[' France national association football team']],\n", " [[' Egypt national football team']],\n", " [[' Göztepe S.K.']],\n", " [[' Netherlands national association football team']],\n", " [[' West Ham United F.C.']],\n", " [[' Toronto FC']],\n", " [[' Los Angeles Lakers']],\n", " [[' Sociedad Deportiva Huesca']],\n", " [[' Japan national football team']],\n", " [[' Crystal Palace F.C.']],\n", " [[' Standard Liège']],\n", " [[' FC Bayern Munich']],\n", " [[' Portland Thorns FC']],\n", " [[' France national association football team']],\n", " [[' São Paulo FC']],\n", " [[' Associação Académica de Coimbra – O.A.F.']],\n", " [[' Algeria national football team']],\n", " [[' Bora-Hansgrohe']],\n", " [[' Costa Rica national football team']],\n", " [[' Real Madrid CF']],\n", " [[' Cofidis']],\n", " [[' Germany national association football team']],\n", " [[' SC Freiburg']],\n", " [[' Trek–Segafredo']],\n", " [[' Paraguay national football team']],\n", " [[' Rayo OKC']],\n", " [[' Manchester United F.C.']],\n", " [[' Club de Fútbol Monterrey']],\n", " [[' Juventus F.C.']],\n", " [[' CCC Team']],\n", " [[' Fleury Loiret HB']],\n", " [[' Hawks']],\n", " [[' FC Bayern Munich']],\n", " [[' Meridiana-Kamen']],\n", " [[' Boavista F.C.']],\n", " [[' Brooklyn Nets']],\n", " [[' Scuderia Ferrari']],\n", " [[\" Norway women's national football team\"]],\n", " [[' Leicester City F.C.']],\n", " [[' EF Education-Nippo']],\n", " [[' Aalesunds FK']],\n", " [[' Portland Thorns FC']],\n", " [[' Chelsea F.C.']],\n", " [[' Real Madrid CF']],\n", " [[' Galatasaray S.K.']],\n", " [[' Astana Qazaqstan Team']],\n", " [[' Al Ahli Saudi FC']],\n", " [[' Trabzonspor']],\n", " [[' Shanghai Port F.C.']],\n", " [[' Real Madrid Baloncesto']],\n", " [[' Trek–Segafredo']],\n", " [[' Sociedade Esportiva Palmeiras']],\n", " [[' Ineos Grenadiers']],\n", " [[' FC Baník Ostrava']],\n", " [[' Swansea City A.F.C.']],\n", " [[' Germany national association football team']],\n", " [[' Clube de Regatas do Flamengo']],\n", " [[' FC Dynamo Brest']],\n", " [[' SD Worx']],\n", " [[' Brazil national football team']],\n", " [[' Maccabi Haifa F.C.']],\n", " [[' Paris Saint-Germain F.C.']],\n", " [[' Los Angeles Clippers']],\n", " [[' Paris Saint-Germain Féminine']],\n", " [[' Olympiacos F.C.']],\n", " [[' Inter Milan']],\n", " [[' Houston Dash']],\n", " [[' F.C. Porto']],\n", " [[' Brazil national football team']],\n", " [[' Senegal national association football team']],\n", " [[' Chicago Red Stars']],\n", " [[' Real Madrid CF']],\n", " [[' Yamaha Motor Racing']],\n", " [[' Stoke City F.C.']],\n", " [[' Real Zaragoza']],\n", " [[' Atlético Madrid']],\n", " [[' Olympique de Marseille']],\n", " [[' O.F.K. Beograd']],\n", " [[' Belgium national football team']],\n", " [[' R.S.C. Anderlecht']],\n", " [[' Pune F.C.']],\n", " [[' ACF Fiorentina']],\n", " [[' Stabæk Fotball']],\n", " [[' Team BikeExchange']],\n", " [[' Cerro Porteño']],\n", " [[' Dundee United F.C.']],\n", " [[' Agrotikos Asteras F.C.']],\n", " [[' Germany national association football team']],\n", " [[' Jiangsu F.C.']],\n", " [[' SV Werder Bremen']],\n", " [[' Orlando City SC']],\n", " [[' FC Barcelona']],\n", " [[' FC Rosengård']],\n", " [[' Bristol City F.C.']],\n", " [[\" Sweden women's national association football team\"]],\n", " [[' Arsenal F.C.']],\n", " [[' Spain national association football team']],\n", " [[' Juventus F.C.']],\n", " [[' Team Jumbo-Visma']],\n", " [[' Ceratizit–WNT Pro Cycling']],\n", " [[' Rosenborg BK']],\n", " [[' Hokkaido Consadole Sapporo']],\n", " [[' Comunicaciones FC']],\n", " [[' TSG 1899 Hoffenheim']],\n", " [[' Inter Milan']],\n", " [[' Galatasaray S.K.']],\n", " [[' France national association football team']],\n", " [[' Team Jumbo-Visma']],\n", " [[' Team DSM']],\n", " [[' NJ/NY Gotham FC']],\n", " [[' Brisbane Roar FC W-League']],\n", " [[' Real Betis Balompié']],\n", " [[' Washington Mystics']],\n", " [[' Olympique Lyonnais Féminin']],\n", " [[' Lotto–Soudal']],\n", " [[' Phoenix Mercury']],\n", " [[' Yokohama FC']],\n", " [[' Manchester City F.C.']],\n", " [[' Borussia Dortmund']],\n", " [[' PSV Eindhoven']],\n", " [[' France national association football team']],\n", " [[' Tampa Bay Buccaneers']],\n", " [[' Aston Villa F.C.']],\n", " [[' Borussia Dortmund']],\n", " [[' Göztepe S.K.']],\n", " [[' Baniyas SC']],\n", " [[' Real Madrid CF']],\n", " [[' Manchester United F.C.']],\n", " [[' Atlético Madrid']],\n", " [[' Belgium national football team']],\n", " [[' Norway national association football team']],\n", " [[' Club Olimpia']],\n", " [[' FC Barcelona']],\n", " [[\" United States men's national soccer team\"]],\n", " [[' Real Madrid CF']],\n", " [[' Səbail FK']],\n", " [[' Shanghai Shenhua F.C.']],\n", " [[' Maccabi Tel Aviv B.C.']],\n", " [[' SV Werder Bremen']],\n", " [[' Tottenham Hotspur F.C.']],\n", " [[' Everton F.C.']],\n", " [[' Belgium national football team']],\n", " [[' Arsenal F.C.']],\n", " [[' Deportivo de La Coruña']],\n", " [[' Toronto Raptors']],\n", " [[' Hamburger SV']],\n", " [[' Belgium national football team']],\n", " [[' FC Ryukyu']],\n", " [[' Málaga CF']],\n", " [[' S.S.C. Napoli']],\n", " [[' Israel Start-Up Nation']],\n", " [[' San Antonio Spurs']],\n", " [[' Paris Saint-Germain F.C.']],\n", " [[' New York Knicks']],\n", " [[' Minnesota Timberwolves']],\n", " [[' F.C. Copenhagen']],\n", " [[' Club Atlético River Plate']],\n", " [[' Manchester City F.C.']],\n", " [[' Portland Thorns FC']],\n", " [[' FC Bayern Munich']],\n", " [[' France national association football team']],\n", " [[' Club Atlético Peñarol']],\n", " [[' Dalian Professional F.C.']],\n", " [[' Italy national association football team']],\n", " [[' Senegal national association football team']],\n", " [[' France national association football team']],\n", " [[' Lotto–Soudal']],\n", " [[' A.C. Milan']],\n", " [[' 1. FC Union Berlin']],\n", " [[' Denmark national association football team']],\n", " [[' Fenerbahçe SK']],\n", " [[' Galatasaray S.K.']],\n", " [[' Atlanta United FC']],\n", " [[' Swansea City A.F.C.']],\n", " [[' Spain national association football team']],\n", " [[' Cameroon national football team']],\n", " [[' Arsenal F.C.']],\n", " [[' FC Rosengård']],\n", " [[' Galatasaray S.K.']],\n", " [[' Italy national association football team']],\n", " [[' Morocco national football team']],\n", " [[' Accra Great Olympics F.C.']],\n", " [[' West Bromwich Albion F.C.']],\n", " [[' Netherlands national association football team']],\n", " [[' DR Congo national football team']],\n", " [[' Brazil national football team']],\n", " [[' FC Seoul']],\n", " [[' FC Bayern Munich']],\n", " [[' AFC Ajax']],\n", " [[' New Zealand national rugby union team']],\n", " [[\" United States women's national soccer team\"]],\n", " [[' Inter Milan']],\n", " [[' Santos F.C.']],\n", " [[' Shanghai Port F.C.']],\n", " [[' Sevilla FC']],\n", " [[' Morocco national football team']],\n", " [[' Sweden national association football team']],\n", " [[' Hertha BSC']],\n", " [[' Manchester City W.F.C.']],\n", " [[' Portugal national association football team']],\n", " [[' TuS Haltern']],\n", " [[' Baniyas SC']],\n", " [[' 1. FFC Frankfurt']],\n", " [[' Chelsea F.C.']],\n", " [[' West Ham United F.C.']],\n", " [[' FC Koper']],\n", " [[' Wadi Degla SC']],\n", " [[' Al-Duhail SC']],\n", " [[' S.C. Braga']],\n", " [[' ACF Fiorentina']],\n", " [[' Real Betis Balompié']],\n", " [[' Brisbane Roar FC']],\n", " [[' Fenerbahçe SK']],\n", " [[' Storey Racing']],\n", " [[' Israel Start-Up Nation']],\n", " [[' Arkéa–Samsic']],\n", " [[' Germany national association football team']],\n", " [[' Genoa CFC']],\n", " [[' FC Metz']],\n", " [[' Los Angeles Sparks']],\n", " [[' West Ham United F.C.']],\n", " [[' Villarreal CF']],\n", " [[' Santos F.C.']],\n", " [[' Club Universidad de Chile']],\n", " [[' Sevilla FC']],\n", " [[' Sevilla FC']],\n", " [[' Chelsea F.C.']],\n", " [[' Atlanta Hawks']],\n", " [[' Olimpia Milano']],\n", " [[' Netherlands national association football team']],\n", " [[' Chile national football team']],\n", " [[' Croatia national association football team']],\n", " [[' AS Monaco FC']],\n", " [[' Ineos Grenadiers']],\n", " [[' Tigres UANL']],\n", " [[' KFUM-Kameratene Oslo']],\n", " [[' Western New York Flash']],\n", " [[' Netherlands national association football team']],\n", " [[' Olympique Antibes']],\n", " [[' Eintracht Frankfurt']],\n", " [[' Melbourne Victory']],\n", " [[\" Fenerbahçe Men's Basketball\"]],\n", " [[' Manchester City W.F.C.']],\n", " [[' Sociedade Esportiva Palmeiras']],\n", " [[' Sunderland A.F.C.']],\n", " [[' Belgium national football team']],\n", " [[' São Paulo FC']],\n", " [[' F.C. Crotone']],\n", " [[' UAE Team Emirates']],\n", " [[' Australia Billie Jean King Cup team']],\n", " [[' Guangzhou Football Club']],\n", " [[' Atlético Junior']],\n", " [[' Brazil national football team']],\n", " [[' Chicago Red Stars']],\n", " [[' Club Nacional de Football']],\n", " [[' Mexico national football team']],\n", " [[' Qhubeka Assos']],\n", " [[' Wolverhampton Wanderers F.C.']],\n", " [[' Germany national association football team']],\n", " [[' Bologna F.C. 1909']],\n", " [[' US Orléans']],\n", " [[' Deportivo Saprissa']],\n", " [[' Club Atlético Morelia']],\n", " [[' Spain national association football team']],\n", " [[' Olympiacos F.C.']],\n", " [[' C.S. Cartaginés']],\n", " [[' Juventus F.C.']],\n", " [[' Valencia CF']],\n", " [[' Belgium national football team']],\n", " [[' Kayserispor']],\n", " [[' Portugal national association football team']],\n", " [[' UAE Team Emirates']],\n", " [[' Italy national association football team']],\n", " [[' Qhubeka Assos']],\n", " [[' Denmark national association football team']],\n", " [[' Swiss national football team']],\n", " [[' FC Barcelona Bàsquet']],\n", " [[' Poland national association football team']],\n", " [[' Renault F1 Team']],\n", " [[' Borussia Dortmund']],\n", " [[' Cleveland Cavaliers']],\n", " [[' Hebei F.C.']],\n", " [[' UAE Team ADQ']],\n", " [[' Borussia Dortmund']],\n", " [[' Club Atlético Talleres']],\n", " [[' Toulon Saint-Cyr Var Handball']],\n", " [[' Portland Trail Blazers']],\n", " [[' Trek–Segafredo']],\n", " [[' Ivory Coast national football team']],\n", " [[' A.S. Roma']],\n", " [[' Yokohama FC']],\n", " [[' Trabzonspor']],\n", " [[' Seattle Sounders FC']],\n", " [[' UAE Team Emirates']],\n", " [[' Peru national football team']],\n", " [[' Portugal national association football team']],\n", " [[' France national association football team']],\n", " [[' Beşiktaş J.K.']],\n", " [[' Swiss national football team']],\n", " [[' Sydney FC']],\n", " [[' Cruzeiro E.C.']],\n", " [[' Burnley F.C.']],\n", " [[' CCC Team']],\n", " [[' Club Deportivo Universidad Católica']],\n", " [[' Everton F.C.']],\n", " [[' Parma Calcio 1913']],\n", " [[' West Ham United F.C.']],\n", " [[' Fenerbahçe SK']],\n", " [[' Chelsea F.C. Women']],\n", " [[' Los Angeles Lakers']],\n", " [[' G.S. Iraklis Thessaloniki']],\n", " [[' NJ/NY Gotham FC']],\n", " [[' CR Vasco da Gama']],\n", " [[' S.L. Benfica']],\n", " [[' Spain national association football team']],\n", " [[' Inter Milan']],\n", " [[' Brazil national football team']],\n", " [[\" Sweden women's national association football team\"]],\n", " [[' Team Jumbo-Visma']],\n", " [[' France national association football team']],\n", " [[' Guangzhou City F.C.']],\n", " [[' VfL Wolfsburg Women']],\n", " [[' Wuhan F.C.']],\n", " [[' Genoa CFC']],\n", " [[' Western New York Flash']],\n", " [[' Okinawa SV']],\n", " [[' C.D. Guadalajara']],\n", " [[' Hebei F.C.']],\n", " [[' Spain national association football team']],\n", " [[' FC Astra Giurgiu']],\n", " [[' SV Werder Bremen']],\n", " [[' England national association football team']],\n", " [[' France national association football team']],\n", " [[' Guinea-Bissau national football team']],\n", " [[' N.E.C.']],\n", " [[' Mexico national football team']],\n", " [[' Czech Republic national beach soccer team']],\n", " [[' FC Yenisey Krasnoyarsk']],\n", " [[' Real Madrid CF']],\n", " [[' Quick-Step Alpha Vinyl Team']],\n", " [[' Costa Rica national football team']],\n", " [[\" Canada men's national soccer team\"]],\n", " [[' Poland national association football team']],\n", " [[' Russia national football team']],\n", " [[' Chile national football team']],\n", " [[' Real Madrid CF']],\n", " [[' Club Rubio Ñu']],\n", " [[' Senegal national association football team']],\n", " [[' A.C. Milan']],\n", " [[' Juventus F.C.']],\n", " [[' Roland Cogeas Edelweiss Squad']],\n", " [[' Salford City F.C.']],\n", " [[' Houston Rockets']],\n", " [[' Houston Rockets']],\n", " [[' Kawasaki Frontale']],\n", " [[' KIF Örebro DFF']],\n", " [[' Team BikeExchange Jayco']],\n", " [[' Estonia national football team']],\n", " [[' Germany national association football team']],\n", " [[' Rayo Vallecano']],\n", " [[' ADO Den Haag']],\n", " [[' FK AS Trenčín']],\n", " [[' Bora-Hansgrohe']],\n", " [[' Real Sociedad']],\n", " [[' Antalyaspor']],\n", " [[' LA Galaxy']],\n", " [[' E.C. Vitória']],\n", " [[' AC Sparta Prague']],\n", " [[' Club Atlético River Plate']],\n", " [[' Spain national association football team']],\n", " [[' Astana Qazaqstan Team']],\n", " [[' Paris Saint-Germain F.C.']],\n", " [[' France national association football team']],\n", " [[' Manchester City F.C.']],\n", " [[' Team Jumbo-Visma']],\n", " [[' FC Bayern Munich']],\n", " [[' Quick-Step Alpha Vinyl Team']],\n", " [[' Portugal national association football team']],\n", " [[' Canyon–SRAM']],\n", " [[' Atlanta Hawks']],\n", " [[' Maccabi Haifa F.C.']],\n", " [[' Germany national association football team']],\n", " [[' Southampton F.C.']],\n", " [[' S.C. Internacional']],\n", " [[' Germany national association football team']],\n", " [[' Swiss national football team']],\n", " [[' Portugal national association football team']],\n", " [[' Juventus F.C.']],\n", " [[' 1. FC Nürnberg']],\n", " [[' Brazil national football team']],\n", " [[' FC Augsburg']],\n", " [[' Manchester City F.C.']],\n", " [[\" United States women's national soccer team\"]],\n", " [[' Tottenham Hotspur F.C.']],\n", " [[' Juventus F.C.']],\n", " [[' Burnley F.C.']],\n", " [[' Spain national association football team']],\n", " [[' Milwaukee Bucks']],\n", " [[' Melbourne Victory']],\n", " [[' Chelsea F.C.']],\n", " [[' Shanghai Shenhua F.C.']],\n", " [[' Sektzia Nes Tziona F.C.']],\n", " [[' Seinäjoen Jalkapallokerho']],\n", " [[' Olympique Lyonnais']],\n", " [[' Orlando Pride']],\n", " [[' Leeds United F.C.']],\n", " [[' FC Sion']],\n", " [[' Orlando City SC']],\n", " [[' São Paulo FC']],\n", " [[' C.A. Vélez Sarsfield']],\n", " [[' 1. FSV Mainz 05']],\n", " [[' Tiburones Rojos de Veracruz']],\n", " [[' C.D. Guadalajara']],\n", " [[' Gwangju FC']],\n", " [[' Angers SCO']],\n", " [[' Netherlands national association football team']],\n", " [[' Chelsea F.C. Women']],\n", " [[' ACF Fiorentina']],\n", " [[' POFC Botev Vratsa']],\n", " [[' Pirata F.C']],\n", " [[' Leicester City F.C.']],\n", " [[' FC Zenit Saint Petersburg']],\n", " [[' Seattle Sounders FC']],\n", " [[' Mexico national football team']],\n", " [[' Houston Dash']],\n", " [[' FC Barcelona']],\n", " [[' Mumbai City FC']],\n", " [[' Élan Chalon']],\n", " [[' Atlético Sanluqueño CF']],\n", " [[' Manchester United W.F.C.']],\n", " [[' AFC Eskilstuna']],\n", " [[' Argentina national football team']],\n", " [[' Algeria national football team']],\n", " [[' Nigeria national football team']],\n", " [[' Nogoom FC']],\n", " [[' Hertha BSC']],\n", " [[' Shandong Taishan F.C.']],\n", " [[' Juventus F.C.']],\n", " [[' Italy national association football team']],\n", " [[' Ivory Coast national football team']],\n", " [[\" Colo-Colo women's\"]],\n", " [[' Chicago Red Stars']],\n", " [[' A.S. Roma']],\n", " [[' Seoul E-Land FC']],\n", " [[' Germany national association football team']],\n", " [[' Germany national association football team']],\n", " [[' Charlotte Hornets']],\n", " [[' Comunicaciones FC']],\n", " [[' VfB Stuttgart']],\n", " [[' Italy national association football team']],\n", " [[' Brazil national football team']],\n", " [[' Liga Deportiva Alajuelense']],\n", " [[' Arsenal W.F.C.']],\n", " [[' Sweden national association football team']],\n", " [[' Mexico national football team']],\n", " [[' Italy national association football team']],\n", " [[' Spain national association football team']],\n", " [[' UAE Team Emirates']],\n", " [[' FC Rukh Lviv']],\n", " [[' Olympique de Marseille']],\n", " [[' South Korea national football team']],\n", " [[' Al Ahli SC']],\n", " [[' Belgium national football team']],\n", " [[' Japan national football team']],\n", " [[' Nigeria national football team']],\n", " [[' TWENTY20 p/b Sho-Air']],\n", " [[' Valencia CF']],\n", " [[' Sociedade Esportiva Palmeiras']],\n", " [[' Szombathelyi Haladás']],\n", " [[' Seattle Sounders FC']],\n", " [[' Deportivo Toluca F.C.']],\n", " [[' PSV Eindhoven']],\n", " [[' VfB Stuttgart II']],\n", " [[' Astana Qazaqstan Team']],\n", " [[' Russia national football team']],\n", " [[' Helsingin Jalkapalloklubi']],\n", " [[' BC Rytas']],\n", " [[' A.S. Roma']],\n", " [[' Utah Jazz']],\n", " [[' Spain national association football team']],\n", " [[\" Germany women's national football team\"]],\n", " [[' FC Barcelona Bàsquet']],\n", " [[' Algeria national football team']],\n", " [[' Rio Ave F.C.']],\n", " [[' Manchester City F.C.']],\n", " [[' Swiss national football team']],\n", " [[' Iran national football team']],\n", " [[' Detroit Pistons']],\n", " [[' Bursaspor']],\n", " [[' Eintracht Frankfurt']],\n", " [[' Nigeria national football team']],\n", " [[' ACF Fiorentina']],\n", " [[' Newcastle United F.C.']],\n", " [[' Legia Warsaw']],\n", " [[' Venezuela national football team']],\n", " [[' France national association football team']],\n", " [[' Manchester City F.C.']],\n", " [[' C.F. Os Belenenses']],\n", " [[' Japan national football team']],\n", " [[' Central African Republic national football team']],\n", " [[' Germany national association football team']],\n", " [[' NK Olimpija Ljubljana']],\n", " [[' Swiss national football team']],\n", " [[' Mexico national football team']],\n", " [[' Las Vegas Aces']],\n", " [[' Norwich City F.C.']],\n", " [[' Santa Cruz Futebol Clube']],\n", " [[' Ceratizit–WNT Pro Cycling']],\n", " [[' Liverpool F.C.']],\n", " [[' TotalEnergies']],\n", " [[' Oeste Futebol Clube']],\n", " [[\" United States men's national soccer team\"]],\n", " [[' S.S.C. Napoli']],\n", " [[' Norway national association football team']],\n", " [[' FC Krasnodar']],\n", " [[' Legia Warsaw']],\n", " [[' Brazil national football team']],\n", " [[' North Macedonia national football team']],\n", " [[' Zhejiang Professional F.C.']],\n", " [[' Balıkesirspor']],\n", " [[' Talaba SC']],\n", " [[' Ghana national football team']],\n", " [[' Kayserispor']],\n", " [[' Arsenal F.C.']],\n", " [[' FC Ingolstadt 04']],\n", " [[' Sweden national association football team']],\n", " [[' Helsingin Jalkapalloklubi']],\n", " [[' Sydney FC']],\n", " [[' Philippines national football team']],\n", " [[' Olympiacos F.C.']],\n", " [[' Chelsea F.C. Women']],\n", " [[' S.S.C. Napoli']],\n", " [[' Al-Faisaly FC']],\n", " [[' Cruz Azul']],\n", " [[' FC Lokomotiv Moscow']],\n", " [[' Arsenal W.F.C.']],\n", " [[' Iran national football team']],\n", " [[' Orlando Pride']],\n", " [[' Porsche']],\n", " [[' Denmark national association football team']],\n", " [[' Club Social y Deportivo Colo Colo']],\n", " [[' England national association football team']],\n", " [[' South Korea national football team']],\n", " [[' SC East Bengal']],\n", " [[' Brest Bretagne Handball']],\n", " [[' AG2R Citroën Team']],\n", " [[' Swiss national football team']],\n", " [[' Chelsea F.C. Women']],\n", " [[' Dallas Mavericks']],\n", " [[' France national association football team']],\n", " [[' UnitedHealthcare']],\n", " [[' Spain national association football team']],\n", " [[' Linköpings FC']],\n", " [[' Nigeria national football team']],\n", " [[' Liverpool F.C.']],\n", " [[' Team BikeExchange Jayco']],\n", " [[' France national association football team']],\n", " [[' São Tomé and Príncipe national football team']],\n", " [[' Portugal national association football team']],\n", " [[' Australia national association football team']],\n", " [[' Portimonense S.C.']],\n", " [[' Denmark national association football team']],\n", " [[' Belgium national football team']],\n", " [[\" Hapoel Be'er Sheva F.C.\"]],\n", " [[\" Japan women's national football team\"]],\n", " [[\" Canada women's national soccer team\"]],\n", " [[' OL Reign']],\n", " [[' Denmark national association football team']],\n", " [[' Germany national association football team']],\n", " [[' Brazil national football team']],\n", " [[' Montpellier Hérault Sport Club']],\n", " [[' Atlético Madrid']],\n", " [[' Norway national association football team']],\n", " [[' Hellas Verona F.C.']],\n", " [[' FC Shakhtar Donetsk']],\n", " [[' Celtic F.C.']],\n", " [[' Olympique Lyonnais']],\n", " [[' FC Lausanne-Sport']],\n", " [[' Club Social y Deportivo Colo Colo']],\n", " [[' Coquimbo Unido']],\n", " [[' Unión Magdalena']],\n", " [[' Anorthosis Famagusta FC']],\n", " [[' K. Patro Eisden Maasmechelen']],\n", " [[' Al Ittihad FC']],\n", " [[' GNK Dinamo Zagreb']],\n", " [[' Cagliari Calcio']],\n", " [[' FC Pune City']],\n", " [[' Atlas F.C.']],\n", " [[' Australia national association football team']],\n", " [[' Morocco national football team']],\n", " [[' Morocco national football team']],\n", " [[' Arsenal W.F.C.']],\n", " [[' FC Barcelona']],\n", " [[' San Martín de Tucumán']],\n", " [[' Senegal national association football team']],\n", " [[' Germany national association football team']],\n", " [[' FC Kaisar']],\n", " [[' Portugal national association football team']],\n", " [[' NorthEast United FC']],\n", " [[' AFC Ajax Vrouwen']],\n", " [[' 1. FC Union Berlin']],\n", " [[' Belgium national football team']],\n", " [[' Stoke City F.C.']],\n", " [[' FC Twente']],\n", " [[' Finland national football team']],\n", " [[' Cameroon national football team']],\n", " [[' ŠK Slovan Bratislava']],\n", " [[' Orléans Loiret Basket']],\n", " [[' Algeria national football team']],\n", " [[' Alpecin–Fenix']],\n", " [[' Charlton Athletic F.C.']],\n", " [[' Poland national association football team']],\n", " [[' Brazil national football team']],\n", " [[' Spain national association football team']],\n", " [[' Olympique Lyonnais']],\n", " [[' Al Jazira Club']],\n", " [[' FC Barcelona']],\n", " [[' Aston Villa F.C.']],\n", " [[' Mexico national football team']],\n", " [[' Romania national association football team']],\n", " [[\" Australia women's national soccer team\"]],\n", " [[' Real Madrid Baloncesto']],\n", " [[' EF Education-Nippo']],\n", " [[' FC Ingolstadt 04']],\n", " [[' Club Atlético Osasuna']],\n", " [[' Philadelphia Union']],\n", " [[' Real Valladolid']],\n", " [[' Movistar Team']],\n", " [[' FK Vardar']],\n", " [[' Deportivo Saprissa']],\n", " [[' New England Revolution']],\n", " [[' UD Vilafranquense']],\n", " [[' Associação Ferroviária de Esportes']],\n", " [[' D.C. United']],\n", " [[' FC Sion']],\n", " [[' Brazil national football team']],\n", " [[' FC Dinamo Moscow']],\n", " [[' KK Crvena Zvezda']],\n", " [[' Germany national association football team']],\n", " [[' Uruguay national football team']],\n", " [[' Crystal Palace F.C.']],\n", " [[' PSV Eindhoven']],\n", " [[' Croatia national association football team']],\n", " [[' Parma Calcio 1913']],\n", " [[' Cairns Taipans']],\n", " [[' Paris FC']],\n", " [[' Spain national association football team']],\n", " [[' Voltigeurs de Châteaubriant']],\n", " [[' TSG 1899 Hoffenheim']],\n", " [[' Algeria national football team']],\n", " [[' North Carolina FC']],\n", " [[' Russia national football team']],\n", " [[' Real Madrid CF']],\n", " [[' Los Angeles FC']],\n", " [[' A.E.K. Athens F.C.']],\n", " [[' Club Tijuana']],\n", " [[' Ottawa Fury FC']],\n", " [[' Kazakhstan national football team']],\n", " [[' FC Rostov']],\n", " [[' Germany national association football team']],\n", " [[' South Korea national football team']],\n", " [[' Turkey national association football team']],\n", " [[' PFC CSKA Moscow']],\n", " [[' Villarreal CF']],\n", " [[' FC Anzhi Makhachkala']],\n", " [[' Real Madrid Castilla']],\n", " [[' South Korea national football team']],\n", " [[' CF Pachuca']],\n", " [[' Örebro SK']],\n", " [[' Venezuela national football team']],\n", " [[' FC Lokomotiv Moscow']],\n", " [[' Republic of Ireland national association football team']],\n", " [[' Vicenza Calcio']],\n", " [[' FK Budućnost Podgorica']],\n", " [[' Pafos FC']],\n", " [[\" United States women's national soccer team\"]],\n", " [[' Iceland national association football team']],\n", " [[' Norway national association football team']],\n", " [[' CF Montréal']],\n", " [[' Sunderland A.F.C.']],\n", " [[' New Zealand national football team']],\n", " [[' Fenerbahçe SK']],\n", " [[' Olympique Lyonnais Féminin']],\n", " [[' Urawa Red Diamonds']],\n", " [[' Rayo Vallecano']],\n", " [[' Scotland national football team']],\n", " [[' Clube Atlético Taboão da Serra']],\n", " [[' Golden State Warriors']],\n", " [[' LKS Nieciecza']],\n", " [[' McLaren']],\n", " [[\" Brazil women's national football team\"]],\n", " [[' Valencia CF']],\n", " [[' West Ham United F.C.']],\n", " [[' Trabzonspor']],\n", " [[' 1. FC Union Berlin']],\n", " [[' Paris Saint-Germain F.C.']],\n", " [[' Liaoning Whowin F.C.']],\n", " [[' Mali national football team']],\n", " [[' Enosis Neon Paralimni FC']],\n", " [[' Costa Rica national football team']],\n", " [[' Trek–Segafredo']],\n", " [[' Villarreal CF']],\n", " [[' Washington Spirit']],\n", " [[' Liverpool F.C.']],\n", " [[' Senegal national association football team']],\n", " [[' Crystal Palace F.C.']],\n", " [[' KAA Gent']],\n", " [[' Gimnàstic de Tarragona']],\n", " [[' CF Montréal']],\n", " [[' Auckland City FC']],\n", " [[' Algeria national football team']],\n", " [[' Spain national association football team']],\n", " [[' France national association football team']],\n", " [[' Manchester United F.C.']],\n", " [[' Santos FC']],\n", " [[' Al-Shahaniya Sports Club']],\n", " [[' Chelsea F.C.']],\n", " [[' Toronto Blue Jays']],\n", " [[' Ventforet Kofu']],\n", " [[' Southampton F.C.']],\n", " [[' JLT Condor']],\n", " [[' VfB Stuttgart']],\n", " [[' Kayserispor']],\n", " [[' Goa ISL team']],\n", " [[' Netherlands national association football team']],\n", " [[' Argentinos Juniors']],\n", " [[' Lille OSC']],\n", " [[' SGS Essen']],\n", " [[' Sweden national association football team']],\n", " [[' Olympique Lyonnais']],\n", " [[' Costa Rica national football team']],\n", " [[' Jamaica national association football team']],\n", " [[' Crystal Palace F.C.']],\n", " [[' Olympique Lyonnais Féminin']],\n", " [[' A.E.K. Athens F.C.']],\n", " [[' UAE Team Emirates']],\n", " [[' New York Red Bulls']],\n", " [[' Algeria national football team']],\n", " [[' A.S. Roma']],\n", " [[' FK Shkëndija']],\n", " [[' Villarreal CF']],\n", " [[' FC Bayern Munich Women']],\n", " [[' FC Augsburg']],\n", " [[' São Paulo FC']],\n", " [[' CJM Bourges Basket']],\n", " [[' Fenerbahçe SK']],\n", " [[' Turkey national association football team']],\n", " [[' Brazil national football team']],\n", " [[' Turkey national association football team']],\n", " [[' Team BikeExchange Jayco']],\n", " [[' Lille OSC']],\n", " [[' Dallas Mavericks']],\n", " [[' Spain national association football team']],\n", " [[\" Norway women's national handball team\"]],\n", " [[' PK-35 Vantaa']],\n", " [[' Manchester City F.C.']],\n", " [[' Republic of Ireland national association football team']],\n", " [[' Philadelphia 76ers']],\n", " [[' América Futebol Clube (MG)']],\n", " [[' St. Louis Cardinals']],\n", " [[' Baltimore Orioles']],\n", " [[' Russia national football team']],\n", " [[' Dallas Mavericks']],\n", " [[' Juventud de Las Piedras']],\n", " [[' Orlando Pride']],\n", " [[' FC Dinamo Moscow']],\n", " [[' Genoa CFC']],\n", " [[' FC Basel']],\n", " [[\" Monts d'Or Azergues Foot\"]],\n", " [[' Maccabi Haifa F.C.']],\n", " [[' France national association football team']],\n", " [[' Anorthosis Famagusta FC']],\n", " [[' Trek–Segafredo']],\n", " [[' Unión Deportiva Almería']],\n", " [[' Beijing Guoan F.C.']],\n", " [[' Philadelphia 76ers']],\n", " [[' Legia Warsaw']],\n", " [[' Wealdstone F.C.']],\n", " [[' NorthEast United FC']],\n", " [[' PAS Giannina F.C.']],\n", " [[' New Zealand national football team']],\n", " [[' S.C. Braga']],\n", " [[' Sweden national association football team']],\n", " [[' Águilas CF']],\n", " [[' Atlético Madrid']],\n", " [[' K.S.C. Lokeren Oost-Vlaanderen']],\n", " [[' Burgos CF']],\n", " [[\" United States men's national soccer team\"]],\n", " [[' Scotland national football team']],\n", " [[' Portugal national association football team']],\n", " [[' Club Atlético Colón']],\n", " [[' Slovenia national football team']],\n", " [[' Middlesbrough F.C.']],\n", " [[' Olympique de Marseille']],\n", " [[' Maccabi Netanya F.C.']],\n", " [[' S.S.C. Napoli']],\n", " [[' S.L. Benfica']],\n", " [[' AS Saint-Étienne']],\n", " [[' Gabon national football team']],\n", " [[' FK Kauno Žalgiris']],\n", " [[' Stade Rennais F.C.']],\n", " [[' Stade Rennais F.C.']],\n", " [[' Club Africain']],\n", " [[' South Korea national football team']],\n", " [[' Hamburger SV']],\n", " [[' Guizhou F.C.']],\n", " [[' FC Slovan Liberec']],\n", " [[' Peru national football team']],\n", " [[' Ukraine national association football team']],\n", " [[' Argentina national football team']],\n", " [[' FBC Melgar']],\n", " [[' Maccabi Haifa F.C.']],\n", " [[' Al-Faisaly SC']],\n", " [[' Speranța Nisporeni']],\n", " [[' Los Angeles Lakers']],\n", " [[' Fulham F.C.']],\n", " [[' EF Education-Nippo']],\n", " [[' FC Rukh Lviv']],\n", " [[' Western New York Flash']],\n", " [[' Bahrain Victorious']],\n", " [[' FK Qarabagh']],\n", " [[' Belgium national football team']],\n", " [[' SD Worx']],\n", " [[' Germany national association football team']],\n", " [[' Team DSM']],\n", " [[' FC Augsburg']],\n", " [[' Clube de Regatas do Flamengo']],\n", " [[' Kardemir Karabükspor']],\n", " [[\" France women's national handball team\"]],\n", " [[' UAE Team Emirates']],\n", " [[' West Ham United F.C.']],\n", " [[' Stade Rennais F.C.']],\n", " [[' Liverpool F.C.']],\n", " [[' Algeria national football team']],\n", " [[\" Canada men's national soccer team\"]],\n", " [[' Montpellier Hérault Sport Club']],\n", " [[' FC Pune City']],\n", " [[' Red Star F.C.']],\n", " [[' Al-Gharafa Sports Club']],\n", " [[' SC East Bengal']],\n", " [[\" United States men's national soccer team\"]],\n", " [[' Chelsea F.C.']],\n", " [[' Algeria national football team']],\n", " [[' Australia national association football team']],\n", " [[' Virtus Pallacanestro Bologna']],\n", " [[' Arsenal F.C.']],\n", " [[' Seattle Sounders FC']],\n", " [[' Nigeria national football team']],\n", " [[' Trek–Segafredo']],\n", " [[' Bosnia and Herzegovina national football team']],\n", " [[' Portugal national association football team']],\n", " [[' Germany national association football team']],\n", " [[' Southampton F.C.']],\n", " [[' Deportivo Saprissa']],\n", " [[' Saba Qom F.C.']],\n", " [[' Club Atlético Osasuna']],\n", " [[' Arsenal F.C.']],\n", " [[' Spain national association football team']],\n", " [[' Liverpool F.C.']],\n", " [[' FC Krasnodar']],\n", " [[' Club Atlético Platense']],\n", " [[' Everton F.C.']],\n", " [[' Buriram United F.C.']],\n", " [[' Villarreal CF']],\n", " [[' Real Betis Balompié']],\n", " [[' Chelsea F.C.']],\n", " [[' Malmö FF']],\n", " [[' Bosnia and Herzegovina national football team']],\n", " [[' Independiente Santa Fe']],\n", " [[' West Bromwich Albion F.C.']],\n", " [[' Preston North End F.C.']],\n", " [[' England national association football team']],\n", " [[' Swiss national football team']],\n", " [[' FC Zenit Saint Petersburg']],\n", " [[' Spain national association football team']],\n", " [[' Jiangsu F.C.']],\n", " [[' Ineos Grenadiers']],\n", " [[' Olympique Lyonnais Féminin']],\n", " [[' FK AS Trenčín']],\n", " [[' Togo national football team']],\n", " [[' Al-Hilal SFC']],\n", " [[' Groupama-FDJ']],\n", " [[' Speranza Osaka-Takatsuki']],\n", " [[' ASVEL Basket']],\n", " [[' Palermo FC']],\n", " [[' Czech Republic national association football team']],\n", " [[\" United States men's national soccer team\"]],\n", " [[' Santos F.C.']],\n", " [[' South Korea national football team']],\n", " [[' Stoke City F.C.']],\n", " [[' Italy national association football team']],\n", " [[' FC Zenit Saint Petersburg']],\n", " [[' FC Viktoria Köln']],\n", " [[' MSV Duisburg']],\n", " [[' Portugal national association football team']],\n", " [[' Hellas Verona F.C.']],\n", " [[' Brazil national football team']],\n", " [[\" Hapoel Be'er Sheva F.C.\"]],\n", " [[' Al Nasr SC']],\n", " [[' Hull City A.F.C.']],\n", " [[' Thimpu FC']],\n", " [[' Panathinaikos F.C.']],\n", " [[' Feyenoord']],\n", " [[' Cerro Porteño']],\n", " [[' Brazil national football team']],\n", " [[' Olimpia Milano']],\n", " [[' Arsenal W.F.C.']],\n", " [[' Swiss national football team']],\n", " [[' Liv Racing']],\n", " [[' England national association football team']],\n", " [[' Everton F.C.']],\n", " [[' Congo national football team']],\n", " [[' Red Bull Racing']],\n", " [[' Algeria national football team']],\n", " [[\" Australia women's national soccer team\"]],\n", " [[' Egypt national football team']],\n", " [[' Croatia national association football team']],\n", " [[' Rangers F.C.']],\n", " [[' Atromitos F.C.']],\n", " [[' Club Athletico Paranaense']],\n", " [[' RCD Espanyol de Barcelona']],\n", " [[' Senegal national association football team']],\n", " [[' Melbourne Renegades']],\n", " ...],\n", " 'labels_ids': [[[315, 532, 390, 18, 632, 4191, 165]],\n", " [[5429, 4612]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[1287, 1422, 6772]],\n", " [[14365, 139, 337, 12, 16764, 6486, 1794, 1885]],\n", " [[83, 4, 347, 4, 7338]],\n", " [[2910, 632, 1037, 165]],\n", " [[4619, 26769, 4843, 242, 2005, 6945]],\n", " [[19763, 16872]],\n", " [[2809, 604, 18, 632, 2613, 165]],\n", " [[580, 3600, 315, 274, 4, 347, 4]],\n", " [[5429, 10402, 10489]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[188, 469, 412, 5429]],\n", " [[6314, 16421]],\n", " [[7016]],\n", " [[208, 4214, 23087, 7065, 3427, 242, 2893, 13345]],\n", " [[1429, 2337, 968, 165]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[5429, 4612]],\n", " [[7224, 597, 19643, 1688, 3999, 1243]],\n", " [[525, 700, 20852, 12221, 274, 4, 347, 4]],\n", " [[96, 242, 366, 13519, 625, 4733]],\n", " [[163, 1535, 14555, 2912, 438, 1020]],\n", " [[5429, 4612, 274, 15035, 1977]],\n", " [[5429, 10402, 10489]],\n", " [[315, 532, 390, 18, 632, 4191, 165]],\n", " [[91, 1610, 118, 274, 4, 347, 4]],\n", " [[13800, 41269, 31221]],\n", " [[8700, 632, 1037, 165]],\n", " [[19763, 16872]],\n", " [[2009, 29018, 10221, 2684, 4119, 6303, 271, 1168]],\n", " [[11917, 3631, 3108, 139]],\n", " [[10585, 73, 9873, 35733, 5429]],\n", " [[5429, 4168, 3314, 11489, 2586]],\n", " [[2930, 32109, 20434, 20071]],\n", " [[2201, 6130, 12, 534, 8362, 1851, 274, 4, 347, 4]],\n", " [[10035, 5317, 24058]],\n", " [[11211, 413, 274, 4, 347, 4]],\n", " [[13954, 2001, 14744, 274, 4, 500, 4]],\n", " [[5244, 632, 1037, 165]],\n", " [[17057, 8441]],\n", " [[2822, 3622, 12612]],\n", " [[468, 506, 387, 312, 9259, 22739]],\n", " [[208, 4214, 15333, 5429]],\n", " [[163, 14075, 6752, 10327]],\n", " [[83, 4, 347, 4, 7338]],\n", " [[5168, 5325]],\n", " [[10124, 10031, 6195, 102, 5235, 102, 208, 4, 530, 4]],\n", " [[4152, 274, 4, 347, 4]],\n", " [[6415, 1501, 9224, 38707]],\n", " [[2201, 6130, 12, 534, 8362, 1851, 274, 4, 347, 4]],\n", " [[3161, 14122, 1178]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[4236, 7487, 46770, 5597, 5235, 677, 5235, 14897, 853, 5429]],\n", " [[1568, 1833, 5429]],\n", " [[384, 10839, 642, 493, 5366, 2601]],\n", " [[5429, 10402, 10489]],\n", " [[1332, 242, 5413, 7222, 30089, 257, 5675, 2912, 438, 1020]],\n", " [[20351, 2383, 42775, 2001, 33293]],\n", " [[22705, 274, 4, 347, 4]],\n", " [[1568, 9926]],\n", " [[2499, 11476]],\n", " [[6015, 12696, 5429]],\n", " [[5168, 5325]],\n", " [[2812, 405, 15577, 274, 4, 347, 4]],\n", " [[4152, 274, 4, 347, 4]],\n", " [[5429, 10402, 10489]],\n", " [[5092, 632, 1037, 165]],\n", " [[1287, 1422, 6772]],\n", " [[29830, 18961]],\n", " [[6746, 13578, 7224]],\n", " [[226, 15089, 2383, 104, 6998, 337]],\n", " [[2201, 6130, 12, 534, 8362, 1851, 274, 4, 347, 4]],\n", " [[3417, 5809]],\n", " [[221, 15277, 2912, 438, 1020, 38220]],\n", " [[663, 11758]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[5028, 632, 1037, 165]],\n", " [[41135, 329, 859, 2379, 208, 4, 530, 4]],\n", " [[7556, 632, 5259, 1037, 165]],\n", " [[580, 3600, 315, 274, 4, 347, 4]],\n", " [[2177, 5429]],\n", " [[1287, 1422, 6772]],\n", " [[14585, 2550, 625, 6748, 2723, 7222, 289, 3663, 3245]],\n", " [[1429, 632, 1037, 165]],\n", " [[9793, 5928, 274, 4, 347, 4]],\n", " [[5787, 5991, 8025, 1899]],\n", " [[5429, 10402, 10489]],\n", " [[5926, 2032, 16248, 5429]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[208, 4214, 15333, 5429]],\n", " [[6331,\n", " 1975,\n", " 493,\n", " 3381,\n", " 4214,\n", " 20341,\n", " 1140,\n", " 119,\n", " 2426,\n", " 263,\n", " 944,\n", " 16231,\n", " 763,\n", " 126,\n", " 384,\n", " 4,\n", " 250,\n", " 4,\n", " 597,\n", " 4]],\n", " [[21774, 632, 1037, 165]],\n", " [[163, 4330, 12, 725, 1253, 15821, 700]],\n", " [[7505, 17458, 632, 1037, 165]],\n", " [[2822, 3622, 12612]],\n", " [[230, 1116, 22831]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[4998, 5547, 1452, 7150]],\n", " [[20351, 2383, 42775, 2001, 33293]],\n", " [[31162, 857, 632, 1037, 165]],\n", " [[4622, 139, 4954, 347]],\n", " [[2361, 315, 274, 4, 347, 4]],\n", " [[2009, 263, 274, 5874, 90, 18217, 3385, 1334, 5460]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[230, 3376, 2711]],\n", " [[12602, 6801, 5463, 1885, 90, 22783]],\n", " [[10506]],\n", " [[5429, 10402, 10489]],\n", " [[4213, 808, 8878, 12, 530, 21228]],\n", " [[3542, 1469, 6377, 274, 4, 347, 4]],\n", " [[6314, 16421]],\n", " [[2741, 1906, 6971, 10482]],\n", " [[8683, 390, 18, 632, 1037, 165]],\n", " [[9035, 412, 274, 4, 347, 4]],\n", " [[17112, 3061, 12, 487, 5600, 139]],\n", " [[83, 4575, 3194, 29, 274, 530]],\n", " [[5926, 2032, 16248, 5429]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[2822, 3622, 12612]],\n", " [[4537, 415, 31126, 857, 208, 4, 530, 4]],\n", " [[8937, 1113, 1209, 11868, 1343, 22398, 2711]],\n", " [[726, 7746, 3572, 2030, 5429]],\n", " [[2393, 873, 329, 1790, 12150]],\n", " [[7137, 2848, 274, 4, 347, 4]],\n", " [[2822, 3622, 4317, 261, 35678, 139]],\n", " [[20351, 2383, 42775, 2001, 33293]],\n", " [[14585, 2550, 1829, 7065, 3427, 7222, 4677, 1794, 853, 281]],\n", " [[96, 242, 366, 13519, 625, 4733]],\n", " [[5429, 5981, 1977, 330, 21932, 6472, 102]],\n", " [[15338, 412, 83, 4, 597, 4, 347, 4]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[2893, 13345, 263, 6304, 415, 281, 109, 37313, 3314, 139]],\n", " [[5429, 37960, 163, 7110]],\n", " [[12723, 12130, 1178]],\n", " [[2910, 632, 1037, 165]],\n", " [[1775, 438, 10810, 4936, 15247, 274, 4, 347, 4]],\n", " [[2201, 6130, 12, 534, 8362, 1851, 274, 4, 347, 4]],\n", " [[1287, 1422, 12190]],\n", " [[2201, 6130, 12, 534, 8362, 1851, 274, 1140, 4691, 833]],\n", " [[14993, 9504, 366, 274, 4, 347, 4]],\n", " [[3870, 7338]],\n", " [[2499, 18946]],\n", " [[274, 4, 347, 4, 2848, 139]],\n", " [[2910, 632, 1037, 165]],\n", " [[18490, 632, 5259, 1037, 165]],\n", " [[1568, 1211, 7144]],\n", " [[2822, 3622, 12612]],\n", " [[25297, 5512, 8441]],\n", " [[15607, 412, 274, 4, 347, 4]],\n", " [[2822, 17122, 6643, 2478]],\n", " [[29018, 10221, 2684, 3622]],\n", " [[14993, 5150, 263, 23294, 4061]],\n", " [[384, 4, 597, 4, 530, 4, 1456, 2154, 7822]],\n", " [[7320, 632, 1037, 165]],\n", " [[248, 4, 104, 4, 347, 4, 83, 10330, 459, 8797]],\n", " [[221, 4438, 274, 4, 347, 4]],\n", " [[7224, 597, 19643, 1688, 3999, 1243]],\n", " [[34138, 30422, 330, 274, 1242, 3512]],\n", " [[2711, 23070, 9089, 14035]],\n", " [[13943, 1001, 2848, 242, 14182]],\n", " [[15809, 1942, 315, 274, 4, 347, 4]],\n", " [[3303, 12179, 967, 366, 40431, 281, 274, 4, 347, 4]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[27268, 9228, 274, 4, 347, 4]],\n", " [[22753, 21386, 3624, 163, 5593, 225]],\n", " [[5854, 412, 4998]],\n", " [[5429, 4612]],\n", " [[5429, 4168, 3314, 11489, 2586]],\n", " [[10600, 412, 274, 4, 347, 4]],\n", " [[6171, 390, 18, 632, 5259, 1037, 165]],\n", " [[4152, 274, 4, 347, 4]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[2711, 344, 20031, 12, 846, 40837]],\n", " [[13943, 415, 1210, 405, 2383, 771, 16966, 1698, 28544]],\n", " [[11998, 28659, 163, 530]],\n", " [[26455, 330, 23759, 9051, 625, 4104, 37151, 11104]],\n", " [[4556, 26488, 8647, 293, 5429]],\n", " [[12932, 534, 43130, 22590, 225, 10436]],\n", " [[3870, 7338]],\n", " [[4537, 415, 31126, 857, 208, 4, 530, 4]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[2711, 344, 20031, 12, 846, 40837]],\n", " [[2711, 43657]],\n", " [[10585, 73, 9873, 35733, 5429]],\n", " [[10157, 3830, 271, 5429, 305, 12, 17608]],\n", " [[2822, 6525, 354, 4317, 7474, 118, 1140]],\n", " [[663, 41375, 2857]],\n", " [[14993, 5150, 10888, 19864, 354, 274, 1140, 4691, 179]],\n", " [[226, 15089, 2383, 104, 6998, 337]],\n", " [[5524, 15933]],\n", " [[31853, 2678, 2583, 5429]],\n", " [[2361, 412, 274, 4, 347, 4]],\n", " [[7943, 17280, 13039]],\n", " [[4868, 846, 381, 2028, 5410, 2987]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[6415, 1501, 18794]],\n", " [[16518, 12470, 274, 4, 347, 4]],\n", " [[7943, 17280, 13039]],\n", " [[41135, 329, 859, 2379, 208, 4, 530, 4]],\n", " [[163, 1543, 219, 281, 4998]],\n", " [[2822, 3622, 12612]],\n", " [[2361, 315, 274, 4, 347, 4]],\n", " [[29018, 10221, 2684, 3622]],\n", " [[7320, 632, 1037, 165]],\n", " [[8683, 632, 5259, 1037, 165]],\n", " [[2009, 384, 10839, 642, 493]],\n", " [[5429, 4612]],\n", " [[315, 532, 604, 18, 632, 4191, 165]],\n", " [[2822, 3622, 12612]],\n", " [[208, 35423, 27, 428, 3760, 274, 530]],\n", " [[7137, 12242, 15363, 274, 4, 347, 4]],\n", " [[1775, 438, 10810, 5477, 19067, 163, 4, 347, 4]],\n", " [[22753, 21386, 3624, 163, 5593, 225]],\n", " [[7570, 20302, 7748, 274, 4, 347, 4]],\n", " [[9692, 274, 4, 347, 4]],\n", " [[7320, 632, 1037, 165]],\n", " [[4152, 274, 4, 347, 4]],\n", " [[6748, 2723, 9697, 263, 1587, 2812, 257, 14379]],\n", " [[2177, 13114]],\n", " [[36858, 25278, 22753]],\n", " [[7320, 632, 1037, 165]],\n", " [[5429, 35068, 4122, 257]],\n", " [[256, 1526, 462, 6080, 12612]],\n", " [[208, 4, 104, 4, 347, 4, 7645, 6483]],\n", " [[1870, 2776, 12, 10926, 5857]],\n", " [[764, 4578, 7963]],\n", " [[2201, 6130, 12, 534, 8362, 1851, 274, 4, 347, 4]],\n", " [[188, 469, 11836]],\n", " [[3161, 20165]],\n", " [[274, 4, 347, 4, 22843]],\n", " [[2009, 29018, 10221, 2684, 1995, 19201]],\n", " [[2361, 412, 274, 4, 347, 4]],\n", " [[5926, 2032, 16248, 5429]],\n", " [[5429, 10402, 10489]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[2009, 29018, 10221, 2684, 4119, 6303, 271, 1168]],\n", " [[211, 21999, 12221, 274, 4, 347, 4]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[18490, 632, 5259, 1037, 165]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[226, 15089, 2383, 104, 6998, 337]],\n", " [[83, 4, 347, 4, 7338]],\n", " [[112, 4, 5429, 1332, 5459]],\n", " [[10060, 632, 5259, 1037, 165]],\n", " [[274, 5777, 28185, 3381, 242, 14795]],\n", " [[4537, 415, 31126, 857, 208, 4, 530, 4]],\n", " [[3317, 315, 5429]],\n", " [[15338, 412, 83, 4, 597, 4, 347, 4]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[14781, 632, 1037, 165]],\n", " [[4152, 274, 4, 347, 4]],\n", " [[5429, 4168, 3314, 11489, 2586]],\n", " [[4537, 415, 31126, 857, 208, 4, 530, 4]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[13733, 632, 1037, 165]],\n", " [[5438, 763, 2860, 4365, 274, 4, 347, 4]],\n", " [[580, 14312, 11645, 19032, 274, 4, 347, 4]],\n", " [[7556, 632, 5259, 1037, 165]],\n", " [[10994, 11536, 632, 1037, 165]],\n", " [[2910, 632, 1037, 165]],\n", " [[5429, 9176]],\n", " [[5429, 10402, 10489]],\n", " [[9601, 24857]],\n", " [[188, 3324, 632, 8808, 2918, 165]],\n", " [[315, 532, 390, 18, 632, 4191, 165]],\n", " [[3870, 7338]],\n", " [[12919, 274, 4, 347, 4]],\n", " [[7137, 2848, 274, 4, 347, 4]],\n", " [[15206, 4699, 5429]],\n", " [[13733, 632, 1037, 165]],\n", " [[6171, 632, 5259, 1037, 165]],\n", " [[1405, 12037, 163, 3632]],\n", " [[2361, 412, 305, 4, 597, 4, 347, 4]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[9688, 104, 6579, 18995]],\n", " [[163, 1543, 219, 281, 4998]],\n", " [[112, 4, 274, 5268, 14184]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[580, 3600, 315, 274, 4, 347, 4]],\n", " [[5429, 229, 8428]],\n", " [[305, 5416, 926, 7210, 102, 4998]],\n", " [[726, 12, 495, 2957, 3760, 4998]],\n", " [[208, 4, 347, 4, 2265, 6080]],\n", " [[7224, 597, 19643, 1688, 3999, 1243]],\n", " [[2822, 6525, 354, 4317, 7474, 118, 1140]],\n", " [[10157, 3830, 271, 5429]],\n", " [[274, 5777, 28185, 3381, 242, 14795]],\n", " [[7248, 219, 8441]],\n", " [[1870, 2776, 12, 10926, 5857]],\n", " [[19365, 1140, 102, 2383, 104, 7042, 636]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[4380, 8271, 230, 5268]],\n", " [[5429, 4369, 329]],\n", " [[1287, 1422, 22320]],\n", " [[580, 3600, 315, 274, 4, 347, 4]],\n", " [[7296, 271, 8726, 12612]],\n", " [[12919, 274, 4, 347, 4]],\n", " [[2009, 24066, 8843, 263, 9614]],\n", " [[15206, 4699, 5429]],\n", " [[15206, 4699, 5429]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[3317, 10506]],\n", " [[384, 10839, 642, 493, 5366, 2601]],\n", " [[7556, 632, 5259, 1037, 165]],\n", " [[9614, 632, 1037, 165]],\n", " [[11437, 632, 5259, 1037, 165]],\n", " [[6015, 12696, 5429]],\n", " [[96, 242, 366, 13519, 625, 4733]],\n", " [[22569, 1535, 121, 1889, 574]],\n", " [[229, 597, 5725, 12, 530, 8015, 415, 2552, 26067]],\n", " [[2027, 188, 469, 15626]],\n", " [[7556, 632, 5259, 1037, 165]],\n", " [[14993, 5150, 3702, 1452, 293]],\n", " [[381, 2544, 338, 11629, 14184]],\n", " [[5703, 15908]],\n", " [[274, 5777, 28185, 3381, 242, 4011, 18, 12610]],\n", " [[2361, 412, 305, 4, 597, 4, 347, 4]],\n", " [[14585, 2550, 1829, 7065, 3427, 7222, 4677, 1794, 853, 281]],\n", " [[13633, 83, 4, 597, 4, 347, 4]],\n", " [[7320, 632, 1037, 165]],\n", " [[208, 4214, 15333, 5429]],\n", " [[274, 4, 347, 4, 6466, 32612]],\n", " [[9170, 2711, 8313]],\n", " [[1221, 1585, 324, 5363, 1745, 968, 165]],\n", " [[21105, 18604, 3910, 2009]],\n", " [[29018, 10221, 2684, 6843]],\n", " [[2910, 632, 1037, 165]],\n", " [[1568, 1211, 7144]],\n", " [[2009, 234, 1043, 6073, 263, 3910]],\n", " [[1625, 632, 1037, 165]],\n", " [[1209, 31002, 16146, 6331, 366]],\n", " [[17100, 1908, 9216, 20233, 16885, 274, 4, 347, 4]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[163, 8982, 2133, 274, 4, 347, 4, 41861]],\n", " [[382, 1793, 24227, 1253]],\n", " [[6748, 2723, 9697, 25452, 338, 12109]],\n", " [[2009, 29018, 10221, 2684, 901, 14190]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[14993, 9504, 366, 274, 4, 347, 4]],\n", " [[230, 4, 104, 4, 13142, 23065, 5739]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[14567, 12612]],\n", " [[7320, 632, 1037, 165]],\n", " [[229, 4113, 254, 354, 12150]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[9170, 2711, 8313]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[1209, 31002, 16146, 6331, 366]],\n", " [[10060, 632, 5259, 1037, 165]],\n", " [[5092, 632, 1037, 165]],\n", " [[5429, 4612, 163, 5269, 30919, 594]],\n", " [[6508, 632, 5259, 1037, 165]],\n", " [[14833, 274, 134, 2711]],\n", " [[7943, 17280, 13039]],\n", " [[2986, 9207]],\n", " [[91, 1610, 118, 274, 4, 347, 4]],\n", " [[9170, 2711, 4516, 1864]],\n", " [[7943, 17280, 13039]],\n", " [[2009, 29018, 10221, 2684, 255, 11186, 1535]],\n", " [[255, 5156, 261, 6130, 12, 347, 4503, 9676, 7406, 3512]],\n", " [[5926, 8393, 18191]],\n", " [[20351, 2383, 42775, 2001, 33293]],\n", " [[22256, 2565, 632, 1037, 165]],\n", " [[83, 4, 104, 4, 12218]],\n", " [[31853, 2678, 2583, 5429]],\n", " [[2393, 873, 329, 1790, 12150]],\n", " [[3417, 36802, 5429]],\n", " [[9170, 2711, 8313]],\n", " [[12132, 632, 1037, 165]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[1456, 5235, 967, 4349, 5235, 344, 4, 530, 4]],\n", " [[5092, 632, 1037, 165]],\n", " [[4290, 5429]],\n", " [[13876, 2158, 4712, 381, 4, 347, 4]],\n", " [[7960, 607, 274, 4, 347, 4]],\n", " [[230, 3376, 2711]],\n", " [[2009, 6748, 2723, 9697, 24066, 8843, 7641, 1479, 5895, 102]],\n", " [[9692, 274, 4, 347, 4]],\n", " [[221, 15277, 2912, 438, 1020, 38220]],\n", " [[580, 3600, 315, 274, 4, 347, 4]],\n", " [[274, 5777, 28185, 3381, 242, 14795]],\n", " [[3098, 274, 4, 347, 4, 2691]],\n", " [[1287, 1422, 6772]],\n", " [[272, 4, 104, 4, 38, 9418, 14496, 20, 7485, 30521, 8907]],\n", " [[10585, 73, 9873, 35733, 5429]],\n", " [[4307, 12599, 876, 2955, 272, 2583]],\n", " [[208, 4, 574, 4, 1664, 506, 2426]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[3870, 7338]],\n", " [[2910, 632, 1037, 165]],\n", " [[6171, 390, 18, 632, 5259, 1037, 165]],\n", " [[2711, 344, 20031, 12, 846, 40837]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[21105, 18604, 412, 274, 4, 347, 4]],\n", " [[468, 506, 574, 7602, 16408, 2691]],\n", " [[305, 2957, 260, 274, 4, 347, 4]],\n", " [[4380, 8271, 230, 5268]],\n", " [[2027, 188, 469, 15626]],\n", " [[36265, 22753]],\n", " [[230, 4, 495, 4, 2646, 23073, 1176, 1742]],\n", " [[91, 1610, 118, 274, 4, 347, 4]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[5429, 8937, 763, 12422, 7150, 9060]],\n", " [[22753, 21386, 3624, 163, 5593, 225]],\n", " [[1156, 632, 5259, 1037, 165]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[14667, 12, 387, 3006, 1180, 632, 1037, 165]],\n", " [[234, 4, 717, 4, 347, 4]],\n", " [[1625, 632, 1037, 165]],\n", " [[9096, 3497, 632, 4105, 4191, 165]],\n", " [[5429, 30377, 1496, 219, 229, 5079, 282, 2160, 2726, 330]],\n", " [[2822, 3622, 12612]],\n", " [[13287, 12, 25093, 7829, 40236, 2711]],\n", " [[7505, 17458, 632, 1037, 165]],\n", " [[896, 604, 18, 632, 4191, 165]],\n", " [[6508, 632, 5259, 1037, 165]],\n", " [[798, 632, 1037, 165]],\n", " [[9614, 632, 1037, 165]],\n", " [[2822, 3622, 12612]],\n", " [[2009, 16528, 952, 3602, 257]],\n", " [[18490, 632, 5259, 1037, 165]],\n", " [[83, 4, 347, 4, 7338]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[15897, 944, 1899, 281, 2344, 523, 1694, 3006, 19200]],\n", " [[208, 10595, 3109, 412, 274, 4, 347, 4]],\n", " [[2499, 11476]],\n", " [[2499, 11476]],\n", " [[13694, 25280, 7204, 1627]],\n", " [[229, 7025, 30492, 241, 7450, 211, 7389]],\n", " [[2711, 23070, 9089, 14035, 3309, 876]],\n", " [[24799, 632, 1037, 165]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[4622, 139, 3767, 459, 38754]],\n", " [[4516, 673, 6743, 4936, 1073]],\n", " [[274, 530, 6015, 255, 2558, 4955, 17010]],\n", " [[163, 4330, 12, 725, 1253, 15821, 700]],\n", " [[2822, 14585, 2550, 625]],\n", " [[3702, 7776, 281, 12150]],\n", " [[5168, 5325]],\n", " [[381, 4, 347, 4, 24589, 1479, 6374]],\n", " [[7224, 30140, 102, 25204]],\n", " [[2009, 29018, 10221, 2684, 1995, 19201]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[8937, 1113, 1209, 11868, 1343, 22398, 2711]],\n", " [[2201, 6130, 12, 534, 8362, 1851, 274, 4, 347, 4]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[2361, 412, 274, 4, 347, 4]],\n", " [[2711, 344, 20031, 12, 846, 40837]],\n", " [[5429, 10402, 10489]],\n", " [[13287, 12, 25093, 7829, 40236, 2711]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[10500, 2383, 17973, 2620]],\n", " [[3317, 10506]],\n", " [[1775, 438, 10810, 4936, 15247, 274, 4, 347, 4]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[11666, 274, 4, 347, 4]],\n", " [[208, 4, 347, 4, 23094, 1043, 6073]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[5092, 632, 1037, 165]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[112, 4, 5429, 234, 5172, 282, 2865]],\n", " [[2910, 632, 1037, 165]],\n", " [[5429, 2049, 16408]],\n", " [[2361, 412, 274, 4, 347, 4]],\n", " [[315, 532, 390, 18, 632, 4191, 165]],\n", " [[7570, 20302, 7748, 274, 4, 347, 4]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[7960, 607, 274, 4, 347, 4]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[5819, 12770]],\n", " [[5703, 15908]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[7137, 12242, 15363, 274, 4, 347, 4]],\n", " [[21780, 12527, 493, 234, 293, 255, 329, 26051, 274, 4, 347, 4]],\n", " [[1608, 179, 1561, 267, 18057, 344, 9707, 1115, 1250, 21783, 5410]],\n", " [[14993, 5150, 10888, 19864, 354]],\n", " [[5854, 13170]],\n", " [[9245, 315, 274, 4, 347, 4]],\n", " [[5429, 208, 1499]],\n", " [[5854, 412, 4998]],\n", " [[208, 4214, 15333, 5429]],\n", " [[230, 4, 250, 4, 468, 1140, 23250, 208, 2726, 1399]],\n", " [[112, 4, 21218, 846, 4326, 329, 15786]],\n", " [[25103, 710, 6909, 3830, 267, 366, 263, 3060, 1043, 2070, 329]],\n", " [[230, 4, 495, 4, 2646, 23073, 1176, 1742]],\n", " [[17822, 1097, 7488, 5429]],\n", " [[7413, 268, 4998, 673]],\n", " [[7556, 632, 5259, 1037, 165]],\n", " [[3098, 274, 4, 347, 4, 2691]],\n", " [[7224, 597, 19643, 1688, 3999, 1243]],\n", " [[17182, 5268, 163, 6457, 705, 468, 28814, 102]],\n", " [[21299, 2186, 274, 4, 347]],\n", " [[9035, 412, 274, 4, 347, 4]],\n", " [[5429, 13985, 405, 6130, 14330]],\n", " [[3417, 36802, 5429]],\n", " [[1625, 632, 1037, 165]],\n", " [[2499, 18946]],\n", " [[5429, 4612]],\n", " [[5729, 412, 5429]],\n", " [[24986, 6847, 20623, 261]],\n", " [[29018, 10221, 2684, 764, 6487, 3407, 14182, 12612]],\n", " [[2361, 315, 305, 4, 597, 4, 347, 4]],\n", " [[9601, 19119, 32482, 4989]],\n", " [[5244, 632, 1037, 165]],\n", " [[21774, 632, 1037, 165]],\n", " [[2000, 632, 1037, 165]],\n", " [[234, 2154, 11691, 5429]],\n", " [[1405, 12037, 163, 3632]],\n", " [[840, 463, 1657, 9002, 1173, 260, 274, 4, 347, 4]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[22256, 2565, 632, 1037, 165]],\n", " [[22378, 12, 18551, 139, 390, 18]],\n", " [[1568, 1211, 7144]],\n", " [[83, 4, 104, 4, 12218]],\n", " [[9176, 381, 12, 26902, 5429]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[5420, 15929]],\n", " [[4556, 26488, 8647, 293, 5429]],\n", " [[468, 506, 387, 312, 9259, 22739]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[2910, 632, 1037, 165]],\n", " [[12966, 6748, 2723, 7222, 726, 1176, 8129, 9401]],\n", " [[4152, 305, 4, 597, 4, 347, 4]],\n", " [[6171, 632, 5259, 1037, 165]],\n", " [[1625, 632, 1037, 165]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[9170, 2711, 8313]],\n", " [[5429, 24542, 298, 45739, 1879]],\n", " [[14993, 5150, 263, 23294, 4061]],\n", " [[391, 1101, 632, 1037, 165]],\n", " [[726, 7746, 3572, 4998]],\n", " [[7320, 632, 1037, 165]],\n", " [[1429, 632, 1037, 165]],\n", " [[2000, 632, 1037, 165]],\n", " [[17535, 5382, 975, 844, 181, 73, 428, 17411, 12, 17906]],\n", " [[14567, 12612]],\n", " [[14585, 2550, 1829, 7065, 3427, 7222, 4677, 1794, 853, 281]],\n", " [[15837, 5223, 23872, 352, 118, 6579, 625, 6417]],\n", " [[3417, 36802, 5429]],\n", " [[6748, 2723, 9697, 17686, 26802, 274, 4, 347, 4]],\n", " [[4868, 846, 381, 2028, 5410, 2987]],\n", " [[468, 506, 387, 312, 9259, 22739, 3082]],\n", " [[8937, 1113, 1209, 11868, 1343, 22398, 2711]],\n", " [[798, 632, 1037, 165]],\n", " [[44602, 154, 179, 344, 9707, 1115, 1250, 1638, 462, 36384]],\n", " [[9543, 11861, 90, 281]],\n", " [[83, 4, 104, 4, 12218]],\n", " [[4514, 9529]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[1600, 390, 18, 632, 1037, 165]],\n", " [[5429, 4612, 163, 5269, 30919, 594]],\n", " [[21774, 632, 1037, 165]],\n", " [[5716, 4597, 274, 4, 347, 4]],\n", " [[2361, 412, 274, 4, 347, 4]],\n", " [[5092, 632, 1037, 165]],\n", " [[1603, 632, 1037, 165]],\n", " [[2921, 18290]],\n", " [[163, 4668, 281, 12150]],\n", " [[381, 2544, 338, 11629, 14184]],\n", " [[2000, 632, 1037, 165]],\n", " [[7224, 597, 19643, 1688, 3999, 1243]],\n", " [[8983, 315, 274, 4, 347, 4]],\n", " [[15376, 493, 21115]],\n", " [[6037, 632, 1037, 165]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[2361, 412, 274, 4, 347, 4]],\n", " [[230, 4, 597, 4, 4838, 4231, 225, 21526]],\n", " [[1429, 632, 1037, 165]],\n", " [[1505, 1704, 3497, 632, 1037, 165]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[35906, 384, 10839, 642, 12733, 226, 267, 1792, 462, 267, 1113]],\n", " [[5092, 632, 1037, 165]],\n", " [[1625, 632, 1037, 165]],\n", " [[2588, 2461, 83, 4643]],\n", " [[18749, 412, 274, 4, 347, 4]],\n", " [[2005, 3590, 274, 4467, 18217, 2893, 13345]],\n", " [[13943, 415, 1210, 405, 2383, 771, 16966, 1698, 28544]],\n", " [[3426, 274, 4, 347, 4]],\n", " [[5480, 717, 27093, 918]],\n", " [[384, 13967, 274, 4467, 18217, 2893, 13345]],\n", " [[315, 532, 604, 18, 632, 4191, 165]],\n", " [[208, 4, 104, 4, 347, 4, 7645, 6483]],\n", " [[8683, 632, 5259, 1037, 165]],\n", " [[5429, 229, 5079, 282, 1630, 271]],\n", " [[15376, 493, 21115]],\n", " [[2910, 632, 1037, 165]],\n", " [[369, 21894, 632, 1037, 165]],\n", " [[525, 700, 20852, 12221, 274, 4, 347, 4]],\n", " [[4317, 10031, 7339, 21098, 12150]],\n", " [[7765, 6412, 4998]],\n", " [[5498, 632, 1037, 165]],\n", " [[229, 4113, 254, 354, 12150]],\n", " [[4152, 274, 4, 347, 4]],\n", " [[5429, 11996, 1168, 22487, 14722]],\n", " [[6171, 632, 5259, 1037, 165]],\n", " [[44602, 154, 179, 344, 9707, 1115, 1250, 1638, 462, 36384]],\n", " [[4290, 5429]],\n", " [[5639, 632, 1037, 165]],\n", " [[14993, 9504, 366, 274, 4, 347, 4]],\n", " [[3098, 274, 4, 347, 4, 2691]],\n", " [[208, 4, 104, 4, 347, 4, 7645, 6483]],\n", " [[726, 12, 597, 5655, 7776, 5429]],\n", " [[3590, 4947, 922]],\n", " [[5429, 13073, 1075, 1242, 1879, 3467]],\n", " [[4152, 305, 4, 597, 4, 347, 4]],\n", " [[1603, 632, 1037, 165]],\n", " [[5854, 13170]],\n", " [[15091]],\n", " [[10060, 632, 5259, 1037, 165]],\n", " [[2009, 3574, 1423, 6748, 2723, 9697, 22378, 22378]],\n", " [[1156, 632, 5259, 1037, 165]],\n", " [[391, 1101, 632, 1037, 165]],\n", " [[4998, 953, 7104]],\n", " [[163, 7110, 27547, 16784, 7406, 3512]],\n", " [[5680, 176, 500, 7801, 1001, 105, 282, 2711]],\n", " [[5092, 632, 1037, 165]],\n", " [[3098, 274, 4, 347, 4, 2691]],\n", " [[3160, 17492]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[315, 13716, 6350]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[4341, 3671, 642, 1033, 5429]],\n", " [[2000, 632, 1037, 165]],\n", " [[3426, 274, 4, 347, 4]],\n", " [[2711, 23070, 9089, 14035, 3309, 876]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[208, 4214, 1560, 1140, 8, 2869, 17010, 2520, 2379, 632, 1037, 165]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[1221, 632, 5259, 1037, 165]],\n", " [[2848, 26298, 9401, 208, 4, 347, 4]],\n", " [[10060, 632, 5259, 1037, 165]],\n", " [[7320, 632, 1037, 165]],\n", " [[289, 24812, 523, 1456, 108, 254, 264, 3952, 274, 4, 347, 4]],\n", " [[1429, 390, 18, 632, 1037, 165]],\n", " [[896, 390, 18, 632, 4191, 165]],\n", " [[19763, 16872]],\n", " [[10060, 632, 5259, 1037, 165]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[2910, 632, 1037, 165]],\n", " [[4436, 26827, 906, 289, 1140, 763, 6070, 5413, 2009]],\n", " [[29018, 10221, 2684, 3622]],\n", " [[8683, 632, 5259, 1037, 165]],\n", " [[11141, 281, 3060, 4488, 274, 4, 347, 4]],\n", " [[5429, 17326, 19654, 29712]],\n", " [[11955, 274, 4, 347, 4]],\n", " [[14993, 5150, 10888, 19864, 354]],\n", " [[5429, 1587, 687, 8799, 12, 19451]],\n", " [[2009, 3574, 1423, 6748, 2723, 9697, 22378, 22378]],\n", " [[944, 2253, 757, 3983, 1890, 6005]],\n", " [[22839, 2727, 3771, 20375, 4242]],\n", " [[660, 22494, 13310, 18440, 1073, 4193, 102, 5429]],\n", " [[229, 4, 3769, 1001, 381, 354, 3898, 3066, 16836, 3204, 4393, 225]],\n", " [[726, 85, 90, 19284, 5429]],\n", " [[31245, 530, 15757, 12705, 525, 1073, 16552]],\n", " [[230, 1073, 3572, 1512, 2912, 438, 1020]],\n", " [[5429, 221, 4438, 412]],\n", " [[22705, 274, 4, 347, 4]],\n", " [[1221, 632, 5259, 1037, 165]],\n", " [[13733, 632, 1037, 165]],\n", " [[13733, 632, 1037, 165]],\n", " [[4152, 305, 4, 597, 4, 347, 4]],\n", " [[5429, 4612]],\n", " [[764, 5465, 17010, 263, 33759, 783, 7499]],\n", " [[18490, 632, 5259, 1037, 165]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[5429, 7916, 354, 271]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[369, 17577, 315, 5429]],\n", " [[9601, 24857, 468, 8508, 11760]],\n", " [[112, 4, 5429, 1332, 5459]],\n", " [[7320, 632, 1037, 165]],\n", " [[15607, 412, 274, 4, 347, 4]],\n", " [[5429, 9922, 8530]],\n", " [[12587, 632, 1037, 165]],\n", " [[14781, 632, 1037, 165]],\n", " [[2742, 21402, 530, 4424, 22015, 2265, 415, 13714, 8604]],\n", " [[1793, 24227, 1253, 5463, 1885, 90, 163, 20997]],\n", " [[21774, 632, 1037, 165]],\n", " [[726, 2379, 28366, 2383, 597, 225, 3181]],\n", " [[15959, 1054, 8899, 274, 4, 347, 4]],\n", " [[6508, 632, 5259, 1037, 165]],\n", " [[2910, 632, 1037, 165]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[14993, 5150, 10888, 19864, 354]],\n", " [[726, 344, 1222, 3578, 2009]],\n", " [[5429, 4612]],\n", " [[16518, 12470, 274, 4, 347, 4]],\n", " [[1625, 632, 1037, 165]],\n", " [[12940, 632, 5259, 1037, 165]],\n", " [[1221, 390, 18, 632, 4191, 165]],\n", " [[2822, 3622, 4317, 261, 35678, 139]],\n", " [[17112, 3061, 12, 487, 5600, 139]],\n", " [[5429, 11996, 1168, 22487, 14722]],\n", " [[2009, 29018, 10221, 2684, 4838, 281, 4989]],\n", " [[3378, 1332]],\n", " [[2822, 25424, 625, 30912]],\n", " [[28147, 31732, 2711]],\n", " [[274, 530, 468, 1120, 271]],\n", " [[6748, 2723, 9697, 25452, 338, 12109]],\n", " [[188, 1156, 13340]],\n", " [[33846, 22153, 2001, 3917, 2253, 9401]],\n", " [[6331,\n", " 1975,\n", " 493,\n", " 3381,\n", " 4214,\n", " 6838,\n", " 1001,\n", " 6873,\n", " 1526,\n", " 6374,\n", " 263,\n", " 7065,\n", " 3427,\n", " 293]],\n", " [[211, 4, 347, 4, 315]],\n", " [[5429, 208, 1499]],\n", " [[2910, 632, 1037, 165]],\n", " [[5429, 15757, 12705, 3467]],\n", " [[229, 530, 5309, 2987, 102, 525, 20782, 6106]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[17609, 632, 1037, 165]],\n", " [[9793, 5928, 274, 4, 347, 4]],\n", " [[4868, 846, 381, 2028, 5410, 2987]],\n", " [[11437, 632, 5259, 1037, 165]],\n", " [[221, 15277, 2912, 438, 1020, 38220]],\n", " [[230, 2456, 6852, 9002, 1588, 1253]],\n", " [[2201, 5429]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[36589, 7876, 4668, 263, 732, 3695, 859, 102, 1792, 1069, 927]],\n", " [[12932, 534, 43130, 22590, 225, 10436]],\n", " [[21774, 632, 1037, 165]],\n", " [[369, 1961, 5429]],\n", " [[798, 632, 1037, 165]],\n", " [[2822, 3622, 12612]],\n", " [[1287, 1422, 5429]],\n", " [[83, 4, 717, 4, 530, 4, 11198, 274, 4, 347, 4]],\n", " [[2009, 255, 25491]],\n", " [[5837, 15945, 5429]],\n", " [[17983, 632, 1037, 165]],\n", " [[5429, 30610, 1417]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[391, 1101, 632, 1037, 165]],\n", " [[2769, 632, 5259, 1037, 165]],\n", " [[221, 5268, 7038, 14559, 3467]],\n", " [[7296, 271, 8726, 12612]],\n", " [[5429, 660, 329, 3592, 256, 7352, 1488, 330, 2331]],\n", " [[2822, 3622, 6719, 4699]],\n", " [[391, 1101, 632, 1037, 165]],\n", " [[12612, 221, 1488, 26802]],\n", " [[30492, 241, 7450, 14795]],\n", " [[6037, 632, 1037, 165]],\n", " [[5429, 13073, 1075, 1242, 1879, 3467]],\n", " [[3497, 9, 2487, 632, 5259, 1037, 165]],\n", " [[13708, 26450, 2912, 438, 1020]],\n", " [[274, 530, 11504, 257, 4807, 282, 2603, 21752, 26084, 2426]],\n", " [[221, 2001, 366, 5429]],\n", " [[315, 532, 390, 18, 632, 4191, 165]],\n", " [[14605, 632, 5259, 1037, 165]],\n", " [[8683, 632, 5259, 1037, 165]],\n", " [[12612, 4436, 20287, 337]],\n", " [[13633, 83, 4, 597, 4, 347, 4]],\n", " [[188, 3324, 632, 1037, 165]],\n", " [[274, 5777, 28185, 3381, 242, 14795]],\n", " [[14993, 5150, 10888, 19864, 354, 274, 1140, 4691, 179]],\n", " [[121, 9056, 102, 1211, 7128, 29]],\n", " [[4622, 139, 3767, 459, 38754]],\n", " [[3430, 632, 1037, 165]],\n", " [[2893, 13345, 29018, 10221, 2684, 12765, 139, 4214, 2955, 6251, 763]],\n", " [[3274, 331, 4223]],\n", " [[226, 18307, 234, 324, 438, 324, 438, 2478]],\n", " [[15081]],\n", " [[2910, 390, 18, 632, 1037, 165]],\n", " [[14567, 12612]],\n", " [[580, 3600, 315, 274, 4, 347, 4]],\n", " [[2393, 873, 329, 1790, 12150]],\n", " [[112, 4, 5429, 1332, 5459]],\n", " [[2201, 6130, 12, 534, 8362, 1851, 274, 4, 347, 4]],\n", " [[27162, 11626, 3990, 1722, 179, 274, 4, 347, 4]],\n", " [[16193, 632, 1037, 165]],\n", " [[2271, 13310, 36349, 2884, 337, 757, 5107, 5429]],\n", " [[7505, 17458, 632, 1037, 165]],\n", " [[20351, 2383, 42775, 2001, 33293]],\n", " [[7296, 271, 8726, 12612]],\n", " [[663, 11758]],\n", " [[3426, 274, 4, 347, 4]],\n", " [[18490, 632, 5259, 1037, 165]],\n", " [[9793, 5928, 274, 4, 347, 4]],\n", " [[229, 5596, 21834]],\n", " [[31280, 282, 5269, 29048, 263, 255, 6166, 11408, 102]],\n", " [[12612, 4436, 20287, 337]],\n", " [[14664, 412, 5429]],\n", " [[21774, 632, 1037, 165]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[2361, 315, 274, 4, 347, 4]],\n", " [[12919, 5429]],\n", " [[726, 12, 3609, 895, 1543, 2636, 1847, 2009]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[2177, 2692, 10929]],\n", " [[23650, 13364, 90, 229, 1116, 257]],\n", " [[11666, 274, 4, 347, 4]],\n", " [[344, 30395, 12108, 368]],\n", " [[468, 506, 387, 312, 9259, 22739]],\n", " [[229, 4113, 254, 354, 12150]],\n", " [[2381, 102, 3703, 574, 165]],\n", " [[7556, 632, 5259, 1037, 165]],\n", " [[19041, 10968, 6752, 10327]],\n", " [[226, 4061, 384, 3632]],\n", " [[208, 10729, 14777, 225]],\n", " [[6171, 632, 5259, 1037, 165]],\n", " [[14993, 5150, 10888, 19864, 354]],\n", " [[7505, 17458, 632, 1037, 165]],\n", " [[15639, 632, 5259, 1037, 165]],\n", " [[9793, 5928, 274, 4, 347, 4]],\n", " [[14993, 5150, 10888, 19864, 354, 274, 1140, 4691, 179]],\n", " [[83, 4, 717, 4, 530, 4, 11198, 274, 4, 347, 4]],\n", " [[9170, 2711, 8313]],\n", " [[188, 469, 1211, 9926]],\n", " [[21774, 632, 1037, 165]],\n", " [[83, 4, 104, 4, 12218]],\n", " [[274, 530, 840, 330, 105, 1187, 12733]],\n", " [[7296, 271, 8726, 12612]],\n", " [[5429, 10402, 10489, 2691]],\n", " [[5429, 2049, 16408]],\n", " [[208, 4214, 15333, 5429]],\n", " [[17468, 448, 13023, 5641, 163, 20997]],\n", " [[274, 5777, 28185, 3381, 242, 14795]],\n", " [[2769, 632, 5259, 1037, 165]],\n", " [[2910, 632, 1037, 165]],\n", " [[2769, 632, 5259, 1037, 165]],\n", " [[2711, 23070, 9089, 14035, 3309, 876]],\n", " [[226, 4061, 384, 3632]],\n", " [[3160, 17492]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[8683, 390, 18, 632, 865, 3512, 165]],\n", " [[25011, 12, 2022, 468, 11485, 102]],\n", " [[2361, 412, 274, 4, 347, 4]],\n", " [[3497, 9, 2487, 632, 5259, 1037, 165]],\n", " [[3378, 5553, 268]],\n", " [[1918, 1140, 14962, 274, 4467, 18217, 2893, 13345, 36, 21963, 43]],\n", " [[312, 4, 3217, 6293]],\n", " [[4766, 14572]],\n", " [[798, 632, 1037, 165]],\n", " [[3160, 17492]],\n", " [[8873, 9399, 1906, 263, 2588, 221, 2550, 5079]],\n", " [[5854, 13170]],\n", " [[5429, 15757, 12705, 3467]],\n", " [[4380, 8271, 230, 5268]],\n", " [[5429, 7093, 523]],\n", " [[4436, 29, 385, 108, 11094, 4947, 11249, 3663, 13324]],\n", " [[1775, 438, 10810, 4936, 15247, 274, 4, 347, 4]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[660, 22494, 13310, 18440, 1073, 4193, 102, 5429]],\n", " [[20351, 2383, 42775, 2001, 33293]],\n", " [[22839, 2727, 6748, 2723, 7222, 726, 2089, 5272]],\n", " [[3332, 2646, 26681, 274, 4, 347, 4]],\n", " [[3378, 5553, 268]],\n", " [[15376, 493, 21115]],\n", " [[166, 5618, 4670, 274, 4, 347, 4]],\n", " [[369, 17577, 315, 5429]],\n", " [[221, 2336, 272, 30265, 1243, 274, 4, 347, 4]],\n", " [[188, 3324, 632, 1037, 165]],\n", " [[208, 4, 347, 4, 2265, 6080]],\n", " [[6171, 632, 5259, 1037, 165]],\n", " [[952, 10172, 5521, 718, 281, 12612]],\n", " [[29018, 10221, 2684, 3622]],\n", " [[229,\n", " 4,\n", " 104,\n", " 4,\n", " 347,\n", " 4,\n", " 226,\n", " 5361,\n", " 2558,\n", " 384,\n", " 2603,\n", " 12,\n", " 846,\n", " 2560,\n", " 463,\n", " 8663]],\n", " [[16588, 366, 12612]],\n", " [[315, 532, 604, 18, 632, 4191, 165]],\n", " [[3430, 632, 1037, 165]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[2009, 29018, 10221, 2684, 3182, 2727]],\n", " [[24195, 632, 1037, 165]],\n", " [[20421, 428, 10344, 274, 4, 347, 4]],\n", " [[14993, 5150, 263, 23294, 4061]],\n", " [[1775, 438, 10810, 5008, 12837, 274, 4, 347, 4]],\n", " [[208, 4, 104, 4, 347, 4, 7645, 6483]],\n", " [[208, 4, 574, 4, 1664, 506, 2426]],\n", " [[6015, 6130, 12, 23791, 90, 21302]],\n", " [[9341, 261, 632, 1037, 165]],\n", " [[274, 530, 229, 7381, 139, 2742, 10809, 31316, 36533]],\n", " [[312, 1829, 248, 18974, 354, 274, 4, 347, 4]],\n", " [[312, 1829, 248, 18974, 354, 274, 4, 347, 4]],\n", " [[2009, 44285, 1851]],\n", " [[391, 1101, 632, 1037, 165]],\n", " [[36858, 25278, 22753]],\n", " [[2646, 1210, 24181, 274, 4, 347, 4]],\n", " [[5429, 4424, 22015, 11135, 2816, 438]],\n", " [[12132, 632, 1037, 165]],\n", " [[4174, 632, 5259, 1037, 165]],\n", " [[5244, 632, 1037, 165]],\n", " [[274, 3573, 4448, 6276]],\n", " [[1775, 438, 10810, 4936, 15247, 274, 4, 347, 4]],\n", " [[726, 12, 597, 5655, 7776, 4998]],\n", " [[208, 1741, 260, 6163, 3726, 102, 234, 19291, 1688, 5107]],\n", " [[1287, 1422, 6772]],\n", " [[11193, 1908, 274, 4, 347, 4]],\n", " [[17112, 3061, 12, 487, 5600, 139]],\n", " [[5429, 24542, 298, 45739, 1879]],\n", " [[2027, 188, 469, 15626]],\n", " [[13800, 41269, 31221]],\n", " [[274, 530, 1209, 271, 873, 7669]],\n", " [[7320, 632, 1037, 165]],\n", " [[12723, 12130, 1178]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[2711, 43657]],\n", " [[5429, 2049, 16408]],\n", " [[2893, 13345, 263, 6304, 415, 281, 109, 37313, 3314, 139]],\n", " [[44558, 991, 853, 4077, 873, 2768, 2258, 12150]],\n", " [[1470, 390, 18, 632, 865, 3512, 165]],\n", " [[9170, 2711, 8313]],\n", " [[580, 3600, 315, 274, 4, 347, 4]],\n", " [[312, 1829, 248, 18974, 354, 274, 4, 347, 4]],\n", " [[3426, 274, 4, 347, 4]],\n", " [[21774, 632, 1037, 165]],\n", " [[896, 604, 18, 632, 4191, 165]],\n", " [[4436, 26827, 906, 289, 1140, 763, 6070, 5413, 2009]],\n", " [[5429, 221, 4438, 412]],\n", " [[1211, 2141, 274, 4, 347, 4]],\n", " [[726, 12, 534, 4759, 15997, 1847, 2009]],\n", " [[4998, 953, 7104]],\n", " [[315, 532, 604, 18, 632, 4191, 165]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[21774, 632, 1037, 165]],\n", " [[1221, 632, 5259, 1037, 165]],\n", " [[28187, 687, 18612, 32825, 24969, 163, 8982, 2133]],\n", " [[4152, 274, 4, 347, 4]],\n", " [[3417, 36802, 5429]],\n", " [[2000, 632, 1037, 165]],\n", " [[20351, 2383, 42775, 2001, 33293]],\n", " [[25305, 8, 26288, 3733, 1417, 1243, 632, 1037, 165]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[11666, 274, 4, 347, 4]],\n", " [[6748, 2723, 9697, 25452, 338, 12109]],\n", " [[6371, 102, 1209, 1075, 274, 4, 347, 4]],\n", " [[2009, 29018, 10221, 2684, 4838, 281, 4989]],\n", " [[4152, 274, 4, 347, 4]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[3426, 274, 4, 347, 4]],\n", " [[5429, 229, 5079, 282, 1630, 271]],\n", " [[2009, 29018, 10221, 2684, 23654, 9401]],\n", " [[9692, 274, 4, 347, 4]],\n", " [[4273, 853, 424, 315, 274, 4, 347, 4]],\n", " [[7296, 271, 8726, 12612]],\n", " [[2822, 6525, 354, 4317, 7474, 118, 1140]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[2529, 119, 3671, 35960]],\n", " [[25305, 8, 26288, 3733, 1417, 1243, 632, 1037, 165]],\n", " [[4619, 26769, 4843, 242, 2005, 6945]],\n", " [[580, 14312, 11645, 19032, 274, 4, 347, 4]],\n", " [[14056, 369, 4680, 274, 4, 347, 4]],\n", " [[1156, 632, 5259, 1037, 165]],\n", " [[5092, 632, 1037, 165]],\n", " [[5429, 13985, 405, 6130, 14330]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[27268, 9228, 274, 4, 347, 4]],\n", " [[96, 242, 366, 13519, 625, 4733]],\n", " [[14993, 5150, 10888, 19864, 354, 274, 1140, 4691, 179]],\n", " [[274, 530, 6015, 255, 2558, 4955, 17010]],\n", " [[255, 14744, 632, 1037, 165]],\n", " [[726, 12, 725, 718, 337, 208, 5268]],\n", " [[826, 2583, 12, 24667, 863]],\n", " [[208, 1741, 19209, 19380, 12, 565, 677, 47497]],\n", " [[6015, 16641, 163, 20997]],\n", " [[4677, 254, 4992, 5429]],\n", " [[9096, 3497, 632, 5259, 1037, 165]],\n", " [[315, 532, 604, 18, 632, 4191, 165]],\n", " [[12919, 274, 4, 347, 4]],\n", " [[391, 1101, 632, 1037, 165]],\n", " [[15607, 412, 274, 4, 347, 4]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[5429, 13985, 405, 6130, 14330]],\n", " [[5429, 16706, 90, 7228, 229, 3671, 8502]],\n", " [[6253, 846, 5620, 354, 3321]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[11141, 281, 3060, 4488, 274, 4, 347, 4]],\n", " [[2910, 632, 1037, 165]],\n", " [[289, 24812, 523, 1456, 108, 254, 264, 3952, 274, 4, 347, 4]],\n", " [[726, 4417, 338, 4998]],\n", " [[13077, 412, 83, 4, 597, 4, 347, 4]],\n", " [[2032, 11850, 257, 5429]],\n", " [[5302, 2681, 1243, 967, 366, 274, 4, 347, 4]],\n", " [[33445, 14511, 3109]],\n", " [[13943, 1001, 2848, 242, 14182]],\n", " [[2910, 632, 1037, 165]],\n", " [[384, 10839, 642, 493, 5366, 2601]],\n", " [[4152, 305, 4, 597, 4, 347, 4]],\n", " [[5092, 632, 1037, 165]],\n", " [[17057, 8441]],\n", " [[1156, 632, 5259, 1037, 165]],\n", " [[9692, 274, 4, 347, 4]],\n", " [[11536, 632, 1037, 165]],\n", " [[1211, 6518, 8441]],\n", " [[21774, 632, 1037, 165]],\n", " [[1221, 390, 18, 632, 4191, 165]],\n", " [[5028, 632, 1037, 165]],\n", " [[11437, 632, 5259, 1037, 165]],\n", " [[5706, 274, 4, 347, 4]],\n", " [[497, 5638, 405, 366, 274, 4, 347, 4]],\n", " [[2009, 27417, 2684, 2884, 1113, 9401]],\n", " [[248, 11579, 11631, 3785, 1168, 263, 4612]],\n", " [[18490, 632, 5259, 1037, 165]],\n", " [[5703, 38901, 4216]],\n", " ...],\n", " 'relation': ['P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " ...],\n", " 'num_answers': [1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " ...]},\n", " '2020-Q3': {'text': [['Alex Morgan plays for .'],\n", " ['Lionel Messi plays for .'],\n", " ['Cristiano Ronaldo plays for .'],\n", " ['LeBron James plays for .'],\n", " ['Puck Moonen plays for .'],\n", " ['Zlatan Ibrahimović plays for .'],\n", " ['Neymar plays for .'],\n", " ['Ronaldinho plays for .'],\n", " ['Megan Rapinoe plays for .'],\n", " ['Pau Gasol plays for .'],\n", " ['Alisha Lehmann plays for .'],\n", " ['Robert Lewandowski plays for .'],\n", " ['Gianluigi Buffon plays for .'],\n", " ['Andrea Pirlo plays for .'],\n", " ['Kevin Durant plays for .'],\n", " ['Lukas Podolski plays for .'],\n", " ['Lewis Hamilton plays for .'],\n", " ['Formiga plays for .'],\n", " ['Naomi Osaka plays for .'],\n", " ['José Mourinho plays for .'],\n", " ['Luis Suárez plays for .'],\n", " ['Franck Ribéry plays for .'],\n", " ['Tim Cahill plays for .'],\n", " ['Chris Froome plays for .'],\n", " ['Lieke Martens plays for .'],\n", " ['Manuel Neuer plays for .'],\n", " ['Lindsey Horan plays for .'],\n", " ['Javier Mascherano plays for .'],\n", " ['Mark Cavendish plays for .'],\n", " ['James Rodríguez plays for .'],\n", " ['Hope Solo plays for .'],\n", " ['Diego Forlán plays for .'],\n", " ['Sebastián Abreu plays for .'],\n", " ['Carli Lloyd plays for .'],\n", " ['Marta plays for .'],\n", " ['Javier Hernández plays for .'],\n", " ['Yuzvendra Chahal plays for .'],\n", " ['Thiago Silva plays for .'],\n", " ['Andrés Iniesta plays for .'],\n", " ['Wayne Rooney plays for .'],\n", " ['Keisuke Honda plays for .'],\n", " ['Sergio Agüero plays for .'],\n", " ['Marianne Vos plays for .'],\n", " ['Sergio Ramos plays for .'],\n", " ['Dani Alves plays for .'],\n", " ['Carlos Tevez plays for .'],\n", " ['Pepe Reina plays for .'],\n", " ['Giovani dos Santos plays for .'],\n", " ['Mesut Özil plays for .'],\n", " ['Freddy Adu plays for .'],\n", " ['Cristiane Rozeira plays for .'],\n", " ['Maya Moore plays for .'],\n", " ['Giorgio Chiellini plays for .'],\n", " ['Robinho plays for .'],\n", " ['Bastian Schweinsteiger plays for .'],\n", " ['Luis Scola plays for .'],\n", " ['Jérôme Boateng plays for .'],\n", " ['Kevin-Prince Boateng plays for .'],\n", " ['Vincenzo Nibali plays for .'],\n", " ['Egidio Arévalo Rios plays for .'],\n", " ['Dwyane Wade plays for .'],\n", " ['Arjen Robben plays for .'],\n", " ['Dwight Howard plays for .'],\n", " ['Cesc Fàbregas plays for .'],\n", " ['Nigel de Jong plays for .'],\n", " ['Colin Kazim-Richards plays for .'],\n", " ['Pierre-Emerick Aubameyang plays for .'],\n", " ['David Alaba plays for .'],\n", " ['Xherdan Shaqiri plays for .'],\n", " ['Marc Gasol plays for .'],\n", " ['Laura Kenny plays for .'],\n", " ['Aristide Bancé plays for .'],\n", " ['Philippe Gilbert plays for .'],\n", " ['Breanna Stewart plays for .'],\n", " ['Bruno Alves plays for .'],\n", " ['Ali Krieger plays for .'],\n", " ['Antoine Griezmann plays for .'],\n", " ['Mohamed Salah plays for .'],\n", " ['Memphis Depay plays for .'],\n", " ['Pablo Zabaleta plays for .'],\n", " ['Jozy Altidore plays for .'],\n", " ['Steve Nash plays for .'],\n", " ['Shinji Okazaki plays for .'],\n", " ['Maya Yoshida plays for .'],\n", " ['Gary Cahill plays for .'],\n", " ['Guillermo Ochoa plays for .'],\n", " ['Serge Gnabry plays for .'],\n", " ['Christine Sinclair plays for .'],\n", " ['Paul Pogba plays for .'],\n", " ['Alexandre Pato plays for .'],\n", " ['Hugo Almeida plays for .'],\n", " [\"Raïs M'Bolhi plays for .\"],\n", " ['Peter Sagan plays for .'],\n", " ['Joel Campbell plays for .'],\n", " ['Luka Modrić Papá de Lionel Messi plays for .'],\n", " ['Elia Viviani plays for .'],\n", " ['Toni Kroos plays for .'],\n", " ['Giulia Gwinn plays for .'],\n", " ['Ellen van Dijk plays for .'],\n", " ['Lucas Barrios plays for .'],\n", " ['Daniel Fernandes plays for .'],\n", " ['Juan Mata plays for .'],\n", " ['Michael Bradley plays for .'],\n", " ['Gonzalo Higuaín plays for .'],\n", " ['Greg Van Avermaet plays for .'],\n", " ['Alexandra Lacrabère plays for .'],\n", " ['David Andersen plays for .'],\n", " ['Javi Martínez plays for .'],\n", " ['Davide Rebellin plays for .'],\n", " ['Ricardo Costa plays for .'],\n", " ['Kyrie Irving plays for .'],\n", " ['Sebastian Vettel plays for .'],\n", " ['Ingrid Syrstad Engen plays for .'],\n", " ['Adrien Silva plays for .'],\n", " ['Rigoberto Urán plays for .'],\n", " ['John Arne Riise plays for .'],\n", " ['Tobin Heath plays for .'],\n", " ['Hedvig Lindahl plays for .'],\n", " ['Marcelo plays for .'],\n", " ['Radamel Falcao plays for .'],\n", " ['Jakob Fuglsang plays for .'],\n", " ['Marko Marin plays for .'],\n", " ['Mikel John Obi plays for .'],\n", " ['Hulk plays for .'],\n", " ['Rudy Fernández plays for .'],\n", " ['Lizzie Deignan plays for .'],\n", " ['Zé Roberto plays for .'],\n", " ['Rohan Dennis plays for .'],\n", " ['Milan Baroš plays for .'],\n", " ['Łukasz Fabiański plays for .'],\n", " ['Mats Hummels plays for .'],\n", " ['Diego Ribas da Cunha plays for .'],\n", " ['Artem Milevskyi plays for .'],\n", " ['Anna van der Breggen plays for .'],\n", " ['Rafinha plays for .'],\n", " ['Vladimir Stojković plays for .'],\n", " ['Ángel Di María plays for .'],\n", " ['Chris Paul plays for .'],\n", " ['Rosana dos Santos Augusto plays for .'],\n", " ['Manuel da Costa plays for .'],\n", " ['Alexis Sánchez plays for .'],\n", " ['Sophie Schmidt plays for .'],\n", " ['Mario Mandžukić plays for .'],\n", " ['Pepe plays for .'],\n", " ['Philippe Coutinho plays for .'],\n", " ['Sadio Mané plays for .'],\n", " ['Christen Press plays for .'],\n", " ['Keylor Navas plays for .'],\n", " ['Valentino Rossi plays for .'],\n", " ['Bojan Krkić plays for .'],\n", " ['Shinji Kagawa plays for .'],\n", " ['Diego Costa plays for .'],\n", " ['Steve Mandanda plays for .'],\n", " ['Miodrag Anđelković plays for .'],\n", " ['Thibaut Courtois plays for .'],\n", " ['Vincent Kompany plays for .'],\n", " ['Eiður Guðjohnsen plays for .'],\n", " ['Jakub Błaszczykowski plays for .'],\n", " ['Henning Berg plays for .'],\n", " ['Annemiek van Vleuten plays for .'],\n", " ['Álvaro Pereira plays for .'],\n", " ['Florent Sinama Pongolle plays for .'],\n", " ['Miljan Mrdaković plays for .'],\n", " ['Mario Götze plays for .'],\n", " ['Jô plays for .'],\n", " ['Claudio Pizarro plays for .'],\n", " ['Nani plays for .'],\n", " ['Ivan Rakitić plays for .'],\n", " ['Erin McLeod plays for .'],\n", " ['Peter Odemwingie plays for .'],\n", " ['Sofia Jakobsson plays for .'],\n", " ['Jordi Alba plays for .'],\n", " ['Sami Khedira plays for .'],\n", " ['Tony Martin plays for .'],\n", " ['Kirsten Wild plays for .'],\n", " ['Nicklas Bendtner plays for .'],\n", " ['Junichi Inamoto plays for .'],\n", " ['Michael Umaña plays for .'],\n", " ['Niklas Süle plays for .'],\n", " ['Diego Godín plays for .'],\n", " ['Yuto Nagatomo plays for .'],\n", " ['Olivier Giroud plays for .'],\n", " ['Tom Dumoulin plays for .'],\n", " ['Nicolas Roche plays for .'],\n", " [\"Kelley O'Hara plays for .\"],\n", " ['Lisa De Vanna plays for .'],\n", " ['Rafael van der Vaart plays for .'],\n", " ['Elena Delle Donne plays for .'],\n", " ['Sakina Karchaoui plays for .'],\n", " ['John Degenkolb plays for .'],\n", " ['Brittney Griner plays for .'],\n", " ['Shunsuke Nakamura plays for .'],\n", " ['David Silva plays for .'],\n", " ['Axel Witsel plays for .'],\n", " ['Andrés Guardado plays for .'],\n", " ['Kylian Mbappé plays for .'],\n", " ['Tom Brady plays for .'],\n", " ['Micah Richards plays for .'],\n", " ['Łukasz Piszczek plays for .'],\n", " ['Celso Borges plays for .'],\n", " ['Royston Drenthe plays for .'],\n", " ['Gareth Bale plays for .'],\n", " ['Sergio Romero plays for .'],\n", " ['Filipe Luís plays for .'],\n", " ['Romelu Lukaku plays for .'],\n", " ['Erling Haaland plays for .'],\n", " ['Arturo Vidal plays for .'],\n", " ['Jermaine Jones plays for .'],\n", " ['Eden Hazard plays for .'],\n", " ['Demba Ba plays for .'],\n", " [\"Amar'e Stoudemire plays for .\"],\n", " ['Nuri Şahin plays for .'],\n", " ['Hugo Lloris plays for .'],\n", " ['Thomas Vermaelen plays for .'],\n", " ['Henrikh Mkhitaryan plays for .'],\n", " ['Ryan Babel plays for .'],\n", " ['Aron Baynes plays for .'],\n", " ['Johan Djourou plays for .'],\n", " ['Kevin De Bruyne plays for .'],\n", " ['Shinji Ono plays for .'],\n", " ['Idriss Carlos Kameni plays for .'],\n", " ['Fernando Llorente plays for .'],\n", " ['André Greipel plays for .'],\n", " ['Boris Diaw plays for .'],\n", " ['Anja Mittag plays for .'],\n", " ['Joakim Noah plays for .'],\n", " ['Ricky Rubio plays for .'],\n", " ['Stephan Andersen plays for .'],\n", " [\"Andrés D'Alessandro plays for .\"],\n", " ['Claudio Bravo plays for .'],\n", " ['Becky Sauerbrunn plays for .'],\n", " ['Rafinha plays for .'],\n", " ['Blaise Matuidi plays for .'],\n", " ['Cristian Rodríguez plays for .'],\n", " ['Marek Hamšík plays for .'],\n", " ['Ciro Immobile plays for .'],\n", " [\"Dame N'Doye plays for .\"],\n", " ['Raphaël Varane plays for .'],\n", " ['Roger Kluge plays for .'],\n", " ['Asmir Begović plays for .'],\n", " ['Neven Subotić plays for .'],\n", " ['Christian Eriksen plays for .'],\n", " ['Luiz Gustavo plays for .'],\n", " ['Hamit Altıntop plays for .'],\n", " ['Brad Guzan plays for .'],\n", " ['André Ayew plays for .'],\n", " ['César Azpilicueta plays for .'],\n", " ['Éric Maxim Choupo-Moting plays for .'],\n", " ['Shkodran Mustafi plays for .'],\n", " ['Caroline Seger plays for .'],\n", " ['Fernando Muslera plays for .'],\n", " ['Leonardo Bonucci plays for .'],\n", " ['Nordin Amrabat plays for .'],\n", " ['Richard Kingson plays for .'],\n", " ['Jonny Evans plays for .'],\n", " ['Jonathan de Guzmán plays for .'],\n", " ['Yannick Bolasie plays for .'],\n", " ['Dante Bonfim Costa Santos plays for .'],\n", " ['Park Chu-young plays for .'],\n", " ['Lucas Hernandez plays for .'],\n", " ['Klaas-Jan Huntelaar plays for .'],\n", " ['Sonny Bill Williams plays for .'],\n", " ['Sydney Leroux plays for .'],\n", " ['Victor Moses plays for .'],\n", " ['Elano plays for .'],\n", " ['Asamoah Gyang plays for .'],\n", " ['Grzegorz Krychowiak plays for .'],\n", " ['Achraf Hakim plays for .'],\n", " ['John Guidetti plays for .'],\n", " ['Salomon Kalou plays for .'],\n", " ['Karen Bardsley plays for .'],\n", " ['Cédric Soares plays for .'],\n", " ['Dietmar Hamann plays for .'],\n", " ['Mark Milligan plays for .'],\n", " ['Yūki Nagasato plays for .'],\n", " ['Pedro plays for .'],\n", " ['Jack Wilshere plays for .'],\n", " ['Albert Riera plays for .'],\n", " ['Florent Malouda plays for .'],\n", " ['Medhi Benatia plays for .'],\n", " ['Eduardo Carvalho plays for .'],\n", " ['Giuseppe Rossi plays for .'],\n", " ['Samir Nasri plays for .'],\n", " ['Andrija Kaluđerović plays for .'],\n", " ['Emre Belözoğlu plays for .'],\n", " ['Sarah Storey plays for .'],\n", " ['Daniel Martin plays for .'],\n", " ['Nairo Quintana plays for .'],\n", " ['Leroy Sané plays for .'],\n", " ['Valon Behrami plays for .'],\n", " ['Eiji Kawashima plays for .'],\n", " ['Ana Dabović plays for .'],\n", " ['Carlos Sánchez plays for .'],\n", " ['Raúl Albiol plays for .'],\n", " ['Bryan Ruiz plays for .'],\n", " ['Gabriel Torres plays for .'],\n", " ['Éver Banega plays for .'],\n", " ['Simon Kjær plays for .'],\n", " ['Willy Caballero plays for .'],\n", " ['Vince Carter plays for .'],\n", " ['Sergio Rodríguez plays for .'],\n", " ['Luuk de Jong plays for .'],\n", " ['Eduardo Vargas plays for .'],\n", " ['Ivan Perišić plays for .'],\n", " ['Michał Kwiatkowski plays for .'],\n", " ['Diego Reyes plays for .'],\n", " ['Lars Hirschfeld plays for .'],\n", " ['Abby Dahlkemper plays for .'],\n", " ['Daley Blind plays for .'],\n", " ['Roko Ukić plays for .'],\n", " ['Gélson Fernandes plays for .'],\n", " ['Pablo Contreras plays for .'],\n", " ['Nando de Colo plays for .'],\n", " ['Steph Houghton plays for .'],\n", " ['Ramires plays for .'],\n", " ['Jermain Defoe plays for .'],\n", " ['Divock Origi plays for .'],\n", " ['el tete plays for .'],\n", " ['Maxi López plays for .'],\n", " ['Maximiliano Richeze plays for .'],\n", " ['Ashleigh Barty plays for .'],\n", " ['Paulinho plays for .'],\n", " ['Curao Ql plays for .'],\n", " ['Marquinhos plays for .'],\n", " ['Julie Ertz plays for .'],\n", " ['Sebastián Eguren plays for .'],\n", " ['Marco Fabián plays for .'],\n", " ['Edvald Boasson-Hagen plays for .'],\n", " ['João Moutinho plays for .'],\n", " ['İlkay Gündoğan plays for .'],\n", " ['Gary Medel plays for .'],\n", " ['Karim Ziani plays for .'],\n", " ['Christian Bolaños plays for .'],\n", " ['David De Gea plays for .'],\n", " ['Esteban Cambiasso plays for .'],\n", " ['Gabriel Enrique Gómez plays for .'],\n", " ['Douglas Costa plays for .'],\n", " ['Michy Batshuayi plays for .'],\n", " ['Yakubu plays for .'],\n", " ['José Fonte plays for .'],\n", " ['Rui Costa plays for .'],\n", " ['Salvatore Sirigu plays for .'],\n", " ['Roman Kreuziger plays for .'],\n", " ['Kasper Schmeichel plays for .'],\n", " ['Roman Bürki plays for .'],\n", " ['Víctor Claver plays for .'],\n", " ['Arkadiusz Milik plays for .'],\n", " ['Daniel Ricciardo plays for .'],\n", " ['Thomas Delaney plays for .'],\n", " ['Kevin Love plays for .'],\n", " ['Stéphane Mbia plays for .'],\n", " ['Tatiana Guderzo plays for .'],\n", " ['André Schürrle plays for .'],\n", " ['Martín Demichelis plays for .'],\n", " ['Siraba Dembele plays for .'],\n", " ['Damian Lillard plays for .'],\n", " ['Richie Porte plays for .'],\n", " ['Sébastien Haller plays for .'],\n", " ['Edin Džeko plays for .'],\n", " ['Daisuke Matsui plays for .'],\n", " ['Nelson Valdez plays for .'],\n", " ['Alexander Kristoff plays for .'],\n", " ['Luis Advíncula plays for .'],\n", " ['Danilo Pereira plays for .'],\n", " [\"N'Golo Kanté plays for .\"],\n", " ['Duško Tošić plays for .'],\n", " ['Ricardo Rodriguez plays for .'],\n", " ['Shane Smeltz plays for .'],\n", " ['Marcelo Martins Moreno plays for .'],\n", " ['Peter Crouch plays for .'],\n", " ['Simon Gerrans plays for .'],\n", " ['Mark González plays for .'],\n", " ['Kevin Mirallas plays for .'],\n", " ['Gervinho plays for .'],\n", " ['Alex Song plays for .'],\n", " ['Glenn Whelan plays for .'],\n", " ['Raul Meireles plays for .'],\n", " ['Ali Riley plays for .'],\n", " ['Anthony Davis plays for .'],\n", " ['Sani Kaita plays for .'],\n", " ['Christie Pearce plays for .'],\n", " ['Luís Fabiano plays for .'],\n", " ['Jan Vertonghen plays for .'],\n", " ['Thiago Alcântara plays for .'],\n", " ['João Mário plays for .'],\n", " ['Alisson plays for .'],\n", " ['Fridolina Rolfö plays for .'],\n", " ['Wout van Aert plays for .'],\n", " ['Alphonse Areola plays for .'],\n", " ['Mousa Dembélé plays for .'],\n", " ['Babett Peter plays for .'],\n", " ['Fabiana da Silva Simões plays for .'],\n", " ['Blerim Džemaili plays for .'],\n", " ['Adriana Leon plays for .'],\n", " ['Naohiro Takahara plays for .'],\n", " ['oscar perez plays for .'],\n", " ['Gaël Kakuta plays for .'],\n", " ['Isco Alarcón plays for .'],\n", " ['Gabriel Tamaș plays for .'],\n", " ['Jaroslav Drobný plays for .'],\n", " ['Raheem Sterling plays for .'],\n", " ['Samuel Umtiti plays for .'],\n", " ['Amido Baldé plays for .'],\n", " ['Brad Jones plays for .'],\n", " ['Miguel Layún plays for .'],\n", " ['Jan Koller plays for .'],\n", " ['Dmitri Alenichev plays for .'],\n", " ['Marco Asensio plays for .'],\n", " ['Michael Mørkøv plays for .'],\n", " ['Kendall Waston plays for .'],\n", " ['Milan Borjan plays for .'],\n", " ['Kamil Glik plays for .'],\n", " ['Roman Neustädter plays for .'],\n", " ['Marcelo Díaz plays for .'],\n", " ['Jesé Rodríguez plays for .'],\n", " ['Roberto Acuña plays for .'],\n", " ['Ricardo Faty plays for .'],\n", " ['Verónica Boquete plays for .'],\n", " ['Danilo Luiz plays for .'],\n", " ['Olga Zabelinskaya plays for .'],\n", " ['Darron Gibson plays for .'],\n", " ['James Harden plays for .'],\n", " ['Russell Westbrak plays for .'],\n", " ['Jung Sung-ryong plays for .'],\n", " ['Melissa Tancredi plays for .'],\n", " ['Daryl Impey plays for .'],\n", " ['Henrik Ojamaa plays for .'],\n", " ['Leon Goretzka plays for .'],\n", " ['Pablo Hernández Domínguez plays for .'],\n", " ['Joseph Yobo plays for .'],\n", " ['Rafał Majka plays for .'],\n", " ['Bruma plays for .'],\n", " ['Samuel Inkoom plays for .'],\n", " ['Robbie Rogers plays for .'],\n", " ['Robert de Pinho de Souza plays for .'],\n", " ['Georges Mandjeck plays for .'],\n", " ['Lucho González plays for .'],\n", " ['Ander Herrera plays for .'],\n", " ['Luis León Sánchez plays for .'],\n", " ['Érika Cristiano dos Santos plays for .'],\n", " ['Kingsley Coman plays for .'],\n", " ['Aymeric Laporte plays for .'],\n", " ['Primož Roglič plays for .'],\n", " ['Charles Aránguiz plays for .'],\n", " ['Julian Alaphilippe plays for .'],\n", " ['André Silva plays for .'],\n", " ['Pauline Ferrand-Prevot plays for .'],\n", " ['Elton Brand plays for .'],\n", " ['Nikita Rukavytsya plays for .'],\n", " ['Marc-André ter Stegen plays for .'],\n", " ['Steven Davis plays for .'],\n", " ['Anderson plays for .'],\n", " ['Matthias Ginter plays for .'],\n", " ['Haris Seferovic plays for .'],\n", " ['Rui Patrício plays for .'],\n", " ['Wojciech Szczęsny plays for .'],\n", " ['Rúrik Gíslason plays for .'],\n", " ['Oscar dos Santos Emboaba Júnior plays for .'],\n", " ['Koo Ja-cheol plays for .'],\n", " ['Lucy Bronze plays for .'],\n", " ['Crystal Dunn plays for .'],\n", " ['Toby Alderweireld plays for .'],\n", " ['Penalty in the UEL final plays for .'],\n", " ['Kepa Arrizabalaga plays for .'],\n", " ['Giannis Antetokounmpo plays for .'],\n", " ['Besart Berisha plays for .'],\n", " ['Obafemi Martins plays for .'],\n", " ['Moussa Maâzou plays for .'],\n", " ['Alexei Eremenko plays for .'],\n", " ['Moussa Dembélé plays for .'],\n", " ['Ashlyn Harris plays for .'],\n", " ['Chris Wood plays for .'],\n", " ['Reto Ziegler plays for .'],\n", " ['Antonio Nocerino plays for .'],\n", " ['Juanfran Torres plays for .'],\n", " ['Fernando Gago plays for .'],\n", " ['Ji Dong-won plays for .'],\n", " ['Carlos Salcido plays for .'],\n", " ['Oribe Peralta plays for .'],\n", " ['Marco Ureña plays for .'],\n", " ['Antar Yahia plays for .'],\n", " ['Georginio Wijnaldum plays for .'],\n", " ['Sam Kerr plays for .'],\n", " ['Martín Cáceres plays for .'],\n", " ['Valeri Bojinov plays for .'],\n", " ['Luis Tejada plays for .'],\n", " ['Gökhan İnler plays for .'],\n", " ['Javi García plays for .'],\n", " ['Nicolás Lodeiro plays for .'],\n", " ['Raúl Jiménez plays for .'],\n", " ['Janine Beckie plays for .'],\n", " ['Arda Turan plays for .'],\n", " ['Selim Benachour plays for .'],\n", " ['Mickaël Gelabale plays for .'],\n", " ['Daniel González Güiza plays for .'],\n", " ['Jackie Groenen plays for .'],\n", " ['John Mensah plays for .'],\n", " ['Federico Fazio plays for .'],\n", " ['Carl Medjani plays for .'],\n", " ['Ahmed Musa plays for .'],\n", " ['Essam El-Hadary plays for .'],\n", " ['Vedad Ibišević plays for .'],\n", " ['Marouane Fellaini plays for .'],\n", " ['Jorginho plays for .'],\n", " ['Lacina Traoré plays for .'],\n", " ['Christiane Endler plays for .'],\n", " ['Alyssa Naeher plays for .'],\n", " ['Steven Nzonzi plays for .'],\n", " ['Kim Dong-jin plays for .'],\n", " ['Joshua Kimmich plays for .'],\n", " ['Emre Can plays for .'],\n", " ['Nicolas Batum plays for .'],\n", " ['José Calderón plays for .'],\n", " ['Emiliano Insúa plays for .'],\n", " ['Stephan El Shaarawy plays for .'],\n", " ['Casemiro plays for .'],\n", " ['Júnior Díaz plays for .'],\n", " ['Jodie Taylor plays for .'],\n", " ['Robin Olsen plays for .'],\n", " ['Héctor Herrera plays for .'],\n", " ['Sebastian Giovinco plays for .'],\n", " ['Rodrigo plays for .'],\n", " ['Fernando Gaviria plays for .'],\n", " ['Oleksandr Aliyev plays for .'],\n", " ['Florian Thauvin plays for .'],\n", " ['Kim Bo-kyung plays for .'],\n", " ['Thorgan Hazard plays for .'],\n", " ['Gotoku Sakai plays for .'],\n", " ['Odion Ighalo plays for .'],\n", " ['Jasmin Glaesser plays for .'],\n", " ['Eliaquim Mangala plays for .'],\n", " ['Felipe Melo plays for .'],\n", " ['Gábor Király plays for .'],\n", " ['Herculez Gomez plays for .'],\n", " ['Paulo da Silva plays for .'],\n", " ['Héctor Moreno plays for .'],\n", " ['Cacau plays for .'],\n", " ['Ion Izagirre plays for .'],\n", " ['Denis Cheryshev plays for .'],\n", " ['Anthony Annan plays for .'],\n", " ['Darius Songaila plays for .'],\n", " ['Morgan De Sanctis plays for .'],\n", " ['Joe Ingles plays for .'],\n", " ['Paco Alcácer plays for .'],\n", " ['Sara Däbritz plays for .'],\n", " ['Nikola Mirotić plays for .'],\n", " ['Adlène Guedioura plays for .'],\n", " ['Fábio Coentrão plays for .'],\n", " ['Scott Carson plays for .'],\n", " ['Granit Xhaka plays for .'],\n", " ['Ashkan Dejagah plays for .'],\n", " ['Derrick Rose plays for .'],\n", " ['Yevhen Seleznyov plays for .'],\n", " ['Makoto Hasebe plays for .'],\n", " ['William Troost-Ekong plays for .'],\n", " ['Mauro Zárate plays for .'],\n", " ['Seydou Doumbia plays for .'],\n", " ['Tomáš Pekhart plays for .'],\n", " ['Jeffrén Suárez plays for .'],\n", " ['Kurt Zouma plays for .'],\n", " ['Nicolás Otamendi plays for .'],\n", " ['Silvestre Varela plays for .'],\n", " ['Hiroki Sakai plays for .'],\n", " ['Geoffrey Kondogbia plays for .'],\n", " ['Antonio Rüdiger plays for .'],\n", " ['Danko Lazović plays for .'],\n", " ['Admir Mehmedi plays for .'],\n", " ['Javier Aquino plays for .'],\n", " ['Kelsey Plum plays for .'],\n", " ['Teemu Pukki plays for .'],\n", " ['Grafite plays for .'],\n", " ['Lisa Brennauer plays for .'],\n", " ['Dejan Lovren plays for .'],\n", " ['Niki Terpstra plays for .'],\n", " ['Marcelinho Paraíba plays for .'],\n", " ['Mix Diskerud plays for .'],\n", " ['David Ospina plays for .'],\n", " ['Alexander Sørloth plays for .'],\n", " ['Manuel Fernandes plays for .'],\n", " ['Marek Saganowski plays for .'],\n", " ['Gabriel Barbosa plays for .'],\n", " ['Besart Abdurahimi plays for .'],\n", " ['Matthew Spiranovic plays for .'],\n", " ['Josip Tadić plays for .'],\n", " ['Younis Mahmoud plays for .'],\n", " ['Jordan Ayew plays for .'],\n", " ['Miguel Lopes plays for .'],\n", " ['Sokratis Papastathopoulos plays for .'],\n", " ['Martin Hansen plays for .'],\n", " ['Pierre Bengtsson plays for .'],\n", " ['Taye Taiwo plays for .'],\n", " ['David Carney plays for .'],\n", " ['Ángel Guirado plays for .'],\n", " ['Roberto Jiménez Gago plays for .'],\n", " ['Karen Carney plays for .'],\n", " ['Amin Younes plays for .'],\n", " ['Javier Balboa plays for .'],\n", " ['Francisco Javier Rodríguez plays for .'],\n", " ['Éder plays for .'],\n", " ['Daniëlle van de Donk plays for .'],\n", " ['Reza Ghoochannejhad plays for .'],\n", " ['Kaylyn Kyle plays for .'],\n", " ['André Lotterer plays for .'],\n", " ['Daniel Wass plays for .'],\n", " ['Matías Fernandez plays for .'],\n", " ['Harry Kane plays for .'],\n", " ['Son Heung-min plays for .'],\n", " ['Cléopatre Darleux plays for .'],\n", " ['Tony Gallopin plays for .'],\n", " ['Yann Sommer plays for .'],\n", " ['Eniola Aluko plays for .'],\n", " ['Tyson Chandler plays for .'],\n", " ['Anthony Martial plays for .'],\n", " ['Greg Henderson plays for .'],\n", " ['Kiko Casillas plays for .'],\n", " ['Nilla Fischer plays for .'],\n", " ['Leon Balogun plays for .'],\n", " ['James Milner plays for .'],\n", " ['Cameron Meyer plays for .'],\n", " ['Benjamin Pavard plays for .'],\n", " ['Luís Leal plays for .'],\n", " ['Renato Sanches plays for .'],\n", " ['Mathew Ryan plays for .'],\n", " ['Shuichi Gonda plays for .'],\n", " ['Pierre-Emile Højbjerg plays for .'],\n", " ['Simon Mignolet plays for .'],\n", " ['Mana Iwabuchi plays for .'],\n", " ['Desiree Scott plays for .'],\n", " ['Quinn plays for .'],\n", " ['Viktor Fischer plays for .'],\n", " ['Ron-Robert Zieler plays for .'],\n", " ['Alex Sandro plays for .'],\n", " ['Damien Le Tallec plays for .'],\n", " ['Tiago Mendes plays for .'],\n", " ['Martin Ødegaard plays for .'],\n", " ['Salvatore Bocchetti plays for .'],\n", " ['Olarenwaju Kayode plays for .'],\n", " ['Corentin Tolisso plays for .'],\n", " ['Walter Pandiani (CR7 su papá) plays for .'],\n", " ['Justo Villar plays for .'],\n", " ['Francisco Arrué plays for .'],\n", " ['Abel Aguilar plays for .'],\n", " ['Esmaël Gonçalves plays for .'],\n", " ['Marvin Ogunjimi plays for .'],\n", " ['Sulley Muntari plays for .'],\n", " ['Izet Hajrović plays for .'],\n", " ['Ragnar Klavan plays for .'],\n", " ['Didier Zokora plays for .'],\n", " ['Oscar Ustari plays for .'],\n", " ['Mitchell Langerak plays for .'],\n", " ['Yassine Bounou plays for .'],\n", " ['Hakim Ziyech plays for .'],\n", " ['Lydia Williams plays for .'],\n", " ['Gabriel Jesus plays for .'],\n", " ['Álvaro Fernández plays for .'],\n", " ['Abdoulaye Ba plays for .'],\n", " ['Julian Draxler plays for .'],\n", " ['Stoycho Mladenov plays for .'],\n", " ['Raphaël Guerreiro plays for .'],\n", " ['Simão Sabrosa plays for .'],\n", " ['Anouk Hoogendijk plays for .'],\n", " ['Emanuel Pogatetz plays for .'],\n", " ['Yannick Carrasco plays for .'],\n", " ['Marko Arnautović plays for .'],\n", " ['Bruno Uvini plays for .'],\n", " ['Lukáš Hrádecký plays for .'],\n", " ['Charles Itandje plays for .'],\n", " ['Ján Mucha plays for .'],\n", " ['Florent Piétrus plays for .'],\n", " ['Riyad Mahrez plays for .'],\n", " ['Andre Iguodala plays for .'],\n", " ['Lasse Norman Hansen plays for .'],\n", " ['Nikos Zisis plays for .'],\n", " ['Alou Diarra plays for .'],\n", " ['Przemysław Tytoń plays for .'],\n", " ['Lucas Moura plays for .'],\n", " ['Álvaro Morata plays for .'],\n", " ['Amandine Henry plays for .'],\n", " ['Jefferson Farfán plays for .'],\n", " ['Martin Braithwaite plays for .'],\n", " ['Tom Heaton plays for .'],\n", " ['Carlos Salcedo plays for .'],\n", " ['Gabriel Torje plays for .'],\n", " ['Emily van Egmond plays for .'],\n", " ['Nicolás Laprovíttola plays for .'],\n", " ['Simon Clarke plays for .'],\n", " ['Elias Kachunga plays for .'],\n", " ['Adrián López Álvarez plays for .'],\n", " ['Maurice Edu plays for .'],\n", " ['Hatem Ben Arfa plays for .'],\n", " ['Nelson Oliveira plays for .'],\n", " ['Aco Stojkov plays for .'],\n", " ['Roy Miller plays for .'],\n", " ['Charlie Davies plays for .'],\n", " ['Carlos Fernandes plays for .'],\n", " ['Thaisa plays for .'],\n", " ['Álvaro Saborío plays for .'],\n", " ['Gabriel Cichero plays for .'],\n", " ['Fernandinho plays for .'],\n", " ['Vladimir Gabulov plays for .'],\n", " ['Taylor Rochestie plays for .'],\n", " ['Sven Bender plays for .'],\n", " ['Matías Aguirregaray plays for .'],\n", " ['Wilfried Zaha plays for .'],\n", " ['Ibrahim Afellay plays for .'],\n", " ['Mateo Kovačić plays for .'],\n", " ['Matteo Darmian plays for .'],\n", " ['Nathan Jawai plays for .'],\n", " ['Jérémy Ménez plays for .'],\n", " ['Marc Bartra plays for .'],\n", " ['Éric Djemba-Djemba plays for .'],\n", " ['Tarik Elyounoussi plays for .'],\n", " ['Yacine Brahimi plays for .'],\n", " ['Omar Bravo plays for .'],\n", " ['Yuri Zhirkov plays for .'],\n", " ['Antonio Valencia plays for .'],\n", " ['Kenneth Vermeer plays for .'],\n", " ['Dmytro Chyhrynskyi plays for .'],\n", " ['Juan Manuel Iturbe plays for .'],\n", " ['Julian de Guzman plays for .'],\n", " ['Alexander Merkel plays for .'],\n", " ['Roman Eremenko plays for .'],\n", " ['Lars Bender plays for .'],\n", " ['Suk Hyun-jun plays for .'],\n", " ['Emre Mor plays for .'],\n", " ['Zoran Tošić plays for .'],\n", " ['Jonathan dos Santos plays for .'],\n", " ['Jonathan Mensah plays for .'],\n", " ['Enzo Fernández plays for .'],\n", " ['Kim Young-gwon plays for .'],\n", " ['Oscar Pérez Rojas plays for .'],\n", " ['Astrit Ajdarević plays for .'],\n", " ['Rolf Feltscher plays for .'],\n", " ['Vedran Ćorluka plays for .'],\n", " ['Darren Randolph plays for .'],\n", " ['Ivan Pelizzoli plays for .'],\n", " ['Radomir Đalović plays for .'],\n", " ['Kristie Mewis plays for .'],\n", " ['Hannes Þór Halldórsson plays for .'],\n", " ['Valon Berisha plays for .'],\n", " ['Marco Donadel plays for .'],\n", " ['Ola Toivonen plays for .'],\n", " ['Winston Reid plays for .'],\n", " ['Saki Kumagai plays for .'],\n", " ['Branko Ilić plays for .'],\n", " ['Răzvan Raț plays for .'],\n", " ['Robert Snodgrass plays for .'],\n", " ['Viola plays for .'],\n", " ['Klay Thompson plays for .'],\n", " ['Stefan Nikolić plays for .'],\n", " ['Carlos Sainz Jr plays for .'],\n", " ['Andressa Alves da Silva plays for .'],\n", " ['Álvaro Negredo plays for .'],\n", " ['Michail Antonio plays for .'],\n", " ['José Bosingwa plays for .'],\n", " ['Atsuto Uchida plays for .'],\n", " ['Lisa Dahlkvist plays for .'],\n", " ['James Troisi plays for .'],\n", " ['Yacouba Sylla plays for .'],\n", " ['Simon Vukčević plays for .'],\n", " ['Cristian Gamboa plays for .'],\n", " ['Elisa Longo Borghini plays for .'],\n", " ['Roberto Soldado plays for .'],\n", " ['Diana Matheson plays for .'],\n", " ['Steven Caulker plays for .'],\n", " ['Ibrahima Baldé plays for .'],\n", " ['Max Meyer plays for .'],\n", " ['Mbark Boussoufa plays for .'],\n", " ['Achille Emaná plays for .'],\n", " ['Patrice Bernier plays for .'],\n", " ['Ivan Vicelich plays for .'],\n", " ['Islam Slimani plays for .'],\n", " ['Dani Ceballos plays for .'],\n", " ['Lucas Digne plays for .'],\n", " ['Nemanja Matić plays for .'],\n", " ['Andreas Pereira plays for .'],\n", " ['Franck Dja Djédjé plays for .'],\n", " ['Ethan Ampadu plays for .'],\n", " ['R.A. Dickey plays for .'],\n", " ['Mike Havenaar plays for .'],\n", " ['Yukari Kinga plays for .'],\n", " ['Ryan Bertrand plays for .'],\n", " ['Ed Clancy plays for .'],\n", " ['Holger Badstuber plays for .'],\n", " ['Cristian Săpunaru plays for .'],\n", " ['Elinton Andrade plays for .'],\n", " ['Siem de Jong plays for .'],\n", " ['Carlos Bueno plays for .'],\n", " ['Loïc Rémy plays for .'],\n", " ['Kozue Ando plays for .'],\n", " ['Jimmy Durmaz plays for .'],\n", " ['Rafael Pereira da Silva plays for .'],\n", " ['Óscar Duarte plays for .'],\n", " ['Michael Hector plays for .'],\n", " ['Alex McCarthy plays for .'],\n", " ['Dzsenifer Marozsán plays for .'],\n", " ['Nélson Oliveira plays for .'],\n", " ['Fabio Aru plays for .'],\n", " ['Sacha Kljestan plays for .'],\n", " ['Sofiane Feghouli plays for .'],\n", " ['Emerson Palmieri plays for .'],\n", " ['Hristijan Kirovski plays for .'],\n", " ['Santiago Cazorla plays for .'],\n", " ['Melanie Behringer plays for .'],\n", " ['Hugo Vieira plays for .'],\n", " ['Hernanes plays for .'],\n", " ['Isabelle Yacoubou plays for .'],\n", " ['Hakan Çalhanoğlu plays for .'],\n", " ['Douglas dos Santos plays for .'],\n", " ['Sinan Bolat plays for .'],\n", " ['Esteban Chaves plays for .'],\n", " ['Marcos Lopes plays for .'],\n", " ['J. J. Barea plays for .'],\n", " ['Mario Suárez Mata plays for .'],\n", " ['Stine Bredal Oftedal plays for .'],\n", " ['Njazi Kuqi plays for .'],\n", " ['Jesús Navas plays for .'],\n", " ['Shane Duffy plays for .'],\n", " ['Willy Hernangómez plays for .'],\n", " ['Rafael Bastos plays for .'],\n", " ['Carlos Beltrán plays for .'],\n", " ['Nelson Cruz plays for .'],\n", " ['Fiodor Smolov plays for .'],\n", " ['Boban Marjanović plays for .'],\n", " ['Fabián Carini plays for .'],\n", " ['Shelina Zadorsky plays for .'],\n", " ['Pavel Pogrebnyak plays for .'],\n", " ['Goran Pandev plays for .'],\n", " ['Marc Janko plays for .'],\n", " ['Jamal Alioui plays for .'],\n", " ['Mohammadou Idrissou plays for .'],\n", " ['Ousmane Dembélé plays for .'],\n", " ['Gordon Schildenfeld plays for .'],\n", " ['Bauke Mollema plays for .'],\n", " ['Kalu Uche plays for .'],\n", " ['Burak Yılmaz plays for .'],\n", " ['Jimmy Butler plays for .'],\n", " ['Eduardo da Silva plays for .'],\n", " ['Jefferson Louis plays for .'],\n", " ['Diomansy Kamara plays for .'],\n", " [\"Franck Songo'o plays for .\"],\n", " ['Marco Rojas plays for .'],\n", " ['Aarón Ñíguez plays for .'],\n", " ['Victor Lindelöf plays for .'],\n", " ['Iván Kaviedes plays for .'],\n", " ['Nikola Kalinić plays for .'],\n", " ['Jajá plays for .'],\n", " ['Iván Zarandona plays for .'],\n", " ['DeAndre Yedlin plays for .'],\n", " ['Ikechi Anya plays for .'],\n", " ['Anthony Lopes plays for .'],\n", " ['Clemente Rodríguez plays for .'],\n", " ['Jan Oblak plays for .'],\n", " ['Ritchie De Laet plays for .'],\n", " ['Lassana Diarra plays for .'],\n", " ['Kalidou Koulibaly plays for .'],\n", " ['Kostas Mitroglou plays for .'],\n", " ['Mario Lemina plays for .'],\n", " ['Mindaugas Kalonas plays for .'],\n", " ['Giovanni Sio plays for .'],\n", " ['Tijani Belaïd plays for .'],\n", " ['Park Joo-ho plays for .'],\n", " ['Emir Spahić plays for .'],\n", " ['Nikica Jelavić plays for .'],\n", " ['Erich Brabec plays for .'],\n", " ['Christian Cueva plays for .'],\n", " ['Yevhen Konoplyanka plays for .'],\n", " ['Paulo Dybala plays for .'],\n", " ['Emanuel Herrera plays for .'],\n", " ['Ludovic Obraniak plays for .'],\n", " ['Kleyr Vieira dos Santos plays for .'],\n", " ['Andriy Yakovlev plays for .'],\n", " ['DeMarcus Cousins plays for .'],\n", " ['Ross McCormack plays for .'],\n", " ['Taylor Phinney plays for .'],\n", " ['Maksim Shatskikh plays for .'],\n", " ['Abby Erceg plays for .'],\n", " ['Yukiya Arashiro plays for .'],\n", " ['Magaye Gueye plays for .'],\n", " ['Jason Denayer plays for .'],\n", " [\"Jolien D'Hoore plays for .\"],\n", " ['Marco Reus plays for .'],\n", " ['Michael Matthews plays for .'],\n", " ['Halil Altıntop plays for .'],\n", " ['Diego Tardelli plays for .'],\n", " ['Isaac Promise plays for .'],\n", " ['Estelle Nze Minko plays for .'],\n", " ['Sergio Henao plays for .'],\n", " ['Andriy Yarmolenko plays for .'],\n", " ['Kamil Grosicki plays for .'],\n", " ['Fabinho plays for .'],\n", " ['Ishak Belfodil plays for .'],\n", " ['Tosaint Ricketts plays for .'],\n", " ['Linda Sembrant plays for .'],\n", " ['Tuncay Şanlı plays for .'],\n", " ['Hameur Bouazza plays for .'],\n", " ['Vladimír Weiss plays for .'],\n", " ['Bernard Mendy plays for .'],\n", " ['Matt Miazga plays for .'],\n", " ['Marcos Alonso plays for .'],\n", " ['Liassine Cadamuro plays for .'],\n", " ['Adam Federici plays for .'],\n", " ['Miloš Teodosić plays for .'],\n", " ['Ellen White plays for .'],\n", " ['Román Torres plays for .'],\n", " ['Brown Ideye plays for .'],\n", " ['Trixi Worrack plays for .'],\n", " ['Sead Kolašinac plays for .'],\n", " ['Bernardo Silva plays for .'],\n", " ['Nils Petersen plays for .'],\n", " ['Oriol Romeu plays for .'],\n", " ['Adolfo Machado plays for .'],\n", " ['Filipe Machado Nascimento plays for .'],\n", " ['Rubén Iván Martínez plays for .'],\n", " ['Josephine Henning plays for .'],\n", " ['Dani Carvajal plays for .'],\n", " ['Joël Matip plays for .'],\n", " ['Marcus Berg plays for .'],\n", " ['Julio César de León plays for .'],\n", " ['Salomón Rondón plays for .'],\n", " ['Hajime Hosogai plays for .'],\n", " ['Edgar Ié plays for .'],\n", " ['Martín Montoya plays for .'],\n", " ['Lucas Piazón plays for .'],\n", " ['Markus Rosenberg plays for .'],\n", " ['Ognjen Vranješ plays for .'],\n", " ['Róbinson Zapata plays for .'],\n", " ['Sébastien Pocognoli plays for .'],\n", " ['Anders Lindegaard plays for .'],\n", " ['Jordan Henderson plays for .'],\n", " ['Josip Drmić plays for .'],\n", " ['Juan Bernat plays for .'],\n", " ['Miranda plays for .'],\n", " ['Egan Bernal plays for .'],\n", " ['Camille Abily plays for .'],\n", " ['Stefan Maierhofer plays for .'],\n", " ['Matthieu Dossevi plays for .'],\n", " ['Bafétimbi Gomis plays for .'],\n", " ['Ignatas Konovalovas plays for .'],\n", " ['Karina Maruyama plays for .'],\n", " ['Adreian Payne plays for .'],\n", " ['Enzo Maresca plays for .'],\n", " ['Tomáš Vaclík plays for .'],\n", " ['Zack Steffen plays for .'],\n", " ['Ricardo Oliveira plays for .'],\n", " ['Yun Suk-young plays for .'],\n", " ['Giannelli Imbula plays for .'],\n", " ['Lorenzo Insigne plays for .'],\n", " ['Malcom plays for .'],\n", " ['Albert Bunjaku plays for .'],\n", " ['Victor Obinna plays for .'],\n", " ['William Carvalho plays for .'],\n", " ['Miguel Veloso plays for .'],\n", " ['Felipe Anderson plays for .'],\n", " ['Isaac Cuenca plays for .'],\n", " ['Luis Antonio Jiménez plays for .'],\n", " ['Curtis Davies plays for .'],\n", " ['Dan Ito plays for .'],\n", " ['Odysseas Vlachodimos plays for .'],\n", " ['Eljero Elia plays for .'],\n", " ['Fernando Amorebieta plays for .'],\n", " ['Renato Augusto plays for .'],\n", " ['Milan Mačvan plays for .'],\n", " ['Vivianne Miedema plays for .'],\n", " ['Fabian Schär plays for .'],\n", " ['Ashleigh Moolman-Pasio plays for .'],\n", " ['Marcus Rashford plays for .'],\n", " ['André Gomes plays for .'],\n", " ['Dominique Malonga plays for .'],\n", " ['Max Verstappen plays for .'],\n", " ['Mehdi Abeid plays for .'],\n", " ['Alanna Kennedy plays for .'],\n", " ['Ahmed Hegazi plays for .'],\n", " ['Alen Halilović plays for .'],\n", " ['Kenny Miller plays for .'],\n", " ['Dimitris Papadopoulos plays for .'],\n", " ['Adriano Correia Claro plays for .'],\n", " ['Fran Mérida plays for .'],\n", " ['Idrissa Gueye plays for .'],\n", " ['Shahid Afridi plays for .'],\n", " ['Jurica Buljat plays for .'],\n", " ['Adrianna Franch plays for .'],\n", " ['Ludovic Giuly plays for .'],\n", " ['Nastja Čeh plays for .'],\n", " ['Zé Eduardo plays for .'],\n", " ['Riccardo Montolivo plays for .'],\n", " ['Benedikt Höwedes plays for .'],\n", " ['Luka Jović plays for .'],\n", " ['José Holebas plays for .'],\n", " ['Yasuhito Endo plays for .'],\n", " ['Artem Dzyuba plays for .'],\n", " ['Moussa Sow plays for .'],\n", " ['Tomáš Kalas plays for .'],\n", " ['Luis Aguiar plays for .'],\n", " ['Yossi Benayoun plays for .'],\n", " ['Nick Calathes plays for .'],\n", " ['Jorge Ribeiro plays for .'],\n", " ['Wilfried Bony plays for .'],\n", " ['Jamal Blackman plays for .'],\n", " ['Diego Alves plays for .'],\n", " ...],\n", " 'labels': [[[\" United States women's national soccer team\"]],\n", " [[' FC Barcelona']],\n", " [[' Juventus F.C.']],\n", " [[' Los Angeles Lakers']],\n", " [[' Bingoal-Chevalmeire']],\n", " [[' A.C. Milan']],\n", " [[' Brazil national football team']],\n", " [[' Independiente Santa Fe']],\n", " [[' OL Reign']],\n", " [[\" Spain men's national basketball team\"]],\n", " [[' West Ham United F.C.']],\n", " [[' FC Bayern Munich']],\n", " [[' Juventus F.C.']],\n", " [[' New York City FC']],\n", " [[' Brooklyn Nets']],\n", " [[' Antalyaspor']],\n", " [[' Mercedes']],\n", " [[' São José Esporte Clube']],\n", " [[' Japan Fed Cup team']],\n", " [[' Juventus F.C.']],\n", " [[' FC Barcelona']],\n", " [[' ACF Fiorentina']],\n", " [[' Zhejiang Professional F.C.']],\n", " [[' Ineos Grenadiers']],\n", " [[' FC Barcelona Femení']],\n", " [[' FC Bayern Munich']],\n", " [[\" United States women's national soccer team\"]],\n", " [[' Hebei F.C.']],\n", " [[' Bahrain Victorious']],\n", " [[' Colombia national football team']],\n", " [[' OL Reign']],\n", " [[' Club Atlético Peñarol']],\n", " [[' Audax Italiano']],\n", " [[' NJ/NY Gotham FC']],\n", " [[' FC Rosengård']],\n", " [[' LA Galaxy']],\n", " [[' Royal Challengers Bangalore']],\n", " [[' Paris Saint-Germain F.C.']],\n", " [[' Vissel Kobe']],\n", " [[' Derby County F.C.']],\n", " [[' Botafogo F.R.']],\n", " [[' Argentina national football team']],\n", " [[' Liv Racing']],\n", " [[' Real Madrid CF']],\n", " [[' São Paulo FC']],\n", " [[' Boca Juniors']],\n", " [[' A.C. Milan']],\n", " [[' LA Galaxy']],\n", " [[' Arsenal F.C.']],\n", " [[' Tampa Bay Rowdies']],\n", " [[' Paris Saint-Germain F.C.']],\n", " [[' Minnesota Lynx']],\n", " [[' Juventus F.C.']],\n", " [[' İstanbul Başakşehir FC']],\n", " [[' Chicago Fire FC']],\n", " [[' Olimpia Milano']],\n", " [[' FC Bayern Munich']],\n", " [[' Unione Sportiva Sassuolo Calcio']],\n", " [[' Trek–Segafredo']],\n", " [[' Atlas F.C.']],\n", " [[' Chicago Bulls']],\n", " [[' FC Groningen']],\n", " [[' Houston Rockets']],\n", " [[' AS Monaco FC']],\n", " [[' LA Galaxy']],\n", " [[' Coritiba F.C.']],\n", " [[' Arsenal F.C.']],\n", " [[' FC Bayern Munich']],\n", " [[' Swiss national football team']],\n", " [[' Los Angeles Lakers']],\n", " [[' Matrix Fitness']],\n", " [[' Horoya AC']],\n", " [[' Lotto–Soudal']],\n", " [[' Seattle Storm']],\n", " [[' Parma Calcio 1913']],\n", " [[' Washington Spirit']],\n", " [[' France national association football team']],\n", " [[' Egypt national football team']],\n", " [[' Netherlands national association football team']],\n", " [[' West Ham United F.C.']],\n", " [[' Toronto FC']],\n", " [[' Los Angeles Lakers']],\n", " [[' Sociedad Deportiva Huesca']],\n", " [[' Japan national football team']],\n", " [[' Crystal Palace F.C.']],\n", " [[' Standard Liège']],\n", " [[' FC Bayern Munich']],\n", " [[' Portland Thorns FC']],\n", " [[' France national association football team']],\n", " [[' São Paulo FC']],\n", " [[' Associação Académica de Coimbra – O.A.F.']],\n", " [[' Algeria national football team']],\n", " [[' Bora-Hansgrohe']],\n", " [[' Costa Rica national football team']],\n", " [[' Real Madrid CF']],\n", " [[' Cofidis']],\n", " [[' Germany national association football team']],\n", " [[' SC Freiburg']],\n", " [[' Trek–Segafredo']],\n", " [[' Paraguay national football team']],\n", " [[' Rayo OKC']],\n", " [[' Manchester United F.C.']],\n", " [[' Club de Fútbol Monterrey']],\n", " [[' Juventus F.C.']],\n", " [[' CCC Team']],\n", " [[' Fleury Loiret HB']],\n", " [[' Hawks']],\n", " [[' FC Bayern Munich']],\n", " [[' Meridiana-Kamen']],\n", " [[' Boavista F.C.']],\n", " [[' Brooklyn Nets']],\n", " [[' Scuderia Ferrari']],\n", " [[\" Norway women's national football team\"]],\n", " [[' Leicester City F.C.']],\n", " [[' EF Education-Nippo']],\n", " [[' Aalesunds FK']],\n", " [[' Portland Thorns FC']],\n", " [[' Chelsea F.C.']],\n", " [[' Real Madrid CF']],\n", " [[' Galatasaray S.K.']],\n", " [[' Astana Qazaqstan Team']],\n", " [[' Al Ahli Saudi FC']],\n", " [[' Trabzonspor']],\n", " [[' Shanghai Port F.C.']],\n", " [[' Real Madrid Baloncesto']],\n", " [[' Trek–Segafredo']],\n", " [[' Sociedade Esportiva Palmeiras']],\n", " [[' Ineos Grenadiers']],\n", " [[' FC Baník Ostrava']],\n", " [[' Swansea City A.F.C.']],\n", " [[' Germany national association football team']],\n", " [[' Clube de Regatas do Flamengo']],\n", " [[' FC Dynamo Brest']],\n", " [[' SD Worx']],\n", " [[' Brazil national football team']],\n", " [[' Maccabi Haifa F.C.']],\n", " [[' Paris Saint-Germain F.C.']],\n", " [[' Los Angeles Clippers']],\n", " [[' Paris Saint-Germain Féminine']],\n", " [[' Olympiacos F.C.']],\n", " [[' Inter Milan']],\n", " [[' Houston Dash']],\n", " [[' Al-Duhail SC']],\n", " [[' F.C. Porto']],\n", " [[' Brazil national football team']],\n", " [[' Senegal national association football team']],\n", " [[' Chicago Red Stars']],\n", " [[' Real Madrid CF']],\n", " [[' Yamaha Motor Racing']],\n", " [[' Stoke City F.C.']],\n", " [[' Real Zaragoza']],\n", " [[' Atlético Madrid']],\n", " [[' Olympique de Marseille']],\n", " [[' O.F.K. Beograd']],\n", " [[' Belgium national football team']],\n", " [[' R.S.C. Anderlecht']],\n", " [[' Pune F.C.']],\n", " [[' ACF Fiorentina']],\n", " [[' Stabæk Fotball']],\n", " [[' Team BikeExchange']],\n", " [[' Cerro Porteño']],\n", " [[' Dundee United F.C.']],\n", " [[' Agrotikos Asteras F.C.']],\n", " [[' Germany national association football team']],\n", " [[' Jiangsu F.C.']],\n", " [[' SV Werder Bremen']],\n", " [[' Orlando City SC']],\n", " [[' FC Barcelona']],\n", " [[' FC Rosengård']],\n", " [[' Bristol City F.C.']],\n", " [[\" Sweden women's national association football team\"]],\n", " [[' Spain national association football team']],\n", " [[' Juventus F.C.']],\n", " [[' Team Jumbo-Visma']],\n", " [[' Ceratizit–WNT Pro Cycling']],\n", " [[' Rosenborg BK']],\n", " [[' Hokkaido Consadole Sapporo']],\n", " [[' Comunicaciones FC']],\n", " [[' TSG 1899 Hoffenheim']],\n", " [[' Inter Milan']],\n", " [[' Galatasaray S.K.']],\n", " [[' France national association football team']],\n", " [[' Team Jumbo-Visma']],\n", " [[' Team DSM']],\n", " [[' NJ/NY Gotham FC']],\n", " [[' Brisbane Roar FC W-League']],\n", " [[' Real Betis Balompié']],\n", " [[' Washington Mystics']],\n", " [[' Olympique Lyonnais Féminin']],\n", " [[' Lotto–Soudal']],\n", " [[' Phoenix Mercury']],\n", " [[' Yokohama FC']],\n", " [[' Manchester City F.C.']],\n", " [[' Borussia Dortmund']],\n", " [[' PSV Eindhoven']],\n", " [[' France national association football team']],\n", " [[' Tampa Bay Buccaneers']],\n", " [[' Aston Villa F.C.']],\n", " [[' Borussia Dortmund']],\n", " [[' Göztepe S.K.']],\n", " [[' Baniyas SC']],\n", " [[' Real Madrid CF']],\n", " [[' Manchester United F.C.']],\n", " [[' Atlético Madrid']],\n", " [[' Belgium national football team']],\n", " [[' Norway national association football team']],\n", " [[' FC Barcelona']],\n", " [[\" United States men's national soccer team\"]],\n", " [[' Real Madrid CF']],\n", " [[' Shanghai Shenhua F.C.']],\n", " [[' Maccabi Tel Aviv B.C.']],\n", " [[' SV Werder Bremen']],\n", " [[' Tottenham Hotspur F.C.']],\n", " [[' Belgium national football team']],\n", " [[' Arsenal F.C.']],\n", " [[' Deportivo de La Coruña']],\n", " [[' Toronto Raptors']],\n", " [[' Hamburger SV']],\n", " [[' Belgium national football team']],\n", " [[' FC Ryukyu']],\n", " [[' Málaga CF']],\n", " [[' S.S.C. Napoli']],\n", " [[' Israel Start-Up Nation']],\n", " [[' San Antonio Spurs']],\n", " [[' Paris Saint-Germain F.C.']],\n", " [[' New York Knicks']],\n", " [[' Minnesota Timberwolves']],\n", " [[' F.C. Copenhagen']],\n", " [[' Club Atlético River Plate']],\n", " [[' Manchester City F.C.']],\n", " [[' Portland Thorns FC']],\n", " [[' FC Bayern Munich']],\n", " [[' France national association football team']],\n", " [[' Club Atlético Peñarol']],\n", " [[' Dalian Professional F.C.']],\n", " [[' Italy national association football team']],\n", " [[' Senegal national association football team']],\n", " [[' France national association football team']],\n", " [[' Lotto–Soudal']],\n", " [[' A.C. Milan']],\n", " [[' 1. FC Union Berlin']],\n", " [[' Denmark national association football team']],\n", " [[' Fenerbahçe SK']],\n", " [[' Galatasaray S.K.']],\n", " [[' Atlanta United FC']],\n", " [[' Swansea City A.F.C.']],\n", " [[' Spain national association football team']],\n", " [[' Cameroon national football team']],\n", " [[' Arsenal F.C.']],\n", " [[' FC Rosengård']],\n", " [[' Galatasaray S.K.']],\n", " [[' Italy national association football team']],\n", " [[' Morocco national football team']],\n", " [[' Accra Great Olympics F.C.']],\n", " [[' West Bromwich Albion F.C.']],\n", " [[' Netherlands national association football team']],\n", " [[' DR Congo national football team']],\n", " [[' Brazil national football team']],\n", " [[' FC Seoul']],\n", " [[' FC Bayern Munich']],\n", " [[' AFC Ajax']],\n", " [[' New Zealand national rugby union team']],\n", " [[\" United States women's national soccer team\"]],\n", " [[' Inter Milan']],\n", " [[' Santos F.C.']],\n", " [[' Shanghai Port F.C.']],\n", " [[' Sevilla FC']],\n", " [[' Morocco national football team']],\n", " [[' Sweden national association football team']],\n", " [[' Hertha BSC']],\n", " [[' Manchester City W.F.C.']],\n", " [[' Portugal national association football team']],\n", " [[' TuS Haltern']],\n", " [[' Baniyas SC']],\n", " [[' 1. FFC Frankfurt']],\n", " [[' Chelsea F.C.']],\n", " [[' West Ham United F.C.']],\n", " [[' FC Koper']],\n", " [[' Wadi Degla SC']],\n", " [[' Al-Duhail SC']],\n", " [[' S.C. Braga']],\n", " [[' ACF Fiorentina']],\n", " [[' Real Betis Balompié']],\n", " [[' Brisbane Roar FC']],\n", " [[' Fenerbahçe SK']],\n", " [[' Storey Racing']],\n", " [[' Israel Start-Up Nation']],\n", " [[' Arkéa–Samsic']],\n", " [[' Germany national association football team']],\n", " [[' Genoa CFC']],\n", " [[' FC Metz']],\n", " [[' Los Angeles Sparks']],\n", " [[' West Ham United F.C.']],\n", " [[' Villarreal CF']],\n", " [[' Santos F.C.']],\n", " [[' Club Universidad de Chile']],\n", " [[' Sevilla FC']],\n", " [[' Sevilla FC']],\n", " [[' Chelsea F.C.']],\n", " [[' Atlanta Hawks']],\n", " [[' Olimpia Milano']],\n", " [[' Netherlands national association football team']],\n", " [[' Chile national football team']],\n", " [[' Croatia national association football team']],\n", " [[' Ineos Grenadiers']],\n", " [[' Tigres UANL']],\n", " [[' KFUM-Kameratene Oslo']],\n", " [[' Western New York Flash']],\n", " [[' Netherlands national association football team']],\n", " [[' Olympique Antibes']],\n", " [[' Eintracht Frankfurt']],\n", " [[' Melbourne Victory']],\n", " [[\" Fenerbahçe Men's Basketball\"]],\n", " [[' Manchester City W.F.C.']],\n", " [[' Sociedade Esportiva Palmeiras']],\n", " [[' Sunderland A.F.C.']],\n", " [[' Belgium national football team']],\n", " [[' São Paulo FC']],\n", " [[' F.C. Crotone']],\n", " [[' UAE Team Emirates']],\n", " [[' Australia Billie Jean King Cup team']],\n", " [[' Guangzhou Football Club']],\n", " [[' Atlético Junior']],\n", " [[' Brazil national football team']],\n", " [[' Chicago Red Stars']],\n", " [[' Club Nacional de Football']],\n", " [[' Mexico national football team']],\n", " [[' Qhubeka Assos']],\n", " [[' Wolverhampton Wanderers F.C.']],\n", " [[' Germany national association football team']],\n", " [[' Bologna F.C. 1909']],\n", " [[' US Orléans']],\n", " [[' Deportivo Saprissa']],\n", " [[' Spain national association football team']],\n", " [[' Olympiacos F.C.']],\n", " [[' C.S. Cartaginés']],\n", " [[' Juventus F.C.']],\n", " [[' Belgium national football team']],\n", " [[' Kayserispor']],\n", " [[' Portugal national association football team']],\n", " [[' UAE Team Emirates']],\n", " [[' Italy national association football team']],\n", " [[' Qhubeka Assos']],\n", " [[' Denmark national association football team']],\n", " [[' Swiss national football team']],\n", " [[' FC Barcelona Bàsquet']],\n", " [[' Poland national association football team']],\n", " [[' Renault F1 Team']],\n", " [[' Borussia Dortmund']],\n", " [[' Cleveland Cavaliers']],\n", " [[' Hebei F.C.']],\n", " [[' UAE Team ADQ']],\n", " [[' Borussia Dortmund']],\n", " [[' Club Atlético Talleres']],\n", " [[' Toulon Saint-Cyr Var Handball']],\n", " [[' Portland Trail Blazers']],\n", " [[' Trek–Segafredo']],\n", " [[' Ivory Coast national football team']],\n", " [[' A.S. Roma']],\n", " [[' Yokohama FC']],\n", " [[' Seattle Sounders FC']],\n", " [[' UAE Team Emirates']],\n", " [[' Peru national football team']],\n", " [[' Portugal national association football team']],\n", " [[' France national association football team']],\n", " [[' Beşiktaş J.K.']],\n", " [[' Swiss national football team']],\n", " [[' Sydney FC']],\n", " [[' Cruzeiro E.C.']],\n", " [[' Burnley F.C.']],\n", " [[' CCC Team']],\n", " [[' Club Deportivo Universidad Católica']],\n", " [[' Everton F.C.']],\n", " [[' Parma Calcio 1913']],\n", " [[' West Ham United F.C.']],\n", " [[' Fleetwood Town F.C.']],\n", " [[' Fenerbahçe SK']],\n", " [[' Chelsea F.C. Women']],\n", " [[' Los Angeles Lakers']],\n", " [[' G.S. Iraklis Thessaloniki']],\n", " [[' NJ/NY Gotham FC']],\n", " [[' CR Vasco da Gama']],\n", " [[' S.L. Benfica']],\n", " [[' Spain national association football team']],\n", " [[' Inter Milan']],\n", " [[' Brazil national football team']],\n", " [[\" Sweden women's national association football team\"]],\n", " [[' Team Jumbo-Visma']],\n", " [[' France national association football team']],\n", " [[' Guangzhou City F.C.']],\n", " [[' VfL Wolfsburg Women']],\n", " [[' Wuhan F.C.']],\n", " [[' Genoa CFC']],\n", " [[' Western New York Flash']],\n", " [[' Okinawa SV']],\n", " [[' C.D. Guadalajara']],\n", " [[' Hebei F.C.']],\n", " [[' Spain national association football team']],\n", " [[' FC Astra Giurgiu']],\n", " [[' SV Werder Bremen']],\n", " [[' England national association football team']],\n", " [[' France national association football team']],\n", " [[' Guinea-Bissau national football team']],\n", " [[' N.E.C.']],\n", " [[' Mexico national football team']],\n", " [[' Czech Republic national beach soccer team']],\n", " [[' FC Yenisey Krasnoyarsk']],\n", " [[' Real Madrid CF']],\n", " [[' Quick-Step Alpha Vinyl Team']],\n", " [[' Costa Rica national football team']],\n", " [[\" Canada men's national soccer team\"]],\n", " [[' Poland national association football team']],\n", " [[' Russia national football team']],\n", " [[' Chile national football team']],\n", " [[' Real Madrid CF']],\n", " [[' Club Rubio Ñu']],\n", " [[' Senegal national association football team']],\n", " [[' A.C. Milan']],\n", " [[' Juventus F.C.']],\n", " [[' Roland Cogeas Edelweiss Squad']],\n", " [[' Salford City F.C.']],\n", " [[' Houston Rockets']],\n", " [[' Houston Rockets']],\n", " [[' Kawasaki Frontale']],\n", " [[' KIF Örebro DFF']],\n", " [[' Team BikeExchange Jayco']],\n", " [[' Estonia national football team']],\n", " [[' Germany national association football team']],\n", " [[' Rayo Vallecano']],\n", " [[' FK AS Trenčín']],\n", " [[' Bora-Hansgrohe']],\n", " [[' Real Sociedad']],\n", " [[' Antalyaspor']],\n", " [[' LA Galaxy']],\n", " [[' E.C. Vitória']],\n", " [[' AC Sparta Prague']],\n", " [[' Club Atlético River Plate']],\n", " [[' Spain national association football team']],\n", " [[' Astana Qazaqstan Team']],\n", " [[' Paris Saint-Germain F.C.']],\n", " [[' France national association football team']],\n", " [[' Manchester City F.C.']],\n", " [[' Team Jumbo-Visma']],\n", " [[' FC Bayern Munich']],\n", " [[' Quick-Step Alpha Vinyl Team']],\n", " [[' Portugal national association football team']],\n", " [[' Canyon–SRAM']],\n", " [[' Atlanta Hawks']],\n", " [[' Maccabi Haifa F.C.']],\n", " [[' Germany national association football team']],\n", " [[' Southampton F.C.']],\n", " [[' S.C. Internacional']],\n", " [[' Germany national association football team']],\n", " [[' Swiss national football team']],\n", " [[' Portugal national association football team']],\n", " [[' Juventus F.C.']],\n", " [[' 1. FC Nürnberg']],\n", " [[' Brazil national football team']],\n", " [[' FC Augsburg']],\n", " [[' Manchester City F.C.']],\n", " [[\" United States women's national soccer team\"]],\n", " [[' Tottenham Hotspur F.C.']],\n", " [[' Juventus F.C.']],\n", " [[' Spain national association football team']],\n", " [[' Milwaukee Bucks']],\n", " [[' Melbourne Victory']],\n", " [[' Shanghai Shenhua F.C.']],\n", " [[' Sektzia Nes Tziona F.C.']],\n", " [[' Seinäjoen Jalkapallokerho']],\n", " [[' Olympique Lyonnais']],\n", " [[' Orlando Pride']],\n", " [[' Leeds United F.C.']],\n", " [[' FC Sion']],\n", " [[' Orlando City SC']],\n", " [[' São Paulo FC']],\n", " [[' C.A. Vélez Sarsfield']],\n", " [[' 1. FSV Mainz 05']],\n", " [[' Tiburones Rojos de Veracruz']],\n", " [[' C.D. Guadalajara']],\n", " [[' Gwangju FC']],\n", " [[' Angers SCO']],\n", " [[' Netherlands national association football team']],\n", " [[' Chelsea F.C. Women']],\n", " [[' ACF Fiorentina']],\n", " [[' POFC Botev Vratsa']],\n", " [[' Pirata F.C']],\n", " [[' Leicester City F.C.']],\n", " [[' FC Zenit Saint Petersburg']],\n", " [[' Seattle Sounders FC']],\n", " [[' Mexico national football team']],\n", " [[' Houston Dash']],\n", " [[' FC Barcelona']],\n", " [[' Mumbai City FC']],\n", " [[' Élan Chalon']],\n", " [[' Atlético Sanluqueño CF']],\n", " [[' Manchester United W.F.C.']],\n", " [[' AFC Eskilstuna']],\n", " [[' Argentina national football team']],\n", " [[' Algeria national football team']],\n", " [[' Nigeria national football team']],\n", " [[' Nogoom FC']],\n", " [[' Hertha BSC']],\n", " [[' Shandong Taishan F.C.']],\n", " [[' Italy national association football team']],\n", " [[' Ivory Coast national football team']],\n", " [[\" Colo-Colo women's\"]],\n", " [[' Chicago Red Stars']],\n", " [[' A.S. Roma']],\n", " [[' Seoul E-Land FC']],\n", " [[' Germany national association football team']],\n", " [[' Germany national association football team']],\n", " [[' Charlotte Hornets']],\n", " [[' Comunicaciones FC']],\n", " [[' VfB Stuttgart']],\n", " [[' Italy national association football team']],\n", " [[' Brazil national football team']],\n", " [[' Liga Deportiva Alajuelense']],\n", " [[' Arsenal W.F.C.']],\n", " [[' Sweden national association football team']],\n", " [[' Mexico national football team']],\n", " [[' Italy national association football team']],\n", " [[' Spain national association football team']],\n", " [[' UAE Team Emirates']],\n", " [[' FC Rukh Lviv']],\n", " [[' Olympique de Marseille']],\n", " [[' South Korea national football team']],\n", " [[' Belgium national football team']],\n", " [[' Japan national football team']],\n", " [[' Nigeria national football team']],\n", " [[' TWENTY20 p/b Sho-Air']],\n", " [[' Valencia CF']],\n", " [[' Sociedade Esportiva Palmeiras']],\n", " [[' Szombathelyi Haladás']],\n", " [[' Seattle Sounders FC']],\n", " [[' Deportivo Toluca F.C.']],\n", " [[' PSV Eindhoven']],\n", " [[' VfB Stuttgart II']],\n", " [[' Astana Qazaqstan Team']],\n", " [[' Russia national football team']],\n", " [[' Helsingin Jalkapalloklubi']],\n", " [[' BC Rytas']],\n", " [[' A.S. Roma']],\n", " [[' Utah Jazz']],\n", " [[' Spain national association football team']],\n", " [[\" Germany women's national football team\"]],\n", " [[' FC Barcelona Bàsquet']],\n", " [[' Algeria national football team']],\n", " [[' Rio Ave F.C.']],\n", " [[' Manchester City F.C.']],\n", " [[' Swiss national football team']],\n", " [[' Iran national football team']],\n", " [[' Detroit Pistons']],\n", " [[' Bursaspor']],\n", " [[' Eintracht Frankfurt']],\n", " [[' Nigeria national football team']],\n", " [[' ACF Fiorentina']],\n", " [[' Newcastle United F.C.']],\n", " [[' Legia Warsaw']],\n", " [[' Venezuela national football team']],\n", " [[' France national association football team']],\n", " [[' Manchester City F.C.']],\n", " [[' C.F. Os Belenenses']],\n", " [[' Japan national football team']],\n", " [[' Central African Republic national football team']],\n", " [[' Germany national association football team']],\n", " [[' NK Olimpija Ljubljana']],\n", " [[' Swiss national football team']],\n", " [[' Mexico national football team']],\n", " [[' Las Vegas Aces']],\n", " [[' Norwich City F.C.']],\n", " [[' Santa Cruz Futebol Clube']],\n", " [[' Ceratizit–WNT Pro Cycling']],\n", " [[' Liverpool F.C.']],\n", " [[' TotalEnergies']],\n", " [[' Oeste Futebol Clube']],\n", " [[\" United States men's national soccer team\"]],\n", " [[' S.S.C. Napoli']],\n", " [[' Norway national association football team']],\n", " [[' FC Krasnodar']],\n", " [[' Legia Warsaw']],\n", " [[' Brazil national football team']],\n", " [[' North Macedonia national football team']],\n", " [[' Zhejiang Professional F.C.']],\n", " [[' Balıkesirspor']],\n", " [[' Talaba SC']],\n", " [[' Ghana national football team']],\n", " [[' Kayserispor']],\n", " [[' Arsenal F.C.']],\n", " [[' FC Ingolstadt 04']],\n", " [[' Sweden national association football team']],\n", " [[' Helsingin Jalkapalloklubi']],\n", " [[' Sydney FC']],\n", " [[' Philippines national football team']],\n", " [[' Olympiacos F.C.']],\n", " [[' Chelsea F.C. Women']],\n", " [[' S.S.C. Napoli']],\n", " [[' Al-Faisaly FC']],\n", " [[' Cruz Azul']],\n", " [[' FC Lokomotiv Moscow']],\n", " [[' Arsenal W.F.C.']],\n", " [[' Iran national football team']],\n", " [[' Orlando Pride']],\n", " [[' Porsche']],\n", " [[' Denmark national association football team']],\n", " [[' Club Social y Deportivo Colo Colo']],\n", " [[' England national association football team']],\n", " [[' South Korea national football team']],\n", " [[' Brest Bretagne Handball']],\n", " [[' AG2R Citroën Team']],\n", " [[' Swiss national football team']],\n", " [[' Chelsea F.C. Women']],\n", " [[' Dallas Mavericks']],\n", " [[' France national association football team']],\n", " [[' UnitedHealthcare']],\n", " [[' Spain national association football team']],\n", " [[' Linköpings FC']],\n", " [[' Nigeria national football team']],\n", " [[' Liverpool F.C.']],\n", " [[' Team BikeExchange Jayco']],\n", " [[' France national association football team']],\n", " [[' São Tomé and Príncipe national football team']],\n", " [[' Portugal national association football team']],\n", " [[' Australia national association football team']],\n", " [[' Portimonense S.C.']],\n", " [[' Denmark national association football team']],\n", " [[' Belgium national football team']],\n", " [[\" Japan women's national football team\"]],\n", " [[\" Canada women's national soccer team\"]],\n", " [[' OL Reign']],\n", " [[' Denmark national association football team']],\n", " [[' Germany national association football team']],\n", " [[' Brazil national football team']],\n", " [[' Montpellier Hérault Sport Club']],\n", " [[' Atlético Madrid']],\n", " [[' Norway national association football team']],\n", " [[' Hellas Verona F.C.']],\n", " [[' FC Shakhtar Donetsk']],\n", " [[' Olympique Lyonnais']],\n", " [[' FC Lausanne-Sport']],\n", " [[' Club Social y Deportivo Colo Colo']],\n", " [[' Coquimbo Unido']],\n", " [[' Unión Magdalena']],\n", " [[' Anorthosis Famagusta FC']],\n", " [[' K. Patro Eisden Maasmechelen']],\n", " [[' Al Ittihad FC']],\n", " [[' GNK Dinamo Zagreb']],\n", " [[' Cagliari Calcio']],\n", " [[' FC Pune City']],\n", " [[' Atlas F.C.']],\n", " [[' Australia national association football team']],\n", " [[' Morocco national football team']],\n", " [[' Morocco national football team']],\n", " [[' Arsenal W.F.C.']],\n", " [[' FC Barcelona']],\n", " [[' San Martín de Tucumán']],\n", " [[' Senegal national association football team']],\n", " [[' Germany national association football team']],\n", " [[' FC Kaisar']],\n", " [[' Portugal national association football team']],\n", " [[' NorthEast United FC']],\n", " [[' AFC Ajax Vrouwen']],\n", " [[' 1. FC Union Berlin']],\n", " [[' Belgium national football team']],\n", " [[' Stoke City F.C.']],\n", " [[' FC Twente']],\n", " [[' Finland national football team']],\n", " [[' Cameroon national football team']],\n", " [[' ŠK Slovan Bratislava']],\n", " [[' Orléans Loiret Basket']],\n", " [[' Algeria national football team']],\n", " [[' Miami Heat']],\n", " [[' Alpecin–Fenix']],\n", " [[' AEK Athens B.C.']],\n", " [[' Charlton Athletic F.C.']],\n", " [[' Poland national association football team']],\n", " [[' Brazil national football team']],\n", " [[' Spain national association football team']],\n", " [[' Olympique Lyonnais']],\n", " [[' Al Jazira Club']],\n", " [[' FC Barcelona']],\n", " [[' Aston Villa F.C.']],\n", " [[' Mexico national football team']],\n", " [[' Romania national association football team']],\n", " [[\" Australia women's national soccer team\"]],\n", " [[' Real Madrid Baloncesto']],\n", " [[' EF Education-Nippo']],\n", " [[' FC Ingolstadt 04']],\n", " [[' Club Atlético Osasuna']],\n", " [[' Philadelphia Union']],\n", " [[' Real Valladolid']],\n", " [[' Movistar Team']],\n", " [[' FK Vardar']],\n", " [[' Deportivo Saprissa']],\n", " [[' New England Revolution']],\n", " [[' UD Vilafranquense']],\n", " [[' Associação Ferroviária de Esportes']],\n", " [[' D.C. United']],\n", " [[' FC Sion']],\n", " [[' Brazil national football team']],\n", " [[' FC Dinamo Moscow']],\n", " [[' KK Crvena Zvezda']],\n", " [[' Germany national association football team']],\n", " [[' Uruguay national football team']],\n", " [[' Crystal Palace F.C.']],\n", " [[' PSV Eindhoven']],\n", " [[' Croatia national association football team']],\n", " [[' Parma Calcio 1913']],\n", " [[' Cairns Taipans']],\n", " [[' Paris FC']],\n", " [[' Spain national association football team']],\n", " [[' Voltigeurs de Châteaubriant']],\n", " [[' TSG 1899 Hoffenheim']],\n", " [[' Algeria national football team']],\n", " [[' North Carolina FC']],\n", " [[' Russia national football team']],\n", " [[' Real Madrid CF']],\n", " [[' Los Angeles FC']],\n", " [[' A.E.K. Athens F.C.']],\n", " [[' Club Tijuana']],\n", " [[' Ottawa Fury FC']],\n", " [[' Kazakhstan national football team']],\n", " [[' FC Rostov']],\n", " [[' Germany national association football team']],\n", " [[' South Korea national football team']],\n", " [[' Turkey national association football team']],\n", " [[' PFC CSKA Moscow']],\n", " [[' Villarreal CF']],\n", " [[' FC Anzhi Makhachkala']],\n", " [[' Real Madrid Castilla']],\n", " [[' South Korea national football team']],\n", " [[' CF Pachuca']],\n", " [[' Örebro SK']],\n", " [[' Venezuela national football team']],\n", " [[' FC Lokomotiv Moscow']],\n", " [[' Republic of Ireland national association football team']],\n", " [[' Vicenza Calcio']],\n", " [[' FK Budućnost Podgorica']],\n", " [[\" United States women's national soccer team\"]],\n", " [[' Iceland national association football team']],\n", " [[' Norway national association football team']],\n", " [[' CF Montréal']],\n", " [[' Sunderland A.F.C.']],\n", " [[' New Zealand national football team']],\n", " [[' Olympique Lyonnais Féminin']],\n", " [[' Urawa Red Diamonds']],\n", " [[' Rayo Vallecano']],\n", " [[' Scotland national football team']],\n", " [[' Clube Atlético Taboão da Serra']],\n", " [[' Golden State Warriors']],\n", " [[' LKS Nieciecza']],\n", " [[' McLaren']],\n", " [[\" Brazil women's national football team\"]],\n", " [[' Valencia CF']],\n", " [[' West Ham United F.C.']],\n", " [[' Trabzonspor']],\n", " [[' 1. FC Union Berlin']],\n", " [[' Paris Saint-Germain F.C.']],\n", " [[' Liaoning Whowin F.C.']],\n", " [[' Mali national football team']],\n", " [[' Enosis Neon Paralimni FC']],\n", " [[' Costa Rica national football team']],\n", " [[' Trek–Segafredo']],\n", " [[' Villarreal CF']],\n", " [[' Washington Spirit']],\n", " [[' Liverpool F.C.']],\n", " [[' Senegal national association football team']],\n", " [[' Crystal Palace F.C.']],\n", " [[' KAA Gent']],\n", " [[' Gimnàstic de Tarragona']],\n", " [[' CF Montréal']],\n", " [[' Auckland City FC']],\n", " [[' Algeria national football team']],\n", " [[' Spain national association football team']],\n", " [[' France national association football team']],\n", " [[' Manchester United F.C.']],\n", " [[' Santos FC']],\n", " [[' Al-Shahaniya Sports Club']],\n", " [[' Chelsea F.C.']],\n", " [[' Toronto Blue Jays']],\n", " [[' Ventforet Kofu']],\n", " [[' Orca Kamogawa FC']],\n", " [[' Southampton F.C.']],\n", " [[' JLT Condor']],\n", " [[' VfB Stuttgart']],\n", " [[' Kayserispor']],\n", " [[' Goa ISL team']],\n", " [[' Netherlands national association football team']],\n", " [[' Argentinos Juniors']],\n", " [[' Lille OSC']],\n", " [[' SGS Essen']],\n", " [[' Sweden national association football team']],\n", " [[' Olympique Lyonnais']],\n", " [[' Costa Rica national football team']],\n", " [[' Jamaica national association football team']],\n", " [[' Crystal Palace F.C.']],\n", " [[' Olympique Lyonnais Féminin']],\n", " [[' A.E.K. Athens F.C.']],\n", " [[' UAE Team Emirates']],\n", " [[' New York Red Bulls']],\n", " [[' Algeria national football team']],\n", " [[' A.S. Roma']],\n", " [[' FK Shkëndija']],\n", " [[' Villarreal CF']],\n", " [[' FC Bayern Munich Women']],\n", " [[' Gil Vicente F.C.']],\n", " [[' São Paulo FC']],\n", " [[' CJM Bourges Basket']],\n", " [[' Turkey national association football team']],\n", " [[' Brazil national football team']],\n", " [[' Turkey national association football team']],\n", " [[' Team BikeExchange Jayco']],\n", " [[' Lille OSC']],\n", " [[' Dallas Mavericks']],\n", " [[' Spain national association football team']],\n", " [[\" Norway women's national handball team\"]],\n", " [[' PK-35 Vantaa']],\n", " [[' Manchester City F.C.']],\n", " [[' Republic of Ireland national association football team']],\n", " [[' Philadelphia 76ers']],\n", " [[' América Futebol Clube (MG)']],\n", " [[' St. Louis Cardinals']],\n", " [[' Baltimore Orioles']],\n", " [[' Russia national football team']],\n", " [[' Dallas Mavericks']],\n", " [[' Juventud de Las Piedras']],\n", " [[' Orlando Pride']],\n", " [[' FC Dinamo Moscow']],\n", " [[' Genoa CFC']],\n", " [[' FC Basel']],\n", " [[\" Monts d'Or Azergues Foot\"]],\n", " [[' Maccabi Haifa F.C.']],\n", " [[' France national association football team']],\n", " [[' Anorthosis Famagusta FC']],\n", " [[' Trek–Segafredo']],\n", " [[' Unión Deportiva Almería']],\n", " [[' Beijing Guoan F.C.']],\n", " [[' Philadelphia 76ers']],\n", " [[' Legia Warsaw']],\n", " [[' Wealdstone F.C.']],\n", " [[' NorthEast United FC']],\n", " [[' PAS Giannina F.C.']],\n", " [[' New Zealand national football team']],\n", " [[' S.C. Braga']],\n", " [[' Sweden national association football team']],\n", " [[' Águilas CF']],\n", " [[' Atlético Madrid']],\n", " [[' K.S.C. Lokeren Oost-Vlaanderen']],\n", " [[' Burgos CF']],\n", " [[\" United States men's national soccer team\"]],\n", " [[' Scotland national football team']],\n", " [[' Portugal national association football team']],\n", " [[' Club Atlético Colón']],\n", " [[' Slovenia national football team']],\n", " [[' Middlesbrough F.C.']],\n", " [[' Olympique de Marseille']],\n", " [[' S.S.C. Napoli']],\n", " [[' S.L. Benfica']],\n", " [[' Gabon national football team']],\n", " [[' FK Kauno Žalgiris']],\n", " [[' Stade Rennais F.C.']],\n", " [[' Club Africain']],\n", " [[' South Korea national football team']],\n", " [[' Hamburger SV']],\n", " [[' Guizhou F.C.']],\n", " [[' FC Slovan Liberec']],\n", " [[' Peru national football team']],\n", " [[' Ukraine national association football team']],\n", " [[' Argentina national football team']],\n", " [[' FBC Melgar']],\n", " [[' Maccabi Haifa F.C.']],\n", " [[' Al-Faisaly SC']],\n", " [[' Speranța Nisporeni']],\n", " [[' Los Angeles Lakers']],\n", " [[' Fulham F.C.']],\n", " [[' EF Education-Nippo']],\n", " [[' FC Rukh Lviv']],\n", " [[' Western New York Flash']],\n", " [[' Bahrain Victorious']],\n", " [[' FK Qarabagh']],\n", " [[' Belgium national football team']],\n", " [[' SD Worx']],\n", " [[' Germany national association football team']],\n", " [[' Team DSM']],\n", " [[' FC Augsburg']],\n", " [[' Clube de Regatas do Flamengo']],\n", " [[' Kardemir Karabükspor']],\n", " [[\" France women's national handball team\"]],\n", " [[' UAE Team Emirates']],\n", " [[' West Ham United F.C.']],\n", " [[' Stade Rennais F.C.']],\n", " [[' Liverpool F.C.']],\n", " [[' Algeria national football team']],\n", " [[\" Canada men's national soccer team\"]],\n", " [[' Montpellier Hérault Sport Club']],\n", " [[' FC Pune City']],\n", " [[' Red Star F.C.']],\n", " [[' Al-Gharafa Sports Club']],\n", " [[' SC East Bengal']],\n", " [[\" United States men's national soccer team\"]],\n", " [[' Chelsea F.C.']],\n", " [[' Algeria national football team']],\n", " [[' Australia national association football team']],\n", " [[' Virtus Pallacanestro Bologna']],\n", " [[' Arsenal F.C.']],\n", " [[' Seattle Sounders FC']],\n", " [[' Nigeria national football team']],\n", " [[' Trek–Segafredo']],\n", " [[' Bosnia and Herzegovina national football team']],\n", " [[' Portugal national association football team']],\n", " [[' Germany national association football team']],\n", " [[' Southampton F.C.']],\n", " [[' Deportivo Saprissa']],\n", " [[' Saba Qom F.C.']],\n", " [[' Club Atlético Osasuna']],\n", " [[' Arsenal F.C.']],\n", " [[' Spain national association football team']],\n", " [[' Liverpool F.C.']],\n", " [[' FC Krasnodar']],\n", " [[' Club Atlético Platense']],\n", " [[' Everton F.C.']],\n", " [[' Buriram United F.C.']],\n", " [[' Villarreal CF']],\n", " [[' Real Betis Balompié']],\n", " [[' Chelsea F.C.']],\n", " [[' Malmö FF']],\n", " [[' Bosnia and Herzegovina national football team']],\n", " [[' Independiente Santa Fe']],\n", " [[' West Bromwich Albion F.C.']],\n", " [[' Preston North End F.C.']],\n", " [[' England national association football team']],\n", " [[' Swiss national football team']],\n", " [[' Spain national association football team']],\n", " [[' Jiangsu F.C.']],\n", " [[' Ineos Grenadiers']],\n", " [[' Olympique Lyonnais Féminin']],\n", " [[' FK AS Trenčín']],\n", " [[' Togo national football team']],\n", " [[' Al-Hilal SFC']],\n", " [[' Groupama-FDJ']],\n", " [[' Speranza Osaka-Takatsuki']],\n", " [[' ASVEL Basket']],\n", " [[' Palermo FC']],\n", " [[' Czech Republic national association football team']],\n", " [[\" United States men's national soccer team\"]],\n", " [[' Santos F.C.']],\n", " [[' South Korea national football team']],\n", " [[' Stoke City F.C.']],\n", " [[' Italy national association football team']],\n", " [[' FC Zenit Saint Petersburg']],\n", " [[' FC Viktoria Köln']],\n", " [[' MSV Duisburg']],\n", " [[' Portugal national association football team']],\n", " [[' Hellas Verona F.C.']],\n", " [[' Brazil national football team']],\n", " [[\" Hapoel Be'er Sheva F.C.\"]],\n", " [[' Al Nasr SC']],\n", " [[' Hull City A.F.C.']],\n", " [[' Thimpu FC']],\n", " [[' Panathinaikos F.C.']],\n", " [[' Feyenoord']],\n", " [[' Cerro Porteño']],\n", " [[' Brazil national football team']],\n", " [[' Olimpia Milano']],\n", " [[' Arsenal W.F.C.']],\n", " [[' Swiss national football team']],\n", " [[' Liv Racing']],\n", " [[' England national association football team']],\n", " [[' Everton F.C.']],\n", " [[' Congo national football team']],\n", " [[' Red Bull Racing']],\n", " [[' Algeria national football team']],\n", " [[\" Australia women's national soccer team\"]],\n", " [[' Egypt national football team']],\n", " [[' Croatia national association football team']],\n", " [[' Rangers F.C.']],\n", " [[' Atromitos F.C.']],\n", " [[' Club Athletico Paranaense']],\n", " [[' RCD Espanyol de Barcelona']],\n", " [[' Senegal national association football team']],\n", " [[' Melbourne Renegades']],\n", " [[' Hetten FC']],\n", " [[' Portland Thorns FC']],\n", " [[\" Monts d'Or Azergues Foot\"]],\n", " [[' NŠ Drava Ptuj']],\n", " [[' Al-Shaab CSC']],\n", " [[' A.C. Milan']],\n", " [[' Germany national association football team']],\n", " [[' Real Madrid CF']],\n", " [[' Greece national association football team']],\n", " [[' Gamba Osaka']],\n", " [[' Russia national football team']],\n", " [[' Shabab Al Ahli Club']],\n", " [[' Czech Republic national association football team']],\n", " [[' Club Atlético Peñarol']],\n", " [[' Maccabi Haifa F.C.']],\n", " [[' Panathinaikos B.C.']],\n", " [[' Atlético Clube de Portugal']],\n", " [[' Ivory Coast national football team']],\n", " [[' Chelsea F.C.']],\n", " [[' Brazil national football team']],\n", " ...],\n", " 'labels_ids': [[[315, 532, 390, 18, 632, 4191, 165]],\n", " [[5429, 4612]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[1287, 1422, 6772]],\n", " [[14365, 139, 337, 12, 16764, 6486, 1794, 1885]],\n", " [[83, 4, 347, 4, 7338]],\n", " [[2910, 632, 1037, 165]],\n", " [[4619, 26769, 4843, 242, 2005, 6945]],\n", " [[19763, 16872]],\n", " [[2809, 604, 18, 632, 2613, 165]],\n", " [[580, 3600, 315, 274, 4, 347, 4]],\n", " [[5429, 10402, 10489]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[188, 469, 412, 5429]],\n", " [[6314, 16421]],\n", " [[3702, 7776, 281, 12150]],\n", " [[7016]],\n", " [[208, 4214, 23087, 7065, 3427, 242, 2893, 13345]],\n", " [[1429, 2337, 968, 165]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[5429, 4612]],\n", " [[7224, 597, 19643, 1688, 3999, 1243]],\n", " [[525, 700, 20852, 12221, 274, 4, 347, 4]],\n", " [[96, 242, 366, 13519, 625, 4733]],\n", " [[5429, 4612, 274, 15035, 1977]],\n", " [[5429, 10402, 10489]],\n", " [[315, 532, 390, 18, 632, 4191, 165]],\n", " [[91, 1610, 118, 274, 4, 347, 4]],\n", " [[13800, 41269, 31221]],\n", " [[8700, 632, 1037, 165]],\n", " [[19763, 16872]],\n", " [[2009, 29018, 10221, 2684, 4119, 6303, 271, 1168]],\n", " [[11917, 3631, 3108, 139]],\n", " [[10585, 73, 9873, 35733, 5429]],\n", " [[5429, 4168, 3314, 11489, 2586]],\n", " [[5168, 5325]],\n", " [[2930, 32109, 20434, 20071]],\n", " [[2201, 6130, 12, 534, 8362, 1851, 274, 4, 347, 4]],\n", " [[10035, 5317, 24058]],\n", " [[11211, 413, 274, 4, 347, 4]],\n", " [[13954, 2001, 14744, 274, 4, 500, 4]],\n", " [[5244, 632, 1037, 165]],\n", " [[17057, 8441]],\n", " [[2822, 3622, 12612]],\n", " [[208, 4214, 15333, 5429]],\n", " [[163, 14075, 6752, 10327]],\n", " [[83, 4, 347, 4, 7338]],\n", " [[5168, 5325]],\n", " [[4152, 274, 4, 347, 4]],\n", " [[6415, 1501, 9224, 38707]],\n", " [[2201, 6130, 12, 534, 8362, 1851, 274, 4, 347, 4]],\n", " [[3161, 14122, 1178]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[4236, 7487, 46770, 5597, 5235, 677, 5235, 14897, 853, 5429]],\n", " [[1568, 1833, 5429]],\n", " [[384, 10839, 642, 493, 5366, 2601]],\n", " [[5429, 10402, 10489]],\n", " [[1332, 242, 5413, 7222, 30089, 257, 5675, 2912, 438, 1020]],\n", " [[20351, 2383, 42775, 2001, 33293]],\n", " [[22705, 274, 4, 347, 4]],\n", " [[1568, 9926]],\n", " [[5429, 18540, 34264]],\n", " [[2499, 11476]],\n", " [[6015, 12696, 5429]],\n", " [[5168, 5325]],\n", " [[2812, 405, 15577, 274, 4, 347, 4]],\n", " [[4152, 274, 4, 347, 4]],\n", " [[5429, 10402, 10489]],\n", " [[5092, 632, 1037, 165]],\n", " [[1287, 1422, 6772]],\n", " [[29830, 18961]],\n", " [[6746, 13578, 7224]],\n", " [[226, 15089, 2383, 104, 6998, 337]],\n", " [[3417, 5809]],\n", " [[221, 15277, 2912, 438, 1020, 38220]],\n", " [[663, 11758]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[5028, 632, 1037, 165]],\n", " [[7556, 632, 5259, 1037, 165]],\n", " [[580, 3600, 315, 274, 4, 347, 4]],\n", " [[2177, 5429]],\n", " [[1287, 1422, 6772]],\n", " [[14585, 2550, 625, 6748, 2723, 7222, 289, 3663, 3245]],\n", " [[1429, 632, 1037, 165]],\n", " [[9793, 5928, 274, 4, 347, 4]],\n", " [[5787, 5991, 8025, 1899]],\n", " [[5429, 10402, 10489]],\n", " [[5926, 2032, 16248, 5429]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[208, 4214, 15333, 5429]],\n", " [[6331,\n", " 1975,\n", " 493,\n", " 3381,\n", " 4214,\n", " 20341,\n", " 1140,\n", " 119,\n", " 2426,\n", " 263,\n", " 944,\n", " 16231,\n", " 763,\n", " 126,\n", " 384,\n", " 4,\n", " 250,\n", " 4,\n", " 597,\n", " 4]],\n", " [[21774, 632, 1037, 165]],\n", " [[163, 4330, 12, 725, 1253, 15821, 700]],\n", " [[7505, 17458, 632, 1037, 165]],\n", " [[2822, 3622, 12612]],\n", " [[230, 1116, 22831]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[4998, 5547, 1452, 7150]],\n", " [[20351, 2383, 42775, 2001, 33293]],\n", " [[31162, 857, 632, 1037, 165]],\n", " [[4622, 139, 4954, 347]],\n", " [[2361, 315, 274, 4, 347, 4]],\n", " [[2009, 263, 274, 5874, 90, 18217, 3385, 1334, 5460]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[230, 3376, 2711]],\n", " [[12602, 6801, 5463, 1885, 90, 22783]],\n", " [[10506]],\n", " [[5429, 10402, 10489]],\n", " [[4213, 808, 8878, 12, 530, 21228]],\n", " [[3542, 1469, 6377, 274, 4, 347, 4]],\n", " [[6314, 16421]],\n", " [[2741, 1906, 6971, 10482]],\n", " [[8683, 390, 18, 632, 1037, 165]],\n", " [[9035, 412, 274, 4, 347, 4]],\n", " [[17112, 3061, 12, 487, 5600, 139]],\n", " [[83, 4575, 3194, 29, 274, 530]],\n", " [[5926, 2032, 16248, 5429]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[2822, 3622, 12612]],\n", " [[4537, 415, 31126, 857, 208, 4, 530, 4]],\n", " [[8937, 1113, 1209, 11868, 1343, 22398, 2711]],\n", " [[726, 7746, 3572, 2030, 5429]],\n", " [[2393, 873, 329, 1790, 12150]],\n", " [[7137, 2848, 274, 4, 347, 4]],\n", " [[2822, 3622, 4317, 261, 35678, 139]],\n", " [[20351, 2383, 42775, 2001, 33293]],\n", " [[14585, 2550, 1829, 7065, 3427, 7222, 4677, 1794, 853, 281]],\n", " [[96, 242, 366, 13519, 625, 4733]],\n", " [[5429, 5981, 1977, 330, 21932, 6472, 102]],\n", " [[15338, 412, 83, 4, 597, 4, 347, 4]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[2893, 13345, 263, 6304, 415, 281, 109, 37313, 3314, 139]],\n", " [[5429, 37960, 163, 7110]],\n", " [[12723, 12130, 1178]],\n", " [[2910, 632, 1037, 165]],\n", " [[1775, 438, 10810, 4936, 15247, 274, 4, 347, 4]],\n", " [[2201, 6130, 12, 534, 8362, 1851, 274, 4, 347, 4]],\n", " [[1287, 1422, 12190]],\n", " [[2201, 6130, 12, 534, 8362, 1851, 274, 1140, 4691, 833]],\n", " [[14993, 9504, 366, 274, 4, 347, 4]],\n", " [[3870, 7338]],\n", " [[2499, 18946]],\n", " [[726, 12, 495, 2957, 3760, 4998]],\n", " [[274, 4, 347, 4, 2848, 139]],\n", " [[2910, 632, 1037, 165]],\n", " [[18490, 632, 5259, 1037, 165]],\n", " [[1568, 1211, 7144]],\n", " [[2822, 3622, 12612]],\n", " [[25297, 5512, 8441]],\n", " [[15607, 412, 274, 4, 347, 4]],\n", " [[2822, 17122, 6643, 2478]],\n", " [[29018, 10221, 2684, 3622]],\n", " [[14993, 5150, 263, 23294, 4061]],\n", " [[384, 4, 597, 4, 530, 4, 1456, 2154, 7822]],\n", " [[7320, 632, 1037, 165]],\n", " [[248, 4, 104, 4, 347, 4, 83, 10330, 459, 8797]],\n", " [[221, 4438, 274, 4, 347, 4]],\n", " [[7224, 597, 19643, 1688, 3999, 1243]],\n", " [[34138, 30422, 330, 274, 1242, 3512]],\n", " [[2711, 23070, 9089, 14035]],\n", " [[13943, 1001, 2848, 242, 14182]],\n", " [[15809, 1942, 315, 274, 4, 347, 4]],\n", " [[3303, 12179, 967, 366, 40431, 281, 274, 4, 347, 4]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[27268, 9228, 274, 4, 347, 4]],\n", " [[22753, 21386, 3624, 163, 5593, 225]],\n", " [[5854, 412, 4998]],\n", " [[5429, 4612]],\n", " [[5429, 4168, 3314, 11489, 2586]],\n", " [[10600, 412, 274, 4, 347, 4]],\n", " [[6171, 390, 18, 632, 5259, 1037, 165]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[2711, 344, 20031, 12, 846, 40837]],\n", " [[13943, 415, 1210, 405, 2383, 771, 16966, 1698, 28544]],\n", " [[11998, 28659, 163, 530]],\n", " [[26455, 330, 23759, 9051, 625, 4104, 37151, 11104]],\n", " [[4556, 26488, 8647, 293, 5429]],\n", " [[12932, 534, 43130, 22590, 225, 10436]],\n", " [[3870, 7338]],\n", " [[4537, 415, 31126, 857, 208, 4, 530, 4]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[2711, 344, 20031, 12, 846, 40837]],\n", " [[2711, 43657]],\n", " [[10585, 73, 9873, 35733, 5429]],\n", " [[10157, 3830, 271, 5429, 305, 12, 17608]],\n", " [[2822, 6525, 354, 4317, 7474, 118, 1140]],\n", " [[663, 41375, 2857]],\n", " [[14993, 5150, 10888, 19864, 354, 274, 1140, 4691, 179]],\n", " [[226, 15089, 2383, 104, 6998, 337]],\n", " [[5524, 15933]],\n", " [[31853, 2678, 2583, 5429]],\n", " [[2361, 412, 274, 4, 347, 4]],\n", " [[7943, 17280, 13039]],\n", " [[4868, 846, 381, 2028, 5410, 2987]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[6415, 1501, 18794]],\n", " [[16518, 12470, 274, 4, 347, 4]],\n", " [[7943, 17280, 13039]],\n", " [[41135, 329, 859, 2379, 208, 4, 530, 4]],\n", " [[163, 1543, 219, 281, 4998]],\n", " [[2822, 3622, 12612]],\n", " [[2361, 315, 274, 4, 347, 4]],\n", " [[29018, 10221, 2684, 3622]],\n", " [[7320, 632, 1037, 165]],\n", " [[8683, 632, 5259, 1037, 165]],\n", " [[5429, 4612]],\n", " [[315, 532, 604, 18, 632, 4191, 165]],\n", " [[2822, 3622, 12612]],\n", " [[7137, 12242, 15363, 274, 4, 347, 4]],\n", " [[1775, 438, 10810, 5477, 19067, 163, 4, 347, 4]],\n", " [[22753, 21386, 3624, 163, 5593, 225]],\n", " [[7570, 20302, 7748, 274, 4, 347, 4]],\n", " [[7320, 632, 1037, 165]],\n", " [[4152, 274, 4, 347, 4]],\n", " [[6748, 2723, 9697, 263, 1587, 2812, 257, 14379]],\n", " [[2177, 13114]],\n", " [[36858, 25278, 22753]],\n", " [[7320, 632, 1037, 165]],\n", " [[5429, 35068, 4122, 257]],\n", " [[256, 1526, 462, 6080, 12612]],\n", " [[208, 4, 104, 4, 347, 4, 7645, 6483]],\n", " [[1870, 2776, 12, 10926, 5857]],\n", " [[764, 4578, 7963]],\n", " [[2201, 6130, 12, 534, 8362, 1851, 274, 4, 347, 4]],\n", " [[188, 469, 11836]],\n", " [[3161, 20165]],\n", " [[274, 4, 347, 4, 22843]],\n", " [[2009, 29018, 10221, 2684, 1995, 19201]],\n", " [[2361, 412, 274, 4, 347, 4]],\n", " [[5926, 2032, 16248, 5429]],\n", " [[5429, 10402, 10489]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[2009, 29018, 10221, 2684, 4119, 6303, 271, 1168]],\n", " [[211, 21999, 12221, 274, 4, 347, 4]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[18490, 632, 5259, 1037, 165]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[226, 15089, 2383, 104, 6998, 337]],\n", " [[83, 4, 347, 4, 7338]],\n", " [[112, 4, 5429, 1332, 5459]],\n", " [[10060, 632, 5259, 1037, 165]],\n", " [[274, 5777, 28185, 3381, 242, 14795]],\n", " [[4537, 415, 31126, 857, 208, 4, 530, 4]],\n", " [[3317, 315, 5429]],\n", " [[15338, 412, 83, 4, 597, 4, 347, 4]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[14781, 632, 1037, 165]],\n", " [[4152, 274, 4, 347, 4]],\n", " [[5429, 4168, 3314, 11489, 2586]],\n", " [[4537, 415, 31126, 857, 208, 4, 530, 4]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[13733, 632, 1037, 165]],\n", " [[5438, 763, 2860, 4365, 274, 4, 347, 4]],\n", " [[580, 14312, 11645, 19032, 274, 4, 347, 4]],\n", " [[7556, 632, 5259, 1037, 165]],\n", " [[10994, 11536, 632, 1037, 165]],\n", " [[2910, 632, 1037, 165]],\n", " [[5429, 9176]],\n", " [[5429, 10402, 10489]],\n", " [[9601, 24857]],\n", " [[188, 3324, 632, 8808, 2918, 165]],\n", " [[315, 532, 390, 18, 632, 4191, 165]],\n", " [[3870, 7338]],\n", " [[12919, 274, 4, 347, 4]],\n", " [[7137, 2848, 274, 4, 347, 4]],\n", " [[15206, 4699, 5429]],\n", " [[13733, 632, 1037, 165]],\n", " [[6171, 632, 5259, 1037, 165]],\n", " [[1405, 12037, 163, 3632]],\n", " [[2361, 412, 305, 4, 597, 4, 347, 4]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[9688, 104, 6579, 18995]],\n", " [[163, 1543, 219, 281, 4998]],\n", " [[112, 4, 274, 5268, 14184]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[580, 3600, 315, 274, 4, 347, 4]],\n", " [[5429, 229, 8428]],\n", " [[305, 5416, 926, 7210, 102, 4998]],\n", " [[726, 12, 495, 2957, 3760, 4998]],\n", " [[208, 4, 347, 4, 2265, 6080]],\n", " [[7224, 597, 19643, 1688, 3999, 1243]],\n", " [[2822, 6525, 354, 4317, 7474, 118, 1140]],\n", " [[10157, 3830, 271, 5429]],\n", " [[274, 5777, 28185, 3381, 242, 14795]],\n", " [[7248, 219, 8441]],\n", " [[1870, 2776, 12, 10926, 5857]],\n", " [[19365, 1140, 102, 2383, 104, 7042, 636]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[4380, 8271, 230, 5268]],\n", " [[5429, 4369, 329]],\n", " [[1287, 1422, 22320]],\n", " [[580, 3600, 315, 274, 4, 347, 4]],\n", " [[7296, 271, 8726, 12612]],\n", " [[12919, 274, 4, 347, 4]],\n", " [[2009, 24066, 8843, 263, 9614]],\n", " [[15206, 4699, 5429]],\n", " [[15206, 4699, 5429]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[3317, 10506]],\n", " [[384, 10839, 642, 493, 5366, 2601]],\n", " [[7556, 632, 5259, 1037, 165]],\n", " [[9614, 632, 1037, 165]],\n", " [[11437, 632, 5259, 1037, 165]],\n", " [[96, 242, 366, 13519, 625, 4733]],\n", " [[22569, 1535, 121, 1889, 574]],\n", " [[229, 597, 5725, 12, 530, 8015, 415, 2552, 26067]],\n", " [[2027, 188, 469, 15626]],\n", " [[7556, 632, 5259, 1037, 165]],\n", " [[14993, 5150, 3702, 1452, 293]],\n", " [[381, 2544, 338, 11629, 14184]],\n", " [[5703, 15908]],\n", " [[274, 5777, 28185, 3381, 242, 4011, 18, 12610]],\n", " [[2361, 412, 305, 4, 597, 4, 347, 4]],\n", " [[14585, 2550, 1829, 7065, 3427, 7222, 4677, 1794, 853, 281]],\n", " [[13633, 83, 4, 597, 4, 347, 4]],\n", " [[7320, 632, 1037, 165]],\n", " [[208, 4214, 15333, 5429]],\n", " [[274, 4, 347, 4, 6466, 32612]],\n", " [[9170, 2711, 8313]],\n", " [[1221, 1585, 324, 5363, 1745, 968, 165]],\n", " [[21105, 18604, 3910, 2009]],\n", " [[29018, 10221, 2684, 6843]],\n", " [[2910, 632, 1037, 165]],\n", " [[1568, 1211, 7144]],\n", " [[2009, 234, 1043, 6073, 263, 3910]],\n", " [[1625, 632, 1037, 165]],\n", " [[1209, 31002, 16146, 6331, 366]],\n", " [[17100, 1908, 9216, 20233, 16885, 274, 4, 347, 4]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[163, 8982, 2133, 274, 4, 347, 4, 41861]],\n", " [[382, 1793, 24227, 1253]],\n", " [[6748, 2723, 9697, 25452, 338, 12109]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[14993, 9504, 366, 274, 4, 347, 4]],\n", " [[230, 4, 104, 4, 13142, 23065, 5739]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[7320, 632, 1037, 165]],\n", " [[229, 4113, 254, 354, 12150]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[9170, 2711, 8313]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[1209, 31002, 16146, 6331, 366]],\n", " [[10060, 632, 5259, 1037, 165]],\n", " [[5092, 632, 1037, 165]],\n", " [[5429, 4612, 163, 5269, 30919, 594]],\n", " [[6508, 632, 5259, 1037, 165]],\n", " [[14833, 274, 134, 2711]],\n", " [[7943, 17280, 13039]],\n", " [[2986, 9207]],\n", " [[91, 1610, 118, 274, 4, 347, 4]],\n", " [[9170, 2711, 4516, 1864]],\n", " [[7943, 17280, 13039]],\n", " [[2009, 29018, 10221, 2684, 255, 11186, 1535]],\n", " [[255, 5156, 261, 6130, 12, 347, 4503, 9676, 7406, 3512]],\n", " [[5926, 8393, 18191]],\n", " [[20351, 2383, 42775, 2001, 33293]],\n", " [[22256, 2565, 632, 1037, 165]],\n", " [[83, 4, 104, 4, 12218]],\n", " [[31853, 2678, 2583, 5429]],\n", " [[3417, 36802, 5429]],\n", " [[9170, 2711, 8313]],\n", " [[12132, 632, 1037, 165]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[1456, 5235, 967, 4349, 5235, 344, 4, 530, 4]],\n", " [[5092, 632, 1037, 165]],\n", " [[4290, 5429]],\n", " [[13876, 2158, 4712, 381, 4, 347, 4]],\n", " [[7960, 607, 274, 4, 347, 4]],\n", " [[230, 3376, 2711]],\n", " [[2009, 6748, 2723, 9697, 24066, 8843, 7641, 1479, 5895, 102]],\n", " [[9692, 274, 4, 347, 4]],\n", " [[221, 15277, 2912, 438, 1020, 38220]],\n", " [[580, 3600, 315, 274, 4, 347, 4]],\n", " [[13727, 1845, 3171, 274, 4, 347, 4]],\n", " [[274, 5777, 28185, 3381, 242, 14795]],\n", " [[3098, 274, 4, 347, 4, 2691]],\n", " [[1287, 1422, 6772]],\n", " [[272, 4, 104, 4, 38, 9418, 14496, 20, 7485, 30521, 8907]],\n", " [[10585, 73, 9873, 35733, 5429]],\n", " [[4307, 12599, 876, 2955, 272, 2583]],\n", " [[208, 4, 574, 4, 1664, 506, 2426]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[3870, 7338]],\n", " [[2910, 632, 1037, 165]],\n", " [[6171, 390, 18, 632, 5259, 1037, 165]],\n", " [[2711, 344, 20031, 12, 846, 40837]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[21105, 18604, 412, 274, 4, 347, 4]],\n", " [[468, 506, 574, 7602, 16408, 2691]],\n", " [[305, 2957, 260, 274, 4, 347, 4]],\n", " [[4380, 8271, 230, 5268]],\n", " [[2027, 188, 469, 15626]],\n", " [[36265, 22753]],\n", " [[230, 4, 495, 4, 2646, 23073, 1176, 1742]],\n", " [[91, 1610, 118, 274, 4, 347, 4]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[5429, 8937, 763, 12422, 7150, 9060]],\n", " [[22753, 21386, 3624, 163, 5593, 225]],\n", " [[1156, 632, 5259, 1037, 165]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[14667, 12, 387, 3006, 1180, 632, 1037, 165]],\n", " [[234, 4, 717, 4, 347, 4]],\n", " [[1625, 632, 1037, 165]],\n", " [[9096, 3497, 632, 4105, 4191, 165]],\n", " [[5429, 30377, 1496, 219, 229, 5079, 282, 2160, 2726, 330]],\n", " [[2822, 3622, 12612]],\n", " [[13287, 12, 25093, 7829, 40236, 2711]],\n", " [[7505, 17458, 632, 1037, 165]],\n", " [[896, 604, 18, 632, 4191, 165]],\n", " [[6508, 632, 5259, 1037, 165]],\n", " [[798, 632, 1037, 165]],\n", " [[9614, 632, 1037, 165]],\n", " [[2822, 3622, 12612]],\n", " [[2009, 16528, 952, 3602, 257]],\n", " [[18490, 632, 5259, 1037, 165]],\n", " [[83, 4, 347, 4, 7338]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[15897, 944, 1899, 281, 2344, 523, 1694, 3006, 19200]],\n", " [[208, 10595, 3109, 412, 274, 4, 347, 4]],\n", " [[2499, 11476]],\n", " [[2499, 11476]],\n", " [[13694, 25280, 7204, 1627]],\n", " [[229, 7025, 30492, 241, 7450, 211, 7389]],\n", " [[2711, 23070, 9089, 14035, 3309, 876]],\n", " [[24799, 632, 1037, 165]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[4622, 139, 3767, 459, 38754]],\n", " [[274, 530, 6015, 255, 2558, 4955, 17010]],\n", " [[163, 4330, 12, 725, 1253, 15821, 700]],\n", " [[2822, 14585, 2550, 625]],\n", " [[3702, 7776, 281, 12150]],\n", " [[5168, 5325]],\n", " [[381, 4, 347, 4, 24589, 1479, 6374]],\n", " [[7224, 30140, 102, 25204]],\n", " [[2009, 29018, 10221, 2684, 1995, 19201]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[8937, 1113, 1209, 11868, 1343, 22398, 2711]],\n", " [[2201, 6130, 12, 534, 8362, 1851, 274, 4, 347, 4]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[2361, 412, 274, 4, 347, 4]],\n", " [[2711, 344, 20031, 12, 846, 40837]],\n", " [[5429, 10402, 10489]],\n", " [[13287, 12, 25093, 7829, 40236, 2711]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[10500, 2383, 17973, 2620]],\n", " [[3317, 10506]],\n", " [[1775, 438, 10810, 4936, 15247, 274, 4, 347, 4]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[11666, 274, 4, 347, 4]],\n", " [[208, 4, 347, 4, 23094, 1043, 6073]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[5092, 632, 1037, 165]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[112, 4, 5429, 234, 5172, 282, 2865]],\n", " [[2910, 632, 1037, 165]],\n", " [[5429, 2049, 16408]],\n", " [[2361, 412, 274, 4, 347, 4]],\n", " [[315, 532, 390, 18, 632, 4191, 165]],\n", " [[7570, 20302, 7748, 274, 4, 347, 4]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[5819, 12770]],\n", " [[5703, 15908]],\n", " [[7137, 12242, 15363, 274, 4, 347, 4]],\n", " [[21780, 12527, 493, 234, 293, 255, 329, 26051, 274, 4, 347, 4]],\n", " [[1608, 179, 1561, 267, 18057, 344, 9707, 1115, 1250, 21783, 5410]],\n", " [[14993, 5150, 10888, 19864, 354]],\n", " [[5854, 13170]],\n", " [[9245, 315, 274, 4, 347, 4]],\n", " [[5429, 208, 1499]],\n", " [[5854, 412, 4998]],\n", " [[208, 4214, 15333, 5429]],\n", " [[230, 4, 250, 4, 468, 1140, 23250, 208, 2726, 1399]],\n", " [[112, 4, 21218, 846, 4326, 329, 15786]],\n", " [[25103, 710, 6909, 3830, 267, 366, 263, 3060, 1043, 2070, 329]],\n", " [[230, 4, 495, 4, 2646, 23073, 1176, 1742]],\n", " [[17822, 1097, 7488, 5429]],\n", " [[7413, 268, 4998, 673]],\n", " [[7556, 632, 5259, 1037, 165]],\n", " [[3098, 274, 4, 347, 4, 2691]],\n", " [[7224, 597, 19643, 1688, 3999, 1243]],\n", " [[17182, 5268, 163, 6457, 705, 468, 28814, 102]],\n", " [[21299, 2186, 274, 4, 347]],\n", " [[9035, 412, 274, 4, 347, 4]],\n", " [[5429, 13985, 405, 6130, 14330]],\n", " [[3417, 36802, 5429]],\n", " [[1625, 632, 1037, 165]],\n", " [[2499, 18946]],\n", " [[5429, 4612]],\n", " [[5729, 412, 5429]],\n", " [[24986, 6847, 20623, 261]],\n", " [[29018, 10221, 2684, 764, 6487, 3407, 14182, 12612]],\n", " [[2361, 315, 305, 4, 597, 4, 347, 4]],\n", " [[9601, 19119, 32482, 4989]],\n", " [[5244, 632, 1037, 165]],\n", " [[21774, 632, 1037, 165]],\n", " [[2000, 632, 1037, 165]],\n", " [[234, 2154, 11691, 5429]],\n", " [[1405, 12037, 163, 3632]],\n", " [[840, 463, 1657, 9002, 1173, 260, 274, 4, 347, 4]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[22256, 2565, 632, 1037, 165]],\n", " [[22378, 12, 18551, 139, 390, 18]],\n", " [[1568, 1211, 7144]],\n", " [[83, 4, 104, 4, 12218]],\n", " [[9176, 381, 12, 26902, 5429]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[5420, 15929]],\n", " [[4556, 26488, 8647, 293, 5429]],\n", " [[468, 506, 387, 312, 9259, 22739]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[2910, 632, 1037, 165]],\n", " [[12966, 6748, 2723, 7222, 726, 1176, 8129, 9401]],\n", " [[4152, 305, 4, 597, 4, 347, 4]],\n", " [[6171, 632, 5259, 1037, 165]],\n", " [[1625, 632, 1037, 165]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[9170, 2711, 8313]],\n", " [[5429, 24542, 298, 45739, 1879]],\n", " [[14993, 5150, 263, 23294, 4061]],\n", " [[391, 1101, 632, 1037, 165]],\n", " [[7320, 632, 1037, 165]],\n", " [[1429, 632, 1037, 165]],\n", " [[2000, 632, 1037, 165]],\n", " [[17535, 5382, 975, 844, 181, 73, 428, 17411, 12, 17906]],\n", " [[14567, 12612]],\n", " [[14585, 2550, 1829, 7065, 3427, 7222, 4677, 1794, 853, 281]],\n", " [[15837, 5223, 23872, 352, 118, 6579, 625, 6417]],\n", " [[3417, 36802, 5429]],\n", " [[6748, 2723, 9697, 17686, 26802, 274, 4, 347, 4]],\n", " [[4868, 846, 381, 2028, 5410, 2987]],\n", " [[468, 506, 387, 312, 9259, 22739, 3082]],\n", " [[8937, 1113, 1209, 11868, 1343, 22398, 2711]],\n", " [[798, 632, 1037, 165]],\n", " [[44602, 154, 179, 344, 9707, 1115, 1250, 1638, 462, 36384]],\n", " [[9543, 11861, 90, 281]],\n", " [[83, 4, 104, 4, 12218]],\n", " [[4514, 9529]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[1600, 390, 18, 632, 1037, 165]],\n", " [[5429, 4612, 163, 5269, 30919, 594]],\n", " [[21774, 632, 1037, 165]],\n", " [[5716, 4597, 274, 4, 347, 4]],\n", " [[2361, 412, 274, 4, 347, 4]],\n", " [[5092, 632, 1037, 165]],\n", " [[1603, 632, 1037, 165]],\n", " [[2921, 18290]],\n", " [[163, 4668, 281, 12150]],\n", " [[381, 2544, 338, 11629, 14184]],\n", " [[2000, 632, 1037, 165]],\n", " [[7224, 597, 19643, 1688, 3999, 1243]],\n", " [[8983, 315, 274, 4, 347, 4]],\n", " [[15376, 493, 21115]],\n", " [[6037, 632, 1037, 165]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[2361, 412, 274, 4, 347, 4]],\n", " [[230, 4, 597, 4, 4838, 4231, 225, 21526]],\n", " [[1429, 632, 1037, 165]],\n", " [[1505, 1704, 3497, 632, 1037, 165]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[35906, 384, 10839, 642, 12733, 226, 267, 1792, 462, 267, 1113]],\n", " [[5092, 632, 1037, 165]],\n", " [[1625, 632, 1037, 165]],\n", " [[2588, 2461, 83, 4643]],\n", " [[18749, 412, 274, 4, 347, 4]],\n", " [[2005, 3590, 274, 4467, 18217, 2893, 13345]],\n", " [[13943, 415, 1210, 405, 2383, 771, 16966, 1698, 28544]],\n", " [[3426, 274, 4, 347, 4]],\n", " [[5480, 717, 27093, 918]],\n", " [[384, 13967, 274, 4467, 18217, 2893, 13345]],\n", " [[315, 532, 604, 18, 632, 4191, 165]],\n", " [[208, 4, 104, 4, 347, 4, 7645, 6483]],\n", " [[8683, 632, 5259, 1037, 165]],\n", " [[5429, 229, 5079, 282, 1630, 271]],\n", " [[15376, 493, 21115]],\n", " [[2910, 632, 1037, 165]],\n", " [[369, 21894, 632, 1037, 165]],\n", " [[525, 700, 20852, 12221, 274, 4, 347, 4]],\n", " [[4317, 10031, 7339, 21098, 12150]],\n", " [[7765, 6412, 4998]],\n", " [[5498, 632, 1037, 165]],\n", " [[229, 4113, 254, 354, 12150]],\n", " [[4152, 274, 4, 347, 4]],\n", " [[5429, 11996, 1168, 22487, 14722]],\n", " [[6171, 632, 5259, 1037, 165]],\n", " [[44602, 154, 179, 344, 9707, 1115, 1250, 1638, 462, 36384]],\n", " [[4290, 5429]],\n", " [[5639, 632, 1037, 165]],\n", " [[14993, 9504, 366, 274, 4, 347, 4]],\n", " [[3098, 274, 4, 347, 4, 2691]],\n", " [[208, 4, 104, 4, 347, 4, 7645, 6483]],\n", " [[726, 12, 597, 5655, 7776, 5429]],\n", " [[3590, 4947, 922]],\n", " [[5429, 13073, 1075, 1242, 1879, 3467]],\n", " [[4152, 305, 4, 597, 4, 347, 4]],\n", " [[1603, 632, 1037, 165]],\n", " [[5854, 13170]],\n", " [[15091]],\n", " [[10060, 632, 5259, 1037, 165]],\n", " [[2009, 3574, 1423, 6748, 2723, 9697, 22378, 22378]],\n", " [[1156, 632, 5259, 1037, 165]],\n", " [[391, 1101, 632, 1037, 165]],\n", " [[163, 7110, 27547, 16784, 7406, 3512]],\n", " [[5680, 176, 500, 7801, 1001, 105, 282, 2711]],\n", " [[5092, 632, 1037, 165]],\n", " [[3098, 274, 4, 347, 4, 2691]],\n", " [[3160, 17492]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[315, 13716, 6350]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[4341, 3671, 642, 1033, 5429]],\n", " [[2000, 632, 1037, 165]],\n", " [[3426, 274, 4, 347, 4]],\n", " [[2711, 23070, 9089, 14035, 3309, 876]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[208, 4214, 1560, 1140, 8, 2869, 17010, 2520, 2379, 632, 1037, 165]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[1221, 632, 5259, 1037, 165]],\n", " [[2848, 26298, 9401, 208, 4, 347, 4]],\n", " [[10060, 632, 5259, 1037, 165]],\n", " [[7320, 632, 1037, 165]],\n", " [[1429, 390, 18, 632, 1037, 165]],\n", " [[896, 390, 18, 632, 4191, 165]],\n", " [[19763, 16872]],\n", " [[10060, 632, 5259, 1037, 165]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[2910, 632, 1037, 165]],\n", " [[4436, 26827, 906, 289, 1140, 763, 6070, 5413, 2009]],\n", " [[29018, 10221, 2684, 3622]],\n", " [[8683, 632, 5259, 1037, 165]],\n", " [[11141, 281, 3060, 4488, 274, 4, 347, 4]],\n", " [[5429, 17326, 19654, 29712]],\n", " [[14993, 5150, 10888, 19864, 354]],\n", " [[5429, 1587, 687, 8799, 12, 19451]],\n", " [[2009, 3574, 1423, 6748, 2723, 9697, 22378, 22378]],\n", " [[944, 2253, 757, 3983, 1890, 6005]],\n", " [[22839, 2727, 3771, 20375, 4242]],\n", " [[660, 22494, 13310, 18440, 1073, 4193, 102, 5429]],\n", " [[229, 4, 3769, 1001, 381, 354, 3898, 3066, 16836, 3204, 4393, 225]],\n", " [[726, 85, 90, 19284, 5429]],\n", " [[31245, 530, 15757, 12705, 525, 1073, 16552]],\n", " [[230, 1073, 3572, 1512, 2912, 438, 1020]],\n", " [[5429, 221, 4438, 412]],\n", " [[22705, 274, 4, 347, 4]],\n", " [[1221, 632, 5259, 1037, 165]],\n", " [[13733, 632, 1037, 165]],\n", " [[13733, 632, 1037, 165]],\n", " [[4152, 305, 4, 597, 4, 347, 4]],\n", " [[5429, 4612]],\n", " [[764, 5465, 17010, 263, 33759, 783, 7499]],\n", " [[18490, 632, 5259, 1037, 165]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[5429, 7916, 354, 271]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[369, 17577, 315, 5429]],\n", " [[9601, 24857, 468, 8508, 11760]],\n", " [[112, 4, 5429, 1332, 5459]],\n", " [[7320, 632, 1037, 165]],\n", " [[15607, 412, 274, 4, 347, 4]],\n", " [[5429, 9922, 8530]],\n", " [[12587, 632, 1037, 165]],\n", " [[14781, 632, 1037, 165]],\n", " [[2742, 21402, 530, 4424, 22015, 2265, 415, 13714, 8604]],\n", " [[1793, 24227, 1253, 5463, 1885, 90, 163, 20997]],\n", " [[21774, 632, 1037, 165]],\n", " [[2561, 7772]],\n", " [[726, 2379, 28366, 2383, 597, 225, 3181]],\n", " [[35722, 530, 11198, 163, 4, 347, 4]],\n", " [[15959, 1054, 8899, 274, 4, 347, 4]],\n", " [[6508, 632, 5259, 1037, 165]],\n", " [[2910, 632, 1037, 165]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[14993, 5150, 10888, 19864, 354]],\n", " [[726, 344, 1222, 3578, 2009]],\n", " [[5429, 4612]],\n", " [[16518, 12470, 274, 4, 347, 4]],\n", " [[1625, 632, 1037, 165]],\n", " [[12940, 632, 5259, 1037, 165]],\n", " [[1221, 390, 18, 632, 4191, 165]],\n", " [[2822, 3622, 4317, 261, 35678, 139]],\n", " [[17112, 3061, 12, 487, 5600, 139]],\n", " [[5429, 11996, 1168, 22487, 14722]],\n", " [[2009, 29018, 10221, 2684, 4838, 281, 4989]],\n", " [[3378, 1332]],\n", " [[2822, 25424, 625, 30912]],\n", " [[28147, 31732, 2711]],\n", " [[274, 530, 468, 1120, 271]],\n", " [[6748, 2723, 9697, 25452, 338, 12109]],\n", " [[188, 1156, 13340]],\n", " [[33846, 22153, 2001, 3917, 2253, 9401]],\n", " [[6331,\n", " 1975,\n", " 493,\n", " 3381,\n", " 4214,\n", " 6838,\n", " 1001,\n", " 6873,\n", " 1526,\n", " 6374,\n", " 263,\n", " 7065,\n", " 3427,\n", " 293]],\n", " [[211, 4, 347, 4, 315]],\n", " [[5429, 208, 1499]],\n", " [[2910, 632, 1037, 165]],\n", " [[5429, 15757, 12705, 3467]],\n", " [[229, 530, 5309, 2987, 102, 525, 20782, 6106]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[17609, 632, 1037, 165]],\n", " [[9793, 5928, 274, 4, 347, 4]],\n", " [[4868, 846, 381, 2028, 5410, 2987]],\n", " [[11437, 632, 5259, 1037, 165]],\n", " [[221, 15277, 2912, 438, 1020, 38220]],\n", " [[230, 2456, 6852, 9002, 1588, 1253]],\n", " [[2201, 5429]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[36589, 7876, 4668, 263, 732, 3695, 859, 102, 1792, 1069, 927]],\n", " [[12932, 534, 43130, 22590, 225, 10436]],\n", " [[21774, 632, 1037, 165]],\n", " [[369, 1961, 5429]],\n", " [[798, 632, 1037, 165]],\n", " [[2822, 3622, 12612]],\n", " [[1287, 1422, 5429]],\n", " [[83, 4, 717, 4, 530, 4, 11198, 274, 4, 347, 4]],\n", " [[2009, 255, 25491]],\n", " [[5837, 15945, 5429]],\n", " [[17983, 632, 1037, 165]],\n", " [[5429, 30610, 1417]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[391, 1101, 632, 1037, 165]],\n", " [[2769, 632, 5259, 1037, 165]],\n", " [[221, 5268, 7038, 14559, 3467]],\n", " [[7296, 271, 8726, 12612]],\n", " [[5429, 660, 329, 3592, 256, 7352, 1488, 330, 2331]],\n", " [[2822, 3622, 6719, 4699]],\n", " [[391, 1101, 632, 1037, 165]],\n", " [[12612, 221, 1488, 26802]],\n", " [[30492, 241, 7450, 14795]],\n", " [[6037, 632, 1037, 165]],\n", " [[5429, 13073, 1075, 1242, 1879, 3467]],\n", " [[3497, 9, 2487, 632, 5259, 1037, 165]],\n", " [[13708, 26450, 2912, 438, 1020]],\n", " [[274, 530, 11504, 257, 4807, 282, 2603, 21752, 26084, 2426]],\n", " [[315, 532, 390, 18, 632, 4191, 165]],\n", " [[14605, 632, 5259, 1037, 165]],\n", " [[8683, 632, 5259, 1037, 165]],\n", " [[12612, 4436, 20287, 337]],\n", " [[13633, 83, 4, 597, 4, 347, 4]],\n", " [[188, 3324, 632, 1037, 165]],\n", " [[14993, 5150, 10888, 19864, 354, 274, 1140, 4691, 179]],\n", " [[121, 9056, 102, 1211, 7128, 29]],\n", " [[4622, 139, 3767, 459, 38754]],\n", " [[3430, 632, 1037, 165]],\n", " [[2893, 13345, 29018, 10221, 2684, 12765, 139, 4214, 2955, 6251, 763]],\n", " [[3274, 331, 4223]],\n", " [[226, 18307, 234, 324, 438, 324, 438, 2478]],\n", " [[15081]],\n", " [[2910, 390, 18, 632, 1037, 165]],\n", " [[14567, 12612]],\n", " [[580, 3600, 315, 274, 4, 347, 4]],\n", " [[2393, 873, 329, 1790, 12150]],\n", " [[112, 4, 5429, 1332, 5459]],\n", " [[2201, 6130, 12, 534, 8362, 1851, 274, 4, 347, 4]],\n", " [[27162, 11626, 3990, 1722, 179, 274, 4, 347, 4]],\n", " [[16193, 632, 1037, 165]],\n", " [[2271, 13310, 36349, 2884, 337, 757, 5107, 5429]],\n", " [[7505, 17458, 632, 1037, 165]],\n", " [[20351, 2383, 42775, 2001, 33293]],\n", " [[7296, 271, 8726, 12612]],\n", " [[663, 11758]],\n", " [[3426, 274, 4, 347, 4]],\n", " [[18490, 632, 5259, 1037, 165]],\n", " [[9793, 5928, 274, 4, 347, 4]],\n", " [[229, 5596, 21834]],\n", " [[31280, 282, 5269, 29048, 263, 255, 6166, 11408, 102]],\n", " [[12612, 4436, 20287, 337]],\n", " [[14664, 412, 5429]],\n", " [[21774, 632, 1037, 165]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[2361, 315, 274, 4, 347, 4]],\n", " [[12919, 5429]],\n", " [[726, 12, 3609, 895, 1543, 2636, 1847, 2009]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[2177, 2692, 10929]],\n", " [[23650, 13364, 90, 229, 1116, 257]],\n", " [[1793, 3245, 5911, 2154, 6498, 5429]],\n", " [[11666, 274, 4, 347, 4]],\n", " [[344, 30395, 12108, 368]],\n", " [[468, 506, 387, 312, 9259, 22739]],\n", " [[229, 4113, 254, 354, 12150]],\n", " [[2381, 102, 3703, 574, 165]],\n", " [[7556, 632, 5259, 1037, 165]],\n", " [[19041, 10968, 6752, 10327]],\n", " [[226, 4061, 384, 3632]],\n", " [[208, 10729, 14777, 225]],\n", " [[6171, 632, 5259, 1037, 165]],\n", " [[14993, 5150, 10888, 19864, 354]],\n", " [[7505, 17458, 632, 1037, 165]],\n", " [[15639, 632, 5259, 1037, 165]],\n", " [[9793, 5928, 274, 4, 347, 4]],\n", " [[14993, 5150, 10888, 19864, 354, 274, 1140, 4691, 179]],\n", " [[83, 4, 717, 4, 530, 4, 11198, 274, 4, 347, 4]],\n", " [[9170, 2711, 8313]],\n", " [[188, 469, 1211, 9926]],\n", " [[21774, 632, 1037, 165]],\n", " [[83, 4, 104, 4, 12218]],\n", " [[274, 530, 840, 330, 105, 1187, 12733]],\n", " [[7296, 271, 8726, 12612]],\n", " [[5429, 10402, 10489, 2691]],\n", " [[8205, 13708, 8530, 274, 4, 347, 4]],\n", " [[208, 4214, 15333, 5429]],\n", " [[17468, 448, 13023, 5641, 163, 20997]],\n", " [[2769, 632, 5259, 1037, 165]],\n", " [[2910, 632, 1037, 165]],\n", " [[2769, 632, 5259, 1037, 165]],\n", " [[2711, 23070, 9089, 14035, 3309, 876]],\n", " [[226, 4061, 384, 3632]],\n", " [[3160, 17492]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[8683, 390, 18, 632, 865, 3512, 165]],\n", " [[25011, 12, 2022, 468, 11485, 102]],\n", " [[2361, 412, 274, 4, 347, 4]],\n", " [[3497, 9, 2487, 632, 5259, 1037, 165]],\n", " [[3378, 5553, 268]],\n", " [[1918, 1140, 14962, 274, 4467, 18217, 2893, 13345, 36, 21963, 43]],\n", " [[312, 4, 3217, 6293]],\n", " [[4766, 14572]],\n", " [[798, 632, 1037, 165]],\n", " [[3160, 17492]],\n", " [[8873, 9399, 1906, 263, 2588, 221, 2550, 5079]],\n", " [[5854, 13170]],\n", " [[5429, 15757, 12705, 3467]],\n", " [[4380, 8271, 230, 5268]],\n", " [[5429, 7093, 523]],\n", " [[4436, 29, 385, 108, 11094, 4947, 11249, 3663, 13324]],\n", " [[1775, 438, 10810, 4936, 15247, 274, 4, 347, 4]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[660, 22494, 13310, 18440, 1073, 4193, 102, 5429]],\n", " [[20351, 2383, 42775, 2001, 33293]],\n", " [[22839, 2727, 6748, 2723, 7222, 726, 2089, 5272]],\n", " [[3332, 2646, 26681, 274, 4, 347, 4]],\n", " [[3378, 5553, 268]],\n", " [[15376, 493, 21115]],\n", " [[166, 5618, 4670, 274, 4, 347, 4]],\n", " [[369, 17577, 315, 5429]],\n", " [[221, 2336, 272, 30265, 1243, 274, 4, 347, 4]],\n", " [[188, 3324, 632, 1037, 165]],\n", " [[208, 4, 347, 4, 2265, 6080]],\n", " [[6171, 632, 5259, 1037, 165]],\n", " [[952, 10172, 5521, 718, 281, 12612]],\n", " [[29018, 10221, 2684, 3622]],\n", " [[229,\n", " 4,\n", " 104,\n", " 4,\n", " 347,\n", " 4,\n", " 226,\n", " 5361,\n", " 2558,\n", " 384,\n", " 2603,\n", " 12,\n", " 846,\n", " 2560,\n", " 463,\n", " 8663]],\n", " [[16588, 366, 12612]],\n", " [[315, 532, 604, 18, 632, 4191, 165]],\n", " [[3430, 632, 1037, 165]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[2009, 29018, 10221, 2684, 3182, 2727]],\n", " [[24195, 632, 1037, 165]],\n", " [[20421, 428, 10344, 274, 4, 347, 4]],\n", " [[14993, 5150, 263, 23294, 4061]],\n", " [[208, 4, 104, 4, 347, 4, 7645, 6483]],\n", " [[208, 4, 574, 4, 1664, 506, 2426]],\n", " [[9341, 261, 632, 1037, 165]],\n", " [[274, 530, 229, 7381, 139, 2742, 10809, 31316, 36533]],\n", " [[312, 1829, 248, 18974, 354, 274, 4, 347, 4]],\n", " [[2009, 44285, 1851]],\n", " [[391, 1101, 632, 1037, 165]],\n", " [[36858, 25278, 22753]],\n", " [[2646, 1210, 24181, 274, 4, 347, 4]],\n", " [[5429, 4424, 22015, 11135, 2816, 438]],\n", " [[12132, 632, 1037, 165]],\n", " [[4174, 632, 5259, 1037, 165]],\n", " [[5244, 632, 1037, 165]],\n", " [[274, 3573, 4448, 6276]],\n", " [[1775, 438, 10810, 4936, 15247, 274, 4, 347, 4]],\n", " [[726, 12, 597, 5655, 7776, 4998]],\n", " [[208, 1741, 260, 6163, 3726, 102, 234, 19291, 1688, 5107]],\n", " [[1287, 1422, 6772]],\n", " [[11193, 1908, 274, 4, 347, 4]],\n", " [[17112, 3061, 12, 487, 5600, 139]],\n", " [[5429, 24542, 298, 45739, 1879]],\n", " [[2027, 188, 469, 15626]],\n", " [[13800, 41269, 31221]],\n", " [[274, 530, 1209, 271, 873, 7669]],\n", " [[7320, 632, 1037, 165]],\n", " [[12723, 12130, 1178]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[2711, 43657]],\n", " [[5429, 2049, 16408]],\n", " [[2893, 13345, 263, 6304, 415, 281, 109, 37313, 3314, 139]],\n", " [[44558, 991, 853, 4077, 873, 2768, 2258, 12150]],\n", " [[1470, 390, 18, 632, 865, 3512, 165]],\n", " [[9170, 2711, 8313]],\n", " [[580, 3600, 315, 274, 4, 347, 4]],\n", " [[312, 1829, 248, 18974, 354, 274, 4, 347, 4]],\n", " [[3426, 274, 4, 347, 4]],\n", " [[21774, 632, 1037, 165]],\n", " [[896, 604, 18, 632, 4191, 165]],\n", " [[4436, 26827, 906, 289, 1140, 763, 6070, 5413, 2009]],\n", " [[5429, 221, 4438, 412]],\n", " [[1211, 2141, 274, 4, 347, 4]],\n", " [[726, 12, 534, 4759, 15997, 1847, 2009]],\n", " [[4998, 953, 7104]],\n", " [[315, 532, 604, 18, 632, 4191, 165]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[21774, 632, 1037, 165]],\n", " [[1221, 632, 5259, 1037, 165]],\n", " [[28187, 687, 18612, 32825, 24969, 163, 8982, 2133]],\n", " [[4152, 274, 4, 347, 4]],\n", " [[3417, 36802, 5429]],\n", " [[2000, 632, 1037, 165]],\n", " [[20351, 2383, 42775, 2001, 33293]],\n", " [[25305, 8, 26288, 3733, 1417, 1243, 632, 1037, 165]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[11666, 274, 4, 347, 4]],\n", " [[6748, 2723, 9697, 25452, 338, 12109]],\n", " [[6371, 102, 1209, 1075, 274, 4, 347, 4]],\n", " [[2009, 29018, 10221, 2684, 4838, 281, 4989]],\n", " [[4152, 274, 4, 347, 4]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[3426, 274, 4, 347, 4]],\n", " [[5429, 229, 5079, 282, 1630, 271]],\n", " [[2009, 29018, 10221, 2684, 23654, 9401]],\n", " [[9692, 274, 4, 347, 4]],\n", " [[4273, 853, 424, 315, 274, 4, 347, 4]],\n", " [[7296, 271, 8726, 12612]],\n", " [[2822, 6525, 354, 4317, 7474, 118, 1140]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[2529, 119, 3671, 35960]],\n", " [[25305, 8, 26288, 3733, 1417, 1243, 632, 1037, 165]],\n", " [[4619, 26769, 4843, 242, 2005, 6945]],\n", " [[580, 14312, 11645, 19032, 274, 4, 347, 4]],\n", " [[14056, 369, 4680, 274, 4, 347, 4]],\n", " [[1156, 632, 5259, 1037, 165]],\n", " [[5092, 632, 1037, 165]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[27268, 9228, 274, 4, 347, 4]],\n", " [[96, 242, 366, 13519, 625, 4733]],\n", " [[14993, 5150, 10888, 19864, 354, 274, 1140, 4691, 179]],\n", " [[274, 530, 6015, 255, 2558, 4955, 17010]],\n", " [[255, 14744, 632, 1037, 165]],\n", " [[726, 12, 725, 718, 337, 208, 5268]],\n", " [[826, 2583, 12, 24667, 863]],\n", " [[208, 1741, 19209, 19380, 12, 565, 677, 47497]],\n", " [[6015, 16641, 163, 20997]],\n", " [[4677, 254, 4992, 5429]],\n", " [[9096, 3497, 632, 5259, 1037, 165]],\n", " [[315, 532, 604, 18, 632, 4191, 165]],\n", " [[12919, 274, 4, 347, 4]],\n", " [[391, 1101, 632, 1037, 165]],\n", " [[15607, 412, 274, 4, 347, 4]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[5429, 13985, 405, 6130, 14330]],\n", " [[5429, 16706, 90, 7228, 229, 3671, 8502]],\n", " [[6253, 846, 5620, 354, 3321]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[11141, 281, 3060, 4488, 274, 4, 347, 4]],\n", " [[2910, 632, 1037, 165]],\n", " [[289, 24812, 523, 1456, 108, 254, 264, 3952, 274, 4, 347, 4]],\n", " [[726, 4417, 338, 4998]],\n", " [[13077, 412, 83, 4, 597, 4, 347, 4]],\n", " [[2032, 11850, 257, 5429]],\n", " [[5302, 2681, 1243, 967, 366, 274, 4, 347, 4]],\n", " [[33445, 14511, 3109]],\n", " [[13943, 1001, 2848, 242, 14182]],\n", " [[2910, 632, 1037, 165]],\n", " [[384, 10839, 642, 493, 5366, 2601]],\n", " [[4152, 305, 4, 597, 4, 347, 4]],\n", " [[5092, 632, 1037, 165]],\n", " [[17057, 8441]],\n", " [[1156, 632, 5259, 1037, 165]],\n", " [[9692, 274, 4, 347, 4]],\n", " [[11536, 632, 1037, 165]],\n", " [[1211, 6518, 8441]],\n", " [[21774, 632, 1037, 165]],\n", " [[1221, 390, 18, 632, 4191, 165]],\n", " [[5028, 632, 1037, 165]],\n", " [[11437, 632, 5259, 1037, 165]],\n", " [[5706, 274, 4, 347, 4]],\n", " [[497, 5638, 405, 366, 274, 4, 347, 4]],\n", " [[2009, 27417, 2684, 2884, 1113, 9401]],\n", " [[248, 11579, 11631, 3785, 1168, 263, 4612]],\n", " [[18490, 632, 5259, 1037, 165]],\n", " [[5703, 38901, 4216]],\n", " [[289, 594, 3869, 5429]],\n", " [[5926, 2032, 16248, 5429]],\n", " [[4436, 29, 385, 108, 11094, 4947, 11249, 3663, 13324]],\n", " [[234, 1277, 21402, 211, 6472, 102, 42191, 11591]],\n", " [[726, 12, 3609, 102, 873, 230, 3632]],\n", " [[83, 4, 347, 4, 7338]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[2822, 3622, 12612]],\n", " [[4644, 632, 5259, 1037, 165]],\n", " [[272, 14996, 19380]],\n", " [[798, 632, 1037, 165]],\n", " [[840, 873, 873, 726, 7746, 3572, 2009]],\n", " [[9096, 3497, 632, 5259, 1037, 165]],\n", " [[2009, 29018, 10221, 2684, 4119, 6303, 271, 1168]],\n", " [[1775, 438, 10810, 4936, 15247, 274, 4, 347, 4]],\n", " [[5302, 2681, 1243, 967, 366, 163, 4, 347, 4]],\n", " [[29018, 10221, 2684, 2893, 13345, 263, 8062]],\n", " [[22256, 2565, 632, 1037, 165]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[2910, 632, 1037, 165]],\n", " ...],\n", " 'relation': ['P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " ...],\n", " 'num_answers': [1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " ...]},\n", " '2020-Q4': {'text': [['Alex Morgan plays for .'],\n", " ['Lionel Messi plays for .'],\n", " ['Cristiano Ronaldo plays for .'],\n", " ['LeBron James plays for .'],\n", " ['Puck Moonen plays for .'],\n", " ['Zlatan Ibrahimović plays for .'],\n", " ['Neymar plays for .'],\n", " ['Ronaldinho plays for .'],\n", " ['Megan Rapinoe plays for .'],\n", " ['Pau Gasol plays for .'],\n", " ['Alisha Lehmann plays for .'],\n", " ['Robert Lewandowski plays for .'],\n", " ['Gianluigi Buffon plays for .'],\n", " ['Andrea Pirlo plays for .'],\n", " ['Kevin Durant plays for .'],\n", " ['Lukas Podolski plays for .'],\n", " ['Lewis Hamilton plays for .'],\n", " ['Formiga plays for .'],\n", " ['Naomi Osaka plays for .'],\n", " ['José Mourinho plays for .'],\n", " ['Franck Ribéry plays for .'],\n", " ['Tim Cahill plays for .'],\n", " ['Chris Froome plays for .'],\n", " ['Lieke Martens plays for .'],\n", " ['Manuel Neuer plays for .'],\n", " ['Lindsey Horan plays for .'],\n", " ['Javier Mascherano plays for .'],\n", " ['Mark Cavendish plays for .'],\n", " ['James Rodríguez plays for .'],\n", " ['Hope Solo plays for .'],\n", " ['Diego Forlán plays for .'],\n", " ['Sebastián Abreu plays for .'],\n", " ['Carli Lloyd plays for .'],\n", " ['Marta plays for .'],\n", " ['Javier Hernández plays for .'],\n", " ['Yuzvendra Chahal plays for .'],\n", " ['Andrés Iniesta plays for .'],\n", " ['Wayne Rooney plays for .'],\n", " ['Keisuke Honda plays for .'],\n", " ['Sergio Agüero plays for .'],\n", " ['Marianne Vos plays for .'],\n", " ['Sergio Ramos plays for .'],\n", " ['Dani Alves plays for .'],\n", " ['Carlos Tevez plays for .'],\n", " ['Pepe Reina plays for .'],\n", " ['Giovani dos Santos plays for .'],\n", " ['Ricardo Quaresma plays for .'],\n", " ['Mesut Özil plays for .'],\n", " ['Freddy Adu plays for .'],\n", " ['Cristiane Rozeira plays for .'],\n", " ['Maya Moore plays for .'],\n", " ['Giorgio Chiellini plays for .'],\n", " ['Bastian Schweinsteiger plays for .'],\n", " ['Luis Scola plays for .'],\n", " ['Jérôme Boateng plays for .'],\n", " ['Kevin-Prince Boateng plays for .'],\n", " ['Vincenzo Nibali plays for .'],\n", " ['Egidio Arévalo Rios plays for .'],\n", " ['Dwyane Wade plays for .'],\n", " ['Arjen Robben plays for .'],\n", " ['Dwight Howard plays for .'],\n", " ['Cesc Fàbregas plays for .'],\n", " ['Nigel de Jong plays for .'],\n", " ['Colin Kazim-Richards plays for .'],\n", " ['Pierre-Emerick Aubameyang plays for .'],\n", " ['David Alaba plays for .'],\n", " ['Xherdan Shaqiri plays for .'],\n", " ['Marc Gasol plays for .'],\n", " ['Laura Kenny plays for .'],\n", " ['Aristide Bancé plays for .'],\n", " ['Philippe Gilbert plays for .'],\n", " ['Breanna Stewart plays for .'],\n", " ['Bruno Alves plays for .'],\n", " ['Ali Krieger plays for .'],\n", " ['Antoine Griezmann plays for .'],\n", " ['Mohamed Salah plays for .'],\n", " ['Beto plays for .'],\n", " ['Memphis Depay plays for .'],\n", " ['Pablo Zabaleta plays for .'],\n", " ['Jozy Altidore plays for .'],\n", " ['Steve Nash plays for .'],\n", " ['Shinji Okazaki plays for .'],\n", " ['Maya Yoshida plays for .'],\n", " ['Gary Cahill plays for .'],\n", " ['Guillermo Ochoa plays for .'],\n", " ['Serge Gnabry plays for .'],\n", " ['Christine Sinclair plays for .'],\n", " ['Paul Pogba plays for .'],\n", " ['Hugo Almeida plays for .'],\n", " [\"Raïs M'Bolhi plays for .\"],\n", " ['Peter Sagan plays for .'],\n", " ['Joel Campbell plays for .'],\n", " ['Luka Modrić Papá de Lionel Messi plays for .'],\n", " ['Elia Viviani plays for .'],\n", " ['Toni Kroos plays for .'],\n", " ['Giulia Gwinn plays for .'],\n", " ['Ellen van Dijk plays for .'],\n", " ['Lucas Barrios plays for .'],\n", " ['Daniel Fernandes plays for .'],\n", " ['Juan Mata plays for .'],\n", " ['Michael Bradley plays for .'],\n", " ['Greg Van Avermaet plays for .'],\n", " ['Alexandra Lacrabère plays for .'],\n", " ['David Andersen plays for .'],\n", " ['Javi Martínez plays for .'],\n", " ['Davide Rebellin plays for .'],\n", " ['Kyrie Irving plays for .'],\n", " ['Sebastian Vettel plays for .'],\n", " ['Ingrid Syrstad Engen plays for .'],\n", " ['Adrien Silva plays for .'],\n", " ['Rigoberto Urán plays for .'],\n", " ['John Arne Riise plays for .'],\n", " ['Tobin Heath plays for .'],\n", " ['Hedvig Lindahl plays for .'],\n", " ['Marcelo plays for .'],\n", " ['Radamel Falcao plays for .'],\n", " ['Jakob Fuglsang plays for .'],\n", " ['Marko Marin plays for .'],\n", " ['Mikel John Obi plays for .'],\n", " ['Hulk plays for .'],\n", " ['Rudy Fernández plays for .'],\n", " ['Lizzie Deignan plays for .'],\n", " ['Zé Roberto plays for .'],\n", " ['Rohan Dennis plays for .'],\n", " ['Łukasz Fabiański plays for .'],\n", " ['Mats Hummels plays for .'],\n", " ['Diego Ribas da Cunha plays for .'],\n", " ['Artem Milevskyi plays for .'],\n", " ['Anna van der Breggen plays for .'],\n", " ['Rafinha plays for .'],\n", " ['Vladimir Stojković plays for .'],\n", " ['Ángel Di María plays for .'],\n", " ['Chris Paul plays for .'],\n", " ['Rosana dos Santos Augusto plays for .'],\n", " ['Manuel da Costa plays for .'],\n", " ['Alexis Sánchez plays for .'],\n", " ['Sophie Schmidt plays for .'],\n", " ['Pepe plays for .'],\n", " ['Philippe Coutinho plays for .'],\n", " ['Sadio Mané plays for .'],\n", " ['Christen Press plays for .'],\n", " ['Keylor Navas plays for .'],\n", " ['Valentino Rossi plays for .'],\n", " ['Bojan Krkić plays for .'],\n", " ['Shinji Kagawa plays for .'],\n", " ['Diego Costa plays for .'],\n", " ['Steve Mandanda plays for .'],\n", " ['Miodrag Anđelković plays for .'],\n", " ['Thibaut Courtois plays for .'],\n", " ['Eiður Guðjohnsen plays for .'],\n", " ['Jakub Błaszczykowski plays for .'],\n", " ['Henning Berg plays for .'],\n", " ['Annemiek van Vleuten plays for .'],\n", " ['Álvaro Pereira plays for .'],\n", " ['Florent Sinama Pongolle plays for .'],\n", " ['Miljan Mrdaković plays for .'],\n", " ['Mario Götze plays for .'],\n", " ['Jô plays for .'],\n", " ['Claudio Pizarro plays for .'],\n", " ['Nani plays for .'],\n", " ['Erin McLeod plays for .'],\n", " ['Peter Odemwingie plays for .'],\n", " ['Sofia Jakobsson plays for .'],\n", " ['Jordi Alba plays for .'],\n", " ['Sami Khedira plays for .'],\n", " ['Tony Martin plays for .'],\n", " ['Kirsten Wild plays for .'],\n", " ['Nicklas Bendtner plays for .'],\n", " ['Junichi Inamoto plays for .'],\n", " ['Michael Umaña plays for .'],\n", " ['Niklas Süle plays for .'],\n", " ['Diego Godín plays for .'],\n", " ['Olivier Giroud plays for .'],\n", " ['Tom Dumoulin plays for .'],\n", " ['Nicolas Roche plays for .'],\n", " [\"Kelley O'Hara plays for .\"],\n", " ['Lisa De Vanna plays for .'],\n", " ['Rafael van der Vaart plays for .'],\n", " ['Elena Delle Donne plays for .'],\n", " ['Sakina Karchaoui plays for .'],\n", " ['John Degenkolb plays for .'],\n", " ['Brittney Griner plays for .'],\n", " ['Shunsuke Nakamura plays for .'],\n", " ['David Silva plays for .'],\n", " ['Axel Witsel plays for .'],\n", " ['Andrés Guardado plays for .'],\n", " ['Kylian Mbappé plays for .'],\n", " ['Tom Brady plays for .'],\n", " ['Micah Richards plays for .'],\n", " ['Łukasz Piszczek plays for .'],\n", " ['Royston Drenthe plays for .'],\n", " ['Gareth Bale plays for .'],\n", " ['Sergio Romero plays for .'],\n", " ['Filipe Luís plays for .'],\n", " ['Romelu Lukaku plays for .'],\n", " ['Erling Haaland plays for .'],\n", " ['Jermaine Jones plays for .'],\n", " ['Eden Hazard plays for .'],\n", " ['Demba Ba plays for .'],\n", " [\"Amar'e Stoudemire plays for .\"],\n", " ['Nuri Şahin plays for .'],\n", " ['Hugo Lloris plays for .'],\n", " ['Morgan Schneiderlin plays for .'],\n", " ['Thomas Vermaelen plays for .'],\n", " ['Ryan Babel plays for .'],\n", " ['Aron Baynes plays for .'],\n", " ['Johan Djourou plays for .'],\n", " ['Kevin De Bruyne plays for .'],\n", " ['Shinji Ono plays for .'],\n", " ['Idriss Carlos Kameni plays for .'],\n", " ['Fernando Llorente plays for .'],\n", " ['André Greipel plays for .'],\n", " ['Boris Diaw plays for .'],\n", " ['Anja Mittag plays for .'],\n", " ['Joakim Noah plays for .'],\n", " ['Ricky Rubio plays for .'],\n", " ['Stephan Andersen plays for .'],\n", " [\"Andrés D'Alessandro plays for .\"],\n", " ['Becky Sauerbrunn plays for .'],\n", " ['Rafinha plays for .'],\n", " ['Blaise Matuidi plays for .'],\n", " ['Cristian Rodríguez plays for .'],\n", " ['Marek Hamšík plays for .'],\n", " ['Ciro Immobile plays for .'],\n", " [\"Dame N'Doye plays for .\"],\n", " ['Raphaël Varane plays for .'],\n", " ['Roger Kluge plays for .'],\n", " ['Christian Eriksen plays for .'],\n", " ['Luiz Gustavo plays for .'],\n", " ['Hamit Altıntop plays for .'],\n", " ['Brad Guzan plays for .'],\n", " ['André Ayew plays for .'],\n", " ['César Azpilicueta plays for .'],\n", " ['Éric Maxim Choupo-Moting plays for .'],\n", " ['Shkodran Mustafi plays for .'],\n", " ['Caroline Seger plays for .'],\n", " ['Fernando Muslera plays for .'],\n", " ['Leonardo Bonucci plays for .'],\n", " ['Nordin Amrabat plays for .'],\n", " ['Richard Kingson plays for .'],\n", " ['Jonny Evans plays for .'],\n", " ['Jonathan de Guzmán plays for .'],\n", " ['Yannick Bolasie plays for .'],\n", " ['Dante Bonfim Costa Santos plays for .'],\n", " ['Park Chu-young plays for .'],\n", " ['Lucas Hernandez plays for .'],\n", " ['Klaas-Jan Huntelaar plays for .'],\n", " ['Sonny Bill Williams plays for .'],\n", " ['Sydney Leroux plays for .'],\n", " ['Elano plays for .'],\n", " ['Asamoah Gyang plays for .'],\n", " ['Grzegorz Krychowiak plays for .'],\n", " ['Achraf Hakim plays for .'],\n", " ['John Guidetti plays for .'],\n", " ['Salomon Kalou plays for .'],\n", " ['Karen Bardsley plays for .'],\n", " ['Cédric Soares plays for .'],\n", " ['Dietmar Hamann plays for .'],\n", " ['Mark Milligan plays for .'],\n", " ['Yūki Nagasato plays for .'],\n", " ['Jack Wilshere plays for .'],\n", " ['Albert Riera plays for .'],\n", " ['Florent Malouda plays for .'],\n", " ['Medhi Benatia plays for .'],\n", " ['Eduardo Carvalho plays for .'],\n", " ['Maicon plays for .'],\n", " ['Giuseppe Rossi plays for .'],\n", " ['Samir Nasri plays for .'],\n", " ['Andrija Kaluđerović plays for .'],\n", " ['Emre Belözoğlu plays for .'],\n", " ['Sarah Storey plays for .'],\n", " ['Daniel Martin plays for .'],\n", " ['Nairo Quintana plays for .'],\n", " ['Leroy Sané plays for .'],\n", " ['Valon Behrami plays for .'],\n", " ['Eiji Kawashima plays for .'],\n", " ['Ana Dabović plays for .'],\n", " ['Carlos Sánchez plays for .'],\n", " ['Raúl Albiol plays for .'],\n", " ['Gabriel Torres plays for .'],\n", " ['Simon Kjær plays for .'],\n", " ['Willy Caballero plays for .'],\n", " ['Vince Carter plays for .'],\n", " ['Sergio Rodríguez plays for .'],\n", " ['Luuk de Jong plays for .'],\n", " ['Eduardo Vargas plays for .'],\n", " ['Ivan Perišić plays for .'],\n", " ['Michał Kwiatkowski plays for .'],\n", " ['Diego Reyes plays for .'],\n", " ['Lars Hirschfeld plays for .'],\n", " ['Abby Dahlkemper plays for .'],\n", " ['Daley Blind plays for .'],\n", " ['Roko Ukić plays for .'],\n", " ['Pablo Contreras plays for .'],\n", " ['Nando de Colo plays for .'],\n", " ['Steph Houghton plays for .'],\n", " ['Ramires plays for .'],\n", " ['Jermain Defoe plays for .'],\n", " ['Divock Origi plays for .'],\n", " ['el tete plays for .'],\n", " ['Maximiliano Richeze plays for .'],\n", " ['Ashleigh Barty plays for .'],\n", " ['Paulinho plays for .'],\n", " ['Curao Ql plays for .'],\n", " ['Marquinhos plays for .'],\n", " ['Julie Ertz plays for .'],\n", " ['Sebastián Eguren plays for .'],\n", " ['Marco Fabián plays for .'],\n", " ['Edvald Boasson-Hagen plays for .'],\n", " ['João Moutinho plays for .'],\n", " ['İlkay Gündoğan plays for .'],\n", " ['Gary Medel plays for .'],\n", " ['Karim Ziani plays for .'],\n", " ['Christian Bolaños plays for .'],\n", " ['Gonzalo Jara plays for .'],\n", " ['David De Gea plays for .'],\n", " ['Esteban Cambiasso plays for .'],\n", " ['Gabriel Enrique Gómez plays for .'],\n", " ['Douglas Costa plays for .'],\n", " ['Michy Batshuayi plays for .'],\n", " ['Yakubu plays for .'],\n", " ['José Fonte plays for .'],\n", " ['Rui Costa plays for .'],\n", " ['Salvatore Sirigu plays for .'],\n", " ['Roman Kreuziger plays for .'],\n", " ['Kasper Schmeichel plays for .'],\n", " ['Roman Bürki plays for .'],\n", " ['Víctor Claver plays for .'],\n", " ['Arkadiusz Milik plays for .'],\n", " ['Daniel Ricciardo plays for .'],\n", " ['Thomas Delaney plays for .'],\n", " ['Kevin Love plays for .'],\n", " ['Stéphane Mbia plays for .'],\n", " ['Tatiana Guderzo plays for .'],\n", " ['Martín Demichelis plays for .'],\n", " ['Siraba Dembele plays for .'],\n", " ['Damian Lillard plays for .'],\n", " ['Richie Porte plays for .'],\n", " ['Sébastien Haller plays for .'],\n", " ['Edin Džeko plays for .'],\n", " ['Daisuke Matsui plays for .'],\n", " ['José Sosa plays for .'],\n", " ['Nelson Valdez plays for .'],\n", " ['Alexander Kristoff plays for .'],\n", " ['Luis Advíncula plays for .'],\n", " ['Danilo Pereira plays for .'],\n", " [\"N'Golo Kanté plays for .\"],\n", " ['Duško Tošić plays for .'],\n", " ['Ricardo Rodriguez plays for .'],\n", " ['Shane Smeltz plays for .'],\n", " ['Marcelo Martins Moreno plays for .'],\n", " ['Peter Crouch plays for .'],\n", " ['Simon Gerrans plays for .'],\n", " ['Mark González plays for .'],\n", " ['Kevin Mirallas plays for .'],\n", " ['Gervinho plays for .'],\n", " ['Alex Song plays for .'],\n", " ['Glenn Whelan plays for .'],\n", " ['Raul Meireles plays for .'],\n", " ['Ali Riley plays for .'],\n", " ['Anthony Davis plays for .'],\n", " ['Sani Kaita plays for .'],\n", " ['Christie Pearce plays for .'],\n", " ['Luís Fabiano plays for .'],\n", " ['Jan Vertonghen plays for .'],\n", " ['Thiago Alcântara plays for .'],\n", " ['João Mário plays for .'],\n", " ['Alisson plays for .'],\n", " ['Fridolina Rolfö plays for .'],\n", " ['Wout van Aert plays for .'],\n", " ['Alphonse Areola plays for .'],\n", " ['Mousa Dembélé plays for .'],\n", " ['Babett Peter plays for .'],\n", " ['Fabiana da Silva Simões plays for .'],\n", " ['Blerim Džemaili plays for .'],\n", " ['Adriana Leon plays for .'],\n", " ['Naohiro Takahara plays for .'],\n", " ['oscar perez plays for .'],\n", " ['Gaël Kakuta plays for .'],\n", " ['Isco Alarcón plays for .'],\n", " ['Jaroslav Drobný plays for .'],\n", " ['Raheem Sterling plays for .'],\n", " ['Samuel Umtiti plays for .'],\n", " ['Amido Baldé plays for .'],\n", " ['Brad Jones plays for .'],\n", " ['Adil Rami plays for .'],\n", " ['Miguel Layún plays for .'],\n", " ['Jan Koller plays for .'],\n", " ['Dmitri Alenichev plays for .'],\n", " ['Marco Asensio plays for .'],\n", " ['Michael Mørkøv plays for .'],\n", " ['Kendall Waston plays for .'],\n", " ['Milan Borjan plays for .'],\n", " ['Kamil Glik plays for .'],\n", " ['Roman Neustädter plays for .'],\n", " ['Marcelo Díaz plays for .'],\n", " ['Jesé Rodríguez plays for .'],\n", " ['Roberto Acuña plays for .'],\n", " ['Ricardo Faty plays for .'],\n", " ['Verónica Boquete plays for .'],\n", " ['Danilo Luiz plays for .'],\n", " ['Olga Zabelinskaya plays for .'],\n", " ['Darron Gibson plays for .'],\n", " ['James Harden plays for .'],\n", " ['Russell Westbrak plays for .'],\n", " ['Jung Sung-ryong plays for .'],\n", " ['Melissa Tancredi plays for .'],\n", " ['Daryl Impey plays for .'],\n", " ['Henrik Ojamaa plays for .'],\n", " ['Leon Goretzka plays for .'],\n", " ['Pablo Hernández Domínguez plays for .'],\n", " ['Joseph Yobo plays for .'],\n", " ['Rafał Majka plays for .'],\n", " ['Bruma plays for .'],\n", " ['Samuel Inkoom plays for .'],\n", " ['Robbie Rogers plays for .'],\n", " ['Robert de Pinho de Souza plays for .'],\n", " ['Lucho González plays for .'],\n", " ['Paul-Georges Ntep plays for .'],\n", " ['Ander Herrera plays for .'],\n", " ['Luis León Sánchez plays for .'],\n", " ['Érika Cristiano dos Santos plays for .'],\n", " ['Kingsley Coman plays for .'],\n", " ['Aymeric Laporte plays for .'],\n", " ['Primož Roglič plays for .'],\n", " ['Charles Aránguiz plays for .'],\n", " ['Julian Alaphilippe plays for .'],\n", " ['André Silva plays for .'],\n", " ['Pauline Ferrand-Prevot plays for .'],\n", " ['Elton Brand plays for .'],\n", " ['Nikita Rukavytsya plays for .'],\n", " ['Marc-André ter Stegen plays for .'],\n", " ['Steven Davis plays for .'],\n", " ['Anderson plays for .'],\n", " ['Matthias Ginter plays for .'],\n", " ['Haris Seferovic plays for .'],\n", " ['Rui Patrício plays for .'],\n", " ['Wojciech Szczęsny plays for .'],\n", " ['Rúrik Gíslason plays for .'],\n", " ['Oscar dos Santos Emboaba Júnior plays for .'],\n", " ['Koo Ja-cheol plays for .'],\n", " ['Lucy Bronze plays for .'],\n", " ['Crystal Dunn plays for .'],\n", " ['Toby Alderweireld plays for .'],\n", " ['Penalty in the UEL final plays for .'],\n", " ['Joe Hart plays for .'],\n", " ['Kepa Arrizabalaga plays for .'],\n", " ['Giannis Antetokounmpo plays for .'],\n", " ['Besart Berisha plays for .'],\n", " ['Willian plays for .'],\n", " ['Obafemi Martins plays for .'],\n", " ['Moussa Maâzou plays for .'],\n", " ['Alexei Eremenko plays for .'],\n", " ['Moussa Dembélé plays for .'],\n", " ['Ashlyn Harris plays for .'],\n", " ['Chris Wood plays for .'],\n", " ['Reto Ziegler plays for .'],\n", " ['Antonio Nocerino plays for .'],\n", " ['Juanfran Torres plays for .'],\n", " ['Fernando Gago plays for .'],\n", " ['Ji Dong-won plays for .'],\n", " ['Carlos Salcido plays for .'],\n", " ['Oribe Peralta plays for .'],\n", " ['Marco Ureña plays for .'],\n", " ['Antar Yahia plays for .'],\n", " ['Georginio Wijnaldum plays for .'],\n", " ['Sam Kerr plays for .'],\n", " ['Martín Cáceres plays for .'],\n", " ['Valeri Bojinov plays for .'],\n", " ['Luis Tejada plays for .'],\n", " ['Gökhan İnler plays for .'],\n", " ['Javi García plays for .'],\n", " ['Nicolás Lodeiro plays for .'],\n", " ['Raúl Jiménez plays for .'],\n", " ['Janine Beckie plays for .'],\n", " ['Selim Benachour plays for .'],\n", " ['Mickaël Gelabale plays for .'],\n", " ['Daniel González Güiza plays for .'],\n", " ['Jackie Groenen plays for .'],\n", " ['John Mensah plays for .'],\n", " ['Federico Fazio plays for .'],\n", " ['Carl Medjani plays for .'],\n", " ['Ahmed Musa plays for .'],\n", " ['Essam El-Hadary plays for .'],\n", " ['Vedad Ibišević plays for .'],\n", " ['Marouane Fellaini plays for .'],\n", " ['Miralem Pjanić plays for .'],\n", " ['Jorginho plays for .'],\n", " ['Lacina Traoré plays for .'],\n", " ['Christiane Endler plays for .'],\n", " ['Alyssa Naeher plays for .'],\n", " ['Steven Nzonzi plays for .'],\n", " ['Kim Dong-jin plays for .'],\n", " ['Joshua Kimmich plays for .'],\n", " ['Emre Can plays for .'],\n", " ['Nicolas Batum plays for .'],\n", " ['José Calderón plays for .'],\n", " ['Emiliano Insúa plays for .'],\n", " ['Stephan El Shaarawy plays for .'],\n", " ['Casemiro plays for .'],\n", " ['Júnior Díaz plays for .'],\n", " ['Jodie Taylor plays for .'],\n", " ['Robin Olsen plays for .'],\n", " ['Héctor Herrera plays for .'],\n", " ['Sebastian Giovinco plays for .'],\n", " ['Rodrigo plays for .'],\n", " ['Fernando Gaviria plays for .'],\n", " ['Oleksandr Aliyev plays for .'],\n", " ['Florian Thauvin plays for .'],\n", " ['Kim Bo-kyung plays for .'],\n", " ['Abel Hernández plays for .'],\n", " ['Thorgan Hazard plays for .'],\n", " ['Gotoku Sakai plays for .'],\n", " ['Odion Ighalo plays for .'],\n", " ['Jasmin Glaesser plays for .'],\n", " ['Eliaquim Mangala plays for .'],\n", " ['Felipe Melo plays for .'],\n", " ['Gábor Király plays for .'],\n", " ['Herculez Gomez plays for .'],\n", " ['Paulo da Silva plays for .'],\n", " ['Héctor Moreno plays for .'],\n", " ['Cacau plays for .'],\n", " ['Ion Izagirre plays for .'],\n", " ['Denis Cheryshev plays for .'],\n", " ['Anthony Annan plays for .'],\n", " ['Darius Songaila plays for .'],\n", " ['Morgan De Sanctis plays for .'],\n", " ['Joe Ingles plays for .'],\n", " ['Paco Alcácer plays for .'],\n", " ['Sara Däbritz plays for .'],\n", " ['Nikola Mirotić plays for .'],\n", " ['Adlène Guedioura plays for .'],\n", " ['Fábio Coentrão plays for .'],\n", " ['Scott Carson plays for .'],\n", " ['Granit Xhaka plays for .'],\n", " ['Ashkan Dejagah plays for .'],\n", " ['Derrick Rose plays for .'],\n", " ['Makoto Hasebe plays for .'],\n", " ['William Troost-Ekong plays for .'],\n", " ['Mauro Zárate plays for .'],\n", " ['Seydou Doumbia plays for .'],\n", " ['Tomáš Pekhart plays for .'],\n", " ['Jeffrén Suárez plays for .'],\n", " ['Kurt Zouma plays for .'],\n", " ['Nicolás Otamendi plays for .'],\n", " ['Silvestre Varela plays for .'],\n", " ['Hiroki Sakai plays for .'],\n", " ['Geoffrey Kondogbia plays for .'],\n", " ['Antonio Rüdiger plays for .'],\n", " ['Danko Lazović plays for .'],\n", " ['Admir Mehmedi plays for .'],\n", " ['Javier Aquino plays for .'],\n", " ['Kelsey Plum plays for .'],\n", " ['Teemu Pukki plays for .'],\n", " ['Grafite plays for .'],\n", " ['Lisa Brennauer plays for .'],\n", " ['Dejan Lovren plays for .'],\n", " ['Niki Terpstra plays for .'],\n", " ['Marcelinho Paraíba plays for .'],\n", " ['Mix Diskerud plays for .'],\n", " ['David Ospina plays for .'],\n", " ['Alexander Sørloth plays for .'],\n", " ['Marek Saganowski plays for .'],\n", " ['Gabriel Barbosa plays for .'],\n", " ['Besart Abdurahimi plays for .'],\n", " ['Matthew Spiranovic plays for .'],\n", " ['Josip Tadić plays for .'],\n", " ['Younis Mahmoud plays for .'],\n", " ['Jordan Ayew plays for .'],\n", " ['Miguel Lopes plays for .'],\n", " ['Sokratis Papastathopoulos plays for .'],\n", " ['Martin Hansen plays for .'],\n", " ['Pierre Bengtsson plays for .'],\n", " ['Taye Taiwo plays for .'],\n", " ['David Carney plays for .'],\n", " ['Ángel Guirado plays for .'],\n", " ['Roberto Jiménez Gago plays for .'],\n", " ['Karen Carney plays for .'],\n", " ['Amin Younes plays for .'],\n", " ['Javier Balboa plays for .'],\n", " ['Francisco Javier Rodríguez plays for .'],\n", " ['Éder plays for .'],\n", " ['Daniëlle van de Donk plays for .'],\n", " ['Reza Ghoochannejhad plays for .'],\n", " ['Kaylyn Kyle plays for .'],\n", " ['André Lotterer plays for .'],\n", " ['Daniel Wass plays for .'],\n", " ['Matías Fernandez plays for .'],\n", " ['Harry Kane plays for .'],\n", " ['Son Heung-min plays for .'],\n", " ['Jhonny Acosta plays for .'],\n", " ['Cléopatre Darleux plays for .'],\n", " ['Tony Gallopin plays for .'],\n", " ['Yann Sommer plays for .'],\n", " ['Eniola Aluko plays for .'],\n", " ['Tyson Chandler plays for .'],\n", " ['Anthony Martial plays for .'],\n", " ['Greg Henderson plays for .'],\n", " ['Kiko Casillas plays for .'],\n", " ['Nilla Fischer plays for .'],\n", " ['Leon Balogun plays for .'],\n", " ['James Milner plays for .'],\n", " ['Cameron Meyer plays for .'],\n", " ['Benjamin Pavard plays for .'],\n", " ['Luís Leal plays for .'],\n", " ['Renato Sanches plays for .'],\n", " ['Mathew Ryan plays for .'],\n", " ['Shuichi Gonda plays for .'],\n", " ['Pierre-Emile Højbjerg plays for .'],\n", " ['Simon Mignolet plays for .'],\n", " ['Ben Sahar plays for .'],\n", " ['Mana Iwabuchi plays for .'],\n", " ['Desiree Scott plays for .'],\n", " ['Quinn plays for .'],\n", " ['Viktor Fischer plays for .'],\n", " ['Ron-Robert Zieler plays for .'],\n", " ['Alex Sandro plays for .'],\n", " ['Damien Le Tallec plays for .'],\n", " ['Tiago Mendes plays for .'],\n", " ['Martin Ødegaard plays for .'],\n", " ['Salvatore Bocchetti plays for .'],\n", " ['Olarenwaju Kayode plays for .'],\n", " ['Fraser Forster plays for .'],\n", " ['Corentin Tolisso plays for .'],\n", " ['Walter Pandiani (CR7 su papá) plays for .'],\n", " ['Justo Villar plays for .'],\n", " ['Francisco Arrué plays for .'],\n", " ['Abel Aguilar plays for .'],\n", " ['Esmaël Gonçalves plays for .'],\n", " ['Sulley Muntari plays for .'],\n", " ['Izet Hajrović plays for .'],\n", " ['Ragnar Klavan plays for .'],\n", " ['Didier Zokora plays for .'],\n", " ['Oscar Ustari plays for .'],\n", " ['Mitchell Langerak plays for .'],\n", " ['Yassine Bounou plays for .'],\n", " ['Hakim Ziyech plays for .'],\n", " ['Lydia Williams plays for .'],\n", " ['Gabriel Jesus plays for .'],\n", " ['Álvaro Fernández plays for .'],\n", " ['Abdoulaye Ba plays for .'],\n", " ['Julian Draxler plays for .'],\n", " ['Stoycho Mladenov plays for .'],\n", " ['Raphaël Guerreiro plays for .'],\n", " ['Simão Sabrosa plays for .'],\n", " ['Anouk Hoogendijk plays for .'],\n", " ['Emanuel Pogatetz plays for .'],\n", " ['Yannick Carrasco plays for .'],\n", " ['Marko Arnautović plays for .'],\n", " ['Bruno Uvini plays for .'],\n", " ['Lukáš Hrádecký plays for .'],\n", " ['Charles Itandje plays for .'],\n", " ['Ján Mucha plays for .'],\n", " ['Florent Piétrus plays for .'],\n", " ['Riyad Mahrez plays for .'],\n", " ['Andre Iguodala plays for .'],\n", " ['Lasse Norman Hansen plays for .'],\n", " ['Nikos Zisis plays for .'],\n", " ['Alou Diarra plays for .'],\n", " ['Przemysław Tytoń plays for .'],\n", " ['Lucas Moura plays for .'],\n", " ['Álvaro Morata plays for .'],\n", " ['Amandine Henry plays for .'],\n", " ['Jefferson Farfán plays for .'],\n", " ['Martin Braithwaite plays for .'],\n", " ['Tom Heaton plays for .'],\n", " ['Carlos Salcedo plays for .'],\n", " ['Gabriel Torje plays for .'],\n", " ['Emily van Egmond plays for .'],\n", " ['Nicolás Laprovíttola plays for .'],\n", " ['Simon Clarke plays for .'],\n", " ['Elias Kachunga plays for .'],\n", " ['Adrián López Álvarez plays for .'],\n", " ['Maurice Edu plays for .'],\n", " ['Nelson Oliveira plays for .'],\n", " ['Aco Stojkov plays for .'],\n", " ['Charlie Davies plays for .'],\n", " ['Carlos Fernandes plays for .'],\n", " ['Thaisa plays for .'],\n", " ['Álvaro Saborío plays for .'],\n", " ['Gabriel Cichero plays for .'],\n", " ['Fernandinho plays for .'],\n", " ['Vladimir Gabulov plays for .'],\n", " ['Taylor Rochestie plays for .'],\n", " ['Sven Bender plays for .'],\n", " ['Matías Aguirregaray plays for .'],\n", " ['Wilfried Zaha plays for .'],\n", " ['Ibrahim Afellay plays for .'],\n", " ['Mateo Kovačić plays for .'],\n", " ['Nathan Jawai plays for .'],\n", " ['Jérémy Ménez plays for .'],\n", " ['Marc Bartra plays for .'],\n", " ['Éric Djemba-Djemba plays for .'],\n", " ['Tarik Elyounoussi plays for .'],\n", " ['Yacine Brahimi plays for .'],\n", " ['Omar Bravo plays for .'],\n", " ['Yuri Zhirkov plays for .'],\n", " ['Antonio Valencia plays for .'],\n", " ['Kenneth Vermeer plays for .'],\n", " ['Dmytro Chyhrynskyi plays for .'],\n", " ['Juan Manuel Iturbe plays for .'],\n", " ['Julian de Guzman plays for .'],\n", " ['Alexander Merkel plays for .'],\n", " ['Roman Eremenko plays for .'],\n", " ['Lars Bender plays for .'],\n", " ['Suk Hyun-jun plays for .'],\n", " ['Emre Mor plays for .'],\n", " ['Zoran Tošić plays for .'],\n", " ['Jonathan dos Santos plays for .'],\n", " ['Jonathan Mensah plays for .'],\n", " ['Enzo Fernández plays for .'],\n", " ['Kim Young-gwon plays for .'],\n", " ['Oscar Pérez Rojas plays for .'],\n", " ['Astrit Ajdarević plays for .'],\n", " ['Rolf Feltscher plays for .'],\n", " ['Vedran Ćorluka plays for .'],\n", " ['Darren Randolph plays for .'],\n", " ['Ivan Pelizzoli plays for .'],\n", " ['Radomir Đalović plays for .'],\n", " ['Adam Nemec plays for .'],\n", " ['Kristie Mewis plays for .'],\n", " ['Hannes Þór Halldórsson plays for .'],\n", " ['Valon Berisha plays for .'],\n", " ['Marco Donadel plays for .'],\n", " ['Ola Toivonen plays for .'],\n", " ['Winston Reid plays for .'],\n", " ['Max Kruse plays for .'],\n", " ['Saki Kumagai plays for .'],\n", " ['Branko Ilić plays for .'],\n", " ['Răzvan Raț plays for .'],\n", " ['Robert Snodgrass plays for .'],\n", " ['Viola plays for .'],\n", " ['Klay Thompson plays for .'],\n", " ['Stefan Nikolić plays for .'],\n", " ['Carlos Sainz Jr plays for .'],\n", " ['Andressa Alves da Silva plays for .'],\n", " ['Álvaro Negredo plays for .'],\n", " ['Michail Antonio plays for .'],\n", " ['José Bosingwa plays for .'],\n", " ['Atsuto Uchida plays for .'],\n", " ['Lisa Dahlkvist plays for .'],\n", " ['James Troisi plays for .'],\n", " ['Yacouba Sylla plays for .'],\n", " ['Simon Vukčević plays for .'],\n", " ['Cristian Gamboa plays for .'],\n", " ['Elisa Longo Borghini plays for .'],\n", " ['Roberto Soldado plays for .'],\n", " ['Diana Matheson plays for .'],\n", " ['Steven Caulker plays for .'],\n", " ['Ibrahima Baldé plays for .'],\n", " ['Max Meyer plays for .'],\n", " ['Mbark Boussoufa plays for .'],\n", " ['Achille Emaná plays for .'],\n", " ['Patrice Bernier plays for .'],\n", " ['Ivan Vicelich plays for .'],\n", " ['Islam Slimani plays for .'],\n", " ['Dani Ceballos plays for .'],\n", " ['Lucas Digne plays for .'],\n", " ['Nemanja Matić plays for .'],\n", " ['Andreas Pereira plays for .'],\n", " ['Franck Dja Djédjé plays for .'],\n", " ['Ethan Ampadu plays for .'],\n", " ['R.A. Dickey plays for .'],\n", " ['Mike Havenaar plays for .'],\n", " ['Yukari Kinga plays for .'],\n", " ['Ryan Bertrand plays for .'],\n", " ['Ed Clancy plays for .'],\n", " ['Holger Badstuber plays for .'],\n", " ['Cristian Săpunaru plays for .'],\n", " ['Elinton Andrade plays for .'],\n", " ['Siem de Jong plays for .'],\n", " ['Carlos Bueno plays for .'],\n", " ['Kozue Ando plays for .'],\n", " ['Jimmy Durmaz plays for .'],\n", " ['Rafael Pereira da Silva plays for .'],\n", " ['Óscar Duarte plays for .'],\n", " ['Michael Hector plays for .'],\n", " ['Alex McCarthy plays for .'],\n", " ['Dzsenifer Marozsán plays for .'],\n", " ['Nélson Oliveira plays for .'],\n", " ['Fabio Aru plays for .'],\n", " ['Sacha Kljestan plays for .'],\n", " ['Sofiane Feghouli plays for .'],\n", " ['Emerson Palmieri plays for .'],\n", " ['Hristijan Kirovski plays for .'],\n", " ['Melanie Behringer plays for .'],\n", " ['Hernanes plays for .'],\n", " ['Isabelle Yacoubou plays for .'],\n", " ['Mauricio Isla plays for .'],\n", " ['Hakan Çalhanoğlu plays for .'],\n", " ['Douglas dos Santos plays for .'],\n", " ['Sinan Bolat plays for .'],\n", " ['Esteban Chaves plays for .'],\n", " ['Marcos Lopes plays for .'],\n", " ['J. J. Barea plays for .'],\n", " ['Mario Suárez Mata plays for .'],\n", " ['Stine Bredal Oftedal plays for .'],\n", " ['Njazi Kuqi plays for .'],\n", " ['Jesús Navas plays for .'],\n", " ['Shane Duffy plays for .'],\n", " ['Willy Hernangómez plays for .'],\n", " ['Richard Keogh plays for .'],\n", " ['Rafael Bastos plays for .'],\n", " ['Carlos Beltrán plays for .'],\n", " ['Nelson Cruz plays for .'],\n", " ['Fiodor Smolov plays for .'],\n", " ['Boban Marjanović plays for .'],\n", " ['Fabián Carini plays for .'],\n", " ['Pavel Pogrebnyak plays for .'],\n", " ['Goran Pandev plays for .'],\n", " ['Marc Janko plays for .'],\n", " ['Jamal Alioui plays for .'],\n", " ['Mohammadou Idrissou plays for .'],\n", " ['Ousmane Dembélé plays for .'],\n", " ['Gordon Schildenfeld plays for .'],\n", " ['Bauke Mollema plays for .'],\n", " ['Kalu Uche plays for .'],\n", " ['Burak Yılmaz plays for .'],\n", " ['Jimmy Butler plays for .'],\n", " ['Eduardo da Silva plays for .'],\n", " ['Jefferson Louis plays for .'],\n", " ['Diomansy Kamara plays for .'],\n", " [\"Franck Songo'o plays for .\"],\n", " ['Marco Rojas plays for .'],\n", " ['Aarón Ñíguez plays for .'],\n", " ['Victor Lindelöf plays for .'],\n", " ['Iván Kaviedes plays for .'],\n", " ['Nikola Kalinić plays for .'],\n", " ['Jajá plays for .'],\n", " ['Iván Zarandona plays for .'],\n", " ['DeAndre Yedlin plays for .'],\n", " ['Ikechi Anya plays for .'],\n", " ['Anthony Lopes plays for .'],\n", " ['Clemente Rodríguez plays for .'],\n", " ['Jan Oblak plays for .'],\n", " ['Ritchie De Laet plays for .'],\n", " ['Lassana Diarra plays for .'],\n", " ['Fatos Bećiraj plays for .'],\n", " ['Kalidou Koulibaly plays for .'],\n", " ['Kostas Mitroglou plays for .'],\n", " ['Mario Lemina plays for .'],\n", " ['Mindaugas Kalonas plays for .'],\n", " ['Édouard Mendy plays for .'],\n", " ['Giovanni Sio plays for .'],\n", " ['Tijani Belaïd plays for .'],\n", " ['Park Joo-ho plays for .'],\n", " ['Emir Spahić plays for .'],\n", " ['Nikica Jelavić plays for .'],\n", " ['Erich Brabec plays for .'],\n", " ['Christian Cueva plays for .'],\n", " ['Yevhen Konoplyanka plays for .'],\n", " ['Paulo Dybala plays for .'],\n", " ['Emanuel Herrera plays for .'],\n", " ['Ludovic Obraniak plays for .'],\n", " ['Kleyr Vieira dos Santos plays for .'],\n", " ['Andriy Yakovlev plays for .'],\n", " ['DeMarcus Cousins plays for .'],\n", " ['Ross McCormack plays for .'],\n", " ['Taylor Phinney plays for .'],\n", " ['Maksim Shatskikh plays for .'],\n", " ['Abby Erceg plays for .'],\n", " ['Yukiya Arashiro plays for .'],\n", " ['Jason Denayer plays for .'],\n", " [\"Jolien D'Hoore plays for .\"],\n", " ['Marco Reus plays for .'],\n", " ['Michael Matthews plays for .'],\n", " ['Halil Altıntop plays for .'],\n", " ['Diego Tardelli plays for .'],\n", " ['Isaac Promise plays for .'],\n", " ['Estelle Nze Minko plays for .'],\n", " ['Sergio Henao plays for .'],\n", " ['Andriy Yarmolenko plays for .'],\n", " ['Kamil Grosicki plays for .'],\n", " ['Fabinho plays for .'],\n", " ['Ishak Belfodil plays for .'],\n", " ['Tosaint Ricketts plays for .'],\n", " ['Linda Sembrant plays for .'],\n", " ['Tuncay Şanlı plays for .'],\n", " ['Hameur Bouazza plays for .'],\n", " ['Vladimír Weiss plays for .'],\n", " ['Bernard Mendy plays for .'],\n", " ['Matt Miazga plays for .'],\n", " ['Marcos Alonso plays for .'],\n", " ['Liassine Cadamuro plays for .'],\n", " ['Adam Federici plays for .'],\n", " ['Miloš Teodosić plays for .'],\n", " ['Ellen White plays for .'],\n", " ['Román Torres plays for .'],\n", " ['Brown Ideye plays for .'],\n", " ['Trixi Worrack plays for .'],\n", " ['Sead Kolašinac plays for .'],\n", " ['Bernardo Silva plays for .'],\n", " ['Nils Petersen plays for .'],\n", " ['Oriol Romeu plays for .'],\n", " ['Adolfo Machado plays for .'],\n", " ['Filipe Machado Nascimento plays for .'],\n", " ['Rubén Iván Martínez plays for .'],\n", " ['Josephine Henning plays for .'],\n", " ['Dani Carvajal plays for .'],\n", " ['Joël Matip plays for .'],\n", " ['Marcus Berg plays for .'],\n", " ['Julio César de León plays for .'],\n", " ['Salomón Rondón plays for .'],\n", " ['Hajime Hosogai plays for .'],\n", " ['Edgar Ié plays for .'],\n", " ['Martín Montoya plays for .'],\n", " ['Lucas Piazón plays for .'],\n", " ['Markus Rosenberg plays for .'],\n", " ['Ognjen Vranješ plays for .'],\n", " ['Róbinson Zapata plays for .'],\n", " ['Sébastien Pocognoli plays for .'],\n", " ['Anders Lindegaard plays for .'],\n", " ['Jordan Henderson plays for .'],\n", " ['Josip Drmić plays for .'],\n", " ['Aleksandr Kokorin plays for .'],\n", " ['Juan Bernat plays for .'],\n", " ['Miranda plays for .'],\n", " ['Egan Bernal plays for .'],\n", " ['Camille Abily plays for .'],\n", " ['Stefan Maierhofer plays for .'],\n", " ['Matthieu Dossevi plays for .'],\n", " ['Bafétimbi Gomis plays for .'],\n", " ['Ignatas Konovalovas plays for .'],\n", " ['Karina Maruyama plays for .'],\n", " ['Adreian Payne plays for .'],\n", " ['Enzo Maresca plays for .'],\n", " ['Tomáš Vaclík plays for .'],\n", " ['Zack Steffen plays for .'],\n", " ['Ricardo Oliveira plays for .'],\n", " ['Yun Suk-young plays for .'],\n", " ['Giannelli Imbula plays for .'],\n", " ['Lorenzo Insigne plays for .'],\n", " ['Malcom plays for .'],\n", " ['Albert Bunjaku plays for .'],\n", " ['Victor Obinna plays for .'],\n", " ['William Carvalho plays for .'],\n", " ['Miguel Veloso plays for .'],\n", " ['Felipe Anderson plays for .'],\n", " ['Isaac Cuenca plays for .'],\n", " ['Luis Antonio Jiménez plays for .'],\n", " ['Curtis Davies plays for .'],\n", " ['Dan Ito plays for .'],\n", " ['Odysseas Vlachodimos plays for .'],\n", " ['Eljero Elia plays for .'],\n", " ['Fernando Amorebieta plays for .'],\n", " ['Renato Augusto plays for .'],\n", " ['Milan Mačvan plays for .'],\n", " ['Vivianne Miedema plays for .'],\n", " ['Fabian Schär plays for .'],\n", " ['Ashleigh Moolman-Pasio plays for .'],\n", " ['Marcus Rashford plays for .'],\n", " ['André Gomes plays for .'],\n", " ['Dominique Malonga plays for .'],\n", " ['Max Verstappen plays for .'],\n", " ['Mehdi Abeid plays for .'],\n", " ['Alanna Kennedy plays for .'],\n", " ['Ahmed Hegazi plays for .'],\n", " ['Alen Halilović plays for .'],\n", " ['Kenny Miller plays for .'],\n", " ['Dimitris Papadopoulos plays for .'],\n", " ['Adriano Correia Claro plays for .'],\n", " ['Fran Mérida plays for .'],\n", " ['Idrissa Gueye plays for .'],\n", " ['Shahid Afridi plays for .'],\n", " ['Jurica Buljat plays for .'],\n", " ['Adrianna Franch plays for .'],\n", " ['Ludovic Giuly plays for .'],\n", " ['Nastja Čeh plays for .'],\n", " ['Zé Eduardo plays for .'],\n", " ['Riccardo Montolivo plays for .'],\n", " ['Benedikt Höwedes plays for .'],\n", " ['Luka Jović plays for .'],\n", " ['José Holebas plays for .'],\n", " ['Yasuhito Endo plays for .'],\n", " ['Artem Dzyuba plays for .'],\n", " ['Moussa Sow plays for .'],\n", " ['Tomáš Kalas plays for .'],\n", " ['Luis Aguiar plays for .'],\n", " ['Yossi Benayoun plays for .'],\n", " ['Nick Calathes plays for .'],\n", " ['Jorge Ribeiro plays for .'],\n", " ['Wilfried Bony plays for .'],\n", " ['Jamal Blackman plays for .'],\n", " ['Diego Alves plays for .'],\n", " ['Filip Đuričić plays for .'],\n", " ['Roy Carroll plays for .'],\n", " ['Mathieu Valbuena plays for .'],\n", " ['Danilo Cirino de Oliveira plays for .'],\n", " ['Orlando Sá plays for .'],\n", " ['Sérgio Oliveira plays for .'],\n", " ['Miloš Krasić plays for .'],\n", " ['Javad Nekounam plays for .'],\n", " ['Stina Blackstenius plays for .'],\n", " ['James Chester plays for .'],\n", " ['Alexia Putellas plays for .'],\n", " ['Gianluigi Donnarumma plays for .'],\n", " ['Zdeněk Štybar plays for .'],\n", " ['Stephen Sunday plays for .'],\n", " ['Steven Zuber plays for .'],\n", " ['Santiago Arias plays for .'],\n", " ...],\n", " 'labels': [[[\" United States women's national soccer team\"]],\n", " [[' FC Barcelona']],\n", " [[' Juventus F.C.']],\n", " [[' Los Angeles Lakers']],\n", " [[' Bingoal-Chevalmeire']],\n", " [[' A.C. Milan']],\n", " [[' Brazil national football team']],\n", " [[' Independiente Santa Fe']],\n", " [[' OL Reign']],\n", " [[\" Spain men's national basketball team\"]],\n", " [[' West Ham United F.C.']],\n", " [[' FC Bayern Munich']],\n", " [[' Juventus F.C.']],\n", " [[' New York City FC']],\n", " [[' Brooklyn Nets']],\n", " [[' Antalyaspor']],\n", " [[' Mercedes']],\n", " [[' São José Esporte Clube']],\n", " [[' Japan Fed Cup team']],\n", " [[' Juventus F.C.']],\n", " [[' ACF Fiorentina']],\n", " [[' Zhejiang Professional F.C.']],\n", " [[' Ineos Grenadiers']],\n", " [[' FC Barcelona Femení']],\n", " [[' FC Bayern Munich']],\n", " [[\" United States women's national soccer team\"]],\n", " [[' Hebei F.C.']],\n", " [[' Bahrain Victorious']],\n", " [[' Colombia national football team']],\n", " [[' OL Reign']],\n", " [[' Club Atlético Peñarol']],\n", " [[' Audax Italiano']],\n", " [[' NJ/NY Gotham FC']],\n", " [[' FC Rosengård']],\n", " [[' LA Galaxy']],\n", " [[' Royal Challengers Bangalore']],\n", " [[' Vissel Kobe']],\n", " [[' Derby County F.C.']],\n", " [[' Botafogo F.R.']],\n", " [[' Argentina national football team']],\n", " [[' Liv Racing']],\n", " [[' Real Madrid CF']],\n", " [[' São Paulo FC']],\n", " [[' Boca Juniors']],\n", " [[' A.C. Milan']],\n", " [[' LA Galaxy']],\n", " [[' Vitória S.C.']],\n", " [[' Arsenal F.C.']],\n", " [[' Tampa Bay Rowdies']],\n", " [[' Paris Saint-Germain F.C.']],\n", " [[' Minnesota Lynx']],\n", " [[' Juventus F.C.']],\n", " [[' Chicago Fire FC']],\n", " [[' Olimpia Milano']],\n", " [[' FC Bayern Munich']],\n", " [[' Unione Sportiva Sassuolo Calcio']],\n", " [[' Trek–Segafredo']],\n", " [[' Atlas F.C.']],\n", " [[' Chicago Bulls']],\n", " [[' FC Groningen']],\n", " [[' Houston Rockets']],\n", " [[' AS Monaco FC']],\n", " [[' LA Galaxy']],\n", " [[' Coritiba F.C.']],\n", " [[' Arsenal F.C.']],\n", " [[' FC Bayern Munich']],\n", " [[' Swiss national football team']],\n", " [[' Los Angeles Lakers']],\n", " [[' Matrix Fitness']],\n", " [[' Horoya AC']],\n", " [[' Lotto–Soudal']],\n", " [[' Seattle Storm']],\n", " [[' Parma Calcio 1913']],\n", " [[' Washington Spirit']],\n", " [[' France national association football team']],\n", " [[' Egypt national football team']],\n", " [[' Leixões S.C.']],\n", " [[' Netherlands national association football team']],\n", " [[' West Ham United F.C.']],\n", " [[' Toronto FC']],\n", " [[' Los Angeles Lakers']],\n", " [[' Sociedad Deportiva Huesca']],\n", " [[' Japan national football team']],\n", " [[' Crystal Palace F.C.']],\n", " [[' Standard Liège']],\n", " [[' FC Bayern Munich']],\n", " [[' Portland Thorns FC']],\n", " [[' France national association football team']],\n", " [[' Associação Académica de Coimbra – O.A.F.']],\n", " [[' Algeria national football team']],\n", " [[' Bora-Hansgrohe']],\n", " [[' Costa Rica national football team']],\n", " [[' Real Madrid CF']],\n", " [[' Cofidis']],\n", " [[' Germany national association football team']],\n", " [[' SC Freiburg']],\n", " [[' Trek–Segafredo']],\n", " [[' Paraguay national football team']],\n", " [[' Rayo OKC']],\n", " [[' Manchester United F.C.']],\n", " [[' Club de Fútbol Monterrey']],\n", " [[' CCC Team']],\n", " [[' Fleury Loiret HB']],\n", " [[' Hawks']],\n", " [[' FC Bayern Munich']],\n", " [[' Meridiana-Kamen']],\n", " [[' Brooklyn Nets']],\n", " [[' Scuderia Ferrari']],\n", " [[\" Norway women's national football team\"]],\n", " [[' Leicester City F.C.']],\n", " [[' EF Education-Nippo']],\n", " [[' Aalesunds FK']],\n", " [[' Portland Thorns FC']],\n", " [[' Chelsea F.C.']],\n", " [[' Real Madrid CF']],\n", " [[' Galatasaray S.K.']],\n", " [[' Astana Qazaqstan Team']],\n", " [[' Al Ahli Saudi FC']],\n", " [[' Trabzonspor']],\n", " [[' Shanghai Port F.C.']],\n", " [[' Real Madrid Baloncesto']],\n", " [[' Trek–Segafredo']],\n", " [[' Sociedade Esportiva Palmeiras']],\n", " [[' Ineos Grenadiers']],\n", " [[' Swansea City A.F.C.']],\n", " [[' Germany national association football team']],\n", " [[' Clube de Regatas do Flamengo']],\n", " [[' FC Dynamo Brest']],\n", " [[' SD Worx']],\n", " [[' Brazil national football team']],\n", " [[' Maccabi Haifa F.C.']],\n", " [[' Paris Saint-Germain F.C.']],\n", " [[' Los Angeles Clippers']],\n", " [[' Paris Saint-Germain Féminine']],\n", " [[' Olympiacos F.C.']],\n", " [[' Inter Milan']],\n", " [[' Houston Dash']],\n", " [[' F.C. Porto']],\n", " [[' Brazil national football team']],\n", " [[' Senegal national association football team']],\n", " [[' Chicago Red Stars']],\n", " [[' Real Madrid CF']],\n", " [[' Yamaha Motor Racing']],\n", " [[' Stoke City F.C.']],\n", " [[' Real Zaragoza']],\n", " [[' Atlético Madrid']],\n", " [[' Olympique de Marseille']],\n", " [[' O.F.K. Beograd']],\n", " [[' Belgium national football team']],\n", " [[' Pune F.C.']],\n", " [[' ACF Fiorentina']],\n", " [[' Stabæk Fotball']],\n", " [[' Team BikeExchange']],\n", " [[' Cerro Porteño']],\n", " [[' Dundee United F.C.']],\n", " [[' Agrotikos Asteras F.C.']],\n", " [[' Germany national association football team']],\n", " [[' Jiangsu F.C.']],\n", " [[' SV Werder Bremen']],\n", " [[' Orlando City SC']],\n", " [[' FC Rosengård']],\n", " [[' Bristol City F.C.']],\n", " [[\" Sweden women's national association football team\"]],\n", " [[' Spain national association football team']],\n", " [[' Juventus F.C.']],\n", " [[' Team Jumbo-Visma']],\n", " [[' Ceratizit–WNT Pro Cycling']],\n", " [[' Rosenborg BK']],\n", " [[' Hokkaido Consadole Sapporo']],\n", " [[' Comunicaciones FC']],\n", " [[' TSG 1899 Hoffenheim']],\n", " [[' Inter Milan']],\n", " [[' France national association football team']],\n", " [[' Team Jumbo-Visma']],\n", " [[' Team DSM']],\n", " [[' NJ/NY Gotham FC']],\n", " [[' Brisbane Roar FC W-League']],\n", " [[' Real Betis Balompié']],\n", " [[' Washington Mystics']],\n", " [[' Olympique Lyonnais Féminin']],\n", " [[' Lotto–Soudal']],\n", " [[' Phoenix Mercury']],\n", " [[' Yokohama FC']],\n", " [[' Manchester City F.C.']],\n", " [[' Borussia Dortmund']],\n", " [[' PSV Eindhoven']],\n", " [[' France national association football team']],\n", " [[' Tampa Bay Buccaneers']],\n", " [[' Aston Villa F.C.']],\n", " [[' Borussia Dortmund']],\n", " [[' Baniyas SC']],\n", " [[' Real Madrid CF']],\n", " [[' Manchester United F.C.']],\n", " [[' Atlético Madrid']],\n", " [[' Belgium national football team']],\n", " [[' Norway national association football team']],\n", " [[\" United States men's national soccer team\"]],\n", " [[' Real Madrid CF']],\n", " [[' Shanghai Shenhua F.C.']],\n", " [[' Maccabi Tel Aviv B.C.']],\n", " [[' SV Werder Bremen']],\n", " [[' Tottenham Hotspur F.C.']],\n", " [[' OGC Nice']],\n", " [[' Belgium national football team']],\n", " [[' Deportivo de La Coruña']],\n", " [[' Toronto Raptors']],\n", " [[' Hamburger SV']],\n", " [[' Belgium national football team']],\n", " [[' FC Ryukyu']],\n", " [[' Málaga CF']],\n", " [[' S.S.C. Napoli']],\n", " [[' Israel Start-Up Nation']],\n", " [[' San Antonio Spurs']],\n", " [[' Paris Saint-Germain F.C.']],\n", " [[' New York Knicks']],\n", " [[' Minnesota Timberwolves']],\n", " [[' F.C. Copenhagen']],\n", " [[' Club Atlético River Plate']],\n", " [[' Portland Thorns FC']],\n", " [[' FC Bayern Munich']],\n", " [[' France national association football team']],\n", " [[' Club Atlético Peñarol']],\n", " [[' Dalian Professional F.C.']],\n", " [[' Italy national association football team']],\n", " [[' Senegal national association football team']],\n", " [[' France national association football team']],\n", " [[' Lotto–Soudal']],\n", " [[' Denmark national association football team']],\n", " [[' Fenerbahçe SK']],\n", " [[' Galatasaray S.K.']],\n", " [[' Atlanta United FC']],\n", " [[' Swansea City A.F.C.']],\n", " [[' Spain national association football team']],\n", " [[' Cameroon national football team']],\n", " [[' Arsenal F.C.']],\n", " [[' FC Rosengård']],\n", " [[' Galatasaray S.K.']],\n", " [[' Italy national association football team']],\n", " [[' Morocco national football team']],\n", " [[' Accra Great Olympics F.C.']],\n", " [[' West Bromwich Albion F.C.']],\n", " [[' Netherlands national association football team']],\n", " [[' DR Congo national football team']],\n", " [[' Brazil national football team']],\n", " [[' FC Seoul']],\n", " [[' FC Bayern Munich']],\n", " [[' AFC Ajax']],\n", " [[' New Zealand national rugby union team']],\n", " [[\" United States women's national soccer team\"]],\n", " [[' Santos F.C.']],\n", " [[' Shanghai Port F.C.']],\n", " [[' Sevilla FC']],\n", " [[' Morocco national football team']],\n", " [[' Sweden national association football team']],\n", " [[' Hertha BSC']],\n", " [[' Manchester City W.F.C.']],\n", " [[' Portugal national association football team']],\n", " [[' TuS Haltern']],\n", " [[' Baniyas SC']],\n", " [[' 1. FFC Frankfurt']],\n", " [[' West Ham United F.C.']],\n", " [[' FC Koper']],\n", " [[' Wadi Degla SC']],\n", " [[' Al-Duhail SC']],\n", " [[' S.C. Braga']],\n", " [[' Villa Nova Atlético Clube']],\n", " [[' ACF Fiorentina']],\n", " [[' Real Betis Balompié']],\n", " [[' Brisbane Roar FC']],\n", " [[' Fenerbahçe SK']],\n", " [[' Storey Racing']],\n", " [[' Israel Start-Up Nation']],\n", " [[' Arkéa–Samsic']],\n", " [[' Germany national association football team']],\n", " [[' Genoa CFC']],\n", " [[' FC Metz']],\n", " [[' Los Angeles Sparks']],\n", " [[' West Ham United F.C.']],\n", " [[' Villarreal CF']],\n", " [[' Club Universidad de Chile']],\n", " [[' Sevilla FC']],\n", " [[' Chelsea F.C.']],\n", " [[' Atlanta Hawks']],\n", " [[' Olimpia Milano']],\n", " [[' Netherlands national association football team']],\n", " [[' Chile national football team']],\n", " [[' Croatia national association football team']],\n", " [[' Ineos Grenadiers']],\n", " [[' Tigres UANL']],\n", " [[' KFUM-Kameratene Oslo']],\n", " [[' Western New York Flash']],\n", " [[' Netherlands national association football team']],\n", " [[' Olympique Antibes']],\n", " [[' Melbourne Victory']],\n", " [[\" Fenerbahçe Men's Basketball\"]],\n", " [[' Manchester City W.F.C.']],\n", " [[' Sociedade Esportiva Palmeiras']],\n", " [[' Sunderland A.F.C.']],\n", " [[' Belgium national football team']],\n", " [[' São Paulo FC']],\n", " [[' UAE Team Emirates']],\n", " [[' Australia Billie Jean King Cup team']],\n", " [[' Guangzhou Football Club']],\n", " [[' Atlético Junior']],\n", " [[' Brazil national football team']],\n", " [[' Chicago Red Stars']],\n", " [[' Club Nacional de Football']],\n", " [[' Mexico national football team']],\n", " [[' Qhubeka Assos']],\n", " [[' Wolverhampton Wanderers F.C.']],\n", " [[' Germany national association football team']],\n", " [[' Bologna F.C. 1909']],\n", " [[' US Orléans']],\n", " [[' Deportivo Saprissa']],\n", " [[' Mazatlán Fútbol Club']],\n", " [[' Spain national association football team']],\n", " [[' Olympiacos F.C.']],\n", " [[' C.S. Cartaginés']],\n", " [[' Juventus F.C.']],\n", " [[' Belgium national football team']],\n", " [[' Kayserispor']],\n", " [[' Portugal national association football team']],\n", " [[' UAE Team Emirates']],\n", " [[' Italy national association football team']],\n", " [[' Qhubeka Assos']],\n", " [[' Denmark national association football team']],\n", " [[' Swiss national football team']],\n", " [[' FC Barcelona Bàsquet']],\n", " [[' Poland national association football team']],\n", " [[' Renault F1 Team']],\n", " [[' Borussia Dortmund']],\n", " [[' Cleveland Cavaliers']],\n", " [[' Hebei F.C.']],\n", " [[' UAE Team ADQ']],\n", " [[' Club Atlético Talleres']],\n", " [[' Toulon Saint-Cyr Var Handball']],\n", " [[' Portland Trail Blazers']],\n", " [[' Trek–Segafredo']],\n", " [[' Ivory Coast national football team']],\n", " [[' A.S. Roma']],\n", " [[' Yokohama FC']],\n", " [[' Fenerbahçe SK']],\n", " [[' Seattle Sounders FC']],\n", " [[' UAE Team Emirates']],\n", " [[' Peru national football team']],\n", " [[' Portugal national association football team']],\n", " [[' France national association football team']],\n", " [[' Beşiktaş J.K.']],\n", " [[' Swiss national football team']],\n", " [[' Sydney FC']],\n", " [[' Cruzeiro E.C.']],\n", " [[' Burnley F.C.']],\n", " [[' CCC Team']],\n", " [[' Club Deportivo Universidad Católica']],\n", " [[' Everton F.C.']],\n", " [[' Parma Calcio 1913']],\n", " [[' West Ham United F.C.']],\n", " [[' Fleetwood Town F.C.']],\n", " [[' Fenerbahçe SK']],\n", " [[' Chelsea F.C. Women']],\n", " [[' Los Angeles Lakers']],\n", " [[' G.S. Iraklis Thessaloniki']],\n", " [[' NJ/NY Gotham FC']],\n", " [[' CR Vasco da Gama']],\n", " [[' S.L. Benfica']],\n", " [[' Spain national association football team']],\n", " [[' Inter Milan']],\n", " [[' Brazil national football team']],\n", " [[\" Sweden women's national association football team\"]],\n", " [[' Team Jumbo-Visma']],\n", " [[' France national association football team']],\n", " [[' Guangzhou City F.C.']],\n", " [[' VfL Wolfsburg Women']],\n", " [[' Wuhan F.C.']],\n", " [[' Genoa CFC']],\n", " [[' Western New York Flash']],\n", " [[' Okinawa SV']],\n", " [[' C.D. Guadalajara']],\n", " [[' Hebei F.C.']],\n", " [[' Spain national association football team']],\n", " [[' SV Werder Bremen']],\n", " [[' England national association football team']],\n", " [[' France national association football team']],\n", " [[' Guinea-Bissau national football team']],\n", " [[' N.E.C.']],\n", " [[' Boavista F.C.']],\n", " [[' Mexico national football team']],\n", " [[' Czech Republic national beach soccer team']],\n", " [[' FC Yenisey Krasnoyarsk']],\n", " [[' Real Madrid CF']],\n", " [[' Quick-Step Alpha Vinyl Team']],\n", " [[' Costa Rica national football team']],\n", " [[\" Canada men's national soccer team\"]],\n", " [[' Poland national association football team']],\n", " [[' Russia national football team']],\n", " [[' Chile national football team']],\n", " [[' Real Madrid CF']],\n", " [[' Club Rubio Ñu']],\n", " [[' Senegal national association football team']],\n", " [[' A.C. Milan']],\n", " [[' Juventus F.C.']],\n", " [[' Roland Cogeas Edelweiss Squad']],\n", " [[' Salford City F.C.']],\n", " [[' Houston Rockets']],\n", " [[' Houston Rockets']],\n", " [[' Kawasaki Frontale']],\n", " [[' KIF Örebro DFF']],\n", " [[' Team BikeExchange Jayco']],\n", " [[' Estonia national football team']],\n", " [[' Germany national association football team']],\n", " [[' Rayo Vallecano']],\n", " [[' FK AS Trenčín']],\n", " [[' Bora-Hansgrohe']],\n", " [[' Real Sociedad']],\n", " [[' Antalyaspor']],\n", " [[' LA Galaxy']],\n", " [[' E.C. Vitória']],\n", " [[' Club Atlético River Plate']],\n", " [[' En Avant de Guingamp']],\n", " [[' Spain national association football team']],\n", " [[' Astana Qazaqstan Team']],\n", " [[' Paris Saint-Germain F.C.']],\n", " [[' France national association football team']],\n", " [[' Manchester City F.C.']],\n", " [[' Team Jumbo-Visma']],\n", " [[' FC Bayern Munich']],\n", " [[' Quick-Step Alpha Vinyl Team']],\n", " [[' Portugal national association football team']],\n", " [[' Canyon–SRAM']],\n", " [[' Atlanta Hawks']],\n", " [[' Maccabi Haifa F.C.']],\n", " [[' Germany national association football team']],\n", " [[' Southampton F.C.']],\n", " [[' S.C. Internacional']],\n", " [[' Germany national association football team']],\n", " [[' Swiss national football team']],\n", " [[' Portugal national association football team']],\n", " [[' Juventus F.C.']],\n", " [[' 1. FC Nürnberg']],\n", " [[' Brazil national football team']],\n", " [[' FC Augsburg']],\n", " [[' Manchester City F.C.']],\n", " [[\" United States women's national soccer team\"]],\n", " [[' Tottenham Hotspur F.C.']],\n", " [[' Juventus F.C.']],\n", " [[' Tottenham Hotspur F.C.']],\n", " [[' Spain national association football team']],\n", " [[' Milwaukee Bucks']],\n", " [[' Melbourne Victory']],\n", " [[' Arsenal F.C.']],\n", " [[' Shanghai Shenhua F.C.']],\n", " [[' Sektzia Nes Tziona F.C.']],\n", " [[' Seinäjoen Jalkapallokerho']],\n", " [[' Olympique Lyonnais']],\n", " [[' Orlando Pride']],\n", " [[' Leeds United F.C.']],\n", " [[' FC Sion']],\n", " [[' Orlando City SC']],\n", " [[' São Paulo FC']],\n", " [[' C.A. Vélez Sarsfield']],\n", " [[' 1. FSV Mainz 05']],\n", " [[' Tiburones Rojos de Veracruz']],\n", " [[' C.D. Guadalajara']],\n", " [[' Gwangju FC']],\n", " [[' Angers SCO']],\n", " [[' Netherlands national association football team']],\n", " [[' Chelsea F.C. Women']],\n", " [[' ACF Fiorentina']],\n", " [[' POFC Botev Vratsa']],\n", " [[' Pirata F.C']],\n", " [[' Leicester City F.C.']],\n", " [[' FC Zenit Saint Petersburg']],\n", " [[' Seattle Sounders FC']],\n", " [[' Mexico national football team']],\n", " [[' Houston Dash']],\n", " [[' Mumbai City FC']],\n", " [[' Élan Chalon']],\n", " [[' Atlético Sanluqueño CF']],\n", " [[' Manchester United W.F.C.']],\n", " [[' AFC Eskilstuna']],\n", " [[' Argentina national football team']],\n", " [[' Algeria national football team']],\n", " [[' Nigeria national football team']],\n", " [[' Nogoom FC']],\n", " [[' Hertha BSC']],\n", " [[' Shandong Taishan F.C.']],\n", " [[' FC Barcelona']],\n", " [[' Italy national association football team']],\n", " [[' Ivory Coast national football team']],\n", " [[\" Colo-Colo women's\"]],\n", " [[' Chicago Red Stars']],\n", " [[' A.S. Roma']],\n", " [[' Seoul E-Land FC']],\n", " [[' Germany national association football team']],\n", " [[' Germany national association football team']],\n", " [[' Charlotte Hornets']],\n", " [[' Comunicaciones FC']],\n", " [[' VfB Stuttgart']],\n", " [[' Italy national association football team']],\n", " [[' Brazil national football team']],\n", " [[' Liga Deportiva Alajuelense']],\n", " [[' Arsenal W.F.C.']],\n", " [[' Sweden national association football team']],\n", " [[' Mexico national football team']],\n", " [[' Italy national association football team']],\n", " [[' Spain national association football team']],\n", " [[' UAE Team Emirates']],\n", " [[' FC Rukh Lviv']],\n", " [[' Olympique de Marseille']],\n", " [[' South Korea national football team']],\n", " [[' S.C. Internacional']],\n", " [[' Belgium national football team']],\n", " [[' Japan national football team']],\n", " [[' Nigeria national football team']],\n", " [[' TWENTY20 p/b Sho-Air']],\n", " [[' Valencia CF']],\n", " [[' Sociedade Esportiva Palmeiras']],\n", " [[' Szombathelyi Haladás']],\n", " [[' Seattle Sounders FC']],\n", " [[' Deportivo Toluca F.C.']],\n", " [[' PSV Eindhoven']],\n", " [[' VfB Stuttgart II']],\n", " [[' Astana Qazaqstan Team']],\n", " [[' Russia national football team']],\n", " [[' Helsingin Jalkapalloklubi']],\n", " [[' BC Rytas']],\n", " [[' A.S. Roma']],\n", " [[' Utah Jazz']],\n", " [[' Spain national association football team']],\n", " [[\" Germany women's national football team\"]],\n", " [[' FC Barcelona Bàsquet']],\n", " [[' Algeria national football team']],\n", " [[' Rio Ave F.C.']],\n", " [[' Manchester City F.C.']],\n", " [[' Swiss national football team']],\n", " [[' Iran national football team']],\n", " [[' Detroit Pistons']],\n", " [[' Eintracht Frankfurt']],\n", " [[' Nigeria national football team']],\n", " [[' ACF Fiorentina']],\n", " [[' Newcastle United F.C.']],\n", " [[' Legia Warsaw']],\n", " [[' Venezuela national football team']],\n", " [[' France national association football team']],\n", " [[' Manchester City F.C.']],\n", " [[' C.F. Os Belenenses']],\n", " [[' Japan national football team']],\n", " [[' Central African Republic national football team']],\n", " [[' Germany national association football team']],\n", " [[' NK Olimpija Ljubljana']],\n", " [[' Swiss national football team']],\n", " [[' Mexico national football team']],\n", " [[' Las Vegas Aces']],\n", " [[' Norwich City F.C.']],\n", " [[' Santa Cruz Futebol Clube']],\n", " [[' Ceratizit–WNT Pro Cycling']],\n", " [[' Liverpool F.C.']],\n", " [[' TotalEnergies']],\n", " [[' Oeste Futebol Clube']],\n", " [[\" United States men's national soccer team\"]],\n", " [[' S.S.C. Napoli']],\n", " [[' Norway national association football team']],\n", " [[' Legia Warsaw']],\n", " [[' Brazil national football team']],\n", " [[' North Macedonia national football team']],\n", " [[' Zhejiang Professional F.C.']],\n", " [[' Balıkesirspor']],\n", " [[' Talaba SC']],\n", " [[' Ghana national football team']],\n", " [[' Kayserispor']],\n", " [[' Arsenal F.C.']],\n", " [[' FC Ingolstadt 04']],\n", " [[' Sweden national association football team']],\n", " [[' Helsingin Jalkapalloklubi']],\n", " [[' Sydney FC']],\n", " [[' Philippines national football team']],\n", " [[' Olympiacos F.C.']],\n", " [[' Chelsea F.C. Women']],\n", " [[' S.S.C. Napoli']],\n", " [[' Al-Faisaly FC']],\n", " [[' Cruz Azul']],\n", " [[' FC Lokomotiv Moscow']],\n", " [[' Arsenal W.F.C.']],\n", " [[' Iran national football team']],\n", " [[' Orlando Pride']],\n", " [[' Porsche']],\n", " [[' Denmark national association football team']],\n", " [[' Club Social y Deportivo Colo Colo']],\n", " [[' England national association football team']],\n", " [[' South Korea national football team']],\n", " [[' Deportivo Saprissa']],\n", " [[' Brest Bretagne Handball']],\n", " [[' AG2R Citroën Team']],\n", " [[' Swiss national football team']],\n", " [[' Chelsea F.C. Women']],\n", " [[' Dallas Mavericks']],\n", " [[' France national association football team']],\n", " [[' UnitedHealthcare']],\n", " [[' Spain national association football team']],\n", " [[' Linköpings FC']],\n", " [[' Nigeria national football team']],\n", " [[' Liverpool F.C.']],\n", " [[' Team BikeExchange Jayco']],\n", " [[' France national association football team']],\n", " [[' São Tomé and Príncipe national football team']],\n", " [[' Portugal national association football team']],\n", " [[' Australia national association football team']],\n", " [[' Portimonense S.C.']],\n", " [[' Denmark national association football team']],\n", " [[' Belgium national football team']],\n", " [[' APOEL F.C.']],\n", " [[\" Japan women's national football team\"]],\n", " [[\" Canada women's national soccer team\"]],\n", " [[' OL Reign']],\n", " [[' Denmark national association football team']],\n", " [[' Germany national association football team']],\n", " [[' Brazil national football team']],\n", " [[' Montpellier Hérault Sport Club']],\n", " [[' Atlético Madrid']],\n", " [[' Norway national association football team']],\n", " [[' Hellas Verona F.C.']],\n", " [[' FC Shakhtar Donetsk']],\n", " [[' Southampton F.C.']],\n", " [[' Olympique Lyonnais']],\n", " [[' FC Lausanne-Sport']],\n", " [[' Club Social y Deportivo Colo Colo']],\n", " [[' Coquimbo Unido']],\n", " [[' Unión Magdalena']],\n", " [[' Anorthosis Famagusta FC']],\n", " [[' Al Ittihad FC']],\n", " [[' GNK Dinamo Zagreb']],\n", " [[' Cagliari Calcio']],\n", " [[' FC Pune City']],\n", " [[' Atlas F.C.']],\n", " [[' Australia national association football team']],\n", " [[' Morocco national football team']],\n", " [[' Morocco national football team']],\n", " [[' Arsenal W.F.C.']],\n", " [[' FC Barcelona']],\n", " [[' San Martín de Tucumán']],\n", " [[' Senegal national association football team']],\n", " [[' Germany national association football team']],\n", " [[' FC Kaisar']],\n", " [[' Portugal national association football team']],\n", " [[' NorthEast United FC']],\n", " [[' AFC Ajax Vrouwen']],\n", " [[' 1. FC Union Berlin']],\n", " [[' Belgium national football team']],\n", " [[' Stoke City F.C.']],\n", " [[' FC Twente']],\n", " [[' Finland national football team']],\n", " [[' Cameroon national football team']],\n", " [[' ŠK Slovan Bratislava']],\n", " [[' Orléans Loiret Basket']],\n", " [[' Algeria national football team']],\n", " [[' Miami Heat']],\n", " [[' Alpecin–Fenix']],\n", " [[' AEK Athens B.C.']],\n", " [[' Charlton Athletic F.C.']],\n", " [[' Poland national association football team']],\n", " [[' Brazil national football team']],\n", " [[' Spain national association football team']],\n", " [[' Olympique Lyonnais']],\n", " [[' Al Jazira Club']],\n", " [[' FC Barcelona']],\n", " [[' Aston Villa F.C.']],\n", " [[' Mexico national football team']],\n", " [[' Romania national association football team']],\n", " [[\" Australia women's national soccer team\"]],\n", " [[' Real Madrid Baloncesto']],\n", " [[' EF Education-Nippo']],\n", " [[' FC Ingolstadt 04']],\n", " [[' Club Atlético Osasuna']],\n", " [[' Philadelphia Union']],\n", " [[' Movistar Team']],\n", " [[' FK Vardar']],\n", " [[' New England Revolution']],\n", " [[' UD Vilafranquense']],\n", " [[' Associação Ferroviária de Esportes']],\n", " [[' D.C. United']],\n", " [[' FC Sion']],\n", " [[' Brazil national football team']],\n", " [[' FC Dinamo Moscow']],\n", " [[' KK Crvena Zvezda']],\n", " [[' Germany national association football team']],\n", " [[' Uruguay national football team']],\n", " [[' Crystal Palace F.C.']],\n", " [[' PSV Eindhoven']],\n", " [[' Croatia national association football team']],\n", " [[' Cairns Taipans']],\n", " [[' Paris FC']],\n", " [[' Spain national association football team']],\n", " [[' Voltigeurs de Châteaubriant']],\n", " [[' TSG 1899 Hoffenheim']],\n", " [[' Algeria national football team']],\n", " [[' North Carolina FC']],\n", " [[' Russia national football team']],\n", " [[' Real Madrid CF']],\n", " [[' Los Angeles FC']],\n", " [[' A.E.K. Athens F.C.']],\n", " [[' Club Tijuana']],\n", " [[' Ottawa Fury FC']],\n", " [[' Kazakhstan national football team']],\n", " [[' FC Rostov']],\n", " [[' Germany national association football team']],\n", " [[' South Korea national football team']],\n", " [[' Turkey national association football team']],\n", " [[' PFC CSKA Moscow']],\n", " [[' Villarreal CF']],\n", " [[' FC Anzhi Makhachkala']],\n", " [[' Real Madrid Castilla']],\n", " [[' South Korea national football team']],\n", " [[' CF Pachuca']],\n", " [[' Örebro SK']],\n", " [[' Venezuela national football team']],\n", " [[' FC Lokomotiv Moscow']],\n", " [[' Republic of Ireland national association football team']],\n", " [[' Vicenza Calcio']],\n", " [[' FK Budućnost Podgorica']],\n", " [[' FC Dinamo Bucharest']],\n", " [[\" United States women's national soccer team\"]],\n", " [[' Iceland national association football team']],\n", " [[' Norway national association football team']],\n", " [[' CF Montréal']],\n", " [[' Sunderland A.F.C.']],\n", " [[' New Zealand national football team']],\n", " [[' 1. FC Union Berlin']],\n", " [[' Olympique Lyonnais Féminin']],\n", " [[' Urawa Red Diamonds']],\n", " [[' Rayo Vallecano']],\n", " [[' Scotland national football team']],\n", " [[' Clube Atlético Taboão da Serra']],\n", " [[' Golden State Warriors']],\n", " [[' LKS Nieciecza']],\n", " [[' McLaren']],\n", " [[\" Brazil women's national football team\"]],\n", " [[' Valencia CF']],\n", " [[' West Ham United F.C.']],\n", " [[' Trabzonspor']],\n", " [[' 1. FC Union Berlin']],\n", " [[' Paris Saint-Germain F.C.']],\n", " [[' Liaoning Whowin F.C.']],\n", " [[' Mali national football team']],\n", " [[' Enosis Neon Paralimni FC']],\n", " [[' Costa Rica national football team']],\n", " [[' Trek–Segafredo']],\n", " [[' Villarreal CF']],\n", " [[' Washington Spirit']],\n", " [[' Liverpool F.C.']],\n", " [[' Senegal national association football team']],\n", " [[' Crystal Palace F.C.']],\n", " [[' KAA Gent']],\n", " [[' Gimnàstic de Tarragona']],\n", " [[' CF Montréal']],\n", " [[' Auckland City FC']],\n", " [[' Algeria national football team']],\n", " [[' Spain national association football team']],\n", " [[' France national association football team']],\n", " [[' Manchester United F.C.']],\n", " [[' Santos FC']],\n", " [[' Al-Shahaniya Sports Club']],\n", " [[' Chelsea F.C.']],\n", " [[' Toronto Blue Jays']],\n", " [[' Ventforet Kofu']],\n", " [[' Orca Kamogawa FC']],\n", " [[' Southampton F.C.']],\n", " [[' JLT Condor']],\n", " [[' VfB Stuttgart']],\n", " [[' Kayserispor']],\n", " [[' Goa ISL team']],\n", " [[' Netherlands national association football team']],\n", " [[' Argentinos Juniors']],\n", " [[' SGS Essen']],\n", " [[' Sweden national association football team']],\n", " [[' Olympique Lyonnais']],\n", " [[' Costa Rica national football team']],\n", " [[' Jamaica national association football team']],\n", " [[' Crystal Palace F.C.']],\n", " [[' Olympique Lyonnais Féminin']],\n", " [[' A.E.K. Athens F.C.']],\n", " [[' UAE Team Emirates']],\n", " [[' New York Red Bulls']],\n", " [[' Algeria national football team']],\n", " [[' A.S. Roma']],\n", " [[' FK Shkëndija']],\n", " [[' FC Bayern Munich Women']],\n", " [[' São Paulo FC']],\n", " [[' CJM Bourges Basket']],\n", " [[' Clube de Regatas do Flamengo']],\n", " [[' Turkey national association football team']],\n", " [[' Brazil national football team']],\n", " [[' Turkey national association football team']],\n", " [[' Team BikeExchange Jayco']],\n", " [[' Lille OSC']],\n", " [[' Dallas Mavericks']],\n", " [[' Spain national association football team']],\n", " [[\" Norway women's national handball team\"]],\n", " [[' PK-35 Vantaa']],\n", " [[' Manchester City F.C.']],\n", " [[' Republic of Ireland national association football team']],\n", " [[' Philadelphia 76ers']],\n", " [[' Milton Keynes Dons F.C.']],\n", " [[' América Futebol Clube (MG)']],\n", " [[' St. Louis Cardinals']],\n", " [[' Baltimore Orioles']],\n", " [[' Russia national football team']],\n", " [[' Dallas Mavericks']],\n", " [[' Juventud de Las Piedras']],\n", " [[' FC Dinamo Moscow']],\n", " [[' Genoa CFC']],\n", " [[' FC Basel']],\n", " [[\" Monts d'Or Azergues Foot\"]],\n", " [[' Maccabi Haifa F.C.']],\n", " [[' France national association football team']],\n", " [[' Anorthosis Famagusta FC']],\n", " [[' Trek–Segafredo']],\n", " [[' Unión Deportiva Almería']],\n", " [[' Beijing Guoan F.C.']],\n", " [[' Philadelphia 76ers']],\n", " [[' Legia Warsaw']],\n", " [[' Wealdstone F.C.']],\n", " [[' NorthEast United FC']],\n", " [[' PAS Giannina F.C.']],\n", " [[' New Zealand national football team']],\n", " [[' S.C. Braga']],\n", " [[' Sweden national association football team']],\n", " [[' Águilas CF']],\n", " [[' Atlético Madrid']],\n", " [[' K.S.C. Lokeren Oost-Vlaanderen']],\n", " [[' Burgos CF']],\n", " [[\" United States men's national soccer team\"]],\n", " [[' Scotland national football team']],\n", " [[' Portugal national association football team']],\n", " [[' Club Atlético Colón']],\n", " [[' Slovenia national football team']],\n", " [[' Middlesbrough F.C.']],\n", " [[' Olympique de Marseille']],\n", " [[' Wisła Kraków']],\n", " [[' S.S.C. Napoli']],\n", " [[' S.L. Benfica']],\n", " [[' Gabon national football team']],\n", " [[' FK Kauno Žalgiris']],\n", " [[' Chelsea F.C.']],\n", " [[' Stade Rennais F.C.']],\n", " [[' Club Africain']],\n", " [[' South Korea national football team']],\n", " [[' Hamburger SV']],\n", " [[' Guizhou F.C.']],\n", " [[' FC Slovan Liberec']],\n", " [[' Peru national football team']],\n", " [[' Ukraine national association football team']],\n", " [[' Argentina national football team']],\n", " [[' FBC Melgar']],\n", " [[' Maccabi Haifa F.C.']],\n", " [[' Al-Faisaly SC']],\n", " [[' Speranța Nisporeni']],\n", " [[' Los Angeles Lakers']],\n", " [[' Fulham F.C.']],\n", " [[' EF Education-Nippo']],\n", " [[' FC Rukh Lviv']],\n", " [[' Western New York Flash']],\n", " [[' Bahrain Victorious']],\n", " [[' Belgium national football team']],\n", " [[' SD Worx']],\n", " [[' Germany national association football team']],\n", " [[' Team DSM']],\n", " [[' FC Augsburg']],\n", " [[' Clube de Regatas do Flamengo']],\n", " [[' Kardemir Karabükspor']],\n", " [[\" France women's national handball team\"]],\n", " [[' UAE Team Emirates']],\n", " [[' West Ham United F.C.']],\n", " [[' Stade Rennais F.C.']],\n", " [[' Liverpool F.C.']],\n", " [[' Algeria national football team']],\n", " [[\" Canada men's national soccer team\"]],\n", " [[' Montpellier Hérault Sport Club']],\n", " [[' FC Pune City']],\n", " [[' Red Star F.C.']],\n", " [[' Al-Gharafa Sports Club']],\n", " [[' SC East Bengal']],\n", " [[\" United States men's national soccer team\"]],\n", " [[' Chelsea F.C.']],\n", " [[' Algeria national football team']],\n", " [[' Australia national association football team']],\n", " [[' Virtus Pallacanestro Bologna']],\n", " [[' Arsenal F.C.']],\n", " [[' Seattle Sounders FC']],\n", " [[' Nigeria national football team']],\n", " [[' Trek–Segafredo']],\n", " [[' Bosnia and Herzegovina national football team']],\n", " [[' Portugal national association football team']],\n", " [[' Germany national association football team']],\n", " [[' Southampton F.C.']],\n", " [[' Deportivo Saprissa']],\n", " [[' Saba Qom F.C.']],\n", " [[' Club Atlético Osasuna']],\n", " [[' Arsenal F.C.']],\n", " [[' Spain national association football team']],\n", " [[' Liverpool F.C.']],\n", " [[' FC Krasnodar']],\n", " [[' Club Atlético Platense']],\n", " [[' Everton F.C.']],\n", " [[' Buriram United F.C.']],\n", " [[' Villarreal CF']],\n", " [[' Real Betis Balompié']],\n", " [[' Chelsea F.C.']],\n", " [[' Malmö FF']],\n", " [[' Bosnia and Herzegovina national football team']],\n", " [[' Independiente Santa Fe']],\n", " [[' West Bromwich Albion F.C.']],\n", " [[' Preston North End F.C.']],\n", " [[' England national association football team']],\n", " [[' Swiss national football team']],\n", " [[' Spartak Moscow']],\n", " [[' Spain national association football team']],\n", " [[' Jiangsu F.C.']],\n", " [[' Ineos Grenadiers']],\n", " [[' Olympique Lyonnais Féminin']],\n", " [[' FK AS Trenčín']],\n", " [[' Togo national football team']],\n", " [[' Al-Hilal SFC']],\n", " [[' Groupama-FDJ']],\n", " [[' Speranza Osaka-Takatsuki']],\n", " [[' ASVEL Basket']],\n", " [[' Palermo FC']],\n", " [[' Czech Republic national association football team']],\n", " [[\" United States men's national soccer team\"]],\n", " [[' Santos F.C.']],\n", " [[' South Korea national football team']],\n", " [[' Stoke City F.C.']],\n", " [[' Italy national association football team']],\n", " [[' FC Zenit Saint Petersburg']],\n", " [[' FC Viktoria Köln']],\n", " [[' MSV Duisburg']],\n", " [[' Portugal national association football team']],\n", " [[' Hellas Verona F.C.']],\n", " [[' Brazil national football team']],\n", " [[\" Hapoel Be'er Sheva F.C.\"]],\n", " [[' Al Nasr SC']],\n", " [[' Hull City A.F.C.']],\n", " [[' Thimpu FC']],\n", " [[' Panathinaikos F.C.']],\n", " [[' Feyenoord']],\n", " [[' Cerro Porteño']],\n", " [[' Brazil national football team']],\n", " [[' Olimpia Milano']],\n", " [[' Arsenal W.F.C.']],\n", " [[' Swiss national football team']],\n", " [[' Liv Racing']],\n", " [[' England national association football team']],\n", " [[' Everton F.C.']],\n", " [[' Congo national football team']],\n", " [[' Red Bull Racing']],\n", " [[' Algeria national football team']],\n", " [[\" Australia women's national soccer team\"]],\n", " [[' Egypt national football team']],\n", " [[' Croatia national association football team']],\n", " [[' Rangers F.C.']],\n", " [[' Atromitos F.C.']],\n", " [[' Club Athletico Paranaense']],\n", " [[' RCD Espanyol de Barcelona']],\n", " [[' Senegal national association football team']],\n", " [[' Melbourne Renegades']],\n", " [[' Hetten FC']],\n", " [[' Portland Thorns FC']],\n", " [[\" Monts d'Or Azergues Foot\"]],\n", " [[' NŠ Drava Ptuj']],\n", " [[' Al-Shaab CSC']],\n", " [[' A.C. Milan']],\n", " [[' Germany national association football team']],\n", " [[' Real Madrid CF']],\n", " [[' Greece national association football team']],\n", " [[' Gamba Osaka']],\n", " [[' Russia national football team']],\n", " [[' Shabab Al Ahli Club']],\n", " [[' Czech Republic national association football team']],\n", " [[' Club Atlético Peñarol']],\n", " [[' Maccabi Haifa F.C.']],\n", " [[' Panathinaikos B.C.']],\n", " [[' Atlético Clube de Portugal']],\n", " [[' Ivory Coast national football team']],\n", " [[' Chelsea F.C.']],\n", " [[' Brazil national football team']],\n", " [[' Serbia national football team']],\n", " [[' Notts County F.C.']],\n", " [[' Olympiacos F.C.']],\n", " [[' Buriram United F.C.']],\n", " [[' Maccabi Tel Aviv F.C.']],\n", " [[' F.C. Porto']],\n", " [[' Lechia Gdańsk']],\n", " [[' Al-Arabi SC']],\n", " [[' Linköpings FC']],\n", " [[' Wales national association football team']],\n", " [[' FC Barcelona Femení']],\n", " [[' Italy national association football team']],\n", " [[' Quick-Step Alpha Vinyl Team']],\n", " [[' Real Salt Lake']],\n", " [[' TSG 1899 Hoffenheim']],\n", " [[' Colombia national football team']],\n", " ...],\n", " 'labels_ids': [[[315, 532, 390, 18, 632, 4191, 165]],\n", " [[5429, 4612]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[1287, 1422, 6772]],\n", " [[14365, 139, 337, 12, 16764, 6486, 1794, 1885]],\n", " [[83, 4, 347, 4, 7338]],\n", " [[2910, 632, 1037, 165]],\n", " [[4619, 26769, 4843, 242, 2005, 6945]],\n", " [[19763, 16872]],\n", " [[2809, 604, 18, 632, 2613, 165]],\n", " [[580, 3600, 315, 274, 4, 347, 4]],\n", " [[5429, 10402, 10489]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[188, 469, 412, 5429]],\n", " [[6314, 16421]],\n", " [[3702, 7776, 281, 12150]],\n", " [[7016]],\n", " [[208, 4214, 23087, 7065, 3427, 242, 2893, 13345]],\n", " [[1429, 2337, 968, 165]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[7224, 597, 19643, 1688, 3999, 1243]],\n", " [[525, 700, 20852, 12221, 274, 4, 347, 4]],\n", " [[96, 242, 366, 13519, 625, 4733]],\n", " [[5429, 4612, 274, 15035, 1977]],\n", " [[5429, 10402, 10489]],\n", " [[315, 532, 390, 18, 632, 4191, 165]],\n", " [[91, 1610, 118, 274, 4, 347, 4]],\n", " [[13800, 41269, 31221]],\n", " [[8700, 632, 1037, 165]],\n", " [[19763, 16872]],\n", " [[2009, 29018, 10221, 2684, 4119, 6303, 271, 1168]],\n", " [[11917, 3631, 3108, 139]],\n", " [[10585, 73, 9873, 35733, 5429]],\n", " [[5429, 4168, 3314, 11489, 2586]],\n", " [[5168, 5325]],\n", " [[2930, 32109, 20434, 20071]],\n", " [[10035, 5317, 24058]],\n", " [[11211, 413, 274, 4, 347, 4]],\n", " [[13954, 2001, 14744, 274, 4, 500, 4]],\n", " [[5244, 632, 1037, 165]],\n", " [[17057, 8441]],\n", " [[2822, 3622, 12612]],\n", " [[208, 4214, 15333, 5429]],\n", " [[163, 14075, 6752, 10327]],\n", " [[83, 4, 347, 4, 7338]],\n", " [[5168, 5325]],\n", " [[24589, 1479, 6374, 208, 4, 347, 4]],\n", " [[4152, 274, 4, 347, 4]],\n", " [[6415, 1501, 9224, 38707]],\n", " [[2201, 6130, 12, 534, 8362, 1851, 274, 4, 347, 4]],\n", " [[3161, 14122, 1178]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[1568, 1833, 5429]],\n", " [[384, 10839, 642, 493, 5366, 2601]],\n", " [[5429, 10402, 10489]],\n", " [[1332, 242, 5413, 7222, 30089, 257, 5675, 2912, 438, 1020]],\n", " [[20351, 2383, 42775, 2001, 33293]],\n", " [[22705, 274, 4, 347, 4]],\n", " [[1568, 9926]],\n", " [[5429, 18540, 34264]],\n", " [[2499, 11476]],\n", " [[6015, 12696, 5429]],\n", " [[5168, 5325]],\n", " [[2812, 405, 15577, 274, 4, 347, 4]],\n", " [[4152, 274, 4, 347, 4]],\n", " [[5429, 10402, 10489]],\n", " [[5092, 632, 1037, 165]],\n", " [[1287, 1422, 6772]],\n", " [[29830, 18961]],\n", " [[6746, 13578, 7224]],\n", " [[226, 15089, 2383, 104, 6998, 337]],\n", " [[3417, 5809]],\n", " [[221, 15277, 2912, 438, 1020, 38220]],\n", " [[663, 11758]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[5028, 632, 1037, 165]],\n", " [[1063, 3181, 3849, 8906, 293, 208, 4, 347, 4]],\n", " [[7556, 632, 5259, 1037, 165]],\n", " [[580, 3600, 315, 274, 4, 347, 4]],\n", " [[2177, 5429]],\n", " [[1287, 1422, 6772]],\n", " [[14585, 2550, 625, 6748, 2723, 7222, 289, 3663, 3245]],\n", " [[1429, 632, 1037, 165]],\n", " [[9793, 5928, 274, 4, 347, 4]],\n", " [[5787, 5991, 8025, 1899]],\n", " [[5429, 10402, 10489]],\n", " [[5926, 2032, 16248, 5429]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[6331,\n", " 1975,\n", " 493,\n", " 3381,\n", " 4214,\n", " 20341,\n", " 1140,\n", " 119,\n", " 2426,\n", " 263,\n", " 944,\n", " 16231,\n", " 763,\n", " 126,\n", " 384,\n", " 4,\n", " 250,\n", " 4,\n", " 597,\n", " 4]],\n", " [[21774, 632, 1037, 165]],\n", " [[163, 4330, 12, 725, 1253, 15821, 700]],\n", " [[7505, 17458, 632, 1037, 165]],\n", " [[2822, 3622, 12612]],\n", " [[230, 1116, 22831]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[4998, 5547, 1452, 7150]],\n", " [[20351, 2383, 42775, 2001, 33293]],\n", " [[31162, 857, 632, 1037, 165]],\n", " [[4622, 139, 4954, 347]],\n", " [[2361, 315, 274, 4, 347, 4]],\n", " [[2009, 263, 274, 5874, 90, 18217, 3385, 1334, 5460]],\n", " [[230, 3376, 2711]],\n", " [[12602, 6801, 5463, 1885, 90, 22783]],\n", " [[10506]],\n", " [[5429, 10402, 10489]],\n", " [[4213, 808, 8878, 12, 530, 21228]],\n", " [[6314, 16421]],\n", " [[2741, 1906, 6971, 10482]],\n", " [[8683, 390, 18, 632, 1037, 165]],\n", " [[9035, 412, 274, 4, 347, 4]],\n", " [[17112, 3061, 12, 487, 5600, 139]],\n", " [[83, 4575, 3194, 29, 274, 530]],\n", " [[5926, 2032, 16248, 5429]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[2822, 3622, 12612]],\n", " [[4537, 415, 31126, 857, 208, 4, 530, 4]],\n", " [[8937, 1113, 1209, 11868, 1343, 22398, 2711]],\n", " [[726, 7746, 3572, 2030, 5429]],\n", " [[2393, 873, 329, 1790, 12150]],\n", " [[7137, 2848, 274, 4, 347, 4]],\n", " [[2822, 3622, 4317, 261, 35678, 139]],\n", " [[20351, 2383, 42775, 2001, 33293]],\n", " [[14585, 2550, 1829, 7065, 3427, 7222, 4677, 1794, 853, 281]],\n", " [[96, 242, 366, 13519, 625, 4733]],\n", " [[15338, 412, 83, 4, 597, 4, 347, 4]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[2893, 13345, 263, 6304, 415, 281, 109, 37313, 3314, 139]],\n", " [[5429, 37960, 163, 7110]],\n", " [[12723, 12130, 1178]],\n", " [[2910, 632, 1037, 165]],\n", " [[1775, 438, 10810, 4936, 15247, 274, 4, 347, 4]],\n", " [[2201, 6130, 12, 534, 8362, 1851, 274, 4, 347, 4]],\n", " [[1287, 1422, 12190]],\n", " [[2201, 6130, 12, 534, 8362, 1851, 274, 1140, 4691, 833]],\n", " [[14993, 9504, 366, 274, 4, 347, 4]],\n", " [[3870, 7338]],\n", " [[2499, 18946]],\n", " [[274, 4, 347, 4, 2848, 139]],\n", " [[2910, 632, 1037, 165]],\n", " [[18490, 632, 5259, 1037, 165]],\n", " [[1568, 1211, 7144]],\n", " [[2822, 3622, 12612]],\n", " [[25297, 5512, 8441]],\n", " [[15607, 412, 274, 4, 347, 4]],\n", " [[2822, 17122, 6643, 2478]],\n", " [[29018, 10221, 2684, 3622]],\n", " [[14993, 5150, 263, 23294, 4061]],\n", " [[384, 4, 597, 4, 530, 4, 1456, 2154, 7822]],\n", " [[7320, 632, 1037, 165]],\n", " [[221, 4438, 274, 4, 347, 4]],\n", " [[7224, 597, 19643, 1688, 3999, 1243]],\n", " [[34138, 30422, 330, 274, 1242, 3512]],\n", " [[2711, 23070, 9089, 14035]],\n", " [[13943, 1001, 2848, 242, 14182]],\n", " [[15809, 1942, 315, 274, 4, 347, 4]],\n", " [[3303, 12179, 967, 366, 40431, 281, 274, 4, 347, 4]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[27268, 9228, 274, 4, 347, 4]],\n", " [[22753, 21386, 3624, 163, 5593, 225]],\n", " [[5854, 412, 4998]],\n", " [[5429, 4168, 3314, 11489, 2586]],\n", " [[10600, 412, 274, 4, 347, 4]],\n", " [[6171, 390, 18, 632, 5259, 1037, 165]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[2711, 344, 20031, 12, 846, 40837]],\n", " [[13943, 415, 1210, 405, 2383, 771, 16966, 1698, 28544]],\n", " [[11998, 28659, 163, 530]],\n", " [[26455, 330, 23759, 9051, 625, 4104, 37151, 11104]],\n", " [[4556, 26488, 8647, 293, 5429]],\n", " [[12932, 534, 43130, 22590, 225, 10436]],\n", " [[3870, 7338]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[2711, 344, 20031, 12, 846, 40837]],\n", " [[2711, 43657]],\n", " [[10585, 73, 9873, 35733, 5429]],\n", " [[10157, 3830, 271, 5429, 305, 12, 17608]],\n", " [[2822, 6525, 354, 4317, 7474, 118, 1140]],\n", " [[663, 41375, 2857]],\n", " [[14993, 5150, 10888, 19864, 354, 274, 1140, 4691, 179]],\n", " [[226, 15089, 2383, 104, 6998, 337]],\n", " [[5524, 15933]],\n", " [[31853, 2678, 2583, 5429]],\n", " [[2361, 412, 274, 4, 347, 4]],\n", " [[7943, 17280, 13039]],\n", " [[4868, 846, 381, 2028, 5410, 2987]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[6415, 1501, 18794]],\n", " [[16518, 12470, 274, 4, 347, 4]],\n", " [[7943, 17280, 13039]],\n", " [[163, 1543, 219, 281, 4998]],\n", " [[2822, 3622, 12612]],\n", " [[2361, 315, 274, 4, 347, 4]],\n", " [[29018, 10221, 2684, 3622]],\n", " [[7320, 632, 1037, 165]],\n", " [[8683, 632, 5259, 1037, 165]],\n", " [[315, 532, 604, 18, 632, 4191, 165]],\n", " [[2822, 3622, 12612]],\n", " [[7137, 12242, 15363, 274, 4, 347, 4]],\n", " [[1775, 438, 10810, 5477, 19067, 163, 4, 347, 4]],\n", " [[22753, 21386, 3624, 163, 5593, 225]],\n", " [[7570, 20302, 7748, 274, 4, 347, 4]],\n", " [[384, 11961, 16911]],\n", " [[7320, 632, 1037, 165]],\n", " [[6748, 2723, 9697, 263, 1587, 2812, 257, 14379]],\n", " [[2177, 13114]],\n", " [[36858, 25278, 22753]],\n", " [[7320, 632, 1037, 165]],\n", " [[5429, 35068, 4122, 257]],\n", " [[256, 1526, 462, 6080, 12612]],\n", " [[208, 4, 104, 4, 347, 4, 7645, 6483]],\n", " [[1870, 2776, 12, 10926, 5857]],\n", " [[764, 4578, 7963]],\n", " [[2201, 6130, 12, 534, 8362, 1851, 274, 4, 347, 4]],\n", " [[188, 469, 11836]],\n", " [[3161, 20165]],\n", " [[274, 4, 347, 4, 22843]],\n", " [[2009, 29018, 10221, 2684, 1995, 19201]],\n", " [[5926, 2032, 16248, 5429]],\n", " [[5429, 10402, 10489]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[2009, 29018, 10221, 2684, 4119, 6303, 271, 1168]],\n", " [[211, 21999, 12221, 274, 4, 347, 4]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[18490, 632, 5259, 1037, 165]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[226, 15089, 2383, 104, 6998, 337]],\n", " [[10060, 632, 5259, 1037, 165]],\n", " [[274, 5777, 28185, 3381, 242, 14795]],\n", " [[4537, 415, 31126, 857, 208, 4, 530, 4]],\n", " [[3317, 315, 5429]],\n", " [[15338, 412, 83, 4, 597, 4, 347, 4]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[14781, 632, 1037, 165]],\n", " [[4152, 274, 4, 347, 4]],\n", " [[5429, 4168, 3314, 11489, 2586]],\n", " [[4537, 415, 31126, 857, 208, 4, 530, 4]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[13733, 632, 1037, 165]],\n", " [[5438, 763, 2860, 4365, 274, 4, 347, 4]],\n", " [[580, 14312, 11645, 19032, 274, 4, 347, 4]],\n", " [[7556, 632, 5259, 1037, 165]],\n", " [[10994, 11536, 632, 1037, 165]],\n", " [[2910, 632, 1037, 165]],\n", " [[5429, 9176]],\n", " [[5429, 10402, 10489]],\n", " [[9601, 24857]],\n", " [[188, 3324, 632, 8808, 2918, 165]],\n", " [[315, 532, 390, 18, 632, 4191, 165]],\n", " [[12919, 274, 4, 347, 4]],\n", " [[7137, 2848, 274, 4, 347, 4]],\n", " [[15206, 4699, 5429]],\n", " [[13733, 632, 1037, 165]],\n", " [[6171, 632, 5259, 1037, 165]],\n", " [[1405, 12037, 163, 3632]],\n", " [[2361, 412, 305, 4, 597, 4, 347, 4]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[9688, 104, 6579, 18995]],\n", " [[163, 1543, 219, 281, 4998]],\n", " [[112, 4, 274, 5268, 14184]],\n", " [[580, 3600, 315, 274, 4, 347, 4]],\n", " [[5429, 229, 8428]],\n", " [[305, 5416, 926, 7210, 102, 4998]],\n", " [[726, 12, 495, 2957, 3760, 4998]],\n", " [[208, 4, 347, 4, 2265, 6080]],\n", " [[12470, 11617, 29018, 10221, 2684, 2893, 13345]],\n", " [[7224, 597, 19643, 1688, 3999, 1243]],\n", " [[2822, 6525, 354, 4317, 7474, 118, 1140]],\n", " [[10157, 3830, 271, 5429]],\n", " [[274, 5777, 28185, 3381, 242, 14795]],\n", " [[7248, 219, 8441]],\n", " [[1870, 2776, 12, 10926, 5857]],\n", " [[19365, 1140, 102, 2383, 104, 7042, 636]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[4380, 8271, 230, 5268]],\n", " [[5429, 4369, 329]],\n", " [[1287, 1422, 22320]],\n", " [[580, 3600, 315, 274, 4, 347, 4]],\n", " [[7296, 271, 8726, 12612]],\n", " [[2009, 24066, 8843, 263, 9614]],\n", " [[15206, 4699, 5429]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[3317, 10506]],\n", " [[384, 10839, 642, 493, 5366, 2601]],\n", " [[7556, 632, 5259, 1037, 165]],\n", " [[9614, 632, 1037, 165]],\n", " [[11437, 632, 5259, 1037, 165]],\n", " [[96, 242, 366, 13519, 625, 4733]],\n", " [[22569, 1535, 121, 1889, 574]],\n", " [[229, 597, 5725, 12, 530, 8015, 415, 2552, 26067]],\n", " [[2027, 188, 469, 15626]],\n", " [[7556, 632, 5259, 1037, 165]],\n", " [[14993, 5150, 3702, 1452, 293]],\n", " [[5703, 15908]],\n", " [[274, 5777, 28185, 3381, 242, 4011, 18, 12610]],\n", " [[2361, 412, 305, 4, 597, 4, 347, 4]],\n", " [[14585, 2550, 1829, 7065, 3427, 7222, 4677, 1794, 853, 281]],\n", " [[13633, 83, 4, 597, 4, 347, 4]],\n", " [[7320, 632, 1037, 165]],\n", " [[208, 4214, 15333, 5429]],\n", " [[9170, 2711, 8313]],\n", " [[1221, 1585, 324, 5363, 1745, 968, 165]],\n", " [[21105, 18604, 3910, 2009]],\n", " [[29018, 10221, 2684, 6843]],\n", " [[2910, 632, 1037, 165]],\n", " [[1568, 1211, 7144]],\n", " [[2009, 234, 1043, 6073, 263, 3910]],\n", " [[1625, 632, 1037, 165]],\n", " [[1209, 31002, 16146, 6331, 366]],\n", " [[17100, 1908, 9216, 20233, 16885, 274, 4, 347, 4]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[163, 8982, 2133, 274, 4, 347, 4, 41861]],\n", " [[382, 1793, 24227, 1253]],\n", " [[6748, 2723, 9697, 25452, 338, 12109]],\n", " [[15775, 35887, 7499, 274, 5874, 90, 18217, 2009]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[14993, 9504, 366, 274, 4, 347, 4]],\n", " [[230, 4, 104, 4, 13142, 23065, 5739]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[7320, 632, 1037, 165]],\n", " [[229, 4113, 254, 354, 12150]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[9170, 2711, 8313]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[1209, 31002, 16146, 6331, 366]],\n", " [[10060, 632, 5259, 1037, 165]],\n", " [[5092, 632, 1037, 165]],\n", " [[5429, 4612, 163, 5269, 30919, 594]],\n", " [[6508, 632, 5259, 1037, 165]],\n", " [[14833, 274, 134, 2711]],\n", " [[7943, 17280, 13039]],\n", " [[2986, 9207]],\n", " [[91, 1610, 118, 274, 4, 347, 4]],\n", " [[9170, 2711, 4516, 1864]],\n", " [[2009, 29018, 10221, 2684, 255, 11186, 1535]],\n", " [[255, 5156, 261, 6130, 12, 347, 4503, 9676, 7406, 3512]],\n", " [[5926, 8393, 18191]],\n", " [[20351, 2383, 42775, 2001, 33293]],\n", " [[22256, 2565, 632, 1037, 165]],\n", " [[83, 4, 104, 4, 12218]],\n", " [[31853, 2678, 2583, 5429]],\n", " [[274, 5777, 28185, 3381, 242, 14795]],\n", " [[3417, 36802, 5429]],\n", " [[9170, 2711, 8313]],\n", " [[12132, 632, 1037, 165]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[1456, 5235, 967, 4349, 5235, 344, 4, 530, 4]],\n", " [[5092, 632, 1037, 165]],\n", " [[4290, 5429]],\n", " [[13876, 2158, 4712, 381, 4, 347, 4]],\n", " [[7960, 607, 274, 4, 347, 4]],\n", " [[230, 3376, 2711]],\n", " [[2009, 6748, 2723, 9697, 24066, 8843, 7641, 1479, 5895, 102]],\n", " [[9692, 274, 4, 347, 4]],\n", " [[221, 15277, 2912, 438, 1020, 38220]],\n", " [[580, 3600, 315, 274, 4, 347, 4]],\n", " [[13727, 1845, 3171, 274, 4, 347, 4]],\n", " [[274, 5777, 28185, 3381, 242, 14795]],\n", " [[3098, 274, 4, 347, 4, 2691]],\n", " [[1287, 1422, 6772]],\n", " [[272, 4, 104, 4, 38, 9418, 14496, 20, 7485, 30521, 8907]],\n", " [[10585, 73, 9873, 35733, 5429]],\n", " [[4307, 12599, 876, 2955, 272, 2583]],\n", " [[208, 4, 574, 4, 1664, 506, 2426]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[3870, 7338]],\n", " [[2910, 632, 1037, 165]],\n", " [[6171, 390, 18, 632, 5259, 1037, 165]],\n", " [[2711, 344, 20031, 12, 846, 40837]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[21105, 18604, 412, 274, 4, 347, 4]],\n", " [[468, 506, 574, 7602, 16408, 2691]],\n", " [[305, 2957, 260, 274, 4, 347, 4]],\n", " [[4380, 8271, 230, 5268]],\n", " [[2027, 188, 469, 15626]],\n", " [[36265, 22753]],\n", " [[230, 4, 495, 4, 2646, 23073, 1176, 1742]],\n", " [[91, 1610, 118, 274, 4, 347, 4]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[22753, 21386, 3624, 163, 5593, 225]],\n", " [[1156, 632, 5259, 1037, 165]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[14667, 12, 387, 3006, 1180, 632, 1037, 165]],\n", " [[234, 4, 717, 4, 347, 4]],\n", " [[3542, 1469, 6377, 274, 4, 347, 4]],\n", " [[1625, 632, 1037, 165]],\n", " [[9096, 3497, 632, 4105, 4191, 165]],\n", " [[5429, 30377, 1496, 219, 229, 5079, 282, 2160, 2726, 330]],\n", " [[2822, 3622, 12612]],\n", " [[13287, 12, 25093, 7829, 40236, 2711]],\n", " [[7505, 17458, 632, 1037, 165]],\n", " [[896, 604, 18, 632, 4191, 165]],\n", " [[6508, 632, 5259, 1037, 165]],\n", " [[798, 632, 1037, 165]],\n", " [[9614, 632, 1037, 165]],\n", " [[2822, 3622, 12612]],\n", " [[2009, 16528, 952, 3602, 257]],\n", " [[18490, 632, 5259, 1037, 165]],\n", " [[83, 4, 347, 4, 7338]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[15897, 944, 1899, 281, 2344, 523, 1694, 3006, 19200]],\n", " [[208, 10595, 3109, 412, 274, 4, 347, 4]],\n", " [[2499, 11476]],\n", " [[2499, 11476]],\n", " [[13694, 25280, 7204, 1627]],\n", " [[229, 7025, 30492, 241, 7450, 211, 7389]],\n", " [[2711, 23070, 9089, 14035, 3309, 876]],\n", " [[24799, 632, 1037, 165]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[4622, 139, 3767, 459, 38754]],\n", " [[274, 530, 6015, 255, 2558, 4955, 17010]],\n", " [[163, 4330, 12, 725, 1253, 15821, 700]],\n", " [[2822, 14585, 2550, 625]],\n", " [[3702, 7776, 281, 12150]],\n", " [[5168, 5325]],\n", " [[381, 4, 347, 4, 24589, 1479, 6374]],\n", " [[2009, 29018, 10221, 2684, 1995, 19201]],\n", " [[2271, 83, 21454, 263, 2646, 154, 3914]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[8937, 1113, 1209, 11868, 1343, 22398, 2711]],\n", " [[2201, 6130, 12, 534, 8362, 1851, 274, 4, 347, 4]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[2361, 412, 274, 4, 347, 4]],\n", " [[2711, 344, 20031, 12, 846, 40837]],\n", " [[5429, 10402, 10489]],\n", " [[13287, 12, 25093, 7829, 40236, 2711]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[10500, 2383, 17973, 2620]],\n", " [[3317, 10506]],\n", " [[1775, 438, 10810, 4936, 15247, 274, 4, 347, 4]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[11666, 274, 4, 347, 4]],\n", " [[208, 4, 347, 4, 23094, 1043, 6073]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[5092, 632, 1037, 165]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[112, 4, 5429, 234, 5172, 282, 2865]],\n", " [[2910, 632, 1037, 165]],\n", " [[5429, 2049, 16408]],\n", " [[2361, 412, 274, 4, 347, 4]],\n", " [[315, 532, 390, 18, 632, 4191, 165]],\n", " [[7570, 20302, 7748, 274, 4, 347, 4]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[7570, 20302, 7748, 274, 4, 347, 4]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[5819, 12770]],\n", " [[5703, 15908]],\n", " [[4152, 274, 4, 347, 4]],\n", " [[7137, 12242, 15363, 274, 4, 347, 4]],\n", " [[21780, 12527, 493, 234, 293, 255, 329, 26051, 274, 4, 347, 4]],\n", " [[1608, 179, 1561, 267, 18057, 344, 9707, 1115, 1250, 21783, 5410]],\n", " [[14993, 5150, 10888, 19864, 354]],\n", " [[5854, 13170]],\n", " [[9245, 315, 274, 4, 347, 4]],\n", " [[5429, 208, 1499]],\n", " [[5854, 412, 4998]],\n", " [[208, 4214, 15333, 5429]],\n", " [[230, 4, 250, 4, 468, 1140, 23250, 208, 2726, 1399]],\n", " [[112, 4, 21218, 846, 4326, 329, 15786]],\n", " [[25103, 710, 6909, 3830, 267, 366, 263, 3060, 1043, 2070, 329]],\n", " [[230, 4, 495, 4, 2646, 23073, 1176, 1742]],\n", " [[17822, 1097, 7488, 5429]],\n", " [[7413, 268, 4998, 673]],\n", " [[7556, 632, 5259, 1037, 165]],\n", " [[3098, 274, 4, 347, 4, 2691]],\n", " [[7224, 597, 19643, 1688, 3999, 1243]],\n", " [[17182, 5268, 163, 6457, 705, 468, 28814, 102]],\n", " [[21299, 2186, 274, 4, 347]],\n", " [[9035, 412, 274, 4, 347, 4]],\n", " [[5429, 13985, 405, 6130, 14330]],\n", " [[3417, 36802, 5429]],\n", " [[1625, 632, 1037, 165]],\n", " [[2499, 18946]],\n", " [[5729, 412, 5429]],\n", " [[24986, 6847, 20623, 261]],\n", " [[29018, 10221, 2684, 764, 6487, 3407, 14182, 12612]],\n", " [[2361, 315, 305, 4, 597, 4, 347, 4]],\n", " [[9601, 19119, 32482, 4989]],\n", " [[5244, 632, 1037, 165]],\n", " [[21774, 632, 1037, 165]],\n", " [[2000, 632, 1037, 165]],\n", " [[234, 2154, 11691, 5429]],\n", " [[1405, 12037, 163, 3632]],\n", " [[840, 463, 1657, 9002, 1173, 260, 274, 4, 347, 4]],\n", " [[5429, 4612]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[22256, 2565, 632, 1037, 165]],\n", " [[22378, 12, 18551, 139, 390, 18]],\n", " [[1568, 1211, 7144]],\n", " [[83, 4, 104, 4, 12218]],\n", " [[9176, 381, 12, 26902, 5429]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[5420, 15929]],\n", " [[4556, 26488, 8647, 293, 5429]],\n", " [[468, 506, 387, 312, 9259, 22739]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[2910, 632, 1037, 165]],\n", " [[12966, 6748, 2723, 7222, 726, 1176, 8129, 9401]],\n", " [[4152, 305, 4, 597, 4, 347, 4]],\n", " [[6171, 632, 5259, 1037, 165]],\n", " [[1625, 632, 1037, 165]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[9170, 2711, 8313]],\n", " [[5429, 24542, 298, 45739, 1879]],\n", " [[14993, 5150, 263, 23294, 4061]],\n", " [[391, 1101, 632, 1037, 165]],\n", " [[208, 4, 347, 4, 23094, 1043, 6073]],\n", " [[7320, 632, 1037, 165]],\n", " [[1429, 632, 1037, 165]],\n", " [[2000, 632, 1037, 165]],\n", " [[17535, 5382, 975, 844, 181, 73, 428, 17411, 12, 17906]],\n", " [[14567, 12612]],\n", " [[14585, 2550, 1829, 7065, 3427, 7222, 4677, 1794, 853, 281]],\n", " [[15837, 5223, 23872, 352, 118, 6579, 625, 6417]],\n", " [[3417, 36802, 5429]],\n", " [[6748, 2723, 9697, 17686, 26802, 274, 4, 347, 4]],\n", " [[4868, 846, 381, 2028, 5410, 2987]],\n", " [[468, 506, 387, 312, 9259, 22739, 3082]],\n", " [[8937, 1113, 1209, 11868, 1343, 22398, 2711]],\n", " [[798, 632, 1037, 165]],\n", " [[44602, 154, 179, 344, 9707, 1115, 1250, 1638, 462, 36384]],\n", " [[9543, 11861, 90, 281]],\n", " [[83, 4, 104, 4, 12218]],\n", " [[4514, 9529]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[1600, 390, 18, 632, 1037, 165]],\n", " [[5429, 4612, 163, 5269, 30919, 594]],\n", " [[21774, 632, 1037, 165]],\n", " [[5716, 4597, 274, 4, 347, 4]],\n", " [[2361, 412, 274, 4, 347, 4]],\n", " [[5092, 632, 1037, 165]],\n", " [[1603, 632, 1037, 165]],\n", " [[2921, 18290]],\n", " [[381, 2544, 338, 11629, 14184]],\n", " [[2000, 632, 1037, 165]],\n", " [[7224, 597, 19643, 1688, 3999, 1243]],\n", " [[8983, 315, 274, 4, 347, 4]],\n", " [[15376, 493, 21115]],\n", " [[6037, 632, 1037, 165]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[2361, 412, 274, 4, 347, 4]],\n", " [[230, 4, 597, 4, 4838, 4231, 225, 21526]],\n", " [[1429, 632, 1037, 165]],\n", " [[1505, 1704, 3497, 632, 1037, 165]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[35906, 384, 10839, 642, 12733, 226, 267, 1792, 462, 267, 1113]],\n", " [[5092, 632, 1037, 165]],\n", " [[1625, 632, 1037, 165]],\n", " [[2588, 2461, 83, 4643]],\n", " [[18749, 412, 274, 4, 347, 4]],\n", " [[2005, 3590, 274, 4467, 18217, 2893, 13345]],\n", " [[13943, 415, 1210, 405, 2383, 771, 16966, 1698, 28544]],\n", " [[3426, 274, 4, 347, 4]],\n", " [[5480, 717, 27093, 918]],\n", " [[384, 13967, 274, 4467, 18217, 2893, 13345]],\n", " [[315, 532, 604, 18, 632, 4191, 165]],\n", " [[208, 4, 104, 4, 347, 4, 7645, 6483]],\n", " [[8683, 632, 5259, 1037, 165]],\n", " [[15376, 493, 21115]],\n", " [[2910, 632, 1037, 165]],\n", " [[369, 21894, 632, 1037, 165]],\n", " [[525, 700, 20852, 12221, 274, 4, 347, 4]],\n", " [[4317, 10031, 7339, 21098, 12150]],\n", " [[7765, 6412, 4998]],\n", " [[5498, 632, 1037, 165]],\n", " [[229, 4113, 254, 354, 12150]],\n", " [[4152, 274, 4, 347, 4]],\n", " [[5429, 11996, 1168, 22487, 14722]],\n", " [[6171, 632, 5259, 1037, 165]],\n", " [[44602, 154, 179, 344, 9707, 1115, 1250, 1638, 462, 36384]],\n", " [[4290, 5429]],\n", " [[5639, 632, 1037, 165]],\n", " [[14993, 9504, 366, 274, 4, 347, 4]],\n", " [[3098, 274, 4, 347, 4, 2691]],\n", " [[208, 4, 104, 4, 347, 4, 7645, 6483]],\n", " [[726, 12, 597, 5655, 7776, 5429]],\n", " [[3590, 4947, 922]],\n", " [[5429, 13073, 1075, 1242, 1879, 3467]],\n", " [[4152, 305, 4, 597, 4, 347, 4]],\n", " [[1603, 632, 1037, 165]],\n", " [[5854, 13170]],\n", " [[15091]],\n", " [[10060, 632, 5259, 1037, 165]],\n", " [[2009, 3574, 1423, 6748, 2723, 9697, 22378, 22378]],\n", " [[1156, 632, 5259, 1037, 165]],\n", " [[391, 1101, 632, 1037, 165]],\n", " [[6748, 2723, 9697, 25452, 338, 12109]],\n", " [[163, 7110, 27547, 16784, 7406, 3512]],\n", " [[5680, 176, 500, 7801, 1001, 105, 282, 2711]],\n", " [[5092, 632, 1037, 165]],\n", " [[3098, 274, 4, 347, 4, 2691]],\n", " [[3160, 17492]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[315, 13716, 6350]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[4341, 3671, 642, 1033, 5429]],\n", " [[2000, 632, 1037, 165]],\n", " [[3426, 274, 4, 347, 4]],\n", " [[2711, 23070, 9089, 14035, 3309, 876]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[208, 4214, 1560, 1140, 8, 2869, 17010, 2520, 2379, 632, 1037, 165]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[1221, 632, 5259, 1037, 165]],\n", " [[2848, 26298, 9401, 208, 4, 347, 4]],\n", " [[10060, 632, 5259, 1037, 165]],\n", " [[7320, 632, 1037, 165]],\n", " [[1480, 673, 3721, 274, 4, 347, 4]],\n", " [[1429, 390, 18, 632, 1037, 165]],\n", " [[896, 390, 18, 632, 4191, 165]],\n", " [[19763, 16872]],\n", " [[10060, 632, 5259, 1037, 165]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[2910, 632, 1037, 165]],\n", " [[4436, 26827, 906, 289, 1140, 763, 6070, 5413, 2009]],\n", " [[29018, 10221, 2684, 3622]],\n", " [[8683, 632, 5259, 1037, 165]],\n", " [[11141, 281, 3060, 4488, 274, 4, 347, 4]],\n", " [[5429, 17326, 19654, 29712]],\n", " [[11666, 274, 4, 347, 4]],\n", " [[14993, 5150, 10888, 19864, 354]],\n", " [[5429, 1587, 687, 8799, 12, 19451]],\n", " [[2009, 3574, 1423, 6748, 2723, 9697, 22378, 22378]],\n", " [[944, 2253, 757, 3983, 1890, 6005]],\n", " [[22839, 2727, 3771, 20375, 4242]],\n", " [[660, 22494, 13310, 18440, 1073, 4193, 102, 5429]],\n", " [[726, 85, 90, 19284, 5429]],\n", " [[31245, 530, 15757, 12705, 525, 1073, 16552]],\n", " [[230, 1073, 3572, 1512, 2912, 438, 1020]],\n", " [[5429, 221, 4438, 412]],\n", " [[22705, 274, 4, 347, 4]],\n", " [[1221, 632, 5259, 1037, 165]],\n", " [[13733, 632, 1037, 165]],\n", " [[13733, 632, 1037, 165]],\n", " [[4152, 305, 4, 597, 4, 347, 4]],\n", " [[5429, 4612]],\n", " [[764, 5465, 17010, 263, 33759, 783, 7499]],\n", " [[18490, 632, 5259, 1037, 165]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[5429, 7916, 354, 271]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[369, 17577, 315, 5429]],\n", " [[9601, 24857, 468, 8508, 11760]],\n", " [[112, 4, 5429, 1332, 5459]],\n", " [[7320, 632, 1037, 165]],\n", " [[15607, 412, 274, 4, 347, 4]],\n", " [[5429, 9922, 8530]],\n", " [[12587, 632, 1037, 165]],\n", " [[14781, 632, 1037, 165]],\n", " [[2742, 21402, 530, 4424, 22015, 2265, 415, 13714, 8604]],\n", " [[1793, 24227, 1253, 5463, 1885, 90, 163, 20997]],\n", " [[21774, 632, 1037, 165]],\n", " [[2561, 7772]],\n", " [[726, 2379, 28366, 2383, 597, 225, 3181]],\n", " [[35722, 530, 11198, 163, 4, 347, 4]],\n", " [[15959, 1054, 8899, 274, 4, 347, 4]],\n", " [[6508, 632, 5259, 1037, 165]],\n", " [[2910, 632, 1037, 165]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[14993, 5150, 10888, 19864, 354]],\n", " [[726, 344, 1222, 3578, 2009]],\n", " [[5429, 4612]],\n", " [[16518, 12470, 274, 4, 347, 4]],\n", " [[1625, 632, 1037, 165]],\n", " [[12940, 632, 5259, 1037, 165]],\n", " [[1221, 390, 18, 632, 4191, 165]],\n", " [[2822, 3622, 4317, 261, 35678, 139]],\n", " [[17112, 3061, 12, 487, 5600, 139]],\n", " [[5429, 11996, 1168, 22487, 14722]],\n", " [[2009, 29018, 10221, 2684, 4838, 281, 4989]],\n", " [[3378, 1332]],\n", " [[28147, 31732, 2711]],\n", " [[274, 530, 468, 1120, 271]],\n", " [[188, 1156, 13340]],\n", " [[33846, 22153, 2001, 3917, 2253, 9401]],\n", " [[6331,\n", " 1975,\n", " 493,\n", " 3381,\n", " 4214,\n", " 6838,\n", " 1001,\n", " 6873,\n", " 1526,\n", " 6374,\n", " 263,\n", " 7065,\n", " 3427,\n", " 293]],\n", " [[211, 4, 347, 4, 315]],\n", " [[5429, 208, 1499]],\n", " [[2910, 632, 1037, 165]],\n", " [[5429, 15757, 12705, 3467]],\n", " [[229, 530, 5309, 2987, 102, 525, 20782, 6106]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[17609, 632, 1037, 165]],\n", " [[9793, 5928, 274, 4, 347, 4]],\n", " [[4868, 846, 381, 2028, 5410, 2987]],\n", " [[11437, 632, 5259, 1037, 165]],\n", " [[230, 2456, 6852, 9002, 1588, 1253]],\n", " [[2201, 5429]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[36589, 7876, 4668, 263, 732, 3695, 859, 102, 1792, 1069, 927]],\n", " [[12932, 534, 43130, 22590, 225, 10436]],\n", " [[21774, 632, 1037, 165]],\n", " [[369, 1961, 5429]],\n", " [[798, 632, 1037, 165]],\n", " [[2822, 3622, 12612]],\n", " [[1287, 1422, 5429]],\n", " [[83, 4, 717, 4, 530, 4, 11198, 274, 4, 347, 4]],\n", " [[2009, 255, 25491]],\n", " [[5837, 15945, 5429]],\n", " [[17983, 632, 1037, 165]],\n", " [[5429, 30610, 1417]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[391, 1101, 632, 1037, 165]],\n", " [[2769, 632, 5259, 1037, 165]],\n", " [[221, 5268, 7038, 14559, 3467]],\n", " [[7296, 271, 8726, 12612]],\n", " [[5429, 660, 329, 3592, 256, 7352, 1488, 330, 2331]],\n", " [[2822, 3622, 6719, 4699]],\n", " [[391, 1101, 632, 1037, 165]],\n", " [[12612, 221, 1488, 26802]],\n", " [[30492, 241, 7450, 14795]],\n", " [[6037, 632, 1037, 165]],\n", " [[5429, 13073, 1075, 1242, 1879, 3467]],\n", " [[3497, 9, 2487, 632, 5259, 1037, 165]],\n", " [[13708, 26450, 2912, 438, 1020]],\n", " [[274, 530, 11504, 257, 4807, 282, 2603, 21752, 26084, 2426]],\n", " [[5429, 15757, 12705, 19443, 18759]],\n", " [[315, 532, 390, 18, 632, 4191, 165]],\n", " [[14605, 632, 5259, 1037, 165]],\n", " [[8683, 632, 5259, 1037, 165]],\n", " [[12612, 4436, 20287, 337]],\n", " [[13633, 83, 4, 597, 4, 347, 4]],\n", " [[188, 3324, 632, 1037, 165]],\n", " [[112, 4, 5429, 1332, 5459]],\n", " [[14993, 5150, 10888, 19864, 354, 274, 1140, 4691, 179]],\n", " [[121, 9056, 102, 1211, 7128, 29]],\n", " [[4622, 139, 3767, 459, 38754]],\n", " [[3430, 632, 1037, 165]],\n", " [[2893, 13345, 29018, 10221, 2684, 12765, 139, 4214, 2955, 6251, 763]],\n", " [[3274, 331, 4223]],\n", " [[226, 18307, 234, 324, 438, 324, 438, 2478]],\n", " [[15081]],\n", " [[2910, 390, 18, 632, 1037, 165]],\n", " [[14567, 12612]],\n", " [[580, 3600, 315, 274, 4, 347, 4]],\n", " [[2393, 873, 329, 1790, 12150]],\n", " [[112, 4, 5429, 1332, 5459]],\n", " [[2201, 6130, 12, 534, 8362, 1851, 274, 4, 347, 4]],\n", " [[27162, 11626, 3990, 1722, 179, 274, 4, 347, 4]],\n", " [[16193, 632, 1037, 165]],\n", " [[2271, 13310, 36349, 2884, 337, 757, 5107, 5429]],\n", " [[7505, 17458, 632, 1037, 165]],\n", " [[20351, 2383, 42775, 2001, 33293]],\n", " [[7296, 271, 8726, 12612]],\n", " [[663, 11758]],\n", " [[3426, 274, 4, 347, 4]],\n", " [[18490, 632, 5259, 1037, 165]],\n", " [[9793, 5928, 274, 4, 347, 4]],\n", " [[229, 5596, 21834]],\n", " [[31280, 282, 5269, 29048, 263, 255, 6166, 11408, 102]],\n", " [[12612, 4436, 20287, 337]],\n", " [[14664, 412, 5429]],\n", " [[21774, 632, 1037, 165]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[2361, 315, 274, 4, 347, 4]],\n", " [[12919, 5429]],\n", " [[726, 12, 3609, 895, 1543, 2636, 1847, 2009]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[2177, 2692, 10929]],\n", " [[23650, 13364, 90, 229, 1116, 257]],\n", " [[1793, 3245, 5911, 2154, 6498, 5429]],\n", " [[11666, 274, 4, 347, 4]],\n", " [[344, 30395, 12108, 368]],\n", " [[468, 506, 387, 312, 9259, 22739]],\n", " [[229, 4113, 254, 354, 12150]],\n", " [[2381, 102, 3703, 574, 165]],\n", " [[7556, 632, 5259, 1037, 165]],\n", " [[19041, 10968, 6752, 10327]],\n", " [[208, 10729, 14777, 225]],\n", " [[6171, 632, 5259, 1037, 165]],\n", " [[14993, 5150, 10888, 19864, 354]],\n", " [[7505, 17458, 632, 1037, 165]],\n", " [[15639, 632, 5259, 1037, 165]],\n", " [[9793, 5928, 274, 4, 347, 4]],\n", " [[14993, 5150, 10888, 19864, 354, 274, 1140, 4691, 179]],\n", " [[83, 4, 717, 4, 530, 4, 11198, 274, 4, 347, 4]],\n", " [[9170, 2711, 8313]],\n", " [[188, 469, 1211, 9926]],\n", " [[21774, 632, 1037, 165]],\n", " [[83, 4, 104, 4, 12218]],\n", " [[274, 530, 840, 330, 105, 1187, 12733]],\n", " [[5429, 10402, 10489, 2691]],\n", " [[208, 4214, 15333, 5429]],\n", " [[17468, 448, 13023, 5641, 163, 20997]],\n", " [[2893, 13345, 263, 6304, 415, 281, 109, 37313, 3314, 139]],\n", " [[2769, 632, 5259, 1037, 165]],\n", " [[2910, 632, 1037, 165]],\n", " [[2769, 632, 5259, 1037, 165]],\n", " [[2711, 23070, 9089, 14035, 3309, 876]],\n", " [[226, 4061, 384, 3632]],\n", " [[3160, 17492]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[8683, 390, 18, 632, 865, 3512, 165]],\n", " [[25011, 12, 2022, 468, 11485, 102]],\n", " [[2361, 412, 274, 4, 347, 4]],\n", " [[3497, 9, 2487, 632, 5259, 1037, 165]],\n", " [[3378, 5553, 268]],\n", " [[16612, 33897, 211, 1790, 274, 4, 347, 4]],\n", " [[1918, 1140, 14962, 274, 4467, 18217, 2893, 13345, 36, 21963, 43]],\n", " [[312, 4, 3217, 6293]],\n", " [[4766, 14572]],\n", " [[798, 632, 1037, 165]],\n", " [[3160, 17492]],\n", " [[8873, 9399, 1906, 263, 2588, 221, 2550, 5079]],\n", " [[5429, 15757, 12705, 3467]],\n", " [[4380, 8271, 230, 5268]],\n", " [[5429, 7093, 523]],\n", " [[4436, 29, 385, 108, 11094, 4947, 11249, 3663, 13324]],\n", " [[1775, 438, 10810, 4936, 15247, 274, 4, 347, 4]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[660, 22494, 13310, 18440, 1073, 4193, 102, 5429]],\n", " [[20351, 2383, 42775, 2001, 33293]],\n", " [[22839, 2727, 6748, 2723, 7222, 726, 2089, 5272]],\n", " [[3332, 2646, 26681, 274, 4, 347, 4]],\n", " [[3378, 5553, 268]],\n", " [[15376, 493, 21115]],\n", " [[166, 5618, 4670, 274, 4, 347, 4]],\n", " [[369, 17577, 315, 5429]],\n", " [[221, 2336, 272, 30265, 1243, 274, 4, 347, 4]],\n", " [[188, 3324, 632, 1037, 165]],\n", " [[208, 4, 347, 4, 2265, 6080]],\n", " [[6171, 632, 5259, 1037, 165]],\n", " [[952, 10172, 5521, 718, 281, 12612]],\n", " [[29018, 10221, 2684, 3622]],\n", " [[229,\n", " 4,\n", " 104,\n", " 4,\n", " 347,\n", " 4,\n", " 226,\n", " 5361,\n", " 2558,\n", " 384,\n", " 2603,\n", " 12,\n", " 846,\n", " 2560,\n", " 463,\n", " 8663]],\n", " [[16588, 366, 12612]],\n", " [[315, 532, 604, 18, 632, 4191, 165]],\n", " [[3430, 632, 1037, 165]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[2009, 29018, 10221, 2684, 3182, 2727]],\n", " [[24195, 632, 1037, 165]],\n", " [[20421, 428, 10344, 274, 4, 347, 4]],\n", " [[14993, 5150, 263, 23294, 4061]],\n", " [[15676, 5173, 102, 229, 9418, 1479, 605]],\n", " [[208, 4, 104, 4, 347, 4, 7645, 6483]],\n", " [[208, 4, 574, 4, 1664, 506, 2426]],\n", " [[9341, 261, 632, 1037, 165]],\n", " [[274, 530, 229, 7381, 139, 2742, 10809, 31316, 36533]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[312, 1829, 248, 18974, 354, 274, 4, 347, 4]],\n", " [[2009, 44285, 1851]],\n", " [[391, 1101, 632, 1037, 165]],\n", " [[36858, 25278, 22753]],\n", " [[2646, 1210, 24181, 274, 4, 347, 4]],\n", " [[5429, 4424, 22015, 11135, 2816, 438]],\n", " [[12132, 632, 1037, 165]],\n", " [[4174, 632, 5259, 1037, 165]],\n", " [[5244, 632, 1037, 165]],\n", " [[274, 3573, 4448, 6276]],\n", " [[1775, 438, 10810, 4936, 15247, 274, 4, 347, 4]],\n", " [[726, 12, 597, 5655, 7776, 4998]],\n", " [[208, 1741, 260, 6163, 3726, 102, 234, 19291, 1688, 5107]],\n", " [[1287, 1422, 6772]],\n", " [[11193, 1908, 274, 4, 347, 4]],\n", " [[17112, 3061, 12, 487, 5600, 139]],\n", " [[5429, 24542, 298, 45739, 1879]],\n", " [[2027, 188, 469, 15626]],\n", " [[13800, 41269, 31221]],\n", " [[7320, 632, 1037, 165]],\n", " [[12723, 12130, 1178]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[2711, 43657]],\n", " [[5429, 2049, 16408]],\n", " [[2893, 13345, 263, 6304, 415, 281, 109, 37313, 3314, 139]],\n", " [[44558, 991, 853, 4077, 873, 2768, 2258, 12150]],\n", " [[1470, 390, 18, 632, 865, 3512, 165]],\n", " [[9170, 2711, 8313]],\n", " [[580, 3600, 315, 274, 4, 347, 4]],\n", " [[312, 1829, 248, 18974, 354, 274, 4, 347, 4]],\n", " [[3426, 274, 4, 347, 4]],\n", " [[21774, 632, 1037, 165]],\n", " [[896, 604, 18, 632, 4191, 165]],\n", " [[4436, 26827, 906, 289, 1140, 763, 6070, 5413, 2009]],\n", " [[5429, 221, 4438, 412]],\n", " [[1211, 2141, 274, 4, 347, 4]],\n", " [[726, 12, 534, 4759, 15997, 1847, 2009]],\n", " [[4998, 953, 7104]],\n", " [[315, 532, 604, 18, 632, 4191, 165]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[21774, 632, 1037, 165]],\n", " [[1221, 632, 5259, 1037, 165]],\n", " [[28187, 687, 18612, 32825, 24969, 163, 8982, 2133]],\n", " [[4152, 274, 4, 347, 4]],\n", " [[3417, 36802, 5429]],\n", " [[2000, 632, 1037, 165]],\n", " [[20351, 2383, 42775, 2001, 33293]],\n", " [[25305, 8, 26288, 3733, 1417, 1243, 632, 1037, 165]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[11666, 274, 4, 347, 4]],\n", " [[6748, 2723, 9697, 25452, 338, 12109]],\n", " [[6371, 102, 1209, 1075, 274, 4, 347, 4]],\n", " [[2009, 29018, 10221, 2684, 4838, 281, 4989]],\n", " [[4152, 274, 4, 347, 4]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[3426, 274, 4, 347, 4]],\n", " [[5429, 229, 5079, 282, 1630, 271]],\n", " [[2009, 29018, 10221, 2684, 23654, 9401]],\n", " [[9692, 274, 4, 347, 4]],\n", " [[4273, 853, 424, 315, 274, 4, 347, 4]],\n", " [[7296, 271, 8726, 12612]],\n", " [[2822, 6525, 354, 4317, 7474, 118, 1140]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[2529, 119, 3671, 35960]],\n", " [[25305, 8, 26288, 3733, 1417, 1243, 632, 1037, 165]],\n", " [[4619, 26769, 4843, 242, 2005, 6945]],\n", " [[580, 14312, 11645, 19032, 274, 4, 347, 4]],\n", " [[14056, 369, 4680, 274, 4, 347, 4]],\n", " [[1156, 632, 5259, 1037, 165]],\n", " [[5092, 632, 1037, 165]],\n", " [[30140, 677, 3467]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[27268, 9228, 274, 4, 347, 4]],\n", " [[96, 242, 366, 13519, 625, 4733]],\n", " [[14993, 5150, 10888, 19864, 354, 274, 1140, 4691, 179]],\n", " [[274, 530, 6015, 255, 2558, 4955, 17010]],\n", " [[255, 14744, 632, 1037, 165]],\n", " [[726, 12, 725, 718, 337, 208, 5268]],\n", " [[826, 2583, 12, 24667, 863]],\n", " [[208, 1741, 19209, 19380, 12, 565, 677, 47497]],\n", " [[6015, 16641, 163, 20997]],\n", " [[4677, 254, 4992, 5429]],\n", " [[9096, 3497, 632, 5259, 1037, 165]],\n", " [[315, 532, 604, 18, 632, 4191, 165]],\n", " [[12919, 274, 4, 347, 4]],\n", " [[391, 1101, 632, 1037, 165]],\n", " [[15607, 412, 274, 4, 347, 4]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[5429, 13985, 405, 6130, 14330]],\n", " [[5429, 16706, 90, 7228, 229, 3671, 8502]],\n", " [[6253, 846, 5620, 354, 3321]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[11141, 281, 3060, 4488, 274, 4, 347, 4]],\n", " [[2910, 632, 1037, 165]],\n", " [[289, 24812, 523, 1456, 108, 254, 264, 3952, 274, 4, 347, 4]],\n", " [[726, 4417, 338, 4998]],\n", " [[13077, 412, 83, 4, 597, 4, 347, 4]],\n", " [[2032, 11850, 257, 5429]],\n", " [[5302, 2681, 1243, 967, 366, 274, 4, 347, 4]],\n", " [[33445, 14511, 3109]],\n", " [[13943, 1001, 2848, 242, 14182]],\n", " [[2910, 632, 1037, 165]],\n", " [[384, 10839, 642, 493, 5366, 2601]],\n", " [[4152, 305, 4, 597, 4, 347, 4]],\n", " [[5092, 632, 1037, 165]],\n", " [[17057, 8441]],\n", " [[1156, 632, 5259, 1037, 165]],\n", " [[9692, 274, 4, 347, 4]],\n", " [[11536, 632, 1037, 165]],\n", " [[1211, 6518, 8441]],\n", " [[21774, 632, 1037, 165]],\n", " [[1221, 390, 18, 632, 4191, 165]],\n", " [[5028, 632, 1037, 165]],\n", " [[11437, 632, 5259, 1037, 165]],\n", " [[5706, 274, 4, 347, 4]],\n", " [[497, 5638, 405, 366, 274, 4, 347, 4]],\n", " [[2009, 27417, 2684, 2884, 1113, 9401]],\n", " [[248, 11579, 11631, 3785, 1168, 263, 4612]],\n", " [[18490, 632, 5259, 1037, 165]],\n", " [[5703, 38901, 4216]],\n", " [[289, 594, 3869, 5429]],\n", " [[5926, 2032, 16248, 5429]],\n", " [[4436, 29, 385, 108, 11094, 4947, 11249, 3663, 13324]],\n", " [[234, 1277, 21402, 211, 6472, 102, 42191, 11591]],\n", " [[726, 12, 3609, 102, 873, 230, 3632]],\n", " [[83, 4, 347, 4, 7338]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[2822, 3622, 12612]],\n", " [[4644, 632, 5259, 1037, 165]],\n", " [[272, 14996, 19380]],\n", " [[798, 632, 1037, 165]],\n", " [[840, 873, 873, 726, 7746, 3572, 2009]],\n", " [[9096, 3497, 632, 5259, 1037, 165]],\n", " [[2009, 29018, 10221, 2684, 4119, 6303, 271, 1168]],\n", " [[1775, 438, 10810, 4936, 15247, 274, 4, 347, 4]],\n", " [[5302, 2681, 1243, 967, 366, 163, 4, 347, 4]],\n", " [[29018, 10221, 2684, 2893, 13345, 263, 8062]],\n", " [[22256, 2565, 632, 1037, 165]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[2910, 632, 1037, 165]],\n", " [[12933, 632, 1037, 165]],\n", " [[1491, 1872, 413, 274, 4, 347, 4]],\n", " [[14993, 9504, 366, 274, 4, 347, 4]],\n", " [[4273, 853, 424, 315, 274, 4, 347, 4]],\n", " [[1775, 438, 10810, 5477, 19067, 274, 4, 347, 4]],\n", " [[274, 4, 347, 4, 2848, 139]],\n", " [[1063, 611, 493, 272, 6106, 1277, 11936, 7771]],\n", " [[726, 12, 8138, 10810, 4998]],\n", " [[4341, 3671, 642, 1033, 5429]],\n", " [[5295, 632, 5259, 1037, 165]],\n", " [[5429, 4612, 274, 15035, 1977]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[13287, 12, 25093, 7829, 40236, 2711]],\n", " [[2822, 8957, 1777]],\n", " [[12932, 534, 43130, 22590, 225, 10436]],\n", " [[8700, 632, 1037, 165]],\n", " ...],\n", " 'relation': ['P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " ...],\n", " 'num_answers': [1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " ...]},\n", " '2021-Q1': {'text': [['Alex Morgan plays for .'],\n", " ['Lionel Messi plays for .'],\n", " ['Cristiano Ronaldo plays for .'],\n", " ['LeBron James plays for .'],\n", " ['Puck Moonen plays for .'],\n", " ['Zlatan Ibrahimović plays for .'],\n", " ['Neymar plays for .'],\n", " ['Ronaldinho plays for .'],\n", " ['Megan Rapinoe plays for .'],\n", " ['Alisha Lehmann plays for .'],\n", " ['Robert Lewandowski plays for .'],\n", " ['Gianluigi Buffon plays for .'],\n", " ['Andrea Pirlo plays for .'],\n", " ['Kevin Durant plays for .'],\n", " ['Lukas Podolski plays for .'],\n", " ['Lewis Hamilton plays for .'],\n", " ['Formiga plays for .'],\n", " ['Naomi Osaka plays for .'],\n", " ['José Mourinho plays for .'],\n", " ['Luis Suárez plays for .'],\n", " ['Franck Ribéry plays for .'],\n", " ['Tim Cahill plays for .'],\n", " ['Mario Balotelli plays for .'],\n", " ['Lieke Martens plays for .'],\n", " ['Manuel Neuer plays for .'],\n", " ['Lindsey Horan plays for .'],\n", " ['Javier Mascherano plays for .'],\n", " ['James Rodríguez plays for .'],\n", " ['Hope Solo plays for .'],\n", " ['Diego Forlán plays for .'],\n", " ['Sebastián Abreu plays for .'],\n", " ['Carli Lloyd plays for .'],\n", " ['Marta plays for .'],\n", " ['Javier Hernández plays for .'],\n", " ['Yuzvendra Chahal plays for .'],\n", " ['Thiago Silva plays for .'],\n", " ['Andrés Iniesta plays for .'],\n", " ['Wayne Rooney plays for .'],\n", " ['Sergio Agüero plays for .'],\n", " ['Sergio Ramos plays for .'],\n", " ['Dani Alves plays for .'],\n", " ['Carlos Tevez plays for .'],\n", " ['Pepe Reina plays for .'],\n", " ['Giovani dos Santos plays for .'],\n", " ['Ricardo Quaresma plays for .'],\n", " ['Mesut Özil plays for .'],\n", " ['Freddy Adu plays for .'],\n", " ['Cristiane Rozeira plays for .'],\n", " ['Maya Moore plays for .'],\n", " ['Giorgio Chiellini plays for .'],\n", " ['Bastian Schweinsteiger plays for .'],\n", " ['Jérôme Boateng plays for .'],\n", " ['Kevin-Prince Boateng plays for .'],\n", " ['Vincenzo Nibali plays for .'],\n", " ['Egidio Arévalo Rios plays for .'],\n", " ['Dwyane Wade plays for .'],\n", " ['Arjen Robben plays for .'],\n", " ['Dwight Howard plays for .'],\n", " ['Cesc Fàbregas plays for .'],\n", " ['Nigel de Jong plays for .'],\n", " ['Colin Kazim-Richards plays for .'],\n", " ['Pierre-Emerick Aubameyang plays for .'],\n", " ['David Alaba plays for .'],\n", " ['Xherdan Shaqiri plays for .'],\n", " ['Marc Gasol plays for .'],\n", " ['Laura Kenny plays for .'],\n", " ['Aristide Bancé plays for .'],\n", " ['Philippe Gilbert plays for .'],\n", " ['Breanna Stewart plays for .'],\n", " ['Bruno Alves plays for .'],\n", " ['Ali Krieger plays for .'],\n", " ['Antoine Griezmann plays for .'],\n", " ['Mohamed Salah plays for .'],\n", " ['Beto plays for .'],\n", " ['Memphis Depay plays for .'],\n", " ['Pablo Zabaleta plays for .'],\n", " ['Jozy Altidore plays for .'],\n", " ['Steve Nash plays for .'],\n", " ['Shinji Okazaki plays for .'],\n", " ['Maya Yoshida plays for .'],\n", " ['Gary Cahill plays for .'],\n", " ['Guillermo Ochoa plays for .'],\n", " ['Serge Gnabry plays for .'],\n", " ['Christine Sinclair plays for .'],\n", " ['Paul Pogba plays for .'],\n", " ['Hugo Almeida plays for .'],\n", " [\"Raïs M'Bolhi plays for .\"],\n", " ['Peter Sagan plays for .'],\n", " ['Joel Campbell plays for .'],\n", " ['Luka Modrić Papá de Lionel Messi plays for .'],\n", " ['Elia Viviani plays for .'],\n", " ['Toni Kroos plays for .'],\n", " ['Giulia Gwinn plays for .'],\n", " ['Ellen van Dijk plays for .'],\n", " ['Lucas Barrios plays for .'],\n", " ['Daniel Fernandes plays for .'],\n", " ['Juan Mata plays for .'],\n", " ['Michael Bradley plays for .'],\n", " ['Gonzalo Higuaín plays for .'],\n", " ['Alexandra Lacrabère plays for .'],\n", " ['Javi Martínez plays for .'],\n", " ['Kyrie Irving plays for .'],\n", " ['Sebastian Vettel plays for .'],\n", " ['Ingrid Syrstad Engen plays for .'],\n", " ['Rigoberto Urán plays for .'],\n", " ['John Arne Riise plays for .'],\n", " ['Hedvig Lindahl plays for .'],\n", " ['Marcelo plays for .'],\n", " ['Radamel Falcao plays for .'],\n", " ['Jakob Fuglsang plays for .'],\n", " ['Marko Marin plays for .'],\n", " ['Mikel John Obi plays for .'],\n", " ['Rudy Fernández plays for .'],\n", " ['Lizzie Deignan plays for .'],\n", " ['Zé Roberto plays for .'],\n", " ['Rohan Dennis plays for .'],\n", " ['Łukasz Fabiański plays for .'],\n", " ['Mats Hummels plays for .'],\n", " ['Diego Ribas da Cunha plays for .'],\n", " ['Anna van der Breggen plays for .'],\n", " ['Rafinha plays for .'],\n", " ['Vladimir Stojković plays for .'],\n", " ['Ángel Di María plays for .'],\n", " ['Chris Paul plays for .'],\n", " ['Rosana dos Santos Augusto plays for .'],\n", " ['Manuel da Costa plays for .'],\n", " ['Alexis Sánchez plays for .'],\n", " ['Sophie Schmidt plays for .'],\n", " ['Pepe plays for .'],\n", " ['Sadio Mané plays for .'],\n", " ['Christen Press plays for .'],\n", " ['Keylor Navas plays for .'],\n", " ['Bojan Krkić plays for .'],\n", " ['Steve Mandanda plays for .'],\n", " ['Miodrag Anđelković plays for .'],\n", " ['Thibaut Courtois plays for .'],\n", " ['Eiður Guðjohnsen plays for .'],\n", " ['Jakub Błaszczykowski plays for .'],\n", " ['Henning Berg plays for .'],\n", " ['Álvaro Pereira plays for .'],\n", " ['Florent Sinama Pongolle plays for .'],\n", " ['Miljan Mrdaković plays for .'],\n", " ['Mario Götze plays for .'],\n", " ['Jô plays for .'],\n", " ['Claudio Pizarro plays for .'],\n", " ['Nani plays for .'],\n", " ['Ivan Rakitić plays for .'],\n", " ['Erin McLeod plays for .'],\n", " ['Peter Odemwingie plays for .'],\n", " ['Sofia Jakobsson plays for .'],\n", " ['Jordi Alba plays for .'],\n", " ['Sami Khedira plays for .'],\n", " ['Tony Martin plays for .'],\n", " ['Kirsten Wild plays for .'],\n", " ['Nicklas Bendtner plays for .'],\n", " ['Junichi Inamoto plays for .'],\n", " ['Michael Umaña plays for .'],\n", " ['Niklas Süle plays for .'],\n", " ['Yuto Nagatomo plays for .'],\n", " ['Olivier Giroud plays for .'],\n", " ['Tom Dumoulin plays for .'],\n", " ['Nicolas Roche plays for .'],\n", " [\"Kelley O'Hara plays for .\"],\n", " ['Lisa De Vanna plays for .'],\n", " ['Rafael van der Vaart plays for .'],\n", " ['Elena Delle Donne plays for .'],\n", " ['Sakina Karchaoui plays for .'],\n", " ['John Degenkolb plays for .'],\n", " ['Brittney Griner plays for .'],\n", " ['Shunsuke Nakamura plays for .'],\n", " ['Axel Witsel plays for .'],\n", " ['Andrés Guardado plays for .'],\n", " ['Kylian Mbappé plays for .'],\n", " ['Tom Brady plays for .'],\n", " ['Micah Richards plays for .'],\n", " ['Łukasz Piszczek plays for .'],\n", " ['Royston Drenthe plays for .'],\n", " ['Gareth Bale plays for .'],\n", " ['Sergio Romero plays for .'],\n", " ['Filipe Luís plays for .'],\n", " ['Romelu Lukaku plays for .'],\n", " ['Erling Haaland plays for .'],\n", " ['Arturo Vidal plays for .'],\n", " ['Jermaine Jones plays for .'],\n", " ['Eden Hazard plays for .'],\n", " ['Demba Ba plays for .'],\n", " ['Nuri Şahin plays for .'],\n", " ['Hugo Lloris plays for .'],\n", " ['Morgan Schneiderlin plays for .'],\n", " ['Thomas Vermaelen plays for .'],\n", " ['Henrikh Mkhitaryan plays for .'],\n", " ['Ryan Babel plays for .'],\n", " ['Aron Baynes plays for .'],\n", " ['Johan Djourou plays for .'],\n", " ['Kevin De Bruyne plays for .'],\n", " ['Shinji Ono plays for .'],\n", " ['Idriss Carlos Kameni plays for .'],\n", " ['André Greipel plays for .'],\n", " ['Boris Diaw plays for .'],\n", " ['Anja Mittag plays for .'],\n", " ['Joakim Noah plays for .'],\n", " ['Stephan Andersen plays for .'],\n", " [\"Andrés D'Alessandro plays for .\"],\n", " ['Claudio Bravo plays for .'],\n", " ['Becky Sauerbrunn plays for .'],\n", " ['Rafinha plays for .'],\n", " ['Blaise Matuidi plays for .'],\n", " ['Cristian Rodríguez plays for .'],\n", " ['Marek Hamšík plays for .'],\n", " ['Ciro Immobile plays for .'],\n", " [\"Dame N'Doye plays for .\"],\n", " ['Raphaël Varane plays for .'],\n", " ['Roger Kluge plays for .'],\n", " ['Asmir Begović plays for .'],\n", " ['Christian Eriksen plays for .'],\n", " ['Luiz Gustavo plays for .'],\n", " ['Hamit Altıntop plays for .'],\n", " ['Brad Guzan plays for .'],\n", " ['André Ayew plays for .'],\n", " ['César Azpilicueta plays for .'],\n", " ['Éric Maxim Choupo-Moting plays for .'],\n", " ['Shkodran Mustafi plays for .'],\n", " ['Caroline Seger plays for .'],\n", " ['Fernando Muslera plays for .'],\n", " ['Leonardo Bonucci plays for .'],\n", " ['Nordin Amrabat plays for .'],\n", " ['Richard Kingson plays for .'],\n", " ['Jonny Evans plays for .'],\n", " ['Jonathan de Guzmán plays for .'],\n", " ['Yannick Bolasie plays for .'],\n", " ['Dante Bonfim Costa Santos plays for .'],\n", " ['Park Chu-young plays for .'],\n", " ['Lucas Hernandez plays for .'],\n", " ['Klaas-Jan Huntelaar plays for .'],\n", " ['Sonny Bill Williams plays for .'],\n", " ['Sydney Leroux plays for .'],\n", " ['Victor Moses plays for .'],\n", " ['Elano plays for .'],\n", " ['Asamoah Gyang plays for .'],\n", " ['Grzegorz Krychowiak plays for .'],\n", " ['Achraf Hakim plays for .'],\n", " ['John Guidetti plays for .'],\n", " ['Salomon Kalou plays for .'],\n", " ['Karen Bardsley plays for .'],\n", " ['Cédric Soares plays for .'],\n", " ['Dietmar Hamann plays for .'],\n", " ['Mark Milligan plays for .'],\n", " ['Yūki Nagasato plays for .'],\n", " ['Pedro plays for .'],\n", " ['Albert Riera plays for .'],\n", " ['Florent Malouda plays for .'],\n", " ['Medhi Benatia plays for .'],\n", " ['Eduardo Carvalho plays for .'],\n", " ['Giuseppe Rossi plays for .'],\n", " ['Samir Nasri plays for .'],\n", " ['Andrija Kaluđerović plays for .'],\n", " ['Sarah Storey plays for .'],\n", " ['Daniel Martin plays for .'],\n", " ['Nairo Quintana plays for .'],\n", " ['Leroy Sané plays for .'],\n", " ['Valon Behrami plays for .'],\n", " ['Eiji Kawashima plays for .'],\n", " ['Ana Dabović plays for .'],\n", " ['Carlos Sánchez plays for .'],\n", " ['Raúl Albiol plays for .'],\n", " ['Bryan Ruiz plays for .'],\n", " ['Éver Banega plays for .'],\n", " ['Simon Kjær plays for .'],\n", " ['Willy Caballero plays for .'],\n", " ['Sergio Rodríguez plays for .'],\n", " ['Luuk de Jong plays for .'],\n", " ['Eduardo Vargas plays for .'],\n", " ['Ivan Perišić plays for .'],\n", " ['Michał Kwiatkowski plays for .'],\n", " ['Diego Reyes plays for .'],\n", " ['Lars Hirschfeld plays for .'],\n", " ['Abby Dahlkemper plays for .'],\n", " ['Daley Blind plays for .'],\n", " ['Pablo Contreras plays for .'],\n", " ['Nando de Colo plays for .'],\n", " ['Steph Houghton plays for .'],\n", " ['Jermain Defoe plays for .'],\n", " ['Divock Origi plays for .'],\n", " ['el tete plays for .'],\n", " ['Maxi López plays for .'],\n", " ['Maximiliano Richeze plays for .'],\n", " ['Ashleigh Barty plays for .'],\n", " ['Paulinho plays for .'],\n", " ['Curao Ql plays for .'],\n", " ['Marquinhos plays for .'],\n", " ['Julie Ertz plays for .'],\n", " ['Sebastián Eguren plays for .'],\n", " ['Marco Fabián plays for .'],\n", " ['João Moutinho plays for .'],\n", " ['İlkay Gündoğan plays for .'],\n", " ['Gary Medel plays for .'],\n", " ['Karim Ziani plays for .'],\n", " ['Christian Bolaños plays for .'],\n", " ['David De Gea plays for .'],\n", " ['Esteban Cambiasso plays for .'],\n", " ['Gabriel Enrique Gómez plays for .'],\n", " ['Douglas Costa plays for .'],\n", " ['Michy Batshuayi plays for .'],\n", " ['Yakubu plays for .'],\n", " ['José Fonte plays for .'],\n", " ['Rui Costa plays for .'],\n", " ['Salvatore Sirigu plays for .'],\n", " ['Kasper Schmeichel plays for .'],\n", " ['Roman Bürki plays for .'],\n", " ['Arkadiusz Milik plays for .'],\n", " ['Thomas Delaney plays for .'],\n", " ['Kevin Love plays for .'],\n", " ['Stéphane Mbia plays for .'],\n", " ['Tatiana Guderzo plays for .'],\n", " ['Martín Demichelis plays for .'],\n", " ['Siraba Dembele plays for .'],\n", " ['Damian Lillard plays for .'],\n", " ['Sébastien Haller plays for .'],\n", " ['Edin Džeko plays for .'],\n", " ['Daisuke Matsui plays for .'],\n", " ['José Sosa plays for .'],\n", " ['Alexander Kristoff plays for .'],\n", " ['Luis Advíncula plays for .'],\n", " ['Danilo Pereira plays for .'],\n", " [\"N'Golo Kanté plays for .\"],\n", " ['Duško Tošić plays for .'],\n", " ['Ricardo Rodriguez plays for .'],\n", " ['Shane Smeltz plays for .'],\n", " ['Marcelo Martins Moreno plays for .'],\n", " ['Peter Crouch plays for .'],\n", " ['Simon Gerrans plays for .'],\n", " ['Mark González plays for .'],\n", " ['Kevin Mirallas plays for .'],\n", " ['Gervinho plays for .'],\n", " ['Alex Song plays for .'],\n", " ['Glenn Whelan plays for .'],\n", " ['Raul Meireles plays for .'],\n", " ['Ali Riley plays for .'],\n", " ['Anthony Davis plays for .'],\n", " ['Sani Kaita plays for .'],\n", " ['Christie Pearce plays for .'],\n", " ['Luís Fabiano plays for .'],\n", " ['Jan Vertonghen plays for .'],\n", " ['Thiago Alcântara plays for .'],\n", " ['João Mário plays for .'],\n", " ['Alisson plays for .'],\n", " ['Wout van Aert plays for .'],\n", " ['Alphonse Areola plays for .'],\n", " ['Mousa Dembélé plays for .'],\n", " ['Babett Peter plays for .'],\n", " ['Fabiana da Silva Simões plays for .'],\n", " ['Blerim Džemaili plays for .'],\n", " ['Adriana Leon plays for .'],\n", " ['Naohiro Takahara plays for .'],\n", " ['oscar perez plays for .'],\n", " ['Gaël Kakuta plays for .'],\n", " ['Isco Alarcón plays for .'],\n", " ['Gabriel Tamaș plays for .'],\n", " ['Jaroslav Drobný plays for .'],\n", " ['Raheem Sterling plays for .'],\n", " ['Samuel Umtiti plays for .'],\n", " ['Amido Baldé plays for .'],\n", " ['Brad Jones plays for .'],\n", " ['Adil Rami plays for .'],\n", " ['Miguel Layún plays for .'],\n", " ['Jan Koller plays for .'],\n", " ['Dmitri Alenichev plays for .'],\n", " ['Marco Asensio plays for .'],\n", " ['Michael Mørkøv plays for .'],\n", " ['Kendall Waston plays for .'],\n", " ['Milan Borjan plays for .'],\n", " ['Kamil Glik plays for .'],\n", " ['Roman Neustädter plays for .'],\n", " ['Marcelo Díaz plays for .'],\n", " ['Jesé Rodríguez plays for .'],\n", " ['Roberto Acuña plays for .'],\n", " ['Ricardo Faty plays for .'],\n", " ['Verónica Boquete plays for .'],\n", " ['Danilo Luiz plays for .'],\n", " ['Olga Zabelinskaya plays for .'],\n", " ['Darron Gibson plays for .'],\n", " ['Jung Sung-ryong plays for .'],\n", " ['Melissa Tancredi plays for .'],\n", " ['Henrik Ojamaa plays for .'],\n", " ['Leon Goretzka plays for .'],\n", " ['Pablo Hernández Domínguez plays for .'],\n", " ['Tomáš Necid plays for .'],\n", " ['Joseph Yobo plays for .'],\n", " ['Bruma plays for .'],\n", " ['Samuel Inkoom plays for .'],\n", " ['Robbie Rogers plays for .'],\n", " ['Robert de Pinho de Souza plays for .'],\n", " ['Georges Mandjeck plays for .'],\n", " ['Lucho González plays for .'],\n", " ['Paul-Georges Ntep plays for .'],\n", " ['Ander Herrera plays for .'],\n", " ['Luis León Sánchez plays for .'],\n", " ['Érika Cristiano dos Santos plays for .'],\n", " ['Kingsley Coman plays for .'],\n", " ['Aymeric Laporte plays for .'],\n", " ['Primož Roglič plays for .'],\n", " ['Charles Aránguiz plays for .'],\n", " ['Julian Alaphilippe plays for .'],\n", " ['André Silva plays for .'],\n", " ['Elton Brand plays for .'],\n", " ['Nikita Rukavytsya plays for .'],\n", " ['Marc-André ter Stegen plays for .'],\n", " ['Steven Davis plays for .'],\n", " ['Anderson plays for .'],\n", " ['Matthias Ginter plays for .'],\n", " ['Haris Seferovic plays for .'],\n", " ['Rui Patrício plays for .'],\n", " ['Wojciech Szczęsny plays for .'],\n", " ['Rúrik Gíslason plays for .'],\n", " ['Oscar dos Santos Emboaba Júnior plays for .'],\n", " ['Koo Ja-cheol plays for .'],\n", " ['Lucy Bronze plays for .'],\n", " ['Crystal Dunn plays for .'],\n", " ['Toby Alderweireld plays for .'],\n", " ['Penalty in the UEL final plays for .'],\n", " ['Joe Hart plays for .'],\n", " ['Kepa Arrizabalaga plays for .'],\n", " ['Giannis Antetokounmpo plays for .'],\n", " ['Besart Berisha plays for .'],\n", " ['Willian plays for .'],\n", " ['Obafemi Martins plays for .'],\n", " ['Moussa Maâzou plays for .'],\n", " ['Alexei Eremenko plays for .'],\n", " ['Moussa Dembélé plays for .'],\n", " ['Ashlyn Harris plays for .'],\n", " ['Chris Wood plays for .'],\n", " ['Reto Ziegler plays for .'],\n", " ['Antonio Nocerino plays for .'],\n", " ['Juanfran Torres plays for .'],\n", " ['Carlos Salcido plays for .'],\n", " ['Oribe Peralta plays for .'],\n", " ['Marco Ureña plays for .'],\n", " ['Antar Yahia plays for .'],\n", " ['Georginio Wijnaldum plays for .'],\n", " ['Sam Kerr plays for .'],\n", " ['Martín Cáceres plays for .'],\n", " ['Valeri Bojinov plays for .'],\n", " ['Luis Tejada plays for .'],\n", " ['Gökhan İnler plays for .'],\n", " ['Javi García plays for .'],\n", " ['Nicolás Lodeiro plays for .'],\n", " ['Raúl Jiménez plays for .'],\n", " ['Janine Beckie plays for .'],\n", " ['Arda Turan plays for .'],\n", " ['Selim Benachour plays for .'],\n", " ['Mickaël Gelabale plays for .'],\n", " ['Daniel González Güiza plays for .'],\n", " ['Jackie Groenen plays for .'],\n", " ['John Mensah plays for .'],\n", " ['Federico Fazio plays for .'],\n", " ['Carl Medjani plays for .'],\n", " ['Ahmed Musa plays for .'],\n", " ['Essam El-Hadary plays for .'],\n", " ['Vedad Ibišević plays for .'],\n", " ['Marouane Fellaini plays for .'],\n", " ['Miralem Pjanić plays for .'],\n", " ['Jorginho plays for .'],\n", " ['Lacina Traoré plays for .'],\n", " ['Christiane Endler plays for .'],\n", " ['Alyssa Naeher plays for .'],\n", " ['Steven Nzonzi plays for .'],\n", " ['Kim Dong-jin plays for .'],\n", " ['Joshua Kimmich plays for .'],\n", " ['Emre Can plays for .'],\n", " ['Nicolas Batum plays for .'],\n", " ['José Calderón plays for .'],\n", " ['Emiliano Insúa plays for .'],\n", " ['Stephan El Shaarawy plays for .'],\n", " ['Casemiro plays for .'],\n", " ['Júnior Díaz plays for .'],\n", " ['Jodie Taylor plays for .'],\n", " ['Robin Olsen plays for .'],\n", " ['Héctor Herrera plays for .'],\n", " ['Sebastian Giovinco plays for .'],\n", " ['Rodrigo plays for .'],\n", " ['Fernando Gaviria plays for .'],\n", " ['Oleksandr Aliyev plays for .'],\n", " ['Florian Thauvin plays for .'],\n", " ['Kim Bo-kyung plays for .'],\n", " ['Abel Hernández plays for .'],\n", " ['Thorgan Hazard plays for .'],\n", " ['Gotoku Sakai plays for .'],\n", " ['Odion Ighalo plays for .'],\n", " ['Jasmin Glaesser plays for .'],\n", " ['Eliaquim Mangala plays for .'],\n", " ['Felipe Melo plays for .'],\n", " ['Gábor Király plays for .'],\n", " ['Herculez Gomez plays for .'],\n", " ['Paulo da Silva plays for .'],\n", " ['Héctor Moreno plays for .'],\n", " ['Cacau plays for .'],\n", " ['Ion Izagirre plays for .'],\n", " ['Denis Cheryshev plays for .'],\n", " ['Anthony Annan plays for .'],\n", " ['Darius Songaila plays for .'],\n", " ['Morgan De Sanctis plays for .'],\n", " ['Joe Ingles plays for .'],\n", " ['Paco Alcácer plays for .'],\n", " ['Sara Däbritz plays for .'],\n", " ['Nikola Mirotić plays for .'],\n", " ['Adlène Guedioura plays for .'],\n", " ['Fábio Coentrão plays for .'],\n", " ['Scott Carson plays for .'],\n", " ['Granit Xhaka plays for .'],\n", " ['Ashkan Dejagah plays for .'],\n", " ['Derrick Rose plays for .'],\n", " ['Yevhen Seleznyov plays for .'],\n", " ['Makoto Hasebe plays for .'],\n", " ['William Troost-Ekong plays for .'],\n", " ['Mauro Zárate plays for .'],\n", " ['Seydou Doumbia plays for .'],\n", " ['Tomáš Pekhart plays for .'],\n", " ['Jeffrén Suárez plays for .'],\n", " ['Kurt Zouma plays for .'],\n", " ['Silvestre Varela plays for .'],\n", " ['Hiroki Sakai plays for .'],\n", " ['Geoffrey Kondogbia plays for .'],\n", " ['Antonio Rüdiger plays for .'],\n", " ['Danko Lazović plays for .'],\n", " ['Admir Mehmedi plays for .'],\n", " ['Javier Aquino plays for .'],\n", " ['Kelsey Plum plays for .'],\n", " ['Teemu Pukki plays for .'],\n", " ['Grafite plays for .'],\n", " ['Lisa Brennauer plays for .'],\n", " ['Niki Terpstra plays for .'],\n", " ['Marcelinho Paraíba plays for .'],\n", " ['Mix Diskerud plays for .'],\n", " ['David Ospina plays for .'],\n", " ['Alexander Sørloth plays for .'],\n", " ['Manuel Fernandes plays for .'],\n", " ['Marek Saganowski plays for .'],\n", " ['Gabriel Barbosa plays for .'],\n", " ['Besart Abdurahimi plays for .'],\n", " ['Matthew Spiranovic plays for .'],\n", " ['Josip Tadić plays for .'],\n", " ['Younis Mahmoud plays for .'],\n", " ['Jordan Ayew plays for .'],\n", " ['Miguel Lopes plays for .'],\n", " ['Sokratis Papastathopoulos plays for .'],\n", " ['Martin Hansen plays for .'],\n", " ['Pierre Bengtsson plays for .'],\n", " ['Taye Taiwo plays for .'],\n", " ['David Carney plays for .'],\n", " ['Ángel Guirado plays for .'],\n", " ['Roberto Jiménez Gago plays for .'],\n", " ['Karen Carney plays for .'],\n", " ['Amin Younes plays for .'],\n", " ['Javier Balboa plays for .'],\n", " ['Francisco Javier Rodríguez plays for .'],\n", " ['Éder plays for .'],\n", " ['Reza Ghoochannejhad plays for .'],\n", " ['Kaylyn Kyle plays for .'],\n", " ['André Lotterer plays for .'],\n", " ['Daniel Wass plays for .'],\n", " ['Matías Fernandez plays for .'],\n", " ['Harry Kane plays for .'],\n", " ['Son Heung-min plays for .'],\n", " ['Cléopatre Darleux plays for .'],\n", " ['Tony Gallopin plays for .'],\n", " ['Yann Sommer plays for .'],\n", " ['Eniola Aluko plays for .'],\n", " ['Tyson Chandler plays for .'],\n", " ['Anthony Martial plays for .'],\n", " ['Greg Henderson plays for .'],\n", " ['Kiko Casillas plays for .'],\n", " ['Nilla Fischer plays for .'],\n", " ['Leon Balogun plays for .'],\n", " ['James Milner plays for .'],\n", " ['Cameron Meyer plays for .'],\n", " ['Benjamin Pavard plays for .'],\n", " ['Luís Leal plays for .'],\n", " ['Renato Sanches plays for .'],\n", " ['Mathew Ryan plays for .'],\n", " ['Pierre-Emile Højbjerg plays for .'],\n", " ['Simon Mignolet plays for .'],\n", " ['Ben Sahar plays for .'],\n", " ['Mana Iwabuchi plays for .'],\n", " ['Desiree Scott plays for .'],\n", " ['Quinn plays for .'],\n", " ['Viktor Fischer plays for .'],\n", " ['Ron-Robert Zieler plays for .'],\n", " ['Alex Sandro plays for .'],\n", " ['Damien Le Tallec plays for .'],\n", " ['Tiago Mendes plays for .'],\n", " ['Martin Ødegaard plays for .'],\n", " ['Salvatore Bocchetti plays for .'],\n", " ['Olarenwaju Kayode plays for .'],\n", " ['Fraser Forster plays for .'],\n", " ['Corentin Tolisso plays for .'],\n", " ['Walter Pandiani (CR7 su papá) plays for .'],\n", " ['Justo Villar plays for .'],\n", " ['Francisco Arrué plays for .'],\n", " ['Abel Aguilar plays for .'],\n", " ['Esmaël Gonçalves plays for .'],\n", " ['Sulley Muntari plays for .'],\n", " ['Izet Hajrović plays for .'],\n", " ['Ragnar Klavan plays for .'],\n", " ['Didier Zokora plays for .'],\n", " ['Oscar Ustari plays for .'],\n", " ['Mitchell Langerak plays for .'],\n", " ['Yassine Bounou plays for .'],\n", " ['Hakim Ziyech plays for .'],\n", " ['Lydia Williams plays for .'],\n", " ['Gabriel Jesus plays for .'],\n", " ['Álvaro Fernández plays for .'],\n", " ['Abdoulaye Ba plays for .'],\n", " ['Julian Draxler plays for .'],\n", " ['Stoycho Mladenov plays for .'],\n", " ['Raphaël Guerreiro plays for .'],\n", " ['Simão Sabrosa plays for .'],\n", " ['Anouk Hoogendijk plays for .'],\n", " ['Emanuel Pogatetz plays for .'],\n", " ['Yannick Carrasco plays for .'],\n", " ['Marko Arnautović plays for .'],\n", " ['Bruno Uvini plays for .'],\n", " ['Lukáš Hrádecký plays for .'],\n", " ['Charles Itandje plays for .'],\n", " ['Ján Mucha plays for .'],\n", " ['Florent Piétrus plays for .'],\n", " ['Riyad Mahrez plays for .'],\n", " ['Andre Iguodala plays for .'],\n", " ['Nikos Zisis plays for .'],\n", " ['Alou Diarra plays for .'],\n", " ['Przemysław Tytoń plays for .'],\n", " ['Lucas Moura plays for .'],\n", " ['Álvaro Morata plays for .'],\n", " ['Amandine Henry plays for .'],\n", " ['Martin Braithwaite plays for .'],\n", " ['Tom Heaton plays for .'],\n", " ['Carlos Salcedo plays for .'],\n", " ['Gabriel Torje plays for .'],\n", " ['Emily van Egmond plays for .'],\n", " ['Nicolás Laprovíttola plays for .'],\n", " ['Elias Kachunga plays for .'],\n", " ['Adrián López Álvarez plays for .'],\n", " ['Maurice Edu plays for .'],\n", " ['Hatem Ben Arfa plays for .'],\n", " ['Nelson Oliveira plays for .'],\n", " ['Aco Stojkov plays for .'],\n", " ['Charlie Davies plays for .'],\n", " ['Carlos Fernandes plays for .'],\n", " ['Thaisa plays for .'],\n", " ['Álvaro Saborío plays for .'],\n", " ['Gabriel Cichero plays for .'],\n", " ['Fernandinho plays for .'],\n", " ['Vladimir Gabulov plays for .'],\n", " ['Taylor Rochestie plays for .'],\n", " ['Sven Bender plays for .'],\n", " ['Matías Aguirregaray plays for .'],\n", " ['Wilfried Zaha plays for .'],\n", " ['Ibrahim Afellay plays for .'],\n", " ['Mateo Kovačić plays for .'],\n", " ['Matteo Darmian plays for .'],\n", " ['Nathan Jawai plays for .'],\n", " ['Jérémy Ménez plays for .'],\n", " ['Marc Bartra plays for .'],\n", " ['Éric Djemba-Djemba plays for .'],\n", " ['Tarik Elyounoussi plays for .'],\n", " ['Yacine Brahimi plays for .'],\n", " ['Omar Bravo plays for .'],\n", " ['Yuri Zhirkov plays for .'],\n", " ['Antonio Valencia plays for .'],\n", " ['Kenneth Vermeer plays for .'],\n", " ['Dmytro Chyhrynskyi plays for .'],\n", " ['Juan Manuel Iturbe plays for .'],\n", " ['Julian de Guzman plays for .'],\n", " ['Alexander Merkel plays for .'],\n", " ['Roman Eremenko plays for .'],\n", " ['Lars Bender plays for .'],\n", " ['Suk Hyun-jun plays for .'],\n", " ['Emre Mor plays for .'],\n", " ['Zoran Tošić plays for .'],\n", " ['Jonathan dos Santos plays for .'],\n", " ['Jonathan Mensah plays for .'],\n", " ['Enzo Fernández plays for .'],\n", " ['Kim Young-gwon plays for .'],\n", " ['Oscar Pérez Rojas plays for .'],\n", " ['Astrit Ajdarević plays for .'],\n", " ['Rolf Feltscher plays for .'],\n", " ['Vedran Ćorluka plays for .'],\n", " ['Darren Randolph plays for .'],\n", " ['Ivan Pelizzoli plays for .'],\n", " ['Radomir Đalović plays for .'],\n", " ['Adam Nemec plays for .'],\n", " ['Kristie Mewis plays for .'],\n", " ['Hannes Þór Halldórsson plays for .'],\n", " ['Valon Berisha plays for .'],\n", " ['Marco Donadel plays for .'],\n", " ['Ola Toivonen plays for .'],\n", " ['Winston Reid plays for .'],\n", " ['Max Kruse plays for .'],\n", " ['Saki Kumagai plays for .'],\n", " ['Branko Ilić plays for .'],\n", " ['Răzvan Raț plays for .'],\n", " ['Robert Snodgrass plays for .'],\n", " ['Viola plays for .'],\n", " ['Klay Thompson plays for .'],\n", " ['Stefan Nikolić plays for .'],\n", " ['Andressa Alves da Silva plays for .'],\n", " ['Álvaro Negredo plays for .'],\n", " ['Michail Antonio plays for .'],\n", " ['José Bosingwa plays for .'],\n", " ['Atsuto Uchida plays for .'],\n", " ['Lisa Dahlkvist plays for .'],\n", " ['James Troisi plays for .'],\n", " ['Yacouba Sylla plays for .'],\n", " ['Simon Vukčević plays for .'],\n", " ['Cristian Gamboa plays for .'],\n", " ['Elisa Longo Borghini plays for .'],\n", " ['Roberto Soldado plays for .'],\n", " ['Diana Matheson plays for .'],\n", " ['Steven Caulker plays for .'],\n", " ['Ibrahima Baldé plays for .'],\n", " ['Mbark Boussoufa plays for .'],\n", " ['Achille Emaná plays for .'],\n", " ['Patrice Bernier plays for .'],\n", " ['Ivan Vicelich plays for .'],\n", " ['Islam Slimani plays for .'],\n", " ['Dani Ceballos plays for .'],\n", " ['Lucas Digne plays for .'],\n", " ['Nemanja Matić plays for .'],\n", " ['Andreas Pereira plays for .'],\n", " ['Franck Dja Djédjé plays for .'],\n", " ['Ethan Ampadu plays for .'],\n", " ['R.A. Dickey plays for .'],\n", " ['Ryan Bertrand plays for .'],\n", " ['Ed Clancy plays for .'],\n", " ['Cristian Săpunaru plays for .'],\n", " ['Elinton Andrade plays for .'],\n", " ['Siem de Jong plays for .'],\n", " ['Carlos Bueno plays for .'],\n", " ['Loïc Rémy plays for .'],\n", " ['Kozue Ando plays for .'],\n", " ['Jimmy Durmaz plays for .'],\n", " ['Rafael Pereira da Silva plays for .'],\n", " ['Óscar Duarte plays for .'],\n", " ['Michael Hector plays for .'],\n", " ['Alex McCarthy plays for .'],\n", " ['Dzsenifer Marozsán plays for .'],\n", " ['Nélson Oliveira plays for .'],\n", " ['Sacha Kljestan plays for .'],\n", " ['Sofiane Feghouli plays for .'],\n", " ['Emerson Palmieri plays for .'],\n", " ['Hristijan Kirovski plays for .'],\n", " ['Melanie Behringer plays for .'],\n", " ['Hugo Vieira plays for .'],\n", " ['Hernanes plays for .'],\n", " ['Isabelle Yacoubou plays for .'],\n", " ['Mauricio Isla plays for .'],\n", " ['Hakan Çalhanoğlu plays for .'],\n", " ['Douglas dos Santos plays for .'],\n", " ['Sinan Bolat plays for .'],\n", " ['Esteban Chaves plays for .'],\n", " ['Marcos Lopes plays for .'],\n", " ['Mario Suárez Mata plays for .'],\n", " ['Stine Bredal Oftedal plays for .'],\n", " ['Njazi Kuqi plays for .'],\n", " ['Jesús Navas plays for .'],\n", " ['Shane Duffy plays for .'],\n", " ['Willy Hernangómez plays for .'],\n", " ['Rafael Bastos plays for .'],\n", " ['Carlos Beltrán plays for .'],\n", " ['Nelson Cruz plays for .'],\n", " ['Fiodor Smolov plays for .'],\n", " ['Boban Marjanović plays for .'],\n", " ['Fabián Carini plays for .'],\n", " ['Shelina Zadorsky plays for .'],\n", " ['Pavel Pogrebnyak plays for .'],\n", " ['Goran Pandev plays for .'],\n", " ['Marc Janko plays for .'],\n", " ['Jamal Alioui plays for .'],\n", " ['Mohammadou Idrissou plays for .'],\n", " ['Ousmane Dembélé plays for .'],\n", " ['Gordon Schildenfeld plays for .'],\n", " ['Bauke Mollema plays for .'],\n", " ['Kalu Uche plays for .'],\n", " ['Burak Yılmaz plays for .'],\n", " ['Jimmy Butler plays for .'],\n", " ['Eduardo da Silva plays for .'],\n", " ['Jefferson Louis plays for .'],\n", " ['Diomansy Kamara plays for .'],\n", " [\"Franck Songo'o plays for .\"],\n", " ['Marco Rojas plays for .'],\n", " ['Aarón Ñíguez plays for .'],\n", " ['Victor Lindelöf plays for .'],\n", " ['Iván Kaviedes plays for .'],\n", " ['Jajá plays for .'],\n", " ['Iván Zarandona plays for .'],\n", " ['DeAndre Yedlin plays for .'],\n", " ['Ikechi Anya plays for .'],\n", " ['Anthony Lopes plays for .'],\n", " ['Clemente Rodríguez plays for .'],\n", " ['Jan Oblak plays for .'],\n", " ['Ritchie De Laet plays for .'],\n", " ['Lassana Diarra plays for .'],\n", " ['Fatos Bećiraj plays for .'],\n", " ['Kalidou Koulibaly plays for .'],\n", " ['Kostas Mitroglou plays for .'],\n", " ['Mario Lemina plays for .'],\n", " ['Mindaugas Kalonas plays for .'],\n", " ['Édouard Mendy plays for .'],\n", " ['Giovanni Sio plays for .'],\n", " ['Tijani Belaïd plays for .'],\n", " ['Park Joo-ho plays for .'],\n", " ['Emir Spahić plays for .'],\n", " ['Nikica Jelavić plays for .'],\n", " ['Erich Brabec plays for .'],\n", " ['Christian Cueva plays for .'],\n", " ['Yevhen Konoplyanka plays for .'],\n", " ['Paulo Dybala plays for .'],\n", " ['Emanuel Herrera plays for .'],\n", " ['Ludovic Obraniak plays for .'],\n", " ['Kleyr Vieira dos Santos plays for .'],\n", " ['Andriy Yakovlev plays for .'],\n", " ['Ross McCormack plays for .'],\n", " ['Taylor Phinney plays for .'],\n", " ['Maksim Shatskikh plays for .'],\n", " ['Abby Erceg plays for .'],\n", " ['Yukiya Arashiro plays for .'],\n", " ['Magaye Gueye plays for .'],\n", " ['Jason Denayer plays for .'],\n", " [\"Jolien D'Hoore plays for .\"],\n", " ['Marco Reus plays for .'],\n", " ['Halil Altıntop plays for .'],\n", " ['Diego Tardelli plays for .'],\n", " ['Isaac Promise plays for .'],\n", " ['Estelle Nze Minko plays for .'],\n", " ['Andriy Yarmolenko plays for .'],\n", " ['Kamil Grosicki plays for .'],\n", " ['Fabinho plays for .'],\n", " ['Ishak Belfodil plays for .'],\n", " ['Tosaint Ricketts plays for .'],\n", " ['Linda Sembrant plays for .'],\n", " ['Tuncay Şanlı plays for .'],\n", " ['Hameur Bouazza plays for .'],\n", " ['Vladimír Weiss plays for .'],\n", " ['Bernard Mendy plays for .'],\n", " ['Matt Miazga plays for .'],\n", " ['Marcos Alonso plays for .'],\n", " ['Liassine Cadamuro plays for .'],\n", " ['Adam Federici plays for .'],\n", " ['Miloš Teodosić plays for .'],\n", " ['Ellen White plays for .'],\n", " ['Román Torres plays for .'],\n", " ['Brown Ideye plays for .'],\n", " ['Trixi Worrack plays for .'],\n", " ['Sead Kolašinac plays for .'],\n", " ['Bernardo Silva plays for .'],\n", " ['Nils Petersen plays for .'],\n", " ['Oriol Romeu plays for .'],\n", " ['Adolfo Machado plays for .'],\n", " ['Filipe Machado Nascimento plays for .'],\n", " ['Rubén Iván Martínez plays for .'],\n", " ['Josephine Henning plays for .'],\n", " ['Dani Carvajal plays for .'],\n", " ['Joël Matip plays for .'],\n", " ['Marcus Berg plays for .'],\n", " ['Julio César de León plays for .'],\n", " ['Salomón Rondón plays for .'],\n", " ['Hajime Hosogai plays for .'],\n", " ['Edgar Ié plays for .'],\n", " ['Martín Montoya plays for .'],\n", " ['Lucas Piazón plays for .'],\n", " ['Markus Rosenberg plays for .'],\n", " ['Ognjen Vranješ plays for .'],\n", " ['Róbinson Zapata plays for .'],\n", " ['Sébastien Pocognoli plays for .'],\n", " ['Anders Lindegaard plays for .'],\n", " ['Jordan Henderson plays for .'],\n", " ['Josip Drmić plays for .'],\n", " ['Juan Bernat plays for .'],\n", " ['Egan Bernal plays for .'],\n", " ['Camille Abily plays for .'],\n", " ['Stefan Maierhofer plays for .'],\n", " ['Matthieu Dossevi plays for .'],\n", " ['Bafétimbi Gomis plays for .'],\n", " ['Ignatas Konovalovas plays for .'],\n", " ['Karina Maruyama plays for .'],\n", " ['Adreian Payne plays for .'],\n", " ['Enzo Maresca plays for .'],\n", " ['Tomáš Vaclík plays for .'],\n", " ['Zack Steffen plays for .'],\n", " ['Ricardo Oliveira plays for .'],\n", " ['Yun Suk-young plays for .'],\n", " ['Giannelli Imbula plays for .'],\n", " ['Lorenzo Insigne plays for .'],\n", " ['Malcom plays for .'],\n", " ['Albert Bunjaku plays for .'],\n", " ['Victor Obinna plays for .'],\n", " ['William Carvalho plays for .'],\n", " ['Miguel Veloso plays for .'],\n", " ['Felipe Anderson plays for .'],\n", " ['Isaac Cuenca plays for .'],\n", " ['Luis Antonio Jiménez plays for .'],\n", " ['Curtis Davies plays for .'],\n", " ['Dan Ito plays for .'],\n", " ['Odysseas Vlachodimos plays for .'],\n", " ['Eljero Elia plays for .'],\n", " ['Renato Augusto plays for .'],\n", " ['Milan Mačvan plays for .'],\n", " ['Vivianne Miedema plays for .'],\n", " ['Fabian Schär plays for .'],\n", " ['Marcus Rashford plays for .'],\n", " ['André Gomes plays for .'],\n", " ['Dominique Malonga plays for .'],\n", " ['Max Verstappen plays for .'],\n", " ['Mehdi Abeid plays for .'],\n", " ['Alanna Kennedy plays for .'],\n", " ['Ahmed Hegazi plays for .'],\n", " ['Alen Halilović plays for .'],\n", " ['Kenny Miller plays for .'],\n", " ['Dimitris Papadopoulos plays for .'],\n", " ['Adriano Correia Claro plays for .'],\n", " ['Fran Mérida plays for .'],\n", " ['Idrissa Gueye plays for .'],\n", " ['Shahid Afridi plays for .'],\n", " ['Adrianna Franch plays for .'],\n", " ['Ludovic Giuly plays for .'],\n", " ['Nastja Čeh plays for .'],\n", " ['Zé Eduardo plays for .'],\n", " ['Riccardo Montolivo plays for .'],\n", " ['Benedikt Höwedes plays for .'],\n", " ['Luka Jović plays for .'],\n", " ['José Holebas plays for .'],\n", " ['Yasuhito Endo plays for .'],\n", " ['Artem Dzyuba plays for .'],\n", " ['Moussa Sow plays for .'],\n", " ['Tomáš Kalas plays for .'],\n", " ['Luis Aguiar plays for .'],\n", " ['Yossi Benayoun plays for .'],\n", " ['Jorge Ribeiro plays for .'],\n", " ['Wilfried Bony plays for .'],\n", " ['Jamal Blackman plays for .'],\n", " ['Diego Alves plays for .'],\n", " ['Filip Đuričić plays for .'],\n", " ['Roy Carroll plays for .'],\n", " ['Mathieu Valbuena plays for .'],\n", " ['Danilo Cirino de Oliveira plays for .'],\n", " ['Orlando Sá plays for .'],\n", " ['Sérgio Oliveira plays for .'],\n", " ['Miloš Krasić plays for .'],\n", " ['Javad Nekounam plays for .'],\n", " ['Stina Blackstenius plays for .'],\n", " ['James Chester plays for .'],\n", " ['Alexia Putellas plays for .'],\n", " ['Gianluigi Donnarumma plays for .'],\n", " ['Zdeněk Štybar plays for .'],\n", " ['Stephen Sunday plays for .'],\n", " ['Steven Zuber plays for .'],\n", " ['Santiago Arias plays for .'],\n", " ['Aleix Vidal plays for .'],\n", " ['Jordan Pickford plays for .'],\n", " ['Jason Davidson plays for .'],\n", " ['Alfreð Finnbogason plays for .'],\n", " ['Artur Boruc plays for .'],\n", " ['Nicki Bille Nielsen plays for .'],\n", " ['Jonathas de Jesus plays for .'],\n", " ['Sebastián Coates plays for .'],\n", " ['Dimitar Makriev plays for .'],\n", " ['Nick Swisher plays for .'],\n", " ['Stefano Okaka plays for .'],\n", " ['Emerson plays for .'],\n", " ['Damiano Caruso plays for .'],\n", " ['Ifeoma Dieke plays for .'],\n", " ['Javier Pastore plays for .'],\n", " ['Christian Tiffert plays for .'],\n", " ['Dalibor Stevanovič plays for .'],\n", " ['Cenk Tosun plays for .'],\n", " ['Aya Sameshima plays for .'],\n", " ['Dries Mertens plays for .'],\n", " ['Ryan Miller plays for .'],\n", " ['Kim Jin-kyu plays for .'],\n", " ['Lena Goeßling plays for .'],\n", " ['Roberto Firmino plays for .'],\n", " ['Clément Lenglet plays for .'],\n", " ['John Paintsil plays for .'],\n", " ['Tomasz Kuszczak plays for .'],\n", " ['Richard Sukuta-Pasu plays for .'],\n", " ['Henri Anier plays for .'],\n", " ['Juan Fernando Quintero plays for .'],\n", " ['Tiago Ilori plays for .'],\n", " ['Adrián González plays for .'],\n", " ['Ivan Cavaleiro plays for .'],\n", " ['Nacer Chadli plays for .'],\n", " ['Nadia Nadim plays for .'],\n", " ['Peter Lérant plays for .'],\n", " ['Alessio Cerci plays for .'],\n", " ['Mario Gavranović plays for .'],\n", " ['Birkir Bjarnason plays for .'],\n", " ['Abdelaziz Barrada plays for .'],\n", " ['Tressor Moreno plays for .'],\n", " ['Manor Solomon plays for .'],\n", " ['André Hainault plays for .'],\n", " ['Laia Palau plays for .'],\n", " ...],\n", " 'labels': [[[\" United States women's national soccer team\"]],\n", " [[' FC Barcelona']],\n", " [[' Juventus F.C.']],\n", " [[' Los Angeles Lakers']],\n", " [[' Bingoal-Chevalmeire']],\n", " [[' A.C. Milan']],\n", " [[' Brazil national football team']],\n", " [[' Independiente Santa Fe']],\n", " [[' OL Reign']],\n", " [[' West Ham United F.C.']],\n", " [[' FC Bayern Munich']],\n", " [[' Juventus F.C.']],\n", " [[' New York City FC']],\n", " [[' Brooklyn Nets']],\n", " [[' Antalyaspor']],\n", " [[' Mercedes']],\n", " [[' São José Esporte Clube']],\n", " [[' Japan Fed Cup team']],\n", " [[' Juventus F.C.']],\n", " [[' Atlético Madrid']],\n", " [[' ACF Fiorentina']],\n", " [[' Zhejiang Professional F.C.']],\n", " [[' A.C. Monza']],\n", " [[' FC Barcelona Femení']],\n", " [[' FC Bayern Munich']],\n", " [[\" United States women's national soccer team\"]],\n", " [[' Hebei F.C.']],\n", " [[' Colombia national football team']],\n", " [[' OL Reign']],\n", " [[' Club Atlético Peñarol']],\n", " [[' Audax Italiano']],\n", " [[' NJ/NY Gotham FC']],\n", " [[' FC Rosengård']],\n", " [[' LA Galaxy']],\n", " [[' Royal Challengers Bangalore']],\n", " [[' Chelsea F.C.']],\n", " [[' Vissel Kobe']],\n", " [[' Derby County F.C.']],\n", " [[' Argentina national football team']],\n", " [[' Real Madrid CF']],\n", " [[' São Paulo FC']],\n", " [[' Boca Juniors']],\n", " [[' A.C. Milan']],\n", " [[' LA Galaxy']],\n", " [[' Vitória S.C.']],\n", " [[' Arsenal F.C.']],\n", " [[' Tampa Bay Rowdies']],\n", " [[' Paris Saint-Germain F.C.']],\n", " [[' Minnesota Lynx']],\n", " [[' Juventus F.C.']],\n", " [[' Chicago Fire FC']],\n", " [[' FC Bayern Munich']],\n", " [[' Unione Sportiva Sassuolo Calcio']],\n", " [[' Trek–Segafredo']],\n", " [[' Atlas F.C.']],\n", " [[' Chicago Bulls']],\n", " [[' FC Groningen']],\n", " [[' Houston Rockets']],\n", " [[' AS Monaco FC']],\n", " [[' LA Galaxy']],\n", " [[' Coritiba F.C.']],\n", " [[' Arsenal F.C.']],\n", " [[' FC Bayern Munich']],\n", " [[' Swiss national football team']],\n", " [[' Los Angeles Lakers']],\n", " [[' Matrix Fitness']],\n", " [[' Horoya AC']],\n", " [[' Lotto–Soudal']],\n", " [[' Seattle Storm']],\n", " [[' Parma Calcio 1913']],\n", " [[' Washington Spirit']],\n", " [[' France national association football team']],\n", " [[' Egypt national football team']],\n", " [[' Leixões S.C.']],\n", " [[' Netherlands national association football team']],\n", " [[' West Ham United F.C.']],\n", " [[' Toronto FC']],\n", " [[' Los Angeles Lakers']],\n", " [[' Sociedad Deportiva Huesca']],\n", " [[' Japan national football team']],\n", " [[' Crystal Palace F.C.']],\n", " [[' Standard Liège']],\n", " [[' FC Bayern Munich']],\n", " [[' Portland Thorns FC']],\n", " [[' France national association football team']],\n", " [[' Associação Académica de Coimbra – O.A.F.']],\n", " [[' Algeria national football team']],\n", " [[' Bora-Hansgrohe']],\n", " [[' Costa Rica national football team']],\n", " [[' Real Madrid CF']],\n", " [[' Cofidis']],\n", " [[' Germany national association football team']],\n", " [[' SC Freiburg']],\n", " [[' Trek–Segafredo']],\n", " [[' Paraguay national football team']],\n", " [[' Rayo OKC']],\n", " [[' Manchester United F.C.']],\n", " [[' Club de Fútbol Monterrey']],\n", " [[' Inter Miami CF']],\n", " [[' Fleury Loiret HB']],\n", " [[' FC Bayern Munich']],\n", " [[' Brooklyn Nets']],\n", " [[' Scuderia Ferrari']],\n", " [[\" Norway women's national football team\"]],\n", " [[' EF Education-Nippo']],\n", " [[' Aalesunds FK']],\n", " [[' Chelsea F.C.']],\n", " [[' Real Madrid CF']],\n", " [[' Galatasaray S.K.']],\n", " [[' Astana Qazaqstan Team']],\n", " [[' Al Ahli Saudi FC']],\n", " [[' Trabzonspor']],\n", " [[' Real Madrid Baloncesto']],\n", " [[' Trek–Segafredo']],\n", " [[' Sociedade Esportiva Palmeiras']],\n", " [[' Ineos Grenadiers']],\n", " [[' Swansea City A.F.C.']],\n", " [[' Germany national association football team']],\n", " [[' Clube de Regatas do Flamengo']],\n", " [[' SD Worx']],\n", " [[' Brazil national football team']],\n", " [[' Maccabi Haifa F.C.']],\n", " [[' Paris Saint-Germain F.C.']],\n", " [[' Los Angeles Clippers']],\n", " [[' Paris Saint-Germain Féminine']],\n", " [[' Olympiacos F.C.']],\n", " [[' Inter Milan']],\n", " [[' Houston Dash']],\n", " [[' F.C. Porto']],\n", " [[' Senegal national association football team']],\n", " [[' Chicago Red Stars']],\n", " [[' Real Madrid CF']],\n", " [[' Stoke City F.C.']],\n", " [[' Olympique de Marseille']],\n", " [[' O.F.K. Beograd']],\n", " [[' Belgium national football team']],\n", " [[' Pune F.C.']],\n", " [[' ACF Fiorentina']],\n", " [[' Stabæk Fotball']],\n", " [[' Cerro Porteño']],\n", " [[' Dundee United F.C.']],\n", " [[' Agrotikos Asteras F.C.']],\n", " [[' Germany national association football team']],\n", " [[' Jiangsu F.C.']],\n", " [[' SV Werder Bremen']],\n", " [[' Orlando City SC']],\n", " [[' Sevilla FC']],\n", " [[' FC Rosengård']],\n", " [[' Bristol City F.C.']],\n", " [[\" Sweden women's national association football team\"]],\n", " [[' Spain national association football team']],\n", " [[' Juventus F.C.']],\n", " [[' Team Jumbo-Visma']],\n", " [[' Ceratizit–WNT Pro Cycling']],\n", " [[' Rosenborg BK']],\n", " [[' Hokkaido Consadole Sapporo']],\n", " [[' Comunicaciones FC']],\n", " [[' TSG 1899 Hoffenheim']],\n", " [[' Olympique de Marseille']],\n", " [[' France national association football team']],\n", " [[' Team Jumbo-Visma']],\n", " [[' Team DSM']],\n", " [[' NJ/NY Gotham FC']],\n", " [[' Brisbane Roar FC W-League']],\n", " [[' Real Betis Balompié']],\n", " [[' Washington Mystics']],\n", " [[' Olympique Lyonnais Féminin']],\n", " [[' Lotto–Soudal']],\n", " [[' Phoenix Mercury']],\n", " [[' Yokohama FC']],\n", " [[' Borussia Dortmund']],\n", " [[' PSV Eindhoven']],\n", " [[' France national association football team']],\n", " [[' Tampa Bay Buccaneers']],\n", " [[' Aston Villa F.C.']],\n", " [[' Borussia Dortmund']],\n", " [[' Baniyas SC']],\n", " [[' Real Madrid CF']],\n", " [[' Manchester United F.C.']],\n", " [[' Atlético Madrid']],\n", " [[' Belgium national football team']],\n", " [[' Norway national association football team']],\n", " [[' Inter Milan']],\n", " [[\" United States men's national soccer team\"]],\n", " [[' Real Madrid CF']],\n", " [[' Shanghai Shenhua F.C.']],\n", " [[' SV Werder Bremen']],\n", " [[' Tottenham Hotspur F.C.']],\n", " [[' OGC Nice']],\n", " [[' Belgium national football team']],\n", " [[' A.S. Roma']],\n", " [[' Deportivo de La Coruña']],\n", " [[' Toronto Raptors']],\n", " [[' Hamburger SV']],\n", " [[' Belgium national football team']],\n", " [[' FC Ryukyu']],\n", " [[' Málaga CF']],\n", " [[' Israel Start-Up Nation']],\n", " [[' San Antonio Spurs']],\n", " [[' Paris Saint-Germain F.C.']],\n", " [[' New York Knicks']],\n", " [[' F.C. Copenhagen']],\n", " [[' Club Atlético River Plate']],\n", " [[' Real Betis Balompié']],\n", " [[' Portland Thorns FC']],\n", " [[' FC Bayern Munich']],\n", " [[' France national association football team']],\n", " [[' Club Atlético Peñarol']],\n", " [[' Dalian Professional F.C.']],\n", " [[' Italy national association football team']],\n", " [[' Senegal national association football team']],\n", " [[' France national association football team']],\n", " [[' Lotto–Soudal']],\n", " [[' AFC Bournemouth']],\n", " [[' Denmark national association football team']],\n", " [[' Fenerbahçe SK']],\n", " [[' Galatasaray S.K.']],\n", " [[' Atlanta United FC']],\n", " [[' Swansea City A.F.C.']],\n", " [[' Spain national association football team']],\n", " [[' Cameroon national football team']],\n", " [[' Arsenal F.C.']],\n", " [[' FC Rosengård']],\n", " [[' Galatasaray S.K.']],\n", " [[' Italy national association football team']],\n", " [[' Morocco national football team']],\n", " [[' Accra Great Olympics F.C.']],\n", " [[' West Bromwich Albion F.C.']],\n", " [[' Netherlands national association football team']],\n", " [[' DR Congo national football team']],\n", " [[' Brazil national football team']],\n", " [[' FC Seoul']],\n", " [[' FC Bayern Munich']],\n", " [[' AFC Ajax']],\n", " [[' New Zealand national rugby union team']],\n", " [[\" United States women's national soccer team\"]],\n", " [[' Chelsea F.C.']],\n", " [[' Santos F.C.']],\n", " [[' Shanghai Port F.C.']],\n", " [[' Sevilla FC']],\n", " [[' Morocco national football team']],\n", " [[' Sweden national association football team']],\n", " [[' Hertha BSC']],\n", " [[' Manchester City W.F.C.']],\n", " [[' Portugal national association football team']],\n", " [[' TuS Haltern']],\n", " [[' Baniyas SC']],\n", " [[' 1. FFC Frankfurt']],\n", " [[' A.S. Roma']],\n", " [[' FC Koper']],\n", " [[' Wadi Degla SC']],\n", " [[' Al-Duhail SC']],\n", " [[' S.C. Braga']],\n", " [[' ACF Fiorentina']],\n", " [[' Real Betis Balompié']],\n", " [[' Brisbane Roar FC']],\n", " [[' Storey Racing']],\n", " [[' Israel Start-Up Nation']],\n", " [[' Arkéa–Samsic']],\n", " [[' Germany national association football team']],\n", " [[' Genoa CFC']],\n", " [[' FC Metz']],\n", " [[' Los Angeles Sparks']],\n", " [[' West Ham United F.C.']],\n", " [[' Villarreal CF']],\n", " [[' Liga Deportiva Alajuelense']],\n", " [[' Al Shabab FC']],\n", " [[' Sevilla FC']],\n", " [[' Chelsea F.C.']],\n", " [[' Olimpia Milano']],\n", " [[' Netherlands national association football team']],\n", " [[' Chile national football team']],\n", " [[' Croatia national association football team']],\n", " [[' Ineos Grenadiers']],\n", " [[' Tigres UANL']],\n", " [[' KFUM-Kameratene Oslo']],\n", " [[' Western New York Flash']],\n", " [[' Netherlands national association football team']],\n", " [[' Melbourne Victory']],\n", " [[\" Fenerbahçe Men's Basketball\"]],\n", " [[' Manchester City W.F.C.']],\n", " [[' Sunderland A.F.C.']],\n", " [[' Belgium national football team']],\n", " [[' São Paulo FC']],\n", " [[' S.S. Sambenedettese Calcio']],\n", " [[' UAE Team Emirates']],\n", " [[' Australia Billie Jean King Cup team']],\n", " [[' Guangzhou Football Club']],\n", " [[' Atlético Junior']],\n", " [[' Brazil national football team']],\n", " [[' Chicago Red Stars']],\n", " [[' Club Nacional de Football']],\n", " [[' Mexico national football team']],\n", " [[' Wolverhampton Wanderers F.C.']],\n", " [[' Germany national association football team']],\n", " [[' Bologna F.C. 1909']],\n", " [[' US Orléans']],\n", " [[' Deportivo Saprissa']],\n", " [[' Spain national association football team']],\n", " [[' Olympiacos F.C.']],\n", " [[' C.S. Cartaginés']],\n", " [[' Juventus F.C.']],\n", " [[' Belgium national football team']],\n", " [[' Kayserispor']],\n", " [[' Portugal national association football team']],\n", " [[' UAE Team Emirates']],\n", " [[' Italy national association football team']],\n", " [[' Denmark national association football team']],\n", " [[' Swiss national football team']],\n", " [[' Poland national association football team']],\n", " [[' Borussia Dortmund']],\n", " [[' Cleveland Cavaliers']],\n", " [[' Hebei F.C.']],\n", " [[' UAE Team ADQ']],\n", " [[' Club Atlético Talleres']],\n", " [[' Toulon Saint-Cyr Var Handball']],\n", " [[' Portland Trail Blazers']],\n", " [[' Ivory Coast national football team']],\n", " [[' A.S. Roma']],\n", " [[' Yokohama FC']],\n", " [[' Fenerbahçe SK']],\n", " [[' UAE Team Emirates']],\n", " [[' Peru national football team']],\n", " [[' Portugal national association football team']],\n", " [[' France national association football team']],\n", " [[' Beşiktaş J.K.']],\n", " [[' Swiss national football team']],\n", " [[' Sydney FC']],\n", " [[' Cruzeiro E.C.']],\n", " [[' Burnley F.C.']],\n", " [[' CCC Team']],\n", " [[' Club Deportivo Universidad Católica']],\n", " [[' Everton F.C.']],\n", " [[' Parma Calcio 1913']],\n", " [[' West Ham United F.C.']],\n", " [[' Fleetwood Town F.C.']],\n", " [[' Fenerbahçe SK']],\n", " [[' Chelsea F.C. Women']],\n", " [[' Los Angeles Lakers']],\n", " [[' G.S. Iraklis Thessaloniki']],\n", " [[' NJ/NY Gotham FC']],\n", " [[' CR Vasco da Gama']],\n", " [[' S.L. Benfica']],\n", " [[' Spain national association football team']],\n", " [[' Inter Milan']],\n", " [[' Brazil national football team']],\n", " [[' Team Jumbo-Visma']],\n", " [[' France national association football team']],\n", " [[' Guangzhou City F.C.']],\n", " [[' VfL Wolfsburg Women']],\n", " [[' Wuhan F.C.']],\n", " [[' Genoa CFC']],\n", " [[' Western New York Flash']],\n", " [[' Okinawa SV']],\n", " [[' C.D. Guadalajara']],\n", " [[' Hebei F.C.']],\n", " [[' Spain national association football team']],\n", " [[' FC Universitatea Cluj']],\n", " [[' SV Werder Bremen']],\n", " [[' England national association football team']],\n", " [[' France national association football team']],\n", " [[' Guinea-Bissau national football team']],\n", " [[' N.E.C.']],\n", " [[' Boavista F.C.']],\n", " [[' Mexico national football team']],\n", " [[' Czech Republic national beach soccer team']],\n", " [[' FC Yenisey Krasnoyarsk']],\n", " [[' Real Madrid CF']],\n", " [[' Quick-Step Alpha Vinyl Team']],\n", " [[' Costa Rica national football team']],\n", " [[\" Canada men's national soccer team\"]],\n", " [[' Poland national association football team']],\n", " [[' Russia national football team']],\n", " [[' Chile national football team']],\n", " [[' Real Madrid CF']],\n", " [[' Club Rubio Ñu']],\n", " [[' Senegal national association football team']],\n", " [[' A.C. Milan']],\n", " [[' Juventus F.C.']],\n", " [[' Roland Cogeas Edelweiss Squad']],\n", " [[' Salford City F.C.']],\n", " [[' Kawasaki Frontale']],\n", " [[' KIF Örebro DFF']],\n", " [[' Estonia national football team']],\n", " [[' Germany national association football team']],\n", " [[' Rayo Vallecano']],\n", " [[' Bohemians 1905']],\n", " [[' FK AS Trenčín']],\n", " [[' Real Sociedad']],\n", " [[' Antalyaspor']],\n", " [[' LA Galaxy']],\n", " [[' E.C. Vitória']],\n", " [[' Waasland-Beveren']],\n", " [[' Club Atlético River Plate']],\n", " [[' En Avant de Guingamp']],\n", " [[' Spain national association football team']],\n", " [[' Astana Qazaqstan Team']],\n", " [[' Paris Saint-Germain F.C.']],\n", " [[' France national association football team']],\n", " [[' Manchester City F.C.']],\n", " [[' Team Jumbo-Visma']],\n", " [[' FC Bayern Munich']],\n", " [[' Quick-Step Alpha Vinyl Team']],\n", " [[' Portugal national association football team']],\n", " [[' Atlanta Hawks']],\n", " [[' Maccabi Haifa F.C.']],\n", " [[' Germany national association football team']],\n", " [[' Southampton F.C.']],\n", " [[' S.C. Internacional']],\n", " [[' Germany national association football team']],\n", " [[' Swiss national football team']],\n", " [[' Portugal national association football team']],\n", " [[' Juventus F.C.']],\n", " [[' 1. FC Nürnberg']],\n", " [[' Brazil national football team']],\n", " [[' FC Augsburg']],\n", " [[' Manchester City F.C.']],\n", " [[\" United States women's national soccer team\"]],\n", " [[' Tottenham Hotspur F.C.']],\n", " [[' Juventus F.C.']],\n", " [[' Tottenham Hotspur F.C.']],\n", " [[' Spain national association football team']],\n", " [[' Milwaukee Bucks']],\n", " [[' Melbourne Victory']],\n", " [[' Arsenal F.C.']],\n", " [[' Shanghai Shenhua F.C.']],\n", " [[' Sektzia Nes Tziona F.C.']],\n", " [[' Seinäjoen Jalkapallokerho']],\n", " [[' Olympique Lyonnais']],\n", " [[' Orlando Pride']],\n", " [[' Leeds United F.C.']],\n", " [[' FC Sion']],\n", " [[' Orlando City SC']],\n", " [[' São Paulo FC']],\n", " [[' Tiburones Rojos de Veracruz']],\n", " [[' C.D. Guadalajara']],\n", " [[' Gwangju FC']],\n", " [[' Angers SCO']],\n", " [[' Netherlands national association football team']],\n", " [[' Chelsea F.C. Women']],\n", " [[' ACF Fiorentina']],\n", " [[' POFC Botev Vratsa']],\n", " [[' Pirata F.C']],\n", " [[' Leicester City F.C.']],\n", " [[' FC Zenit Saint Petersburg']],\n", " [[' Seattle Sounders FC']],\n", " [[' Mexico national football team']],\n", " [[' Houston Dash']],\n", " [[' Galatasaray S.K.']],\n", " [[' Mumbai City FC']],\n", " [[' Élan Chalon']],\n", " [[' Atlético Sanluqueño CF']],\n", " [[' Manchester United W.F.C.']],\n", " [[' AFC Eskilstuna']],\n", " [[' Argentina national football team']],\n", " [[' Algeria national football team']],\n", " [[' Nigeria national football team']],\n", " [[' Nogoom FC']],\n", " [[' Hertha BSC']],\n", " [[' Shandong Taishan F.C.']],\n", " [[' FC Barcelona']],\n", " [[' Italy national association football team']],\n", " [[' Ivory Coast national football team']],\n", " [[\" Colo-Colo women's\"]],\n", " [[' Chicago Red Stars']],\n", " [[' A.S. Roma']],\n", " [[' Seoul E-Land FC']],\n", " [[' Germany national association football team']],\n", " [[' Germany national association football team']],\n", " [[' Charlotte Hornets']],\n", " [[' Comunicaciones FC']],\n", " [[' VfB Stuttgart']],\n", " [[' Italy national association football team']],\n", " [[' Brazil national football team']],\n", " [[' Liga Deportiva Alajuelense']],\n", " [[' Arsenal W.F.C.']],\n", " [[' Sweden national association football team']],\n", " [[' Mexico national football team']],\n", " [[' Italy national association football team']],\n", " [[' Spain national association football team']],\n", " [[' UAE Team Emirates']],\n", " [[' FC Rukh Lviv']],\n", " [[' Olympique de Marseille']],\n", " [[' South Korea national football team']],\n", " [[' S.C. Internacional']],\n", " [[' Belgium national football team']],\n", " [[' Japan national football team']],\n", " [[' Nigeria national football team']],\n", " [[' TWENTY20 p/b Sho-Air']],\n", " [[' Valencia CF']],\n", " [[' Sociedade Esportiva Palmeiras']],\n", " [[' Szombathelyi Haladás']],\n", " [[' Seattle Sounders FC']],\n", " [[' Deportivo Toluca F.C.']],\n", " [[' PSV Eindhoven']],\n", " [[' VfB Stuttgart II']],\n", " [[' Astana Qazaqstan Team']],\n", " [[' Russia national football team']],\n", " [[' Helsingin Jalkapalloklubi']],\n", " [[' BC Rytas']],\n", " [[' A.S. Roma']],\n", " [[' Utah Jazz']],\n", " [[' Spain national association football team']],\n", " [[\" Germany women's national football team\"]],\n", " [[' FC Barcelona Bàsquet']],\n", " [[' Algeria national football team']],\n", " [[' Rio Ave F.C.']],\n", " [[' Manchester City F.C.']],\n", " [[' Swiss national football team']],\n", " [[' Iran national football team']],\n", " [[' Detroit Pistons']],\n", " [[' FC Kolos Kovalivka']],\n", " [[' Eintracht Frankfurt']],\n", " [[' Nigeria national football team']],\n", " [[' ACF Fiorentina']],\n", " [[' Newcastle United F.C.']],\n", " [[' Legia Warsaw']],\n", " [[' Venezuela national football team']],\n", " [[' France national association football team']],\n", " [[' C.F. Os Belenenses']],\n", " [[' Japan national football team']],\n", " [[' Central African Republic national football team']],\n", " [[' Germany national association football team']],\n", " [[' NK Olimpija Ljubljana']],\n", " [[' Swiss national football team']],\n", " [[' Mexico national football team']],\n", " [[' Las Vegas Aces']],\n", " [[' Norwich City F.C.']],\n", " [[' Santa Cruz Futebol Clube']],\n", " [[' Ceratizit–WNT Pro Cycling']],\n", " [[' TotalEnergies']],\n", " [[' Oeste Futebol Clube']],\n", " [[\" United States men's national soccer team\"]],\n", " [[' S.S.C. Napoli']],\n", " [[' Norway national association football team']],\n", " [[' Kayserispor']],\n", " [[' Legia Warsaw']],\n", " [[' Brazil national football team']],\n", " [[' North Macedonia national football team']],\n", " [[' Zhejiang Professional F.C.']],\n", " [[' Balıkesirspor']],\n", " [[' Talaba SC']],\n", " [[' Ghana national football team']],\n", " [[' Kayserispor']],\n", " [[' Arsenal F.C.']],\n", " [[' FC Ingolstadt 04']],\n", " [[' Sweden national association football team']],\n", " [[' Helsingin Jalkapalloklubi']],\n", " [[' Sydney FC']],\n", " [[' Philippines national football team']],\n", " [[' Olympiacos F.C.']],\n", " [[' Chelsea F.C. Women']],\n", " [[' S.S.C. Napoli']],\n", " [[' Al-Faisaly FC']],\n", " [[' Cruz Azul']],\n", " [[' FC Lokomotiv Moscow']],\n", " [[' Iran national football team']],\n", " [[' Orlando Pride']],\n", " [[' Porsche']],\n", " [[' Denmark national association football team']],\n", " [[' Club Social y Deportivo Colo Colo']],\n", " [[' England national association football team']],\n", " [[' South Korea national football team']],\n", " [[' Brest Bretagne Handball']],\n", " [[' AG2R Citroën Team']],\n", " [[' Swiss national football team']],\n", " [[' Chelsea F.C. Women']],\n", " [[' Dallas Mavericks']],\n", " [[' France national association football team']],\n", " [[' UnitedHealthcare']],\n", " [[' Spain national association football team']],\n", " [[' Linköpings FC']],\n", " [[' Nigeria national football team']],\n", " [[' Liverpool F.C.']],\n", " [[' Team BikeExchange Jayco']],\n", " [[' France national association football team']],\n", " [[' São Tomé and Príncipe national football team']],\n", " [[' Portugal national association football team']],\n", " [[' Australia national association football team']],\n", " [[' Denmark national association football team']],\n", " [[' Belgium national football team']],\n", " [[' APOEL F.C.']],\n", " [[\" Japan women's national football team\"]],\n", " [[\" Canada women's national soccer team\"]],\n", " [[' OL Reign']],\n", " [[' Denmark national association football team']],\n", " [[' Germany national association football team']],\n", " [[' Brazil national football team']],\n", " [[' Montpellier Hérault Sport Club']],\n", " [[' Atlético Madrid']],\n", " [[' Norway national association football team']],\n", " [[' Hellas Verona F.C.']],\n", " [[' FC Shakhtar Donetsk']],\n", " [[' Southampton F.C.']],\n", " [[' Olympique Lyonnais']],\n", " [[' FC Lausanne-Sport']],\n", " [[' Club Social y Deportivo Colo Colo']],\n", " [[' Coquimbo Unido']],\n", " [[' Unión Magdalena']],\n", " [[' Anorthosis Famagusta FC']],\n", " [[' Al Ittihad FC']],\n", " [[' GNK Dinamo Zagreb']],\n", " [[' Cagliari Calcio']],\n", " [[' FC Pune City']],\n", " [[' Atlas F.C.']],\n", " [[' Australia national association football team']],\n", " [[' Morocco national football team']],\n", " [[' Morocco national football team']],\n", " [[' Arsenal W.F.C.']],\n", " [[' FC Barcelona']],\n", " [[' San Martín de Tucumán']],\n", " [[' Senegal national association football team']],\n", " [[' Germany national association football team']],\n", " [[' FC Kaisar']],\n", " [[' Portugal national association football team']],\n", " [[' NorthEast United FC']],\n", " [[' AFC Ajax Vrouwen']],\n", " [[' 1. FC Union Berlin']],\n", " [[' Belgium national football team']],\n", " [[' Stoke City F.C.']],\n", " [[' FC Twente']],\n", " [[' Finland national football team']],\n", " [[' Cameroon national football team']],\n", " [[' ŠK Slovan Bratislava']],\n", " [[' Orléans Loiret Basket']],\n", " [[' Algeria national football team']],\n", " [[' Miami Heat']],\n", " [[' AEK Athens B.C.']],\n", " [[' Charlton Athletic F.C.']],\n", " [[' Poland national association football team']],\n", " [[' Brazil national football team']],\n", " [[' Spain national association football team']],\n", " [[' Olympique Lyonnais']],\n", " [[' FC Barcelona']],\n", " [[' Aston Villa F.C.']],\n", " [[' Mexico national football team']],\n", " [[' Romania national association football team']],\n", " [[\" Australia women's national soccer team\"]],\n", " [[' Real Madrid Baloncesto']],\n", " [[' FC Ingolstadt 04']],\n", " [[' Club Atlético Osasuna']],\n", " [[' Philadelphia Union']],\n", " [[' FC Girondins de Bordeaux']],\n", " [[' Movistar Team']],\n", " [[' FK Vardar']],\n", " [[' New England Revolution']],\n", " [[' UD Vilafranquense']],\n", " [[' Associação Ferroviária de Esportes']],\n", " [[' D.C. United']],\n", " [[' FC Sion']],\n", " [[' Brazil national football team']],\n", " [[' FC Dinamo Moscow']],\n", " [[' KK Crvena Zvezda']],\n", " [[' Germany national association football team']],\n", " [[' Uruguay national football team']],\n", " [[' Crystal Palace F.C.']],\n", " [[' PSV Eindhoven']],\n", " [[' Croatia national association football team']],\n", " [[' Inter Milan']],\n", " [[' Cairns Taipans']],\n", " [[' Paris FC']],\n", " [[' Spain national association football team']],\n", " [[' Voltigeurs de Châteaubriant']],\n", " [[' TSG 1899 Hoffenheim']],\n", " [[' Algeria national football team']],\n", " [[' North Carolina FC']],\n", " [[' Russia national football team']],\n", " [[' Real Madrid CF']],\n", " [[' Los Angeles FC']],\n", " [[' A.E.K. Athens F.C.']],\n", " [[' Club Tijuana']],\n", " [[' Ottawa Fury FC']],\n", " [[' Kazakhstan national football team']],\n", " [[' FC Rostov']],\n", " [[' Germany national association football team']],\n", " [[' South Korea national football team']],\n", " [[' Turkey national association football team']],\n", " [[' PFC CSKA Moscow']],\n", " [[' Villarreal CF']],\n", " [[' FC Anzhi Makhachkala']],\n", " [[' Real Madrid Castilla']],\n", " [[' South Korea national football team']],\n", " [[' CF Pachuca']],\n", " [[' Örebro SK']],\n", " [[' Venezuela national football team']],\n", " [[' FC Lokomotiv Moscow']],\n", " [[' Republic of Ireland national association football team']],\n", " [[' Vicenza Calcio']],\n", " [[' FK Budućnost Podgorica']],\n", " [[' FC Dinamo Bucharest']],\n", " [[\" United States women's national soccer team\"]],\n", " [[' Iceland national association football team']],\n", " [[' Norway national association football team']],\n", " [[' CF Montréal']],\n", " [[' Sunderland A.F.C.']],\n", " [[' New Zealand national football team']],\n", " [[' 1. FC Union Berlin']],\n", " [[' Olympique Lyonnais Féminin']],\n", " [[' Urawa Red Diamonds']],\n", " [[' Rayo Vallecano']],\n", " [[' Scotland national football team']],\n", " [[' Clube Atlético Taboão da Serra']],\n", " [[' Golden State Warriors']],\n", " [[' LKS Nieciecza']],\n", " [[\" Brazil women's national football team\"]],\n", " [[' Valencia CF']],\n", " [[' West Ham United F.C.']],\n", " [[' Trabzonspor']],\n", " [[' 1. FC Union Berlin']],\n", " [[' Paris Saint-Germain F.C.']],\n", " [[' Liaoning Whowin F.C.']],\n", " [[' Mali national football team']],\n", " [[' Enosis Neon Paralimni FC']],\n", " [[' Costa Rica national football team']],\n", " [[' Trek–Segafredo']],\n", " [[' Villarreal CF']],\n", " [[' Washington Spirit']],\n", " [[' Liverpool F.C.']],\n", " [[' Senegal national association football team']],\n", " [[' KAA Gent']],\n", " [[' Gimnàstic de Tarragona']],\n", " [[' CF Montréal']],\n", " [[' Auckland City FC']],\n", " [[' Algeria national football team']],\n", " [[' Spain national association football team']],\n", " [[' France national association football team']],\n", " [[' Manchester United F.C.']],\n", " [[' Santos FC']],\n", " [[' Al-Shahaniya Sports Club']],\n", " [[' Chelsea F.C.']],\n", " [[' Toronto Blue Jays']],\n", " [[' Southampton F.C.']],\n", " [[' JLT Condor']],\n", " [[' Kayserispor']],\n", " [[' Goa ISL team']],\n", " [[' Netherlands national association football team']],\n", " [[' Argentinos Juniors']],\n", " [[' Çaykur Rizespor']],\n", " [[' SGS Essen']],\n", " [[' Sweden national association football team']],\n", " [[' Olympique Lyonnais']],\n", " [[' Costa Rica national football team']],\n", " [[' Jamaica national association football team']],\n", " [[' Crystal Palace F.C.']],\n", " [[' Olympique Lyonnais Féminin']],\n", " [[' A.E.K. Athens F.C.']],\n", " [[' New York Red Bulls']],\n", " [[' Algeria national football team']],\n", " [[' A.S. Roma']],\n", " [[' FK Shkëndija']],\n", " [[' FC Bayern Munich Women']],\n", " [[' Hokkaido Consadole Sapporo']],\n", " [[' São Paulo FC']],\n", " [[' CJM Bourges Basket']],\n", " [[' Clube de Regatas do Flamengo']],\n", " [[' Turkey national association football team']],\n", " [[' Brazil national football team']],\n", " [[' Turkey national association football team']],\n", " [[' Team BikeExchange Jayco']],\n", " [[' Lille OSC']],\n", " [[' Spain national association football team']],\n", " [[\" Norway women's national handball team\"]],\n", " [[' PK-35 Vantaa']],\n", " [[' Manchester City F.C.']],\n", " [[' Republic of Ireland national association football team']],\n", " [[' Philadelphia 76ers']],\n", " [[' América Futebol Clube (MG)']],\n", " [[' St. Louis Cardinals']],\n", " [[' Baltimore Orioles']],\n", " [[' Russia national football team']],\n", " [[' Dallas Mavericks']],\n", " [[' Juventud de Las Piedras']],\n", " [[\" Canada women's national soccer team\"]],\n", " [[' FC Dinamo Moscow']],\n", " [[' Genoa CFC']],\n", " [[' FC Basel']],\n", " [[\" Monts d'Or Azergues Foot\"]],\n", " [[' Maccabi Haifa F.C.']],\n", " [[' France national association football team']],\n", " [[' Anorthosis Famagusta FC']],\n", " [[' Trek–Segafredo']],\n", " [[' Unión Deportiva Almería']],\n", " [[' Beijing Guoan F.C.']],\n", " [[' Philadelphia 76ers']],\n", " [[' Legia Warsaw']],\n", " [[' Wealdstone F.C.']],\n", " [[' NorthEast United FC']],\n", " [[' PAS Giannina F.C.']],\n", " [[' New Zealand national football team']],\n", " [[' S.C. Braga']],\n", " [[' Sweden national association football team']],\n", " [[' Águilas CF']],\n", " [[' K.S.C. Lokeren Oost-Vlaanderen']],\n", " [[' Burgos CF']],\n", " [[\" United States men's national soccer team\"]],\n", " [[' Scotland national football team']],\n", " [[' Portugal national association football team']],\n", " [[' Club Atlético Colón']],\n", " [[' Slovenia national football team']],\n", " [[' Middlesbrough F.C.']],\n", " [[' Olympique de Marseille']],\n", " [[' Wisła Kraków']],\n", " [[' S.S.C. Napoli']],\n", " [[' S.L. Benfica']],\n", " [[' Gabon national football team']],\n", " [[' FK Kauno Žalgiris']],\n", " [[' Chelsea F.C.']],\n", " [[' Stade Rennais F.C.']],\n", " [[' Club Africain']],\n", " [[' South Korea national football team']],\n", " [[' Hamburger SV']],\n", " [[' Guizhou F.C.']],\n", " [[' FC Slovan Liberec']],\n", " [[' Peru national football team']],\n", " [[' Ukraine national association football team']],\n", " [[' Argentina national football team']],\n", " [[' FBC Melgar']],\n", " [[' Maccabi Haifa F.C.']],\n", " [[' Al-Faisaly SC']],\n", " [[' Speranța Nisporeni']],\n", " [[' Fulham F.C.']],\n", " [[' EF Education-Nippo']],\n", " [[' FC Rukh Lviv']],\n", " [[' Western New York Flash']],\n", " [[' Bahrain Victorious']],\n", " [[' FC Dinamo Bucharest']],\n", " [[' Belgium national football team']],\n", " [[' SD Worx']],\n", " [[' Germany national association football team']],\n", " [[' FC Augsburg']],\n", " [[' Clube de Regatas do Flamengo']],\n", " [[' Kardemir Karabükspor']],\n", " [[\" France women's national handball team\"]],\n", " [[' West Ham United F.C.']],\n", " [[' Stade Rennais F.C.']],\n", " [[' Liverpool F.C.']],\n", " [[' Algeria national football team']],\n", " [[\" Canada men's national soccer team\"]],\n", " [[' Montpellier Hérault Sport Club']],\n", " [[' FC Pune City']],\n", " [[' Red Star F.C.']],\n", " [[' Al-Gharafa Sports Club']],\n", " [[' SC East Bengal']],\n", " [[\" United States men's national soccer team\"]],\n", " [[' Chelsea F.C.']],\n", " [[' Algeria national football team']],\n", " [[' Australia national association football team']],\n", " [[' Virtus Pallacanestro Bologna']],\n", " [[' Arsenal F.C.']],\n", " [[' Seattle Sounders FC']],\n", " [[' Nigeria national football team']],\n", " [[' Trek–Segafredo']],\n", " [[' Bosnia and Herzegovina national football team']],\n", " [[' Portugal national association football team']],\n", " [[' Germany national association football team']],\n", " [[' Southampton F.C.']],\n", " [[' Deportivo Saprissa']],\n", " [[' Saba Qom F.C.']],\n", " [[' Club Atlético Osasuna']],\n", " [[' Arsenal F.C.']],\n", " [[' Spain national association football team']],\n", " [[' Liverpool F.C.']],\n", " [[' FC Krasnodar']],\n", " [[' Club Atlético Platense']],\n", " [[' Everton F.C.']],\n", " [[' Buriram United F.C.']],\n", " [[' Villarreal CF']],\n", " [[' Real Betis Balompié']],\n", " [[' Chelsea F.C.']],\n", " [[' Malmö FF']],\n", " [[' Bosnia and Herzegovina national football team']],\n", " [[' Independiente Santa Fe']],\n", " [[' West Bromwich Albion F.C.']],\n", " [[' Preston North End F.C.']],\n", " [[' England national association football team']],\n", " [[' Swiss national football team']],\n", " [[' Spain national association football team']],\n", " [[' Ineos Grenadiers']],\n", " [[' Olympique Lyonnais Féminin']],\n", " [[' FK AS Trenčín']],\n", " [[' Togo national football team']],\n", " [[' Al-Hilal SFC']],\n", " [[' Groupama-FDJ']],\n", " [[' Speranza Osaka-Takatsuki']],\n", " [[' ASVEL Basket']],\n", " [[' Palermo FC']],\n", " [[' Czech Republic national association football team']],\n", " [[\" United States men's national soccer team\"]],\n", " [[' Santos F.C.']],\n", " [[' South Korea national football team']],\n", " [[' Stoke City F.C.']],\n", " [[' Italy national association football team']],\n", " [[' FC Zenit Saint Petersburg']],\n", " [[' FC Viktoria Köln']],\n", " [[' MSV Duisburg']],\n", " [[' Portugal national association football team']],\n", " [[' Hellas Verona F.C.']],\n", " [[' Brazil national football team']],\n", " [[\" Hapoel Be'er Sheva F.C.\"]],\n", " [[' Al Nasr SC']],\n", " [[' Hull City A.F.C.']],\n", " [[' Thimpu FC']],\n", " [[' Panathinaikos F.C.']],\n", " [[' Feyenoord']],\n", " [[' Brazil national football team']],\n", " [[' Olimpia Milano']],\n", " [[' Arsenal W.F.C.']],\n", " [[' Swiss national football team']],\n", " [[' England national association football team']],\n", " [[' Everton F.C.']],\n", " [[' Congo national football team']],\n", " [[' Red Bull Racing']],\n", " [[' Algeria national football team']],\n", " [[\" Australia women's national soccer team\"]],\n", " [[' Egypt national football team']],\n", " [[' Croatia national association football team']],\n", " [[' Rangers F.C.']],\n", " [[' Atromitos F.C.']],\n", " [[' Club Athletico Paranaense']],\n", " [[' RCD Espanyol de Barcelona']],\n", " [[' Senegal national association football team']],\n", " [[' Melbourne Renegades']],\n", " [[' Portland Thorns FC']],\n", " [[\" Monts d'Or Azergues Foot\"]],\n", " [[' NŠ Drava Ptuj']],\n", " [[' Al-Shaab CSC']],\n", " [[' A.C. Milan']],\n", " [[' Germany national association football team']],\n", " [[' Real Madrid CF']],\n", " [[' Greece national association football team']],\n", " [[' Gamba Osaka']],\n", " [[' Russia national football team']],\n", " [[' Shabab Al Ahli Club']],\n", " [[' Czech Republic national association football team']],\n", " [[' Club Atlético Peñarol']],\n", " [[' Maccabi Haifa F.C.']],\n", " [[' Atlético Clube de Portugal']],\n", " [[' Ivory Coast national football team']],\n", " [[' Chelsea F.C.']],\n", " [[' Brazil national football team']],\n", " [[' Serbia national football team']],\n", " [[' Notts County F.C.']],\n", " [[' Olympiacos F.C.']],\n", " [[' Buriram United F.C.']],\n", " [[' Maccabi Tel Aviv F.C.']],\n", " [[' F.C. Porto']],\n", " [[' Lechia Gdańsk']],\n", " [[' Al-Arabi SC']],\n", " [[' Linköpings FC']],\n", " [[' Wales national association football team']],\n", " [[' FC Barcelona Femení']],\n", " [[' Italy national association football team']],\n", " [[' Quick-Step Alpha Vinyl Team']],\n", " [[' Real Salt Lake']],\n", " [[' TSG 1899 Hoffenheim']],\n", " [[' Colombia national football team']],\n", " [[' Spain national association football team']],\n", " [[' England national association football team']],\n", " [[' Australia national association football team']],\n", " [[' Iceland national association football team']],\n", " [[' AFC Bournemouth']],\n", " [[' Panionios F.C.']],\n", " [[' Real Sociedad']],\n", " [[' Uruguay national football team']],\n", " [[' Nea Salamis Famagusta FC']],\n", " [[' Atlanta Braves']],\n", " [[' Italy national association football team']],\n", " [[' S.L. Benfica']],\n", " [[' Bahrain Victorious']],\n", " [[' Vittsjö GIK']],\n", " [[' Argentina national football team']],\n", " [[' FC Erzgebirge Aue']],\n", " [[' FC Mordovia Saransk']],\n", " [[' Turkey national association football team']],\n", " [[' INAC Kobe Leonessa']],\n", " [[' Belgium national football team']],\n", " [[' Vancouver Canucks']],\n", " [[' Muangthong United F.C.']],\n", " [[' VfL Wolfsburg Women']],\n", " [[' Brazil national football team']],\n", " [[' FC Barcelona']],\n", " [[' Maritzburg United F.C.']],\n", " [[' Birmingham City F.C.']],\n", " [[' SV Sandhausen']],\n", " [[' Estonia national football team']],\n", " [[' Colombia national football team']],\n", " [[' Liverpool F.C.']],\n", " [[' New York Mets']],\n", " [[' Portugal national association football team']],\n", " [[' Belgium national football team']],\n", " [[' Portland Thorns FC']],\n", " [[' MŠK - Thermál Veľký Meder']],\n", " [[' Genoa CFC']],\n", " [[' Swiss national football team']],\n", " [[' Iceland national association football team']],\n", " [[' Morocco national football team']],\n", " [[' Club Celaya']],\n", " [[' Israel national football team']],\n", " [[' 1. FC Magdeburg']],\n", " [[' Uni Girona CB']],\n", " ...],\n", " 'labels_ids': [[[315, 532, 390, 18, 632, 4191, 165]],\n", " [[5429, 4612]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[1287, 1422, 6772]],\n", " [[14365, 139, 337, 12, 16764, 6486, 1794, 1885]],\n", " [[83, 4, 347, 4, 7338]],\n", " [[2910, 632, 1037, 165]],\n", " [[4619, 26769, 4843, 242, 2005, 6945]],\n", " [[19763, 16872]],\n", " [[580, 3600, 315, 274, 4, 347, 4]],\n", " [[5429, 10402, 10489]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[188, 469, 412, 5429]],\n", " [[6314, 16421]],\n", " [[3702, 7776, 281, 12150]],\n", " [[7016]],\n", " [[208, 4214, 23087, 7065, 3427, 242, 2893, 13345]],\n", " [[1429, 2337, 968, 165]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[29018, 10221, 2684, 3622]],\n", " [[7224, 597, 19643, 1688, 3999, 1243]],\n", " [[525, 700, 20852, 12221, 274, 4, 347, 4]],\n", " [[83, 4, 347, 4, 3385, 2478]],\n", " [[5429, 4612, 274, 15035, 1977]],\n", " [[5429, 10402, 10489]],\n", " [[315, 532, 390, 18, 632, 4191, 165]],\n", " [[91, 1610, 118, 274, 4, 347, 4]],\n", " [[8700, 632, 1037, 165]],\n", " [[19763, 16872]],\n", " [[2009, 29018, 10221, 2684, 4119, 6303, 271, 1168]],\n", " [[11917, 3631, 3108, 139]],\n", " [[10585, 73, 9873, 35733, 5429]],\n", " [[5429, 4168, 3314, 11489, 2586]],\n", " [[5168, 5325]],\n", " [[2930, 32109, 20434, 20071]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[10035, 5317, 24058]],\n", " [[11211, 413, 274, 4, 347, 4]],\n", " [[5244, 632, 1037, 165]],\n", " [[2822, 3622, 12612]],\n", " [[208, 4214, 15333, 5429]],\n", " [[163, 14075, 6752, 10327]],\n", " [[83, 4, 347, 4, 7338]],\n", " [[5168, 5325]],\n", " [[24589, 1479, 6374, 208, 4, 347, 4]],\n", " [[4152, 274, 4, 347, 4]],\n", " [[6415, 1501, 9224, 38707]],\n", " [[2201, 6130, 12, 534, 8362, 1851, 274, 4, 347, 4]],\n", " [[3161, 14122, 1178]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[1568, 1833, 5429]],\n", " [[5429, 10402, 10489]],\n", " [[1332, 242, 5413, 7222, 30089, 257, 5675, 2912, 438, 1020]],\n", " [[20351, 2383, 42775, 2001, 33293]],\n", " [[22705, 274, 4, 347, 4]],\n", " [[1568, 9926]],\n", " [[5429, 18540, 34264]],\n", " [[2499, 11476]],\n", " [[6015, 12696, 5429]],\n", " [[5168, 5325]],\n", " [[2812, 405, 15577, 274, 4, 347, 4]],\n", " [[4152, 274, 4, 347, 4]],\n", " [[5429, 10402, 10489]],\n", " [[5092, 632, 1037, 165]],\n", " [[1287, 1422, 6772]],\n", " [[29830, 18961]],\n", " [[6746, 13578, 7224]],\n", " [[226, 15089, 2383, 104, 6998, 337]],\n", " [[3417, 5809]],\n", " [[221, 15277, 2912, 438, 1020, 38220]],\n", " [[663, 11758]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[5028, 632, 1037, 165]],\n", " [[1063, 3181, 3849, 8906, 293, 208, 4, 347, 4]],\n", " [[7556, 632, 5259, 1037, 165]],\n", " [[580, 3600, 315, 274, 4, 347, 4]],\n", " [[2177, 5429]],\n", " [[1287, 1422, 6772]],\n", " [[14585, 2550, 625, 6748, 2723, 7222, 289, 3663, 3245]],\n", " [[1429, 632, 1037, 165]],\n", " [[9793, 5928, 274, 4, 347, 4]],\n", " [[5787, 5991, 8025, 1899]],\n", " [[5429, 10402, 10489]],\n", " [[5926, 2032, 16248, 5429]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[6331,\n", " 1975,\n", " 493,\n", " 3381,\n", " 4214,\n", " 20341,\n", " 1140,\n", " 119,\n", " 2426,\n", " 263,\n", " 944,\n", " 16231,\n", " 763,\n", " 126,\n", " 384,\n", " 4,\n", " 250,\n", " 4,\n", " 597,\n", " 4]],\n", " [[21774, 632, 1037, 165]],\n", " [[163, 4330, 12, 725, 1253, 15821, 700]],\n", " [[7505, 17458, 632, 1037, 165]],\n", " [[2822, 3622, 12612]],\n", " [[230, 1116, 22831]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[4998, 5547, 1452, 7150]],\n", " [[20351, 2383, 42775, 2001, 33293]],\n", " [[31162, 857, 632, 1037, 165]],\n", " [[4622, 139, 4954, 347]],\n", " [[2361, 315, 274, 4, 347, 4]],\n", " [[2009, 263, 274, 5874, 90, 18217, 3385, 1334, 5460]],\n", " [[3870, 2561, 12612]],\n", " [[12602, 6801, 5463, 1885, 90, 22783]],\n", " [[5429, 10402, 10489]],\n", " [[6314, 16421]],\n", " [[2741, 1906, 6971, 10482]],\n", " [[8683, 390, 18, 632, 1037, 165]],\n", " [[17112, 3061, 12, 487, 5600, 139]],\n", " [[83, 4575, 3194, 29, 274, 530]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[2822, 3622, 12612]],\n", " [[4537, 415, 31126, 857, 208, 4, 530, 4]],\n", " [[8937, 1113, 1209, 11868, 1343, 22398, 2711]],\n", " [[726, 7746, 3572, 2030, 5429]],\n", " [[2393, 873, 329, 1790, 12150]],\n", " [[2822, 3622, 4317, 261, 35678, 139]],\n", " [[20351, 2383, 42775, 2001, 33293]],\n", " [[14585, 2550, 1829, 7065, 3427, 7222, 4677, 1794, 853, 281]],\n", " [[96, 242, 366, 13519, 625, 4733]],\n", " [[15338, 412, 83, 4, 597, 4, 347, 4]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[2893, 13345, 263, 6304, 415, 281, 109, 37313, 3314, 139]],\n", " [[12723, 12130, 1178]],\n", " [[2910, 632, 1037, 165]],\n", " [[1775, 438, 10810, 4936, 15247, 274, 4, 347, 4]],\n", " [[2201, 6130, 12, 534, 8362, 1851, 274, 4, 347, 4]],\n", " [[1287, 1422, 12190]],\n", " [[2201, 6130, 12, 534, 8362, 1851, 274, 1140, 4691, 833]],\n", " [[14993, 9504, 366, 274, 4, 347, 4]],\n", " [[3870, 7338]],\n", " [[2499, 18946]],\n", " [[274, 4, 347, 4, 2848, 139]],\n", " [[18490, 632, 5259, 1037, 165]],\n", " [[1568, 1211, 7144]],\n", " [[2822, 3622, 12612]],\n", " [[15607, 412, 274, 4, 347, 4]],\n", " [[14993, 5150, 263, 23294, 4061]],\n", " [[384, 4, 597, 4, 530, 4, 1456, 2154, 7822]],\n", " [[7320, 632, 1037, 165]],\n", " [[221, 4438, 274, 4, 347, 4]],\n", " [[7224, 597, 19643, 1688, 3999, 1243]],\n", " [[34138, 30422, 330, 274, 1242, 3512]],\n", " [[13943, 1001, 2848, 242, 14182]],\n", " [[15809, 1942, 315, 274, 4, 347, 4]],\n", " [[3303, 12179, 967, 366, 40431, 281, 274, 4, 347, 4]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[27268, 9228, 274, 4, 347, 4]],\n", " [[22753, 21386, 3624, 163, 5593, 225]],\n", " [[5854, 412, 4998]],\n", " [[15206, 4699, 5429]],\n", " [[5429, 4168, 3314, 11489, 2586]],\n", " [[10600, 412, 274, 4, 347, 4]],\n", " [[6171, 390, 18, 632, 5259, 1037, 165]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[2711, 344, 20031, 12, 846, 40837]],\n", " [[13943, 415, 1210, 405, 2383, 771, 16966, 1698, 28544]],\n", " [[11998, 28659, 163, 530]],\n", " [[26455, 330, 23759, 9051, 625, 4104, 37151, 11104]],\n", " [[4556, 26488, 8647, 293, 5429]],\n", " [[12932, 534, 43130, 22590, 225, 10436]],\n", " [[14993, 5150, 263, 23294, 4061]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[2711, 344, 20031, 12, 846, 40837]],\n", " [[2711, 43657]],\n", " [[10585, 73, 9873, 35733, 5429]],\n", " [[10157, 3830, 271, 5429, 305, 12, 17608]],\n", " [[2822, 6525, 354, 4317, 7474, 118, 1140]],\n", " [[663, 41375, 2857]],\n", " [[14993, 5150, 10888, 19864, 354, 274, 1140, 4691, 179]],\n", " [[226, 15089, 2383, 104, 6998, 337]],\n", " [[5524, 15933]],\n", " [[31853, 2678, 2583, 5429]],\n", " [[7943, 17280, 13039]],\n", " [[4868, 846, 381, 2028, 5410, 2987]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[6415, 1501, 18794]],\n", " [[16518, 12470, 274, 4, 347, 4]],\n", " [[7943, 17280, 13039]],\n", " [[163, 1543, 219, 281, 4998]],\n", " [[2822, 3622, 12612]],\n", " [[2361, 315, 274, 4, 347, 4]],\n", " [[29018, 10221, 2684, 3622]],\n", " [[7320, 632, 1037, 165]],\n", " [[8683, 632, 5259, 1037, 165]],\n", " [[3870, 7338]],\n", " [[315, 532, 604, 18, 632, 4191, 165]],\n", " [[2822, 3622, 12612]],\n", " [[7137, 12242, 15363, 274, 4, 347, 4]],\n", " [[22753, 21386, 3624, 163, 5593, 225]],\n", " [[7570, 20302, 7748, 274, 4, 347, 4]],\n", " [[384, 11961, 16911]],\n", " [[7320, 632, 1037, 165]],\n", " [[83, 4, 104, 4, 12218]],\n", " [[6748, 2723, 9697, 263, 1587, 2812, 257, 14379]],\n", " [[2177, 13114]],\n", " [[36858, 25278, 22753]],\n", " [[7320, 632, 1037, 165]],\n", " [[5429, 35068, 4122, 257]],\n", " [[256, 1526, 462, 6080, 12612]],\n", " [[1870, 2776, 12, 10926, 5857]],\n", " [[764, 4578, 7963]],\n", " [[2201, 6130, 12, 534, 8362, 1851, 274, 4, 347, 4]],\n", " [[188, 469, 11836]],\n", " [[274, 4, 347, 4, 22843]],\n", " [[2009, 29018, 10221, 2684, 1995, 19201]],\n", " [[2822, 6525, 354, 4317, 7474, 118, 1140]],\n", " [[5926, 2032, 16248, 5429]],\n", " [[5429, 10402, 10489]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[2009, 29018, 10221, 2684, 4119, 6303, 271, 1168]],\n", " [[211, 21999, 12221, 274, 4, 347, 4]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[18490, 632, 5259, 1037, 165]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[226, 15089, 2383, 104, 6998, 337]],\n", " [[9601, 163, 8371, 14393]],\n", " [[10060, 632, 5259, 1037, 165]],\n", " [[274, 5777, 28185, 3381, 242, 14795]],\n", " [[4537, 415, 31126, 857, 208, 4, 530, 4]],\n", " [[3317, 315, 5429]],\n", " [[15338, 412, 83, 4, 597, 4, 347, 4]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[14781, 632, 1037, 165]],\n", " [[4152, 274, 4, 347, 4]],\n", " [[5429, 4168, 3314, 11489, 2586]],\n", " [[4537, 415, 31126, 857, 208, 4, 530, 4]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[13733, 632, 1037, 165]],\n", " [[5438, 763, 2860, 4365, 274, 4, 347, 4]],\n", " [[580, 14312, 11645, 19032, 274, 4, 347, 4]],\n", " [[7556, 632, 5259, 1037, 165]],\n", " [[10994, 11536, 632, 1037, 165]],\n", " [[2910, 632, 1037, 165]],\n", " [[5429, 9176]],\n", " [[5429, 10402, 10489]],\n", " [[9601, 24857]],\n", " [[188, 3324, 632, 8808, 2918, 165]],\n", " [[315, 532, 390, 18, 632, 4191, 165]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[12919, 274, 4, 347, 4]],\n", " [[7137, 2848, 274, 4, 347, 4]],\n", " [[15206, 4699, 5429]],\n", " [[13733, 632, 1037, 165]],\n", " [[6171, 632, 5259, 1037, 165]],\n", " [[1405, 12037, 163, 3632]],\n", " [[2361, 412, 305, 4, 597, 4, 347, 4]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[9688, 104, 6579, 18995]],\n", " [[163, 1543, 219, 281, 4998]],\n", " [[112, 4, 274, 5268, 14184]],\n", " [[83, 4, 104, 4, 12218]],\n", " [[5429, 229, 8428]],\n", " [[305, 5416, 926, 7210, 102, 4998]],\n", " [[726, 12, 495, 2957, 3760, 4998]],\n", " [[208, 4, 347, 4, 2265, 6080]],\n", " [[7224, 597, 19643, 1688, 3999, 1243]],\n", " [[2822, 6525, 354, 4317, 7474, 118, 1140]],\n", " [[10157, 3830, 271, 5429]],\n", " [[7248, 219, 8441]],\n", " [[1870, 2776, 12, 10926, 5857]],\n", " [[19365, 1140, 102, 2383, 104, 7042, 636]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[4380, 8271, 230, 5268]],\n", " [[5429, 4369, 329]],\n", " [[1287, 1422, 22320]],\n", " [[580, 3600, 315, 274, 4, 347, 4]],\n", " [[7296, 271, 8726, 12612]],\n", " [[12966, 6748, 2723, 7222, 726, 1176, 8129, 9401]],\n", " [[726, 840, 873, 873, 5429]],\n", " [[15206, 4699, 5429]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[384, 10839, 642, 493, 5366, 2601]],\n", " [[7556, 632, 5259, 1037, 165]],\n", " [[9614, 632, 1037, 165]],\n", " [[11437, 632, 5259, 1037, 165]],\n", " [[96, 242, 366, 13519, 625, 4733]],\n", " [[22569, 1535, 121, 1889, 574]],\n", " [[229, 597, 5725, 12, 530, 8015, 415, 2552, 26067]],\n", " [[2027, 188, 469, 15626]],\n", " [[7556, 632, 5259, 1037, 165]],\n", " [[5703, 15908]],\n", " [[274, 5777, 28185, 3381, 242, 4011, 18, 12610]],\n", " [[2361, 412, 305, 4, 597, 4, 347, 4]],\n", " [[13633, 83, 4, 597, 4, 347, 4]],\n", " [[7320, 632, 1037, 165]],\n", " [[208, 4214, 15333, 5429]],\n", " [[208, 4, 104, 4, 1960, 428, 4490, 2645, 4468, 2912, 438, 1020]],\n", " [[9170, 2711, 8313]],\n", " [[1221, 1585, 324, 5363, 1745, 968, 165]],\n", " [[21105, 18604, 3910, 2009]],\n", " [[29018, 10221, 2684, 6843]],\n", " [[2910, 632, 1037, 165]],\n", " [[1568, 1211, 7144]],\n", " [[2009, 234, 1043, 6073, 263, 3910]],\n", " [[1625, 632, 1037, 165]],\n", " [[17100, 1908, 9216, 20233, 16885, 274, 4, 347, 4]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[163, 8982, 2133, 274, 4, 347, 4, 41861]],\n", " [[382, 1793, 24227, 1253]],\n", " [[6748, 2723, 9697, 25452, 338, 12109]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[14993, 9504, 366, 274, 4, 347, 4]],\n", " [[230, 4, 104, 4, 13142, 23065, 5739]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[7320, 632, 1037, 165]],\n", " [[229, 4113, 254, 354, 12150]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[9170, 2711, 8313]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[10060, 632, 5259, 1037, 165]],\n", " [[5092, 632, 1037, 165]],\n", " [[6508, 632, 5259, 1037, 165]],\n", " [[7943, 17280, 13039]],\n", " [[2986, 9207]],\n", " [[91, 1610, 118, 274, 4, 347, 4]],\n", " [[9170, 2711, 4516, 1864]],\n", " [[2009, 29018, 10221, 2684, 255, 11186, 1535]],\n", " [[255, 5156, 261, 6130, 12, 347, 4503, 9676, 7406, 3512]],\n", " [[5926, 8393, 18191]],\n", " [[22256, 2565, 632, 1037, 165]],\n", " [[83, 4, 104, 4, 12218]],\n", " [[31853, 2678, 2583, 5429]],\n", " [[274, 5777, 28185, 3381, 242, 14795]],\n", " [[9170, 2711, 8313]],\n", " [[12132, 632, 1037, 165]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[1456, 5235, 967, 4349, 5235, 344, 4, 530, 4]],\n", " [[5092, 632, 1037, 165]],\n", " [[4290, 5429]],\n", " [[13876, 2158, 4712, 381, 4, 347, 4]],\n", " [[7960, 607, 274, 4, 347, 4]],\n", " [[230, 3376, 2711]],\n", " [[2009, 6748, 2723, 9697, 24066, 8843, 7641, 1479, 5895, 102]],\n", " [[9692, 274, 4, 347, 4]],\n", " [[221, 15277, 2912, 438, 1020, 38220]],\n", " [[580, 3600, 315, 274, 4, 347, 4]],\n", " [[13727, 1845, 3171, 274, 4, 347, 4]],\n", " [[274, 5777, 28185, 3381, 242, 14795]],\n", " [[3098, 274, 4, 347, 4, 2691]],\n", " [[1287, 1422, 6772]],\n", " [[272, 4, 104, 4, 38, 9418, 14496, 20, 7485, 30521, 8907]],\n", " [[10585, 73, 9873, 35733, 5429]],\n", " [[4307, 12599, 876, 2955, 272, 2583]],\n", " [[208, 4, 574, 4, 1664, 506, 2426]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[3870, 7338]],\n", " [[2910, 632, 1037, 165]],\n", " [[2711, 344, 20031, 12, 846, 40837]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[21105, 18604, 412, 274, 4, 347, 4]],\n", " [[468, 506, 574, 7602, 16408, 2691]],\n", " [[305, 2957, 260, 274, 4, 347, 4]],\n", " [[4380, 8271, 230, 5268]],\n", " [[2027, 188, 469, 15626]],\n", " [[36265, 22753]],\n", " [[230, 4, 495, 4, 2646, 23073, 1176, 1742]],\n", " [[91, 1610, 118, 274, 4, 347, 4]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[5429, 24066, 12624, 102, 2893, 11591]],\n", " [[22753, 21386, 3624, 163, 5593, 225]],\n", " [[1156, 632, 5259, 1037, 165]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[14667, 12, 387, 3006, 1180, 632, 1037, 165]],\n", " [[234, 4, 717, 4, 347, 4]],\n", " [[3542, 1469, 6377, 274, 4, 347, 4]],\n", " [[1625, 632, 1037, 165]],\n", " [[9096, 3497, 632, 4105, 4191, 165]],\n", " [[5429, 30377, 1496, 219, 229, 5079, 282, 2160, 2726, 330]],\n", " [[2822, 3622, 12612]],\n", " [[13287, 12, 25093, 7829, 40236, 2711]],\n", " [[7505, 17458, 632, 1037, 165]],\n", " [[896, 604, 18, 632, 4191, 165]],\n", " [[6508, 632, 5259, 1037, 165]],\n", " [[798, 632, 1037, 165]],\n", " [[9614, 632, 1037, 165]],\n", " [[2822, 3622, 12612]],\n", " [[2009, 16528, 952, 3602, 257]],\n", " [[18490, 632, 5259, 1037, 165]],\n", " [[83, 4, 347, 4, 7338]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[15897, 944, 1899, 281, 2344, 523, 1694, 3006, 19200]],\n", " [[208, 10595, 3109, 412, 274, 4, 347, 4]],\n", " [[13694, 25280, 7204, 1627]],\n", " [[229, 7025, 30492, 241, 7450, 211, 7389]],\n", " [[24799, 632, 1037, 165]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[4622, 139, 3767, 459, 38754]],\n", " [[35118, 2071, 40849]],\n", " [[274, 530, 6015, 255, 2558, 4955, 17010]],\n", " [[2822, 14585, 2550, 625]],\n", " [[3702, 7776, 281, 12150]],\n", " [[5168, 5325]],\n", " [[381, 4, 347, 4, 24589, 1479, 6374]],\n", " [[10897, 281, 1245, 12, 9325, 548, 2558]],\n", " [[2009, 29018, 10221, 2684, 1995, 19201]],\n", " [[2271, 83, 21454, 263, 2646, 154, 3914]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[8937, 1113, 1209, 11868, 1343, 22398, 2711]],\n", " [[2201, 6130, 12, 534, 8362, 1851, 274, 4, 347, 4]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[2361, 412, 274, 4, 347, 4]],\n", " [[2711, 344, 20031, 12, 846, 40837]],\n", " [[5429, 10402, 10489]],\n", " [[13287, 12, 25093, 7829, 40236, 2711]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[3317, 10506]],\n", " [[1775, 438, 10810, 4936, 15247, 274, 4, 347, 4]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[11666, 274, 4, 347, 4]],\n", " [[208, 4, 347, 4, 23094, 1043, 6073]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[5092, 632, 1037, 165]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[112, 4, 5429, 234, 5172, 282, 2865]],\n", " [[2910, 632, 1037, 165]],\n", " [[5429, 2049, 16408]],\n", " [[2361, 412, 274, 4, 347, 4]],\n", " [[315, 532, 390, 18, 632, 4191, 165]],\n", " [[7570, 20302, 7748, 274, 4, 347, 4]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[7570, 20302, 7748, 274, 4, 347, 4]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[5819, 12770]],\n", " [[5703, 15908]],\n", " [[4152, 274, 4, 347, 4]],\n", " [[7137, 12242, 15363, 274, 4, 347, 4]],\n", " [[21780, 12527, 493, 234, 293, 255, 329, 26051, 274, 4, 347, 4]],\n", " [[1608, 179, 1561, 267, 18057, 344, 9707, 1115, 1250, 21783, 5410]],\n", " [[14993, 5150, 10888, 19864, 354]],\n", " [[5854, 13170]],\n", " [[9245, 315, 274, 4, 347, 4]],\n", " [[5429, 208, 1499]],\n", " [[5854, 412, 4998]],\n", " [[208, 4214, 15333, 5429]],\n", " [[25103, 710, 6909, 3830, 267, 366, 263, 3060, 1043, 2070, 329]],\n", " [[230, 4, 495, 4, 2646, 23073, 1176, 1742]],\n", " [[17822, 1097, 7488, 5429]],\n", " [[7413, 268, 4998, 673]],\n", " [[7556, 632, 5259, 1037, 165]],\n", " [[3098, 274, 4, 347, 4, 2691]],\n", " [[7224, 597, 19643, 1688, 3999, 1243]],\n", " [[17182, 5268, 163, 6457, 705, 468, 28814, 102]],\n", " [[21299, 2186, 274, 4, 347]],\n", " [[9035, 412, 274, 4, 347, 4]],\n", " [[5429, 13985, 405, 6130, 14330]],\n", " [[3417, 36802, 5429]],\n", " [[1625, 632, 1037, 165]],\n", " [[2499, 18946]],\n", " [[4537, 415, 31126, 857, 208, 4, 530, 4]],\n", " [[5729, 412, 5429]],\n", " [[24986, 6847, 20623, 261]],\n", " [[29018, 10221, 2684, 764, 6487, 3407, 14182, 12612]],\n", " [[2361, 315, 305, 4, 597, 4, 347, 4]],\n", " [[9601, 19119, 32482, 4989]],\n", " [[5244, 632, 1037, 165]],\n", " [[21774, 632, 1037, 165]],\n", " [[2000, 632, 1037, 165]],\n", " [[234, 2154, 11691, 5429]],\n", " [[1405, 12037, 163, 3632]],\n", " [[840, 463, 1657, 9002, 1173, 260, 274, 4, 347, 4]],\n", " [[5429, 4612]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[22256, 2565, 632, 1037, 165]],\n", " [[22378, 12, 18551, 139, 390, 18]],\n", " [[1568, 1211, 7144]],\n", " [[83, 4, 104, 4, 12218]],\n", " [[9176, 381, 12, 26902, 5429]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[5420, 15929]],\n", " [[4556, 26488, 8647, 293, 5429]],\n", " [[468, 506, 387, 312, 9259, 22739]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[2910, 632, 1037, 165]],\n", " [[12966, 6748, 2723, 7222, 726, 1176, 8129, 9401]],\n", " [[4152, 305, 4, 597, 4, 347, 4]],\n", " [[6171, 632, 5259, 1037, 165]],\n", " [[1625, 632, 1037, 165]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[9170, 2711, 8313]],\n", " [[5429, 24542, 298, 45739, 1879]],\n", " [[14993, 5150, 263, 23294, 4061]],\n", " [[391, 1101, 632, 1037, 165]],\n", " [[208, 4, 347, 4, 23094, 1043, 6073]],\n", " [[7320, 632, 1037, 165]],\n", " [[1429, 632, 1037, 165]],\n", " [[2000, 632, 1037, 165]],\n", " [[17535, 5382, 975, 844, 181, 73, 428, 17411, 12, 17906]],\n", " [[14567, 12612]],\n", " [[14585, 2550, 1829, 7065, 3427, 7222, 4677, 1794, 853, 281]],\n", " [[15837, 5223, 23872, 352, 118, 6579, 625, 6417]],\n", " [[3417, 36802, 5429]],\n", " [[6748, 2723, 9697, 17686, 26802, 274, 4, 347, 4]],\n", " [[4868, 846, 381, 2028, 5410, 2987]],\n", " [[468, 506, 387, 312, 9259, 22739, 3082]],\n", " [[8937, 1113, 1209, 11868, 1343, 22398, 2711]],\n", " [[798, 632, 1037, 165]],\n", " [[44602, 154, 179, 344, 9707, 1115, 1250, 1638, 462, 36384]],\n", " [[9543, 11861, 90, 281]],\n", " [[83, 4, 104, 4, 12218]],\n", " [[4514, 9529]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[1600, 390, 18, 632, 1037, 165]],\n", " [[5429, 4612, 163, 5269, 30919, 594]],\n", " [[21774, 632, 1037, 165]],\n", " [[5716, 4597, 274, 4, 347, 4]],\n", " [[2361, 412, 274, 4, 347, 4]],\n", " [[5092, 632, 1037, 165]],\n", " [[1603, 632, 1037, 165]],\n", " [[2921, 18290]],\n", " [[5429, 16052, 366, 229, 15273, 1879, 2348]],\n", " [[381, 2544, 338, 11629, 14184]],\n", " [[2000, 632, 1037, 165]],\n", " [[7224, 597, 19643, 1688, 3999, 1243]],\n", " [[8983, 315, 274, 4, 347, 4]],\n", " [[15376, 493, 21115]],\n", " [[6037, 632, 1037, 165]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[230, 4, 597, 4, 4838, 4231, 225, 21526]],\n", " [[1429, 632, 1037, 165]],\n", " [[1505, 1704, 3497, 632, 1037, 165]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[35906, 384, 10839, 642, 12733, 226, 267, 1792, 462, 267, 1113]],\n", " [[5092, 632, 1037, 165]],\n", " [[1625, 632, 1037, 165]],\n", " [[2588, 2461, 83, 4643]],\n", " [[18749, 412, 274, 4, 347, 4]],\n", " [[2005, 3590, 274, 4467, 18217, 2893, 13345]],\n", " [[13943, 415, 1210, 405, 2383, 771, 16966, 1698, 28544]],\n", " [[5480, 717, 27093, 918]],\n", " [[384, 13967, 274, 4467, 18217, 2893, 13345]],\n", " [[315, 532, 604, 18, 632, 4191, 165]],\n", " [[208, 4, 104, 4, 347, 4, 7645, 6483]],\n", " [[8683, 632, 5259, 1037, 165]],\n", " [[229, 4113, 254, 354, 12150]],\n", " [[15376, 493, 21115]],\n", " [[2910, 632, 1037, 165]],\n", " [[369, 21894, 632, 1037, 165]],\n", " [[525, 700, 20852, 12221, 274, 4, 347, 4]],\n", " [[4317, 10031, 7339, 21098, 12150]],\n", " [[7765, 6412, 4998]],\n", " [[5498, 632, 1037, 165]],\n", " [[229, 4113, 254, 354, 12150]],\n", " [[4152, 274, 4, 347, 4]],\n", " [[5429, 11996, 1168, 22487, 14722]],\n", " [[6171, 632, 5259, 1037, 165]],\n", " [[44602, 154, 179, 344, 9707, 1115, 1250, 1638, 462, 36384]],\n", " [[4290, 5429]],\n", " [[5639, 632, 1037, 165]],\n", " [[14993, 9504, 366, 274, 4, 347, 4]],\n", " [[3098, 274, 4, 347, 4, 2691]],\n", " [[208, 4, 104, 4, 347, 4, 7645, 6483]],\n", " [[726, 12, 597, 5655, 7776, 5429]],\n", " [[3590, 4947, 922]],\n", " [[5429, 13073, 1075, 1242, 1879, 3467]],\n", " [[1603, 632, 1037, 165]],\n", " [[5854, 13170]],\n", " [[15091]],\n", " [[10060, 632, 5259, 1037, 165]],\n", " [[2009, 3574, 1423, 6748, 2723, 9697, 22378, 22378]],\n", " [[1156, 632, 5259, 1037, 165]],\n", " [[391, 1101, 632, 1037, 165]],\n", " [[163, 7110, 27547, 16784, 7406, 3512]],\n", " [[5680, 176, 500, 7801, 1001, 105, 282, 2711]],\n", " [[5092, 632, 1037, 165]],\n", " [[3098, 274, 4, 347, 4, 2691]],\n", " [[3160, 17492]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[315, 13716, 6350]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[4341, 3671, 642, 1033, 5429]],\n", " [[2000, 632, 1037, 165]],\n", " [[3426, 274, 4, 347, 4]],\n", " [[2711, 23070, 9089, 14035, 3309, 876]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[208, 4214, 1560, 1140, 8, 2869, 17010, 2520, 2379, 632, 1037, 165]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[1221, 632, 5259, 1037, 165]],\n", " [[10060, 632, 5259, 1037, 165]],\n", " [[7320, 632, 1037, 165]],\n", " [[1480, 673, 3721, 274, 4, 347, 4]],\n", " [[1429, 390, 18, 632, 1037, 165]],\n", " [[896, 390, 18, 632, 4191, 165]],\n", " [[19763, 16872]],\n", " [[10060, 632, 5259, 1037, 165]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[2910, 632, 1037, 165]],\n", " [[4436, 26827, 906, 289, 1140, 763, 6070, 5413, 2009]],\n", " [[29018, 10221, 2684, 3622]],\n", " [[8683, 632, 5259, 1037, 165]],\n", " [[11141, 281, 3060, 4488, 274, 4, 347, 4]],\n", " [[5429, 17326, 19654, 29712]],\n", " [[11666, 274, 4, 347, 4]],\n", " [[14993, 5150, 10888, 19864, 354]],\n", " [[5429, 1587, 687, 8799, 12, 19451]],\n", " [[2009, 3574, 1423, 6748, 2723, 9697, 22378, 22378]],\n", " [[944, 2253, 757, 3983, 1890, 6005]],\n", " [[22839, 2727, 3771, 20375, 4242]],\n", " [[660, 22494, 13310, 18440, 1073, 4193, 102, 5429]],\n", " [[726, 85, 90, 19284, 5429]],\n", " [[31245, 530, 15757, 12705, 525, 1073, 16552]],\n", " [[230, 1073, 3572, 1512, 2912, 438, 1020]],\n", " [[5429, 221, 4438, 412]],\n", " [[22705, 274, 4, 347, 4]],\n", " [[1221, 632, 5259, 1037, 165]],\n", " [[13733, 632, 1037, 165]],\n", " [[13733, 632, 1037, 165]],\n", " [[4152, 305, 4, 597, 4, 347, 4]],\n", " [[5429, 4612]],\n", " [[764, 5465, 17010, 263, 33759, 783, 7499]],\n", " [[18490, 632, 5259, 1037, 165]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[5429, 7916, 354, 271]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[369, 17577, 315, 5429]],\n", " [[9601, 24857, 468, 8508, 11760]],\n", " [[112, 4, 5429, 1332, 5459]],\n", " [[7320, 632, 1037, 165]],\n", " [[15607, 412, 274, 4, 347, 4]],\n", " [[5429, 9922, 8530]],\n", " [[12587, 632, 1037, 165]],\n", " [[14781, 632, 1037, 165]],\n", " [[2742, 21402, 530, 4424, 22015, 2265, 415, 13714, 8604]],\n", " [[1793, 24227, 1253, 5463, 1885, 90, 163, 20997]],\n", " [[21774, 632, 1037, 165]],\n", " [[2561, 7772]],\n", " [[35722, 530, 11198, 163, 4, 347, 4]],\n", " [[15959, 1054, 8899, 274, 4, 347, 4]],\n", " [[6508, 632, 5259, 1037, 165]],\n", " [[2910, 632, 1037, 165]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[14993, 5150, 10888, 19864, 354]],\n", " [[5429, 4612]],\n", " [[16518, 12470, 274, 4, 347, 4]],\n", " [[1625, 632, 1037, 165]],\n", " [[12940, 632, 5259, 1037, 165]],\n", " [[1221, 390, 18, 632, 4191, 165]],\n", " [[2822, 3622, 4317, 261, 35678, 139]],\n", " [[5429, 11996, 1168, 22487, 14722]],\n", " [[2009, 29018, 10221, 2684, 4838, 281, 4989]],\n", " [[3378, 1332]],\n", " [[5429, 10847, 2832, 1344, 263, 163, 17202, 8624]],\n", " [[28147, 31732, 2711]],\n", " [[274, 530, 468, 1120, 271]],\n", " [[188, 1156, 13340]],\n", " [[33846, 22153, 2001, 3917, 2253, 9401]],\n", " [[6331,\n", " 1975,\n", " 493,\n", " 3381,\n", " 4214,\n", " 6838,\n", " 1001,\n", " 6873,\n", " 1526,\n", " 6374,\n", " 263,\n", " 7065,\n", " 3427,\n", " 293]],\n", " [[211, 4, 347, 4, 315]],\n", " [[5429, 208, 1499]],\n", " [[2910, 632, 1037, 165]],\n", " [[5429, 15757, 12705, 3467]],\n", " [[229, 530, 5309, 2987, 102, 525, 20782, 6106]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[17609, 632, 1037, 165]],\n", " [[9793, 5928, 274, 4, 347, 4]],\n", " [[4868, 846, 381, 2028, 5410, 2987]],\n", " [[11437, 632, 5259, 1037, 165]],\n", " [[3870, 7338]],\n", " [[230, 2456, 6852, 9002, 1588, 1253]],\n", " [[2201, 5429]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[36589, 7876, 4668, 263, 732, 3695, 859, 102, 1792, 1069, 927]],\n", " [[12932, 534, 43130, 22590, 225, 10436]],\n", " [[21774, 632, 1037, 165]],\n", " [[369, 1961, 5429]],\n", " [[798, 632, 1037, 165]],\n", " [[2822, 3622, 12612]],\n", " [[1287, 1422, 5429]],\n", " [[83, 4, 717, 4, 530, 4, 11198, 274, 4, 347, 4]],\n", " [[2009, 255, 25491]],\n", " [[5837, 15945, 5429]],\n", " [[17983, 632, 1037, 165]],\n", " [[5429, 30610, 1417]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[391, 1101, 632, 1037, 165]],\n", " [[2769, 632, 5259, 1037, 165]],\n", " [[221, 5268, 7038, 14559, 3467]],\n", " [[7296, 271, 8726, 12612]],\n", " [[5429, 660, 329, 3592, 256, 7352, 1488, 330, 2331]],\n", " [[2822, 3622, 6719, 4699]],\n", " [[391, 1101, 632, 1037, 165]],\n", " [[12612, 221, 1488, 26802]],\n", " [[30492, 241, 7450, 14795]],\n", " [[6037, 632, 1037, 165]],\n", " [[5429, 13073, 1075, 1242, 1879, 3467]],\n", " [[3497, 9, 2487, 632, 5259, 1037, 165]],\n", " [[13708, 26450, 2912, 438, 1020]],\n", " [[274, 530, 11504, 257, 4807, 282, 2603, 21752, 26084, 2426]],\n", " [[5429, 15757, 12705, 19443, 18759]],\n", " [[315, 532, 390, 18, 632, 4191, 165]],\n", " [[14605, 632, 5259, 1037, 165]],\n", " [[8683, 632, 5259, 1037, 165]],\n", " [[12612, 4436, 20287, 337]],\n", " [[13633, 83, 4, 597, 4, 347, 4]],\n", " [[188, 3324, 632, 1037, 165]],\n", " [[112, 4, 5429, 1332, 5459]],\n", " [[14993, 5150, 10888, 19864, 354, 274, 1140, 4691, 179]],\n", " [[121, 9056, 102, 1211, 7128, 29]],\n", " [[4622, 139, 3767, 459, 38754]],\n", " [[3430, 632, 1037, 165]],\n", " [[2893, 13345, 29018, 10221, 2684, 12765, 139, 4214, 2955, 6251, 763]],\n", " [[3274, 331, 4223]],\n", " [[226, 18307, 234, 324, 438, 324, 438, 2478]],\n", " [[2910, 390, 18, 632, 1037, 165]],\n", " [[14567, 12612]],\n", " [[580, 3600, 315, 274, 4, 347, 4]],\n", " [[2393, 873, 329, 1790, 12150]],\n", " [[112, 4, 5429, 1332, 5459]],\n", " [[2201, 6130, 12, 534, 8362, 1851, 274, 4, 347, 4]],\n", " [[27162, 11626, 3990, 1722, 179, 274, 4, 347, 4]],\n", " [[16193, 632, 1037, 165]],\n", " [[2271, 13310, 36349, 2884, 337, 757, 5107, 5429]],\n", " [[7505, 17458, 632, 1037, 165]],\n", " [[20351, 2383, 42775, 2001, 33293]],\n", " [[7296, 271, 8726, 12612]],\n", " [[663, 11758]],\n", " [[3426, 274, 4, 347, 4]],\n", " [[18490, 632, 5259, 1037, 165]],\n", " [[229, 5596, 21834]],\n", " [[31280, 282, 5269, 29048, 263, 255, 6166, 11408, 102]],\n", " [[12612, 4436, 20287, 337]],\n", " [[14664, 412, 5429]],\n", " [[21774, 632, 1037, 165]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[2361, 315, 274, 4, 347, 4]],\n", " [[12919, 5429]],\n", " [[726, 12, 3609, 895, 1543, 2636, 1847, 2009]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[2177, 2692, 10929]],\n", " [[11666, 274, 4, 347, 4]],\n", " [[344, 30395, 12108, 368]],\n", " [[229, 4113, 254, 354, 12150]],\n", " [[2381, 102, 3703, 574, 165]],\n", " [[7556, 632, 5259, 1037, 165]],\n", " [[19041, 10968, 6752, 10327]],\n", " [[952, 6382, 857, 330, 710, 248, 7396, 12150]],\n", " [[208, 10729, 14777, 225]],\n", " [[6171, 632, 5259, 1037, 165]],\n", " [[14993, 5150, 10888, 19864, 354]],\n", " [[7505, 17458, 632, 1037, 165]],\n", " [[15639, 632, 5259, 1037, 165]],\n", " [[9793, 5928, 274, 4, 347, 4]],\n", " [[14993, 5150, 10888, 19864, 354, 274, 1140, 4691, 179]],\n", " [[83, 4, 717, 4, 530, 4, 11198, 274, 4, 347, 4]],\n", " [[188, 469, 1211, 9926]],\n", " [[21774, 632, 1037, 165]],\n", " [[83, 4, 104, 4, 12218]],\n", " [[274, 530, 840, 330, 105, 1187, 12733]],\n", " [[5429, 10402, 10489, 2691]],\n", " [[26455, 330, 23759, 9051, 625, 4104, 37151, 11104]],\n", " [[208, 4214, 15333, 5429]],\n", " [[17468, 448, 13023, 5641, 163, 20997]],\n", " [[2893, 13345, 263, 6304, 415, 281, 109, 37313, 3314, 139]],\n", " [[2769, 632, 5259, 1037, 165]],\n", " [[2910, 632, 1037, 165]],\n", " [[2769, 632, 5259, 1037, 165]],\n", " [[2711, 23070, 9089, 14035, 3309, 876]],\n", " [[226, 4061, 384, 3632]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[8683, 390, 18, 632, 865, 3512, 165]],\n", " [[25011, 12, 2022, 468, 11485, 102]],\n", " [[2361, 412, 274, 4, 347, 4]],\n", " [[3497, 9, 2487, 632, 5259, 1037, 165]],\n", " [[3378, 5553, 268]],\n", " [[1918, 1140, 14962, 274, 4467, 18217, 2893, 13345, 36, 21963, 43]],\n", " [[312, 4, 3217, 6293]],\n", " [[4766, 14572]],\n", " [[798, 632, 1037, 165]],\n", " [[3160, 17492]],\n", " [[8873, 9399, 1906, 263, 2588, 221, 2550, 5079]],\n", " [[896, 390, 18, 632, 4191, 165]],\n", " [[5429, 15757, 12705, 3467]],\n", " [[4380, 8271, 230, 5268]],\n", " [[5429, 7093, 523]],\n", " [[4436, 29, 385, 108, 11094, 4947, 11249, 3663, 13324]],\n", " [[1775, 438, 10810, 4936, 15247, 274, 4, 347, 4]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[660, 22494, 13310, 18440, 1073, 4193, 102, 5429]],\n", " [[20351, 2383, 42775, 2001, 33293]],\n", " [[22839, 2727, 6748, 2723, 7222, 726, 2089, 5272]],\n", " [[3332, 2646, 26681, 274, 4, 347, 4]],\n", " [[3378, 5553, 268]],\n", " [[15376, 493, 21115]],\n", " [[166, 5618, 4670, 274, 4, 347, 4]],\n", " [[369, 17577, 315, 5429]],\n", " [[221, 2336, 272, 30265, 1243, 274, 4, 347, 4]],\n", " [[188, 3324, 632, 1037, 165]],\n", " [[208, 4, 347, 4, 2265, 6080]],\n", " [[6171, 632, 5259, 1037, 165]],\n", " [[952, 10172, 5521, 718, 281, 12612]],\n", " [[229,\n", " 4,\n", " 104,\n", " 4,\n", " 347,\n", " 4,\n", " 226,\n", " 5361,\n", " 2558,\n", " 384,\n", " 2603,\n", " 12,\n", " 846,\n", " 2560,\n", " 463,\n", " 8663]],\n", " [[16588, 366, 12612]],\n", " [[315, 532, 604, 18, 632, 4191, 165]],\n", " [[3430, 632, 1037, 165]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[2009, 29018, 10221, 2684, 3182, 2727]],\n", " [[24195, 632, 1037, 165]],\n", " [[20421, 428, 10344, 274, 4, 347, 4]],\n", " [[14993, 5150, 263, 23294, 4061]],\n", " [[15676, 5173, 102, 229, 9418, 1479, 605]],\n", " [[208, 4, 104, 4, 347, 4, 7645, 6483]],\n", " [[208, 4, 574, 4, 1664, 506, 2426]],\n", " [[9341, 261, 632, 1037, 165]],\n", " [[274, 530, 229, 7381, 139, 2742, 10809, 31316, 36533]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[312, 1829, 248, 18974, 354, 274, 4, 347, 4]],\n", " [[2009, 44285, 1851]],\n", " [[391, 1101, 632, 1037, 165]],\n", " [[36858, 25278, 22753]],\n", " [[2646, 1210, 24181, 274, 4, 347, 4]],\n", " [[5429, 4424, 22015, 11135, 2816, 438]],\n", " [[12132, 632, 1037, 165]],\n", " [[4174, 632, 5259, 1037, 165]],\n", " [[5244, 632, 1037, 165]],\n", " [[274, 3573, 4448, 6276]],\n", " [[1775, 438, 10810, 4936, 15247, 274, 4, 347, 4]],\n", " [[726, 12, 597, 5655, 7776, 4998]],\n", " [[208, 1741, 260, 6163, 3726, 102, 234, 19291, 1688, 5107]],\n", " [[11193, 1908, 274, 4, 347, 4]],\n", " [[17112, 3061, 12, 487, 5600, 139]],\n", " [[5429, 24542, 298, 45739, 1879]],\n", " [[2027, 188, 469, 15626]],\n", " [[13800, 41269, 31221]],\n", " [[5429, 15757, 12705, 19443, 18759]],\n", " [[7320, 632, 1037, 165]],\n", " [[12723, 12130, 1178]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[5429, 2049, 16408]],\n", " [[2893, 13345, 263, 6304, 415, 281, 109, 37313, 3314, 139]],\n", " [[44558, 991, 853, 4077, 873, 2768, 2258, 12150]],\n", " [[1470, 390, 18, 632, 865, 3512, 165]],\n", " [[580, 3600, 315, 274, 4, 347, 4]],\n", " [[312, 1829, 248, 18974, 354, 274, 4, 347, 4]],\n", " [[3426, 274, 4, 347, 4]],\n", " [[21774, 632, 1037, 165]],\n", " [[896, 604, 18, 632, 4191, 165]],\n", " [[4436, 26827, 906, 289, 1140, 763, 6070, 5413, 2009]],\n", " [[5429, 221, 4438, 412]],\n", " [[1211, 2141, 274, 4, 347, 4]],\n", " [[726, 12, 534, 4759, 15997, 1847, 2009]],\n", " [[4998, 953, 7104]],\n", " [[315, 532, 604, 18, 632, 4191, 165]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[21774, 632, 1037, 165]],\n", " [[1221, 632, 5259, 1037, 165]],\n", " [[28187, 687, 18612, 32825, 24969, 163, 8982, 2133]],\n", " [[4152, 274, 4, 347, 4]],\n", " [[3417, 36802, 5429]],\n", " [[2000, 632, 1037, 165]],\n", " [[20351, 2383, 42775, 2001, 33293]],\n", " [[25305, 8, 26288, 3733, 1417, 1243, 632, 1037, 165]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[11666, 274, 4, 347, 4]],\n", " [[6748, 2723, 9697, 25452, 338, 12109]],\n", " [[6371, 102, 1209, 1075, 274, 4, 347, 4]],\n", " [[2009, 29018, 10221, 2684, 4838, 281, 4989]],\n", " [[4152, 274, 4, 347, 4]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[3426, 274, 4, 347, 4]],\n", " [[5429, 229, 5079, 282, 1630, 271]],\n", " [[2009, 29018, 10221, 2684, 23654, 9401]],\n", " [[9692, 274, 4, 347, 4]],\n", " [[4273, 853, 424, 315, 274, 4, 347, 4]],\n", " [[7296, 271, 8726, 12612]],\n", " [[2822, 6525, 354, 4317, 7474, 118, 1140]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[2529, 119, 3671, 35960]],\n", " [[25305, 8, 26288, 3733, 1417, 1243, 632, 1037, 165]],\n", " [[4619, 26769, 4843, 242, 2005, 6945]],\n", " [[580, 14312, 11645, 19032, 274, 4, 347, 4]],\n", " [[14056, 369, 4680, 274, 4, 347, 4]],\n", " [[1156, 632, 5259, 1037, 165]],\n", " [[5092, 632, 1037, 165]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[96, 242, 366, 13519, 625, 4733]],\n", " [[14993, 5150, 10888, 19864, 354, 274, 1140, 4691, 179]],\n", " [[274, 530, 6015, 255, 2558, 4955, 17010]],\n", " [[255, 14744, 632, 1037, 165]],\n", " [[726, 12, 725, 718, 337, 208, 5268]],\n", " [[826, 2583, 12, 24667, 863]],\n", " [[208, 1741, 19209, 19380, 12, 565, 677, 47497]],\n", " [[6015, 16641, 163, 20997]],\n", " [[4677, 254, 4992, 5429]],\n", " [[9096, 3497, 632, 5259, 1037, 165]],\n", " [[315, 532, 604, 18, 632, 4191, 165]],\n", " [[12919, 274, 4, 347, 4]],\n", " [[391, 1101, 632, 1037, 165]],\n", " [[15607, 412, 274, 4, 347, 4]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[5429, 13985, 405, 6130, 14330]],\n", " [[5429, 16706, 90, 7228, 229, 3671, 8502]],\n", " [[6253, 846, 5620, 354, 3321]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[11141, 281, 3060, 4488, 274, 4, 347, 4]],\n", " [[2910, 632, 1037, 165]],\n", " [[289, 24812, 523, 1456, 108, 254, 264, 3952, 274, 4, 347, 4]],\n", " [[726, 4417, 338, 4998]],\n", " [[13077, 412, 83, 4, 597, 4, 347, 4]],\n", " [[2032, 11850, 257, 5429]],\n", " [[5302, 2681, 1243, 967, 366, 274, 4, 347, 4]],\n", " [[33445, 14511, 3109]],\n", " [[2910, 632, 1037, 165]],\n", " [[384, 10839, 642, 493, 5366, 2601]],\n", " [[4152, 305, 4, 597, 4, 347, 4]],\n", " [[5092, 632, 1037, 165]],\n", " [[1156, 632, 5259, 1037, 165]],\n", " [[9692, 274, 4, 347, 4]],\n", " [[11536, 632, 1037, 165]],\n", " [[1211, 6518, 8441]],\n", " [[21774, 632, 1037, 165]],\n", " [[1221, 390, 18, 632, 4191, 165]],\n", " [[5028, 632, 1037, 165]],\n", " [[11437, 632, 5259, 1037, 165]],\n", " [[5706, 274, 4, 347, 4]],\n", " [[497, 5638, 405, 366, 274, 4, 347, 4]],\n", " [[2009, 27417, 2684, 2884, 1113, 9401]],\n", " [[248, 11579, 11631, 3785, 1168, 263, 4612]],\n", " [[18490, 632, 5259, 1037, 165]],\n", " [[5703, 38901, 4216]],\n", " [[5926, 2032, 16248, 5429]],\n", " [[4436, 29, 385, 108, 11094, 4947, 11249, 3663, 13324]],\n", " [[234, 1277, 21402, 211, 6472, 102, 42191, 11591]],\n", " [[726, 12, 3609, 102, 873, 230, 3632]],\n", " [[83, 4, 347, 4, 7338]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[2822, 3622, 12612]],\n", " [[4644, 632, 5259, 1037, 165]],\n", " [[272, 14996, 19380]],\n", " [[798, 632, 1037, 165]],\n", " [[840, 873, 873, 726, 7746, 3572, 2009]],\n", " [[9096, 3497, 632, 5259, 1037, 165]],\n", " [[2009, 29018, 10221, 2684, 4119, 6303, 271, 1168]],\n", " [[1775, 438, 10810, 4936, 15247, 274, 4, 347, 4]],\n", " [[29018, 10221, 2684, 2893, 13345, 263, 8062]],\n", " [[22256, 2565, 632, 1037, 165]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[2910, 632, 1037, 165]],\n", " [[12933, 632, 1037, 165]],\n", " [[1491, 1872, 413, 274, 4, 347, 4]],\n", " [[14993, 9504, 366, 274, 4, 347, 4]],\n", " [[4273, 853, 424, 315, 274, 4, 347, 4]],\n", " [[1775, 438, 10810, 5477, 19067, 274, 4, 347, 4]],\n", " [[274, 4, 347, 4, 2848, 139]],\n", " [[1063, 611, 493, 272, 6106, 1277, 11936, 7771]],\n", " [[726, 12, 8138, 10810, 4998]],\n", " [[4341, 3671, 642, 1033, 5429]],\n", " [[5295, 632, 5259, 1037, 165]],\n", " [[5429, 4612, 274, 15035, 1977]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[13287, 12, 25093, 7829, 40236, 2711]],\n", " [[2822, 8957, 1777]],\n", " [[12932, 534, 43130, 22590, 225, 10436]],\n", " [[8700, 632, 1037, 165]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[1156, 632, 5259, 1037, 165]],\n", " [[1221, 632, 5259, 1037, 165]],\n", " [[14605, 632, 5259, 1037, 165]],\n", " [[9601, 163, 8371, 14393]],\n", " [[5302, 1499, 4544, 274, 4, 347, 4]],\n", " [[2822, 14585, 2550, 625]],\n", " [[17609, 632, 1037, 165]],\n", " [[3864, 102, 35020, 354, 18440, 1073, 4193, 102, 5429]],\n", " [[3317, 13376]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[208, 4, 574, 4, 1664, 506, 2426]],\n", " [[13800, 41269, 31221]],\n", " [[468, 2582, 29, 267, 3671, 272, 20458]],\n", " [[5244, 632, 1037, 165]],\n", " [[5429, 4594, 329, 1899, 428, 853, 1899, 83, 1780]],\n", " [[5429, 32889, 1417, 493, 4701, 30075]],\n", " [[2769, 632, 5259, 1037, 165]],\n", " [[2808, 2562, 24058, 9213, 15620]],\n", " [[7320, 632, 1037, 165]],\n", " [[5071, 19011]],\n", " [[6186, 1097, 212, 1657, 315, 274, 4, 347, 4]],\n", " [[468, 506, 574, 7602, 16408, 2691]],\n", " [[2910, 632, 1037, 165]],\n", " [[5429, 4612]],\n", " [[1127, 4494, 3321, 315, 274, 4, 347, 4]],\n", " [[8353, 412, 274, 4, 347, 4]],\n", " [[22753, 4219, 19493, 225]],\n", " [[24799, 632, 1037, 165]],\n", " [[8700, 632, 1037, 165]],\n", " [[3426, 274, 4, 347, 4]],\n", " [[188, 469, 9024]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[7320, 632, 1037, 165]],\n", " [[5926, 2032, 16248, 5429]],\n", " [[256,\n", " 1277,\n", " 21402,\n", " 530,\n", " 111,\n", " 7135,\n", " 119,\n", " 1526,\n", " 462,\n", " 10978,\n", " 649,\n", " 4726,\n", " 330,\n", " 3849,\n", " 10809,\n", " 5066,\n", " 254]],\n", " [[4380, 8271, 230, 5268]],\n", " [[5092, 632, 1037, 165]],\n", " [[14605, 632, 5259, 1037, 165]],\n", " [[13733, 632, 1037, 165]],\n", " [[2009, 13230, 5210]],\n", " [[1870, 632, 1037, 165]],\n", " [[112, 4, 5429, 3771, 25607, 7150]],\n", " [[22839, 272, 11680, 102, 6933]],\n", " ...],\n", " 'relation': ['P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " ...],\n", " 'num_answers': [1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " ...]},\n", " '2021-Q2': {'text': [['Alex Morgan plays for .'],\n", " ['Lionel Messi plays for .'],\n", " ['Cristiano Ronaldo plays for .'],\n", " ['LeBron James plays for .'],\n", " ['Puck Moonen plays for .'],\n", " ['Zlatan Ibrahimović plays for .'],\n", " ['Neymar plays for .'],\n", " ['Ronaldinho plays for .'],\n", " ['Megan Rapinoe plays for .'],\n", " ['Pau Gasol plays for .'],\n", " ['Alisha Lehmann plays for .'],\n", " ['Robert Lewandowski plays for .'],\n", " ['Gianluigi Buffon plays for .'],\n", " ['Andrea Pirlo plays for .'],\n", " ['Kevin Durant plays for .'],\n", " ['Lukas Podolski plays for .'],\n", " ['Lewis Hamilton plays for .'],\n", " ['Formiga plays for .'],\n", " ['Naomi Osaka plays for .'],\n", " ['José Mourinho plays for .'],\n", " ['Luis Suárez plays for .'],\n", " ['Franck Ribéry plays for .'],\n", " ['Tim Cahill plays for .'],\n", " ['Chris Froome plays for .'],\n", " ['Mario Balotelli plays for .'],\n", " ['Lieke Martens plays for .'],\n", " ['Manuel Neuer plays for .'],\n", " ['Lindsey Horan plays for .'],\n", " ['Javier Mascherano plays for .'],\n", " ['Mark Cavendish plays for .'],\n", " ['James Rodríguez plays for .'],\n", " ['Hope Solo plays for .'],\n", " ['Diego Forlán plays for .'],\n", " ['Sebastián Abreu plays for .'],\n", " ['Carli Lloyd plays for .'],\n", " ['Marta plays for .'],\n", " ['Javier Hernández plays for .'],\n", " ['Yuzvendra Chahal plays for .'],\n", " ['Fernando Alonso plays for .'],\n", " ['Thiago Silva plays for .'],\n", " ['Andrés Iniesta plays for .'],\n", " ['Keisuke Honda plays for .'],\n", " ['Sergio Agüero plays for .'],\n", " ['Marianne Vos plays for .'],\n", " ['Sergio Ramos plays for .'],\n", " ['Dani Alves plays for .'],\n", " ['Carlos Tevez plays for .'],\n", " ['Pepe Reina plays for .'],\n", " ['Giovani dos Santos plays for .'],\n", " ['Ricardo Quaresma plays for .'],\n", " ['Freddy Adu plays for .'],\n", " ['Cristiane Rozeira plays for .'],\n", " ['Maya Moore plays for .'],\n", " ['Giorgio Chiellini plays for .'],\n", " ['Bastian Schweinsteiger plays for .'],\n", " ['Luis Scola plays for .'],\n", " ['Jérôme Boateng plays for .'],\n", " ['Kevin-Prince Boateng plays for .'],\n", " ['Vincenzo Nibali plays for .'],\n", " ['Egidio Arévalo Rios plays for .'],\n", " ['Dwyane Wade plays for .'],\n", " ['Arjen Robben plays for .'],\n", " ['Dwight Howard plays for .'],\n", " ['Cesc Fàbregas plays for .'],\n", " ['Nigel de Jong plays for .'],\n", " ['Colin Kazim-Richards plays for .'],\n", " ['Pierre-Emerick Aubameyang plays for .'],\n", " ['David Alaba plays for .'],\n", " ['Xherdan Shaqiri plays for .'],\n", " ['Marc Gasol plays for .'],\n", " ['Laura Kenny plays for .'],\n", " ['Aristide Bancé plays for .'],\n", " ['Philippe Gilbert plays for .'],\n", " ['Breanna Stewart plays for .'],\n", " ['Bruno Alves plays for .'],\n", " ['Ali Krieger plays for .'],\n", " ['Antoine Griezmann plays for .'],\n", " ['Mohamed Salah plays for .'],\n", " ['Memphis Depay plays for .'],\n", " ['Pablo Zabaleta plays for .'],\n", " ['Jozy Altidore plays for .'],\n", " ['Steve Nash plays for .'],\n", " ['Shinji Okazaki plays for .'],\n", " ['Maya Yoshida plays for .'],\n", " ['Gary Cahill plays for .'],\n", " ['Guillermo Ochoa plays for .'],\n", " ['Serge Gnabry plays for .'],\n", " ['Christine Sinclair plays for .'],\n", " ['Paul Pogba plays for .'],\n", " ['Hugo Almeida plays for .'],\n", " [\"Raïs M'Bolhi plays for .\"],\n", " ['Peter Sagan plays for .'],\n", " ['Joel Campbell plays for .'],\n", " ['Luka Modrić Papá de Lionel Messi plays for .'],\n", " ['Elia Viviani plays for .'],\n", " ['Toni Kroos plays for .'],\n", " ['Giulia Gwinn plays for .'],\n", " ['Ellen van Dijk plays for .'],\n", " ['Lucas Barrios plays for .'],\n", " ['Daniel Fernandes plays for .'],\n", " ['Juan Mata plays for .'],\n", " ['Michael Bradley plays for .'],\n", " ['Gonzalo Higuaín plays for .'],\n", " ['Greg Van Avermaet plays for .'],\n", " ['Alexandra Lacrabère plays for .'],\n", " ['Javi Martínez plays for .'],\n", " ['Davide Rebellin plays for .'],\n", " ['Kyrie Irving plays for .'],\n", " ['Sebastian Vettel plays for .'],\n", " ['Ingrid Syrstad Engen plays for .'],\n", " ['Adrien Silva plays for .'],\n", " ['Rigoberto Urán plays for .'],\n", " ['John Arne Riise plays for .'],\n", " ['Tobin Heath plays for .'],\n", " ['Hedvig Lindahl plays for .'],\n", " ['Marcelo plays for .'],\n", " ['Radamel Falcao plays for .'],\n", " ['Jakob Fuglsang plays for .'],\n", " ['Marko Marin plays for .'],\n", " ['Mikel John Obi plays for .'],\n", " ['Hulk plays for .'],\n", " ['Rudy Fernández plays for .'],\n", " ['Lizzie Deignan plays for .'],\n", " ['Zé Roberto plays for .'],\n", " ['Rohan Dennis plays for .'],\n", " ['Łukasz Fabiański plays for .'],\n", " ['Mats Hummels plays for .'],\n", " ['Diego Ribas da Cunha plays for .'],\n", " ['Artem Milevskyi plays for .'],\n", " ['Anna van der Breggen plays for .'],\n", " ['Rafinha plays for .'],\n", " ['Vladimir Stojković plays for .'],\n", " ['Ángel Di María plays for .'],\n", " ['Chris Paul plays for .'],\n", " ['Rosana dos Santos Augusto plays for .'],\n", " ['Manuel da Costa plays for .'],\n", " ['Alexis Sánchez plays for .'],\n", " ['Sophie Schmidt plays for .'],\n", " ['Mario Mandžukić plays for .'],\n", " ['Pepe plays for .'],\n", " ['Philippe Coutinho plays for .'],\n", " ['Sadio Mané plays for .'],\n", " ['Christen Press plays for .'],\n", " ['Keylor Navas plays for .'],\n", " ['Valentino Rossi plays for .'],\n", " ['Bojan Krkić plays for .'],\n", " ['Shinji Kagawa plays for .'],\n", " ['Steve Mandanda plays for .'],\n", " ['Miodrag Anđelković plays for .'],\n", " ['Thibaut Courtois plays for .'],\n", " ['Eiður Guðjohnsen plays for .'],\n", " ['Jakub Błaszczykowski plays for .'],\n", " ['Henning Berg plays for .'],\n", " ['Annemiek van Vleuten plays for .'],\n", " ['Álvaro Pereira plays for .'],\n", " ['Florent Sinama Pongolle plays for .'],\n", " ['Miljan Mrdaković plays for .'],\n", " ['Mario Götze plays for .'],\n", " ['Jô plays for .'],\n", " ['Claudio Pizarro plays for .'],\n", " ['Nani plays for .'],\n", " ['Ivan Rakitić plays for .'],\n", " ['Erin McLeod plays for .'],\n", " ['Peter Odemwingie plays for .'],\n", " ['Sofia Jakobsson plays for .'],\n", " ['Jordi Alba plays for .'],\n", " ['Tony Martin plays for .'],\n", " ['Kirsten Wild plays for .'],\n", " ['Nicklas Bendtner plays for .'],\n", " ['Junichi Inamoto plays for .'],\n", " ['Michael Umaña plays for .'],\n", " ['Niklas Süle plays for .'],\n", " ['Diego Godín plays for .'],\n", " ['Yuto Nagatomo plays for .'],\n", " ['Olivier Giroud plays for .'],\n", " ['Tom Dumoulin plays for .'],\n", " ['Nicolas Roche plays for .'],\n", " [\"Kelley O'Hara plays for .\"],\n", " ['Lisa De Vanna plays for .'],\n", " ['Rafael van der Vaart plays for .'],\n", " ['Elena Delle Donne plays for .'],\n", " ['Sakina Karchaoui plays for .'],\n", " ['John Degenkolb plays for .'],\n", " ['Brittney Griner plays for .'],\n", " ['Shunsuke Nakamura plays for .'],\n", " ['David Silva plays for .'],\n", " ['Axel Witsel plays for .'],\n", " ['Andrés Guardado plays for .'],\n", " ['Kylian Mbappé plays for .'],\n", " ['Tom Brady plays for .'],\n", " ['Micah Richards plays for .'],\n", " ['Łukasz Piszczek plays for .'],\n", " ['Royston Drenthe plays for .'],\n", " ['Gareth Bale plays for .'],\n", " ['Sergio Romero plays for .'],\n", " ['Filipe Luís plays for .'],\n", " ['Romelu Lukaku plays for .'],\n", " ['Erling Haaland plays for .'],\n", " ['Arturo Vidal plays for .'],\n", " ['Jermaine Jones plays for .'],\n", " ['Eden Hazard plays for .'],\n", " ['Demba Ba plays for .'],\n", " ['Nuri Şahin plays for .'],\n", " ['Hugo Lloris plays for .'],\n", " ['Morgan Schneiderlin plays for .'],\n", " ['Thomas Vermaelen plays for .'],\n", " ['Henrikh Mkhitaryan plays for .'],\n", " ['Ryan Babel plays for .'],\n", " ['Aron Baynes plays for .'],\n", " ['Johan Djourou plays for .'],\n", " ['Kevin De Bruyne plays for .'],\n", " ['Shinji Ono plays for .'],\n", " ['Idriss Carlos Kameni plays for .'],\n", " ['Fernando Llorente plays for .'],\n", " ['André Greipel plays for .'],\n", " ['Boris Diaw plays for .'],\n", " ['Anja Mittag plays for .'],\n", " ['Joakim Noah plays for .'],\n", " ['Ricky Rubio plays for .'],\n", " ['Stephan Andersen plays for .'],\n", " [\"Andrés D'Alessandro plays for .\"],\n", " ['Claudio Bravo plays for .'],\n", " ['Becky Sauerbrunn plays for .'],\n", " ['Rafinha plays for .'],\n", " ['Blaise Matuidi plays for .'],\n", " ['Cristian Rodríguez plays for .'],\n", " ['Marek Hamšík plays for .'],\n", " ['Ciro Immobile plays for .'],\n", " [\"Dame N'Doye plays for .\"],\n", " ['Raphaël Varane plays for .'],\n", " ['Roger Kluge plays for .'],\n", " ['Asmir Begović plays for .'],\n", " ['Neven Subotić plays for .'],\n", " ['Christian Eriksen plays for .'],\n", " ['Luiz Gustavo plays for .'],\n", " ['Hamit Altıntop plays for .'],\n", " ['Brad Guzan plays for .'],\n", " ['André Ayew plays for .'],\n", " ['César Azpilicueta plays for .'],\n", " ['Éric Maxim Choupo-Moting plays for .'],\n", " ['Caroline Seger plays for .'],\n", " ['Fernando Muslera plays for .'],\n", " ['Leonardo Bonucci plays for .'],\n", " ['Nordin Amrabat plays for .'],\n", " ['Richard Kingson plays for .'],\n", " ['Jonny Evans plays for .'],\n", " ['Jonathan de Guzmán plays for .'],\n", " ['Yannick Bolasie plays for .'],\n", " ['Dante Bonfim Costa Santos plays for .'],\n", " ['Park Chu-young plays for .'],\n", " ['Lucas Hernandez plays for .'],\n", " ['Sonny Bill Williams plays for .'],\n", " ['Sydney Leroux plays for .'],\n", " ['Victor Moses plays for .'],\n", " ['Elano plays for .'],\n", " ['Asamoah Gyang plays for .'],\n", " ['Grzegorz Krychowiak plays for .'],\n", " ['Achraf Hakim plays for .'],\n", " ['John Guidetti plays for .'],\n", " ['Salomon Kalou plays for .'],\n", " ['Karen Bardsley plays for .'],\n", " ['Cédric Soares plays for .'],\n", " ['Dietmar Hamann plays for .'],\n", " ['Mark Milligan plays for .'],\n", " ['Yūki Nagasato plays for .'],\n", " ['Pedro plays for .'],\n", " ['Jack Wilshere plays for .'],\n", " ['Albert Riera plays for .'],\n", " ['Florent Malouda plays for .'],\n", " ['Medhi Benatia plays for .'],\n", " ['Eduardo Carvalho plays for .'],\n", " ['Giuseppe Rossi plays for .'],\n", " ['Samir Nasri plays for .'],\n", " ['Andrija Kaluđerović plays for .'],\n", " ['Sarah Storey plays for .'],\n", " ['Daniel Martin plays for .'],\n", " ['Nairo Quintana plays for .'],\n", " ['Leroy Sané plays for .'],\n", " ['Valon Behrami plays for .'],\n", " ['Eiji Kawashima plays for .'],\n", " ['Ana Dabović plays for .'],\n", " ['Carlos Sánchez plays for .'],\n", " ['Raúl Albiol plays for .'],\n", " ['Bryan Ruiz plays for .'],\n", " ['Gabriel Torres plays for .'],\n", " ['Éver Banega plays for .'],\n", " ['Simon Kjær plays for .'],\n", " ['Willy Caballero plays for .'],\n", " ['Sergio Rodríguez plays for .'],\n", " ['Luuk de Jong plays for .'],\n", " ['Eduardo Vargas plays for .'],\n", " ['Ivan Perišić plays for .'],\n", " ['Michał Kwiatkowski plays for .'],\n", " ['Diego Reyes plays for .'],\n", " ['Lars Hirschfeld plays for .'],\n", " ['Abby Dahlkemper plays for .'],\n", " ['Daley Blind plays for .'],\n", " ['Roko Ukić plays for .'],\n", " ['Pablo Contreras plays for .'],\n", " ['Nando de Colo plays for .'],\n", " ['Steph Houghton plays for .'],\n", " ['Jermain Defoe plays for .'],\n", " ['Divock Origi plays for .'],\n", " ['el tete plays for .'],\n", " ['Maxi López plays for .'],\n", " ['Maximiliano Richeze plays for .'],\n", " ['Ashleigh Barty plays for .'],\n", " ['Paulinho plays for .'],\n", " ['Curao Ql plays for .'],\n", " ['Marquinhos plays for .'],\n", " ['Julie Ertz plays for .'],\n", " ['Sebastián Eguren plays for .'],\n", " ['Marco Fabián plays for .'],\n", " ['Edvald Boasson-Hagen plays for .'],\n", " ['João Moutinho plays for .'],\n", " ['İlkay Gündoğan plays for .'],\n", " ['Gary Medel plays for .'],\n", " ['Karim Ziani plays for .'],\n", " ['Christian Bolaños plays for .'],\n", " ['Gonzalo Jara plays for .'],\n", " ['David De Gea plays for .'],\n", " ['Esteban Cambiasso plays for .'],\n", " ['Gabriel Enrique Gómez plays for .'],\n", " ['Douglas Costa plays for .'],\n", " ['Michy Batshuayi plays for .'],\n", " ['Yakubu plays for .'],\n", " ['José Fonte plays for .'],\n", " ['Rui Costa plays for .'],\n", " ['Salvatore Sirigu plays for .'],\n", " ['Roman Kreuziger plays for .'],\n", " ['Kasper Schmeichel plays for .'],\n", " ['Roman Bürki plays for .'],\n", " ['Víctor Claver plays for .'],\n", " ['Arkadiusz Milik plays for .'],\n", " ['Daniel Ricciardo plays for .'],\n", " ['Thomas Delaney plays for .'],\n", " ['Kevin Love plays for .'],\n", " ['Stéphane Mbia plays for .'],\n", " ['Tatiana Guderzo plays for .'],\n", " ['Martín Demichelis plays for .'],\n", " ['Siraba Dembele plays for .'],\n", " ['Damian Lillard plays for .'],\n", " ['Richie Porte plays for .'],\n", " ['Sébastien Haller plays for .'],\n", " ['Edin Džeko plays for .'],\n", " ['Daisuke Matsui plays for .'],\n", " ['José Sosa plays for .'],\n", " ['Nelson Valdez plays for .'],\n", " ['Alexander Kristoff plays for .'],\n", " ['Luis Advíncula plays for .'],\n", " ['Danilo Pereira plays for .'],\n", " [\"N'Golo Kanté plays for .\"],\n", " ['Duško Tošić plays for .'],\n", " ['Ricardo Rodriguez plays for .'],\n", " ['Shane Smeltz plays for .'],\n", " ['Marcelo Martins Moreno plays for .'],\n", " ['Peter Crouch plays for .'],\n", " ['Simon Gerrans plays for .'],\n", " ['Mark González plays for .'],\n", " ['Kevin Mirallas plays for .'],\n", " ['Gervinho plays for .'],\n", " ['Alex Song plays for .'],\n", " ['Glenn Whelan plays for .'],\n", " ['Raul Meireles plays for .'],\n", " ['Ali Riley plays for .'],\n", " ['Anthony Davis plays for .'],\n", " ['Sani Kaita plays for .'],\n", " ['Christie Pearce plays for .'],\n", " ['Luís Fabiano plays for .'],\n", " ['Jan Vertonghen plays for .'],\n", " ['Thiago Alcântara plays for .'],\n", " ['João Mário plays for .'],\n", " ['Alisson plays for .'],\n", " ['Fridolina Rolfö plays for .'],\n", " ['Wout van Aert plays for .'],\n", " ['Alphonse Areola plays for .'],\n", " ['Mousa Dembélé plays for .'],\n", " ['Babett Peter plays for .'],\n", " ['Fabiana da Silva Simões plays for .'],\n", " ['Blerim Džemaili plays for .'],\n", " ['Adriana Leon plays for .'],\n", " ['Naohiro Takahara plays for .'],\n", " ['oscar perez plays for .'],\n", " ['Gaël Kakuta plays for .'],\n", " ['Isco Alarcón plays for .'],\n", " ['Jaroslav Drobný plays for .'],\n", " ['Raheem Sterling plays for .'],\n", " ['Samuel Umtiti plays for .'],\n", " ['Amido Baldé plays for .'],\n", " ['Brad Jones plays for .'],\n", " ['Adil Rami plays for .'],\n", " ['Miguel Layún plays for .'],\n", " ['Jan Koller plays for .'],\n", " ['Dmitri Alenichev plays for .'],\n", " ['Marco Asensio plays for .'],\n", " ['Michael Mørkøv plays for .'],\n", " ['Kendall Waston plays for .'],\n", " ['Milan Borjan plays for .'],\n", " ['Kamil Glik plays for .'],\n", " ['Roman Neustädter plays for .'],\n", " ['Marcelo Díaz plays for .'],\n", " ['Jesé Rodríguez plays for .'],\n", " ['Roberto Acuña plays for .'],\n", " ['Ricardo Faty plays for .'],\n", " ['Verónica Boquete plays for .'],\n", " ['Danilo Luiz plays for .'],\n", " ['Olga Zabelinskaya plays for .'],\n", " ['Darron Gibson plays for .'],\n", " ['James Harden plays for .'],\n", " ['Russell Westbrak plays for .'],\n", " ['Jung Sung-ryong plays for .'],\n", " ['Melissa Tancredi plays for .'],\n", " ['Daryl Impey plays for .'],\n", " ['Henrik Ojamaa plays for .'],\n", " ['Leon Goretzka plays for .'],\n", " ['Pablo Hernández Domínguez plays for .'],\n", " ['Tomáš Necid plays for .'],\n", " ['Joseph Yobo plays for .'],\n", " ['Rafał Majka plays for .'],\n", " ['Bruma plays for .'],\n", " ['Samuel Inkoom plays for .'],\n", " ['Robbie Rogers plays for .'],\n", " ['Robert de Pinho de Souza plays for .'],\n", " ['Georges Mandjeck plays for .'],\n", " ['Lucho González plays for .'],\n", " ['Paul-Georges Ntep plays for .'],\n", " ['Ander Herrera plays for .'],\n", " ['Luis León Sánchez plays for .'],\n", " ['Érika Cristiano dos Santos plays for .'],\n", " ['Kingsley Coman plays for .'],\n", " ['Aymeric Laporte plays for .'],\n", " ['Primož Roglič plays for .'],\n", " ['Charles Aránguiz plays for .'],\n", " ['Julian Alaphilippe plays for .'],\n", " ['André Silva plays for .'],\n", " ['Elton Brand plays for .'],\n", " ['Nikita Rukavytsya plays for .'],\n", " ['Marc-André ter Stegen plays for .'],\n", " ['Steven Davis plays for .'],\n", " ['Anderson plays for .'],\n", " ['Matthias Ginter plays for .'],\n", " ['Haris Seferovic plays for .'],\n", " ['Rui Patrício plays for .'],\n", " ['Wojciech Szczęsny plays for .'],\n", " ['Rúrik Gíslason plays for .'],\n", " ['Oscar dos Santos Emboaba Júnior plays for .'],\n", " ['Koo Ja-cheol plays for .'],\n", " ['Lucy Bronze plays for .'],\n", " ['Crystal Dunn plays for .'],\n", " ['Toby Alderweireld plays for .'],\n", " ['Penalty in the UEL final plays for .'],\n", " ['Joe Hart plays for .'],\n", " ['Kepa Arrizabalaga plays for .'],\n", " ['Giannis Antetokounmpo plays for .'],\n", " ['Besart Berisha plays for .'],\n", " ['Willian plays for .'],\n", " ['Obafemi Martins plays for .'],\n", " ['Moussa Maâzou plays for .'],\n", " ['Alexei Eremenko plays for .'],\n", " ['Moussa Dembélé plays for .'],\n", " ['Ashlyn Harris plays for .'],\n", " ['Chris Wood plays for .'],\n", " ['Reto Ziegler plays for .'],\n", " ['Antonio Nocerino plays for .'],\n", " ['Ji Dong-won plays for .'],\n", " ['Carlos Salcido plays for .'],\n", " ['Oribe Peralta plays for .'],\n", " ['Marco Ureña plays for .'],\n", " ['Antar Yahia plays for .'],\n", " ['Georginio Wijnaldum plays for .'],\n", " ['Sam Kerr plays for .'],\n", " ['Martín Cáceres plays for .'],\n", " ['Valeri Bojinov plays for .'],\n", " ['Luis Tejada plays for .'],\n", " ['Gökhan İnler plays for .'],\n", " ['Javi García plays for .'],\n", " ['Nicolás Lodeiro plays for .'],\n", " ['Raúl Jiménez plays for .'],\n", " ['Janine Beckie plays for .'],\n", " ['Arda Turan plays for .'],\n", " ['Selim Benachour plays for .'],\n", " ['Mickaël Gelabale plays for .'],\n", " ['Daniel González Güiza plays for .'],\n", " ['Jackie Groenen plays for .'],\n", " ['John Mensah plays for .'],\n", " ['Federico Fazio plays for .'],\n", " ['Carl Medjani plays for .'],\n", " ['Ahmed Musa plays for .'],\n", " ['Essam El-Hadary plays for .'],\n", " ['Vedad Ibišević plays for .'],\n", " ['Marouane Fellaini plays for .'],\n", " ['Miralem Pjanić plays for .'],\n", " ['Jorginho plays for .'],\n", " ['Lacina Traoré plays for .'],\n", " ['Christiane Endler plays for .'],\n", " ['Alyssa Naeher plays for .'],\n", " ['Steven Nzonzi plays for .'],\n", " ['Kim Dong-jin plays for .'],\n", " ['Joshua Kimmich plays for .'],\n", " ['Emre Can plays for .'],\n", " ['Nicolas Batum plays for .'],\n", " ['José Calderón plays for .'],\n", " ['Emiliano Insúa plays for .'],\n", " ['Stephan El Shaarawy plays for .'],\n", " ['Casemiro plays for .'],\n", " ['Júnior Díaz plays for .'],\n", " ['Jodie Taylor plays for .'],\n", " ['Robin Olsen plays for .'],\n", " ['Héctor Herrera plays for .'],\n", " ['Sebastian Giovinco plays for .'],\n", " ['Rodrigo plays for .'],\n", " ['Fernando Gaviria plays for .'],\n", " ['Oleksandr Aliyev plays for .'],\n", " ['Florian Thauvin plays for .'],\n", " ['Kim Bo-kyung plays for .'],\n", " ['Thorgan Hazard plays for .'],\n", " ['Gotoku Sakai plays for .'],\n", " ['Odion Ighalo plays for .'],\n", " ['Jasmin Glaesser plays for .'],\n", " ['Eliaquim Mangala plays for .'],\n", " ['Felipe Melo plays for .'],\n", " ['Gábor Király plays for .'],\n", " ['Herculez Gomez plays for .'],\n", " ['Paulo da Silva plays for .'],\n", " ['Héctor Moreno plays for .'],\n", " ['Cacau plays for .'],\n", " ['Ion Izagirre plays for .'],\n", " ['Denis Cheryshev plays for .'],\n", " ['Anthony Annan plays for .'],\n", " ['Darius Songaila plays for .'],\n", " ['Morgan De Sanctis plays for .'],\n", " ['Joe Ingles plays for .'],\n", " ['Paco Alcácer plays for .'],\n", " ['Sara Däbritz plays for .'],\n", " ['Nikola Mirotić plays for .'],\n", " ['Adlène Guedioura plays for .'],\n", " ['Fábio Coentrão plays for .'],\n", " ['Scott Carson plays for .'],\n", " ['Granit Xhaka plays for .'],\n", " ['Ashkan Dejagah plays for .'],\n", " ['Derrick Rose plays for .'],\n", " ['Makoto Hasebe plays for .'],\n", " ['William Troost-Ekong plays for .'],\n", " ['Mauro Zárate plays for .'],\n", " ['Seydou Doumbia plays for .'],\n", " ['Tomáš Pekhart plays for .'],\n", " ['Jeffrén Suárez plays for .'],\n", " ['Kurt Zouma plays for .'],\n", " ['Nicolás Otamendi plays for .'],\n", " ['Silvestre Varela plays for .'],\n", " ['Hiroki Sakai plays for .'],\n", " ['Geoffrey Kondogbia plays for .'],\n", " ['Antonio Rüdiger plays for .'],\n", " ['Danko Lazović plays for .'],\n", " ['Admir Mehmedi plays for .'],\n", " ['Javier Aquino plays for .'],\n", " ['Kelsey Plum plays for .'],\n", " ['Teemu Pukki plays for .'],\n", " ['Grafite plays for .'],\n", " ['Lisa Brennauer plays for .'],\n", " ['Dejan Lovren plays for .'],\n", " ['Niki Terpstra plays for .'],\n", " ['Marcelinho Paraíba plays for .'],\n", " ['Mix Diskerud plays for .'],\n", " ['David Ospina plays for .'],\n", " ['Alexander Sørloth plays for .'],\n", " ['Manuel Fernandes plays for .'],\n", " ['Marek Saganowski plays for .'],\n", " ['Gabriel Barbosa plays for .'],\n", " ['Besart Abdurahimi plays for .'],\n", " ['Matthew Spiranovic plays for .'],\n", " ['Josip Tadić plays for .'],\n", " ['Younis Mahmoud plays for .'],\n", " ['Jordan Ayew plays for .'],\n", " ['Miguel Lopes plays for .'],\n", " ['Martin Hansen plays for .'],\n", " ['Pierre Bengtsson plays for .'],\n", " ['Taye Taiwo plays for .'],\n", " ['David Carney plays for .'],\n", " ['Ángel Guirado plays for .'],\n", " ['Roberto Jiménez Gago plays for .'],\n", " ['Karen Carney plays for .'],\n", " ['Amin Younes plays for .'],\n", " ['Javier Balboa plays for .'],\n", " ['Francisco Javier Rodríguez plays for .'],\n", " ['Éder plays for .'],\n", " ['Daniëlle van de Donk plays for .'],\n", " ['Reza Ghoochannejhad plays for .'],\n", " ['Kaylyn Kyle plays for .'],\n", " ['André Lotterer plays for .'],\n", " ['Daniel Wass plays for .'],\n", " ['Matías Fernandez plays for .'],\n", " ['Harry Kane plays for .'],\n", " ['Son Heung-min plays for .'],\n", " ['Jhonny Acosta plays for .'],\n", " ['Cléopatre Darleux plays for .'],\n", " ['Tony Gallopin plays for .'],\n", " ['Yann Sommer plays for .'],\n", " ['Eniola Aluko plays for .'],\n", " ['Tyson Chandler plays for .'],\n", " ['Anthony Martial plays for .'],\n", " ['Greg Henderson plays for .'],\n", " ['Kiko Casillas plays for .'],\n", " ['Nilla Fischer plays for .'],\n", " ['Leon Balogun plays for .'],\n", " ['James Milner plays for .'],\n", " ['Cameron Meyer plays for .'],\n", " ['Benjamin Pavard plays for .'],\n", " ['Luís Leal plays for .'],\n", " ['Renato Sanches plays for .'],\n", " ['Mathew Ryan plays for .'],\n", " ['Shuichi Gonda plays for .'],\n", " ['Pierre-Emile Højbjerg plays for .'],\n", " ['Simon Mignolet plays for .'],\n", " ['Ben Sahar plays for .'],\n", " ['Mana Iwabuchi plays for .'],\n", " ['Desiree Scott plays for .'],\n", " ['Quinn plays for .'],\n", " ['Viktor Fischer plays for .'],\n", " ['Ron-Robert Zieler plays for .'],\n", " ['Alex Sandro plays for .'],\n", " ['Damien Le Tallec plays for .'],\n", " ['Tiago Mendes plays for .'],\n", " ['Martin Ødegaard plays for .'],\n", " ['Salvatore Bocchetti plays for .'],\n", " ['Olarenwaju Kayode plays for .'],\n", " ['Fraser Forster plays for .'],\n", " ['Corentin Tolisso plays for .'],\n", " ['Walter Pandiani (CR7 su papá) plays for .'],\n", " ['Justo Villar plays for .'],\n", " ['Francisco Arrué plays for .'],\n", " ['Abel Aguilar plays for .'],\n", " ['Esmaël Gonçalves plays for .'],\n", " ['Sulley Muntari plays for .'],\n", " ['Izet Hajrović plays for .'],\n", " ['Ragnar Klavan plays for .'],\n", " ['Didier Zokora plays for .'],\n", " ['Oscar Ustari plays for .'],\n", " ['Mitchell Langerak plays for .'],\n", " ['Yassine Bounou plays for .'],\n", " ['Hakim Ziyech plays for .'],\n", " ['Lydia Williams plays for .'],\n", " ['Gabriel Jesus plays for .'],\n", " ['Álvaro Fernández plays for .'],\n", " ['Abdoulaye Ba plays for .'],\n", " ['Julian Draxler plays for .'],\n", " ['Stoycho Mladenov plays for .'],\n", " ['Raphaël Guerreiro plays for .'],\n", " ['Simão Sabrosa plays for .'],\n", " ['Anouk Hoogendijk plays for .'],\n", " ['Emanuel Pogatetz plays for .'],\n", " ['Yannick Carrasco plays for .'],\n", " ['Marko Arnautović plays for .'],\n", " ['Bruno Uvini plays for .'],\n", " ['Lukáš Hrádecký plays for .'],\n", " ['Charles Itandje plays for .'],\n", " ['Ján Mucha plays for .'],\n", " ['Florent Piétrus plays for .'],\n", " ['Riyad Mahrez plays for .'],\n", " ['Andre Iguodala plays for .'],\n", " ['Lasse Norman Hansen plays for .'],\n", " ['Nikos Zisis plays for .'],\n", " ['Alou Diarra plays for .'],\n", " ['Przemysław Tytoń plays for .'],\n", " ['Lucas Moura plays for .'],\n", " ['Álvaro Morata plays for .'],\n", " ['Amandine Henry plays for .'],\n", " ['Jefferson Farfán plays for .'],\n", " ['Martin Braithwaite plays for .'],\n", " ['Tom Heaton plays for .'],\n", " ['Carlos Salcedo plays for .'],\n", " ['Gabriel Torje plays for .'],\n", " ['Emily van Egmond plays for .'],\n", " ['Nicolás Laprovíttola plays for .'],\n", " ['Simon Clarke plays for .'],\n", " ['Elias Kachunga plays for .'],\n", " ['Adrián López Álvarez plays for .'],\n", " ['Maurice Edu plays for .'],\n", " ['Hatem Ben Arfa plays for .'],\n", " ['Nelson Oliveira plays for .'],\n", " ['Aco Stojkov plays for .'],\n", " ['Charlie Davies plays for .'],\n", " ['Carlos Fernandes plays for .'],\n", " ['Thaisa plays for .'],\n", " ['Álvaro Saborío plays for .'],\n", " ['Gabriel Cichero plays for .'],\n", " ['Fernandinho plays for .'],\n", " ['Vladimir Gabulov plays for .'],\n", " ['Taylor Rochestie plays for .'],\n", " ['Sven Bender plays for .'],\n", " ['Matías Aguirregaray plays for .'],\n", " ['Wilfried Zaha plays for .'],\n", " ['Ibrahim Afellay plays for .'],\n", " ['Mateo Kovačić plays for .'],\n", " ['Matteo Darmian plays for .'],\n", " ['Nathan Jawai plays for .'],\n", " ['Jérémy Ménez plays for .'],\n", " ['Marc Bartra plays for .'],\n", " ['Éric Djemba-Djemba plays for .'],\n", " ['Tarik Elyounoussi plays for .'],\n", " ['Yacine Brahimi plays for .'],\n", " ['Omar Bravo plays for .'],\n", " ['Yuri Zhirkov plays for .'],\n", " ['Antonio Valencia plays for .'],\n", " ['Kenneth Vermeer plays for .'],\n", " ['Dmytro Chyhrynskyi plays for .'],\n", " ['Juan Manuel Iturbe plays for .'],\n", " ['Julian de Guzman plays for .'],\n", " ['Alexander Merkel plays for .'],\n", " ['Roman Eremenko plays for .'],\n", " ['Lars Bender plays for .'],\n", " ['Suk Hyun-jun plays for .'],\n", " ['Emre Mor plays for .'],\n", " ['Zoran Tošić plays for .'],\n", " ['Jonathan dos Santos plays for .'],\n", " ['Jonathan Mensah plays for .'],\n", " ['Enzo Fernández plays for .'],\n", " ['Kim Young-gwon plays for .'],\n", " ['Oscar Pérez Rojas plays for .'],\n", " ['Astrit Ajdarević plays for .'],\n", " ['Rolf Feltscher plays for .'],\n", " ['Vedran Ćorluka plays for .'],\n", " ['Darren Randolph plays for .'],\n", " ['Ivan Pelizzoli plays for .'],\n", " ['Radomir Đalović plays for .'],\n", " ['Adam Nemec plays for .'],\n", " ['Kristie Mewis plays for .'],\n", " ['Hannes Þór Halldórsson plays for .'],\n", " ['Valon Berisha plays for .'],\n", " ['Marco Donadel plays for .'],\n", " ['Ola Toivonen plays for .'],\n", " ['Winston Reid plays for .'],\n", " ['Max Kruse plays for .'],\n", " ['Saki Kumagai plays for .'],\n", " ['Branko Ilić plays for .'],\n", " ['Răzvan Raț plays for .'],\n", " ['Robert Snodgrass plays for .'],\n", " ['Viola plays for .'],\n", " ['Klay Thompson plays for .'],\n", " ['Stefan Nikolić plays for .'],\n", " ['Carlos Sainz Jr plays for .'],\n", " ['Andressa Alves da Silva plays for .'],\n", " ['Álvaro Negredo plays for .'],\n", " ['Michail Antonio plays for .'],\n", " ['José Bosingwa plays for .'],\n", " ['Atsuto Uchida plays for .'],\n", " ['Lisa Dahlkvist plays for .'],\n", " ['James Troisi plays for .'],\n", " ['Yacouba Sylla plays for .'],\n", " ['Simon Vukčević plays for .'],\n", " ['Cristian Gamboa plays for .'],\n", " ['Elisa Longo Borghini plays for .'],\n", " ['Roberto Soldado plays for .'],\n", " ['Diana Matheson plays for .'],\n", " ['Steven Caulker plays for .'],\n", " ['Ibrahima Baldé plays for .'],\n", " ['Max Meyer plays for .'],\n", " ['Mbark Boussoufa plays for .'],\n", " ['Achille Emaná plays for .'],\n", " ['Patrice Bernier plays for .'],\n", " ['Ivan Vicelich plays for .'],\n", " ['Islam Slimani plays for .'],\n", " ['Dani Ceballos plays for .'],\n", " ['Lucas Digne plays for .'],\n", " ['Nemanja Matić plays for .'],\n", " ['Andreas Pereira plays for .'],\n", " ['Franck Dja Djédjé plays for .'],\n", " ['Ethan Ampadu plays for .'],\n", " ['R.A. Dickey plays for .'],\n", " ['Yukari Kinga plays for .'],\n", " ['Ryan Bertrand plays for .'],\n", " ['Ed Clancy plays for .'],\n", " ['Holger Badstuber plays for .'],\n", " ['Cristian Săpunaru plays for .'],\n", " ['Elinton Andrade plays for .'],\n", " ['Siem de Jong plays for .'],\n", " ['Carlos Bueno plays for .'],\n", " ['Loïc Rémy plays for .'],\n", " ['Kozue Ando plays for .'],\n", " ['Jimmy Durmaz plays for .'],\n", " ['Rafael Pereira da Silva plays for .'],\n", " ['Óscar Duarte plays for .'],\n", " ['Michael Hector plays for .'],\n", " ['Alex McCarthy plays for .'],\n", " ['Dzsenifer Marozsán plays for .'],\n", " ['Nélson Oliveira plays for .'],\n", " ['Fabio Aru plays for .'],\n", " ['Sacha Kljestan plays for .'],\n", " ['Sofiane Feghouli plays for .'],\n", " ['Emerson Palmieri plays for .'],\n", " ['Hristijan Kirovski plays for .'],\n", " ['Melanie Behringer plays for .'],\n", " ['Hernanes plays for .'],\n", " ['Isabelle Yacoubou plays for .'],\n", " ['Mauricio Isla plays for .'],\n", " ['Hakan Çalhanoğlu plays for .'],\n", " ['Douglas dos Santos plays for .'],\n", " ['Sinan Bolat plays for .'],\n", " ['Esteban Chaves plays for .'],\n", " ['Marcos Lopes plays for .'],\n", " ['J. J. Barea plays for .'],\n", " ['Mario Suárez Mata plays for .'],\n", " ['Stine Bredal Oftedal plays for .'],\n", " ['Njazi Kuqi plays for .'],\n", " ['Jesús Navas plays for .'],\n", " ['Shane Duffy plays for .'],\n", " ['Willy Hernangómez plays for .'],\n", " ['Richard Keogh plays for .'],\n", " ['Rafael Bastos plays for .'],\n", " ['Carlos Beltrán plays for .'],\n", " ['Nelson Cruz plays for .'],\n", " ['Fiodor Smolov plays for .'],\n", " ['Boban Marjanović plays for .'],\n", " ['Fabián Carini plays for .'],\n", " ['Shelina Zadorsky plays for .'],\n", " ['Pavel Pogrebnyak plays for .'],\n", " ['Goran Pandev plays for .'],\n", " ['Marc Janko plays for .'],\n", " ['Jamal Alioui plays for .'],\n", " ['Mohammadou Idrissou plays for .'],\n", " ['Ousmane Dembélé plays for .'],\n", " ['Bauke Mollema plays for .'],\n", " ['Kalu Uche plays for .'],\n", " ['Burak Yılmaz plays for .'],\n", " ['Jimmy Butler plays for .'],\n", " ['Eduardo da Silva plays for .'],\n", " ['Jefferson Louis plays for .'],\n", " ['Diomansy Kamara plays for .'],\n", " [\"Franck Songo'o plays for .\"],\n", " ['Marco Rojas plays for .'],\n", " ['Aarón Ñíguez plays for .'],\n", " ['Victor Lindelöf plays for .'],\n", " ['Iván Kaviedes plays for .'],\n", " ['Nikola Kalinić plays for .'],\n", " ['Jajá plays for .'],\n", " ['Iván Zarandona plays for .'],\n", " ['DeAndre Yedlin plays for .'],\n", " ['Ikechi Anya plays for .'],\n", " ['Anthony Lopes plays for .'],\n", " ['Clemente Rodríguez plays for .'],\n", " ['Jan Oblak plays for .'],\n", " ['Ritchie De Laet plays for .'],\n", " ['Lassana Diarra plays for .'],\n", " ['Fatos Bećiraj plays for .'],\n", " ['Kalidou Koulibaly plays for .'],\n", " ['Kostas Mitroglou plays for .'],\n", " ['Mario Lemina plays for .'],\n", " ['Mindaugas Kalonas plays for .'],\n", " ['Édouard Mendy plays for .'],\n", " ['Giovanni Sio plays for .'],\n", " ['Tijani Belaïd plays for .'],\n", " ['Park Joo-ho plays for .'],\n", " ['Emir Spahić plays for .'],\n", " ['Nikica Jelavić plays for .'],\n", " ['Erich Brabec plays for .'],\n", " ['Christian Cueva plays for .'],\n", " ['Yevhen Konoplyanka plays for .'],\n", " ['Paulo Dybala plays for .'],\n", " ['Emanuel Herrera plays for .'],\n", " ['Ludovic Obraniak plays for .'],\n", " ['Kleyr Vieira dos Santos plays for .'],\n", " ['Andriy Yakovlev plays for .'],\n", " ['DeMarcus Cousins plays for .'],\n", " ['Ross McCormack plays for .'],\n", " ['Taylor Phinney plays for .'],\n", " ['Maksim Shatskikh plays for .'],\n", " ['Abby Erceg plays for .'],\n", " ['Yukiya Arashiro plays for .'],\n", " ['Jason Denayer plays for .'],\n", " [\"Jolien D'Hoore plays for .\"],\n", " ['Marco Reus plays for .'],\n", " ['Michael Matthews plays for .'],\n", " ['Halil Altıntop plays for .'],\n", " ['Diego Tardelli plays for .'],\n", " ['Isaac Promise plays for .'],\n", " ['Estelle Nze Minko plays for .'],\n", " ['Sergio Henao plays for .'],\n", " ['Andriy Yarmolenko plays for .'],\n", " ['Kamil Grosicki plays for .'],\n", " ['Fabinho plays for .'],\n", " ['Ishak Belfodil plays for .'],\n", " ['Tosaint Ricketts plays for .'],\n", " ['Linda Sembrant plays for .'],\n", " ['Tuncay Şanlı plays for .'],\n", " ['Hameur Bouazza plays for .'],\n", " ['Vladimír Weiss plays for .'],\n", " ['Bernard Mendy plays for .'],\n", " ['Matt Miazga plays for .'],\n", " ['Marcos Alonso plays for .'],\n", " ['Liassine Cadamuro plays for .'],\n", " ['Adam Federici plays for .'],\n", " ['Akaki Khubutia plays for .'],\n", " ['Miloš Teodosić plays for .'],\n", " ['Ellen White plays for .'],\n", " ['Román Torres plays for .'],\n", " ['Brown Ideye plays for .'],\n", " ['Trixi Worrack plays for .'],\n", " ['Sead Kolašinac plays for .'],\n", " ['Bernardo Silva plays for .'],\n", " ['Nils Petersen plays for .'],\n", " ['Oriol Romeu plays for .'],\n", " ['Adolfo Machado plays for .'],\n", " ['Filipe Machado Nascimento plays for .'],\n", " ['Rubén Iván Martínez plays for .'],\n", " ['Josephine Henning plays for .'],\n", " ['Dani Carvajal plays for .'],\n", " ['Joël Matip plays for .'],\n", " ['Marcus Berg plays for .'],\n", " ['Julio César de León plays for .'],\n", " ['Salomón Rondón plays for .'],\n", " ['Hajime Hosogai plays for .'],\n", " ['Edgar Ié plays for .'],\n", " ['Martín Montoya plays for .'],\n", " ['Lucas Piazón plays for .'],\n", " ['Markus Rosenberg plays for .'],\n", " ['Ognjen Vranješ plays for .'],\n", " ['Róbinson Zapata plays for .'],\n", " ['Sébastien Pocognoli plays for .'],\n", " ['Anders Lindegaard plays for .'],\n", " ['Jordan Henderson plays for .'],\n", " ['Josip Drmić plays for .'],\n", " ['Aleksandr Kokorin plays for .'],\n", " ['Juan Bernat plays for .'],\n", " ['Miranda plays for .'],\n", " ['Egan Bernal plays for .'],\n", " ['Camille Abily plays for .'],\n", " ['Stefan Maierhofer plays for .'],\n", " ['Matthieu Dossevi plays for .'],\n", " ['Bafétimbi Gomis plays for .'],\n", " ['Ignatas Konovalovas plays for .'],\n", " ['Karina Maruyama plays for .'],\n", " ['Adreian Payne plays for .'],\n", " ['Enzo Maresca plays for .'],\n", " ['Tomáš Vaclík plays for .'],\n", " ['Zack Steffen plays for .'],\n", " ['Ricardo Oliveira plays for .'],\n", " ['Yun Suk-young plays for .'],\n", " ['Giannelli Imbula plays for .'],\n", " ['Lorenzo Insigne plays for .'],\n", " ['Malcom plays for .'],\n", " ['Albert Bunjaku plays for .'],\n", " ['Victor Obinna plays for .'],\n", " ['William Carvalho plays for .'],\n", " ['Miguel Veloso plays for .'],\n", " ['Felipe Anderson plays for .'],\n", " ['Isaac Cuenca plays for .'],\n", " ['Luis Antonio Jiménez plays for .'],\n", " ['Curtis Davies plays for .'],\n", " ['Dan Ito plays for .'],\n", " ['Odysseas Vlachodimos plays for .'],\n", " ['Eljero Elia plays for .'],\n", " ['Renato Augusto plays for .'],\n", " ['Milan Mačvan plays for .'],\n", " ['Vivianne Miedema plays for .'],\n", " ['Fabian Schär plays for .'],\n", " ['Ashleigh Moolman-Pasio plays for .'],\n", " ['Marcus Rashford plays for .'],\n", " ['André Gomes plays for .'],\n", " ['Dominique Malonga plays for .'],\n", " ['Max Verstappen plays for .'],\n", " ['Mehdi Abeid plays for .'],\n", " ['Alanna Kennedy plays for .'],\n", " ['Ahmed Hegazi plays for .'],\n", " ['Alen Halilović plays for .'],\n", " ['Kenny Miller plays for .'],\n", " ['Dimitris Papadopoulos plays for .'],\n", " ['Adriano Correia Claro plays for .'],\n", " ['Fran Mérida plays for .'],\n", " ['Idrissa Gueye plays for .'],\n", " ['Shahid Afridi plays for .'],\n", " ['Jurica Buljat plays for .'],\n", " ['Adrianna Franch plays for .'],\n", " ['Ludovic Giuly plays for .'],\n", " ['Nastja Čeh plays for .'],\n", " ['Zé Eduardo plays for .'],\n", " ['Riccardo Montolivo plays for .'],\n", " ['Benedikt Höwedes plays for .'],\n", " ['Luka Jović plays for .'],\n", " ['José Holebas plays for .'],\n", " ['Yasuhito Endo plays for .'],\n", " ['Artem Dzyuba plays for .'],\n", " ['Moussa Sow plays for .'],\n", " ['Tomáš Kalas plays for .'],\n", " ['Luis Aguiar plays for .'],\n", " ['Yossi Benayoun plays for .'],\n", " ['Nick Calathes plays for .'],\n", " ['Jorge Ribeiro plays for .'],\n", " ['Wilfried Bony plays for .'],\n", " ['Jamal Blackman plays for .'],\n", " ['Diego Alves plays for .'],\n", " ['Filip Đuričić plays for .'],\n", " ['Roy Carroll plays for .'],\n", " ['Mathieu Valbuena plays for .'],\n", " ['Danilo Cirino de Oliveira plays for .'],\n", " ['Orlando Sá plays for .'],\n", " ['Sérgio Oliveira plays for .'],\n", " ['Miloš Krasić plays for .'],\n", " ['Javad Nekounam plays for .'],\n", " ['Stina Blackstenius plays for .'],\n", " ['James Chester plays for .'],\n", " ...],\n", " 'labels': [[[\" United States women's national soccer team\"]],\n", " [[' FC Barcelona']],\n", " [[' Juventus F.C.']],\n", " [[' Los Angeles Lakers']],\n", " [[' Bingoal-Chevalmeire']],\n", " [[' A.C. Milan']],\n", " [[' Brazil national football team']],\n", " [[' Independiente Santa Fe']],\n", " [[' OL Reign']],\n", " [[' FC Barcelona Bàsquet']],\n", " [[' West Ham United F.C.']],\n", " [[' FC Bayern Munich']],\n", " [[' Juventus F.C.']],\n", " [[' New York City FC']],\n", " [[' Brooklyn Nets']],\n", " [[' Antalyaspor']],\n", " [[' Mercedes']],\n", " [[' São José Esporte Clube']],\n", " [[' Japan Fed Cup team']],\n", " [[' Juventus F.C.']],\n", " [[' Atlético Madrid']],\n", " [[' ACF Fiorentina']],\n", " [[' Zhejiang Professional F.C.']],\n", " [[' Israel Start-Up Nation']],\n", " [[' A.C. Monza']],\n", " [[' FC Barcelona Femení']],\n", " [[' FC Bayern Munich']],\n", " [[\" United States women's national soccer team\"]],\n", " [[' Hebei F.C.']],\n", " [[' Quick-Step Alpha Vinyl Team']],\n", " [[' Colombia national football team']],\n", " [[' OL Reign']],\n", " [[' Club Atlético Peñarol']],\n", " [[' Audax Italiano']],\n", " [[' NJ/NY Gotham FC']],\n", " [[' FC Rosengård']],\n", " [[' LA Galaxy']],\n", " [[' Royal Challengers Bangalore']],\n", " [[' Alpine F1 Team']],\n", " [[' Chelsea F.C.']],\n", " [[' Vissel Kobe']],\n", " [[' Neftchi Baku PFC']],\n", " [[' Argentina national football team']],\n", " [[' Jumbo-Visma Women']],\n", " [[' Real Madrid CF']],\n", " [[' São Paulo FC']],\n", " [[' Boca Juniors']],\n", " [[' A.C. Milan']],\n", " [[' LA Galaxy']],\n", " [[' Vitória S.C.']],\n", " [[' Tampa Bay Rowdies']],\n", " [[' Paris Saint-Germain F.C.']],\n", " [[' Minnesota Lynx']],\n", " [[' Juventus F.C.']],\n", " [[' Chicago Fire FC']],\n", " [[' Pallacanestro Varese']],\n", " [[' FC Bayern Munich']],\n", " [[' Unione Sportiva Sassuolo Calcio']],\n", " [[' Trek–Segafredo']],\n", " [[' Atlas F.C.']],\n", " [[' Chicago Bulls']],\n", " [[' FC Groningen']],\n", " [[' Houston Rockets']],\n", " [[' AS Monaco FC']],\n", " [[' LA Galaxy']],\n", " [[' Coritiba F.C.']],\n", " [[' Arsenal F.C.']],\n", " [[' FC Bayern Munich']],\n", " [[' Swiss national football team']],\n", " [[' Los Angeles Lakers']],\n", " [[' Matrix Fitness']],\n", " [[' Horoya AC']],\n", " [[' Lotto–Soudal']],\n", " [[' Seattle Storm']],\n", " [[' Parma Calcio 1913']],\n", " [[' Washington Spirit']],\n", " [[' France national association football team']],\n", " [[' Egypt national football team']],\n", " [[' Netherlands national association football team']],\n", " [[' West Ham United F.C.']],\n", " [[' Toronto FC']],\n", " [[' Los Angeles Lakers']],\n", " [[' Sociedad Deportiva Huesca']],\n", " [[' Japan national football team']],\n", " [[' Crystal Palace F.C.']],\n", " [[' Standard Liège']],\n", " [[' FC Bayern Munich']],\n", " [[' Portland Thorns FC']],\n", " [[' France national association football team']],\n", " [[' Associação Académica de Coimbra – O.A.F.']],\n", " [[' Algeria national football team']],\n", " [[' Bora-Hansgrohe']],\n", " [[' Costa Rica national football team']],\n", " [[' Real Madrid CF']],\n", " [[' Cofidis']],\n", " [[' Germany national association football team']],\n", " [[' SC Freiburg']],\n", " [[' Trek–Segafredo']],\n", " [[' Paraguay national football team']],\n", " [[' Rayo OKC']],\n", " [[' Manchester United F.C.']],\n", " [[' Club de Fútbol Monterrey']],\n", " [[' Inter Miami CF']],\n", " [[' AG2R Citroën Team']],\n", " [[' Fleury Loiret HB']],\n", " [[' FC Bayern Munich']],\n", " [[' Work Service-Vitalcare-Dynatek']],\n", " [[' Brooklyn Nets']],\n", " [[' Scuderia Ferrari']],\n", " [[\" Norway women's national football team\"]],\n", " [[' U.C. Sampdoria']],\n", " [[' EF Education-Nippo']],\n", " [[' Aalesunds FK']],\n", " [[' Arsenal W.F.C.']],\n", " [[' Chelsea F.C.']],\n", " [[' Real Madrid CF']],\n", " [[' Galatasaray S.K.']],\n", " [[' Astana Qazaqstan Team']],\n", " [[' Al Ahli Saudi FC']],\n", " [[' Trabzonspor']],\n", " [[' Clube Atlético Mineiro']],\n", " [[' Real Madrid Baloncesto']],\n", " [[' Trek–Segafredo']],\n", " [[' Sociedade Esportiva Palmeiras']],\n", " [[' Ineos Grenadiers']],\n", " [[' Swansea City A.F.C.']],\n", " [[' Germany national association football team']],\n", " [[' Clube de Regatas do Flamengo']],\n", " [[' FC Minaj']],\n", " [[' SD Worx']],\n", " [[' Brazil national football team']],\n", " [[' Maccabi Haifa F.C.']],\n", " [[' Paris Saint-Germain F.C.']],\n", " [[' Los Angeles Clippers']],\n", " [[' Paris Saint-Germain Féminine']],\n", " [[' Olympiacos F.C.']],\n", " [[' Inter Milan']],\n", " [[' Houston Dash']],\n", " [[' A.C. Milan']],\n", " [[' F.C. Porto']],\n", " [[' FC Barcelona']],\n", " [[' Senegal national association football team']],\n", " [[' Chicago Red Stars']],\n", " [[' Real Madrid CF']],\n", " [[' Sepang Racing Team']],\n", " [[' Stoke City F.C.']],\n", " [[' P.A.O.K. Thessaloniki F.C.']],\n", " [[' Olympique de Marseille']],\n", " [[' O.F.K. Beograd']],\n", " [[' Belgium national football team']],\n", " [[' Pune F.C.']],\n", " [[' ACF Fiorentina']],\n", " [[' Stabæk Fotball']],\n", " [[' Movistar Team']],\n", " [[' Cerro Porteño']],\n", " [[' Dundee United F.C.']],\n", " [[' Agrotikos Asteras F.C.']],\n", " [[' Germany national association football team']],\n", " [[' Jiangsu F.C.']],\n", " [[' SV Werder Bremen']],\n", " [[' Orlando City SC']],\n", " [[' Sevilla FC']],\n", " [[' FC Rosengård']],\n", " [[' Bristol City F.C.']],\n", " [[\" Sweden women's national association football team\"]],\n", " [[' Spain national association football team']],\n", " [[' Team Jumbo-Visma']],\n", " [[' Ceratizit–WNT Pro Cycling']],\n", " [[' Rosenborg BK']],\n", " [[' Hokkaido Consadole Sapporo']],\n", " [[' Comunicaciones FC']],\n", " [[' TSG 1899 Hoffenheim']],\n", " [[' Atlético Madrid']],\n", " [[' Olympique de Marseille']],\n", " [[' France national association football team']],\n", " [[' Team Jumbo-Visma']],\n", " [[' Team DSM']],\n", " [[' NJ/NY Gotham FC']],\n", " [[' Brisbane Roar FC W-League']],\n", " [[' Real Betis Balompié']],\n", " [[' Washington Mystics']],\n", " [[' Olympique Lyonnais Féminin']],\n", " [[' Lotto–Soudal']],\n", " [[' Phoenix Mercury']],\n", " [[' Yokohama FC']],\n", " [[' Real Sociedad']],\n", " [[' Borussia Dortmund']],\n", " [[' PSV Eindhoven']],\n", " [[' France national association football team']],\n", " [[' Tampa Bay Buccaneers']],\n", " [[' Aston Villa F.C.']],\n", " [[' Borussia Dortmund']],\n", " [[' Baniyas SC']],\n", " [[' Real Madrid CF']],\n", " [[' Manchester United F.C.']],\n", " [[' Atlético Madrid']],\n", " [[' Belgium national football team']],\n", " [[' Norway national association football team']],\n", " [[' Inter Milan']],\n", " [[\" United States men's national soccer team\"]],\n", " [[' Real Madrid CF']],\n", " [[' Shanghai Shenhua F.C.']],\n", " [[' SV Werder Bremen']],\n", " [[' Tottenham Hotspur F.C.']],\n", " [[' OGC Nice']],\n", " [[' Belgium national football team']],\n", " [[' A.S. Roma']],\n", " [[' Deportivo de La Coruña']],\n", " [[' Toronto Raptors']],\n", " [[' Hamburger SV']],\n", " [[' Belgium national football team']],\n", " [[' FC Ryukyu']],\n", " [[' Málaga CF']],\n", " [[' Udinese Calcio']],\n", " [[' Israel Start-Up Nation']],\n", " [[' San Antonio Spurs']],\n", " [[' Paris Saint-Germain F.C.']],\n", " [[' New York Knicks']],\n", " [[' Cleveland Cavaliers']],\n", " [[' F.C. Copenhagen']],\n", " [[' Club Atlético River Plate']],\n", " [[' Real Betis Balompié']],\n", " [[' Portland Thorns FC']],\n", " [[' FC Bayern Munich']],\n", " [[' France national association football team']],\n", " [[' Club Atlético Peñarol']],\n", " [[' Dalian Professional F.C.']],\n", " [[' Italy national association football team']],\n", " [[' Senegal national association football team']],\n", " [[' France national association football team']],\n", " [[' Lotto–Soudal']],\n", " [[' AFC Bournemouth']],\n", " [[' SC Rheindorf Altach']],\n", " [[' Denmark national association football team']],\n", " [[' Fenerbahçe SK']],\n", " [[' Galatasaray S.K.']],\n", " [[' Atlanta United FC']],\n", " [[' Swansea City A.F.C.']],\n", " [[' Spain national association football team']],\n", " [[' Cameroon national football team']],\n", " [[' FC Rosengård']],\n", " [[' Galatasaray S.K.']],\n", " [[' Italy national association football team']],\n", " [[' Morocco national football team']],\n", " [[' Accra Great Olympics F.C.']],\n", " [[' West Bromwich Albion F.C.']],\n", " [[' Netherlands national association football team']],\n", " [[' DR Congo national football team']],\n", " [[' Brazil national football team']],\n", " [[' FC Seoul']],\n", " [[' FC Bayern Munich']],\n", " [[' New Zealand national rugby union team']],\n", " [[\" United States women's national soccer team\"]],\n", " [[' Chelsea F.C.']],\n", " [[' Santos F.C.']],\n", " [[' Shanghai Port F.C.']],\n", " [[' Sevilla FC']],\n", " [[' Morocco national football team']],\n", " [[' Sweden national association football team']],\n", " [[' Hertha BSC']],\n", " [[' Manchester City W.F.C.']],\n", " [[' Portugal national association football team']],\n", " [[' TuS Haltern']],\n", " [[' Baniyas SC']],\n", " [[' 1. FFC Frankfurt']],\n", " [[' A.S. Roma']],\n", " [[' AFC Bournemouth']],\n", " [[' FC Koper']],\n", " [[' Wadi Degla SC']],\n", " [[' Al-Duhail SC']],\n", " [[' S.C. Braga']],\n", " [[' ACF Fiorentina']],\n", " [[' Real Betis Balompié']],\n", " [[' Brisbane Roar FC']],\n", " [[' Storey Racing']],\n", " [[' Israel Start-Up Nation']],\n", " [[' Arkéa–Samsic']],\n", " [[' Germany national association football team']],\n", " [[' Genoa CFC']],\n", " [[' FC Metz']],\n", " [[' Los Angeles Sparks']],\n", " [[' West Ham United F.C.']],\n", " [[' Villarreal CF']],\n", " [[' Liga Deportiva Alajuelense']],\n", " [[' Club Universidad Nacional']],\n", " [[' Al Shabab FC']],\n", " [[' Sevilla FC']],\n", " [[' Chelsea F.C.']],\n", " [[' Olimpia Milano']],\n", " [[' Netherlands national association football team']],\n", " [[' Chile national football team']],\n", " [[' Croatia national association football team']],\n", " [[' Ineos Grenadiers']],\n", " [[' Tigres UANL']],\n", " [[' KFUM-Kameratene Oslo']],\n", " [[' Western New York Flash']],\n", " [[' Netherlands national association football team']],\n", " [[' KK Cedevita Olimpija']],\n", " [[' Melbourne Victory']],\n", " [[\" Fenerbahçe Men's Basketball\"]],\n", " [[' Manchester City W.F.C.']],\n", " [[' Sunderland A.F.C.']],\n", " [[' Belgium national football team']],\n", " [[' São Paulo FC']],\n", " [[' S.S. Sambenedettese Calcio']],\n", " [[' UAE Team Emirates']],\n", " [[' Australia Billie Jean King Cup team']],\n", " [[' Guangzhou Football Club']],\n", " [[' Atlético Junior']],\n", " [[' Brazil national football team']],\n", " [[' Chicago Red Stars']],\n", " [[' Club Nacional de Football']],\n", " [[' Mexico national football team']],\n", " [[' TotalEnergies']],\n", " [[' Wolverhampton Wanderers F.C.']],\n", " [[' Germany national association football team']],\n", " [[' Bologna F.C. 1909']],\n", " [[' US Orléans']],\n", " [[' Deportivo Saprissa']],\n", " [[' Club Tijuana']],\n", " [[' Spain national association football team']],\n", " [[' Olympiacos F.C.']],\n", " [[' C.S. Cartaginés']],\n", " [[' Juventus F.C.']],\n", " [[' Belgium national football team']],\n", " [[' Kayserispor']],\n", " [[' Portugal national association football team']],\n", " [[' UAE Team Emirates']],\n", " [[' Italy national association football team']],\n", " [[' Gazprom–RusVelo']],\n", " [[' Denmark national association football team']],\n", " [[' Swiss national football team']],\n", " [[' Valencia BC']],\n", " [[' Poland national association football team']],\n", " [[' McLaren']],\n", " [[' Borussia Dortmund']],\n", " [[' Cleveland Cavaliers']],\n", " [[' Hebei F.C.']],\n", " [[' UAE Team ADQ']],\n", " [[' Club Atlético Talleres']],\n", " [[' Toulon Saint-Cyr Var Handball']],\n", " [[' Portland Trail Blazers']],\n", " [[' Ineos Grenadiers']],\n", " [[' Ivory Coast national football team']],\n", " [[' A.S. Roma']],\n", " [[' Yokohama FC']],\n", " [[' Fenerbahçe SK']],\n", " [[' Real Madrid CF']],\n", " [[' UAE Team Emirates']],\n", " [[' Peru national football team']],\n", " [[' Portugal national association football team']],\n", " [[' France national association football team']],\n", " [[' Beşiktaş J.K.']],\n", " [[' Swiss national football team']],\n", " [[' Sydney FC']],\n", " [[' Cruzeiro E.C.']],\n", " [[' Burnley F.C.']],\n", " [[' CCC Team']],\n", " [[' Club Deportivo Universidad Católica']],\n", " [[' Everton F.C.']],\n", " [[' Parma Calcio 1913']],\n", " [[' West Ham United F.C.']],\n", " [[' Fleetwood Town F.C.']],\n", " [[' Fenerbahçe SK']],\n", " [[' Chelsea F.C. Women']],\n", " [[' Los Angeles Lakers']],\n", " [[' G.S. Iraklis Thessaloniki']],\n", " [[' NJ/NY Gotham FC']],\n", " [[' CR Vasco da Gama']],\n", " [[' S.L. Benfica']],\n", " [[' Spain national association football team']],\n", " [[' Inter Milan']],\n", " [[' Brazil national football team']],\n", " [[' FC Barcelona Femení']],\n", " [[' Team Jumbo-Visma']],\n", " [[' France national association football team']],\n", " [[' Guangzhou City F.C.']],\n", " [[' VfL Wolfsburg Women']],\n", " [[' Wuhan F.C.']],\n", " [[' Genoa CFC']],\n", " [[' Western New York Flash']],\n", " [[' Okinawa SV']],\n", " [[' C.D. Guadalajara']],\n", " [[' Hebei F.C.']],\n", " [[' Spain national association football team']],\n", " [[' SV Werder Bremen']],\n", " [[' England national association football team']],\n", " [[' France national association football team']],\n", " [[' Guinea-Bissau national football team']],\n", " [[' N.E.C.']],\n", " [[' Boavista F.C.']],\n", " [[' Mexico national football team']],\n", " [[' Czech Republic national beach soccer team']],\n", " [[' FC Yenisey Krasnoyarsk']],\n", " [[' Real Madrid CF']],\n", " [[' Quick-Step Alpha Vinyl Team']],\n", " [[' Costa Rica national football team']],\n", " [[\" Canada men's national soccer team\"]],\n", " [[' Poland national association football team']],\n", " [[' Russia national football team']],\n", " [[' Chile national football team']],\n", " [[' Real Madrid CF']],\n", " [[' Club Rubio Ñu']],\n", " [[' Senegal national association football team']],\n", " [[' A.C. Milan']],\n", " [[' Juventus F.C.']],\n", " [[' Roland Cogeas Edelweiss Squad']],\n", " [[' Salford City F.C.']],\n", " [[' Brooklyn Nets']],\n", " [[' Chicago Bulls']],\n", " [[' Kawasaki Frontale']],\n", " [[' KIF Örebro DFF']],\n", " [[' Israel Start-Up Nation']],\n", " [[' Estonia national football team']],\n", " [[' Germany national association football team']],\n", " [[' Rayo Vallecano']],\n", " [[' Bohemians 1905']],\n", " [[' FK AS Trenčín']],\n", " [[' UAE Team Emirates']],\n", " [[' Real Sociedad']],\n", " [[' Antalyaspor']],\n", " [[' LA Galaxy']],\n", " [[' E.C. Vitória']],\n", " [[' Waasland-Beveren']],\n", " [[' Club Atlético River Plate']],\n", " [[' En Avant de Guingamp']],\n", " [[' Spain national association football team']],\n", " [[' Astana Qazaqstan Team']],\n", " [[' Paris Saint-Germain F.C.']],\n", " [[' France national association football team']],\n", " [[' Manchester City F.C.']],\n", " [[' Team Jumbo-Visma']],\n", " [[' FC Bayern Munich']],\n", " [[' Quick-Step Alpha Vinyl Team']],\n", " [[' Portugal national association football team']],\n", " [[' Atlanta Hawks']],\n", " [[' Maccabi Haifa F.C.']],\n", " [[' Germany national association football team']],\n", " [[' Southampton F.C.']],\n", " [[' S.C. Internacional']],\n", " [[' Germany national association football team']],\n", " [[' Swiss national football team']],\n", " [[' Portugal national association football team']],\n", " [[' Juventus F.C.']],\n", " [[' 1. FC Nürnberg']],\n", " [[' Brazil national football team']],\n", " [[' FC Augsburg']],\n", " [[' Manchester City F.C.']],\n", " [[\" United States women's national soccer team\"]],\n", " [[' Tottenham Hotspur F.C.']],\n", " [[' Juventus F.C.']],\n", " [[' Tottenham Hotspur F.C.']],\n", " [[' Spain national association football team']],\n", " [[' Milwaukee Bucks']],\n", " [[' Melbourne Victory']],\n", " [[' Arsenal F.C.']],\n", " [[' Shanghai Shenhua F.C.']],\n", " [[' Sektzia Nes Tziona F.C.']],\n", " [[' Seinäjoen Jalkapallokerho']],\n", " [[' Olympique Lyonnais']],\n", " [[' Orlando Pride']],\n", " [[' Leeds United F.C.']],\n", " [[' FC Sion']],\n", " [[' Orlando City SC']],\n", " [[' Eintracht Braunschweig']],\n", " [[' Tiburones Rojos de Veracruz']],\n", " [[' C.D. Guadalajara']],\n", " [[' Gwangju FC']],\n", " [[' Angers SCO']],\n", " [[' Netherlands national association football team']],\n", " [[' Chelsea F.C. Women']],\n", " [[' ACF Fiorentina']],\n", " [[' POFC Botev Vratsa']],\n", " [[' Pirata F.C']],\n", " [[' Leicester City F.C.']],\n", " [[' FC Zenit Saint Petersburg']],\n", " [[' Seattle Sounders FC']],\n", " [[' Mexico national football team']],\n", " [[' Houston Dash']],\n", " [[' Galatasaray S.K.']],\n", " [[' Mumbai City FC']],\n", " [[' Élan Chalon']],\n", " [[' Atlético Sanluqueño CF']],\n", " [[' Manchester United W.F.C.']],\n", " [[' AFC Eskilstuna']],\n", " [[' Argentina national football team']],\n", " [[' Algeria national football team']],\n", " [[' Nigeria national football team']],\n", " [[' Nogoom FC']],\n", " [[' Hertha BSC']],\n", " [[' Shandong Taishan F.C.']],\n", " [[' FC Barcelona']],\n", " [[' Italy national association football team']],\n", " [[' Ivory Coast national football team']],\n", " [[\" Colo-Colo women's\"]],\n", " [[' Chicago Red Stars']],\n", " [[' A.S. Roma']],\n", " [[' Seoul E-Land FC']],\n", " [[' Germany national association football team']],\n", " [[' Germany national association football team']],\n", " [[' Charlotte Hornets']],\n", " [[' Comunicaciones FC']],\n", " [[' VfB Stuttgart']],\n", " [[' Italy national association football team']],\n", " [[' Brazil national football team']],\n", " [[' Liga Deportiva Alajuelense']],\n", " [[' Arsenal W.F.C.']],\n", " [[' Sweden national association football team']],\n", " [[' Mexico national football team']],\n", " [[' Italy national association football team']],\n", " [[' Spain national association football team']],\n", " [[' UAE Team Emirates']],\n", " [[' FC Rukh Lviv']],\n", " [[' Olympique de Marseille']],\n", " [[' South Korea national football team']],\n", " [[' Belgium national football team']],\n", " [[' Japan national football team']],\n", " [[' Nigeria national football team']],\n", " [[' TWENTY20 p/b Sho-Air']],\n", " [[' Valencia CF']],\n", " [[' Sociedade Esportiva Palmeiras']],\n", " [[' Szombathelyi Haladás']],\n", " [[' Seattle Sounders FC']],\n", " [[' Deportivo Toluca F.C.']],\n", " [[' PSV Eindhoven']],\n", " [[' VfB Stuttgart II']],\n", " [[' Astana Qazaqstan Team']],\n", " [[' Russia national football team']],\n", " [[' Helsingin Jalkapalloklubi']],\n", " [[' BC Rytas']],\n", " [[' A.S. Roma']],\n", " [[' Utah Jazz']],\n", " [[' Spain national association football team']],\n", " [[\" Germany women's national football team\"]],\n", " [[' FC Barcelona Bàsquet']],\n", " [[' Algeria national football team']],\n", " [[' Rio Ave F.C.']],\n", " [[' Manchester City F.C.']],\n", " [[' Swiss national football team']],\n", " [[' Iran national football team']],\n", " [[' Detroit Pistons']],\n", " [[' Eintracht Frankfurt']],\n", " [[' Nigeria national football team']],\n", " [[' ACF Fiorentina']],\n", " [[' Newcastle United F.C.']],\n", " [[' Legia Warsaw']],\n", " [[' Venezuela national football team']],\n", " [[' France national association football team']],\n", " [[' Argentina national football team']],\n", " [[' C.F. Os Belenenses']],\n", " [[' Japan national football team']],\n", " [[' Central African Republic national football team']],\n", " [[' Germany national association football team']],\n", " [[' NK Olimpija Ljubljana']],\n", " [[' Swiss national football team']],\n", " [[' Mexico national football team']],\n", " [[' Las Vegas Aces']],\n", " [[' Norwich City F.C.']],\n", " [[' Santa Cruz Futebol Clube']],\n", " [[' Ceratizit–WNT Pro Cycling']],\n", " [[' FC Zenit Saint Petersburg']],\n", " [[' TotalEnergies']],\n", " [[' Oeste Futebol Clube']],\n", " [[\" United States men's national soccer team\"]],\n", " [[' S.S.C. Napoli']],\n", " [[' Norway national association football team']],\n", " [[' Kayserispor']],\n", " [[' Legia Warsaw']],\n", " [[' Brazil national football team']],\n", " [[' North Macedonia national football team']],\n", " [[' Zhejiang Professional F.C.']],\n", " [[' Balıkesirspor']],\n", " [[' Talaba SC']],\n", " [[' Ghana national football team']],\n", " [[' Kayserispor']],\n", " [[' FC Ingolstadt 04']],\n", " [[' Sweden national association football team']],\n", " [[' Helsingin Jalkapalloklubi']],\n", " [[' Sydney FC']],\n", " [[' Philippines national football team']],\n", " [[' Olympiacos F.C.']],\n", " [[' Chelsea F.C. Women']],\n", " [[' S.S.C. Napoli']],\n", " [[' Al-Faisaly FC']],\n", " [[' Cruz Azul']],\n", " [[' FC Lokomotiv Moscow']],\n", " [[' Olympique Lyonnais']],\n", " [[' Iran national football team']],\n", " [[' Orlando Pride']],\n", " [[' Porsche']],\n", " [[' Denmark national association football team']],\n", " [[' Club Social y Deportivo Colo Colo']],\n", " [[' England national association football team']],\n", " [[' South Korea national football team']],\n", " [[' Municipal Pérez Zeledón']],\n", " [[' Brest Bretagne Handball']],\n", " [[' AG2R Citroën Team']],\n", " [[' Swiss national football team']],\n", " [[' Chelsea F.C. Women']],\n", " [[' Dallas Mavericks']],\n", " [[' France national association football team']],\n", " [[' UnitedHealthcare']],\n", " [[' Spain national association football team']],\n", " [[' Linköpings FC']],\n", " [[' Nigeria national football team']],\n", " [[' Liverpool F.C.']],\n", " [[' Team BikeExchange Jayco']],\n", " [[' France national association football team']],\n", " [[' São Tomé and Príncipe national football team']],\n", " [[' Portugal national association football team']],\n", " [[' Australia national association football team']],\n", " [[' Shimizu S-Pulse']],\n", " [[' Denmark national association football team']],\n", " [[' Belgium national football team']],\n", " [[' APOEL F.C.']],\n", " [[\" Japan women's national football team\"]],\n", " [[\" Canada women's national soccer team\"]],\n", " [[' OL Reign']],\n", " [[' Denmark national association football team']],\n", " [[' Germany national association football team']],\n", " [[' Brazil national football team']],\n", " [[' Montpellier Hérault Sport Club']],\n", " [[' Atlético Madrid']],\n", " [[' Norway national association football team']],\n", " [[' Hellas Verona F.C.']],\n", " [[' FC Shakhtar Donetsk']],\n", " [[' Southampton F.C.']],\n", " [[' Olympique Lyonnais']],\n", " [[' FC Lausanne-Sport']],\n", " [[' Club Social y Deportivo Colo Colo']],\n", " [[' Coquimbo Unido']],\n", " [[' Unión Magdalena']],\n", " [[' Anorthosis Famagusta FC']],\n", " [[' Al Ittihad FC']],\n", " [[' GNK Dinamo Zagreb']],\n", " [[' Cagliari Calcio']],\n", " [[' FC Pune City']],\n", " [[' Atlas F.C.']],\n", " [[' Australia national association football team']],\n", " [[' Morocco national football team']],\n", " [[' Morocco national football team']],\n", " [[' Arsenal W.F.C.']],\n", " [[' FC Barcelona']],\n", " [[' San Martín de Tucumán']],\n", " [[' Senegal national association football team']],\n", " [[' Germany national association football team']],\n", " [[' FC Kaisar']],\n", " [[' Portugal national association football team']],\n", " [[' NorthEast United FC']],\n", " [[' AFC Ajax Vrouwen']],\n", " [[' 1. FC Union Berlin']],\n", " [[' Belgium national football team']],\n", " [[' Stoke City F.C.']],\n", " [[' FC Twente']],\n", " [[' Finland national football team']],\n", " [[' Cameroon national football team']],\n", " [[' ŠK Slovan Bratislava']],\n", " [[' Orléans Loiret Basket']],\n", " [[' Algeria national football team']],\n", " [[' Miami Heat']],\n", " [[' Qhubeka Assos']],\n", " [[' AEK Athens B.C.']],\n", " [[' Charlton Athletic F.C.']],\n", " [[' Poland national association football team']],\n", " [[' Brazil national football team']],\n", " [[' Spain national association football team']],\n", " [[' Olympique Lyonnais']],\n", " [[' Alianza Lima']],\n", " [[' FC Barcelona']],\n", " [[' Aston Villa F.C.']],\n", " [[' Mexico national football team']],\n", " [[' Romania national association football team']],\n", " [[\" Australia women's national soccer team\"]],\n", " [[' Real Madrid Baloncesto']],\n", " [[' Qhubeka Assos']],\n", " [[' FC Ingolstadt 04']],\n", " [[' Club Atlético Osasuna']],\n", " [[' Philadelphia Union']],\n", " [[' FC Girondins de Bordeaux']],\n", " [[' Movistar Team']],\n", " [[' FK Vardar']],\n", " [[' New England Revolution']],\n", " [[' UD Vilafranquense']],\n", " [[' Associação Ferroviária de Esportes']],\n", " [[' D.C. United']],\n", " [[' FC Sion']],\n", " [[' Brazil national football team']],\n", " [[' FC Dinamo Moscow']],\n", " [[' KK Crvena Zvezda']],\n", " [[' Germany national association football team']],\n", " [[' Uruguay national football team']],\n", " [[' Crystal Palace F.C.']],\n", " [[' PSV Eindhoven']],\n", " [[' Croatia national association football team']],\n", " [[' Inter Milan']],\n", " [[' Cairns Taipans']],\n", " [[' Paris FC']],\n", " [[' Spain national association football team']],\n", " [[' Voltigeurs de Châteaubriant']],\n", " [[' TSG 1899 Hoffenheim']],\n", " [[' Algeria national football team']],\n", " [[' North Carolina FC']],\n", " [[' Russia national football team']],\n", " [[' Real Madrid CF']],\n", " [[' Los Angeles FC']],\n", " [[' A.E.K. Athens F.C.']],\n", " [[' Club Tijuana']],\n", " [[' Ottawa Fury FC']],\n", " [[' Kazakhstan national football team']],\n", " [[' FC Rostov']],\n", " [[' Germany national association football team']],\n", " [[' South Korea national football team']],\n", " [[' Turkey national association football team']],\n", " [[' PFC CSKA Moscow']],\n", " [[' Villarreal CF']],\n", " [[' FC Anzhi Makhachkala']],\n", " [[' Real Madrid Castilla']],\n", " [[' South Korea national football team']],\n", " [[' CF Pachuca']],\n", " [[' Örebro SK']],\n", " [[' Venezuela national football team']],\n", " [[' FC Lokomotiv Moscow']],\n", " [[' Republic of Ireland national association football team']],\n", " [[' Vicenza Calcio']],\n", " [[' FK Budućnost Podgorica']],\n", " [[' FC Dinamo Bucharest']],\n", " [[\" United States women's national soccer team\"]],\n", " [[' Iceland national association football team']],\n", " [[' Norway national association football team']],\n", " [[' CF Montréal']],\n", " [[' Sunderland A.F.C.']],\n", " [[' New Zealand national football team']],\n", " [[' 1. FC Union Berlin']],\n", " [[' Olympique Lyonnais Féminin']],\n", " [[' Urawa Red Diamonds']],\n", " [[' Rayo Vallecano']],\n", " [[' Scotland national football team']],\n", " [[' Clube Atlético Taboão da Serra']],\n", " [[' Golden State Warriors']],\n", " [[' LKS Nieciecza']],\n", " [[' Ferrari Grand Prix results']],\n", " [[\" Brazil women's national football team\"]],\n", " [[' Valencia CF']],\n", " [[' West Ham United F.C.']],\n", " [[' Trabzonspor']],\n", " [[' 1. FC Union Berlin']],\n", " [[' Paris Saint-Germain F.C.']],\n", " [[' Liaoning Whowin F.C.']],\n", " [[' Mali national football team']],\n", " [[' Enosis Neon Paralimni FC']],\n", " [[' Costa Rica national football team']],\n", " [[' Trek–Segafredo']],\n", " [[' Villarreal CF']],\n", " [[' Washington Spirit']],\n", " [[' Liverpool F.C.']],\n", " [[' Senegal national association football team']],\n", " [[' 1. FC Köln']],\n", " [[' KAA Gent']],\n", " [[' Gimnàstic de Tarragona']],\n", " [[' CF Montréal']],\n", " [[' Auckland City FC']],\n", " [[' Algeria national football team']],\n", " [[' Spain national association football team']],\n", " [[' France national association football team']],\n", " [[' Manchester United F.C.']],\n", " [[' Santos FC']],\n", " [[' Al-Shahaniya Sports Club']],\n", " [[' Chelsea F.C.']],\n", " [[' Toronto Blue Jays']],\n", " [[' Sanfrecce Hiroshima Regina']],\n", " [[' Southampton F.C.']],\n", " [[' JLT Condor']],\n", " [[' VfB Stuttgart II']],\n", " [[' Kayserispor']],\n", " [[' Goa ISL team']],\n", " [[' Netherlands national association football team']],\n", " [[' Argentinos Juniors']],\n", " [[' Çaykur Rizespor']],\n", " [[' SGS Essen']],\n", " [[' Sweden national association football team']],\n", " [[' Olympique Lyonnais']],\n", " [[' Costa Rica national football team']],\n", " [[' Jamaica national association football team']],\n", " [[' Crystal Palace F.C.']],\n", " [[' Olympique Lyonnais Féminin']],\n", " [[' A.E.K. Athens F.C.']],\n", " [[' Qhubeka Assos']],\n", " [[' New York Red Bulls']],\n", " [[' Algeria national football team']],\n", " [[' A.S. Roma']],\n", " [[' FK Shkëndija']],\n", " [[' FC Bayern Munich Women']],\n", " [[' São Paulo FC']],\n", " [[' CJM Bourges Basket']],\n", " [[' Clube de Regatas do Flamengo']],\n", " [[' Turkey national association football team']],\n", " [[' Brazil national football team']],\n", " [[' Turkey national association football team']],\n", " [[' Team BikeExchange Jayco']],\n", " [[' Lille OSC']],\n", " [[' CB Estudiantes']],\n", " [[' Spain national association football team']],\n", " [[\" Norway women's national handball team\"]],\n", " [[' PK-35 Vantaa']],\n", " [[' Manchester City F.C.']],\n", " [[' Republic of Ireland national association football team']],\n", " [[' Philadelphia 76ers']],\n", " [[' Huddersfield Town A.F.C.']],\n", " [[' América Futebol Clube (MG)']],\n", " [[' St. Louis Cardinals']],\n", " [[' Baltimore Orioles']],\n", " [[' Russia national football team']],\n", " [[' Dallas Mavericks']],\n", " [[' Juventud de Las Piedras']],\n", " [[\" Canada women's national soccer team\"]],\n", " [[' FC Dinamo Moscow']],\n", " [[' Genoa CFC']],\n", " [[' FC Basel']],\n", " [[\" Monts d'Or Azergues Foot\"]],\n", " [[' Maccabi Haifa F.C.']],\n", " [[' France national association football team']],\n", " [[' Trek–Segafredo']],\n", " [[' Unión Deportiva Almería']],\n", " [[' Beijing Guoan F.C.']],\n", " [[' Philadelphia 76ers']],\n", " [[' Legia Warsaw']],\n", " [[' Wealdstone F.C.']],\n", " [[' NorthEast United FC']],\n", " [[' PAS Giannina F.C.']],\n", " [[' New Zealand national football team']],\n", " [[' S.C. Braga']],\n", " [[' Sweden national association football team']],\n", " [[' Águilas CF']],\n", " [[' Hellas Verona F.C.']],\n", " [[' K.S.C. Lokeren Oost-Vlaanderen']],\n", " [[' Burgos CF']],\n", " [[\" United States men's national soccer team\"]],\n", " [[' Scotland national football team']],\n", " [[' Portugal national association football team']],\n", " [[' Club Atlético Colón']],\n", " [[' Slovenia national football team']],\n", " [[' Middlesbrough F.C.']],\n", " [[' Olympique de Marseille']],\n", " [[' Wisła Kraków']],\n", " [[' S.S.C. Napoli']],\n", " [[' S.L. Benfica']],\n", " [[' Gabon national football team']],\n", " [[' FK Kauno Žalgiris']],\n", " [[' Chelsea F.C.']],\n", " [[' Stade Rennais F.C.']],\n", " [[' Club Africain']],\n", " [[' South Korea national football team']],\n", " [[' Hamburger SV']],\n", " [[' Guizhou F.C.']],\n", " [[' FC Slovan Liberec']],\n", " [[' Peru national football team']],\n", " [[' Ukraine national association football team']],\n", " [[' Argentina national football team']],\n", " [[' FBC Melgar']],\n", " [[' Maccabi Haifa F.C.']],\n", " [[' Al-Faisaly SC']],\n", " [[' Speranța Nisporeni']],\n", " [[' Golden State Warriors']],\n", " [[' Fulham F.C.']],\n", " [[' EF Education-Nippo']],\n", " [[' FC Rukh Lviv']],\n", " [[' Western New York Flash']],\n", " [[' Bahrain Victorious']],\n", " [[' Belgium national football team']],\n", " [[' SD Worx']],\n", " [[' Germany national association football team']],\n", " [[' Team BikeExchange Jayco']],\n", " [[' FC Augsburg']],\n", " [[' Clube de Regatas do Flamengo']],\n", " [[' Kardemir Karabükspor']],\n", " [[\" France women's national handball team\"]],\n", " [[' Qhubeka Assos']],\n", " [[' West Ham United F.C.']],\n", " [[' Stade Rennais F.C.']],\n", " [[' Liverpool F.C.']],\n", " [[' Algeria national football team']],\n", " [[\" Canada men's national soccer team\"]],\n", " [[' Montpellier Hérault Sport Club']],\n", " [[' FC Pune City']],\n", " [[' Red Star F.C.']],\n", " [[' Al-Gharafa Sports Club']],\n", " [[' SC East Bengal']],\n", " [[\" United States men's national soccer team\"]],\n", " [[' Chelsea F.C.']],\n", " [[' Algeria national football team']],\n", " [[' Australia national association football team']],\n", " [[' FC VPK-Ahro Shevchenkivka']],\n", " [[' Virtus Pallacanestro Bologna']],\n", " [[' Arsenal F.C.']],\n", " [[' Seattle Sounders FC']],\n", " [[' Nigeria national football team']],\n", " [[' Trek–Segafredo']],\n", " [[' Bosnia and Herzegovina national football team']],\n", " [[' Portugal national association football team']],\n", " [[' Germany national association football team']],\n", " [[' Southampton F.C.']],\n", " [[' Deportivo Saprissa']],\n", " [[' Saba Qom F.C.']],\n", " [[' Club Atlético Osasuna']],\n", " [[' Arsenal F.C.']],\n", " [[' Spain national association football team']],\n", " [[' Liverpool F.C.']],\n", " [[' FC Krasnodar']],\n", " [[' Club Atlético Platense']],\n", " [[' Everton F.C.']],\n", " [[' Buriram United F.C.']],\n", " [[' Villarreal CF']],\n", " [[' Real Betis Balompié']],\n", " [[' Chelsea F.C.']],\n", " [[' Malmö FF']],\n", " [[' Bosnia and Herzegovina national football team']],\n", " [[' Independiente Santa Fe']],\n", " [[' West Bromwich Albion F.C.']],\n", " [[' Preston North End F.C.']],\n", " [[' England national association football team']],\n", " [[' Swiss national football team']],\n", " [[' ACF Fiorentina']],\n", " [[' Spain national association football team']],\n", " [[' São Paulo FC']],\n", " [[' Ineos Grenadiers']],\n", " [[' Olympique Lyonnais Féminin']],\n", " [[' FK AS Trenčín']],\n", " [[' Togo national football team']],\n", " [[' Al-Hilal SFC']],\n", " [[' Groupama-FDJ']],\n", " [[' Speranza Osaka-Takatsuki']],\n", " [[' ASVEL Basket']],\n", " [[' Palermo FC']],\n", " [[' Czech Republic national association football team']],\n", " [[\" United States men's national soccer team\"]],\n", " [[' Santos F.C.']],\n", " [[' South Korea national football team']],\n", " [[' Stoke City F.C.']],\n", " [[' Italy national association football team']],\n", " [[' FC Zenit Saint Petersburg']],\n", " [[' FC Viktoria Köln']],\n", " [[' MSV Duisburg']],\n", " [[' Portugal national association football team']],\n", " [[' Hellas Verona F.C.']],\n", " [[' Brazil national football team']],\n", " [[\" Hapoel Be'er Sheva F.C.\"]],\n", " [[' Al Nasr SC']],\n", " [[' Hull City A.F.C.']],\n", " [[' Thimpu FC']],\n", " [[' Panathinaikos F.C.']],\n", " [[' Feyenoord']],\n", " [[' Brazil national football team']],\n", " [[' Olimpia Milano']],\n", " [[' Arsenal W.F.C.']],\n", " [[' Swiss national football team']],\n", " [[' SD Worx']],\n", " [[' England national association football team']],\n", " [[' Everton F.C.']],\n", " [[' Congo national football team']],\n", " [[' Red Bull Racing']],\n", " [[' Algeria national football team']],\n", " [[\" Australia women's national soccer team\"]],\n", " [[' Egypt national football team']],\n", " [[' Croatia national association football team']],\n", " [[' Rangers F.C.']],\n", " [[' Atromitos F.C.']],\n", " [[' Club Athletico Paranaense']],\n", " [[' RCD Espanyol de Barcelona']],\n", " [[' Senegal national association football team']],\n", " [[' Melbourne Renegades']],\n", " [[' HNK Zadar']],\n", " [[' Portland Thorns FC']],\n", " [[\" Monts d'Or Azergues Foot\"]],\n", " [[' NŠ Drava Ptuj']],\n", " [[' Al-Shaab CSC']],\n", " [[' A.C. Milan']],\n", " [[' Germany national association football team']],\n", " [[' Real Madrid CF']],\n", " [[' Greece national association football team']],\n", " [[' Gamba Osaka']],\n", " [[' Russia national football team']],\n", " [[' Shabab Al Ahli Club']],\n", " [[' Czech Republic national association football team']],\n", " [[' Club Atlético Peñarol']],\n", " [[' Maccabi Haifa F.C.']],\n", " [[' FC Barcelona Bàsquet']],\n", " [[' Atlético Clube de Portugal']],\n", " [[' Ivory Coast national football team']],\n", " [[' Chelsea F.C.']],\n", " [[' Brazil national football team']],\n", " [[' Serbia national football team']],\n", " [[' Notts County F.C.']],\n", " [[' Olympiacos F.C.']],\n", " [[' Buriram United F.C.']],\n", " [[' Maccabi Tel Aviv F.C.']],\n", " [[' F.C. Porto']],\n", " [[' Lechia Gdańsk']],\n", " [[' Al-Arabi SC']],\n", " [[' Linköpings FC']],\n", " [[' Wales national association football team']],\n", " ...],\n", " 'labels_ids': [[[315, 532, 390, 18, 632, 4191, 165]],\n", " [[5429, 4612]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[1287, 1422, 6772]],\n", " [[14365, 139, 337, 12, 16764, 6486, 1794, 1885]],\n", " [[83, 4, 347, 4, 7338]],\n", " [[2910, 632, 1037, 165]],\n", " [[4619, 26769, 4843, 242, 2005, 6945]],\n", " [[19763, 16872]],\n", " [[5429, 4612, 163, 5269, 30919, 594]],\n", " [[580, 3600, 315, 274, 4, 347, 4]],\n", " [[5429, 10402, 10489]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[188, 469, 412, 5429]],\n", " [[6314, 16421]],\n", " [[3702, 7776, 281, 12150]],\n", " [[7016]],\n", " [[208, 4214, 23087, 7065, 3427, 242, 2893, 13345]],\n", " [[1429, 2337, 968, 165]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[29018, 10221, 2684, 3622]],\n", " [[7224, 597, 19643, 1688, 3999, 1243]],\n", " [[525, 700, 20852, 12221, 274, 4, 347, 4]],\n", " [[1870, 2776, 12, 10926, 5857]],\n", " [[83, 4, 347, 4, 3385, 2478]],\n", " [[5429, 4612, 274, 15035, 1977]],\n", " [[5429, 10402, 10489]],\n", " [[315, 532, 390, 18, 632, 4191, 165]],\n", " [[91, 1610, 118, 274, 4, 347, 4]],\n", " [[13287, 12, 25093, 7829, 40236, 2711]],\n", " [[8700, 632, 1037, 165]],\n", " [[19763, 16872]],\n", " [[2009, 29018, 10221, 2684, 4119, 6303, 271, 1168]],\n", " [[11917, 3631, 3108, 139]],\n", " [[10585, 73, 9873, 35733, 5429]],\n", " [[5429, 4168, 3314, 11489, 2586]],\n", " [[5168, 5325]],\n", " [[2930, 32109, 20434, 20071]],\n", " [[22801, 274, 134, 2711]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[10035, 5317, 24058]],\n", " [[3864, 2543, 7930, 163, 7386, 221, 5268]],\n", " [[5244, 632, 1037, 165]],\n", " [[344, 20031, 12, 846, 40837, 2691]],\n", " [[2822, 3622, 12612]],\n", " [[208, 4214, 15333, 5429]],\n", " [[163, 14075, 6752, 10327]],\n", " [[83, 4, 347, 4, 7338]],\n", " [[5168, 5325]],\n", " [[24589, 1479, 6374, 208, 4, 347, 4]],\n", " [[6415, 1501, 9224, 38707]],\n", " [[2201, 6130, 12, 534, 8362, 1851, 274, 4, 347, 4]],\n", " [[3161, 14122, 1178]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[1568, 1833, 5429]],\n", " [[18612, 32825, 24969, 468, 1322, 1090]],\n", " [[5429, 10402, 10489]],\n", " [[1332, 242, 5413, 7222, 30089, 257, 5675, 2912, 438, 1020]],\n", " [[20351, 2383, 42775, 2001, 33293]],\n", " [[22705, 274, 4, 347, 4]],\n", " [[1568, 9926]],\n", " [[5429, 18540, 34264]],\n", " [[2499, 11476]],\n", " [[6015, 12696, 5429]],\n", " [[5168, 5325]],\n", " [[2812, 405, 15577, 274, 4, 347, 4]],\n", " [[4152, 274, 4, 347, 4]],\n", " [[5429, 10402, 10489]],\n", " [[5092, 632, 1037, 165]],\n", " [[1287, 1422, 6772]],\n", " [[29830, 18961]],\n", " [[6746, 13578, 7224]],\n", " [[226, 15089, 2383, 104, 6998, 337]],\n", " [[3417, 5809]],\n", " [[221, 15277, 2912, 438, 1020, 38220]],\n", " [[663, 11758]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[5028, 632, 1037, 165]],\n", " [[7556, 632, 5259, 1037, 165]],\n", " [[580, 3600, 315, 274, 4, 347, 4]],\n", " [[2177, 5429]],\n", " [[1287, 1422, 6772]],\n", " [[14585, 2550, 625, 6748, 2723, 7222, 289, 3663, 3245]],\n", " [[1429, 632, 1037, 165]],\n", " [[9793, 5928, 274, 4, 347, 4]],\n", " [[5787, 5991, 8025, 1899]],\n", " [[5429, 10402, 10489]],\n", " [[5926, 2032, 16248, 5429]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[6331,\n", " 1975,\n", " 493,\n", " 3381,\n", " 4214,\n", " 20341,\n", " 1140,\n", " 119,\n", " 2426,\n", " 263,\n", " 944,\n", " 16231,\n", " 763,\n", " 126,\n", " 384,\n", " 4,\n", " 250,\n", " 4,\n", " 597,\n", " 4]],\n", " [[21774, 632, 1037, 165]],\n", " [[163, 4330, 12, 725, 1253, 15821, 700]],\n", " [[7505, 17458, 632, 1037, 165]],\n", " [[2822, 3622, 12612]],\n", " [[230, 1116, 22831]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[4998, 5547, 1452, 7150]],\n", " [[20351, 2383, 42775, 2001, 33293]],\n", " [[31162, 857, 632, 1037, 165]],\n", " [[4622, 139, 4954, 347]],\n", " [[2361, 315, 274, 4, 347, 4]],\n", " [[2009, 263, 274, 5874, 90, 18217, 3385, 1334, 5460]],\n", " [[3870, 2561, 12612]],\n", " [[5680, 176, 500, 7801, 1001, 105, 282, 2711]],\n", " [[12602, 6801, 5463, 1885, 90, 22783]],\n", " [[5429, 10402, 10489]],\n", " [[6011, 1841, 12, 846, 8632, 6350, 12, 495, 3892, 877, 330]],\n", " [[6314, 16421]],\n", " [[2741, 1906, 6971, 10482]],\n", " [[8683, 390, 18, 632, 1037, 165]],\n", " [[121, 4, 347, 4, 18706, 417, 7228]],\n", " [[17112, 3061, 12, 487, 5600, 139]],\n", " [[83, 4575, 3194, 29, 274, 530]],\n", " [[4152, 305, 4, 597, 4, 347, 4]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[2822, 3622, 12612]],\n", " [[4537, 415, 31126, 857, 208, 4, 530, 4]],\n", " [[8937, 1113, 1209, 11868, 1343, 22398, 2711]],\n", " [[726, 7746, 3572, 2030, 5429]],\n", " [[2393, 873, 329, 1790, 12150]],\n", " [[2893, 13345, 29018, 10221, 2684, 16417, 4712]],\n", " [[2822, 3622, 4317, 261, 35678, 139]],\n", " [[20351, 2383, 42775, 2001, 33293]],\n", " [[14585, 2550, 1829, 7065, 3427, 7222, 4677, 1794, 853, 281]],\n", " [[96, 242, 366, 13519, 625, 4733]],\n", " [[15338, 412, 83, 4, 597, 4, 347, 4]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[2893, 13345, 263, 6304, 415, 281, 109, 37313, 3314, 139]],\n", " [[5429, 3635, 1176]],\n", " [[12723, 12130, 1178]],\n", " [[2910, 632, 1037, 165]],\n", " [[1775, 438, 10810, 4936, 15247, 274, 4, 347, 4]],\n", " [[2201, 6130, 12, 534, 8362, 1851, 274, 4, 347, 4]],\n", " [[1287, 1422, 12190]],\n", " [[2201, 6130, 12, 534, 8362, 1851, 274, 1140, 4691, 833]],\n", " [[14993, 9504, 366, 274, 4, 347, 4]],\n", " [[3870, 7338]],\n", " [[2499, 18946]],\n", " [[83, 4, 347, 4, 7338]],\n", " [[274, 4, 347, 4, 2848, 139]],\n", " [[5429, 4612]],\n", " [[18490, 632, 5259, 1037, 165]],\n", " [[1568, 1211, 7144]],\n", " [[2822, 3622, 12612]],\n", " [[6974, 1097, 8441, 2711]],\n", " [[15607, 412, 274, 4, 347, 4]],\n", " [[221, 4, 250, 4, 673, 4, 530, 4, 20, 7485, 30521, 8907, 274, 4, 347, 4]],\n", " [[14993, 5150, 263, 23294, 4061]],\n", " [[384, 4, 597, 4, 530, 4, 1456, 2154, 7822]],\n", " [[7320, 632, 1037, 165]],\n", " [[221, 4438, 274, 4, 347, 4]],\n", " [[7224, 597, 19643, 1688, 3999, 1243]],\n", " [[34138, 30422, 330, 274, 1242, 3512]],\n", " [[28147, 31732, 2711]],\n", " [[13943, 1001, 2848, 242, 14182]],\n", " [[15809, 1942, 315, 274, 4, 347, 4]],\n", " [[3303, 12179, 967, 366, 40431, 281, 274, 4, 347, 4]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[27268, 9228, 274, 4, 347, 4]],\n", " [[22753, 21386, 3624, 163, 5593, 225]],\n", " [[5854, 412, 4998]],\n", " [[15206, 4699, 5429]],\n", " [[5429, 4168, 3314, 11489, 2586]],\n", " [[10600, 412, 274, 4, 347, 4]],\n", " [[6171, 390, 18, 632, 5259, 1037, 165]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[2711, 344, 20031, 12, 846, 40837]],\n", " [[13943, 415, 1210, 405, 2383, 771, 16966, 1698, 28544]],\n", " [[11998, 28659, 163, 530]],\n", " [[26455, 330, 23759, 9051, 625, 4104, 37151, 11104]],\n", " [[4556, 26488, 8647, 293, 5429]],\n", " [[12932, 534, 43130, 22590, 225, 10436]],\n", " [[29018, 10221, 2684, 3622]],\n", " [[14993, 5150, 263, 23294, 4061]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[2711, 344, 20031, 12, 846, 40837]],\n", " [[2711, 43657]],\n", " [[10585, 73, 9873, 35733, 5429]],\n", " [[10157, 3830, 271, 5429, 305, 12, 17608]],\n", " [[2822, 6525, 354, 4317, 7474, 118, 1140]],\n", " [[663, 41375, 2857]],\n", " [[14993, 5150, 10888, 19864, 354, 274, 1140, 4691, 179]],\n", " [[226, 15089, 2383, 104, 6998, 337]],\n", " [[5524, 15933]],\n", " [[31853, 2678, 2583, 5429]],\n", " [[2822, 14585, 2550, 625]],\n", " [[7943, 17280, 13039]],\n", " [[4868, 846, 381, 2028, 5410, 2987]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[6415, 1501, 18794]],\n", " [[16518, 12470, 274, 4, 347, 4]],\n", " [[7943, 17280, 13039]],\n", " [[163, 1543, 219, 281, 4998]],\n", " [[2822, 3622, 12612]],\n", " [[2361, 315, 274, 4, 347, 4]],\n", " [[29018, 10221, 2684, 3622]],\n", " [[7320, 632, 1037, 165]],\n", " [[8683, 632, 5259, 1037, 165]],\n", " [[3870, 7338]],\n", " [[315, 532, 604, 18, 632, 4191, 165]],\n", " [[2822, 3622, 12612]],\n", " [[7137, 12242, 15363, 274, 4, 347, 4]],\n", " [[22753, 21386, 3624, 163, 5593, 225]],\n", " [[7570, 20302, 7748, 274, 4, 347, 4]],\n", " [[384, 11961, 16911]],\n", " [[7320, 632, 1037, 165]],\n", " [[83, 4, 104, 4, 12218]],\n", " [[6748, 2723, 9697, 263, 1587, 2812, 257, 14379]],\n", " [[2177, 13114]],\n", " [[36858, 25278, 22753]],\n", " [[7320, 632, 1037, 165]],\n", " [[5429, 35068, 4122, 257]],\n", " [[256, 1526, 462, 6080, 12612]],\n", " [[23917, 33965, 2912, 438, 1020]],\n", " [[1870, 2776, 12, 10926, 5857]],\n", " [[764, 4578, 7963]],\n", " [[2201, 6130, 12, 534, 8362, 1851, 274, 4, 347, 4]],\n", " [[188, 469, 11836]],\n", " [[2986, 9207]],\n", " [[274, 4, 347, 4, 22843]],\n", " [[2009, 29018, 10221, 2684, 1995, 19201]],\n", " [[2822, 6525, 354, 4317, 7474, 118, 1140]],\n", " [[5926, 2032, 16248, 5429]],\n", " [[5429, 10402, 10489]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[2009, 29018, 10221, 2684, 4119, 6303, 271, 1168]],\n", " [[211, 21999, 12221, 274, 4, 347, 4]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[18490, 632, 5259, 1037, 165]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[226, 15089, 2383, 104, 6998, 337]],\n", " [[9601, 163, 8371, 14393]],\n", " [[4998, 248, 700, 2028, 16385, 7330, 1488]],\n", " [[10060, 632, 5259, 1037, 165]],\n", " [[274, 5777, 28185, 3381, 242, 14795]],\n", " [[4537, 415, 31126, 857, 208, 4, 530, 4]],\n", " [[3317, 315, 5429]],\n", " [[15338, 412, 83, 4, 597, 4, 347, 4]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[14781, 632, 1037, 165]],\n", " [[5429, 4168, 3314, 11489, 2586]],\n", " [[4537, 415, 31126, 857, 208, 4, 530, 4]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[13733, 632, 1037, 165]],\n", " [[5438, 763, 2860, 4365, 274, 4, 347, 4]],\n", " [[580, 14312, 11645, 19032, 274, 4, 347, 4]],\n", " [[7556, 632, 5259, 1037, 165]],\n", " [[10994, 11536, 632, 1037, 165]],\n", " [[2910, 632, 1037, 165]],\n", " [[5429, 9176]],\n", " [[5429, 10402, 10489]],\n", " [[188, 3324, 632, 8808, 2918, 165]],\n", " [[315, 532, 390, 18, 632, 4191, 165]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[12919, 274, 4, 347, 4]],\n", " [[7137, 2848, 274, 4, 347, 4]],\n", " [[15206, 4699, 5429]],\n", " [[13733, 632, 1037, 165]],\n", " [[6171, 632, 5259, 1037, 165]],\n", " [[1405, 12037, 163, 3632]],\n", " [[2361, 412, 305, 4, 597, 4, 347, 4]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[9688, 104, 6579, 18995]],\n", " [[163, 1543, 219, 281, 4998]],\n", " [[112, 4, 274, 5268, 14184]],\n", " [[83, 4, 104, 4, 12218]],\n", " [[9601, 163, 8371, 14393]],\n", " [[5429, 229, 8428]],\n", " [[305, 5416, 926, 7210, 102, 4998]],\n", " [[726, 12, 495, 2957, 3760, 4998]],\n", " [[208, 4, 347, 4, 2265, 6080]],\n", " [[7224, 597, 19643, 1688, 3999, 1243]],\n", " [[2822, 6525, 354, 4317, 7474, 118, 1140]],\n", " [[10157, 3830, 271, 5429]],\n", " [[7248, 219, 8441]],\n", " [[1870, 2776, 12, 10926, 5857]],\n", " [[19365, 1140, 102, 2383, 104, 7042, 636]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[4380, 8271, 230, 5268]],\n", " [[5429, 4369, 329]],\n", " [[1287, 1422, 22320]],\n", " [[580, 3600, 315, 274, 4, 347, 4]],\n", " [[7296, 271, 8726, 12612]],\n", " [[12966, 6748, 2723, 7222, 726, 1176, 8129, 9401]],\n", " [[2009, 24066, 8843, 234, 1043, 6073]],\n", " [[726, 840, 873, 873, 5429]],\n", " [[15206, 4699, 5429]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[384, 10839, 642, 493, 5366, 2601]],\n", " [[7556, 632, 5259, 1037, 165]],\n", " [[9614, 632, 1037, 165]],\n", " [[11437, 632, 5259, 1037, 165]],\n", " [[96, 242, 366, 13519, 625, 4733]],\n", " [[22569, 1535, 121, 1889, 574]],\n", " [[229, 597, 5725, 12, 530, 8015, 415, 2552, 26067]],\n", " [[2027, 188, 469, 15626]],\n", " [[7556, 632, 5259, 1037, 165]],\n", " [[229, 530, 23067, 3623, 3119, 384, 10839, 642, 12733]],\n", " [[5703, 15908]],\n", " [[274, 5777, 28185, 3381, 242, 4011, 18, 12610]],\n", " [[2361, 412, 305, 4, 597, 4, 347, 4]],\n", " [[13633, 83, 4, 597, 4, 347, 4]],\n", " [[7320, 632, 1037, 165]],\n", " [[208, 4214, 15333, 5429]],\n", " [[208, 4, 104, 4, 1960, 428, 4490, 2645, 4468, 2912, 438, 1020]],\n", " [[9170, 2711, 8313]],\n", " [[1221, 1585, 324, 5363, 1745, 968, 165]],\n", " [[21105, 18604, 3910, 2009]],\n", " [[29018, 10221, 2684, 6843]],\n", " [[2910, 632, 1037, 165]],\n", " [[1568, 1211, 7144]],\n", " [[2009, 234, 1043, 6073, 263, 3910]],\n", " [[1625, 632, 1037, 165]],\n", " [[5480, 717, 27093, 918]],\n", " [[17100, 1908, 9216, 20233, 16885, 274, 4, 347, 4]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[163, 8982, 2133, 274, 4, 347, 4, 41861]],\n", " [[382, 1793, 24227, 1253]],\n", " [[6748, 2723, 9697, 25452, 338, 12109]],\n", " [[2009, 255, 25491]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[14993, 9504, 366, 274, 4, 347, 4]],\n", " [[230, 4, 104, 4, 13142, 23065, 5739]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[7320, 632, 1037, 165]],\n", " [[229, 4113, 254, 354, 12150]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[9170, 2711, 8313]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[15119, 12501, 2383, 44867, 846, 13961]],\n", " [[10060, 632, 5259, 1037, 165]],\n", " [[5092, 632, 1037, 165]],\n", " [[14567, 9543]],\n", " [[6508, 632, 5259, 1037, 165]],\n", " [[15081]],\n", " [[7943, 17280, 13039]],\n", " [[2986, 9207]],\n", " [[91, 1610, 118, 274, 4, 347, 4]],\n", " [[9170, 2711, 4516, 1864]],\n", " [[2009, 29018, 10221, 2684, 255, 11186, 1535]],\n", " [[255, 5156, 261, 6130, 12, 347, 4503, 9676, 7406, 3512]],\n", " [[5926, 8393, 18191]],\n", " [[96, 242, 366, 13519, 625, 4733]],\n", " [[22256, 2565, 632, 1037, 165]],\n", " [[83, 4, 104, 4, 12218]],\n", " [[31853, 2678, 2583, 5429]],\n", " [[274, 5777, 28185, 3381, 242, 14795]],\n", " [[2822, 3622, 12612]],\n", " [[9170, 2711, 8313]],\n", " [[12132, 632, 1037, 165]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[1456, 5235, 967, 4349, 5235, 344, 4, 530, 4]],\n", " [[5092, 632, 1037, 165]],\n", " [[4290, 5429]],\n", " [[13876, 2158, 4712, 381, 4, 347, 4]],\n", " [[7960, 607, 274, 4, 347, 4]],\n", " [[230, 3376, 2711]],\n", " [[2009, 6748, 2723, 9697, 24066, 8843, 7641, 1479, 5895, 102]],\n", " [[9692, 274, 4, 347, 4]],\n", " [[221, 15277, 2912, 438, 1020, 38220]],\n", " [[580, 3600, 315, 274, 4, 347, 4]],\n", " [[13727, 1845, 3171, 274, 4, 347, 4]],\n", " [[274, 5777, 28185, 3381, 242, 14795]],\n", " [[3098, 274, 4, 347, 4, 2691]],\n", " [[1287, 1422, 6772]],\n", " [[272, 4, 104, 4, 38, 9418, 14496, 20, 7485, 30521, 8907]],\n", " [[10585, 73, 9873, 35733, 5429]],\n", " [[4307, 12599, 876, 2955, 272, 2583]],\n", " [[208, 4, 574, 4, 1664, 506, 2426]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[3870, 7338]],\n", " [[2910, 632, 1037, 165]],\n", " [[5429, 4612, 274, 15035, 1977]],\n", " [[2711, 344, 20031, 12, 846, 40837]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[21105, 18604, 412, 274, 4, 347, 4]],\n", " [[468, 506, 574, 7602, 16408, 2691]],\n", " [[305, 2957, 260, 274, 4, 347, 4]],\n", " [[4380, 8271, 230, 5268]],\n", " [[2027, 188, 469, 15626]],\n", " [[36265, 22753]],\n", " [[230, 4, 495, 4, 2646, 23073, 1176, 1742]],\n", " [[91, 1610, 118, 274, 4, 347, 4]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[22753, 21386, 3624, 163, 5593, 225]],\n", " [[1156, 632, 5259, 1037, 165]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[14667, 12, 387, 3006, 1180, 632, 1037, 165]],\n", " [[234, 4, 717, 4, 347, 4]],\n", " [[3542, 1469, 6377, 274, 4, 347, 4]],\n", " [[1625, 632, 1037, 165]],\n", " [[9096, 3497, 632, 4105, 4191, 165]],\n", " [[5429, 30377, 1496, 219, 229, 5079, 282, 2160, 2726, 330]],\n", " [[2822, 3622, 12612]],\n", " [[13287, 12, 25093, 7829, 40236, 2711]],\n", " [[7505, 17458, 632, 1037, 165]],\n", " [[896, 604, 18, 632, 4191, 165]],\n", " [[6508, 632, 5259, 1037, 165]],\n", " [[798, 632, 1037, 165]],\n", " [[9614, 632, 1037, 165]],\n", " [[2822, 3622, 12612]],\n", " [[2009, 16528, 952, 3602, 257]],\n", " [[18490, 632, 5259, 1037, 165]],\n", " [[83, 4, 347, 4, 7338]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[15897, 944, 1899, 281, 2344, 523, 1694, 3006, 19200]],\n", " [[208, 10595, 3109, 412, 274, 4, 347, 4]],\n", " [[6314, 16421]],\n", " [[1568, 9926]],\n", " [[13694, 25280, 7204, 1627]],\n", " [[229, 7025, 30492, 241, 7450, 211, 7389]],\n", " [[1870, 2776, 12, 10926, 5857]],\n", " [[24799, 632, 1037, 165]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[4622, 139, 3767, 459, 38754]],\n", " [[35118, 2071, 40849]],\n", " [[274, 530, 6015, 255, 2558, 4955, 17010]],\n", " [[9170, 2711, 8313]],\n", " [[2822, 14585, 2550, 625]],\n", " [[3702, 7776, 281, 12150]],\n", " [[5168, 5325]],\n", " [[381, 4, 347, 4, 24589, 1479, 6374]],\n", " [[10897, 281, 1245, 12, 9325, 548, 2558]],\n", " [[2009, 29018, 10221, 2684, 1995, 19201]],\n", " [[2271, 83, 21454, 263, 2646, 154, 3914]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[8937, 1113, 1209, 11868, 1343, 22398, 2711]],\n", " [[2201, 6130, 12, 534, 8362, 1851, 274, 4, 347, 4]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[2361, 412, 274, 4, 347, 4]],\n", " [[2711, 344, 20031, 12, 846, 40837]],\n", " [[5429, 10402, 10489]],\n", " [[13287, 12, 25093, 7829, 40236, 2711]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[3317, 10506]],\n", " [[1775, 438, 10810, 4936, 15247, 274, 4, 347, 4]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[11666, 274, 4, 347, 4]],\n", " [[208, 4, 347, 4, 23094, 1043, 6073]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[5092, 632, 1037, 165]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[112, 4, 5429, 234, 5172, 282, 2865]],\n", " [[2910, 632, 1037, 165]],\n", " [[5429, 2049, 16408]],\n", " [[2361, 412, 274, 4, 347, 4]],\n", " [[315, 532, 390, 18, 632, 4191, 165]],\n", " [[7570, 20302, 7748, 274, 4, 347, 4]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[7570, 20302, 7748, 274, 4, 347, 4]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[5819, 12770]],\n", " [[5703, 15908]],\n", " [[4152, 274, 4, 347, 4]],\n", " [[7137, 12242, 15363, 274, 4, 347, 4]],\n", " [[21780, 12527, 493, 234, 293, 255, 329, 26051, 274, 4, 347, 4]],\n", " [[1608, 179, 1561, 267, 18057, 344, 9707, 1115, 1250, 21783, 5410]],\n", " [[14993, 5150, 10888, 19864, 354]],\n", " [[5854, 13170]],\n", " [[9245, 315, 274, 4, 347, 4]],\n", " [[5429, 208, 1499]],\n", " [[5854, 412, 4998]],\n", " [[381, 2544, 338, 11629, 9076, 12140, 611, 1694, 1023]],\n", " [[25103, 710, 6909, 3830, 267, 366, 263, 3060, 1043, 2070, 329]],\n", " [[230, 4, 495, 4, 2646, 23073, 1176, 1742]],\n", " [[17822, 1097, 7488, 5429]],\n", " [[7413, 268, 4998, 673]],\n", " [[7556, 632, 5259, 1037, 165]],\n", " [[3098, 274, 4, 347, 4, 2691]],\n", " [[7224, 597, 19643, 1688, 3999, 1243]],\n", " [[17182, 5268, 163, 6457, 705, 468, 28814, 102]],\n", " [[21299, 2186, 274, 4, 347]],\n", " [[9035, 412, 274, 4, 347, 4]],\n", " [[5429, 13985, 405, 6130, 14330]],\n", " [[3417, 36802, 5429]],\n", " [[1625, 632, 1037, 165]],\n", " [[2499, 18946]],\n", " [[4537, 415, 31126, 857, 208, 4, 530, 4]],\n", " [[5729, 412, 5429]],\n", " [[24986, 6847, 20623, 261]],\n", " [[29018, 10221, 2684, 764, 6487, 3407, 14182, 12612]],\n", " [[2361, 315, 305, 4, 597, 4, 347, 4]],\n", " [[9601, 19119, 32482, 4989]],\n", " [[5244, 632, 1037, 165]],\n", " [[21774, 632, 1037, 165]],\n", " [[2000, 632, 1037, 165]],\n", " [[234, 2154, 11691, 5429]],\n", " [[1405, 12037, 163, 3632]],\n", " [[840, 463, 1657, 9002, 1173, 260, 274, 4, 347, 4]],\n", " [[5429, 4612]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[22256, 2565, 632, 1037, 165]],\n", " [[22378, 12, 18551, 139, 390, 18]],\n", " [[1568, 1211, 7144]],\n", " [[83, 4, 104, 4, 12218]],\n", " [[9176, 381, 12, 26902, 5429]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[5420, 15929]],\n", " [[4556, 26488, 8647, 293, 5429]],\n", " [[468, 506, 387, 312, 9259, 22739]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[2910, 632, 1037, 165]],\n", " [[12966, 6748, 2723, 7222, 726, 1176, 8129, 9401]],\n", " [[4152, 305, 4, 597, 4, 347, 4]],\n", " [[6171, 632, 5259, 1037, 165]],\n", " [[1625, 632, 1037, 165]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[9170, 2711, 8313]],\n", " [[5429, 24542, 298, 45739, 1879]],\n", " [[14993, 5150, 263, 23294, 4061]],\n", " [[391, 1101, 632, 1037, 165]],\n", " [[7320, 632, 1037, 165]],\n", " [[1429, 632, 1037, 165]],\n", " [[2000, 632, 1037, 165]],\n", " [[17535, 5382, 975, 844, 181, 73, 428, 17411, 12, 17906]],\n", " [[14567, 12612]],\n", " [[14585, 2550, 1829, 7065, 3427, 7222, 4677, 1794, 853, 281]],\n", " [[15837, 5223, 23872, 352, 118, 6579, 625, 6417]],\n", " [[3417, 36802, 5429]],\n", " [[6748, 2723, 9697, 17686, 26802, 274, 4, 347, 4]],\n", " [[4868, 846, 381, 2028, 5410, 2987]],\n", " [[468, 506, 387, 312, 9259, 22739, 3082]],\n", " [[8937, 1113, 1209, 11868, 1343, 22398, 2711]],\n", " [[798, 632, 1037, 165]],\n", " [[44602, 154, 179, 344, 9707, 1115, 1250, 1638, 462, 36384]],\n", " [[9543, 11861, 90, 281]],\n", " [[83, 4, 104, 4, 12218]],\n", " [[4514, 9529]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[1600, 390, 18, 632, 1037, 165]],\n", " [[5429, 4612, 163, 5269, 30919, 594]],\n", " [[21774, 632, 1037, 165]],\n", " [[5716, 4597, 274, 4, 347, 4]],\n", " [[2361, 412, 274, 4, 347, 4]],\n", " [[5092, 632, 1037, 165]],\n", " [[1603, 632, 1037, 165]],\n", " [[2921, 18290]],\n", " [[381, 2544, 338, 11629, 14184]],\n", " [[2000, 632, 1037, 165]],\n", " [[7224, 597, 19643, 1688, 3999, 1243]],\n", " [[8983, 315, 274, 4, 347, 4]],\n", " [[15376, 493, 21115]],\n", " [[6037, 632, 1037, 165]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[5244, 632, 1037, 165]],\n", " [[230, 4, 597, 4, 4838, 4231, 225, 21526]],\n", " [[1429, 632, 1037, 165]],\n", " [[1505, 1704, 3497, 632, 1037, 165]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[35906, 384, 10839, 642, 12733, 226, 267, 1792, 462, 267, 1113]],\n", " [[5092, 632, 1037, 165]],\n", " [[1625, 632, 1037, 165]],\n", " [[2588, 2461, 83, 4643]],\n", " [[18749, 412, 274, 4, 347, 4]],\n", " [[2005, 3590, 274, 4467, 18217, 2893, 13345]],\n", " [[13943, 415, 1210, 405, 2383, 771, 16966, 1698, 28544]],\n", " [[5429, 13985, 405, 6130, 14330]],\n", " [[5480, 717, 27093, 918]],\n", " [[384, 13967, 274, 4467, 18217, 2893, 13345]],\n", " [[315, 532, 604, 18, 632, 4191, 165]],\n", " [[208, 4, 104, 4, 347, 4, 7645, 6483]],\n", " [[8683, 632, 5259, 1037, 165]],\n", " [[229, 4113, 254, 354, 12150]],\n", " [[15376, 493, 21115]],\n", " [[2910, 632, 1037, 165]],\n", " [[369, 21894, 632, 1037, 165]],\n", " [[525, 700, 20852, 12221, 274, 4, 347, 4]],\n", " [[4317, 10031, 7339, 21098, 12150]],\n", " [[7765, 6412, 4998]],\n", " [[5498, 632, 1037, 165]],\n", " [[229, 4113, 254, 354, 12150]],\n", " [[5429, 11996, 1168, 22487, 14722]],\n", " [[6171, 632, 5259, 1037, 165]],\n", " [[44602, 154, 179, 344, 9707, 1115, 1250, 1638, 462, 36384]],\n", " [[4290, 5429]],\n", " [[5639, 632, 1037, 165]],\n", " [[14993, 9504, 366, 274, 4, 347, 4]],\n", " [[3098, 274, 4, 347, 4, 2691]],\n", " [[208, 4, 104, 4, 347, 4, 7645, 6483]],\n", " [[726, 12, 597, 5655, 7776, 5429]],\n", " [[3590, 4947, 922]],\n", " [[5429, 13073, 1075, 1242, 1879, 3467]],\n", " [[14993, 5150, 10888, 19864, 354]],\n", " [[1603, 632, 1037, 165]],\n", " [[5854, 13170]],\n", " [[15091]],\n", " [[10060, 632, 5259, 1037, 165]],\n", " [[2009, 3574, 1423, 6748, 2723, 9697, 22378, 22378]],\n", " [[1156, 632, 5259, 1037, 165]],\n", " [[391, 1101, 632, 1037, 165]],\n", " [[11660, 221, 1140, 13208, 525, 13587, 2727]],\n", " [[163, 7110, 27547, 16784, 7406, 3512]],\n", " [[5680, 176, 500, 7801, 1001, 105, 282, 2711]],\n", " [[5092, 632, 1037, 165]],\n", " [[3098, 274, 4, 347, 4, 2691]],\n", " [[3160, 17492]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[315, 13716, 6350]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[4341, 3671, 642, 1033, 5429]],\n", " [[2000, 632, 1037, 165]],\n", " [[3426, 274, 4, 347, 4]],\n", " [[2711, 23070, 9089, 14035, 3309, 876]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[208, 4214, 1560, 1140, 8, 2869, 17010, 2520, 2379, 632, 1037, 165]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[1221, 632, 5259, 1037, 165]],\n", " [[24052, 17939, 208, 12, 510, 32767]],\n", " [[10060, 632, 5259, 1037, 165]],\n", " [[7320, 632, 1037, 165]],\n", " [[1480, 673, 3721, 274, 4, 347, 4]],\n", " [[1429, 390, 18, 632, 1037, 165]],\n", " [[896, 390, 18, 632, 4191, 165]],\n", " [[19763, 16872]],\n", " [[10060, 632, 5259, 1037, 165]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[2910, 632, 1037, 165]],\n", " [[4436, 26827, 906, 289, 1140, 763, 6070, 5413, 2009]],\n", " [[29018, 10221, 2684, 3622]],\n", " [[8683, 632, 5259, 1037, 165]],\n", " [[11141, 281, 3060, 4488, 274, 4, 347, 4]],\n", " [[5429, 17326, 19654, 29712]],\n", " [[11666, 274, 4, 347, 4]],\n", " [[14993, 5150, 10888, 19864, 354]],\n", " [[5429, 1587, 687, 8799, 12, 19451]],\n", " [[2009, 3574, 1423, 6748, 2723, 9697, 22378, 22378]],\n", " [[944, 2253, 757, 3983, 1890, 6005]],\n", " [[22839, 2727, 3771, 20375, 4242]],\n", " [[660, 22494, 13310, 18440, 1073, 4193, 102, 5429]],\n", " [[726, 85, 90, 19284, 5429]],\n", " [[31245, 530, 15757, 12705, 525, 1073, 16552]],\n", " [[230, 1073, 3572, 1512, 2912, 438, 1020]],\n", " [[5429, 221, 4438, 412]],\n", " [[22705, 274, 4, 347, 4]],\n", " [[1221, 632, 5259, 1037, 165]],\n", " [[13733, 632, 1037, 165]],\n", " [[13733, 632, 1037, 165]],\n", " [[4152, 305, 4, 597, 4, 347, 4]],\n", " [[5429, 4612]],\n", " [[764, 5465, 17010, 263, 33759, 783, 7499]],\n", " [[18490, 632, 5259, 1037, 165]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[5429, 7916, 354, 271]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[369, 17577, 315, 5429]],\n", " [[9601, 24857, 468, 8508, 11760]],\n", " [[112, 4, 5429, 1332, 5459]],\n", " [[7320, 632, 1037, 165]],\n", " [[15607, 412, 274, 4, 347, 4]],\n", " [[5429, 9922, 8530]],\n", " [[12587, 632, 1037, 165]],\n", " [[14781, 632, 1037, 165]],\n", " [[2742, 21402, 530, 4424, 22015, 2265, 415, 13714, 8604]],\n", " [[1793, 24227, 1253, 5463, 1885, 90, 163, 20997]],\n", " [[21774, 632, 1037, 165]],\n", " [[2561, 7772]],\n", " [[1209, 31002, 16146, 6331, 366]],\n", " [[35722, 530, 11198, 163, 4, 347, 4]],\n", " [[15959, 1054, 8899, 274, 4, 347, 4]],\n", " [[6508, 632, 5259, 1037, 165]],\n", " [[2910, 632, 1037, 165]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[14993, 5150, 10888, 19864, 354]],\n", " [[726, 811, 2478, 18471]],\n", " [[5429, 4612]],\n", " [[16518, 12470, 274, 4, 347, 4]],\n", " [[1625, 632, 1037, 165]],\n", " [[12940, 632, 5259, 1037, 165]],\n", " [[1221, 390, 18, 632, 4191, 165]],\n", " [[2822, 3622, 4317, 261, 35678, 139]],\n", " [[1209, 31002, 16146, 6331, 366]],\n", " [[5429, 11996, 1168, 22487, 14722]],\n", " [[2009, 29018, 10221, 2684, 4838, 281, 4989]],\n", " [[3378, 1332]],\n", " [[5429, 10847, 2832, 1344, 263, 163, 17202, 8624]],\n", " [[28147, 31732, 2711]],\n", " [[274, 530, 468, 1120, 271]],\n", " [[188, 1156, 13340]],\n", " [[33846, 22153, 2001, 3917, 2253, 9401]],\n", " [[6331,\n", " 1975,\n", " 493,\n", " 3381,\n", " 4214,\n", " 6838,\n", " 1001,\n", " 6873,\n", " 1526,\n", " 6374,\n", " 263,\n", " 7065,\n", " 3427,\n", " 293]],\n", " [[211, 4, 347, 4, 315]],\n", " [[5429, 208, 1499]],\n", " [[2910, 632, 1037, 165]],\n", " [[5429, 15757, 12705, 3467]],\n", " [[229, 530, 5309, 2987, 102, 525, 20782, 6106]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[17609, 632, 1037, 165]],\n", " [[9793, 5928, 274, 4, 347, 4]],\n", " [[4868, 846, 381, 2028, 5410, 2987]],\n", " [[11437, 632, 5259, 1037, 165]],\n", " [[3870, 7338]],\n", " [[230, 2456, 6852, 9002, 1588, 1253]],\n", " [[2201, 5429]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[36589, 7876, 4668, 263, 732, 3695, 859, 102, 1792, 1069, 927]],\n", " [[12932, 534, 43130, 22590, 225, 10436]],\n", " [[21774, 632, 1037, 165]],\n", " [[369, 1961, 5429]],\n", " [[798, 632, 1037, 165]],\n", " [[2822, 3622, 12612]],\n", " [[1287, 1422, 5429]],\n", " [[83, 4, 717, 4, 530, 4, 11198, 274, 4, 347, 4]],\n", " [[2009, 255, 25491]],\n", " [[5837, 15945, 5429]],\n", " [[17983, 632, 1037, 165]],\n", " [[5429, 30610, 1417]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[391, 1101, 632, 1037, 165]],\n", " [[2769, 632, 5259, 1037, 165]],\n", " [[221, 5268, 7038, 14559, 3467]],\n", " [[7296, 271, 8726, 12612]],\n", " [[5429, 660, 329, 3592, 256, 7352, 1488, 330, 2331]],\n", " [[2822, 3622, 6719, 4699]],\n", " [[391, 1101, 632, 1037, 165]],\n", " [[12612, 221, 1488, 26802]],\n", " [[30492, 241, 7450, 14795]],\n", " [[6037, 632, 1037, 165]],\n", " [[5429, 13073, 1075, 1242, 1879, 3467]],\n", " [[3497, 9, 2487, 632, 5259, 1037, 165]],\n", " [[13708, 26450, 2912, 438, 1020]],\n", " [[274, 530, 11504, 257, 4807, 282, 2603, 21752, 26084, 2426]],\n", " [[5429, 15757, 12705, 19443, 18759]],\n", " [[315, 532, 390, 18, 632, 4191, 165]],\n", " [[14605, 632, 5259, 1037, 165]],\n", " [[8683, 632, 5259, 1037, 165]],\n", " [[12612, 4436, 20287, 337]],\n", " [[13633, 83, 4, 597, 4, 347, 4]],\n", " [[188, 3324, 632, 1037, 165]],\n", " [[112, 4, 5429, 1332, 5459]],\n", " [[14993, 5150, 10888, 19864, 354, 274, 1140, 4691, 179]],\n", " [[121, 9056, 102, 1211, 7128, 29]],\n", " [[4622, 139, 3767, 459, 38754]],\n", " [[3430, 632, 1037, 165]],\n", " [[2893, 13345, 29018, 10221, 2684, 12765, 139, 4214, 2955, 6251, 763]],\n", " [[3274, 331, 4223]],\n", " [[226, 18307, 234, 324, 438, 324, 438, 2478]],\n", " [[10482, 2374, 11761, 775]],\n", " [[2910, 390, 18, 632, 1037, 165]],\n", " [[14567, 12612]],\n", " [[580, 3600, 315, 274, 4, 347, 4]],\n", " [[2393, 873, 329, 1790, 12150]],\n", " [[112, 4, 5429, 1332, 5459]],\n", " [[2201, 6130, 12, 534, 8362, 1851, 274, 4, 347, 4]],\n", " [[27162, 11626, 3990, 1722, 179, 274, 4, 347, 4]],\n", " [[16193, 632, 1037, 165]],\n", " [[2271, 13310, 36349, 2884, 337, 757, 5107, 5429]],\n", " [[7505, 17458, 632, 1037, 165]],\n", " [[20351, 2383, 42775, 2001, 33293]],\n", " [[7296, 271, 8726, 12612]],\n", " [[663, 11758]],\n", " [[3426, 274, 4, 347, 4]],\n", " [[18490, 632, 5259, 1037, 165]],\n", " [[112, 4, 5429, 229, 3671, 8502]],\n", " [[229, 5596, 21834]],\n", " [[31280, 282, 5269, 29048, 263, 255, 6166, 11408, 102]],\n", " [[12612, 4436, 20287, 337]],\n", " [[14664, 412, 5429]],\n", " [[21774, 632, 1037, 165]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[2361, 315, 274, 4, 347, 4]],\n", " [[12919, 5429]],\n", " [[726, 12, 3609, 895, 1543, 2636, 1847, 2009]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[2177, 2692, 10929]],\n", " [[764, 506, 13139, 1755, 35406, 15215]],\n", " [[11666, 274, 4, 347, 4]],\n", " [[344, 30395, 12108, 368]],\n", " [[468, 506, 387, 312, 9259, 22739, 3082]],\n", " [[229, 4113, 254, 354, 12150]],\n", " [[2381, 102, 3703, 574, 165]],\n", " [[7556, 632, 5259, 1037, 165]],\n", " [[19041, 10968, 6752, 10327]],\n", " [[952, 6382, 857, 330, 710, 248, 7396, 12150]],\n", " [[208, 10729, 14777, 225]],\n", " [[6171, 632, 5259, 1037, 165]],\n", " [[14993, 5150, 10888, 19864, 354]],\n", " [[7505, 17458, 632, 1037, 165]],\n", " [[15639, 632, 5259, 1037, 165]],\n", " [[9793, 5928, 274, 4, 347, 4]],\n", " [[14993, 5150, 10888, 19864, 354, 274, 1140, 4691, 179]],\n", " [[83, 4, 717, 4, 530, 4, 11198, 274, 4, 347, 4]],\n", " [[1209, 31002, 16146, 6331, 366]],\n", " [[188, 469, 1211, 9926]],\n", " [[21774, 632, 1037, 165]],\n", " [[83, 4, 104, 4, 12218]],\n", " [[274, 530, 840, 330, 105, 1187, 12733]],\n", " [[5429, 10402, 10489, 2691]],\n", " [[208, 4214, 15333, 5429]],\n", " [[17468, 448, 13023, 5641, 163, 20997]],\n", " [[2893, 13345, 263, 6304, 415, 281, 109, 37313, 3314, 139]],\n", " [[2769, 632, 5259, 1037, 165]],\n", " [[2910, 632, 1037, 165]],\n", " [[2769, 632, 5259, 1037, 165]],\n", " [[2711, 23070, 9089, 14035, 3309, 876]],\n", " [[226, 4061, 384, 3632]],\n", " [[6933, 5441, 1906, 9488, 293]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[8683, 390, 18, 632, 865, 3512, 165]],\n", " [[25011, 12, 2022, 468, 11485, 102]],\n", " [[2361, 412, 274, 4, 347, 4]],\n", " [[3497, 9, 2487, 632, 5259, 1037, 165]],\n", " [[3378, 5553, 268]],\n", " [[289, 7027, 268, 1399, 3171, 83, 4, 597, 4, 347, 4]],\n", " [[1918, 1140, 14962, 274, 4467, 18217, 2893, 13345, 36, 21963, 43]],\n", " [[312, 4, 3217, 6293]],\n", " [[4766, 14572]],\n", " [[798, 632, 1037, 165]],\n", " [[3160, 17492]],\n", " [[8873, 9399, 1906, 263, 2588, 221, 2550, 5079]],\n", " [[896, 390, 18, 632, 4191, 165]],\n", " [[5429, 15757, 12705, 3467]],\n", " [[4380, 8271, 230, 5268]],\n", " [[5429, 7093, 523]],\n", " [[4436, 29, 385, 108, 11094, 4947, 11249, 3663, 13324]],\n", " [[1775, 438, 10810, 4936, 15247, 274, 4, 347, 4]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[20351, 2383, 42775, 2001, 33293]],\n", " [[22839, 2727, 6748, 2723, 7222, 726, 2089, 5272]],\n", " [[3332, 2646, 26681, 274, 4, 347, 4]],\n", " [[3378, 5553, 268]],\n", " [[15376, 493, 21115]],\n", " [[166, 5618, 4670, 274, 4, 347, 4]],\n", " [[369, 17577, 315, 5429]],\n", " [[221, 2336, 272, 30265, 1243, 274, 4, 347, 4]],\n", " [[188, 3324, 632, 1037, 165]],\n", " [[208, 4, 347, 4, 2265, 6080]],\n", " [[6171, 632, 5259, 1037, 165]],\n", " [[952, 10172, 5521, 718, 281, 12612]],\n", " [[11141, 281, 3060, 4488, 274, 4, 347, 4]],\n", " [[229,\n", " 4,\n", " 104,\n", " 4,\n", " 347,\n", " 4,\n", " 226,\n", " 5361,\n", " 2558,\n", " 384,\n", " 2603,\n", " 12,\n", " 846,\n", " 2560,\n", " 463,\n", " 8663]],\n", " [[16588, 366, 12612]],\n", " [[315, 532, 604, 18, 632, 4191, 165]],\n", " [[3430, 632, 1037, 165]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[2009, 29018, 10221, 2684, 3182, 2727]],\n", " [[24195, 632, 1037, 165]],\n", " [[20421, 428, 10344, 274, 4, 347, 4]],\n", " [[14993, 5150, 263, 23294, 4061]],\n", " [[15676, 5173, 102, 229, 9418, 1479, 605]],\n", " [[208, 4, 104, 4, 347, 4, 7645, 6483]],\n", " [[208, 4, 574, 4, 1664, 506, 2426]],\n", " [[9341, 261, 632, 1037, 165]],\n", " [[274, 530, 229, 7381, 139, 2742, 10809, 31316, 36533]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[312, 1829, 248, 18974, 354, 274, 4, 347, 4]],\n", " [[2009, 44285, 1851]],\n", " [[391, 1101, 632, 1037, 165]],\n", " [[36858, 25278, 22753]],\n", " [[2646, 1210, 24181, 274, 4, 347, 4]],\n", " [[5429, 4424, 22015, 11135, 2816, 438]],\n", " [[12132, 632, 1037, 165]],\n", " [[4174, 632, 5259, 1037, 165]],\n", " [[5244, 632, 1037, 165]],\n", " [[274, 3573, 4448, 6276]],\n", " [[1775, 438, 10810, 4936, 15247, 274, 4, 347, 4]],\n", " [[726, 12, 597, 5655, 7776, 4998]],\n", " [[208, 1741, 260, 6163, 3726, 102, 234, 19291, 1688, 5107]],\n", " [[3274, 331, 4223]],\n", " [[11193, 1908, 274, 4, 347, 4]],\n", " [[17112, 3061, 12, 487, 5600, 139]],\n", " [[5429, 24542, 298, 45739, 1879]],\n", " [[2027, 188, 469, 15626]],\n", " [[13800, 41269, 31221]],\n", " [[7320, 632, 1037, 165]],\n", " [[12723, 12130, 1178]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[2711, 23070, 9089, 14035, 3309, 876]],\n", " [[5429, 2049, 16408]],\n", " [[2893, 13345, 263, 6304, 415, 281, 109, 37313, 3314, 139]],\n", " [[44558, 991, 853, 4077, 873, 2768, 2258, 12150]],\n", " [[1470, 390, 18, 632, 865, 3512, 165]],\n", " [[1209, 31002, 16146, 6331, 366]],\n", " [[580, 3600, 315, 274, 4, 347, 4]],\n", " [[312, 1829, 248, 18974, 354, 274, 4, 347, 4]],\n", " [[3426, 274, 4, 347, 4]],\n", " [[21774, 632, 1037, 165]],\n", " [[896, 604, 18, 632, 4191, 165]],\n", " [[4436, 26827, 906, 289, 1140, 763, 6070, 5413, 2009]],\n", " [[5429, 221, 4438, 412]],\n", " [[1211, 2141, 274, 4, 347, 4]],\n", " [[726, 12, 534, 4759, 15997, 1847, 2009]],\n", " [[4998, 953, 7104]],\n", " [[315, 532, 604, 18, 632, 4191, 165]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[21774, 632, 1037, 165]],\n", " [[1221, 632, 5259, 1037, 165]],\n", " [[5429, 13913, 530, 12, 17986, 1001, 264, 705, 8224, 330, 1879, 2348]],\n", " [[28187, 687, 18612, 32825, 24969, 163, 8982, 2133]],\n", " [[4152, 274, 4, 347, 4]],\n", " [[3417, 36802, 5429]],\n", " [[2000, 632, 1037, 165]],\n", " [[20351, 2383, 42775, 2001, 33293]],\n", " [[25305, 8, 26288, 3733, 1417, 1243, 632, 1037, 165]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[11666, 274, 4, 347, 4]],\n", " [[6748, 2723, 9697, 25452, 338, 12109]],\n", " [[6371, 102, 1209, 1075, 274, 4, 347, 4]],\n", " [[2009, 29018, 10221, 2684, 4838, 281, 4989]],\n", " [[4152, 274, 4, 347, 4]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[3426, 274, 4, 347, 4]],\n", " [[5429, 229, 5079, 282, 1630, 271]],\n", " [[2009, 29018, 10221, 2684, 23654, 9401]],\n", " [[9692, 274, 4, 347, 4]],\n", " [[4273, 853, 424, 315, 274, 4, 347, 4]],\n", " [[7296, 271, 8726, 12612]],\n", " [[2822, 6525, 354, 4317, 7474, 118, 1140]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[2529, 119, 3671, 35960]],\n", " [[25305, 8, 26288, 3733, 1417, 1243, 632, 1037, 165]],\n", " [[4619, 26769, 4843, 242, 2005, 6945]],\n", " [[580, 14312, 11645, 19032, 274, 4, 347, 4]],\n", " [[14056, 369, 4680, 274, 4, 347, 4]],\n", " [[1156, 632, 5259, 1037, 165]],\n", " [[5092, 632, 1037, 165]],\n", " [[7224, 597, 19643, 1688, 3999, 1243]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[208, 4214, 15333, 5429]],\n", " [[96, 242, 366, 13519, 625, 4733]],\n", " [[14993, 5150, 10888, 19864, 354, 274, 1140, 4691, 179]],\n", " [[274, 530, 6015, 255, 2558, 4955, 17010]],\n", " [[255, 14744, 632, 1037, 165]],\n", " [[726, 12, 725, 718, 337, 208, 5268]],\n", " [[826, 2583, 12, 24667, 863]],\n", " [[208, 1741, 19209, 19380, 12, 565, 677, 47497]],\n", " [[6015, 16641, 163, 20997]],\n", " [[4677, 254, 4992, 5429]],\n", " [[9096, 3497, 632, 5259, 1037, 165]],\n", " [[315, 532, 604, 18, 632, 4191, 165]],\n", " [[12919, 274, 4, 347, 4]],\n", " [[391, 1101, 632, 1037, 165]],\n", " [[15607, 412, 274, 4, 347, 4]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[5429, 13985, 405, 6130, 14330]],\n", " [[5429, 16706, 90, 7228, 229, 3671, 8502]],\n", " [[6253, 846, 5620, 354, 3321]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[11141, 281, 3060, 4488, 274, 4, 347, 4]],\n", " [[2910, 632, 1037, 165]],\n", " [[289, 24812, 523, 1456, 108, 254, 264, 3952, 274, 4, 347, 4]],\n", " [[726, 4417, 338, 4998]],\n", " [[13077, 412, 83, 4, 597, 4, 347, 4]],\n", " [[2032, 11850, 257, 5429]],\n", " [[5302, 2681, 1243, 967, 366, 274, 4, 347, 4]],\n", " [[33445, 14511, 3109]],\n", " [[2910, 632, 1037, 165]],\n", " [[384, 10839, 642, 493, 5366, 2601]],\n", " [[4152, 305, 4, 597, 4, 347, 4]],\n", " [[5092, 632, 1037, 165]],\n", " [[12723, 12130, 1178]],\n", " [[1156, 632, 5259, 1037, 165]],\n", " [[9692, 274, 4, 347, 4]],\n", " [[11536, 632, 1037, 165]],\n", " [[1211, 6518, 8441]],\n", " [[21774, 632, 1037, 165]],\n", " [[1221, 390, 18, 632, 4191, 165]],\n", " [[5028, 632, 1037, 165]],\n", " [[11437, 632, 5259, 1037, 165]],\n", " [[5706, 274, 4, 347, 4]],\n", " [[497, 5638, 405, 366, 274, 4, 347, 4]],\n", " [[2009, 27417, 2684, 2884, 1113, 9401]],\n", " [[248, 11579, 11631, 3785, 1168, 263, 4612]],\n", " [[18490, 632, 5259, 1037, 165]],\n", " [[5703, 38901, 4216]],\n", " [[289, 39933, 525, 625, 271]],\n", " [[5926, 2032, 16248, 5429]],\n", " [[4436, 29, 385, 108, 11094, 4947, 11249, 3663, 13324]],\n", " [[234, 1277, 21402, 211, 6472, 102, 42191, 11591]],\n", " [[726, 12, 3609, 102, 873, 230, 3632]],\n", " [[83, 4, 347, 4, 7338]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[2822, 3622, 12612]],\n", " [[4644, 632, 5259, 1037, 165]],\n", " [[272, 14996, 19380]],\n", " [[798, 632, 1037, 165]],\n", " [[840, 873, 873, 726, 7746, 3572, 2009]],\n", " [[9096, 3497, 632, 5259, 1037, 165]],\n", " [[2009, 29018, 10221, 2684, 4119, 6303, 271, 1168]],\n", " [[1775, 438, 10810, 4936, 15247, 274, 4, 347, 4]],\n", " [[5429, 4612, 163, 5269, 30919, 594]],\n", " [[29018, 10221, 2684, 2893, 13345, 263, 8062]],\n", " [[22256, 2565, 632, 1037, 165]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[2910, 632, 1037, 165]],\n", " [[12933, 632, 1037, 165]],\n", " [[1491, 1872, 413, 274, 4, 347, 4]],\n", " [[14993, 9504, 366, 274, 4, 347, 4]],\n", " [[4273, 853, 424, 315, 274, 4, 347, 4]],\n", " [[1775, 438, 10810, 5477, 19067, 274, 4, 347, 4]],\n", " [[274, 4, 347, 4, 2848, 139]],\n", " [[1063, 611, 493, 272, 6106, 1277, 11936, 7771]],\n", " [[726, 12, 8138, 10810, 4998]],\n", " [[4341, 3671, 642, 1033, 5429]],\n", " [[5295, 632, 5259, 1037, 165]],\n", " ...],\n", " 'relation': ['P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " ...],\n", " 'num_answers': [1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " ...]},\n", " '2021-Q3': {'text': [['Alex Morgan plays for .'],\n", " ['Lionel Messi plays for .'],\n", " ['Cristiano Ronaldo plays for .'],\n", " ['LeBron James plays for .'],\n", " ['Puck Moonen plays for .'],\n", " ['Zlatan Ibrahimović plays for .'],\n", " ['Neymar plays for .'],\n", " ['Ronaldinho plays for .'],\n", " ['Megan Rapinoe plays for .'],\n", " ['Pau Gasol plays for .'],\n", " ['Alisha Lehmann plays for .'],\n", " ['Robert Lewandowski plays for .'],\n", " ['Andrea Pirlo plays for .'],\n", " ['Kevin Durant plays for .'],\n", " ['Lewis Hamilton plays for .'],\n", " ['Formiga plays for .'],\n", " ['Naomi Osaka plays for .'],\n", " ['José Mourinho plays for .'],\n", " ['Luis Suárez plays for .'],\n", " ['Tim Cahill plays for .'],\n", " ['Chris Froome plays for .'],\n", " ['Lieke Martens plays for .'],\n", " ['Manuel Neuer plays for .'],\n", " ['Lindsey Horan plays for .'],\n", " ['Javier Mascherano plays for .'],\n", " ['Mark Cavendish plays for .'],\n", " ['James Rodríguez plays for .'],\n", " ['Hope Solo plays for .'],\n", " ['Diego Forlán plays for .'],\n", " ['Sebastián Abreu plays for .'],\n", " ['Carli Lloyd plays for .'],\n", " ['Marta plays for .'],\n", " ['Javier Hernández plays for .'],\n", " ['Yuzvendra Chahal plays for .'],\n", " ['Fernando Alonso plays for .'],\n", " ['Thiago Silva plays for .'],\n", " ['Andrés Iniesta plays for .'],\n", " ['Sergio Agüero plays for .'],\n", " ['Marianne Vos plays for .'],\n", " ['Sergio Ramos plays for .'],\n", " ['Dani Alves plays for .'],\n", " ['Pepe Reina plays for .'],\n", " ['Giovani dos Santos plays for .'],\n", " ['Ricardo Quaresma plays for .'],\n", " ['Mesut Özil plays for .'],\n", " ['Freddy Adu plays for .'],\n", " ['Cristiane Rozeira plays for .'],\n", " ['Maya Moore plays for .'],\n", " ['Giorgio Chiellini plays for .'],\n", " ['Bastian Schweinsteiger plays for .'],\n", " ['Luis Scola plays for .'],\n", " ['Kevin-Prince Boateng plays for .'],\n", " ['Vincenzo Nibali plays for .'],\n", " ['Egidio Arévalo Rios plays for .'],\n", " ['Dwyane Wade plays for .'],\n", " ['Arjen Robben plays for .'],\n", " ['Dwight Howard plays for .'],\n", " ['Cesc Fàbregas plays for .'],\n", " ['Nigel de Jong plays for .'],\n", " ['Colin Kazim-Richards plays for .'],\n", " ['Pierre-Emerick Aubameyang plays for .'],\n", " ['Xherdan Shaqiri plays for .'],\n", " ['Marc Gasol plays for .'],\n", " ['Laura Kenny plays for .'],\n", " ['Aristide Bancé plays for .'],\n", " ['Philippe Gilbert plays for .'],\n", " ['Breanna Stewart plays for .'],\n", " ['Ali Krieger plays for .'],\n", " ['Antoine Griezmann plays for .'],\n", " ['Mohamed Salah plays for .'],\n", " ['Memphis Depay plays for .'],\n", " ['Pablo Zabaleta plays for .'],\n", " ['Jozy Altidore plays for .'],\n", " ['Steve Nash plays for .'],\n", " ['Maya Yoshida plays for .'],\n", " ['Gary Cahill plays for .'],\n", " ['Guillermo Ochoa plays for .'],\n", " ['Serge Gnabry plays for .'],\n", " ['Christine Sinclair plays for .'],\n", " ['Paul Pogba plays for .'],\n", " ['Hugo Almeida plays for .'],\n", " [\"Raïs M'Bolhi plays for .\"],\n", " ['Peter Sagan plays for .'],\n", " ['Joel Campbell plays for .'],\n", " ['Luka Modrić Papá de Lionel Messi plays for .'],\n", " ['Elia Viviani plays for .'],\n", " ['Toni Kroos plays for .'],\n", " ['Giulia Gwinn plays for .'],\n", " ['Ellen van Dijk plays for .'],\n", " ['Lucas Barrios plays for .'],\n", " ['Daniel Fernandes plays for .'],\n", " ['Juan Mata plays for .'],\n", " ['Michael Bradley plays for .'],\n", " ['Gonzalo Higuaín plays for .'],\n", " ['Greg Van Avermaet plays for .'],\n", " ['Alexandra Lacrabère plays for .'],\n", " ['Javi Martínez plays for .'],\n", " ['Davide Rebellin plays for .'],\n", " ['Kyrie Irving plays for .'],\n", " ['Sebastian Vettel plays for .'],\n", " ['Ingrid Syrstad Engen plays for .'],\n", " ['Adrien Silva plays for .'],\n", " ['Rigoberto Urán plays for .'],\n", " ['John Arne Riise plays for .'],\n", " ['Tobin Heath plays for .'],\n", " ['Hedvig Lindahl plays for .'],\n", " ['Marcelo plays for .'],\n", " ['Radamel Falcao plays for .'],\n", " ['Jakob Fuglsang plays for .'],\n", " ['Mikel John Obi plays for .'],\n", " ['Hulk plays for .'],\n", " ['Rudy Fernández plays for .'],\n", " ['Lizzie Deignan plays for .'],\n", " ['Zé Roberto plays for .'],\n", " ['Rohan Dennis plays for .'],\n", " ['Łukasz Fabiański plays for .'],\n", " ['Mats Hummels plays for .'],\n", " ['Diego Ribas da Cunha plays for .'],\n", " ['Anna van der Breggen plays for .'],\n", " ['Rafinha plays for .'],\n", " ['Vladimir Stojković plays for .'],\n", " ['Ángel Di María plays for .'],\n", " ['Chris Paul plays for .'],\n", " ['Rosana dos Santos Augusto plays for .'],\n", " ['Manuel da Costa plays for .'],\n", " ['Alexis Sánchez plays for .'],\n", " ['Sophie Schmidt plays for .'],\n", " ['Pepe plays for .'],\n", " ['Philippe Coutinho plays for .'],\n", " ['Sadio Mané plays for .'],\n", " ['Christen Press plays for .'],\n", " ['Keylor Navas plays for .'],\n", " ['Valentino Rossi plays for .'],\n", " ['Bojan Krkić plays for .'],\n", " ['Shinji Kagawa plays for .'],\n", " ['Steve Mandanda plays for .'],\n", " ['Miodrag Anđelković plays for .'],\n", " ['Thibaut Courtois plays for .'],\n", " ['Eiður Guðjohnsen plays for .'],\n", " ['Jakub Błaszczykowski plays for .'],\n", " ['Henning Berg plays for .'],\n", " ['Annemiek van Vleuten plays for .'],\n", " ['Álvaro Pereira plays for .'],\n", " ['Florent Sinama Pongolle plays for .'],\n", " ['Miljan Mrdaković plays for .'],\n", " ['Mario Götze plays for .'],\n", " ['Jô plays for .'],\n", " ['Claudio Pizarro plays for .'],\n", " ['Nani plays for .'],\n", " ['Ivan Rakitić plays for .'],\n", " ['Erin McLeod plays for .'],\n", " ['Peter Odemwingie plays for .'],\n", " ['Sofia Jakobsson plays for .'],\n", " ['Jordi Alba plays for .'],\n", " ['Tony Martin plays for .'],\n", " ['Kirsten Wild plays for .'],\n", " ['Nicklas Bendtner plays for .'],\n", " ['Junichi Inamoto plays for .'],\n", " ['Niklas Süle plays for .'],\n", " ['Diego Godín plays for .'],\n", " ['Olivier Giroud plays for .'],\n", " ['Tom Dumoulin plays for .'],\n", " ['Nicolas Roche plays for .'],\n", " [\"Kelley O'Hara plays for .\"],\n", " ['Lisa De Vanna plays for .'],\n", " ['Rafael van der Vaart plays for .'],\n", " ['Elena Delle Donne plays for .'],\n", " ['Sakina Karchaoui plays for .'],\n", " ['John Degenkolb plays for .'],\n", " ['Brittney Griner plays for .'],\n", " ['Shunsuke Nakamura plays for .'],\n", " ['David Silva plays for .'],\n", " ['Axel Witsel plays for .'],\n", " ['Andrés Guardado plays for .'],\n", " ['Kylian Mbappé plays for .'],\n", " ['Tom Brady plays for .'],\n", " ['Micah Richards plays for .'],\n", " ['Royston Drenthe plays for .'],\n", " ['Gareth Bale plays for .'],\n", " ['Filipe Luís plays for .'],\n", " ['Romelu Lukaku plays for .'],\n", " ['Erling Haaland plays for .'],\n", " ['Arturo Vidal plays for .'],\n", " ['Jermaine Jones plays for .'],\n", " ['Eden Hazard plays for .'],\n", " ['Demba Ba plays for .'],\n", " ['Nuri Şahin plays for .'],\n", " ['Hugo Lloris plays for .'],\n", " ['Morgan Schneiderlin plays for .'],\n", " ['Thomas Vermaelen plays for .'],\n", " ['Henrikh Mkhitaryan plays for .'],\n", " ['Ryan Babel plays for .'],\n", " ['Aron Baynes plays for .'],\n", " ['Johan Djourou plays for .'],\n", " ['Kevin De Bruyne plays for .'],\n", " ['Shinji Ono plays for .'],\n", " ['Idriss Carlos Kameni plays for .'],\n", " ['Fernando Llorente plays for .'],\n", " ['André Greipel plays for .'],\n", " ['Boris Diaw plays for .'],\n", " ['Anja Mittag plays for .'],\n", " ['Joakim Noah plays for .'],\n", " ['Ricky Rubio plays for .'],\n", " ['Stephan Andersen plays for .'],\n", " [\"Andrés D'Alessandro plays for .\"],\n", " ['Claudio Bravo plays for .'],\n", " ['Becky Sauerbrunn plays for .'],\n", " ['Rafinha plays for .'],\n", " ['Blaise Matuidi plays for .'],\n", " ['Cristian Rodríguez plays for .'],\n", " ['Marek Hamšík plays for .'],\n", " ['Ciro Immobile plays for .'],\n", " [\"Dame N'Doye plays for .\"],\n", " ['Raphaël Varane plays for .'],\n", " ['Roger Kluge plays for .'],\n", " ['Christian Eriksen plays for .'],\n", " ['Luiz Gustavo plays for .'],\n", " ['Hamit Altıntop plays for .'],\n", " ['Brad Guzan plays for .'],\n", " ['André Ayew plays for .'],\n", " ['César Azpilicueta plays for .'],\n", " ['Éric Maxim Choupo-Moting plays for .'],\n", " ['Caroline Seger plays for .'],\n", " ['Fernando Muslera plays for .'],\n", " ['Leonardo Bonucci plays for .'],\n", " ['Nordin Amrabat plays for .'],\n", " ['Richard Kingson plays for .'],\n", " ['Jonny Evans plays for .'],\n", " ['Jonathan de Guzmán plays for .'],\n", " ['Yannick Bolasie plays for .'],\n", " ['Dante Bonfim Costa Santos plays for .'],\n", " ['Park Chu-young plays for .'],\n", " ['Lucas Hernandez plays for .'],\n", " ['Sonny Bill Williams plays for .'],\n", " ['Sydney Leroux plays for .'],\n", " ['Victor Moses plays for .'],\n", " ['Elano plays for .'],\n", " ['Asamoah Gyang plays for .'],\n", " ['Grzegorz Krychowiak plays for .'],\n", " ['Achraf Hakim plays for .'],\n", " ['John Guidetti plays for .'],\n", " ['Salomon Kalou plays for .'],\n", " ['Karen Bardsley plays for .'],\n", " ['Cédric Soares plays for .'],\n", " ['Dietmar Hamann plays for .'],\n", " ['Mark Milligan plays for .'],\n", " ['Yūki Nagasato plays for .'],\n", " ['Pedro plays for .'],\n", " ['Albert Riera plays for .'],\n", " ['Florent Malouda plays for .'],\n", " ['Eduardo Carvalho plays for .'],\n", " ['Maicon plays for .'],\n", " ['Giuseppe Rossi plays for .'],\n", " ['Samir Nasri plays for .'],\n", " ['Andrija Kaluđerović plays for .'],\n", " ['Sarah Storey plays for .'],\n", " ['Daniel Martin plays for .'],\n", " ['Nairo Quintana plays for .'],\n", " ['Leroy Sané plays for .'],\n", " ['Valon Behrami plays for .'],\n", " ['Eiji Kawashima plays for .'],\n", " ['Ana Dabović plays for .'],\n", " ['Raúl Albiol plays for .'],\n", " ['Bryan Ruiz plays for .'],\n", " ['Gabriel Torres plays for .'],\n", " ['Éver Banega plays for .'],\n", " ['Simon Kjær plays for .'],\n", " ['Willy Caballero plays for .'],\n", " ['Sergio Rodríguez plays for .'],\n", " ['Luuk de Jong plays for .'],\n", " ['Eduardo Vargas plays for .'],\n", " ['Ivan Perišić plays for .'],\n", " ['Michał Kwiatkowski plays for .'],\n", " ['Diego Reyes plays for .'],\n", " ['Lars Hirschfeld plays for .'],\n", " ['Abby Dahlkemper plays for .'],\n", " ['Daley Blind plays for .'],\n", " ['Roko Ukić plays for .'],\n", " ['Pablo Contreras plays for .'],\n", " ['Nando de Colo plays for .'],\n", " ['Steph Houghton plays for .'],\n", " ['Jermain Defoe plays for .'],\n", " ['Divock Origi plays for .'],\n", " ['el tete plays for .'],\n", " ['Maximiliano Richeze plays for .'],\n", " ['Ashleigh Barty plays for .'],\n", " ['Curao Ql plays for .'],\n", " ['Marquinhos plays for .'],\n", " ['Julie Ertz plays for .'],\n", " ['Sebastián Eguren plays for .'],\n", " ['Marco Fabián plays for .'],\n", " ['Edvald Boasson-Hagen plays for .'],\n", " ['João Moutinho plays for .'],\n", " ['İlkay Gündoğan plays for .'],\n", " ['Gary Medel plays for .'],\n", " ['Karim Ziani plays for .'],\n", " ['Christian Bolaños plays for .'],\n", " ['David De Gea plays for .'],\n", " ['Esteban Cambiasso plays for .'],\n", " ['Gabriel Enrique Gómez plays for .'],\n", " ['Douglas Costa plays for .'],\n", " ['Michy Batshuayi plays for .'],\n", " ['Yakubu plays for .'],\n", " ['José Fonte plays for .'],\n", " ['Rui Costa plays for .'],\n", " ['Salvatore Sirigu plays for .'],\n", " ['Roman Kreuziger plays for .'],\n", " ['Kasper Schmeichel plays for .'],\n", " ['Roman Bürki plays for .'],\n", " ['Víctor Claver plays for .'],\n", " ['Arkadiusz Milik plays for .'],\n", " ['Daniel Ricciardo plays for .'],\n", " ['Thomas Delaney plays for .'],\n", " ['Kevin Love plays for .'],\n", " ['Stéphane Mbia plays for .'],\n", " ['Tatiana Guderzo plays for .'],\n", " ['Martín Demichelis plays for .'],\n", " ['Siraba Dembele plays for .'],\n", " ['Damian Lillard plays for .'],\n", " ['Richie Porte plays for .'],\n", " ['Sébastien Haller plays for .'],\n", " ['Daisuke Matsui plays for .'],\n", " ['José Sosa plays for .'],\n", " ['Nelson Valdez plays for .'],\n", " ['Alexander Kristoff plays for .'],\n", " ['Luis Advíncula plays for .'],\n", " ['Danilo Pereira plays for .'],\n", " [\"N'Golo Kanté plays for .\"],\n", " ['Duško Tošić plays for .'],\n", " ['Ricardo Rodriguez plays for .'],\n", " ['Shane Smeltz plays for .'],\n", " ['Marcelo Martins Moreno plays for .'],\n", " ['Peter Crouch plays for .'],\n", " ['Simon Gerrans plays for .'],\n", " ['Mark González plays for .'],\n", " ['Kevin Mirallas plays for .'],\n", " ['Alex Song plays for .'],\n", " ['Raul Meireles plays for .'],\n", " ['Ali Riley plays for .'],\n", " ['Anthony Davis plays for .'],\n", " ['Sani Kaita plays for .'],\n", " ['Christie Pearce plays for .'],\n", " ['Luís Fabiano plays for .'],\n", " ['Jan Vertonghen plays for .'],\n", " ['Thiago Alcântara plays for .'],\n", " ['João Mário plays for .'],\n", " ['Alisson plays for .'],\n", " ['Fridolina Rolfö plays for .'],\n", " ['Wout van Aert plays for .'],\n", " ['Alphonse Areola plays for .'],\n", " ['Mousa Dembélé plays for .'],\n", " ['Babett Peter plays for .'],\n", " ['Fabiana da Silva Simões plays for .'],\n", " ['Blerim Džemaili plays for .'],\n", " ['Adriana Leon plays for .'],\n", " ['Naohiro Takahara plays for .'],\n", " ['oscar perez plays for .'],\n", " ['Gaël Kakuta plays for .'],\n", " ['Isco Alarcón plays for .'],\n", " ['Gabriel Tamaș plays for .'],\n", " ['Jaroslav Drobný plays for .'],\n", " ['Raheem Sterling plays for .'],\n", " ['Samuel Umtiti plays for .'],\n", " ['Amido Baldé plays for .'],\n", " ['Brad Jones plays for .'],\n", " ['Adil Rami plays for .'],\n", " ['Miguel Layún plays for .'],\n", " ['Jan Koller plays for .'],\n", " ['Dmitri Alenichev plays for .'],\n", " ['Marco Asensio plays for .'],\n", " ['Michael Mørkøv plays for .'],\n", " ['Kendall Waston plays for .'],\n", " ['Milan Borjan plays for .'],\n", " ['Kamil Glik plays for .'],\n", " ['Roman Neustädter plays for .'],\n", " ['Marcelo Díaz plays for .'],\n", " ['Jesé Rodríguez plays for .'],\n", " ['Roberto Acuña plays for .'],\n", " ['Ricardo Faty plays for .'],\n", " ['Verónica Boquete plays for .'],\n", " ['Danilo Luiz plays for .'],\n", " ['Olga Zabelinskaya plays for .'],\n", " ['Darron Gibson plays for .'],\n", " ['James Harden plays for .'],\n", " ['Russell Westbrak plays for .'],\n", " ['Jung Sung-ryong plays for .'],\n", " ['Melissa Tancredi plays for .'],\n", " ['Daryl Impey plays for .'],\n", " ['Henrik Ojamaa plays for .'],\n", " ['Leon Goretzka plays for .'],\n", " ['Pablo Hernández Domínguez plays for .'],\n", " ['Tomáš Necid plays for .'],\n", " ['Joseph Yobo plays for .'],\n", " ['Rafał Majka plays for .'],\n", " ['Bruma plays for .'],\n", " ['Samuel Inkoom plays for .'],\n", " ['Robbie Rogers plays for .'],\n", " ['Robert de Pinho de Souza plays for .'],\n", " ['Georges Mandjeck plays for .'],\n", " ['Lucho González plays for .'],\n", " ['Ander Herrera plays for .'],\n", " ['Luis León Sánchez plays for .'],\n", " ['Érika Cristiano dos Santos plays for .'],\n", " ['Kingsley Coman plays for .'],\n", " ['Aymeric Laporte plays for .'],\n", " ['Primož Roglič plays for .'],\n", " ['Charles Aránguiz plays for .'],\n", " ['Julian Alaphilippe plays for .'],\n", " ['André Silva plays for .'],\n", " ['Elton Brand plays for .'],\n", " ['Nikita Rukavytsya plays for .'],\n", " ['Marc-André ter Stegen plays for .'],\n", " ['Steven Davis plays for .'],\n", " ['Anderson plays for .'],\n", " ['Matthias Ginter plays for .'],\n", " ['Haris Seferovic plays for .'],\n", " ['Rui Patrício plays for .'],\n", " ['Wojciech Szczęsny plays for .'],\n", " ['Rúrik Gíslason plays for .'],\n", " ['Oscar dos Santos Emboaba Júnior plays for .'],\n", " ['Koo Ja-cheol plays for .'],\n", " ['Lucy Bronze plays for .'],\n", " ['Crystal Dunn plays for .'],\n", " ['Toby Alderweireld plays for .'],\n", " ['Penalty in the UEL final plays for .'],\n", " ['Joe Hart plays for .'],\n", " ['Kepa Arrizabalaga plays for .'],\n", " ['Giannis Antetokounmpo plays for .'],\n", " ['Besart Berisha plays for .'],\n", " ['Willian plays for .'],\n", " ['Obafemi Martins plays for .'],\n", " ['Moussa Maâzou plays for .'],\n", " ['Alexei Eremenko plays for .'],\n", " ['Moussa Dembélé plays for .'],\n", " ['Ashlyn Harris plays for .'],\n", " ['Chris Wood plays for .'],\n", " ['Reto Ziegler plays for .'],\n", " ['Antonio Nocerino plays for .'],\n", " ['Carlos Salcido plays for .'],\n", " ['Oribe Peralta plays for .'],\n", " ['Marco Ureña plays for .'],\n", " ['Antar Yahia plays for .'],\n", " ['Georginio Wijnaldum plays for .'],\n", " ['Sam Kerr plays for .'],\n", " ['Valeri Bojinov plays for .'],\n", " ['Luis Tejada plays for .'],\n", " ['Gökhan İnler plays for .'],\n", " ['Javi García plays for .'],\n", " ['Nicolás Lodeiro plays for .'],\n", " ['Raúl Jiménez plays for .'],\n", " ['Janine Beckie plays for .'],\n", " ['Arda Turan plays for .'],\n", " ['Selim Benachour plays for .'],\n", " ['Mickaël Gelabale plays for .'],\n", " ['Daniel González Güiza plays for .'],\n", " ['Jackie Groenen plays for .'],\n", " ['John Mensah plays for .'],\n", " ['Federico Fazio plays for .'],\n", " ['Carl Medjani plays for .'],\n", " ['Ahmed Musa plays for .'],\n", " ['Essam El-Hadary plays for .'],\n", " ['Vedad Ibišević plays for .'],\n", " ['Marouane Fellaini plays for .'],\n", " ['Miralem Pjanić plays for .'],\n", " ['Jorginho plays for .'],\n", " ['Lacina Traoré plays for .'],\n", " ['Christiane Endler plays for .'],\n", " ['Alyssa Naeher plays for .'],\n", " ['Steven Nzonzi plays for .'],\n", " ['Kim Dong-jin plays for .'],\n", " ['Joshua Kimmich plays for .'],\n", " ['Emre Can plays for .'],\n", " ['Nicolas Batum plays for .'],\n", " ['José Calderón plays for .'],\n", " ['Emiliano Insúa plays for .'],\n", " ['Stephan El Shaarawy plays for .'],\n", " ['Casemiro plays for .'],\n", " ['Júnior Díaz plays for .'],\n", " ['Jodie Taylor plays for .'],\n", " ['Robin Olsen plays for .'],\n", " ['Héctor Herrera plays for .'],\n", " ['Sebastian Giovinco plays for .'],\n", " ['Rodrigo plays for .'],\n", " ['Fernando Gaviria plays for .'],\n", " ['Oleksandr Aliyev plays for .'],\n", " ['Florian Thauvin plays for .'],\n", " ['Kim Bo-kyung plays for .'],\n", " ['Abel Hernández plays for .'],\n", " ['Thorgan Hazard plays for .'],\n", " ['Gotoku Sakai plays for .'],\n", " ['Odion Ighalo plays for .'],\n", " ['Jasmin Glaesser plays for .'],\n", " ['Felipe Melo plays for .'],\n", " ['Gábor Király plays for .'],\n", " ['Herculez Gomez plays for .'],\n", " ['Paulo da Silva plays for .'],\n", " ['Héctor Moreno plays for .'],\n", " ['Cacau plays for .'],\n", " ['Ion Izagirre plays for .'],\n", " ['Denis Cheryshev plays for .'],\n", " ['Anthony Annan plays for .'],\n", " ['Darius Songaila plays for .'],\n", " ['Morgan De Sanctis plays for .'],\n", " ['Joe Ingles plays for .'],\n", " ['Paco Alcácer plays for .'],\n", " ['Sara Däbritz plays for .'],\n", " ['Nikola Mirotić plays for .'],\n", " ['Adlène Guedioura plays for .'],\n", " ['Fábio Coentrão plays for .'],\n", " ['Scott Carson plays for .'],\n", " ['Granit Xhaka plays for .'],\n", " ['Ashkan Dejagah plays for .'],\n", " ['Derrick Rose plays for .'],\n", " ['Makoto Hasebe plays for .'],\n", " ['William Troost-Ekong plays for .'],\n", " ['Mauro Zárate plays for .'],\n", " ['Seydou Doumbia plays for .'],\n", " ['Tomáš Pekhart plays for .'],\n", " ['Jeffrén Suárez plays for .'],\n", " ['Kurt Zouma plays for .'],\n", " ['Nicolás Otamendi plays for .'],\n", " ['Silvestre Varela plays for .'],\n", " ['Hiroki Sakai plays for .'],\n", " ['Geoffrey Kondogbia plays for .'],\n", " ['Antonio Rüdiger plays for .'],\n", " ['Danko Lazović plays for .'],\n", " ['Admir Mehmedi plays for .'],\n", " ['Javier Aquino plays for .'],\n", " ['Kelsey Plum plays for .'],\n", " ['Teemu Pukki plays for .'],\n", " ['Grafite plays for .'],\n", " ['Lisa Brennauer plays for .'],\n", " ['Dejan Lovren plays for .'],\n", " ['Niki Terpstra plays for .'],\n", " ['Marcelinho Paraíba plays for .'],\n", " ['Mix Diskerud plays for .'],\n", " ['David Ospina plays for .'],\n", " ['Alexander Sørloth plays for .'],\n", " ['Manuel Fernandes plays for .'],\n", " ['Marek Saganowski plays for .'],\n", " ['Gabriel Barbosa plays for .'],\n", " ['Besart Abdurahimi plays for .'],\n", " ['Matthew Spiranovic plays for .'],\n", " ['Josip Tadić plays for .'],\n", " ['Younis Mahmoud plays for .'],\n", " ['Jordan Ayew plays for .'],\n", " ['Miguel Lopes plays for .'],\n", " ['Martin Hansen plays for .'],\n", " ['Pierre Bengtsson plays for .'],\n", " ['Taye Taiwo plays for .'],\n", " ['David Carney plays for .'],\n", " ['Ángel Guirado plays for .'],\n", " ['Roberto Jiménez Gago plays for .'],\n", " ['Karen Carney plays for .'],\n", " ['Amin Younes plays for .'],\n", " ['Javier Balboa plays for .'],\n", " ['Francisco Javier Rodríguez plays for .'],\n", " ['Daniëlle van de Donk plays for .'],\n", " ['Reza Ghoochannejhad plays for .'],\n", " ['Kaylyn Kyle plays for .'],\n", " ['André Lotterer plays for .'],\n", " ['Daniel Wass plays for .'],\n", " ['Matías Fernandez plays for .'],\n", " ['Harry Kane plays for .'],\n", " ['Son Heung-min plays for .'],\n", " ['Jhonny Acosta plays for .'],\n", " ['Cléopatre Darleux plays for .'],\n", " ['Tony Gallopin plays for .'],\n", " ['Yann Sommer plays for .'],\n", " ['Eniola Aluko plays for .'],\n", " ['Tyson Chandler plays for .'],\n", " ['Anthony Martial plays for .'],\n", " ['Greg Henderson plays for .'],\n", " ['Kiko Casillas plays for .'],\n", " ['Nilla Fischer plays for .'],\n", " ['Leon Balogun plays for .'],\n", " ['James Milner plays for .'],\n", " ['Cameron Meyer plays for .'],\n", " ['Benjamin Pavard plays for .'],\n", " ['Luís Leal plays for .'],\n", " ['Renato Sanches plays for .'],\n", " ['Mathew Ryan plays for .'],\n", " ['Shuichi Gonda plays for .'],\n", " ['Pierre-Emile Højbjerg plays for .'],\n", " ['Simon Mignolet plays for .'],\n", " ['Ben Sahar plays for .'],\n", " ['Mana Iwabuchi plays for .'],\n", " ['Desiree Scott plays for .'],\n", " ['Quinn plays for .'],\n", " ['Viktor Fischer plays for .'],\n", " ['Ron-Robert Zieler plays for .'],\n", " ['Alex Sandro plays for .'],\n", " ['Damien Le Tallec plays for .'],\n", " ['Tiago Mendes plays for .'],\n", " ['Martin Ødegaard plays for .'],\n", " ['Salvatore Bocchetti plays for .'],\n", " ['Olarenwaju Kayode plays for .'],\n", " ['Fraser Forster plays for .'],\n", " ['Corentin Tolisso plays for .'],\n", " ['Walter Pandiani (CR7 su papá) plays for .'],\n", " ['Justo Villar plays for .'],\n", " ['Francisco Arrué plays for .'],\n", " ['Abel Aguilar plays for .'],\n", " ['Esmaël Gonçalves plays for .'],\n", " ['Sulley Muntari plays for .'],\n", " ['Ragnar Klavan plays for .'],\n", " ['Didier Zokora plays for .'],\n", " ['Oscar Ustari plays for .'],\n", " ['Mitchell Langerak plays for .'],\n", " ['Yassine Bounou plays for .'],\n", " ['Hakim Ziyech plays for .'],\n", " ['Lydia Williams plays for .'],\n", " ['Gabriel Jesus plays for .'],\n", " ['Álvaro Fernández plays for .'],\n", " ['Abdoulaye Ba plays for .'],\n", " ['Julian Draxler plays for .'],\n", " ['Stoycho Mladenov plays for .'],\n", " ['Raphaël Guerreiro plays for .'],\n", " ['Simão Sabrosa plays for .'],\n", " ['Anouk Hoogendijk plays for .'],\n", " ['Emanuel Pogatetz plays for .'],\n", " ['Yannick Carrasco plays for .'],\n", " ['Marko Arnautović plays for .'],\n", " ['Bruno Uvini plays for .'],\n", " ['Lukáš Hrádecký plays for .'],\n", " ['Charles Itandje plays for .'],\n", " ['Ján Mucha plays for .'],\n", " ['Florent Piétrus plays for .'],\n", " ['Riyad Mahrez plays for .'],\n", " ['Andre Iguodala plays for .'],\n", " ['Lasse Norman Hansen plays for .'],\n", " ['Nikos Zisis plays for .'],\n", " ['Alou Diarra plays for .'],\n", " ['Przemysław Tytoń plays for .'],\n", " ['Lucas Moura plays for .'],\n", " ['Álvaro Morata plays for .'],\n", " ['Amandine Henry plays for .'],\n", " ['Jefferson Farfán plays for .'],\n", " ['Martin Braithwaite plays for .'],\n", " ['Carlos Salcedo plays for .'],\n", " ['Gabriel Torje plays for .'],\n", " ['Emily van Egmond plays for .'],\n", " ['Nicolás Laprovíttola plays for .'],\n", " ['Simon Clarke plays for .'],\n", " ['Elias Kachunga plays for .'],\n", " ['Maurice Edu plays for .'],\n", " ['Hatem Ben Arfa plays for .'],\n", " ['Nelson Oliveira plays for .'],\n", " ['Aco Stojkov plays for .'],\n", " ['Charlie Davies plays for .'],\n", " ['Carlos Fernandes plays for .'],\n", " ['Thaisa plays for .'],\n", " ['Álvaro Saborío plays for .'],\n", " ['Gabriel Cichero plays for .'],\n", " ['Fernandinho plays for .'],\n", " ['Vladimir Gabulov plays for .'],\n", " ['Taylor Rochestie plays for .'],\n", " ['Sven Bender plays for .'],\n", " ['Matías Aguirregaray plays for .'],\n", " ['Wilfried Zaha plays for .'],\n", " ['Ibrahim Afellay plays for .'],\n", " ['Mateo Kovačić plays for .'],\n", " ['Matteo Darmian plays for .'],\n", " ['Nathan Jawai plays for .'],\n", " ['Jérémy Ménez plays for .'],\n", " ['Marc Bartra plays for .'],\n", " ['Éric Djemba-Djemba plays for .'],\n", " ['Tarik Elyounoussi plays for .'],\n", " ['Yacine Brahimi plays for .'],\n", " ['Omar Bravo plays for .'],\n", " ['Yuri Zhirkov plays for .'],\n", " ['Antonio Valencia plays for .'],\n", " ['Kenneth Vermeer plays for .'],\n", " ['Juan Manuel Iturbe plays for .'],\n", " ['Julian de Guzman plays for .'],\n", " ['Alexander Merkel plays for .'],\n", " ['Roman Eremenko plays for .'],\n", " ['Lars Bender plays for .'],\n", " ['Suk Hyun-jun plays for .'],\n", " ['Emre Mor plays for .'],\n", " ['Zoran Tošić plays for .'],\n", " ['Jonathan dos Santos plays for .'],\n", " ['Jonathan Mensah plays for .'],\n", " ['Enzo Fernández plays for .'],\n", " ['Kim Young-gwon plays for .'],\n", " ['Oscar Pérez Rojas plays for .'],\n", " ['Astrit Ajdarević plays for .'],\n", " ['Rolf Feltscher plays for .'],\n", " ['Darren Randolph plays for .'],\n", " ['Ivan Pelizzoli plays for .'],\n", " ['Radomir Đalović plays for .'],\n", " ['Adam Nemec plays for .'],\n", " ['Kristie Mewis plays for .'],\n", " ['Hannes Þór Halldórsson plays for .'],\n", " ['Valon Berisha plays for .'],\n", " ['Marco Donadel plays for .'],\n", " ['Ola Toivonen plays for .'],\n", " ['Winston Reid plays for .'],\n", " ['Max Kruse plays for .'],\n", " ['Saki Kumagai plays for .'],\n", " ['Branko Ilić plays for .'],\n", " ['Răzvan Raț plays for .'],\n", " ['Robert Snodgrass plays for .'],\n", " ['Viola plays for .'],\n", " ['Klay Thompson plays for .'],\n", " ['Stefan Nikolić plays for .'],\n", " ['Carlos Sainz Jr plays for .'],\n", " ['Andressa Alves da Silva plays for .'],\n", " ['Álvaro Negredo plays for .'],\n", " ['Michail Antonio plays for .'],\n", " ['José Bosingwa plays for .'],\n", " ['Atsuto Uchida plays for .'],\n", " ['Lisa Dahlkvist plays for .'],\n", " ['James Troisi plays for .'],\n", " ['Yacouba Sylla plays for .'],\n", " ['Simon Vukčević plays for .'],\n", " ['Cristian Gamboa plays for .'],\n", " ['Elisa Longo Borghini plays for .'],\n", " ['Roberto Soldado plays for .'],\n", " ['Diana Matheson plays for .'],\n", " ['Steven Caulker plays for .'],\n", " ['Ibrahima Baldé plays for .'],\n", " ['Mbark Boussoufa plays for .'],\n", " ['Achille Emaná plays for .'],\n", " ['Patrice Bernier plays for .'],\n", " ['Ivan Vicelich plays for .'],\n", " ['Islam Slimani plays for .'],\n", " ['Dani Ceballos plays for .'],\n", " ['Lucas Digne plays for .'],\n", " ['Nemanja Matić plays for .'],\n", " ['Andreas Pereira plays for .'],\n", " ['Franck Dja Djédjé plays for .'],\n", " ['Ethan Ampadu plays for .'],\n", " ['R.A. Dickey plays for .'],\n", " ['Yukari Kinga plays for .'],\n", " ['Ed Clancy plays for .'],\n", " ['Cristian Săpunaru plays for .'],\n", " ['Elinton Andrade plays for .'],\n", " ['Siem de Jong plays for .'],\n", " ['Carlos Bueno plays for .'],\n", " ['Loïc Rémy plays for .'],\n", " ['Kozue Ando plays for .'],\n", " ['Jimmy Durmaz plays for .'],\n", " ['Rafael Pereira da Silva plays for .'],\n", " ['Óscar Duarte plays for .'],\n", " ['Michael Hector plays for .'],\n", " ['Alex McCarthy plays for .'],\n", " ['Dzsenifer Marozsán plays for .'],\n", " ['Fabio Aru plays for .'],\n", " ['Sacha Kljestan plays for .'],\n", " ['Sofiane Feghouli plays for .'],\n", " ['Emerson Palmieri plays for .'],\n", " ['Hristijan Kirovski plays for .'],\n", " ['Melanie Behringer plays for .'],\n", " ['Hernanes plays for .'],\n", " ['Isabelle Yacoubou plays for .'],\n", " ['Mauricio Isla plays for .'],\n", " ['Hakan Çalhanoğlu plays for .'],\n", " ['Douglas dos Santos plays for .'],\n", " ['Sinan Bolat plays for .'],\n", " ['Esteban Chaves plays for .'],\n", " ['Marcos Lopes plays for .'],\n", " ['Mario Suárez Mata plays for .'],\n", " ['Stine Bredal Oftedal plays for .'],\n", " ['Njazi Kuqi plays for .'],\n", " ['Jesús Navas plays for .'],\n", " ['Shane Duffy plays for .'],\n", " ['Willy Hernangómez plays for .'],\n", " ['Rafael Bastos plays for .'],\n", " ['Carlos Beltrán plays for .'],\n", " ['Nelson Cruz plays for .'],\n", " ['Fiodor Smolov plays for .'],\n", " ['Boban Marjanović plays for .'],\n", " ['Fabián Carini plays for .'],\n", " ['Shelina Zadorsky plays for .'],\n", " ['Pavel Pogrebnyak plays for .'],\n", " ['Goran Pandev plays for .'],\n", " ['Marc Janko plays for .'],\n", " ['Jamal Alioui plays for .'],\n", " ['Mohammadou Idrissou plays for .'],\n", " ['Ousmane Dembélé plays for .'],\n", " ['Bauke Mollema plays for .'],\n", " ['Kalu Uche plays for .'],\n", " ['Burak Yılmaz plays for .'],\n", " ['Jimmy Butler plays for .'],\n", " ['Eduardo da Silva plays for .'],\n", " ['Jefferson Louis plays for .'],\n", " ['Diomansy Kamara plays for .'],\n", " [\"Franck Songo'o plays for .\"],\n", " ['Marco Rojas plays for .'],\n", " ['Aarón Ñíguez plays for .'],\n", " ['Victor Lindelöf plays for .'],\n", " ['Iván Kaviedes plays for .'],\n", " ['Nikola Kalinić plays for .'],\n", " ['Jajá plays for .'],\n", " ['Iván Zarandona plays for .'],\n", " ['DeAndre Yedlin plays for .'],\n", " ['Ikechi Anya plays for .'],\n", " ['Anthony Lopes plays for .'],\n", " ['Clemente Rodríguez plays for .'],\n", " ['Jan Oblak plays for .'],\n", " ['Ritchie De Laet plays for .'],\n", " ['Lassana Diarra plays for .'],\n", " ['Fatos Bećiraj plays for .'],\n", " ['Kalidou Koulibaly plays for .'],\n", " ['Kostas Mitroglou plays for .'],\n", " ['Mario Lemina plays for .'],\n", " ['Mindaugas Kalonas plays for .'],\n", " ['Édouard Mendy plays for .'],\n", " ['Giovanni Sio plays for .'],\n", " ['Tijani Belaïd plays for .'],\n", " ['Park Joo-ho plays for .'],\n", " ['Emir Spahić plays for .'],\n", " ['Nikica Jelavić plays for .'],\n", " ['Erich Brabec plays for .'],\n", " ['Christian Cueva plays for .'],\n", " ['Yevhen Konoplyanka plays for .'],\n", " ['Paulo Dybala plays for .'],\n", " ['Emanuel Herrera plays for .'],\n", " ['Ludovic Obraniak plays for .'],\n", " ['Kleyr Vieira dos Santos plays for .'],\n", " ['DeMarcus Cousins plays for .'],\n", " ['Ross McCormack plays for .'],\n", " ['Taylor Phinney plays for .'],\n", " ['Maksim Shatskikh plays for .'],\n", " ['Abby Erceg plays for .'],\n", " ['Yukiya Arashiro plays for .'],\n", " ['Jason Denayer plays for .'],\n", " [\"Jolien D'Hoore plays for .\"],\n", " ['Marco Reus plays for .'],\n", " ['Michael Matthews plays for .'],\n", " ['Halil Altıntop plays for .'],\n", " ['Diego Tardelli plays for .'],\n", " ['Isaac Promise plays for .'],\n", " ['Estelle Nze Minko plays for .'],\n", " ['Sergio Henao plays for .'],\n", " ['Andriy Yarmolenko plays for .'],\n", " ['Kamil Grosicki plays for .'],\n", " ['Fabinho plays for .'],\n", " ['Ishak Belfodil plays for .'],\n", " ['Tosaint Ricketts plays for .'],\n", " ['Linda Sembrant plays for .'],\n", " ['Tuncay Şanlı plays for .'],\n", " ['Hameur Bouazza plays for .'],\n", " ['Vladimír Weiss plays for .'],\n", " ['Bernard Mendy plays for .'],\n", " ['Matt Miazga plays for .'],\n", " ['Marcos Alonso plays for .'],\n", " ['Liassine Cadamuro plays for .'],\n", " ['Adam Federici plays for .'],\n", " ['Akaki Khubutia plays for .'],\n", " ['Miloš Teodosić plays for .'],\n", " ['Ellen White plays for .'],\n", " ['Román Torres plays for .'],\n", " ['Brown Ideye plays for .'],\n", " ['Trixi Worrack plays for .'],\n", " ['Sead Kolašinac plays for .'],\n", " ['Bernardo Silva plays for .'],\n", " ['Nils Petersen plays for .'],\n", " ['Oriol Romeu plays for .'],\n", " ['Adolfo Machado plays for .'],\n", " ['Filipe Machado Nascimento plays for .'],\n", " ['Rubén Iván Martínez plays for .'],\n", " ['Josephine Henning plays for .'],\n", " ['Dani Carvajal plays for .'],\n", " ['Joël Matip plays for .'],\n", " ['Marcus Berg plays for .'],\n", " ['Julio César de León plays for .'],\n", " ['Salomón Rondón plays for .'],\n", " ['Edgar Ié plays for .'],\n", " ['Martín Montoya plays for .'],\n", " ['Lucas Piazón plays for .'],\n", " ['Markus Rosenberg plays for .'],\n", " ['Ognjen Vranješ plays for .'],\n", " ['Róbinson Zapata plays for .'],\n", " ['Sébastien Pocognoli plays for .'],\n", " ['Anders Lindegaard plays for .'],\n", " ['Jordan Henderson plays for .'],\n", " ['Josip Drmić plays for .'],\n", " ['Aleksandr Kokorin plays for .'],\n", " ['Juan Bernat plays for .'],\n", " ['Miranda plays for .'],\n", " ['Egan Bernal plays for .'],\n", " ['Camille Abily plays for .'],\n", " ['Stefan Maierhofer plays for .'],\n", " ['Matthieu Dossevi plays for .'],\n", " ['Bafétimbi Gomis plays for .'],\n", " ['Ignatas Konovalovas plays for .'],\n", " ['Karina Maruyama plays for .'],\n", " ['Adreian Payne plays for .'],\n", " ['Enzo Maresca plays for .'],\n", " ['Tomáš Vaclík plays for .'],\n", " ['Zack Steffen plays for .'],\n", " ['Ricardo Oliveira plays for .'],\n", " ['Yun Suk-young plays for .'],\n", " ['Giannelli Imbula plays for .'],\n", " ['Lorenzo Insigne plays for .'],\n", " ['Malcom plays for .'],\n", " ['Albert Bunjaku plays for .'],\n", " ['Victor Obinna plays for .'],\n", " ['William Carvalho plays for .'],\n", " ['Miguel Veloso plays for .'],\n", " ['Felipe Anderson plays for .'],\n", " ['Isaac Cuenca plays for .'],\n", " ['Luis Antonio Jiménez plays for .'],\n", " ['Curtis Davies plays for .'],\n", " ['Dan Ito plays for .'],\n", " ['Odysseas Vlachodimos plays for .'],\n", " ['Eljero Elia plays for .'],\n", " ['Renato Augusto plays for .'],\n", " ['Milan Mačvan plays for .'],\n", " ['Vivianne Miedema plays for .'],\n", " ['Fabian Schär plays for .'],\n", " ['Ashleigh Moolman-Pasio plays for .'],\n", " ['Marcus Rashford plays for .'],\n", " ['André Gomes plays for .'],\n", " ['Dominique Malonga plays for .'],\n", " ['Max Verstappen plays for .'],\n", " ['Mehdi Abeid plays for .'],\n", " ['Alanna Kennedy plays for .'],\n", " ['Ahmed Hegazi plays for .'],\n", " ['Alen Halilović plays for .'],\n", " ['Kenny Miller plays for .'],\n", " ['Dimitris Papadopoulos plays for .'],\n", " ['Adriano Correia Claro plays for .'],\n", " ['Fran Mérida plays for .'],\n", " ['Idrissa Gueye plays for .'],\n", " ['Shahid Afridi plays for .'],\n", " ['Jurica Buljat plays for .'],\n", " ['Adrianna Franch plays for .'],\n", " ['Ludovic Giuly plays for .'],\n", " ['Nastja Čeh plays for .'],\n", " ['Zé Eduardo plays for .'],\n", " ['Riccardo Montolivo plays for .'],\n", " ['Benedikt Höwedes plays for .'],\n", " ['Luka Jović plays for .'],\n", " ['José Holebas plays for .'],\n", " ['Yasuhito Endo plays for .'],\n", " ['Artem Dzyuba plays for .'],\n", " ['Moussa Sow plays for .'],\n", " ['Tomáš Kalas plays for .'],\n", " ['Luis Aguiar plays for .'],\n", " ['Yossi Benayoun plays for .'],\n", " ['Nick Calathes plays for .'],\n", " ['Jorge Ribeiro plays for .'],\n", " ['Wilfried Bony plays for .'],\n", " ['Jamal Blackman plays for .'],\n", " ['Diego Alves plays for .'],\n", " ['Filip Đuričić plays for .'],\n", " ['Roy Carroll plays for .'],\n", " ['Mathieu Valbuena plays for .'],\n", " ['Danilo Cirino de Oliveira plays for .'],\n", " ['Orlando Sá plays for .'],\n", " ['Sérgio Oliveira plays for .'],\n", " ['Miloš Krasić plays for .'],\n", " ['Javad Nekounam plays for .'],\n", " ['Stina Blackstenius plays for .'],\n", " ['James Chester plays for .'],\n", " ['Alexia Putellas plays for .'],\n", " ['Gianluigi Donnarumma plays for .'],\n", " ['Zdeněk Štybar plays for .'],\n", " ['Stephen Sunday plays for .'],\n", " ['Steven Zuber plays for .'],\n", " ['Santiago Arias plays for .'],\n", " ['Aleix Vidal plays for .'],\n", " ['Jordan Pickford plays for .'],\n", " ['Jason Davidson plays for .'],\n", " ['Alfreð Finnbogason plays for .'],\n", " ['Artur Boruc plays for .'],\n", " ['Nicki Bille Nielsen plays for .'],\n", " ['Jonathas de Jesus plays for .'],\n", " ['Sebastián Coates plays for .'],\n", " ['Dimitar Makriev plays for .'],\n", " ['Nick Swisher plays for .'],\n", " ['Stefano Okaka plays for .'],\n", " ['Emerson plays for .'],\n", " ['Damiano Caruso plays for .'],\n", " ['Ifeoma Dieke plays for .'],\n", " ['Javier Pastore plays for .'],\n", " ['Christian Tiffert plays for .'],\n", " ['Dalibor Stevanovič plays for .'],\n", " ['Cenk Tosun plays for .'],\n", " ['Aya Sameshima plays for .'],\n", " ['Dries Mertens plays for .'],\n", " ['Ryan Miller plays for .'],\n", " ['Kim Jin-kyu plays for .'],\n", " ['Lena Goeßling plays for .'],\n", " ['Roberto Firmino plays for .'],\n", " ['Clément Lenglet plays for .'],\n", " ['John Paintsil plays for .'],\n", " ['Tomasz Kuszczak plays for .'],\n", " ['Richard Sukuta-Pasu plays for .'],\n", " ['Henri Anier plays for .'],\n", " ['Juan Fernando Quintero plays for .'],\n", " ['Tiago Ilori plays for .'],\n", " ['Adrián González plays for .'],\n", " ['Ivan Cavaleiro plays for .'],\n", " ['Nacer Chadli plays for .'],\n", " ['Nadia Nadim plays for .'],\n", " ['Peter Lérant plays for .'],\n", " ...],\n", " 'labels': [[[\" United States women's national soccer team\"]],\n", " [[' FC Barcelona']],\n", " [[' Juventus F.C.']],\n", " [[' Los Angeles Lakers']],\n", " [[' Bingoal-Chevalmeire']],\n", " [[' A.C. Milan']],\n", " [[' Brazil national football team']],\n", " [[' Independiente Santa Fe']],\n", " [[' OL Reign']],\n", " [[' FC Barcelona Bàsquet']],\n", " [[' West Ham United F.C.']],\n", " [[' FC Bayern Munich']],\n", " [[' New York City FC']],\n", " [[' Brooklyn Nets']],\n", " [[' Mercedes']],\n", " [[' São José Esporte Clube']],\n", " [[' Japan Fed Cup team']],\n", " [[' Juventus F.C.']],\n", " [[' Atlético Madrid']],\n", " [[' Zhejiang Professional F.C.']],\n", " [[' Israel Start-Up Nation']],\n", " [[' FC Barcelona Femení']],\n", " [[' FC Bayern Munich']],\n", " [[\" United States women's national soccer team\"]],\n", " [[' Hebei F.C.']],\n", " [[' Quick-Step Alpha Vinyl Team']],\n", " [[' Colombia national football team']],\n", " [[' OL Reign']],\n", " [[' Club Atlético Peñarol']],\n", " [[' Audax Italiano']],\n", " [[' NJ/NY Gotham FC']],\n", " [[' FC Rosengård']],\n", " [[' LA Galaxy']],\n", " [[' Royal Challengers Bangalore']],\n", " [[' Alpine F1 Team']],\n", " [[' Chelsea F.C.']],\n", " [[' Vissel Kobe']],\n", " [[' Argentina national football team']],\n", " [[' Jumbo-Visma Women']],\n", " [[' Real Madrid CF']],\n", " [[' São Paulo FC']],\n", " [[' A.C. Milan']],\n", " [[' LA Galaxy']],\n", " [[' Vitória S.C.']],\n", " [[' Fenerbahçe SK']],\n", " [[' Tampa Bay Rowdies']],\n", " [[' Paris Saint-Germain F.C.']],\n", " [[' Minnesota Lynx']],\n", " [[' Juventus F.C.']],\n", " [[' Chicago Fire FC']],\n", " [[' Pallacanestro Varese']],\n", " [[' Unione Sportiva Sassuolo Calcio']],\n", " [[' Trek–Segafredo']],\n", " [[' Atlas F.C.']],\n", " [[' Chicago Bulls']],\n", " [[' FC Groningen']],\n", " [[' Houston Rockets']],\n", " [[' AS Monaco FC']],\n", " [[' LA Galaxy']],\n", " [[' Coritiba F.C.']],\n", " [[' Arsenal F.C.']],\n", " [[' Swiss national football team']],\n", " [[' Los Angeles Lakers']],\n", " [[' Matrix Fitness']],\n", " [[' Horoya AC']],\n", " [[' Lotto–Soudal']],\n", " [[' Seattle Storm']],\n", " [[' Washington Spirit']],\n", " [[' France national association football team']],\n", " [[' Egypt national football team']],\n", " [[' Netherlands national association football team']],\n", " [[' West Ham United F.C.']],\n", " [[' Toronto FC']],\n", " [[' Los Angeles Lakers']],\n", " [[' Japan national football team']],\n", " [[' Crystal Palace F.C.']],\n", " [[' Standard Liège']],\n", " [[' FC Bayern Munich']],\n", " [[' Portland Thorns FC']],\n", " [[' France national association football team']],\n", " [[' Associação Académica de Coimbra – O.A.F.']],\n", " [[' Algeria national football team']],\n", " [[' Bora-Hansgrohe']],\n", " [[' Costa Rica national football team']],\n", " [[' Real Madrid CF']],\n", " [[' Cofidis']],\n", " [[' Germany national association football team']],\n", " [[' SC Freiburg']],\n", " [[' Trek–Segafredo']],\n", " [[' Paraguay national football team']],\n", " [[' Rayo OKC']],\n", " [[' Manchester United F.C.']],\n", " [[' Club de Fútbol Monterrey']],\n", " [[' Inter Miami CF']],\n", " [[' AG2R Citroën Team']],\n", " [[' Fleury Loiret HB']],\n", " [[' FC Bayern Munich']],\n", " [[' Work Service-Vitalcare-Dynatek']],\n", " [[' Brooklyn Nets']],\n", " [[' Scuderia Ferrari']],\n", " [[\" Norway women's national football team\"]],\n", " [[' U.C. Sampdoria']],\n", " [[' EF Education-Nippo']],\n", " [[' Aalesunds FK']],\n", " [[' Arsenal W.F.C.']],\n", " [[' Chelsea F.C.']],\n", " [[' Real Madrid CF']],\n", " [[' Galatasaray S.K.']],\n", " [[' Astana Qazaqstan Team']],\n", " [[' Trabzonspor']],\n", " [[' Clube Atlético Mineiro']],\n", " [[' Real Madrid Baloncesto']],\n", " [[' Trek–Segafredo']],\n", " [[' Sociedade Esportiva Palmeiras']],\n", " [[' Ineos Grenadiers']],\n", " [[' Swansea City A.F.C.']],\n", " [[' Germany national association football team']],\n", " [[' Clube de Regatas do Flamengo']],\n", " [[' SD Worx']],\n", " [[' Brazil national football team']],\n", " [[' Maccabi Haifa F.C.']],\n", " [[' Paris Saint-Germain F.C.']],\n", " [[' Los Angeles Clippers']],\n", " [[' Paris Saint-Germain Féminine']],\n", " [[' Olympiacos F.C.']],\n", " [[' Inter Milan']],\n", " [[' Houston Dash']],\n", " [[' F.C. Porto']],\n", " [[' FC Barcelona']],\n", " [[' Senegal national association football team']],\n", " [[' Chicago Red Stars']],\n", " [[' Real Madrid CF']],\n", " [[' Sepang Racing Team']],\n", " [[' Stoke City F.C.']],\n", " [[' P.A.O.K. Thessaloniki F.C.']],\n", " [[' Olympique de Marseille']],\n", " [[' O.F.K. Beograd']],\n", " [[' Belgium national football team']],\n", " [[' Pune F.C.']],\n", " [[' ACF Fiorentina']],\n", " [[' Stabæk Fotball']],\n", " [[' Movistar Team']],\n", " [[' Cerro Porteño']],\n", " [[' Dundee United F.C.']],\n", " [[' Agrotikos Asteras F.C.']],\n", " [[' Germany national association football team']],\n", " [[' Jiangsu F.C.']],\n", " [[' SV Werder Bremen']],\n", " [[' Orlando City SC']],\n", " [[' Sevilla FC']],\n", " [[' FC Rosengård']],\n", " [[' Bristol City F.C.']],\n", " [[\" Sweden women's national association football team\"]],\n", " [[' Spain national association football team']],\n", " [[' Team Jumbo-Visma']],\n", " [[' Ceratizit–WNT Pro Cycling']],\n", " [[' Rosenborg BK']],\n", " [[' Hokkaido Consadole Sapporo']],\n", " [[' TSG 1899 Hoffenheim']],\n", " [[' Atlético Madrid']],\n", " [[' France national association football team']],\n", " [[' Team Jumbo-Visma']],\n", " [[' Team DSM']],\n", " [[' NJ/NY Gotham FC']],\n", " [[' Brisbane Roar FC W-League']],\n", " [[' Real Betis Balompié']],\n", " [[' Washington Mystics']],\n", " [[' Olympique Lyonnais Féminin']],\n", " [[' Lotto–Soudal']],\n", " [[' Phoenix Mercury']],\n", " [[' Yokohama FC']],\n", " [[' Real Sociedad']],\n", " [[' Borussia Dortmund']],\n", " [[' PSV Eindhoven']],\n", " [[' France national association football team']],\n", " [[' Tampa Bay Buccaneers']],\n", " [[' Aston Villa F.C.']],\n", " [[' Baniyas SC']],\n", " [[' Real Madrid CF']],\n", " [[' Atlético Madrid']],\n", " [[' Belgium national football team']],\n", " [[' Norway national association football team']],\n", " [[' Inter Milan']],\n", " [[\" United States men's national soccer team\"]],\n", " [[' Real Madrid CF']],\n", " [[' Shanghai Shenhua F.C.']],\n", " [[' SV Werder Bremen']],\n", " [[' Tottenham Hotspur F.C.']],\n", " [[' OGC Nice']],\n", " [[' Belgium national football team']],\n", " [[' A.S. Roma']],\n", " [[' Deportivo de La Coruña']],\n", " [[' Toronto Raptors']],\n", " [[' Hamburger SV']],\n", " [[' Belgium national football team']],\n", " [[' FC Ryukyu']],\n", " [[' Málaga CF']],\n", " [[' Udinese Calcio']],\n", " [[' Israel Start-Up Nation']],\n", " [[' San Antonio Spurs']],\n", " [[' Paris Saint-Germain F.C.']],\n", " [[' New York Knicks']],\n", " [[' Cleveland Cavaliers']],\n", " [[' F.C. Copenhagen']],\n", " [[' Club Atlético River Plate']],\n", " [[' Real Betis Balompié']],\n", " [[' Portland Thorns FC']],\n", " [[' FC Bayern Munich']],\n", " [[' France national association football team']],\n", " [[' Club Atlético Peñarol']],\n", " [[' Dalian Professional F.C.']],\n", " [[' Italy national association football team']],\n", " [[' Senegal national association football team']],\n", " [[' France national association football team']],\n", " [[' Lotto–Soudal']],\n", " [[' Denmark national association football team']],\n", " [[' Fenerbahçe SK']],\n", " [[' Galatasaray S.K.']],\n", " [[' Atlanta United FC']],\n", " [[' Swansea City A.F.C.']],\n", " [[' Spain national association football team']],\n", " [[' Cameroon national football team']],\n", " [[' FC Rosengård']],\n", " [[' Galatasaray S.K.']],\n", " [[' Italy national association football team']],\n", " [[' Morocco national football team']],\n", " [[' Accra Great Olympics F.C.']],\n", " [[' West Bromwich Albion F.C.']],\n", " [[' Netherlands national association football team']],\n", " [[' DR Congo national football team']],\n", " [[' Brazil national football team']],\n", " [[' FC Seoul']],\n", " [[' FC Bayern Munich']],\n", " [[' New Zealand national rugby union team']],\n", " [[\" United States women's national soccer team\"]],\n", " [[' Chelsea F.C.']],\n", " [[' Santos F.C.']],\n", " [[' Shanghai Port F.C.']],\n", " [[' Sevilla FC']],\n", " [[' Morocco national football team']],\n", " [[' Sweden national association football team']],\n", " [[' Hertha BSC']],\n", " [[' Manchester City W.F.C.']],\n", " [[' Portugal national association football team']],\n", " [[' TuS Haltern']],\n", " [[' Baniyas SC']],\n", " [[' 1. FFC Frankfurt']],\n", " [[' A.S. Roma']],\n", " [[' FC Koper']],\n", " [[' Wadi Degla SC']],\n", " [[' S.C. Braga']],\n", " [[' S.P. Tre Penne']],\n", " [[' ACF Fiorentina']],\n", " [[' Real Betis Balompié']],\n", " [[' Brisbane Roar FC']],\n", " [[' Storey Racing']],\n", " [[' Israel Start-Up Nation']],\n", " [[' Arkéa–Samsic']],\n", " [[' Germany national association football team']],\n", " [[' Genoa CFC']],\n", " [[' FC Metz']],\n", " [[' Los Angeles Sparks']],\n", " [[' Villarreal CF']],\n", " [[' Liga Deportiva Alajuelense']],\n", " [[' Club Universidad Nacional']],\n", " [[' Al Shabab FC']],\n", " [[' Sevilla FC']],\n", " [[' Chelsea F.C.']],\n", " [[' Olimpia Milano']],\n", " [[' Netherlands national association football team']],\n", " [[' Chile national football team']],\n", " [[' Croatia national association football team']],\n", " [[' Ineos Grenadiers']],\n", " [[' Tigres UANL']],\n", " [[' KFUM-Kameratene Oslo']],\n", " [[' Western New York Flash']],\n", " [[' Netherlands national association football team']],\n", " [[' KK Cedevita Olimpija']],\n", " [[' Melbourne Victory']],\n", " [[\" Fenerbahçe Men's Basketball\"]],\n", " [[' Manchester City W.F.C.']],\n", " [[' Sunderland A.F.C.']],\n", " [[' Belgium national football team']],\n", " [[' São Paulo FC']],\n", " [[' UAE Team Emirates']],\n", " [[' Australia Billie Jean King Cup team']],\n", " [[' Atlético Junior']],\n", " [[' Brazil national football team']],\n", " [[' Chicago Red Stars']],\n", " [[' Club Nacional de Football']],\n", " [[' Mexico national football team']],\n", " [[' TotalEnergies']],\n", " [[' Wolverhampton Wanderers F.C.']],\n", " [[' Germany national association football team']],\n", " [[' Bologna F.C. 1909']],\n", " [[' US Orléans']],\n", " [[' Deportivo Saprissa']],\n", " [[' Spain national association football team']],\n", " [[' Olympiacos F.C.']],\n", " [[' C.S. Cartaginés']],\n", " [[' Juventus F.C.']],\n", " [[' Belgium national football team']],\n", " [[' Kayserispor']],\n", " [[' Portugal national association football team']],\n", " [[' UAE Team Emirates']],\n", " [[' Italy national association football team']],\n", " [[' Gazprom–RusVelo']],\n", " [[' Denmark national association football team']],\n", " [[' Swiss national football team']],\n", " [[' Valencia BC']],\n", " [[' Poland national association football team']],\n", " [[' McLaren']],\n", " [[' Borussia Dortmund']],\n", " [[' Cleveland Cavaliers']],\n", " [[' Hebei F.C.']],\n", " [[' UAE Team ADQ']],\n", " [[' Club Atlético Talleres']],\n", " [[' Toulon Saint-Cyr Var Handball']],\n", " [[' Portland Trail Blazers']],\n", " [[' Ineos Grenadiers']],\n", " [[' Ivory Coast national football team']],\n", " [[' Yokohama FC']],\n", " [[' Fenerbahçe SK']],\n", " [[' Real Madrid CF']],\n", " [[' UAE Team Emirates']],\n", " [[' Peru national football team']],\n", " [[' Portugal national association football team']],\n", " [[' France national association football team']],\n", " [[' Beşiktaş J.K.']],\n", " [[' Swiss national football team']],\n", " [[' Sydney FC']],\n", " [[' Cruzeiro E.C.']],\n", " [[' Burnley F.C.']],\n", " [[' CCC Team']],\n", " [[' Club Deportivo Universidad Católica']],\n", " [[' Everton F.C.']],\n", " [[' West Ham United F.C.']],\n", " [[' Fenerbahçe SK']],\n", " [[' Chelsea F.C. Women']],\n", " [[' Los Angeles Lakers']],\n", " [[' G.S. Iraklis Thessaloniki']],\n", " [[' NJ/NY Gotham FC']],\n", " [[' CR Vasco da Gama']],\n", " [[' S.L. Benfica']],\n", " [[' Spain national association football team']],\n", " [[' Inter Milan']],\n", " [[' Brazil national football team']],\n", " [[' FC Barcelona Femení']],\n", " [[' Team Jumbo-Visma']],\n", " [[' France national association football team']],\n", " [[' Guangzhou City F.C.']],\n", " [[' VfL Wolfsburg Women']],\n", " [[' Wuhan F.C.']],\n", " [[' Genoa CFC']],\n", " [[' Western New York Flash']],\n", " [[' Okinawa SV']],\n", " [[' C.D. Guadalajara']],\n", " [[' Hebei F.C.']],\n", " [[' Spain national association football team']],\n", " [[' FC Voluntari']],\n", " [[' SV Werder Bremen']],\n", " [[' England national association football team']],\n", " [[' France national association football team']],\n", " [[' Guinea-Bissau national football team']],\n", " [[' N.E.C.']],\n", " [[' Boavista F.C.']],\n", " [[' Mexico national football team']],\n", " [[' Czech Republic national beach soccer team']],\n", " [[' FC Yenisey Krasnoyarsk']],\n", " [[' Real Madrid CF']],\n", " [[' Quick-Step Alpha Vinyl Team']],\n", " [[' Costa Rica national football team']],\n", " [[\" Canada men's national soccer team\"]],\n", " [[' Poland national association football team']],\n", " [[' Russia national football team']],\n", " [[' Chile national football team']],\n", " [[' Real Madrid CF']],\n", " [[' Club Rubio Ñu']],\n", " [[' Senegal national association football team']],\n", " [[' A.C. Milan']],\n", " [[' Juventus F.C.']],\n", " [[' Roland Cogeas Edelweiss Squad']],\n", " [[' Salford City F.C.']],\n", " [[' Brooklyn Nets']],\n", " [[' Chicago Bulls']],\n", " [[' Kawasaki Frontale']],\n", " [[' KIF Örebro DFF']],\n", " [[' Israel Start-Up Nation']],\n", " [[' Estonia national football team']],\n", " [[' Germany national association football team']],\n", " [[' Rayo Vallecano']],\n", " [[' Bohemians 1905']],\n", " [[' FK AS Trenčín']],\n", " [[' UAE Team Emirates']],\n", " [[' Real Sociedad']],\n", " [[' Antalyaspor']],\n", " [[' LA Galaxy']],\n", " [[' E.C. Vitória']],\n", " [[' Waasland-Beveren']],\n", " [[' Club Atlético River Plate']],\n", " [[' Spain national association football team']],\n", " [[' Astana Qazaqstan Team']],\n", " [[' Paris Saint-Germain F.C.']],\n", " [[' France national association football team']],\n", " [[' Manchester City F.C.']],\n", " [[' Team Jumbo-Visma']],\n", " [[' FC Bayern Munich']],\n", " [[' Quick-Step Alpha Vinyl Team']],\n", " [[' Portugal national association football team']],\n", " [[' Atlanta Hawks']],\n", " [[' Maccabi Haifa F.C.']],\n", " [[' Germany national association football team']],\n", " [[' Southampton F.C.']],\n", " [[' S.C. Internacional']],\n", " [[' Germany national association football team']],\n", " [[' Swiss national football team']],\n", " [[' Portugal national association football team']],\n", " [[' Juventus F.C.']],\n", " [[' 1. FC Nürnberg']],\n", " [[' Brazil national football team']],\n", " [[' FC Augsburg']],\n", " [[' Manchester City F.C.']],\n", " [[\" United States women's national soccer team\"]],\n", " [[' Tottenham Hotspur F.C.']],\n", " [[' Juventus F.C.']],\n", " [[' Tottenham Hotspur F.C.']],\n", " [[' Spain national association football team']],\n", " [[' Milwaukee Bucks']],\n", " [[' Melbourne Victory']],\n", " [[' Arsenal F.C.']],\n", " [[' Shanghai Shenhua F.C.']],\n", " [[' Sektzia Nes Tziona F.C.']],\n", " [[' Seinäjoen Jalkapallokerho']],\n", " [[' Olympique Lyonnais']],\n", " [[' Orlando Pride']],\n", " [[' Leeds United F.C.']],\n", " [[' FC Sion']],\n", " [[' Orlando City SC']],\n", " [[' Tiburones Rojos de Veracruz']],\n", " [[' C.D. Guadalajara']],\n", " [[' Gwangju FC']],\n", " [[' Angers SCO']],\n", " [[' Netherlands national association football team']],\n", " [[' Chelsea F.C. Women']],\n", " [[' POFC Botev Vratsa']],\n", " [[' Pirata F.C']],\n", " [[' Leicester City F.C.']],\n", " [[' FC Zenit Saint Petersburg']],\n", " [[' Seattle Sounders FC']],\n", " [[' Mexico national football team']],\n", " [[' Houston Dash']],\n", " [[' Galatasaray S.K.']],\n", " [[' Mumbai City FC']],\n", " [[' Élan Chalon']],\n", " [[' Atlético Sanluqueño CF']],\n", " [[' Manchester United W.F.C.']],\n", " [[' AFC Eskilstuna']],\n", " [[' Argentina national football team']],\n", " [[' Algeria national football team']],\n", " [[' Nigeria national football team']],\n", " [[' Nogoom FC']],\n", " [[' Hertha BSC']],\n", " [[' Shandong Taishan F.C.']],\n", " [[' FC Barcelona']],\n", " [[' Italy national association football team']],\n", " [[' Ivory Coast national football team']],\n", " [[\" Colo-Colo women's\"]],\n", " [[' Chicago Red Stars']],\n", " [[' A.S. Roma']],\n", " [[' Seoul E-Land FC']],\n", " [[' Germany national association football team']],\n", " [[' Germany national association football team']],\n", " [[' Charlotte Hornets']],\n", " [[' Comunicaciones FC']],\n", " [[' VfB Stuttgart']],\n", " [[' Italy national association football team']],\n", " [[' Brazil national football team']],\n", " [[' Liga Deportiva Alajuelense']],\n", " [[' Arsenal W.F.C.']],\n", " [[' Sweden national association football team']],\n", " [[' Mexico national football team']],\n", " [[' Italy national association football team']],\n", " [[' Spain national association football team']],\n", " [[' UAE Team Emirates']],\n", " [[' FC Rukh Lviv']],\n", " [[' Olympique de Marseille']],\n", " [[' South Korea national football team']],\n", " [[' Fluminense F.C.']],\n", " [[' Belgium national football team']],\n", " [[' Japan national football team']],\n", " [[' Nigeria national football team']],\n", " [[' TWENTY20 p/b Sho-Air']],\n", " [[' Sociedade Esportiva Palmeiras']],\n", " [[' Szombathelyi Haladás']],\n", " [[' Seattle Sounders FC']],\n", " [[' Deportivo Toluca F.C.']],\n", " [[' PSV Eindhoven']],\n", " [[' VfB Stuttgart II']],\n", " [[' Astana Qazaqstan Team']],\n", " [[' Russia national football team']],\n", " [[' Helsingin Jalkapalloklubi']],\n", " [[' BC Rytas']],\n", " [[' A.S. Roma']],\n", " [[' Utah Jazz']],\n", " [[' Spain national association football team']],\n", " [[\" Germany women's national football team\"]],\n", " [[' FC Barcelona Bàsquet']],\n", " [[' Algeria national football team']],\n", " [[' Rio Ave F.C.']],\n", " [[' Manchester City F.C.']],\n", " [[' Swiss national football team']],\n", " [[' Iran national football team']],\n", " [[' Detroit Pistons']],\n", " [[' Eintracht Frankfurt']],\n", " [[' Nigeria national football team']],\n", " [[' ACF Fiorentina']],\n", " [[' Newcastle United F.C.']],\n", " [[' Legia Warsaw']],\n", " [[' Venezuela national football team']],\n", " [[' France national association football team']],\n", " [[' Argentina national football team']],\n", " [[' C.F. Os Belenenses']],\n", " [[' Japan national football team']],\n", " [[' Central African Republic national football team']],\n", " [[' Germany national association football team']],\n", " [[' NK Olimpija Ljubljana']],\n", " [[' Swiss national football team']],\n", " [[' Mexico national football team']],\n", " [[' Las Vegas Aces']],\n", " [[' Norwich City F.C.']],\n", " [[' Santa Cruz Futebol Clube']],\n", " [[' Ceratizit–WNT Pro Cycling']],\n", " [[' FC Zenit Saint Petersburg']],\n", " [[' TotalEnergies']],\n", " [[' Oeste Futebol Clube']],\n", " [[\" United States men's national soccer team\"]],\n", " [[' S.S.C. Napoli']],\n", " [[' Norway national association football team']],\n", " [[' Kayserispor']],\n", " [[' Legia Warsaw']],\n", " [[' Brazil national football team']],\n", " [[' North Macedonia national football team']],\n", " [[' Zhejiang Professional F.C.']],\n", " [[' Balıkesirspor']],\n", " [[' Talaba SC']],\n", " [[' Ghana national football team']],\n", " [[' Kayserispor']],\n", " [[' FC Ingolstadt 04']],\n", " [[' Sweden national association football team']],\n", " [[' Helsingin Jalkapalloklubi']],\n", " [[' Sydney FC']],\n", " [[' Philippines national football team']],\n", " [[' Olympiacos F.C.']],\n", " [[' Chelsea F.C. Women']],\n", " [[' S.S.C. Napoli']],\n", " [[' Al-Faisaly FC']],\n", " [[' Cruz Azul']],\n", " [[' Olympique Lyonnais']],\n", " [[' Iran national football team']],\n", " [[' Orlando Pride']],\n", " [[' Porsche']],\n", " [[' Denmark national association football team']],\n", " [[' Club Social y Deportivo Colo Colo']],\n", " [[' England national association football team']],\n", " [[' South Korea national football team']],\n", " [[' Municipal Pérez Zeledón']],\n", " [[' Brest Bretagne Handball']],\n", " [[' AG2R Citroën Team']],\n", " [[' Swiss national football team']],\n", " [[' Chelsea F.C. Women']],\n", " [[' Dallas Mavericks']],\n", " [[' France national association football team']],\n", " [[' UnitedHealthcare']],\n", " [[' Spain national association football team']],\n", " [[' Linköpings FC']],\n", " [[' Nigeria national football team']],\n", " [[' Liverpool F.C.']],\n", " [[' Team BikeExchange Jayco']],\n", " [[' France national association football team']],\n", " [[' São Tomé and Príncipe national football team']],\n", " [[' Portugal national association football team']],\n", " [[' Australia national association football team']],\n", " [[' Shimizu S-Pulse']],\n", " [[' Denmark national association football team']],\n", " [[' Belgium national football team']],\n", " [[' APOEL F.C.']],\n", " [[\" Japan women's national football team\"]],\n", " [[\" Canada women's national soccer team\"]],\n", " [[' OL Reign']],\n", " [[' Denmark national association football team']],\n", " [[' Germany national association football team']],\n", " [[' Brazil national football team']],\n", " [[' Montpellier Hérault Sport Club']],\n", " [[' Atlético Madrid']],\n", " [[' Norway national association football team']],\n", " [[' Hellas Verona F.C.']],\n", " [[' FC Shakhtar Donetsk']],\n", " [[' Southampton F.C.']],\n", " [[' Olympique Lyonnais']],\n", " [[' FC Lausanne-Sport']],\n", " [[' Club Social y Deportivo Colo Colo']],\n", " [[' Coquimbo Unido']],\n", " [[' Unión Magdalena']],\n", " [[' Anorthosis Famagusta FC']],\n", " [[' Al Ittihad FC']],\n", " [[' Cagliari Calcio']],\n", " [[' FC Pune City']],\n", " [[' Atlas F.C.']],\n", " [[' Australia national association football team']],\n", " [[' Morocco national football team']],\n", " [[' Morocco national football team']],\n", " [[' Arsenal W.F.C.']],\n", " [[' FC Barcelona']],\n", " [[' San Martín de Tucumán']],\n", " [[' Senegal national association football team']],\n", " [[' Germany national association football team']],\n", " [[' FC Kaisar']],\n", " [[' Portugal national association football team']],\n", " [[' NorthEast United FC']],\n", " [[' AFC Ajax Vrouwen']],\n", " [[' 1. FC Union Berlin']],\n", " [[' Belgium national football team']],\n", " [[' Stoke City F.C.']],\n", " [[' FC Twente']],\n", " [[' Finland national football team']],\n", " [[' Cameroon national football team']],\n", " [[' ŠK Slovan Bratislava']],\n", " [[' Orléans Loiret Basket']],\n", " [[' Algeria national football team']],\n", " [[' Miami Heat']],\n", " [[' Qhubeka Assos']],\n", " [[' AEK Athens B.C.']],\n", " [[' Charlton Athletic F.C.']],\n", " [[' Poland national association football team']],\n", " [[' Brazil national football team']],\n", " [[' Spain national association football team']],\n", " [[' Olympique Lyonnais']],\n", " [[' Alianza Lima']],\n", " [[' FC Barcelona']],\n", " [[' Mexico national football team']],\n", " [[' Romania national association football team']],\n", " [[\" Australia women's national soccer team\"]],\n", " [[' Real Madrid Baloncesto']],\n", " [[' Qhubeka Assos']],\n", " [[' FC Ingolstadt 04']],\n", " [[' Philadelphia Union']],\n", " [[' FC Girondins de Bordeaux']],\n", " [[' Movistar Team']],\n", " [[' FK Vardar']],\n", " [[' New England Revolution']],\n", " [[' UD Vilafranquense']],\n", " [[' Associação Ferroviária de Esportes']],\n", " [[' D.C. United']],\n", " [[' FC Sion']],\n", " [[' Brazil national football team']],\n", " [[' FC Dinamo Moscow']],\n", " [[' KK Crvena Zvezda']],\n", " [[' Germany national association football team']],\n", " [[' Uruguay national football team']],\n", " [[' Crystal Palace F.C.']],\n", " [[' PSV Eindhoven']],\n", " [[' Croatia national association football team']],\n", " [[' Inter Milan']],\n", " [[' Cairns Taipans']],\n", " [[' Paris FC']],\n", " [[' Spain national association football team']],\n", " [[' Voltigeurs de Châteaubriant']],\n", " [[' TSG 1899 Hoffenheim']],\n", " [[' Algeria national football team']],\n", " [[' North Carolina FC']],\n", " [[' Russia national football team']],\n", " [[' Real Madrid CF']],\n", " [[' Los Angeles FC']],\n", " [[' Club Tijuana']],\n", " [[' Ottawa Fury FC']],\n", " [[' Kazakhstan national football team']],\n", " [[' FC Rostov']],\n", " [[' Germany national association football team']],\n", " [[' South Korea national football team']],\n", " [[' Turkey national association football team']],\n", " [[' PFC CSKA Moscow']],\n", " [[' Villarreal CF']],\n", " [[' FC Anzhi Makhachkala']],\n", " [[' Real Madrid Castilla']],\n", " [[' South Korea national football team']],\n", " [[' CF Pachuca']],\n", " [[' Örebro SK']],\n", " [[' Venezuela national football team']],\n", " [[' Republic of Ireland national association football team']],\n", " [[' Vicenza Calcio']],\n", " [[' FK Budućnost Podgorica']],\n", " [[' FC Dinamo Bucharest']],\n", " [[\" United States women's national soccer team\"]],\n", " [[' Iceland national association football team']],\n", " [[' Norway national association football team']],\n", " [[' CF Montréal']],\n", " [[' Sunderland A.F.C.']],\n", " [[' New Zealand national football team']],\n", " [[' 1. FC Union Berlin']],\n", " [[' Olympique Lyonnais Féminin']],\n", " [[' Urawa Red Diamonds']],\n", " [[' Rayo Vallecano']],\n", " [[' Scotland national football team']],\n", " [[' Clube Atlético Taboão da Serra']],\n", " [[' Golden State Warriors']],\n", " [[' LKS Nieciecza']],\n", " [[' Ferrari Grand Prix results']],\n", " [[\" Brazil women's national football team\"]],\n", " [[' Valencia CF']],\n", " [[' West Ham United F.C.']],\n", " [[' Trabzonspor']],\n", " [[' 1. FC Union Berlin']],\n", " [[' Paris Saint-Germain F.C.']],\n", " [[' Liaoning Whowin F.C.']],\n", " [[' Mali national football team']],\n", " [[' Enosis Neon Paralimni FC']],\n", " [[' Costa Rica national football team']],\n", " [[' Trek–Segafredo']],\n", " [[' Villarreal CF']],\n", " [[' Washington Spirit']],\n", " [[' Liverpool F.C.']],\n", " [[' Senegal national association football team']],\n", " [[' KAA Gent']],\n", " [[' Gimnàstic de Tarragona']],\n", " [[' CF Montréal']],\n", " [[' Auckland City FC']],\n", " [[' Algeria national football team']],\n", " [[' Spain national association football team']],\n", " [[' France national association football team']],\n", " [[' Manchester United F.C.']],\n", " [[' Santos FC']],\n", " [[' Al-Shahaniya Sports Club']],\n", " [[' Chelsea F.C.']],\n", " [[' Toronto Blue Jays']],\n", " [[' Sanfrecce Hiroshima Regina']],\n", " [[' JLT Condor']],\n", " [[' Kayserispor']],\n", " [[' Goa ISL team']],\n", " [[' Netherlands national association football team']],\n", " [[' Argentinos Juniors']],\n", " [[' Çaykur Rizespor']],\n", " [[' SGS Essen']],\n", " [[' Sweden national association football team']],\n", " [[' Olympique Lyonnais']],\n", " [[' Costa Rica national football team']],\n", " [[' Jamaica national association football team']],\n", " [[' Crystal Palace F.C.']],\n", " [[' Olympique Lyonnais Féminin']],\n", " [[' Qhubeka Assos']],\n", " [[' New York Red Bulls']],\n", " [[' Algeria national football team']],\n", " [[' A.S. Roma']],\n", " [[' FK Shkëndija']],\n", " [[' FC Bayern Munich Women']],\n", " [[' São Paulo FC']],\n", " [[' CJM Bourges Basket']],\n", " [[' Clube de Regatas do Flamengo']],\n", " [[' Turkey national association football team']],\n", " [[' Brazil national football team']],\n", " [[' Turkey national association football team']],\n", " [[' Team BikeExchange Jayco']],\n", " [[' Lille OSC']],\n", " [[' Spain national association football team']],\n", " [[\" Norway women's national handball team\"]],\n", " [[' PK-35 Vantaa']],\n", " [[' Manchester City F.C.']],\n", " [[' Republic of Ireland national association football team']],\n", " [[' Philadelphia 76ers']],\n", " [[' América Futebol Clube (MG)']],\n", " [[' St. Louis Cardinals']],\n", " [[' Baltimore Orioles']],\n", " [[' Russia national football team']],\n", " [[' Dallas Mavericks']],\n", " [[' Juventud de Las Piedras']],\n", " [[\" Canada women's national soccer team\"]],\n", " [[' FC Dinamo Moscow']],\n", " [[' Genoa CFC']],\n", " [[' FC Basel']],\n", " [[\" Monts d'Or Azergues Foot\"]],\n", " [[' Maccabi Haifa F.C.']],\n", " [[' France national association football team']],\n", " [[' Trek–Segafredo']],\n", " [[' Unión Deportiva Almería']],\n", " [[' Beijing Guoan F.C.']],\n", " [[' Philadelphia 76ers']],\n", " [[' Legia Warsaw']],\n", " [[' Wealdstone F.C.']],\n", " [[' NorthEast United FC']],\n", " [[' PAS Giannina F.C.']],\n", " [[' New Zealand national football team']],\n", " [[' S.C. Braga']],\n", " [[' Sweden national association football team']],\n", " [[' Águilas CF']],\n", " [[' Hellas Verona F.C.']],\n", " [[' K.S.C. Lokeren Oost-Vlaanderen']],\n", " [[' Burgos CF']],\n", " [[\" United States men's national soccer team\"]],\n", " [[' Scotland national football team']],\n", " [[' Portugal national association football team']],\n", " [[' Club Atlético Colón']],\n", " [[' Slovenia national football team']],\n", " [[' Middlesbrough F.C.']],\n", " [[' Olympique de Marseille']],\n", " [[' Wisła Kraków']],\n", " [[' S.S.C. Napoli']],\n", " [[' S.L. Benfica']],\n", " [[' Gabon national football team']],\n", " [[' FK Kauno Žalgiris']],\n", " [[' Chelsea F.C.']],\n", " [[' Stade Rennais F.C.']],\n", " [[' Club Africain']],\n", " [[' South Korea national football team']],\n", " [[' Hamburger SV']],\n", " [[' Guizhou F.C.']],\n", " [[' FC Slovan Liberec']],\n", " [[' Peru national football team']],\n", " [[' Ukraine national association football team']],\n", " [[' Argentina national football team']],\n", " [[' FBC Melgar']],\n", " [[' Maccabi Haifa F.C.']],\n", " [[' Al-Faisaly SC']],\n", " [[' Golden State Warriors']],\n", " [[' Fulham F.C.']],\n", " [[' EF Education-Nippo']],\n", " [[' FC Rukh Lviv']],\n", " [[' Western New York Flash']],\n", " [[' Bahrain Victorious']],\n", " [[' Belgium national football team']],\n", " [[' SD Worx']],\n", " [[' Germany national association football team']],\n", " [[' Team BikeExchange Jayco']],\n", " [[' FC Augsburg']],\n", " [[' Clube de Regatas do Flamengo']],\n", " [[' Kardemir Karabükspor']],\n", " [[\" France women's national handball team\"]],\n", " [[' Qhubeka Assos']],\n", " [[' West Ham United F.C.']],\n", " [[' Stade Rennais F.C.']],\n", " [[' Liverpool F.C.']],\n", " [[' Algeria national football team']],\n", " [[\" Canada men's national soccer team\"]],\n", " [[' Montpellier Hérault Sport Club']],\n", " [[' FC Pune City']],\n", " [[' Red Star F.C.']],\n", " [[' Al-Gharafa Sports Club']],\n", " [[' SC East Bengal']],\n", " [[\" United States men's national soccer team\"]],\n", " [[' Chelsea F.C.']],\n", " [[' Algeria national football team']],\n", " [[' Australia national association football team']],\n", " [[' FC VPK-Ahro Shevchenkivka']],\n", " [[' Virtus Pallacanestro Bologna']],\n", " [[' Arsenal F.C.']],\n", " [[' Seattle Sounders FC']],\n", " [[' Nigeria national football team']],\n", " [[' Trek–Segafredo']],\n", " [[' Bosnia and Herzegovina national football team']],\n", " [[' Portugal national association football team']],\n", " [[' Germany national association football team']],\n", " [[' Southampton F.C.']],\n", " [[' Deportivo Saprissa']],\n", " [[' Saba Qom F.C.']],\n", " [[' Club Atlético Osasuna']],\n", " [[' Arsenal F.C.']],\n", " [[' Spain national association football team']],\n", " [[' Liverpool F.C.']],\n", " [[' FC Krasnodar']],\n", " [[' Club Atlético Platense']],\n", " [[' Everton F.C.']],\n", " [[' Villarreal CF']],\n", " [[' Real Betis Balompié']],\n", " [[' Chelsea F.C.']],\n", " [[' Malmö FF']],\n", " [[' Bosnia and Herzegovina national football team']],\n", " [[' Independiente Santa Fe']],\n", " [[' West Bromwich Albion F.C.']],\n", " [[' Preston North End F.C.']],\n", " [[' England national association football team']],\n", " [[' Swiss national football team']],\n", " [[' ACF Fiorentina']],\n", " [[' Spain national association football team']],\n", " [[' São Paulo FC']],\n", " [[' Ineos Grenadiers']],\n", " [[' Olympique Lyonnais Féminin']],\n", " [[' FK AS Trenčín']],\n", " [[' Togo national football team']],\n", " [[' Al-Hilal SFC']],\n", " [[' Groupama-FDJ']],\n", " [[' Speranza Osaka-Takatsuki']],\n", " [[' ASVEL Basket']],\n", " [[' Palermo FC']],\n", " [[' Czech Republic national association football team']],\n", " [[\" United States men's national soccer team\"]],\n", " [[' Santos F.C.']],\n", " [[' South Korea national football team']],\n", " [[' Stoke City F.C.']],\n", " [[' Italy national association football team']],\n", " [[' FC Zenit Saint Petersburg']],\n", " [[' FC Viktoria Köln']],\n", " [[' MSV Duisburg']],\n", " [[' Portugal national association football team']],\n", " [[' Hellas Verona F.C.']],\n", " [[' Brazil national football team']],\n", " [[\" Hapoel Be'er Sheva F.C.\"]],\n", " [[' Al Nasr SC']],\n", " [[' Hull City A.F.C.']],\n", " [[' Thimpu FC']],\n", " [[' Panathinaikos F.C.']],\n", " [[' Feyenoord']],\n", " [[' Brazil national football team']],\n", " [[' Olimpia Milano']],\n", " [[' Arsenal W.F.C.']],\n", " [[' Swiss national football team']],\n", " [[' SD Worx']],\n", " [[' England national association football team']],\n", " [[' Everton F.C.']],\n", " [[' Congo national football team']],\n", " [[' Red Bull Racing']],\n", " [[' Algeria national football team']],\n", " [[\" Australia women's national soccer team\"]],\n", " [[' Egypt national football team']],\n", " [[' Croatia national association football team']],\n", " [[' Rangers F.C.']],\n", " [[' Atromitos F.C.']],\n", " [[' Club Athletico Paranaense']],\n", " [[' RCD Espanyol de Barcelona']],\n", " [[' Senegal national association football team']],\n", " [[' Melbourne Renegades']],\n", " [[' HNK Zadar']],\n", " [[' Portland Thorns FC']],\n", " [[\" Monts d'Or Azergues Foot\"]],\n", " [[' NŠ Drava Ptuj']],\n", " [[' Al-Shaab CSC']],\n", " [[' A.C. Milan']],\n", " [[' Germany national association football team']],\n", " [[' Real Madrid CF']],\n", " [[' Greece national association football team']],\n", " [[' Gamba Osaka']],\n", " [[' Russia national football team']],\n", " [[' Shabab Al Ahli Club']],\n", " [[' Czech Republic national association football team']],\n", " [[' Club Atlético Peñarol']],\n", " [[' Maccabi Haifa F.C.']],\n", " [[' FC Barcelona Bàsquet']],\n", " [[' Atlético Clube de Portugal']],\n", " [[' Ivory Coast national football team']],\n", " [[' Chelsea F.C.']],\n", " [[' Brazil national football team']],\n", " [[' Serbia national football team']],\n", " [[' Notts County F.C.']],\n", " [[' Olympiacos F.C.']],\n", " [[' Buriram United F.C.']],\n", " [[' Maccabi Tel Aviv F.C.']],\n", " [[' F.C. Porto']],\n", " [[' Lechia Gdańsk']],\n", " [[' Al-Arabi SC']],\n", " [[' Linköpings FC']],\n", " [[' Wales national association football team']],\n", " [[' FC Barcelona Femení']],\n", " [[' Italy national association football team']],\n", " [[' Quick-Step Alpha Vinyl Team']],\n", " [[' Real Salt Lake']],\n", " [[' TSG 1899 Hoffenheim']],\n", " [[' Colombia national football team']],\n", " [[' Spain national association football team']],\n", " [[' England national association football team']],\n", " [[' Australia national association football team']],\n", " [[' Iceland national association football team']],\n", " [[' AFC Bournemouth']],\n", " [[' Panionios F.C.']],\n", " [[' Real Sociedad']],\n", " [[' Uruguay national football team']],\n", " [[' Nea Salamis Famagusta FC']],\n", " [[' Atlanta Braves']],\n", " [[' Italy national association football team']],\n", " [[' S.L. Benfica']],\n", " [[' Bahrain Victorious']],\n", " [[' Vittsjö GIK']],\n", " [[' Argentina national football team']],\n", " [[' FC Erzgebirge Aue']],\n", " [[' FC Mordovia Saransk']],\n", " [[' Turkey national association football team']],\n", " [[' INAC Kobe Leonessa']],\n", " [[' Belgium national football team']],\n", " [[' Vancouver Canucks']],\n", " [[' Muangthong United F.C.']],\n", " [[' VfL Wolfsburg Women']],\n", " [[' Brazil national football team']],\n", " [[' FC Barcelona']],\n", " [[' Maritzburg United F.C.']],\n", " [[' Birmingham City F.C.']],\n", " [[' SV Sandhausen']],\n", " [[' Estonia national football team']],\n", " [[' Colombia national football team']],\n", " [[' Liverpool F.C.']],\n", " [[' New York Mets']],\n", " [[' Portugal national association football team']],\n", " [[' Belgium national football team']],\n", " [[' Portland Thorns FC']],\n", " [[' MŠK - Thermál Veľký Meder']],\n", " ...],\n", " 'labels_ids': [[[315, 532, 390, 18, 632, 4191, 165]],\n", " [[5429, 4612]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[1287, 1422, 6772]],\n", " [[14365, 139, 337, 12, 16764, 6486, 1794, 1885]],\n", " [[83, 4, 347, 4, 7338]],\n", " [[2910, 632, 1037, 165]],\n", " [[4619, 26769, 4843, 242, 2005, 6945]],\n", " [[19763, 16872]],\n", " [[5429, 4612, 163, 5269, 30919, 594]],\n", " [[580, 3600, 315, 274, 4, 347, 4]],\n", " [[5429, 10402, 10489]],\n", " [[188, 469, 412, 5429]],\n", " [[6314, 16421]],\n", " [[7016]],\n", " [[208, 4214, 23087, 7065, 3427, 242, 2893, 13345]],\n", " [[1429, 2337, 968, 165]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[29018, 10221, 2684, 3622]],\n", " [[525, 700, 20852, 12221, 274, 4, 347, 4]],\n", " [[1870, 2776, 12, 10926, 5857]],\n", " [[5429, 4612, 274, 15035, 1977]],\n", " [[5429, 10402, 10489]],\n", " [[315, 532, 390, 18, 632, 4191, 165]],\n", " [[91, 1610, 118, 274, 4, 347, 4]],\n", " [[13287, 12, 25093, 7829, 40236, 2711]],\n", " [[8700, 632, 1037, 165]],\n", " [[19763, 16872]],\n", " [[2009, 29018, 10221, 2684, 4119, 6303, 271, 1168]],\n", " [[11917, 3631, 3108, 139]],\n", " [[10585, 73, 9873, 35733, 5429]],\n", " [[5429, 4168, 3314, 11489, 2586]],\n", " [[5168, 5325]],\n", " [[2930, 32109, 20434, 20071]],\n", " [[22801, 274, 134, 2711]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[10035, 5317, 24058]],\n", " [[5244, 632, 1037, 165]],\n", " [[344, 20031, 12, 846, 40837, 2691]],\n", " [[2822, 3622, 12612]],\n", " [[208, 4214, 15333, 5429]],\n", " [[83, 4, 347, 4, 7338]],\n", " [[5168, 5325]],\n", " [[24589, 1479, 6374, 208, 4, 347, 4]],\n", " [[274, 5777, 28185, 3381, 242, 14795]],\n", " [[6415, 1501, 9224, 38707]],\n", " [[2201, 6130, 12, 534, 8362, 1851, 274, 4, 347, 4]],\n", " [[3161, 14122, 1178]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[1568, 1833, 5429]],\n", " [[18612, 32825, 24969, 468, 1322, 1090]],\n", " [[1332, 242, 5413, 7222, 30089, 257, 5675, 2912, 438, 1020]],\n", " [[20351, 2383, 42775, 2001, 33293]],\n", " [[22705, 274, 4, 347, 4]],\n", " [[1568, 9926]],\n", " [[5429, 18540, 34264]],\n", " [[2499, 11476]],\n", " [[6015, 12696, 5429]],\n", " [[5168, 5325]],\n", " [[2812, 405, 15577, 274, 4, 347, 4]],\n", " [[4152, 274, 4, 347, 4]],\n", " [[5092, 632, 1037, 165]],\n", " [[1287, 1422, 6772]],\n", " [[29830, 18961]],\n", " [[6746, 13578, 7224]],\n", " [[226, 15089, 2383, 104, 6998, 337]],\n", " [[3417, 5809]],\n", " [[663, 11758]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[5028, 632, 1037, 165]],\n", " [[7556, 632, 5259, 1037, 165]],\n", " [[580, 3600, 315, 274, 4, 347, 4]],\n", " [[2177, 5429]],\n", " [[1287, 1422, 6772]],\n", " [[1429, 632, 1037, 165]],\n", " [[9793, 5928, 274, 4, 347, 4]],\n", " [[5787, 5991, 8025, 1899]],\n", " [[5429, 10402, 10489]],\n", " [[5926, 2032, 16248, 5429]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[6331,\n", " 1975,\n", " 493,\n", " 3381,\n", " 4214,\n", " 20341,\n", " 1140,\n", " 119,\n", " 2426,\n", " 263,\n", " 944,\n", " 16231,\n", " 763,\n", " 126,\n", " 384,\n", " 4,\n", " 250,\n", " 4,\n", " 597,\n", " 4]],\n", " [[21774, 632, 1037, 165]],\n", " [[163, 4330, 12, 725, 1253, 15821, 700]],\n", " [[7505, 17458, 632, 1037, 165]],\n", " [[2822, 3622, 12612]],\n", " [[230, 1116, 22831]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[4998, 5547, 1452, 7150]],\n", " [[20351, 2383, 42775, 2001, 33293]],\n", " [[31162, 857, 632, 1037, 165]],\n", " [[4622, 139, 4954, 347]],\n", " [[2361, 315, 274, 4, 347, 4]],\n", " [[2009, 263, 274, 5874, 90, 18217, 3385, 1334, 5460]],\n", " [[3870, 2561, 12612]],\n", " [[5680, 176, 500, 7801, 1001, 105, 282, 2711]],\n", " [[12602, 6801, 5463, 1885, 90, 22783]],\n", " [[5429, 10402, 10489]],\n", " [[6011, 1841, 12, 846, 8632, 6350, 12, 495, 3892, 877, 330]],\n", " [[6314, 16421]],\n", " [[2741, 1906, 6971, 10482]],\n", " [[8683, 390, 18, 632, 1037, 165]],\n", " [[121, 4, 347, 4, 18706, 417, 7228]],\n", " [[17112, 3061, 12, 487, 5600, 139]],\n", " [[83, 4575, 3194, 29, 274, 530]],\n", " [[4152, 305, 4, 597, 4, 347, 4]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[2822, 3622, 12612]],\n", " [[4537, 415, 31126, 857, 208, 4, 530, 4]],\n", " [[8937, 1113, 1209, 11868, 1343, 22398, 2711]],\n", " [[2393, 873, 329, 1790, 12150]],\n", " [[2893, 13345, 29018, 10221, 2684, 16417, 4712]],\n", " [[2822, 3622, 4317, 261, 35678, 139]],\n", " [[20351, 2383, 42775, 2001, 33293]],\n", " [[14585, 2550, 1829, 7065, 3427, 7222, 4677, 1794, 853, 281]],\n", " [[96, 242, 366, 13519, 625, 4733]],\n", " [[15338, 412, 83, 4, 597, 4, 347, 4]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[2893, 13345, 263, 6304, 415, 281, 109, 37313, 3314, 139]],\n", " [[12723, 12130, 1178]],\n", " [[2910, 632, 1037, 165]],\n", " [[1775, 438, 10810, 4936, 15247, 274, 4, 347, 4]],\n", " [[2201, 6130, 12, 534, 8362, 1851, 274, 4, 347, 4]],\n", " [[1287, 1422, 12190]],\n", " [[2201, 6130, 12, 534, 8362, 1851, 274, 1140, 4691, 833]],\n", " [[14993, 9504, 366, 274, 4, 347, 4]],\n", " [[3870, 7338]],\n", " [[2499, 18946]],\n", " [[274, 4, 347, 4, 2848, 139]],\n", " [[5429, 4612]],\n", " [[18490, 632, 5259, 1037, 165]],\n", " [[1568, 1211, 7144]],\n", " [[2822, 3622, 12612]],\n", " [[6974, 1097, 8441, 2711]],\n", " [[15607, 412, 274, 4, 347, 4]],\n", " [[221, 4, 250, 4, 673, 4, 530, 4, 20, 7485, 30521, 8907, 274, 4, 347, 4]],\n", " [[14993, 5150, 263, 23294, 4061]],\n", " [[384, 4, 597, 4, 530, 4, 1456, 2154, 7822]],\n", " [[7320, 632, 1037, 165]],\n", " [[221, 4438, 274, 4, 347, 4]],\n", " [[7224, 597, 19643, 1688, 3999, 1243]],\n", " [[34138, 30422, 330, 274, 1242, 3512]],\n", " [[28147, 31732, 2711]],\n", " [[13943, 1001, 2848, 242, 14182]],\n", " [[15809, 1942, 315, 274, 4, 347, 4]],\n", " [[3303, 12179, 967, 366, 40431, 281, 274, 4, 347, 4]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[27268, 9228, 274, 4, 347, 4]],\n", " [[22753, 21386, 3624, 163, 5593, 225]],\n", " [[5854, 412, 4998]],\n", " [[15206, 4699, 5429]],\n", " [[5429, 4168, 3314, 11489, 2586]],\n", " [[10600, 412, 274, 4, 347, 4]],\n", " [[6171, 390, 18, 632, 5259, 1037, 165]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[2711, 344, 20031, 12, 846, 40837]],\n", " [[13943, 415, 1210, 405, 2383, 771, 16966, 1698, 28544]],\n", " [[11998, 28659, 163, 530]],\n", " [[26455, 330, 23759, 9051, 625, 4104, 37151, 11104]],\n", " [[12932, 534, 43130, 22590, 225, 10436]],\n", " [[29018, 10221, 2684, 3622]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[2711, 344, 20031, 12, 846, 40837]],\n", " [[2711, 43657]],\n", " [[10585, 73, 9873, 35733, 5429]],\n", " [[10157, 3830, 271, 5429, 305, 12, 17608]],\n", " [[2822, 6525, 354, 4317, 7474, 118, 1140]],\n", " [[663, 41375, 2857]],\n", " [[14993, 5150, 10888, 19864, 354, 274, 1140, 4691, 179]],\n", " [[226, 15089, 2383, 104, 6998, 337]],\n", " [[5524, 15933]],\n", " [[31853, 2678, 2583, 5429]],\n", " [[2822, 14585, 2550, 625]],\n", " [[7943, 17280, 13039]],\n", " [[4868, 846, 381, 2028, 5410, 2987]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[6415, 1501, 18794]],\n", " [[16518, 12470, 274, 4, 347, 4]],\n", " [[163, 1543, 219, 281, 4998]],\n", " [[2822, 3622, 12612]],\n", " [[29018, 10221, 2684, 3622]],\n", " [[7320, 632, 1037, 165]],\n", " [[8683, 632, 5259, 1037, 165]],\n", " [[3870, 7338]],\n", " [[315, 532, 604, 18, 632, 4191, 165]],\n", " [[2822, 3622, 12612]],\n", " [[7137, 12242, 15363, 274, 4, 347, 4]],\n", " [[22753, 21386, 3624, 163, 5593, 225]],\n", " [[7570, 20302, 7748, 274, 4, 347, 4]],\n", " [[384, 11961, 16911]],\n", " [[7320, 632, 1037, 165]],\n", " [[83, 4, 104, 4, 12218]],\n", " [[6748, 2723, 9697, 263, 1587, 2812, 257, 14379]],\n", " [[2177, 13114]],\n", " [[36858, 25278, 22753]],\n", " [[7320, 632, 1037, 165]],\n", " [[5429, 35068, 4122, 257]],\n", " [[256, 1526, 462, 6080, 12612]],\n", " [[23917, 33965, 2912, 438, 1020]],\n", " [[1870, 2776, 12, 10926, 5857]],\n", " [[764, 4578, 7963]],\n", " [[2201, 6130, 12, 534, 8362, 1851, 274, 4, 347, 4]],\n", " [[188, 469, 11836]],\n", " [[2986, 9207]],\n", " [[274, 4, 347, 4, 22843]],\n", " [[2009, 29018, 10221, 2684, 1995, 19201]],\n", " [[2822, 6525, 354, 4317, 7474, 118, 1140]],\n", " [[5926, 2032, 16248, 5429]],\n", " [[5429, 10402, 10489]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[2009, 29018, 10221, 2684, 4119, 6303, 271, 1168]],\n", " [[211, 21999, 12221, 274, 4, 347, 4]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[18490, 632, 5259, 1037, 165]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[226, 15089, 2383, 104, 6998, 337]],\n", " [[10060, 632, 5259, 1037, 165]],\n", " [[274, 5777, 28185, 3381, 242, 14795]],\n", " [[4537, 415, 31126, 857, 208, 4, 530, 4]],\n", " [[3317, 315, 5429]],\n", " [[15338, 412, 83, 4, 597, 4, 347, 4]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[14781, 632, 1037, 165]],\n", " [[5429, 4168, 3314, 11489, 2586]],\n", " [[4537, 415, 31126, 857, 208, 4, 530, 4]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[13733, 632, 1037, 165]],\n", " [[5438, 763, 2860, 4365, 274, 4, 347, 4]],\n", " [[580, 14312, 11645, 19032, 274, 4, 347, 4]],\n", " [[7556, 632, 5259, 1037, 165]],\n", " [[10994, 11536, 632, 1037, 165]],\n", " [[2910, 632, 1037, 165]],\n", " [[5429, 9176]],\n", " [[5429, 10402, 10489]],\n", " [[188, 3324, 632, 8808, 2918, 165]],\n", " [[315, 532, 390, 18, 632, 4191, 165]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[12919, 274, 4, 347, 4]],\n", " [[7137, 2848, 274, 4, 347, 4]],\n", " [[15206, 4699, 5429]],\n", " [[13733, 632, 1037, 165]],\n", " [[6171, 632, 5259, 1037, 165]],\n", " [[1405, 12037, 163, 3632]],\n", " [[2361, 412, 305, 4, 597, 4, 347, 4]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[9688, 104, 6579, 18995]],\n", " [[163, 1543, 219, 281, 4998]],\n", " [[112, 4, 274, 5268, 14184]],\n", " [[83, 4, 104, 4, 12218]],\n", " [[5429, 229, 8428]],\n", " [[305, 5416, 926, 7210, 102, 4998]],\n", " [[208, 4, 347, 4, 2265, 6080]],\n", " [[208, 4, 510, 4, 6213, 4676, 858]],\n", " [[7224, 597, 19643, 1688, 3999, 1243]],\n", " [[2822, 6525, 354, 4317, 7474, 118, 1140]],\n", " [[10157, 3830, 271, 5429]],\n", " [[7248, 219, 8441]],\n", " [[1870, 2776, 12, 10926, 5857]],\n", " [[19365, 1140, 102, 2383, 104, 7042, 636]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[4380, 8271, 230, 5268]],\n", " [[5429, 4369, 329]],\n", " [[1287, 1422, 22320]],\n", " [[7296, 271, 8726, 12612]],\n", " [[12966, 6748, 2723, 7222, 726, 1176, 8129, 9401]],\n", " [[2009, 24066, 8843, 234, 1043, 6073]],\n", " [[726, 840, 873, 873, 5429]],\n", " [[15206, 4699, 5429]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[384, 10839, 642, 493, 5366, 2601]],\n", " [[7556, 632, 5259, 1037, 165]],\n", " [[9614, 632, 1037, 165]],\n", " [[11437, 632, 5259, 1037, 165]],\n", " [[96, 242, 366, 13519, 625, 4733]],\n", " [[22569, 1535, 121, 1889, 574]],\n", " [[229, 597, 5725, 12, 530, 8015, 415, 2552, 26067]],\n", " [[2027, 188, 469, 15626]],\n", " [[7556, 632, 5259, 1037, 165]],\n", " [[229, 530, 23067, 3623, 3119, 384, 10839, 642, 12733]],\n", " [[5703, 15908]],\n", " [[274, 5777, 28185, 3381, 242, 4011, 18, 12610]],\n", " [[2361, 412, 305, 4, 597, 4, 347, 4]],\n", " [[13633, 83, 4, 597, 4, 347, 4]],\n", " [[7320, 632, 1037, 165]],\n", " [[208, 4214, 15333, 5429]],\n", " [[9170, 2711, 8313]],\n", " [[1221, 1585, 324, 5363, 1745, 968, 165]],\n", " [[29018, 10221, 2684, 6843]],\n", " [[2910, 632, 1037, 165]],\n", " [[1568, 1211, 7144]],\n", " [[2009, 234, 1043, 6073, 263, 3910]],\n", " [[1625, 632, 1037, 165]],\n", " [[5480, 717, 27093, 918]],\n", " [[17100, 1908, 9216, 20233, 16885, 274, 4, 347, 4]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[163, 8982, 2133, 274, 4, 347, 4, 41861]],\n", " [[382, 1793, 24227, 1253]],\n", " [[6748, 2723, 9697, 25452, 338, 12109]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[14993, 9504, 366, 274, 4, 347, 4]],\n", " [[230, 4, 104, 4, 13142, 23065, 5739]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[7320, 632, 1037, 165]],\n", " [[229, 4113, 254, 354, 12150]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[9170, 2711, 8313]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[15119, 12501, 2383, 44867, 846, 13961]],\n", " [[10060, 632, 5259, 1037, 165]],\n", " [[5092, 632, 1037, 165]],\n", " [[14567, 9543]],\n", " [[6508, 632, 5259, 1037, 165]],\n", " [[15081]],\n", " [[7943, 17280, 13039]],\n", " [[2986, 9207]],\n", " [[91, 1610, 118, 274, 4, 347, 4]],\n", " [[9170, 2711, 4516, 1864]],\n", " [[2009, 29018, 10221, 2684, 255, 11186, 1535]],\n", " [[255, 5156, 261, 6130, 12, 347, 4503, 9676, 7406, 3512]],\n", " [[5926, 8393, 18191]],\n", " [[96, 242, 366, 13519, 625, 4733]],\n", " [[22256, 2565, 632, 1037, 165]],\n", " [[31853, 2678, 2583, 5429]],\n", " [[274, 5777, 28185, 3381, 242, 14795]],\n", " [[2822, 3622, 12612]],\n", " [[9170, 2711, 8313]],\n", " [[12132, 632, 1037, 165]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[1456, 5235, 967, 4349, 5235, 344, 4, 530, 4]],\n", " [[5092, 632, 1037, 165]],\n", " [[4290, 5429]],\n", " [[13876, 2158, 4712, 381, 4, 347, 4]],\n", " [[7960, 607, 274, 4, 347, 4]],\n", " [[230, 3376, 2711]],\n", " [[2009, 6748, 2723, 9697, 24066, 8843, 7641, 1479, 5895, 102]],\n", " [[9692, 274, 4, 347, 4]],\n", " [[580, 3600, 315, 274, 4, 347, 4]],\n", " [[274, 5777, 28185, 3381, 242, 14795]],\n", " [[3098, 274, 4, 347, 4, 2691]],\n", " [[1287, 1422, 6772]],\n", " [[272, 4, 104, 4, 38, 9418, 14496, 20, 7485, 30521, 8907]],\n", " [[10585, 73, 9873, 35733, 5429]],\n", " [[4307, 12599, 876, 2955, 272, 2583]],\n", " [[208, 4, 574, 4, 1664, 506, 2426]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[3870, 7338]],\n", " [[2910, 632, 1037, 165]],\n", " [[5429, 4612, 274, 15035, 1977]],\n", " [[2711, 344, 20031, 12, 846, 40837]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[21105, 18604, 412, 274, 4, 347, 4]],\n", " [[468, 506, 574, 7602, 16408, 2691]],\n", " [[305, 2957, 260, 274, 4, 347, 4]],\n", " [[4380, 8271, 230, 5268]],\n", " [[2027, 188, 469, 15626]],\n", " [[36265, 22753]],\n", " [[230, 4, 495, 4, 2646, 23073, 1176, 1742]],\n", " [[91, 1610, 118, 274, 4, 347, 4]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[5429, 5896, 5973, 1512]],\n", " [[22753, 21386, 3624, 163, 5593, 225]],\n", " [[1156, 632, 5259, 1037, 165]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[14667, 12, 387, 3006, 1180, 632, 1037, 165]],\n", " [[234, 4, 717, 4, 347, 4]],\n", " [[3542, 1469, 6377, 274, 4, 347, 4]],\n", " [[1625, 632, 1037, 165]],\n", " [[9096, 3497, 632, 4105, 4191, 165]],\n", " [[5429, 30377, 1496, 219, 229, 5079, 282, 2160, 2726, 330]],\n", " [[2822, 3622, 12612]],\n", " [[13287, 12, 25093, 7829, 40236, 2711]],\n", " [[7505, 17458, 632, 1037, 165]],\n", " [[896, 604, 18, 632, 4191, 165]],\n", " [[6508, 632, 5259, 1037, 165]],\n", " [[798, 632, 1037, 165]],\n", " [[9614, 632, 1037, 165]],\n", " [[2822, 3622, 12612]],\n", " [[2009, 16528, 952, 3602, 257]],\n", " [[18490, 632, 5259, 1037, 165]],\n", " [[83, 4, 347, 4, 7338]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[15897, 944, 1899, 281, 2344, 523, 1694, 3006, 19200]],\n", " [[208, 10595, 3109, 412, 274, 4, 347, 4]],\n", " [[6314, 16421]],\n", " [[1568, 9926]],\n", " [[13694, 25280, 7204, 1627]],\n", " [[229, 7025, 30492, 241, 7450, 211, 7389]],\n", " [[1870, 2776, 12, 10926, 5857]],\n", " [[24799, 632, 1037, 165]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[4622, 139, 3767, 459, 38754]],\n", " [[35118, 2071, 40849]],\n", " [[274, 530, 6015, 255, 2558, 4955, 17010]],\n", " [[9170, 2711, 8313]],\n", " [[2822, 14585, 2550, 625]],\n", " [[3702, 7776, 281, 12150]],\n", " [[5168, 5325]],\n", " [[381, 4, 347, 4, 24589, 1479, 6374]],\n", " [[10897, 281, 1245, 12, 9325, 548, 2558]],\n", " [[2009, 29018, 10221, 2684, 1995, 19201]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[8937, 1113, 1209, 11868, 1343, 22398, 2711]],\n", " [[2201, 6130, 12, 534, 8362, 1851, 274, 4, 347, 4]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[2361, 412, 274, 4, 347, 4]],\n", " [[2711, 344, 20031, 12, 846, 40837]],\n", " [[5429, 10402, 10489]],\n", " [[13287, 12, 25093, 7829, 40236, 2711]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[3317, 10506]],\n", " [[1775, 438, 10810, 4936, 15247, 274, 4, 347, 4]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[11666, 274, 4, 347, 4]],\n", " [[208, 4, 347, 4, 23094, 1043, 6073]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[5092, 632, 1037, 165]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[112, 4, 5429, 234, 5172, 282, 2865]],\n", " [[2910, 632, 1037, 165]],\n", " [[5429, 2049, 16408]],\n", " [[2361, 412, 274, 4, 347, 4]],\n", " [[315, 532, 390, 18, 632, 4191, 165]],\n", " [[7570, 20302, 7748, 274, 4, 347, 4]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[7570, 20302, 7748, 274, 4, 347, 4]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[5819, 12770]],\n", " [[5703, 15908]],\n", " [[4152, 274, 4, 347, 4]],\n", " [[7137, 12242, 15363, 274, 4, 347, 4]],\n", " [[21780, 12527, 493, 234, 293, 255, 329, 26051, 274, 4, 347, 4]],\n", " [[1608, 179, 1561, 267, 18057, 344, 9707, 1115, 1250, 21783, 5410]],\n", " [[14993, 5150, 10888, 19864, 354]],\n", " [[5854, 13170]],\n", " [[9245, 315, 274, 4, 347, 4]],\n", " [[5429, 208, 1499]],\n", " [[5854, 412, 4998]],\n", " [[25103, 710, 6909, 3830, 267, 366, 263, 3060, 1043, 2070, 329]],\n", " [[230, 4, 495, 4, 2646, 23073, 1176, 1742]],\n", " [[17822, 1097, 7488, 5429]],\n", " [[7413, 268, 4998, 673]],\n", " [[7556, 632, 5259, 1037, 165]],\n", " [[3098, 274, 4, 347, 4, 2691]],\n", " [[17182, 5268, 163, 6457, 705, 468, 28814, 102]],\n", " [[21299, 2186, 274, 4, 347]],\n", " [[9035, 412, 274, 4, 347, 4]],\n", " [[5429, 13985, 405, 6130, 14330]],\n", " [[3417, 36802, 5429]],\n", " [[1625, 632, 1037, 165]],\n", " [[2499, 18946]],\n", " [[4537, 415, 31126, 857, 208, 4, 530, 4]],\n", " [[5729, 412, 5429]],\n", " [[24986, 6847, 20623, 261]],\n", " [[29018, 10221, 2684, 764, 6487, 3407, 14182, 12612]],\n", " [[2361, 315, 305, 4, 597, 4, 347, 4]],\n", " [[9601, 19119, 32482, 4989]],\n", " [[5244, 632, 1037, 165]],\n", " [[21774, 632, 1037, 165]],\n", " [[2000, 632, 1037, 165]],\n", " [[234, 2154, 11691, 5429]],\n", " [[1405, 12037, 163, 3632]],\n", " [[840, 463, 1657, 9002, 1173, 260, 274, 4, 347, 4]],\n", " [[5429, 4612]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[22256, 2565, 632, 1037, 165]],\n", " [[22378, 12, 18551, 139, 390, 18]],\n", " [[1568, 1211, 7144]],\n", " [[83, 4, 104, 4, 12218]],\n", " [[9176, 381, 12, 26902, 5429]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[5420, 15929]],\n", " [[4556, 26488, 8647, 293, 5429]],\n", " [[468, 506, 387, 312, 9259, 22739]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[2910, 632, 1037, 165]],\n", " [[12966, 6748, 2723, 7222, 726, 1176, 8129, 9401]],\n", " [[4152, 305, 4, 597, 4, 347, 4]],\n", " [[6171, 632, 5259, 1037, 165]],\n", " [[1625, 632, 1037, 165]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[9170, 2711, 8313]],\n", " [[5429, 24542, 298, 45739, 1879]],\n", " [[14993, 5150, 263, 23294, 4061]],\n", " [[391, 1101, 632, 1037, 165]],\n", " [[4150, 18140, 9401, 274, 4, 347, 4]],\n", " [[7320, 632, 1037, 165]],\n", " [[1429, 632, 1037, 165]],\n", " [[2000, 632, 1037, 165]],\n", " [[17535, 5382, 975, 844, 181, 73, 428, 17411, 12, 17906]],\n", " [[14585, 2550, 1829, 7065, 3427, 7222, 4677, 1794, 853, 281]],\n", " [[15837, 5223, 23872, 352, 118, 6579, 625, 6417]],\n", " [[3417, 36802, 5429]],\n", " [[6748, 2723, 9697, 17686, 26802, 274, 4, 347, 4]],\n", " [[4868, 846, 381, 2028, 5410, 2987]],\n", " [[468, 506, 387, 312, 9259, 22739, 3082]],\n", " [[8937, 1113, 1209, 11868, 1343, 22398, 2711]],\n", " [[798, 632, 1037, 165]],\n", " [[44602, 154, 179, 344, 9707, 1115, 1250, 1638, 462, 36384]],\n", " [[9543, 11861, 90, 281]],\n", " [[83, 4, 104, 4, 12218]],\n", " [[4514, 9529]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[1600, 390, 18, 632, 1037, 165]],\n", " [[5429, 4612, 163, 5269, 30919, 594]],\n", " [[21774, 632, 1037, 165]],\n", " [[5716, 4597, 274, 4, 347, 4]],\n", " [[2361, 412, 274, 4, 347, 4]],\n", " [[5092, 632, 1037, 165]],\n", " [[1603, 632, 1037, 165]],\n", " [[2921, 18290]],\n", " [[381, 2544, 338, 11629, 14184]],\n", " [[2000, 632, 1037, 165]],\n", " [[7224, 597, 19643, 1688, 3999, 1243]],\n", " [[8983, 315, 274, 4, 347, 4]],\n", " [[15376, 493, 21115]],\n", " [[6037, 632, 1037, 165]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[5244, 632, 1037, 165]],\n", " [[230, 4, 597, 4, 4838, 4231, 225, 21526]],\n", " [[1429, 632, 1037, 165]],\n", " [[1505, 1704, 3497, 632, 1037, 165]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[35906, 384, 10839, 642, 12733, 226, 267, 1792, 462, 267, 1113]],\n", " [[5092, 632, 1037, 165]],\n", " [[1625, 632, 1037, 165]],\n", " [[2588, 2461, 83, 4643]],\n", " [[18749, 412, 274, 4, 347, 4]],\n", " [[2005, 3590, 274, 4467, 18217, 2893, 13345]],\n", " [[13943, 415, 1210, 405, 2383, 771, 16966, 1698, 28544]],\n", " [[5429, 13985, 405, 6130, 14330]],\n", " [[5480, 717, 27093, 918]],\n", " [[384, 13967, 274, 4467, 18217, 2893, 13345]],\n", " [[315, 532, 604, 18, 632, 4191, 165]],\n", " [[208, 4, 104, 4, 347, 4, 7645, 6483]],\n", " [[8683, 632, 5259, 1037, 165]],\n", " [[229, 4113, 254, 354, 12150]],\n", " [[15376, 493, 21115]],\n", " [[2910, 632, 1037, 165]],\n", " [[369, 21894, 632, 1037, 165]],\n", " [[525, 700, 20852, 12221, 274, 4, 347, 4]],\n", " [[4317, 10031, 7339, 21098, 12150]],\n", " [[7765, 6412, 4998]],\n", " [[5498, 632, 1037, 165]],\n", " [[229, 4113, 254, 354, 12150]],\n", " [[5429, 11996, 1168, 22487, 14722]],\n", " [[6171, 632, 5259, 1037, 165]],\n", " [[44602, 154, 179, 344, 9707, 1115, 1250, 1638, 462, 36384]],\n", " [[4290, 5429]],\n", " [[5639, 632, 1037, 165]],\n", " [[14993, 9504, 366, 274, 4, 347, 4]],\n", " [[3098, 274, 4, 347, 4, 2691]],\n", " [[208, 4, 104, 4, 347, 4, 7645, 6483]],\n", " [[726, 12, 597, 5655, 7776, 5429]],\n", " [[3590, 4947, 922]],\n", " [[14993, 5150, 10888, 19864, 354]],\n", " [[1603, 632, 1037, 165]],\n", " [[5854, 13170]],\n", " [[15091]],\n", " [[10060, 632, 5259, 1037, 165]],\n", " [[2009, 3574, 1423, 6748, 2723, 9697, 22378, 22378]],\n", " [[1156, 632, 5259, 1037, 165]],\n", " [[391, 1101, 632, 1037, 165]],\n", " [[11660, 221, 1140, 13208, 525, 13587, 2727]],\n", " [[163, 7110, 27547, 16784, 7406, 3512]],\n", " [[5680, 176, 500, 7801, 1001, 105, 282, 2711]],\n", " [[5092, 632, 1037, 165]],\n", " [[3098, 274, 4, 347, 4, 2691]],\n", " [[3160, 17492]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[315, 13716, 6350]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[4341, 3671, 642, 1033, 5429]],\n", " [[2000, 632, 1037, 165]],\n", " [[3426, 274, 4, 347, 4]],\n", " [[2711, 23070, 9089, 14035, 3309, 876]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[208, 4214, 1560, 1140, 8, 2869, 17010, 2520, 2379, 632, 1037, 165]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[1221, 632, 5259, 1037, 165]],\n", " [[24052, 17939, 208, 12, 510, 32767]],\n", " [[10060, 632, 5259, 1037, 165]],\n", " [[7320, 632, 1037, 165]],\n", " [[1480, 673, 3721, 274, 4, 347, 4]],\n", " [[1429, 390, 18, 632, 1037, 165]],\n", " [[896, 390, 18, 632, 4191, 165]],\n", " [[19763, 16872]],\n", " [[10060, 632, 5259, 1037, 165]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[2910, 632, 1037, 165]],\n", " [[4436, 26827, 906, 289, 1140, 763, 6070, 5413, 2009]],\n", " [[29018, 10221, 2684, 3622]],\n", " [[8683, 632, 5259, 1037, 165]],\n", " [[11141, 281, 3060, 4488, 274, 4, 347, 4]],\n", " [[5429, 17326, 19654, 29712]],\n", " [[11666, 274, 4, 347, 4]],\n", " [[14993, 5150, 10888, 19864, 354]],\n", " [[5429, 1587, 687, 8799, 12, 19451]],\n", " [[2009, 3574, 1423, 6748, 2723, 9697, 22378, 22378]],\n", " [[944, 2253, 757, 3983, 1890, 6005]],\n", " [[22839, 2727, 3771, 20375, 4242]],\n", " [[660, 22494, 13310, 18440, 1073, 4193, 102, 5429]],\n", " [[726, 85, 90, 19284, 5429]],\n", " [[230, 1073, 3572, 1512, 2912, 438, 1020]],\n", " [[5429, 221, 4438, 412]],\n", " [[22705, 274, 4, 347, 4]],\n", " [[1221, 632, 5259, 1037, 165]],\n", " [[13733, 632, 1037, 165]],\n", " [[13733, 632, 1037, 165]],\n", " [[4152, 305, 4, 597, 4, 347, 4]],\n", " [[5429, 4612]],\n", " [[764, 5465, 17010, 263, 33759, 783, 7499]],\n", " [[18490, 632, 5259, 1037, 165]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[5429, 7916, 354, 271]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[369, 17577, 315, 5429]],\n", " [[9601, 24857, 468, 8508, 11760]],\n", " [[112, 4, 5429, 1332, 5459]],\n", " [[7320, 632, 1037, 165]],\n", " [[15607, 412, 274, 4, 347, 4]],\n", " [[5429, 9922, 8530]],\n", " [[12587, 632, 1037, 165]],\n", " [[14781, 632, 1037, 165]],\n", " [[2742, 21402, 530, 4424, 22015, 2265, 415, 13714, 8604]],\n", " [[1793, 24227, 1253, 5463, 1885, 90, 163, 20997]],\n", " [[21774, 632, 1037, 165]],\n", " [[2561, 7772]],\n", " [[1209, 31002, 16146, 6331, 366]],\n", " [[35722, 530, 11198, 163, 4, 347, 4]],\n", " [[15959, 1054, 8899, 274, 4, 347, 4]],\n", " [[6508, 632, 5259, 1037, 165]],\n", " [[2910, 632, 1037, 165]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[14993, 5150, 10888, 19864, 354]],\n", " [[726, 811, 2478, 18471]],\n", " [[5429, 4612]],\n", " [[1625, 632, 1037, 165]],\n", " [[12940, 632, 5259, 1037, 165]],\n", " [[1221, 390, 18, 632, 4191, 165]],\n", " [[2822, 3622, 4317, 261, 35678, 139]],\n", " [[1209, 31002, 16146, 6331, 366]],\n", " [[5429, 11996, 1168, 22487, 14722]],\n", " [[3378, 1332]],\n", " [[5429, 10847, 2832, 1344, 263, 163, 17202, 8624]],\n", " [[28147, 31732, 2711]],\n", " [[274, 530, 468, 1120, 271]],\n", " [[188, 1156, 13340]],\n", " [[33846, 22153, 2001, 3917, 2253, 9401]],\n", " [[6331,\n", " 1975,\n", " 493,\n", " 3381,\n", " 4214,\n", " 6838,\n", " 1001,\n", " 6873,\n", " 1526,\n", " 6374,\n", " 263,\n", " 7065,\n", " 3427,\n", " 293]],\n", " [[211, 4, 347, 4, 315]],\n", " [[5429, 208, 1499]],\n", " [[2910, 632, 1037, 165]],\n", " [[5429, 15757, 12705, 3467]],\n", " [[229, 530, 5309, 2987, 102, 525, 20782, 6106]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[17609, 632, 1037, 165]],\n", " [[9793, 5928, 274, 4, 347, 4]],\n", " [[4868, 846, 381, 2028, 5410, 2987]],\n", " [[11437, 632, 5259, 1037, 165]],\n", " [[3870, 7338]],\n", " [[230, 2456, 6852, 9002, 1588, 1253]],\n", " [[2201, 5429]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[36589, 7876, 4668, 263, 732, 3695, 859, 102, 1792, 1069, 927]],\n", " [[12932, 534, 43130, 22590, 225, 10436]],\n", " [[21774, 632, 1037, 165]],\n", " [[369, 1961, 5429]],\n", " [[798, 632, 1037, 165]],\n", " [[2822, 3622, 12612]],\n", " [[1287, 1422, 5429]],\n", " [[2009, 255, 25491]],\n", " [[5837, 15945, 5429]],\n", " [[17983, 632, 1037, 165]],\n", " [[5429, 30610, 1417]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[391, 1101, 632, 1037, 165]],\n", " [[2769, 632, 5259, 1037, 165]],\n", " [[221, 5268, 7038, 14559, 3467]],\n", " [[7296, 271, 8726, 12612]],\n", " [[5429, 660, 329, 3592, 256, 7352, 1488, 330, 2331]],\n", " [[2822, 3622, 6719, 4699]],\n", " [[391, 1101, 632, 1037, 165]],\n", " [[12612, 221, 1488, 26802]],\n", " [[30492, 241, 7450, 14795]],\n", " [[6037, 632, 1037, 165]],\n", " [[3497, 9, 2487, 632, 5259, 1037, 165]],\n", " [[13708, 26450, 2912, 438, 1020]],\n", " [[274, 530, 11504, 257, 4807, 282, 2603, 21752, 26084, 2426]],\n", " [[5429, 15757, 12705, 19443, 18759]],\n", " [[315, 532, 390, 18, 632, 4191, 165]],\n", " [[14605, 632, 5259, 1037, 165]],\n", " [[8683, 632, 5259, 1037, 165]],\n", " [[12612, 4436, 20287, 337]],\n", " [[13633, 83, 4, 597, 4, 347, 4]],\n", " [[188, 3324, 632, 1037, 165]],\n", " [[112, 4, 5429, 1332, 5459]],\n", " [[14993, 5150, 10888, 19864, 354, 274, 1140, 4691, 179]],\n", " [[121, 9056, 102, 1211, 7128, 29]],\n", " [[4622, 139, 3767, 459, 38754]],\n", " [[3430, 632, 1037, 165]],\n", " [[2893, 13345, 29018, 10221, 2684, 12765, 139, 4214, 2955, 6251, 763]],\n", " [[3274, 331, 4223]],\n", " [[226, 18307, 234, 324, 438, 324, 438, 2478]],\n", " [[10482, 2374, 11761, 775]],\n", " [[2910, 390, 18, 632, 1037, 165]],\n", " [[14567, 12612]],\n", " [[580, 3600, 315, 274, 4, 347, 4]],\n", " [[2393, 873, 329, 1790, 12150]],\n", " [[112, 4, 5429, 1332, 5459]],\n", " [[2201, 6130, 12, 534, 8362, 1851, 274, 4, 347, 4]],\n", " [[27162, 11626, 3990, 1722, 179, 274, 4, 347, 4]],\n", " [[16193, 632, 1037, 165]],\n", " [[2271, 13310, 36349, 2884, 337, 757, 5107, 5429]],\n", " [[7505, 17458, 632, 1037, 165]],\n", " [[20351, 2383, 42775, 2001, 33293]],\n", " [[7296, 271, 8726, 12612]],\n", " [[663, 11758]],\n", " [[3426, 274, 4, 347, 4]],\n", " [[18490, 632, 5259, 1037, 165]],\n", " [[229, 5596, 21834]],\n", " [[31280, 282, 5269, 29048, 263, 255, 6166, 11408, 102]],\n", " [[12612, 4436, 20287, 337]],\n", " [[14664, 412, 5429]],\n", " [[21774, 632, 1037, 165]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[2361, 315, 274, 4, 347, 4]],\n", " [[12919, 5429]],\n", " [[726, 12, 3609, 895, 1543, 2636, 1847, 2009]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[2177, 2692, 10929]],\n", " [[764, 506, 13139, 1755, 35406, 15215]],\n", " [[344, 30395, 12108, 368]],\n", " [[229, 4113, 254, 354, 12150]],\n", " [[2381, 102, 3703, 574, 165]],\n", " [[7556, 632, 5259, 1037, 165]],\n", " [[19041, 10968, 6752, 10327]],\n", " [[952, 6382, 857, 330, 710, 248, 7396, 12150]],\n", " [[208, 10729, 14777, 225]],\n", " [[6171, 632, 5259, 1037, 165]],\n", " [[14993, 5150, 10888, 19864, 354]],\n", " [[7505, 17458, 632, 1037, 165]],\n", " [[15639, 632, 5259, 1037, 165]],\n", " [[9793, 5928, 274, 4, 347, 4]],\n", " [[14993, 5150, 10888, 19864, 354, 274, 1140, 4691, 179]],\n", " [[1209, 31002, 16146, 6331, 366]],\n", " [[188, 469, 1211, 9926]],\n", " [[21774, 632, 1037, 165]],\n", " [[83, 4, 104, 4, 12218]],\n", " [[274, 530, 840, 330, 105, 1187, 12733]],\n", " [[5429, 10402, 10489, 2691]],\n", " [[208, 4214, 15333, 5429]],\n", " [[17468, 448, 13023, 5641, 163, 20997]],\n", " [[2893, 13345, 263, 6304, 415, 281, 109, 37313, 3314, 139]],\n", " [[2769, 632, 5259, 1037, 165]],\n", " [[2910, 632, 1037, 165]],\n", " [[2769, 632, 5259, 1037, 165]],\n", " [[2711, 23070, 9089, 14035, 3309, 876]],\n", " [[226, 4061, 384, 3632]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[8683, 390, 18, 632, 865, 3512, 165]],\n", " [[25011, 12, 2022, 468, 11485, 102]],\n", " [[2361, 412, 274, 4, 347, 4]],\n", " [[3497, 9, 2487, 632, 5259, 1037, 165]],\n", " [[3378, 5553, 268]],\n", " [[1918, 1140, 14962, 274, 4467, 18217, 2893, 13345, 36, 21963, 43]],\n", " [[312, 4, 3217, 6293]],\n", " [[4766, 14572]],\n", " [[798, 632, 1037, 165]],\n", " [[3160, 17492]],\n", " [[8873, 9399, 1906, 263, 2588, 221, 2550, 5079]],\n", " [[896, 390, 18, 632, 4191, 165]],\n", " [[5429, 15757, 12705, 3467]],\n", " [[4380, 8271, 230, 5268]],\n", " [[5429, 7093, 523]],\n", " [[4436, 29, 385, 108, 11094, 4947, 11249, 3663, 13324]],\n", " [[1775, 438, 10810, 4936, 15247, 274, 4, 347, 4]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[20351, 2383, 42775, 2001, 33293]],\n", " [[22839, 2727, 6748, 2723, 7222, 726, 2089, 5272]],\n", " [[3332, 2646, 26681, 274, 4, 347, 4]],\n", " [[3378, 5553, 268]],\n", " [[15376, 493, 21115]],\n", " [[166, 5618, 4670, 274, 4, 347, 4]],\n", " [[369, 17577, 315, 5429]],\n", " [[221, 2336, 272, 30265, 1243, 274, 4, 347, 4]],\n", " [[188, 3324, 632, 1037, 165]],\n", " [[208, 4, 347, 4, 2265, 6080]],\n", " [[6171, 632, 5259, 1037, 165]],\n", " [[952, 10172, 5521, 718, 281, 12612]],\n", " [[11141, 281, 3060, 4488, 274, 4, 347, 4]],\n", " [[229,\n", " 4,\n", " 104,\n", " 4,\n", " 347,\n", " 4,\n", " 226,\n", " 5361,\n", " 2558,\n", " 384,\n", " 2603,\n", " 12,\n", " 846,\n", " 2560,\n", " 463,\n", " 8663]],\n", " [[16588, 366, 12612]],\n", " [[315, 532, 604, 18, 632, 4191, 165]],\n", " [[3430, 632, 1037, 165]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[2009, 29018, 10221, 2684, 3182, 2727]],\n", " [[24195, 632, 1037, 165]],\n", " [[20421, 428, 10344, 274, 4, 347, 4]],\n", " [[14993, 5150, 263, 23294, 4061]],\n", " [[15676, 5173, 102, 229, 9418, 1479, 605]],\n", " [[208, 4, 104, 4, 347, 4, 7645, 6483]],\n", " [[208, 4, 574, 4, 1664, 506, 2426]],\n", " [[9341, 261, 632, 1037, 165]],\n", " [[274, 530, 229, 7381, 139, 2742, 10809, 31316, 36533]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[312, 1829, 248, 18974, 354, 274, 4, 347, 4]],\n", " [[2009, 44285, 1851]],\n", " [[391, 1101, 632, 1037, 165]],\n", " [[36858, 25278, 22753]],\n", " [[2646, 1210, 24181, 274, 4, 347, 4]],\n", " [[5429, 4424, 22015, 11135, 2816, 438]],\n", " [[12132, 632, 1037, 165]],\n", " [[4174, 632, 5259, 1037, 165]],\n", " [[5244, 632, 1037, 165]],\n", " [[274, 3573, 4448, 6276]],\n", " [[1775, 438, 10810, 4936, 15247, 274, 4, 347, 4]],\n", " [[726, 12, 597, 5655, 7776, 4998]],\n", " [[3274, 331, 4223]],\n", " [[11193, 1908, 274, 4, 347, 4]],\n", " [[17112, 3061, 12, 487, 5600, 139]],\n", " [[5429, 24542, 298, 45739, 1879]],\n", " [[2027, 188, 469, 15626]],\n", " [[13800, 41269, 31221]],\n", " [[7320, 632, 1037, 165]],\n", " [[12723, 12130, 1178]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[2711, 23070, 9089, 14035, 3309, 876]],\n", " [[5429, 2049, 16408]],\n", " [[2893, 13345, 263, 6304, 415, 281, 109, 37313, 3314, 139]],\n", " [[44558, 991, 853, 4077, 873, 2768, 2258, 12150]],\n", " [[1470, 390, 18, 632, 865, 3512, 165]],\n", " [[1209, 31002, 16146, 6331, 366]],\n", " [[580, 3600, 315, 274, 4, 347, 4]],\n", " [[312, 1829, 248, 18974, 354, 274, 4, 347, 4]],\n", " [[3426, 274, 4, 347, 4]],\n", " [[21774, 632, 1037, 165]],\n", " [[896, 604, 18, 632, 4191, 165]],\n", " [[4436, 26827, 906, 289, 1140, 763, 6070, 5413, 2009]],\n", " [[5429, 221, 4438, 412]],\n", " [[1211, 2141, 274, 4, 347, 4]],\n", " [[726, 12, 534, 4759, 15997, 1847, 2009]],\n", " [[4998, 953, 7104]],\n", " [[315, 532, 604, 18, 632, 4191, 165]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[21774, 632, 1037, 165]],\n", " [[1221, 632, 5259, 1037, 165]],\n", " [[5429, 13913, 530, 12, 17986, 1001, 264, 705, 8224, 330, 1879, 2348]],\n", " [[28187, 687, 18612, 32825, 24969, 163, 8982, 2133]],\n", " [[4152, 274, 4, 347, 4]],\n", " [[3417, 36802, 5429]],\n", " [[2000, 632, 1037, 165]],\n", " [[20351, 2383, 42775, 2001, 33293]],\n", " [[25305, 8, 26288, 3733, 1417, 1243, 632, 1037, 165]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[11666, 274, 4, 347, 4]],\n", " [[6748, 2723, 9697, 25452, 338, 12109]],\n", " [[6371, 102, 1209, 1075, 274, 4, 347, 4]],\n", " [[2009, 29018, 10221, 2684, 4838, 281, 4989]],\n", " [[4152, 274, 4, 347, 4]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[3426, 274, 4, 347, 4]],\n", " [[5429, 229, 5079, 282, 1630, 271]],\n", " [[2009, 29018, 10221, 2684, 23654, 9401]],\n", " [[9692, 274, 4, 347, 4]],\n", " [[7296, 271, 8726, 12612]],\n", " [[2822, 6525, 354, 4317, 7474, 118, 1140]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[2529, 119, 3671, 35960]],\n", " [[25305, 8, 26288, 3733, 1417, 1243, 632, 1037, 165]],\n", " [[4619, 26769, 4843, 242, 2005, 6945]],\n", " [[580, 14312, 11645, 19032, 274, 4, 347, 4]],\n", " [[14056, 369, 4680, 274, 4, 347, 4]],\n", " [[1156, 632, 5259, 1037, 165]],\n", " [[5092, 632, 1037, 165]],\n", " [[7224, 597, 19643, 1688, 3999, 1243]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[208, 4214, 15333, 5429]],\n", " [[96, 242, 366, 13519, 625, 4733]],\n", " [[14993, 5150, 10888, 19864, 354, 274, 1140, 4691, 179]],\n", " [[274, 530, 6015, 255, 2558, 4955, 17010]],\n", " [[255, 14744, 632, 1037, 165]],\n", " [[726, 12, 725, 718, 337, 208, 5268]],\n", " [[826, 2583, 12, 24667, 863]],\n", " [[208, 1741, 19209, 19380, 12, 565, 677, 47497]],\n", " [[6015, 16641, 163, 20997]],\n", " [[4677, 254, 4992, 5429]],\n", " [[9096, 3497, 632, 5259, 1037, 165]],\n", " [[315, 532, 604, 18, 632, 4191, 165]],\n", " [[12919, 274, 4, 347, 4]],\n", " [[391, 1101, 632, 1037, 165]],\n", " [[15607, 412, 274, 4, 347, 4]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[5429, 13985, 405, 6130, 14330]],\n", " [[5429, 16706, 90, 7228, 229, 3671, 8502]],\n", " [[6253, 846, 5620, 354, 3321]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[11141, 281, 3060, 4488, 274, 4, 347, 4]],\n", " [[2910, 632, 1037, 165]],\n", " [[289, 24812, 523, 1456, 108, 254, 264, 3952, 274, 4, 347, 4]],\n", " [[726, 4417, 338, 4998]],\n", " [[13077, 412, 83, 4, 597, 4, 347, 4]],\n", " [[2032, 11850, 257, 5429]],\n", " [[5302, 2681, 1243, 967, 366, 274, 4, 347, 4]],\n", " [[33445, 14511, 3109]],\n", " [[2910, 632, 1037, 165]],\n", " [[384, 10839, 642, 493, 5366, 2601]],\n", " [[4152, 305, 4, 597, 4, 347, 4]],\n", " [[5092, 632, 1037, 165]],\n", " [[12723, 12130, 1178]],\n", " [[1156, 632, 5259, 1037, 165]],\n", " [[9692, 274, 4, 347, 4]],\n", " [[11536, 632, 1037, 165]],\n", " [[1211, 6518, 8441]],\n", " [[21774, 632, 1037, 165]],\n", " [[1221, 390, 18, 632, 4191, 165]],\n", " [[5028, 632, 1037, 165]],\n", " [[11437, 632, 5259, 1037, 165]],\n", " [[5706, 274, 4, 347, 4]],\n", " [[497, 5638, 405, 366, 274, 4, 347, 4]],\n", " [[2009, 27417, 2684, 2884, 1113, 9401]],\n", " [[248, 11579, 11631, 3785, 1168, 263, 4612]],\n", " [[18490, 632, 5259, 1037, 165]],\n", " [[5703, 38901, 4216]],\n", " [[289, 39933, 525, 625, 271]],\n", " [[5926, 2032, 16248, 5429]],\n", " [[4436, 29, 385, 108, 11094, 4947, 11249, 3663, 13324]],\n", " [[234, 1277, 21402, 211, 6472, 102, 42191, 11591]],\n", " [[726, 12, 3609, 102, 873, 230, 3632]],\n", " [[83, 4, 347, 4, 7338]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[2822, 3622, 12612]],\n", " [[4644, 632, 5259, 1037, 165]],\n", " [[272, 14996, 19380]],\n", " [[798, 632, 1037, 165]],\n", " [[840, 873, 873, 726, 7746, 3572, 2009]],\n", " [[9096, 3497, 632, 5259, 1037, 165]],\n", " [[2009, 29018, 10221, 2684, 4119, 6303, 271, 1168]],\n", " [[1775, 438, 10810, 4936, 15247, 274, 4, 347, 4]],\n", " [[5429, 4612, 163, 5269, 30919, 594]],\n", " [[29018, 10221, 2684, 2893, 13345, 263, 8062]],\n", " [[22256, 2565, 632, 1037, 165]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[2910, 632, 1037, 165]],\n", " [[12933, 632, 1037, 165]],\n", " [[1491, 1872, 413, 274, 4, 347, 4]],\n", " [[14993, 9504, 366, 274, 4, 347, 4]],\n", " [[4273, 853, 424, 315, 274, 4, 347, 4]],\n", " [[1775, 438, 10810, 5477, 19067, 274, 4, 347, 4]],\n", " [[274, 4, 347, 4, 2848, 139]],\n", " [[1063, 611, 493, 272, 6106, 1277, 11936, 7771]],\n", " [[726, 12, 8138, 10810, 4998]],\n", " [[4341, 3671, 642, 1033, 5429]],\n", " [[5295, 632, 5259, 1037, 165]],\n", " [[5429, 4612, 274, 15035, 1977]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[13287, 12, 25093, 7829, 40236, 2711]],\n", " [[2822, 8957, 1777]],\n", " [[12932, 534, 43130, 22590, 225, 10436]],\n", " [[8700, 632, 1037, 165]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[1156, 632, 5259, 1037, 165]],\n", " [[1221, 632, 5259, 1037, 165]],\n", " [[14605, 632, 5259, 1037, 165]],\n", " [[9601, 163, 8371, 14393]],\n", " [[5302, 1499, 4544, 274, 4, 347, 4]],\n", " [[2822, 14585, 2550, 625]],\n", " [[17609, 632, 1037, 165]],\n", " [[3864, 102, 35020, 354, 18440, 1073, 4193, 102, 5429]],\n", " [[3317, 13376]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[208, 4, 574, 4, 1664, 506, 2426]],\n", " [[13800, 41269, 31221]],\n", " [[468, 2582, 29, 267, 3671, 272, 20458]],\n", " [[5244, 632, 1037, 165]],\n", " [[5429, 4594, 329, 1899, 428, 853, 1899, 83, 1780]],\n", " [[5429, 32889, 1417, 493, 4701, 30075]],\n", " [[2769, 632, 5259, 1037, 165]],\n", " [[2808, 2562, 24058, 9213, 15620]],\n", " [[7320, 632, 1037, 165]],\n", " [[5071, 19011]],\n", " [[6186, 1097, 212, 1657, 315, 274, 4, 347, 4]],\n", " [[468, 506, 574, 7602, 16408, 2691]],\n", " [[2910, 632, 1037, 165]],\n", " [[5429, 4612]],\n", " [[1127, 4494, 3321, 315, 274, 4, 347, 4]],\n", " [[8353, 412, 274, 4, 347, 4]],\n", " [[22753, 4219, 19493, 225]],\n", " [[24799, 632, 1037, 165]],\n", " [[8700, 632, 1037, 165]],\n", " [[3426, 274, 4, 347, 4]],\n", " [[188, 469, 9024]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[7320, 632, 1037, 165]],\n", " [[5926, 2032, 16248, 5429]],\n", " [[256,\n", " 1277,\n", " 21402,\n", " 530,\n", " 111,\n", " 7135,\n", " 119,\n", " 1526,\n", " 462,\n", " 10978,\n", " 649,\n", " 4726,\n", " 330,\n", " 3849,\n", " 10809,\n", " 5066,\n", " 254]],\n", " ...],\n", " 'relation': ['P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " ...],\n", " 'num_answers': [1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " ...]},\n", " '2021-Q4': {'text': [['Alex Morgan plays for .'],\n", " ['Lionel Messi plays for .'],\n", " ['LeBron James plays for .'],\n", " ['Zlatan Ibrahimović plays for .'],\n", " ['Neymar plays for .'],\n", " ['Ronaldinho plays for .'],\n", " ['Megan Rapinoe plays for .'],\n", " ['Pau Gasol plays for .'],\n", " ['Alisha Lehmann plays for .'],\n", " ['Robert Lewandowski plays for .'],\n", " ['Gianluigi Buffon plays for .'],\n", " ['Andrea Pirlo plays for .'],\n", " ['Kevin Durant plays for .'],\n", " ['Lukas Podolski plays for .'],\n", " ['Lewis Hamilton plays for .'],\n", " ['Formiga plays for .'],\n", " ['Naomi Osaka plays for .'],\n", " ['José Mourinho plays for .'],\n", " ['Luis Suárez plays for .'],\n", " ['Franck Ribéry plays for .'],\n", " ['Tim Cahill plays for .'],\n", " ['Chris Froome plays for .'],\n", " ['Mario Balotelli plays for .'],\n", " ['Lieke Martens plays for .'],\n", " ['Manuel Neuer plays for .'],\n", " ['Lindsey Horan plays for .'],\n", " ['Javier Mascherano plays for .'],\n", " ['Mark Cavendish plays for .'],\n", " ['James Rodríguez plays for .'],\n", " ['Hope Solo plays for .'],\n", " ['Diego Forlán plays for .'],\n", " ['Sebastián Abreu plays for .'],\n", " ['Carli Lloyd plays for .'],\n", " ['Marta plays for .'],\n", " ['Javier Hernández plays for .'],\n", " ['Yuzvendra Chahal plays for .'],\n", " ['Fernando Alonso plays for .'],\n", " ['Thiago Silva plays for .'],\n", " ['Andrés Iniesta plays for .'],\n", " ['Keisuke Honda plays for .'],\n", " ['Sergio Agüero plays for .'],\n", " ['Marianne Vos plays for .'],\n", " ['Sergio Ramos plays for .'],\n", " ['Pepe Reina plays for .'],\n", " ['Giovani dos Santos plays for .'],\n", " ['Ricardo Quaresma plays for .'],\n", " ['Mesut Özil plays for .'],\n", " ['Freddy Adu plays for .'],\n", " ['Cristiane Rozeira plays for .'],\n", " ['Maya Moore plays for .'],\n", " ['Giorgio Chiellini plays for .'],\n", " ['Bastian Schweinsteiger plays for .'],\n", " ['Luis Scola plays for .'],\n", " ['Jérôme Boateng plays for .'],\n", " ['Kevin-Prince Boateng plays for .'],\n", " ['Vincenzo Nibali plays for .'],\n", " ['Egidio Arévalo Rios plays for .'],\n", " ['Dwyane Wade plays for .'],\n", " ['Dwight Howard plays for .'],\n", " ['Cesc Fàbregas plays for .'],\n", " ['Nigel de Jong plays for .'],\n", " ['Colin Kazim-Richards plays for .'],\n", " ['Pierre-Emerick Aubameyang plays for .'],\n", " ['David Alaba plays for .'],\n", " ['Xherdan Shaqiri plays for .'],\n", " ['Marc Gasol plays for .'],\n", " ['Laura Kenny plays for .'],\n", " ['Aristide Bancé plays for .'],\n", " ['Philippe Gilbert plays for .'],\n", " ['Breanna Stewart plays for .'],\n", " ['Bruno Alves plays for .'],\n", " ['Ali Krieger plays for .'],\n", " ['Antoine Griezmann plays for .'],\n", " ['Mohamed Salah plays for .'],\n", " ['Memphis Depay plays for .'],\n", " ['Pablo Zabaleta plays for .'],\n", " ['Jozy Altidore plays for .'],\n", " ['Steve Nash plays for .'],\n", " ['Shinji Okazaki plays for .'],\n", " ['Maya Yoshida plays for .'],\n", " ['Gary Cahill plays for .'],\n", " ['Guillermo Ochoa plays for .'],\n", " ['Serge Gnabry plays for .'],\n", " ['Christine Sinclair plays for .'],\n", " ['Paul Pogba plays for .'],\n", " ['Hugo Almeida plays for .'],\n", " [\"Raïs M'Bolhi plays for .\"],\n", " ['Peter Sagan plays for .'],\n", " ['Joel Campbell plays for .'],\n", " ['Luka Modrić Papá de Lionel Messi plays for .'],\n", " ['Elia Viviani plays for .'],\n", " ['Toni Kroos plays for .'],\n", " ['Giulia Gwinn plays for .'],\n", " ['Ellen van Dijk plays for .'],\n", " ['Lucas Barrios plays for .'],\n", " ['Daniel Fernandes plays for .'],\n", " ['Juan Mata plays for .'],\n", " ['Michael Bradley plays for .'],\n", " ['Gonzalo Higuaín plays for .'],\n", " ['Greg Van Avermaet plays for .'],\n", " ['Alexandra Lacrabère plays for .'],\n", " ['Javi Martínez plays for .'],\n", " ['Davide Rebellin plays for .'],\n", " ['Kyrie Irving plays for .'],\n", " ['Sebastian Vettel plays for .'],\n", " ['Ingrid Syrstad Engen plays for .'],\n", " ['Adrien Silva plays for .'],\n", " ['Rigoberto Urán plays for .'],\n", " ['John Arne Riise plays for .'],\n", " ['Tobin Heath plays for .'],\n", " ['Hedvig Lindahl plays for .'],\n", " ['Marcelo plays for .'],\n", " ['Radamel Falcao plays for .'],\n", " ['Jakob Fuglsang plays for .'],\n", " ['Marko Marin plays for .'],\n", " ['Mikel John Obi plays for .'],\n", " ['Hulk plays for .'],\n", " ['Rudy Fernández plays for .'],\n", " ['Lizzie Deignan plays for .'],\n", " ['Zé Roberto plays for .'],\n", " ['Rohan Dennis plays for .'],\n", " ['Łukasz Fabiański plays for .'],\n", " ['Mats Hummels plays for .'],\n", " ['Diego Ribas da Cunha plays for .'],\n", " ['Anna van der Breggen plays for .'],\n", " ['Rafinha plays for .'],\n", " ['Vladimir Stojković plays for .'],\n", " ['Ángel Di María plays for .'],\n", " ['Chris Paul plays for .'],\n", " ['Rosana dos Santos Augusto plays for .'],\n", " ['Manuel da Costa plays for .'],\n", " ['Alexis Sánchez plays for .'],\n", " ['Sophie Schmidt plays for .'],\n", " ['Pepe plays for .'],\n", " ['Philippe Coutinho plays for .'],\n", " ['Sadio Mané plays for .'],\n", " ['Christen Press plays for .'],\n", " ['Keylor Navas plays for .'],\n", " ['Valentino Rossi plays for .'],\n", " ['Bojan Krkić plays for .'],\n", " ['Shinji Kagawa plays for .'],\n", " ['Diego Costa plays for .'],\n", " ['Steve Mandanda plays for .'],\n", " ['Miodrag Anđelković plays for .'],\n", " ['Thibaut Courtois plays for .'],\n", " ['Eiður Guðjohnsen plays for .'],\n", " ['Jakub Błaszczykowski plays for .'],\n", " ['Henning Berg plays for .'],\n", " ['Annemiek van Vleuten plays for .'],\n", " ['Álvaro Pereira plays for .'],\n", " ['Florent Sinama Pongolle plays for .'],\n", " ['Miljan Mrdaković plays for .'],\n", " ['Mario Götze plays for .'],\n", " ['Jô plays for .'],\n", " ['Claudio Pizarro plays for .'],\n", " ['Nani plays for .'],\n", " ['Ivan Rakitić plays for .'],\n", " ['Erin McLeod plays for .'],\n", " ['Peter Odemwingie plays for .'],\n", " ['Sofia Jakobsson plays for .'],\n", " ['David Luiz plays for .'],\n", " ['Jordi Alba plays for .'],\n", " ['Kirsten Wild plays for .'],\n", " ['Nicklas Bendtner plays for .'],\n", " ['Junichi Inamoto plays for .'],\n", " ['Niklas Süle plays for .'],\n", " ['Diego Godín plays for .'],\n", " ['Yuto Nagatomo plays for .'],\n", " ['Olivier Giroud plays for .'],\n", " ['Tom Dumoulin plays for .'],\n", " ['Nicolas Roche plays for .'],\n", " [\"Kelley O'Hara plays for .\"],\n", " ['Lisa De Vanna plays for .'],\n", " ['Rafael van der Vaart plays for .'],\n", " ['Elena Delle Donne plays for .'],\n", " ['Sakina Karchaoui plays for .'],\n", " ['John Degenkolb plays for .'],\n", " ['Brittney Griner plays for .'],\n", " ['Shunsuke Nakamura plays for .'],\n", " ['David Silva plays for .'],\n", " ['Axel Witsel plays for .'],\n", " ['Andrés Guardado plays for .'],\n", " ['Kylian Mbappé plays for .'],\n", " ['Tom Brady plays for .'],\n", " ['Micah Richards plays for .'],\n", " ['Łukasz Piszczek plays for .'],\n", " ['Royston Drenthe plays for .'],\n", " ['Gareth Bale plays for .'],\n", " ['Filipe Luís plays for .'],\n", " ['Romelu Lukaku plays for .'],\n", " ['Erling Haaland plays for .'],\n", " ['Arturo Vidal plays for .'],\n", " ['Jermaine Jones plays for .'],\n", " ['Eden Hazard plays for .'],\n", " ['Demba Ba plays for .'],\n", " ['Nuri Şahin plays for .'],\n", " ['Hugo Lloris plays for .'],\n", " ['Morgan Schneiderlin plays for .'],\n", " ['Thomas Vermaelen plays for .'],\n", " ['Henrikh Mkhitaryan plays for .'],\n", " ['Ryan Babel plays for .'],\n", " ['Aron Baynes plays for .'],\n", " ['Johan Djourou plays for .'],\n", " ['Kevin De Bruyne plays for .'],\n", " ['Shinji Ono plays for .'],\n", " ['Idriss Carlos Kameni plays for .'],\n", " ['Fernando Llorente plays for .'],\n", " ['André Greipel plays for .'],\n", " ['Boris Diaw plays for .'],\n", " ['Anja Mittag plays for .'],\n", " ['Joakim Noah plays for .'],\n", " ['Ricky Rubio plays for .'],\n", " ['Stephan Andersen plays for .'],\n", " [\"Andrés D'Alessandro plays for .\"],\n", " ['Claudio Bravo plays for .'],\n", " ['Becky Sauerbrunn plays for .'],\n", " ['Rafinha plays for .'],\n", " ['Blaise Matuidi plays for .'],\n", " ['Cristian Rodríguez plays for .'],\n", " ['Marek Hamšík plays for .'],\n", " ['Ciro Immobile plays for .'],\n", " [\"Dame N'Doye plays for .\"],\n", " ['Raphaël Varane plays for .'],\n", " ['Roger Kluge plays for .'],\n", " ['Asmir Begović plays for .'],\n", " ['Christian Eriksen plays for .'],\n", " ['Luiz Gustavo plays for .'],\n", " ['Hamit Altıntop plays for .'],\n", " ['Brad Guzan plays for .'],\n", " ['André Ayew plays for .'],\n", " ['César Azpilicueta plays for .'],\n", " ['Éric Maxim Choupo-Moting plays for .'],\n", " ['Shkodran Mustafi plays for .'],\n", " ['Caroline Seger plays for .'],\n", " ['Fernando Muslera plays for .'],\n", " ['Leonardo Bonucci plays for .'],\n", " ['Nordin Amrabat plays for .'],\n", " ['Richard Kingson plays for .'],\n", " ['Jonny Evans plays for .'],\n", " ['Jonathan de Guzmán plays for .'],\n", " ['Yannick Bolasie plays for .'],\n", " ['Dante Bonfim Costa Santos plays for .'],\n", " ['Park Chu-young plays for .'],\n", " ['Lucas Hernandez plays for .'],\n", " ['Sonny Bill Williams plays for .'],\n", " ['Sydney Leroux plays for .'],\n", " ['Victor Moses plays for .'],\n", " ['Elano plays for .'],\n", " ['Asamoah Gyang plays for .'],\n", " ['Grzegorz Krychowiak plays for .'],\n", " ['Achraf Hakim plays for .'],\n", " ['John Guidetti plays for .'],\n", " ['Salomon Kalou plays for .'],\n", " ['Karen Bardsley plays for .'],\n", " ['Cédric Soares plays for .'],\n", " ['Dietmar Hamann plays for .'],\n", " ['Mark Milligan plays for .'],\n", " ['Yūki Nagasato plays for .'],\n", " ['Albert Riera plays for .'],\n", " ['Florent Malouda plays for .'],\n", " ['Medhi Benatia plays for .'],\n", " ['Eduardo Carvalho plays for .'],\n", " ['Maicon plays for .'],\n", " ['Giuseppe Rossi plays for .'],\n", " ['Samir Nasri plays for .'],\n", " ['Andrija Kaluđerović plays for .'],\n", " ['Sarah Storey plays for .'],\n", " ['Daniel Martin plays for .'],\n", " ['Nairo Quintana plays for .'],\n", " ['Leroy Sané plays for .'],\n", " ['Valon Behrami plays for .'],\n", " ['Eiji Kawashima plays for .'],\n", " ['Ana Dabović plays for .'],\n", " ['Raúl Albiol plays for .'],\n", " ['Bryan Ruiz plays for .'],\n", " ['Gabriel Torres plays for .'],\n", " ['Éver Banega plays for .'],\n", " ['Simon Kjær plays for .'],\n", " ['Willy Caballero plays for .'],\n", " ['Sergio Rodríguez plays for .'],\n", " ['Luuk de Jong plays for .'],\n", " ['Eduardo Vargas plays for .'],\n", " ['Ivan Perišić plays for .'],\n", " ['Michał Kwiatkowski plays for .'],\n", " ['Diego Reyes plays for .'],\n", " ['Lars Hirschfeld plays for .'],\n", " ['Abby Dahlkemper plays for .'],\n", " ['Daley Blind plays for .'],\n", " ['Roko Ukić plays for .'],\n", " ['Pablo Contreras plays for .'],\n", " ['Nando de Colo plays for .'],\n", " ['Steph Houghton plays for .'],\n", " ['Jermain Defoe plays for .'],\n", " ['Divock Origi plays for .'],\n", " ['el tete plays for .'],\n", " ['Maximiliano Richeze plays for .'],\n", " ['Ashleigh Barty plays for .'],\n", " ['Curao Ql plays for .'],\n", " ['Marquinhos plays for .'],\n", " ['Julie Ertz plays for .'],\n", " ['Sebastián Eguren plays for .'],\n", " ['Marco Fabián plays for .'],\n", " ['Edvald Boasson-Hagen plays for .'],\n", " ['João Moutinho plays for .'],\n", " ['İlkay Gündoğan plays for .'],\n", " ['Gary Medel plays for .'],\n", " ['Karim Ziani plays for .'],\n", " ['Christian Bolaños plays for .'],\n", " ['Gonzalo Jara plays for .'],\n", " ['David De Gea plays for .'],\n", " ['Esteban Cambiasso plays for .'],\n", " ['Gabriel Enrique Gómez plays for .'],\n", " ['Douglas Costa plays for .'],\n", " ['Michy Batshuayi plays for .'],\n", " ['Yakubu plays for .'],\n", " ['José Fonte plays for .'],\n", " ['Rui Costa plays for .'],\n", " ['Salvatore Sirigu plays for .'],\n", " ['Roman Kreuziger plays for .'],\n", " ['Kasper Schmeichel plays for .'],\n", " ['Roman Bürki plays for .'],\n", " ['Víctor Claver plays for .'],\n", " ['Arkadiusz Milik plays for .'],\n", " ['Daniel Ricciardo plays for .'],\n", " ['Thomas Delaney plays for .'],\n", " ['Kevin Love plays for .'],\n", " ['Stéphane Mbia plays for .'],\n", " ['Tatiana Guderzo plays for .'],\n", " ['Martín Demichelis plays for .'],\n", " ['Siraba Dembele plays for .'],\n", " ['Damian Lillard plays for .'],\n", " ['Richie Porte plays for .'],\n", " ['Sébastien Haller plays for .'],\n", " ['Edin Džeko plays for .'],\n", " ['Daisuke Matsui plays for .'],\n", " ['José Sosa plays for .'],\n", " ['Nelson Valdez plays for .'],\n", " ['Alexander Kristoff plays for .'],\n", " ['Luis Advíncula plays for .'],\n", " ['Danilo Pereira plays for .'],\n", " [\"N'Golo Kanté plays for .\"],\n", " ['Duško Tošić plays for .'],\n", " ['Ricardo Rodriguez plays for .'],\n", " ['Shane Smeltz plays for .'],\n", " ['Marcelo Martins Moreno plays for .'],\n", " ['Peter Crouch plays for .'],\n", " ['Simon Gerrans plays for .'],\n", " ['Mark González plays for .'],\n", " ['Kevin Mirallas plays for .'],\n", " ['Gervinho plays for .'],\n", " ['Alex Song plays for .'],\n", " ['Glenn Whelan plays for .'],\n", " ['Raul Meireles plays for .'],\n", " ['Ali Riley plays for .'],\n", " ['Anthony Davis plays for .'],\n", " ['Sani Kaita plays for .'],\n", " ['Christie Pearce plays for .'],\n", " ['Luís Fabiano plays for .'],\n", " ['Jan Vertonghen plays for .'],\n", " ['Thiago Alcântara plays for .'],\n", " ['Alisson plays for .'],\n", " ['Fridolina Rolfö plays for .'],\n", " ['Wout van Aert plays for .'],\n", " ['Alphonse Areola plays for .'],\n", " ['Mousa Dembélé plays for .'],\n", " ['Babett Peter plays for .'],\n", " ['Fabiana da Silva Simões plays for .'],\n", " ['Blerim Džemaili plays for .'],\n", " ['Adriana Leon plays for .'],\n", " ['Naohiro Takahara plays for .'],\n", " ['oscar perez plays for .'],\n", " ['Gaël Kakuta plays for .'],\n", " ['Isco Alarcón plays for .'],\n", " ['Gabriel Tamaș plays for .'],\n", " ['Jaroslav Drobný plays for .'],\n", " ['Raheem Sterling plays for .'],\n", " ['Samuel Umtiti plays for .'],\n", " ['Amido Baldé plays for .'],\n", " ['Brad Jones plays for .'],\n", " ['Adil Rami plays for .'],\n", " ['Miguel Layún plays for .'],\n", " ['Jan Koller plays for .'],\n", " ['Dmitri Alenichev plays for .'],\n", " ['Marco Asensio plays for .'],\n", " ['Michael Mørkøv plays for .'],\n", " ['Kendall Waston plays for .'],\n", " ['Milan Borjan plays for .'],\n", " ['Kamil Glik plays for .'],\n", " ['Roman Neustädter plays for .'],\n", " ['Marcelo Díaz plays for .'],\n", " ['Jesé Rodríguez plays for .'],\n", " ['Roberto Acuña plays for .'],\n", " ['Ricardo Faty plays for .'],\n", " ['Verónica Boquete plays for .'],\n", " ['Danilo Luiz plays for .'],\n", " ['Olga Zabelinskaya plays for .'],\n", " ['Darron Gibson plays for .'],\n", " ['James Harden plays for .'],\n", " ['Russell Westbrak plays for .'],\n", " ['Jung Sung-ryong plays for .'],\n", " ['Melissa Tancredi plays for .'],\n", " ['Daryl Impey plays for .'],\n", " ['Henrik Ojamaa plays for .'],\n", " ['Leon Goretzka plays for .'],\n", " ['Pablo Hernández Domínguez plays for .'],\n", " ['Tomáš Necid plays for .'],\n", " ['Joseph Yobo plays for .'],\n", " ['Rafał Majka plays for .'],\n", " ['Bruma plays for .'],\n", " ['Samuel Inkoom plays for .'],\n", " ['Robbie Rogers plays for .'],\n", " ['Robert de Pinho de Souza plays for .'],\n", " ['Georges Mandjeck plays for .'],\n", " ['Lucho González plays for .'],\n", " ['Paul-Georges Ntep plays for .'],\n", " ['Ander Herrera plays for .'],\n", " ['Luis León Sánchez plays for .'],\n", " ['Érika Cristiano dos Santos plays for .'],\n", " ['Kingsley Coman plays for .'],\n", " ['Aymeric Laporte plays for .'],\n", " ['Primož Roglič plays for .'],\n", " ['Charles Aránguiz plays for .'],\n", " ['Julian Alaphilippe plays for .'],\n", " ['André Silva plays for .'],\n", " ['Elton Brand plays for .'],\n", " ['Nikita Rukavytsya plays for .'],\n", " ['Marc-André ter Stegen plays for .'],\n", " ['Steven Davis plays for .'],\n", " ['Anderson plays for .'],\n", " ['Matthias Ginter plays for .'],\n", " ['Haris Seferovic plays for .'],\n", " ['Rui Patrício plays for .'],\n", " ['Wojciech Szczęsny plays for .'],\n", " ['Rúrik Gíslason plays for .'],\n", " ['Oscar dos Santos Emboaba Júnior plays for .'],\n", " ['Koo Ja-cheol plays for .'],\n", " ['Lucy Bronze plays for .'],\n", " ['Crystal Dunn plays for .'],\n", " ['Penalty in the UEL final plays for .'],\n", " ['Kepa Arrizabalaga plays for .'],\n", " ['Giannis Antetokounmpo plays for .'],\n", " ['Besart Berisha plays for .'],\n", " ['Obafemi Martins plays for .'],\n", " ['Moussa Maâzou plays for .'],\n", " ['Alexei Eremenko plays for .'],\n", " ['Moussa Dembélé plays for .'],\n", " ['Ashlyn Harris plays for .'],\n", " ['Chris Wood plays for .'],\n", " ['Reto Ziegler plays for .'],\n", " ['Antonio Nocerino plays for .'],\n", " ['Carlos Salcido plays for .'],\n", " ['Oribe Peralta plays for .'],\n", " ['Marco Ureña plays for .'],\n", " ['Antar Yahia plays for .'],\n", " ['Georginio Wijnaldum plays for .'],\n", " ['Sam Kerr plays for .'],\n", " ['Martín Cáceres plays for .'],\n", " ['Valeri Bojinov plays for .'],\n", " ['Luis Tejada plays for .'],\n", " ['Gökhan İnler plays for .'],\n", " ['Javi García plays for .'],\n", " ['Nicolás Lodeiro plays for .'],\n", " ['Raúl Jiménez plays for .'],\n", " ['Janine Beckie plays for .'],\n", " ['Arda Turan plays for .'],\n", " ['Selim Benachour plays for .'],\n", " ['Mickaël Gelabale plays for .'],\n", " ['Daniel González Güiza plays for .'],\n", " ['Jackie Groenen plays for .'],\n", " ['John Mensah plays for .'],\n", " ['Federico Fazio plays for .'],\n", " ['Carl Medjani plays for .'],\n", " ['Ahmed Musa plays for .'],\n", " ['Essam El-Hadary plays for .'],\n", " ['Vedad Ibišević plays for .'],\n", " ['Marouane Fellaini plays for .'],\n", " ['Miralem Pjanić plays for .'],\n", " ['Jorginho plays for .'],\n", " ['Lacina Traoré plays for .'],\n", " ['Christiane Endler plays for .'],\n", " ['Alyssa Naeher plays for .'],\n", " ['Steven Nzonzi plays for .'],\n", " ['Kim Dong-jin plays for .'],\n", " ['Joshua Kimmich plays for .'],\n", " ['Emre Can plays for .'],\n", " ['Nicolas Batum plays for .'],\n", " ['José Calderón plays for .'],\n", " ['Emiliano Insúa plays for .'],\n", " ['Stephan El Shaarawy plays for .'],\n", " ['Casemiro plays for .'],\n", " ['Júnior Díaz plays for .'],\n", " ['Jodie Taylor plays for .'],\n", " ['Robin Olsen plays for .'],\n", " ['Héctor Herrera plays for .'],\n", " ['Sebastian Giovinco plays for .'],\n", " ['Rodrigo plays for .'],\n", " ['Fernando Gaviria plays for .'],\n", " ['Oleksandr Aliyev plays for .'],\n", " ['Florian Thauvin plays for .'],\n", " ['Kim Bo-kyung plays for .'],\n", " ['Abel Hernández plays for .'],\n", " ['Thorgan Hazard plays for .'],\n", " ['Gotoku Sakai plays for .'],\n", " ['Odion Ighalo plays for .'],\n", " ['Jasmin Glaesser plays for .'],\n", " ['Felipe Melo plays for .'],\n", " ['Gábor Király plays for .'],\n", " ['Herculez Gomez plays for .'],\n", " ['Paulo da Silva plays for .'],\n", " ['Héctor Moreno plays for .'],\n", " ['Cacau plays for .'],\n", " ['Ion Izagirre plays for .'],\n", " ['Denis Cheryshev plays for .'],\n", " ['Anthony Annan plays for .'],\n", " ['Darius Songaila plays for .'],\n", " ['Morgan De Sanctis plays for .'],\n", " ['Joe Ingles plays for .'],\n", " ['Paco Alcácer plays for .'],\n", " ['Sara Däbritz plays for .'],\n", " ['Nikola Mirotić plays for .'],\n", " ['Adlène Guedioura plays for .'],\n", " ['Fábio Coentrão plays for .'],\n", " ['Scott Carson plays for .'],\n", " ['Granit Xhaka plays for .'],\n", " ['Ashkan Dejagah plays for .'],\n", " ['Derrick Rose plays for .'],\n", " ['Yevhen Seleznyov plays for .'],\n", " ['Makoto Hasebe plays for .'],\n", " ['William Troost-Ekong plays for .'],\n", " ['Mauro Zárate plays for .'],\n", " ['Seydou Doumbia plays for .'],\n", " ['Tomáš Pekhart plays for .'],\n", " ['Jeffrén Suárez plays for .'],\n", " ['Kurt Zouma plays for .'],\n", " ['Nicolás Otamendi plays for .'],\n", " ['Silvestre Varela plays for .'],\n", " ['Hiroki Sakai plays for .'],\n", " ['Geoffrey Kondogbia plays for .'],\n", " ['Antonio Rüdiger plays for .'],\n", " ['Danko Lazović plays for .'],\n", " ['Admir Mehmedi plays for .'],\n", " ['Javier Aquino plays for .'],\n", " ['Kelsey Plum plays for .'],\n", " ['Teemu Pukki plays for .'],\n", " ['Grafite plays for .'],\n", " ['Lisa Brennauer plays for .'],\n", " ['Dejan Lovren plays for .'],\n", " ['Niki Terpstra plays for .'],\n", " ['Marcelinho Paraíba plays for .'],\n", " ['Mix Diskerud plays for .'],\n", " ['David Ospina plays for .'],\n", " ['Alexander Sørloth plays for .'],\n", " ['Manuel Fernandes plays for .'],\n", " ['Marek Saganowski plays for .'],\n", " ['Gabriel Barbosa plays for .'],\n", " ['Besart Abdurahimi plays for .'],\n", " ['Matthew Spiranovic plays for .'],\n", " ['Josip Tadić plays for .'],\n", " ['Younis Mahmoud plays for .'],\n", " ['Jordan Ayew plays for .'],\n", " ['Miguel Lopes plays for .'],\n", " ['Martin Hansen plays for .'],\n", " ['Pierre Bengtsson plays for .'],\n", " ['Taye Taiwo plays for .'],\n", " ['David Carney plays for .'],\n", " ['Ángel Guirado plays for .'],\n", " ['Roberto Jiménez Gago plays for .'],\n", " ['Karen Carney plays for .'],\n", " ['Amin Younes plays for .'],\n", " ['Javier Balboa plays for .'],\n", " ['Francisco Javier Rodríguez plays for .'],\n", " ['Éder plays for .'],\n", " ['Daniëlle van de Donk plays for .'],\n", " ['Reza Ghoochannejhad plays for .'],\n", " ['Kaylyn Kyle plays for .'],\n", " ['André Lotterer plays for .'],\n", " ['Daniel Wass plays for .'],\n", " ['Matías Fernandez plays for .'],\n", " ['Harry Kane plays for .'],\n", " ['Son Heung-min plays for .'],\n", " ['Jhonny Acosta plays for .'],\n", " ['Cléopatre Darleux plays for .'],\n", " ['Tony Gallopin plays for .'],\n", " ['Yann Sommer plays for .'],\n", " ['Eniola Aluko plays for .'],\n", " ['Tyson Chandler plays for .'],\n", " ['Anthony Martial plays for .'],\n", " ['Greg Henderson plays for .'],\n", " ['Kiko Casillas plays for .'],\n", " ['Nilla Fischer plays for .'],\n", " ['Leon Balogun plays for .'],\n", " ['James Milner plays for .'],\n", " ['Cameron Meyer plays for .'],\n", " ['Benjamin Pavard plays for .'],\n", " ['Luís Leal plays for .'],\n", " ['Renato Sanches plays for .'],\n", " ['Mathew Ryan plays for .'],\n", " ['Shuichi Gonda plays for .'],\n", " ['Pierre-Emile Højbjerg plays for .'],\n", " ['Simon Mignolet plays for .'],\n", " ['Ben Sahar plays for .'],\n", " ['Mana Iwabuchi plays for .'],\n", " ['Desiree Scott plays for .'],\n", " ['Quinn plays for .'],\n", " ['Viktor Fischer plays for .'],\n", " ['Ron-Robert Zieler plays for .'],\n", " ['Alex Sandro plays for .'],\n", " ['Damien Le Tallec plays for .'],\n", " ['Tiago Mendes plays for .'],\n", " ['Martin Ødegaard plays for .'],\n", " ['Salvatore Bocchetti plays for .'],\n", " ['Olarenwaju Kayode plays for .'],\n", " ['Fraser Forster plays for .'],\n", " ['Corentin Tolisso plays for .'],\n", " ['Walter Pandiani (CR7 su papá) plays for .'],\n", " ['Justo Villar plays for .'],\n", " ['Francisco Arrué plays for .'],\n", " ['Abel Aguilar plays for .'],\n", " ['Esmaël Gonçalves plays for .'],\n", " ['Sulley Muntari plays for .'],\n", " ['Izet Hajrović plays for .'],\n", " ['Ragnar Klavan plays for .'],\n", " ['Didier Zokora plays for .'],\n", " ['Oscar Ustari plays for .'],\n", " ['Mitchell Langerak plays for .'],\n", " ['Yassine Bounou plays for .'],\n", " ['Hakim Ziyech plays for .'],\n", " ['Lydia Williams plays for .'],\n", " ['Gabriel Jesus plays for .'],\n", " ['Álvaro Fernández plays for .'],\n", " ['Abdoulaye Ba plays for .'],\n", " ['Julian Draxler plays for .'],\n", " ['Stoycho Mladenov plays for .'],\n", " ['Raphaël Guerreiro plays for .'],\n", " ['Simão Sabrosa plays for .'],\n", " ['Anouk Hoogendijk plays for .'],\n", " ['Emanuel Pogatetz plays for .'],\n", " ['Yannick Carrasco plays for .'],\n", " ['Marko Arnautović plays for .'],\n", " ['Bruno Uvini plays for .'],\n", " ['Lukáš Hrádecký plays for .'],\n", " ['Charles Itandje plays for .'],\n", " ['Ján Mucha plays for .'],\n", " ['Florent Piétrus plays for .'],\n", " ['Riyad Mahrez plays for .'],\n", " ['Andre Iguodala plays for .'],\n", " ['Lasse Norman Hansen plays for .'],\n", " ['Nikos Zisis plays for .'],\n", " ['Alou Diarra plays for .'],\n", " ['Przemysław Tytoń plays for .'],\n", " ['Lucas Moura plays for .'],\n", " ['Álvaro Morata plays for .'],\n", " ['Amandine Henry plays for .'],\n", " ['Jefferson Farfán plays for .'],\n", " ['Martin Braithwaite plays for .'],\n", " ['Tom Heaton plays for .'],\n", " ['Carlos Salcedo plays for .'],\n", " ['Gabriel Torje plays for .'],\n", " ['Emily van Egmond plays for .'],\n", " ['Nicolás Laprovíttola plays for .'],\n", " ['Simon Clarke plays for .'],\n", " ['Elias Kachunga plays for .'],\n", " ['Maurice Edu plays for .'],\n", " ['Hatem Ben Arfa plays for .'],\n", " ['Nelson Oliveira plays for .'],\n", " ['Aco Stojkov plays for .'],\n", " ['Charlie Davies plays for .'],\n", " ['Carlos Fernandes plays for .'],\n", " ['Thaisa plays for .'],\n", " ['Álvaro Saborío plays for .'],\n", " ['Gabriel Cichero plays for .'],\n", " ['Fernandinho plays for .'],\n", " ['Vladimir Gabulov plays for .'],\n", " ['Taylor Rochestie plays for .'],\n", " ['Sven Bender plays for .'],\n", " ['Matías Aguirregaray plays for .'],\n", " ['Wilfried Zaha plays for .'],\n", " ['Ibrahim Afellay plays for .'],\n", " ['Mateo Kovačić plays for .'],\n", " ['Matteo Darmian plays for .'],\n", " ['Nathan Jawai plays for .'],\n", " ['Jérémy Ménez plays for .'],\n", " ['Marc Bartra plays for .'],\n", " ['Éric Djemba-Djemba plays for .'],\n", " ['Tarik Elyounoussi plays for .'],\n", " ['Yacine Brahimi plays for .'],\n", " ['Omar Bravo plays for .'],\n", " ['Yuri Zhirkov plays for .'],\n", " ['Antonio Valencia plays for .'],\n", " ['Kenneth Vermeer plays for .'],\n", " ['Dmytro Chyhrynskyi plays for .'],\n", " ['Juan Manuel Iturbe plays for .'],\n", " ['Julian de Guzman plays for .'],\n", " ['Alexander Merkel plays for .'],\n", " ['Roman Eremenko plays for .'],\n", " ['Lars Bender plays for .'],\n", " ['Suk Hyun-jun plays for .'],\n", " ['Emre Mor plays for .'],\n", " ['Zoran Tošić plays for .'],\n", " ['Jonathan dos Santos plays for .'],\n", " ['Jonathan Mensah plays for .'],\n", " ['Enzo Fernández plays for .'],\n", " ['Kim Young-gwon plays for .'],\n", " ['Oscar Pérez Rojas plays for .'],\n", " ['Astrit Ajdarević plays for .'],\n", " ['Rolf Feltscher plays for .'],\n", " ['Darren Randolph plays for .'],\n", " ['Ivan Pelizzoli plays for .'],\n", " ['Radomir Đalović plays for .'],\n", " ['Kristie Mewis plays for .'],\n", " ['Hannes Þór Halldórsson plays for .'],\n", " ['Valon Berisha plays for .'],\n", " ['Marco Donadel plays for .'],\n", " ['Ola Toivonen plays for .'],\n", " ['Winston Reid plays for .'],\n", " ['Max Kruse plays for .'],\n", " ['Saki Kumagai plays for .'],\n", " ['Branko Ilić plays for .'],\n", " ['Răzvan Raț plays for .'],\n", " ['Robert Snodgrass plays for .'],\n", " ['Viola plays for .'],\n", " ['Klay Thompson plays for .'],\n", " ['Stefan Nikolić plays for .'],\n", " ['Carlos Sainz Jr plays for .'],\n", " ['Andressa Alves da Silva plays for .'],\n", " ['Álvaro Negredo plays for .'],\n", " ['Michail Antonio plays for .'],\n", " ['José Bosingwa plays for .'],\n", " ['Atsuto Uchida plays for .'],\n", " ['Lisa Dahlkvist plays for .'],\n", " ['James Troisi plays for .'],\n", " ['Yacouba Sylla plays for .'],\n", " ['Simon Vukčević plays for .'],\n", " ['Cristian Gamboa plays for .'],\n", " ['Elisa Longo Borghini plays for .'],\n", " ['Roberto Soldado plays for .'],\n", " ['Diana Matheson plays for .'],\n", " ['Steven Caulker plays for .'],\n", " ['Ibrahima Baldé plays for .'],\n", " ['Max Meyer plays for .'],\n", " ['Mbark Boussoufa plays for .'],\n", " ['Achille Emaná plays for .'],\n", " ['Patrice Bernier plays for .'],\n", " ['Ivan Vicelich plays for .'],\n", " ['Islam Slimani plays for .'],\n", " ['Dani Ceballos plays for .'],\n", " ['Lucas Digne plays for .'],\n", " ['Nemanja Matić plays for .'],\n", " ['Andreas Pereira plays for .'],\n", " ['Franck Dja Djédjé plays for .'],\n", " ['Ethan Ampadu plays for .'],\n", " ['R.A. Dickey plays for .'],\n", " ['Yukari Kinga plays for .'],\n", " ['Ryan Bertrand plays for .'],\n", " ['Ed Clancy plays for .'],\n", " ['Holger Badstuber plays for .'],\n", " ['Cristian Săpunaru plays for .'],\n", " ['Elinton Andrade plays for .'],\n", " ['Siem de Jong plays for .'],\n", " ['Carlos Bueno plays for .'],\n", " ['Loïc Rémy plays for .'],\n", " ['Kozue Ando plays for .'],\n", " ['Jimmy Durmaz plays for .'],\n", " ['Rafael Pereira da Silva plays for .'],\n", " ['Óscar Duarte plays for .'],\n", " ['Michael Hector plays for .'],\n", " ['Alex McCarthy plays for .'],\n", " ['Dzsenifer Marozsán plays for .'],\n", " ['Nélson Oliveira plays for .'],\n", " ['Sacha Kljestan plays for .'],\n", " ['Sofiane Feghouli plays for .'],\n", " ['Emerson Palmieri plays for .'],\n", " ['Hristijan Kirovski plays for .'],\n", " ['Melanie Behringer plays for .'],\n", " ['Hugo Vieira plays for .'],\n", " ['Isabelle Yacoubou plays for .'],\n", " ['Mauricio Isla plays for .'],\n", " ['Hakan Çalhanoğlu plays for .'],\n", " ['Douglas dos Santos plays for .'],\n", " ['Sinan Bolat plays for .'],\n", " ['Esteban Chaves plays for .'],\n", " ['Marcos Lopes plays for .'],\n", " ['J. J. Barea plays for .'],\n", " ['Mario Suárez Mata plays for .'],\n", " ['Stine Bredal Oftedal plays for .'],\n", " ['Njazi Kuqi plays for .'],\n", " ['Jesús Navas plays for .'],\n", " ['Shane Duffy plays for .'],\n", " ['Willy Hernangómez plays for .'],\n", " ['Rafael Bastos plays for .'],\n", " ['Carlos Beltrán plays for .'],\n", " ['Nelson Cruz plays for .'],\n", " ['Fiodor Smolov plays for .'],\n", " ['Boban Marjanović plays for .'],\n", " ['Fabián Carini plays for .'],\n", " ['Shelina Zadorsky plays for .'],\n", " ['Pavel Pogrebnyak plays for .'],\n", " ['Goran Pandev plays for .'],\n", " ['Marc Janko plays for .'],\n", " ['Jamal Alioui plays for .'],\n", " ['Mohammadou Idrissou plays for .'],\n", " ['Ousmane Dembélé plays for .'],\n", " ['Gordon Schildenfeld plays for .'],\n", " ['Bauke Mollema plays for .'],\n", " ['Kalu Uche plays for .'],\n", " ['Burak Yılmaz plays for .'],\n", " ['Jimmy Butler plays for .'],\n", " ['Eduardo da Silva plays for .'],\n", " ['Jefferson Louis plays for .'],\n", " ['Diomansy Kamara plays for .'],\n", " [\"Franck Songo'o plays for .\"],\n", " ['Marco Rojas plays for .'],\n", " ['Aarón Ñíguez plays for .'],\n", " ['Victor Lindelöf plays for .'],\n", " ['Iván Kaviedes plays for .'],\n", " ['Nikola Kalinić plays for .'],\n", " ['Jajá plays for .'],\n", " ['Iván Zarandona plays for .'],\n", " ['DeAndre Yedlin plays for .'],\n", " ['Ikechi Anya plays for .'],\n", " ['Anthony Lopes plays for .'],\n", " ['Clemente Rodríguez plays for .'],\n", " ['Jan Oblak plays for .'],\n", " ['Ritchie De Laet plays for .'],\n", " ['Lassana Diarra plays for .'],\n", " ['Kalidou Koulibaly plays for .'],\n", " ['Kostas Mitroglou plays for .'],\n", " ['Mario Lemina plays for .'],\n", " ['Mindaugas Kalonas plays for .'],\n", " ['Édouard Mendy plays for .'],\n", " ['Giovanni Sio plays for .'],\n", " ['Tijani Belaïd plays for .'],\n", " ['Park Joo-ho plays for .'],\n", " ['Emir Spahić plays for .'],\n", " ['Nikica Jelavić plays for .'],\n", " ['Erich Brabec plays for .'],\n", " ['Christian Cueva plays for .'],\n", " ['Yevhen Konoplyanka plays for .'],\n", " ['Paulo Dybala plays for .'],\n", " ['Emanuel Herrera plays for .'],\n", " ['Ludovic Obraniak plays for .'],\n", " ['Kleyr Vieira dos Santos plays for .'],\n", " ['Andriy Yakovlev plays for .'],\n", " ['DeMarcus Cousins plays for .'],\n", " ['Ross McCormack plays for .'],\n", " ['Taylor Phinney plays for .'],\n", " ['Maksim Shatskikh plays for .'],\n", " ['Abby Erceg plays for .'],\n", " ['Yukiya Arashiro plays for .'],\n", " ['Jason Denayer plays for .'],\n", " [\"Jolien D'Hoore plays for .\"],\n", " ['Marco Reus plays for .'],\n", " ['Michael Matthews plays for .'],\n", " ['Halil Altıntop plays for .'],\n", " ['Diego Tardelli plays for .'],\n", " ['Isaac Promise plays for .'],\n", " ['Estelle Nze Minko plays for .'],\n", " ['Sergio Henao plays for .'],\n", " ['Andriy Yarmolenko plays for .'],\n", " ['Kamil Grosicki plays for .'],\n", " ['Fabinho plays for .'],\n", " ['Ishak Belfodil plays for .'],\n", " ['Tosaint Ricketts plays for .'],\n", " ['Linda Sembrant plays for .'],\n", " ['Tuncay Şanlı plays for .'],\n", " ['Hameur Bouazza plays for .'],\n", " ['Vladimír Weiss plays for .'],\n", " ['Bernard Mendy plays for .'],\n", " ['Matt Miazga plays for .'],\n", " ['Marcos Alonso plays for .'],\n", " ['Liassine Cadamuro plays for .'],\n", " ['Adam Federici plays for .'],\n", " ['Akaki Khubutia plays for .'],\n", " ['Miloš Teodosić plays for .'],\n", " ['Ellen White plays for .'],\n", " ['Román Torres plays for .'],\n", " ['Brown Ideye plays for .'],\n", " ['Trixi Worrack plays for .'],\n", " ['Sead Kolašinac plays for .'],\n", " ['Bernardo Silva plays for .'],\n", " ['Nils Petersen plays for .'],\n", " ['Oriol Romeu plays for .'],\n", " ['Adolfo Machado plays for .'],\n", " ['Filipe Machado Nascimento plays for .'],\n", " ['Rubén Iván Martínez plays for .'],\n", " ['Josephine Henning plays for .'],\n", " ['Dani Carvajal plays for .'],\n", " ['Joël Matip plays for .'],\n", " ['Marcus Berg plays for .'],\n", " ['Julio César de León plays for .'],\n", " ['Salomón Rondón plays for .'],\n", " ['Hajime Hosogai plays for .'],\n", " ['Edgar Ié plays for .'],\n", " ['Martín Montoya plays for .'],\n", " ['Lucas Piazón plays for .'],\n", " ['Markus Rosenberg plays for .'],\n", " ['Ognjen Vranješ plays for .'],\n", " ['Róbinson Zapata plays for .'],\n", " ['Sébastien Pocognoli plays for .'],\n", " ['Anders Lindegaard plays for .'],\n", " ['Jordan Henderson plays for .'],\n", " ['Josip Drmić plays for .'],\n", " ['Aleksandr Kokorin plays for .'],\n", " ['Juan Bernat plays for .'],\n", " ['Miranda plays for .'],\n", " ['Egan Bernal plays for .'],\n", " ['Camille Abily plays for .'],\n", " ['Stefan Maierhofer plays for .'],\n", " ['Matthieu Dossevi plays for .'],\n", " ['Bafétimbi Gomis plays for .'],\n", " ['Ignatas Konovalovas plays for .'],\n", " ['Karina Maruyama plays for .'],\n", " ['Adreian Payne plays for .'],\n", " ['Enzo Maresca plays for .'],\n", " ['Tomáš Vaclík plays for .'],\n", " ['Zack Steffen plays for .'],\n", " ['Ricardo Oliveira plays for .'],\n", " ['Yun Suk-young plays for .'],\n", " ['Giannelli Imbula plays for .'],\n", " ['Lorenzo Insigne plays for .'],\n", " ['Malcom plays for .'],\n", " ['Albert Bunjaku plays for .'],\n", " ['Victor Obinna plays for .'],\n", " ['William Carvalho plays for .'],\n", " ['Miguel Veloso plays for .'],\n", " ['Felipe Anderson plays for .'],\n", " ['Isaac Cuenca plays for .'],\n", " ['Luis Antonio Jiménez plays for .'],\n", " ['Curtis Davies plays for .'],\n", " ['Dan Ito plays for .'],\n", " ['Odysseas Vlachodimos plays for .'],\n", " ['Eljero Elia plays for .'],\n", " ['Renato Augusto plays for .'],\n", " ['Milan Mačvan plays for .'],\n", " ['Vivianne Miedema plays for .'],\n", " ['Fabian Schär plays for .'],\n", " ['Ashleigh Moolman-Pasio plays for .'],\n", " ['Marcus Rashford plays for .'],\n", " ['André Gomes plays for .'],\n", " ['Dominique Malonga plays for .'],\n", " ['Max Verstappen plays for .'],\n", " ['Mehdi Abeid plays for .'],\n", " ['Alanna Kennedy plays for .'],\n", " ['Ahmed Hegazi plays for .'],\n", " ['Alen Halilović plays for .'],\n", " ['Kenny Miller plays for .'],\n", " ['Dimitris Papadopoulos plays for .'],\n", " ['Adriano Correia Claro plays for .'],\n", " ['Fran Mérida plays for .'],\n", " ['Idrissa Gueye plays for .'],\n", " ['Shahid Afridi plays for .'],\n", " ['Jurica Buljat plays for .'],\n", " ['Adrianna Franch plays for .'],\n", " ['Ludovic Giuly plays for .'],\n", " ['Nastja Čeh plays for .'],\n", " ['Zé Eduardo plays for .'],\n", " ['Riccardo Montolivo plays for .'],\n", " ['Benedikt Höwedes plays for .'],\n", " ['Luka Jović plays for .'],\n", " ['José Holebas plays for .'],\n", " ['Yasuhito Endo plays for .'],\n", " ['Artem Dzyuba plays for .'],\n", " ['Moussa Sow plays for .'],\n", " ['Tomáš Kalas plays for .'],\n", " ['Luis Aguiar plays for .'],\n", " ['Yossi Benayoun plays for .'],\n", " ['Nick Calathes plays for .'],\n", " ['Jorge Ribeiro plays for .'],\n", " ['Wilfried Bony plays for .'],\n", " ['Jamal Blackman plays for .'],\n", " ['Diego Alves plays for .'],\n", " ['Filip Đuričić plays for .'],\n", " ['Roy Carroll plays for .'],\n", " ['Mathieu Valbuena plays for .'],\n", " ['Danilo Cirino de Oliveira plays for .'],\n", " ['Orlando Sá plays for .'],\n", " ['Sérgio Oliveira plays for .'],\n", " ['Miloš Krasić plays for .'],\n", " ['Javad Nekounam plays for .'],\n", " ['Stina Blackstenius plays for .'],\n", " ['James Chester plays for .'],\n", " ['Alexia Putellas plays for .'],\n", " ['Gianluigi Donnarumma plays for .'],\n", " ['Zdeněk Štybar plays for .'],\n", " ['Stephen Sunday plays for .'],\n", " ['Steven Zuber plays for .'],\n", " ['Santiago Arias plays for .'],\n", " ['Aleix Vidal plays for .'],\n", " ['Jordan Pickford plays for .'],\n", " ['Jason Davidson plays for .'],\n", " ['Alfreð Finnbogason plays for .'],\n", " ['Artur Boruc plays for .'],\n", " ['Nicki Bille Nielsen plays for .'],\n", " ['Jonathas de Jesus plays for .'],\n", " ['Sebastián Coates plays for .'],\n", " ['Dimitar Makriev plays for .'],\n", " ['Nick Swisher plays for .'],\n", " ['Stefano Okaka plays for .'],\n", " ['Emerson plays for .'],\n", " ['Damiano Caruso plays for .'],\n", " ...],\n", " 'labels': [[[\" United States women's national soccer team\"]],\n", " [[' FC Barcelona']],\n", " [[' Los Angeles Lakers']],\n", " [[' A.C. Milan']],\n", " [[' Brazil national football team']],\n", " [[' Independiente Santa Fe']],\n", " [[' OL Reign']],\n", " [[' FC Barcelona Bàsquet']],\n", " [[' West Ham United F.C.']],\n", " [[' FC Bayern Munich']],\n", " [[' Parma Calcio 1913']],\n", " [[' New York City FC']],\n", " [[' Brooklyn Nets']],\n", " [[' Górnik Zabrze']],\n", " [[' Mercedes']],\n", " [[' São José Esporte Clube']],\n", " [[' Japan Fed Cup team']],\n", " [[' Juventus F.C.']],\n", " [[' Atlético Madrid']],\n", " [[' U.S. Salernitana 1919']],\n", " [[' Zhejiang Professional F.C.']],\n", " [[' Israel Start-Up Nation']],\n", " [[' Adana Demirspor']],\n", " [[' FC Barcelona Femení']],\n", " [[' FC Bayern Munich']],\n", " [[\" United States women's national soccer team\"]],\n", " [[' Hebei F.C.']],\n", " [[' Quick-Step Alpha Vinyl Team']],\n", " [[' Colombia national football team']],\n", " [[' OL Reign']],\n", " [[' Club Atlético Peñarol']],\n", " [[' Audax Italiano']],\n", " [[' NJ/NY Gotham FC']],\n", " [[' FC Rosengård']],\n", " [[' LA Galaxy']],\n", " [[' Royal Challengers Bangalore']],\n", " [[' Alpine F1 Team']],\n", " [[' Chelsea F.C.']],\n", " [[' Vissel Kobe']],\n", " [[' FK Sūduva Marijampolė']],\n", " [[' Argentina national football team']],\n", " [[' Jumbo-Visma Women']],\n", " [[' Real Madrid CF']],\n", " [[' A.C. Milan']],\n", " [[' LA Galaxy']],\n", " [[' Vitória S.C.']],\n", " [[' Fenerbahçe SK']],\n", " [[' Tampa Bay Rowdies']],\n", " [[' Paris Saint-Germain F.C.']],\n", " [[' Minnesota Lynx']],\n", " [[' Juventus F.C.']],\n", " [[' Chicago Fire FC']],\n", " [[' Pallacanestro Varese']],\n", " [[' Olympique Lyonnais']],\n", " [[' Unione Sportiva Sassuolo Calcio']],\n", " [[' Trek–Segafredo']],\n", " [[' Atlas F.C.']],\n", " [[' Chicago Bulls']],\n", " [[' Houston Rockets']],\n", " [[' AS Monaco FC']],\n", " [[' LA Galaxy']],\n", " [[' Coritiba F.C.']],\n", " [[' Arsenal F.C.']],\n", " [[' Real Madrid CF']],\n", " [[' Swiss national football team']],\n", " [[' Los Angeles Lakers']],\n", " [[' Matrix Fitness']],\n", " [[' Horoya AC']],\n", " [[' Lotto–Soudal']],\n", " [[' Seattle Storm']],\n", " [[' Apollon Smyrna F.C.']],\n", " [[' Washington Spirit']],\n", " [[' France national association football team']],\n", " [[' Egypt national football team']],\n", " [[' Netherlands national association football team']],\n", " [[' West Ham United F.C.']],\n", " [[' Toronto FC']],\n", " [[' Los Angeles Lakers']],\n", " [[' FC Cartagena']],\n", " [[' Japan national football team']],\n", " [[' Crystal Palace F.C.']],\n", " [[' Standard Liège']],\n", " [[' FC Bayern Munich']],\n", " [[' Portland Thorns FC']],\n", " [[' France national association football team']],\n", " [[' Associação Académica de Coimbra – O.A.F.']],\n", " [[' Algeria national football team']],\n", " [[' Bora-Hansgrohe']],\n", " [[' Costa Rica national football team']],\n", " [[' Real Madrid CF']],\n", " [[' Cofidis']],\n", " [[' Germany national association football team']],\n", " [[' SC Freiburg']],\n", " [[' Trek–Segafredo']],\n", " [[' Paraguay national football team']],\n", " [[' Rayo OKC']],\n", " [[' Manchester United F.C.']],\n", " [[' Club de Fútbol Monterrey']],\n", " [[' Inter Miami CF']],\n", " [[' AG2R Citroën Team']],\n", " [[' Fleury Loiret HB']],\n", " [[' FC Bayern Munich']],\n", " [[' Work Service-Vitalcare-Dynatek']],\n", " [[' Brooklyn Nets']],\n", " [[' Scuderia Ferrari']],\n", " [[\" Norway women's national football team\"]],\n", " [[' U.C. Sampdoria']],\n", " [[' EF Education-Nippo']],\n", " [[' Aalesunds FK']],\n", " [[' Arsenal W.F.C.']],\n", " [[' Chelsea F.C.']],\n", " [[' Real Madrid CF']],\n", " [[' Galatasaray S.K.']],\n", " [[' Astana Qazaqstan Team']],\n", " [[' Ferencvárosi TC']],\n", " [[' Trabzonspor']],\n", " [[' Clube Atlético Mineiro']],\n", " [[' Real Madrid Baloncesto']],\n", " [[' Trek–Segafredo']],\n", " [[' Sociedade Esportiva Palmeiras']],\n", " [[' Ineos Grenadiers']],\n", " [[' Swansea City A.F.C.']],\n", " [[' Germany national association football team']],\n", " [[' Clube de Regatas do Flamengo']],\n", " [[' SD Worx']],\n", " [[' Brazil national football team']],\n", " [[' Maccabi Haifa F.C.']],\n", " [[' Paris Saint-Germain F.C.']],\n", " [[' Los Angeles Clippers']],\n", " [[' Paris Saint-Germain Féminine']],\n", " [[' Olympiacos F.C.']],\n", " [[' Inter Milan']],\n", " [[' Houston Dash']],\n", " [[' F.C. Porto']],\n", " [[' FC Barcelona']],\n", " [[' Senegal national association football team']],\n", " [[' Chicago Red Stars']],\n", " [[' Real Madrid CF']],\n", " [[' Sepang Racing Team']],\n", " [[' Stoke City F.C.']],\n", " [[' P.A.O.K. Thessaloniki F.C.']],\n", " [[' Clube Atlético Mineiro']],\n", " [[' Olympique de Marseille']],\n", " [[' O.F.K. Beograd']],\n", " [[' Belgium national football team']],\n", " [[' Pune F.C.']],\n", " [[' ACF Fiorentina']],\n", " [[' Stabæk Fotball']],\n", " [[' Movistar Team']],\n", " [[' Cerro Porteño']],\n", " [[' Dundee United F.C.']],\n", " [[' Agrotikos Asteras F.C.']],\n", " [[' Germany national association football team']],\n", " [[' Jiangsu F.C.']],\n", " [[' SV Werder Bremen']],\n", " [[' Orlando City SC']],\n", " [[' Sevilla FC']],\n", " [[' FC Rosengård']],\n", " [[' Bristol City F.C.']],\n", " [[\" Sweden women's national association football team\"]],\n", " [[' Clube de Regatas do Flamengo']],\n", " [[' Spain national association football team']],\n", " [[' Ceratizit–WNT Pro Cycling']],\n", " [[' Rosenborg BK']],\n", " [[' Hokkaido Consadole Sapporo']],\n", " [[' TSG 1899 Hoffenheim']],\n", " [[' Atlético Madrid']],\n", " [[' FC Tokyo']],\n", " [[' France national association football team']],\n", " [[' Team Jumbo-Visma']],\n", " [[' Team DSM']],\n", " [[' NJ/NY Gotham FC']],\n", " [[' Brisbane Roar FC W-League']],\n", " [[' Real Betis Balompié']],\n", " [[' Washington Mystics']],\n", " [[' Olympique Lyonnais Féminin']],\n", " [[' Lotto–Soudal']],\n", " [[' Phoenix Mercury']],\n", " [[' Yokohama FC']],\n", " [[' Real Sociedad']],\n", " [[' Borussia Dortmund']],\n", " [[' PSV Eindhoven']],\n", " [[' France national association football team']],\n", " [[' Tampa Bay Buccaneers']],\n", " [[' Aston Villa F.C.']],\n", " [[' ŁKS Goczałkowice-Zdrój']],\n", " [[' Baniyas SC']],\n", " [[' Real Madrid CF']],\n", " [[' Atlético Madrid']],\n", " [[' Belgium national football team']],\n", " [[' Norway national association football team']],\n", " [[' Inter Milan']],\n", " [[\" United States men's national soccer team\"]],\n", " [[' Real Madrid CF']],\n", " [[' Shanghai Shenhua F.C.']],\n", " [[' SV Werder Bremen']],\n", " [[' Tottenham Hotspur F.C.']],\n", " [[' OGC Nice']],\n", " [[' Belgium national football team']],\n", " [[' A.S. Roma']],\n", " [[' Deportivo de La Coruña']],\n", " [[' Toronto Raptors']],\n", " [[' Hamburger SV']],\n", " [[' Belgium national football team']],\n", " [[' FC Ryukyu']],\n", " [[' Málaga CF']],\n", " [[' Udinese Calcio']],\n", " [[' Israel Start-Up Nation']],\n", " [[' San Antonio Spurs']],\n", " [[' Paris Saint-Germain F.C.']],\n", " [[' New York Knicks']],\n", " [[' Cleveland Cavaliers']],\n", " [[' F.C. Copenhagen']],\n", " [[' Club Atlético River Plate']],\n", " [[' Real Betis Balompié']],\n", " [[' Portland Thorns FC']],\n", " [[' FC Bayern Munich']],\n", " [[' France national association football team']],\n", " [[' Club Atlético Peñarol']],\n", " [[' Dalian Professional F.C.']],\n", " [[' Italy national association football team']],\n", " [[' Senegal national association football team']],\n", " [[' France national association football team']],\n", " [[' Lotto–Soudal']],\n", " [[' Everton F.C.']],\n", " [[' Denmark national association football team']],\n", " [[' Fenerbahçe SK']],\n", " [[' Galatasaray S.K.']],\n", " [[' Atlanta United FC']],\n", " [[' Swansea City A.F.C.']],\n", " [[' Spain national association football team']],\n", " [[' Cameroon national football team']],\n", " [[' Levante UD']],\n", " [[' FC Rosengård']],\n", " [[' Galatasaray S.K.']],\n", " [[' Italy national association football team']],\n", " [[' Morocco national football team']],\n", " [[' Accra Great Olympics F.C.']],\n", " [[' West Bromwich Albion F.C.']],\n", " [[' Netherlands national association football team']],\n", " [[' DR Congo national football team']],\n", " [[' Brazil national football team']],\n", " [[' FC Seoul']],\n", " [[' FC Bayern Munich']],\n", " [[' New Zealand national rugby union team']],\n", " [[\" United States women's national soccer team\"]],\n", " [[' Chelsea F.C.']],\n", " [[' Santos F.C.']],\n", " [[' Shanghai Port F.C.']],\n", " [[' Sevilla FC']],\n", " [[' Morocco national football team']],\n", " [[' Sweden national association football team']],\n", " [[' Hertha BSC']],\n", " [[' Manchester City W.F.C.']],\n", " [[' Portugal national association football team']],\n", " [[' TuS Haltern']],\n", " [[' Baniyas SC']],\n", " [[' 1. FFC Frankfurt']],\n", " [[' FC Koper']],\n", " [[' Wadi Degla SC']],\n", " [[' Fatih Karagümrük S.K.']],\n", " [[' S.C. Braga']],\n", " [[' S.P. Tre Penne']],\n", " [[' ACF Fiorentina']],\n", " [[' Real Betis Balompié']],\n", " [[' Brisbane Roar FC']],\n", " [[' Storey Racing']],\n", " [[' Israel Start-Up Nation']],\n", " [[' Arkéa–Samsic']],\n", " [[' Germany national association football team']],\n", " [[' Genoa CFC']],\n", " [[' FC Metz']],\n", " [[' Los Angeles Sparks']],\n", " [[' Villarreal CF']],\n", " [[' Liga Deportiva Alajuelense']],\n", " [[' Club Universidad Nacional']],\n", " [[' Al Shabab FC']],\n", " [[' Sevilla FC']],\n", " [[' Chelsea F.C.']],\n", " [[' Olimpia Milano']],\n", " [[' Netherlands national association football team']],\n", " [[' Chile national football team']],\n", " [[' Croatia national association football team']],\n", " [[' Ineos Grenadiers']],\n", " [[' Tigres UANL']],\n", " [[' KFUM-Kameratene Oslo']],\n", " [[' Western New York Flash']],\n", " [[' Netherlands national association football team']],\n", " [[' KK Cedevita Olimpija']],\n", " [[' Melbourne Victory']],\n", " [[\" Fenerbahçe Men's Basketball\"]],\n", " [[' Manchester City W.F.C.']],\n", " [[' Sunderland A.F.C.']],\n", " [[' Belgium national football team']],\n", " [[' São Paulo FC']],\n", " [[' UAE Team Emirates']],\n", " [[' Australia Billie Jean King Cup team']],\n", " [[' Atlético Junior']],\n", " [[' Brazil national football team']],\n", " [[' Chicago Red Stars']],\n", " [[' Club Nacional de Football']],\n", " [[' Mexico national football team']],\n", " [[' TotalEnergies']],\n", " [[' Wolverhampton Wanderers F.C.']],\n", " [[' Germany national association football team']],\n", " [[' Bologna F.C. 1909']],\n", " [[' US Orléans']],\n", " [[' Deportivo Saprissa']],\n", " [[' Unión La Cagaera']],\n", " [[' Spain national association football team']],\n", " [[' Olympiacos F.C.']],\n", " [[' C.S. Cartaginés']],\n", " [[' Juventus F.C.']],\n", " [[' Belgium national football team']],\n", " [[' Kayserispor']],\n", " [[' Portugal national association football team']],\n", " [[' UAE Team Emirates']],\n", " [[' Italy national association football team']],\n", " [[' Gazprom–RusVelo']],\n", " [[' Denmark national association football team']],\n", " [[' Swiss national football team']],\n", " [[' Valencia BC']],\n", " [[' Poland national association football team']],\n", " [[' McLaren']],\n", " [[' Borussia Dortmund']],\n", " [[' Cleveland Cavaliers']],\n", " [[' Hebei F.C.']],\n", " [[' UAE Team ADQ']],\n", " [[' Club Atlético Talleres']],\n", " [[' Toulon Saint-Cyr Var Handball']],\n", " [[' Portland Trail Blazers']],\n", " [[' Ineos Grenadiers']],\n", " [[' Ivory Coast national football team']],\n", " [[' Inter Milan']],\n", " [[' Yokohama FC']],\n", " [[' Fenerbahçe SK']],\n", " [[' Real Madrid CF']],\n", " [[' UAE Team Emirates']],\n", " [[' Peru national football team']],\n", " [[' Portugal national association football team']],\n", " [[' France national association football team']],\n", " [[' Beşiktaş J.K.']],\n", " [[' Swiss national football team']],\n", " [[' Sydney FC']],\n", " [[' Cruzeiro E.C.']],\n", " [[' Burnley F.C.']],\n", " [[' CCC Team']],\n", " [[' Club Deportivo Universidad Católica']],\n", " [[' Everton F.C.']],\n", " [[' Trabzonspor']],\n", " [[' West Ham United F.C.']],\n", " [[' Bristol Rovers F.C.']],\n", " [[' Fenerbahçe SK']],\n", " [[' Chelsea F.C. Women']],\n", " [[' Los Angeles Lakers']],\n", " [[' G.S. Iraklis Thessaloniki']],\n", " [[' NJ/NY Gotham FC']],\n", " [[' CR Vasco da Gama']],\n", " [[' S.L. Benfica']],\n", " [[' Spain national association football team']],\n", " [[' Brazil national football team']],\n", " [[' FC Barcelona Femení']],\n", " [[' Team Jumbo-Visma']],\n", " [[' France national association football team']],\n", " [[' Guangzhou City F.C.']],\n", " [[' VfL Wolfsburg Women']],\n", " [[' Wuhan F.C.']],\n", " [[' Genoa CFC']],\n", " [[' Western New York Flash']],\n", " [[' Okinawa SV']],\n", " [[' C.D. Guadalajara']],\n", " [[' Hebei F.C.']],\n", " [[' Spain national association football team']],\n", " [[' FC Voluntari']],\n", " [[' SV Werder Bremen']],\n", " [[' England national association football team']],\n", " [[' France national association football team']],\n", " [[' Guinea-Bissau national football team']],\n", " [[' N.E.C.']],\n", " [[' Boavista F.C.']],\n", " [[' Mexico national football team']],\n", " [[' Czech Republic national beach soccer team']],\n", " [[' FC Yenisey Krasnoyarsk']],\n", " [[' Real Madrid CF']],\n", " [[' Quick-Step Alpha Vinyl Team']],\n", " [[' Costa Rica national football team']],\n", " [[\" Canada men's national soccer team\"]],\n", " [[' Poland national association football team']],\n", " [[' Russia national football team']],\n", " [[' Chile national football team']],\n", " [[' Real Madrid CF']],\n", " [[' Club Rubio Ñu']],\n", " [[' Senegal national association football team']],\n", " [[' A.C. Milan']],\n", " [[' Juventus F.C.']],\n", " [[' Roland Cogeas Edelweiss Squad']],\n", " [[' Salford City F.C.']],\n", " [[' Brooklyn Nets']],\n", " [[' Chicago Bulls']],\n", " [[' Kawasaki Frontale']],\n", " [[' KIF Örebro DFF']],\n", " [[' Israel Start-Up Nation']],\n", " [[' Estonia national football team']],\n", " [[' Germany national association football team']],\n", " [[' Rayo Vallecano']],\n", " [[' Bohemians 1905']],\n", " [[' FK AS Trenčín']],\n", " [[' UAE Team Emirates']],\n", " [[' Real Sociedad']],\n", " [[' Antalyaspor']],\n", " [[' LA Galaxy']],\n", " [[' E.C. Vitória']],\n", " [[' Waasland-Beveren']],\n", " [[' Club Atlético River Plate']],\n", " [[' Boavista F.C.']],\n", " [[' Spain national association football team']],\n", " [[' Astana Qazaqstan Team']],\n", " [[' Paris Saint-Germain F.C.']],\n", " [[' France national association football team']],\n", " [[' Manchester City F.C.']],\n", " [[' Team Jumbo-Visma']],\n", " [[' FC Bayern Munich']],\n", " [[' Quick-Step Alpha Vinyl Team']],\n", " [[' Portugal national association football team']],\n", " [[' Atlanta Hawks']],\n", " [[' Maccabi Haifa F.C.']],\n", " [[' Germany national association football team']],\n", " [[' Southampton F.C.']],\n", " [[' S.C. Internacional']],\n", " [[' Germany national association football team']],\n", " [[' Swiss national football team']],\n", " [[' Portugal national association football team']],\n", " [[' Juventus F.C.']],\n", " [[' 1. FC Nürnberg']],\n", " [[' Brazil national football team']],\n", " [[' FC Augsburg']],\n", " [[' Manchester City F.C.']],\n", " [[\" United States women's national soccer team\"]],\n", " [[' Juventus F.C.']],\n", " [[' Spain national association football team']],\n", " [[' Milwaukee Bucks']],\n", " [[' Melbourne Victory']],\n", " [[' Shanghai Shenhua F.C.']],\n", " [[' Sektzia Nes Tziona F.C.']],\n", " [[' Seinäjoen Jalkapallokerho']],\n", " [[' Olympique Lyonnais']],\n", " [[' Orlando Pride']],\n", " [[' Leeds United F.C.']],\n", " [[' FC Sion']],\n", " [[' Orlando City SC']],\n", " [[' Tiburones Rojos de Veracruz']],\n", " [[' C.D. Guadalajara']],\n", " [[' Gwangju FC']],\n", " [[' Angers SCO']],\n", " [[' Netherlands national association football team']],\n", " [[' Chelsea F.C. Women']],\n", " [[' Cagliari Calcio']],\n", " [[' POFC Botev Vratsa']],\n", " [[' Pirata F.C']],\n", " [[' Leicester City F.C.']],\n", " [[' FC Zenit Saint Petersburg']],\n", " [[' Seattle Sounders FC']],\n", " [[' Mexico national football team']],\n", " [[' Houston Dash']],\n", " [[' Galatasaray S.K.']],\n", " [[' Mumbai City FC']],\n", " [[' Élan Chalon']],\n", " [[' Atlético Sanluqueño CF']],\n", " [[' Manchester United W.F.C.']],\n", " [[' AFC Eskilstuna']],\n", " [[' Argentina national football team']],\n", " [[' Algeria national football team']],\n", " [[' Nigeria national football team']],\n", " [[' Nogoom FC']],\n", " [[' Hertha BSC']],\n", " [[' Shandong Taishan F.C.']],\n", " [[' FC Barcelona']],\n", " [[' Italy national association football team']],\n", " [[' Ivory Coast national football team']],\n", " [[\" Colo-Colo women's\"]],\n", " [[' Chicago Red Stars']],\n", " [[' A.S. Roma']],\n", " [[' Seoul E-Land FC']],\n", " [[' Germany national association football team']],\n", " [[' Germany national association football team']],\n", " [[' Charlotte Hornets']],\n", " [[' Comunicaciones FC']],\n", " [[' VfB Stuttgart']],\n", " [[' Italy national association football team']],\n", " [[' Brazil national football team']],\n", " [[' Liga Deportiva Alajuelense']],\n", " [[' Arsenal W.F.C.']],\n", " [[' Sweden national association football team']],\n", " [[' Mexico national football team']],\n", " [[' Italy national association football team']],\n", " [[' Spain national association football team']],\n", " [[' UAE Team Emirates']],\n", " [[' FC Rukh Lviv']],\n", " [[' Olympique de Marseille']],\n", " [[' South Korea national football team']],\n", " [[' Fluminense F.C.']],\n", " [[' Belgium national football team']],\n", " [[' Japan national football team']],\n", " [[' Nigeria national football team']],\n", " [[' TWENTY20 p/b Sho-Air']],\n", " [[' Sociedade Esportiva Palmeiras']],\n", " [[' Szombathelyi Haladás']],\n", " [[' Seattle Sounders FC']],\n", " [[' Deportivo Toluca F.C.']],\n", " [[' PSV Eindhoven']],\n", " [[' VfB Stuttgart II']],\n", " [[' Astana Qazaqstan Team']],\n", " [[' Russia national football team']],\n", " [[' Helsingin Jalkapalloklubi']],\n", " [[' BC Rytas']],\n", " [[' A.S. Roma']],\n", " [[' Utah Jazz']],\n", " [[' Spain national association football team']],\n", " [[\" Germany women's national football team\"]],\n", " [[' FC Barcelona Bàsquet']],\n", " [[' Algeria national football team']],\n", " [[' Rio Ave F.C.']],\n", " [[' Manchester City F.C.']],\n", " [[' Swiss national football team']],\n", " [[' Iran national football team']],\n", " [[' Detroit Pistons']],\n", " [[' FC Minaj']],\n", " [[' Eintracht Frankfurt']],\n", " [[' Nigeria national football team']],\n", " [[' ACF Fiorentina']],\n", " [[' Newcastle United F.C.']],\n", " [[' Legia Warsaw']],\n", " [[' Venezuela national football team']],\n", " [[' France national association football team']],\n", " [[' Argentina national football team']],\n", " [[' C.F. Os Belenenses']],\n", " [[' Japan national football team']],\n", " [[' Central African Republic national football team']],\n", " [[' Germany national association football team']],\n", " [[' NK Olimpija Ljubljana']],\n", " [[' Swiss national football team']],\n", " [[' Mexico national football team']],\n", " [[' Las Vegas Aces']],\n", " [[' Norwich City F.C.']],\n", " [[' Santa Cruz Futebol Clube']],\n", " [[' Ceratizit–WNT Pro Cycling']],\n", " [[' FC Zenit Saint Petersburg']],\n", " [[' TotalEnergies']],\n", " [[' Oeste Futebol Clube']],\n", " [[\" United States men's national soccer team\"]],\n", " [[' S.S.C. Napoli']],\n", " [[' Norway national association football team']],\n", " [[' Kayserispor']],\n", " [[' Legia Warsaw']],\n", " [[' Brazil national football team']],\n", " [[' North Macedonia national football team']],\n", " [[' Zhejiang Professional F.C.']],\n", " [[' Balıkesirspor']],\n", " [[' Talaba SC']],\n", " [[' Ghana national football team']],\n", " [[' Kayserispor']],\n", " [[' FC Ingolstadt 04']],\n", " [[' Sweden national association football team']],\n", " [[' Helsingin Jalkapalloklubi']],\n", " [[' Sydney FC']],\n", " [[' Philippines national football team']],\n", " [[' Olympiacos F.C.']],\n", " [[' Chelsea F.C. Women']],\n", " [[' S.S.C. Napoli']],\n", " [[' Al-Faisaly FC']],\n", " [[' Cruz Azul']],\n", " [[' Al-Raed FC']],\n", " [[' Olympique Lyonnais']],\n", " [[' Iran national football team']],\n", " [[' Orlando Pride']],\n", " [[' Porsche']],\n", " [[' Denmark national association football team']],\n", " [[' Club Social y Deportivo Colo Colo']],\n", " [[' England national association football team']],\n", " [[' South Korea national football team']],\n", " [[' Municipal Pérez Zeledón']],\n", " [[' Brest Bretagne Handball']],\n", " [[' AG2R Citroën Team']],\n", " [[' Swiss national football team']],\n", " [[' Chelsea F.C. Women']],\n", " [[' Dallas Mavericks']],\n", " [[' France national association football team']],\n", " [[' UnitedHealthcare']],\n", " [[' Spain national association football team']],\n", " [[' Linköpings FC']],\n", " [[' Nigeria national football team']],\n", " [[' Liverpool F.C.']],\n", " [[' Team BikeExchange Jayco']],\n", " [[' France national association football team']],\n", " [[' São Tomé and Príncipe national football team']],\n", " [[' Portugal national association football team']],\n", " [[' Australia national association football team']],\n", " [[' Shimizu S-Pulse']],\n", " [[' Denmark national association football team']],\n", " [[' Belgium national football team']],\n", " [[' APOEL F.C.']],\n", " [[\" Japan women's national football team\"]],\n", " [[\" Canada women's national soccer team\"]],\n", " [[' OL Reign']],\n", " [[' Denmark national association football team']],\n", " [[' Germany national association football team']],\n", " [[' Brazil national football team']],\n", " [[' Montpellier Hérault Sport Club']],\n", " [[' Atlético Madrid']],\n", " [[' Norway national association football team']],\n", " [[' Hellas Verona F.C.']],\n", " [[' FC Shakhtar Donetsk']],\n", " [[' Southampton F.C.']],\n", " [[' Olympique Lyonnais']],\n", " [[' FC Lausanne-Sport']],\n", " [[' Club Social y Deportivo Colo Colo']],\n", " [[' Coquimbo Unido']],\n", " [[' Unión Magdalena']],\n", " [[' Anorthosis Famagusta FC']],\n", " [[' Al Ittihad FC']],\n", " [[' Aris Thessaloniki F.C.']],\n", " [[' Cagliari Calcio']],\n", " [[' FC Pune City']],\n", " [[' Atlas F.C.']],\n", " [[' Australia national association football team']],\n", " [[' Morocco national football team']],\n", " [[' Morocco national football team']],\n", " [[' Arsenal W.F.C.']],\n", " [[' FC Barcelona']],\n", " [[' San Martín de Tucumán']],\n", " [[' Senegal national association football team']],\n", " [[' Germany national association football team']],\n", " [[' FC Kaisar']],\n", " [[' Portugal national association football team']],\n", " [[' NorthEast United FC']],\n", " [[' AFC Ajax Vrouwen']],\n", " [[' 1. FC Union Berlin']],\n", " [[' Belgium national football team']],\n", " [[' Stoke City F.C.']],\n", " [[' FC Twente']],\n", " [[' Finland national football team']],\n", " [[' Cameroon national football team']],\n", " [[' ŠK Slovan Bratislava']],\n", " [[' Orléans Loiret Basket']],\n", " [[' Algeria national football team']],\n", " [[' Miami Heat']],\n", " [[' Qhubeka Assos']],\n", " [[' AEK Athens B.C.']],\n", " [[' Charlton Athletic F.C.']],\n", " [[' Poland national association football team']],\n", " [[' Brazil national football team']],\n", " [[' Spain national association football team']],\n", " [[' Olympique Lyonnais']],\n", " [[' Alianza Lima']],\n", " [[' FC Barcelona']],\n", " [[' Manchester United F.C.']],\n", " [[' Mexico national football team']],\n", " [[' Romania national association football team']],\n", " [[\" Australia women's national soccer team\"]],\n", " [[' Real Madrid Baloncesto']],\n", " [[' Qhubeka Assos']],\n", " [[' FC Ingolstadt 04']],\n", " [[' Philadelphia Union']],\n", " [[' FC Girondins de Bordeaux']],\n", " [[' Movistar Team']],\n", " [[' FK Vardar']],\n", " [[' New England Revolution']],\n", " [[' UD Vilafranquense']],\n", " [[' Associação Ferroviária de Esportes']],\n", " [[' D.C. United']],\n", " [[' FC Sion']],\n", " [[' Brazil national football team']],\n", " [[' FC Dinamo Moscow']],\n", " [[' KK Crvena Zvezda']],\n", " [[' Germany national association football team']],\n", " [[' Uruguay national football team']],\n", " [[' Crystal Palace F.C.']],\n", " [[' PSV Eindhoven']],\n", " [[' Croatia national association football team']],\n", " [[' Inter Milan']],\n", " [[' Cairns Taipans']],\n", " [[' Paris FC']],\n", " [[' Spain national association football team']],\n", " [[' Voltigeurs de Châteaubriant']],\n", " [[' TSG 1899 Hoffenheim']],\n", " [[' Algeria national football team']],\n", " [[' North Carolina FC']],\n", " [[' Russia national football team']],\n", " [[' Real Madrid CF']],\n", " [[' Los Angeles FC']],\n", " [[' Ionikos F.C.']],\n", " [[' Club Tijuana']],\n", " [[' Ottawa Fury FC']],\n", " [[' Kazakhstan national football team']],\n", " [[' FC Rostov']],\n", " [[' Germany national association football team']],\n", " [[' South Korea national football team']],\n", " [[' Turkey national association football team']],\n", " [[' PFC CSKA Moscow']],\n", " [[' Villarreal CF']],\n", " [[' FC Anzhi Makhachkala']],\n", " [[' Real Madrid Castilla']],\n", " [[' South Korea national football team']],\n", " [[' CF Pachuca']],\n", " [[' Örebro SK']],\n", " [[' Venezuela national football team']],\n", " [[' Republic of Ireland national association football team']],\n", " [[' Vicenza Calcio']],\n", " [[' FK Budućnost Podgorica']],\n", " [[\" United States women's national soccer team\"]],\n", " [[' Iceland national association football team']],\n", " [[' Norway national association football team']],\n", " [[' CF Montréal']],\n", " [[' Sunderland A.F.C.']],\n", " [[' New Zealand national football team']],\n", " [[' 1. FC Union Berlin']],\n", " [[' Olympique Lyonnais Féminin']],\n", " [[' Urawa Red Diamonds']],\n", " [[' Rayo Vallecano']],\n", " [[' Scotland national football team']],\n", " [[' Clube Atlético Taboão da Serra']],\n", " [[' Golden State Warriors']],\n", " [[' LKS Nieciecza']],\n", " [[' Ferrari Grand Prix results']],\n", " [[\" Brazil women's national football team\"]],\n", " [[' Valencia CF']],\n", " [[' West Ham United F.C.']],\n", " [[' Trabzonspor']],\n", " [[' 1. FC Union Berlin']],\n", " [[' Paris Saint-Germain F.C.']],\n", " [[' Liaoning Whowin F.C.']],\n", " [[' Mali national football team']],\n", " [[' Enosis Neon Paralimni FC']],\n", " [[' Costa Rica national football team']],\n", " [[' Trek–Segafredo']],\n", " [[' Villarreal CF']],\n", " [[' Washington Spirit']],\n", " [[' Liverpool F.C.']],\n", " [[' Senegal national association football team']],\n", " [[' Fenerbahçe SK']],\n", " [[' KAA Gent']],\n", " [[' Gimnàstic de Tarragona']],\n", " [[' CF Montréal']],\n", " [[' Auckland City FC']],\n", " [[' Algeria national football team']],\n", " [[' Spain national association football team']],\n", " [[' France national association football team']],\n", " [[' Manchester United F.C.']],\n", " [[' Santos FC']],\n", " [[' Al-Shahaniya Sports Club']],\n", " [[' Chelsea F.C.']],\n", " [[' Toronto Blue Jays']],\n", " [[' Sanfrecce Hiroshima Regina']],\n", " [[' Leicester City F.C.']],\n", " [[' JLT Condor']],\n", " [[' FC Luzern']],\n", " [[' Kayserispor']],\n", " [[' Goa ISL team']],\n", " [[' Netherlands national association football team']],\n", " [[' Argentinos Juniors']],\n", " [[' Çaykur Rizespor']],\n", " [[' SGS Essen']],\n", " [[' Sweden national association football team']],\n", " [[' Olympique Lyonnais']],\n", " [[' Costa Rica national football team']],\n", " [[' Jamaica national association football team']],\n", " [[' Crystal Palace F.C.']],\n", " [[' Olympique Lyonnais Féminin']],\n", " [[' P.A.O.K. Thessaloniki F.C.']],\n", " [[' New York Red Bulls']],\n", " [[' Algeria national football team']],\n", " [[' A.S. Roma']],\n", " [[' FK Shkëndija']],\n", " [[' FC Bayern Munich Women']],\n", " [[' FCU Craiova 1948']],\n", " [[' CJM Bourges Basket']],\n", " [[' Clube de Regatas do Flamengo']],\n", " [[' Turkey national association football team']],\n", " [[' Brazil national football team']],\n", " [[' Turkey national association football team']],\n", " [[' Team BikeExchange Jayco']],\n", " [[' Lille OSC']],\n", " [[' Cangrejeros de Santurce']],\n", " [[' Spain national association football team']],\n", " [[\" Norway women's national handball team\"]],\n", " [[' PK-35 Vantaa']],\n", " [[' Manchester City F.C.']],\n", " [[' Republic of Ireland national association football team']],\n", " [[' Philadelphia 76ers']],\n", " [[' América Futebol Clube (MG)']],\n", " [[' St. Louis Cardinals']],\n", " [[' Baltimore Orioles']],\n", " [[' Russia national football team']],\n", " [[' Dallas Mavericks']],\n", " [[' Juventud de Las Piedras']],\n", " [[\" Canada women's national soccer team\"]],\n", " [[' FC Dinamo Moscow']],\n", " [[' Genoa CFC']],\n", " [[' FC Basel']],\n", " [[\" Monts d'Or Azergues Foot\"]],\n", " [[' Maccabi Haifa F.C.']],\n", " [[' France national association football team']],\n", " [[' Aris Limassol F.C.']],\n", " [[' Trek–Segafredo']],\n", " [[' Unión Deportiva Almería']],\n", " [[' Beijing Guoan F.C.']],\n", " [[' Philadelphia 76ers']],\n", " [[' Legia Warsaw']],\n", " [[' Wealdstone F.C.']],\n", " [[' NorthEast United FC']],\n", " [[' PAS Giannina F.C.']],\n", " [[' New Zealand national football team']],\n", " [[' S.C. Braga']],\n", " [[' Sweden national association football team']],\n", " [[' Águilas CF']],\n", " [[' Hellas Verona F.C.']],\n", " [[' K.S.C. Lokeren Oost-Vlaanderen']],\n", " [[' Burgos CF']],\n", " [[\" United States men's national soccer team\"]],\n", " [[' Scotland national football team']],\n", " [[' Portugal national association football team']],\n", " [[' Club Atlético Colón']],\n", " [[' Slovenia national football team']],\n", " [[' Middlesbrough F.C.']],\n", " [[' Olympique de Marseille']],\n", " [[' S.S.C. Napoli']],\n", " [[' S.L. Benfica']],\n", " [[' Gabon national football team']],\n", " [[' FK Kauno Žalgiris']],\n", " [[' Chelsea F.C.']],\n", " [[' Stade Rennais F.C.']],\n", " [[' Club Africain']],\n", " [[' South Korea national football team']],\n", " [[' Hamburger SV']],\n", " [[' Guizhou F.C.']],\n", " [[' FC Slovan Liberec']],\n", " [[' Peru national football team']],\n", " [[' Ukraine national association football team']],\n", " [[' Argentina national football team']],\n", " [[' FBC Melgar']],\n", " [[' Maccabi Haifa F.C.']],\n", " [[' Al-Faisaly SC']],\n", " [[' Närpes Kraft Fotbollsförening']],\n", " [[' Golden State Warriors']],\n", " [[' Fulham F.C.']],\n", " [[' EF Education-Nippo']],\n", " [[' FC Rukh Lviv']],\n", " [[' Western New York Flash']],\n", " [[' Bahrain Victorious']],\n", " [[' Belgium national football team']],\n", " [[' SD Worx']],\n", " [[' Germany national association football team']],\n", " [[' Team BikeExchange Jayco']],\n", " [[' FC Augsburg']],\n", " [[' Clube de Regatas do Flamengo']],\n", " [[' Kardemir Karabükspor']],\n", " [[\" France women's national handball team\"]],\n", " [[' Qhubeka Assos']],\n", " [[' West Ham United F.C.']],\n", " [[' Stade Rennais F.C.']],\n", " [[' Liverpool F.C.']],\n", " [[' Algeria national football team']],\n", " [[\" Canada men's national soccer team\"]],\n", " [[' Montpellier Hérault Sport Club']],\n", " [[' FC Pune City']],\n", " [[' Red Star F.C.']],\n", " [[' Al-Gharafa Sports Club']],\n", " [[' SC East Bengal']],\n", " [[\" United States men's national soccer team\"]],\n", " [[' Chelsea F.C.']],\n", " [[' Algeria national football team']],\n", " [[' Australia national association football team']],\n", " [[' FC VPK-Ahro Shevchenkivka']],\n", " [[' Virtus Pallacanestro Bologna']],\n", " [[' Arsenal F.C.']],\n", " [[' Seattle Sounders FC']],\n", " [[' Nigeria national football team']],\n", " [[' Trek–Segafredo']],\n", " [[' Bosnia and Herzegovina national football team']],\n", " [[' Portugal national association football team']],\n", " [[' Germany national association football team']],\n", " [[' Southampton F.C.']],\n", " [[' Deportivo Saprissa']],\n", " [[' Saba Qom F.C.']],\n", " [[' Club Atlético Osasuna']],\n", " [[' Arsenal F.C.']],\n", " [[' Spain national association football team']],\n", " [[' Liverpool F.C.']],\n", " [[' FC Krasnodar']],\n", " [[' Club Atlético Platense']],\n", " [[' Everton F.C.']],\n", " [[' Thespakusatsu Gunma']],\n", " [[' Villarreal CF']],\n", " [[' Real Betis Balompié']],\n", " [[' Chelsea F.C.']],\n", " [[' Malmö FF']],\n", " [[' Bosnia and Herzegovina national football team']],\n", " [[' Independiente Santa Fe']],\n", " [[' West Bromwich Albion F.C.']],\n", " [[' Preston North End F.C.']],\n", " [[' England national association football team']],\n", " [[' Swiss national football team']],\n", " [[' ACF Fiorentina']],\n", " [[' Spain national association football team']],\n", " [[' São Paulo FC']],\n", " [[' Ineos Grenadiers']],\n", " [[' Olympique Lyonnais Féminin']],\n", " [[' FK AS Trenčín']],\n", " [[' Togo national football team']],\n", " [[' Al-Hilal SFC']],\n", " [[' Groupama-FDJ']],\n", " [[' Speranza Osaka-Takatsuki']],\n", " [[' ASVEL Basket']],\n", " [[' Palermo FC']],\n", " [[' Czech Republic national association football team']],\n", " [[\" United States men's national soccer team\"]],\n", " [[' Santos F.C.']],\n", " [[' South Korea national football team']],\n", " [[' Stoke City F.C.']],\n", " [[' Italy national association football team']],\n", " [[' FC Zenit Saint Petersburg']],\n", " [[' FC Viktoria Köln']],\n", " [[' MSV Duisburg']],\n", " [[' Portugal national association football team']],\n", " [[' Hellas Verona F.C.']],\n", " [[' Brazil national football team']],\n", " [[\" Hapoel Be'er Sheva F.C.\"]],\n", " [[' Al Nasr SC']],\n", " [[' Hull City A.F.C.']],\n", " [[' Thimpu FC']],\n", " [[' Panathinaikos F.C.']],\n", " [[' Feyenoord']],\n", " [[' Brazil national football team']],\n", " [[' Olimpia Milano']],\n", " [[' Arsenal W.F.C.']],\n", " [[' Swiss national football team']],\n", " [[' SD Worx']],\n", " [[' England national association football team']],\n", " [[' Everton F.C.']],\n", " [[' Congo national football team']],\n", " [[' Red Bull Racing']],\n", " [[' Algeria national football team']],\n", " [[\" Australia women's national soccer team\"]],\n", " [[' Egypt national football team']],\n", " [[' Croatia national association football team']],\n", " [[' Rangers F.C.']],\n", " [[' Atromitos F.C.']],\n", " [[' Club Athletico Paranaense']],\n", " [[' RCD Espanyol de Barcelona']],\n", " [[' Senegal national association football team']],\n", " [[' Melbourne Renegades']],\n", " [[' HNK Zadar']],\n", " [[' Portland Thorns FC']],\n", " [[\" Monts d'Or Azergues Foot\"]],\n", " [[' NŠ Drava Ptuj']],\n", " [[' Al-Shaab CSC']],\n", " [[' A.C. Milan']],\n", " [[' Germany national association football team']],\n", " [[' Real Madrid CF']],\n", " [[' Greece national association football team']],\n", " [[' Gamba Osaka']],\n", " [[' Russia national football team']],\n", " [[' Shabab Al Ahli Club']],\n", " [[' Czech Republic national association football team']],\n", " [[' Club Atlético Peñarol']],\n", " [[' Maccabi Haifa F.C.']],\n", " [[' FC Barcelona Bàsquet']],\n", " [[' Atlético Clube de Portugal']],\n", " [[' Ivory Coast national football team']],\n", " [[' Chelsea F.C.']],\n", " [[' Brazil national football team']],\n", " [[' Serbia national football team']],\n", " [[' Notts County F.C.']],\n", " [[' Olympiacos F.C.']],\n", " [[' Buriram United F.C.']],\n", " [[' Maccabi Tel Aviv F.C.']],\n", " [[' F.C. Porto']],\n", " [[' Lechia Gdańsk']],\n", " [[' Al-Arabi SC']],\n", " [[' Linköpings FC']],\n", " [[' Wales national association football team']],\n", " [[' FC Barcelona Femení']],\n", " [[' Italy national association football team']],\n", " [[' Quick-Step Alpha Vinyl Team']],\n", " [[' Real Salt Lake']],\n", " [[' TSG 1899 Hoffenheim']],\n", " [[' Colombia national football team']],\n", " [[' Spain national association football team']],\n", " [[' England national association football team']],\n", " [[' Australia national association football team']],\n", " [[' Iceland national association football team']],\n", " [[' AFC Bournemouth']],\n", " [[' Panionios F.C.']],\n", " [[' Real Sociedad']],\n", " [[' Uruguay national football team']],\n", " [[' Nea Salamis Famagusta FC']],\n", " [[' Atlanta Braves']],\n", " [[' Italy national association football team']],\n", " [[' S.L. Benfica']],\n", " [[' Bahrain Victorious']],\n", " ...],\n", " 'labels_ids': [[[315, 532, 390, 18, 632, 4191, 165]],\n", " [[5429, 4612]],\n", " [[1287, 1422, 6772]],\n", " [[83, 4, 347, 4, 7338]],\n", " [[2910, 632, 1037, 165]],\n", " [[4619, 26769, 4843, 242, 2005, 6945]],\n", " [[19763, 16872]],\n", " [[5429, 4612, 163, 5269, 30919, 594]],\n", " [[580, 3600, 315, 274, 4, 347, 4]],\n", " [[5429, 10402, 10489]],\n", " [[221, 15277, 2912, 438, 1020, 38220]],\n", " [[188, 469, 412, 5429]],\n", " [[6314, 16421]],\n", " [[272, 1479, 338, 8256, 525, 873, 338, 2158]],\n", " [[7016]],\n", " [[208, 4214, 23087, 7065, 3427, 242, 2893, 13345]],\n", " [[1429, 2337, 968, 165]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[29018, 10221, 2684, 3622]],\n", " [[121, 4, 104, 4, 2575, 3281, 405, 1113, 35284]],\n", " [[525, 700, 20852, 12221, 274, 4, 347, 4]],\n", " [[1870, 2776, 12, 10926, 5857]],\n", " [[1614, 1113, 5245, 21098, 12150]],\n", " [[5429, 4612, 274, 15035, 1977]],\n", " [[5429, 10402, 10489]],\n", " [[315, 532, 390, 18, 632, 4191, 165]],\n", " [[91, 1610, 118, 274, 4, 347, 4]],\n", " [[13287, 12, 25093, 7829, 40236, 2711]],\n", " [[8700, 632, 1037, 165]],\n", " [[19763, 16872]],\n", " [[2009, 29018, 10221, 2684, 4119, 6303, 271, 1168]],\n", " [[11917, 3631, 3108, 139]],\n", " [[10585, 73, 9873, 35733, 5429]],\n", " [[5429, 4168, 3314, 11489, 2586]],\n", " [[5168, 5325]],\n", " [[2930, 32109, 20434, 20071]],\n", " [[22801, 274, 134, 2711]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[10035, 5317, 24058]],\n", " [[274, 530, 208, 41757, 6588, 3952, 1127, 2161, 3914, 1168, 649, 6800]],\n", " [[5244, 632, 1037, 165]],\n", " [[344, 20031, 12, 846, 40837, 2691]],\n", " [[2822, 3622, 12612]],\n", " [[83, 4, 347, 4, 7338]],\n", " [[5168, 5325]],\n", " [[24589, 1479, 6374, 208, 4, 347, 4]],\n", " [[274, 5777, 28185, 3381, 242, 14795]],\n", " [[6415, 1501, 9224, 38707]],\n", " [[2201, 6130, 12, 534, 8362, 1851, 274, 4, 347, 4]],\n", " [[3161, 14122, 1178]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[1568, 1833, 5429]],\n", " [[18612, 32825, 24969, 468, 1322, 1090]],\n", " [[14993, 5150, 10888, 19864, 354]],\n", " [[1332, 242, 5413, 7222, 30089, 257, 5675, 2912, 438, 1020]],\n", " [[20351, 2383, 42775, 2001, 33293]],\n", " [[22705, 274, 4, 347, 4]],\n", " [[1568, 9926]],\n", " [[2499, 11476]],\n", " [[6015, 12696, 5429]],\n", " [[5168, 5325]],\n", " [[2812, 405, 15577, 274, 4, 347, 4]],\n", " [[4152, 274, 4, 347, 4]],\n", " [[2822, 3622, 12612]],\n", " [[5092, 632, 1037, 165]],\n", " [[1287, 1422, 6772]],\n", " [[29830, 18961]],\n", " [[6746, 13578, 7224]],\n", " [[226, 15089, 2383, 104, 6998, 337]],\n", " [[3417, 5809]],\n", " [[8712, 3937, 261, 23939, 338, 2133, 274, 4, 347, 4]],\n", " [[663, 11758]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[5028, 632, 1037, 165]],\n", " [[7556, 632, 5259, 1037, 165]],\n", " [[580, 3600, 315, 274, 4, 347, 4]],\n", " [[2177, 5429]],\n", " [[1287, 1422, 6772]],\n", " [[5429, 13142, 1073, 4242]],\n", " [[1429, 632, 1037, 165]],\n", " [[9793, 5928, 274, 4, 347, 4]],\n", " [[5787, 5991, 8025, 1899]],\n", " [[5429, 10402, 10489]],\n", " [[5926, 2032, 16248, 5429]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[6331,\n", " 1975,\n", " 493,\n", " 3381,\n", " 4214,\n", " 20341,\n", " 1140,\n", " 119,\n", " 2426,\n", " 263,\n", " 944,\n", " 16231,\n", " 763,\n", " 126,\n", " 384,\n", " 4,\n", " 250,\n", " 4,\n", " 597,\n", " 4]],\n", " [[21774, 632, 1037, 165]],\n", " [[163, 4330, 12, 725, 1253, 15821, 700]],\n", " [[7505, 17458, 632, 1037, 165]],\n", " [[2822, 3622, 12612]],\n", " [[230, 1116, 22831]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[4998, 5547, 1452, 7150]],\n", " [[20351, 2383, 42775, 2001, 33293]],\n", " [[31162, 857, 632, 1037, 165]],\n", " [[4622, 139, 4954, 347]],\n", " [[2361, 315, 274, 4, 347, 4]],\n", " [[2009, 263, 274, 5874, 90, 18217, 3385, 1334, 5460]],\n", " [[3870, 2561, 12612]],\n", " [[5680, 176, 500, 7801, 1001, 105, 282, 2711]],\n", " [[12602, 6801, 5463, 1885, 90, 22783]],\n", " [[5429, 10402, 10489]],\n", " [[6011, 1841, 12, 846, 8632, 6350, 12, 495, 3892, 877, 330]],\n", " [[6314, 16421]],\n", " [[2741, 1906, 6971, 10482]],\n", " [[8683, 390, 18, 632, 1037, 165]],\n", " [[121, 4, 347, 4, 18706, 417, 7228]],\n", " [[17112, 3061, 12, 487, 5600, 139]],\n", " [[83, 4575, 3194, 29, 274, 530]],\n", " [[4152, 305, 4, 597, 4, 347, 4]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[2822, 3622, 12612]],\n", " [[4537, 415, 31126, 857, 208, 4, 530, 4]],\n", " [[8937, 1113, 1209, 11868, 1343, 22398, 2711]],\n", " [[274, 2816, 11326, 705, 1526, 3985, 118, 21137]],\n", " [[2393, 873, 329, 1790, 12150]],\n", " [[2893, 13345, 29018, 10221, 2684, 16417, 4712]],\n", " [[2822, 3622, 4317, 261, 35678, 139]],\n", " [[20351, 2383, 42775, 2001, 33293]],\n", " [[14585, 2550, 1829, 7065, 3427, 7222, 4677, 1794, 853, 281]],\n", " [[96, 242, 366, 13519, 625, 4733]],\n", " [[15338, 412, 83, 4, 597, 4, 347, 4]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[2893, 13345, 263, 6304, 415, 281, 109, 37313, 3314, 139]],\n", " [[12723, 12130, 1178]],\n", " [[2910, 632, 1037, 165]],\n", " [[1775, 438, 10810, 4936, 15247, 274, 4, 347, 4]],\n", " [[2201, 6130, 12, 534, 8362, 1851, 274, 4, 347, 4]],\n", " [[1287, 1422, 12190]],\n", " [[2201, 6130, 12, 534, 8362, 1851, 274, 1140, 4691, 833]],\n", " [[14993, 9504, 366, 274, 4, 347, 4]],\n", " [[3870, 7338]],\n", " [[2499, 18946]],\n", " [[274, 4, 347, 4, 2848, 139]],\n", " [[5429, 4612]],\n", " [[18490, 632, 5259, 1037, 165]],\n", " [[1568, 1211, 7144]],\n", " [[2822, 3622, 12612]],\n", " [[6974, 1097, 8441, 2711]],\n", " [[15607, 412, 274, 4, 347, 4]],\n", " [[221, 4, 250, 4, 673, 4, 530, 4, 20, 7485, 30521, 8907, 274, 4, 347, 4]],\n", " [[2893, 13345, 29018, 10221, 2684, 16417, 4712]],\n", " [[14993, 5150, 263, 23294, 4061]],\n", " [[384, 4, 597, 4, 530, 4, 1456, 2154, 7822]],\n", " [[7320, 632, 1037, 165]],\n", " [[221, 4438, 274, 4, 347, 4]],\n", " [[7224, 597, 19643, 1688, 3999, 1243]],\n", " [[34138, 30422, 330, 274, 1242, 3512]],\n", " [[28147, 31732, 2711]],\n", " [[13943, 1001, 2848, 242, 14182]],\n", " [[15809, 1942, 315, 274, 4, 347, 4]],\n", " [[3303, 12179, 967, 366, 40431, 281, 274, 4, 347, 4]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[27268, 9228, 274, 4, 347, 4]],\n", " [[22753, 21386, 3624, 163, 5593, 225]],\n", " [[5854, 412, 4998]],\n", " [[15206, 4699, 5429]],\n", " [[5429, 4168, 3314, 11489, 2586]],\n", " [[10600, 412, 274, 4, 347, 4]],\n", " [[6171, 390, 18, 632, 5259, 1037, 165]],\n", " [[2893, 13345, 263, 6304, 415, 281, 109, 37313, 3314, 139]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[13943, 415, 1210, 405, 2383, 771, 16966, 1698, 28544]],\n", " [[11998, 28659, 163, 530]],\n", " [[26455, 330, 23759, 9051, 625, 4104, 37151, 11104]],\n", " [[12932, 534, 43130, 22590, 225, 10436]],\n", " [[29018, 10221, 2684, 3622]],\n", " [[5429, 5308]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[2711, 344, 20031, 12, 846, 40837]],\n", " [[2711, 43657]],\n", " [[10585, 73, 9873, 35733, 5429]],\n", " [[10157, 3830, 271, 5429, 305, 12, 17608]],\n", " [[2822, 6525, 354, 4317, 7474, 118, 1140]],\n", " [[663, 41375, 2857]],\n", " [[14993, 5150, 10888, 19864, 354, 274, 1140, 4691, 179]],\n", " [[226, 15089, 2383, 104, 6998, 337]],\n", " [[5524, 15933]],\n", " [[31853, 2678, 2583, 5429]],\n", " [[2822, 14585, 2550, 625]],\n", " [[7943, 17280, 13039]],\n", " [[4868, 846, 381, 2028, 5410, 2987]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[6415, 1501, 18794]],\n", " [[16518, 12470, 274, 4, 347, 4]],\n", " [[2742,\n", " 10172,\n", " 18307,\n", " 272,\n", " 1975,\n", " 2478,\n", " 5173,\n", " 330,\n", " 1722,\n", " 2463,\n", " 12,\n", " 1301,\n", " 10232,\n", " 1479,\n", " 267]],\n", " [[163, 1543, 219, 281, 4998]],\n", " [[2822, 3622, 12612]],\n", " [[29018, 10221, 2684, 3622]],\n", " [[7320, 632, 1037, 165]],\n", " [[8683, 632, 5259, 1037, 165]],\n", " [[3870, 7338]],\n", " [[315, 532, 604, 18, 632, 4191, 165]],\n", " [[2822, 3622, 12612]],\n", " [[7137, 12242, 15363, 274, 4, 347, 4]],\n", " [[22753, 21386, 3624, 163, 5593, 225]],\n", " [[7570, 20302, 7748, 274, 4, 347, 4]],\n", " [[384, 11961, 16911]],\n", " [[7320, 632, 1037, 165]],\n", " [[83, 4, 104, 4, 12218]],\n", " [[6748, 2723, 9697, 263, 1587, 2812, 257, 14379]],\n", " [[2177, 13114]],\n", " [[36858, 25278, 22753]],\n", " [[7320, 632, 1037, 165]],\n", " [[5429, 35068, 4122, 257]],\n", " [[256, 1526, 462, 6080, 12612]],\n", " [[23917, 33965, 2912, 438, 1020]],\n", " [[1870, 2776, 12, 10926, 5857]],\n", " [[764, 4578, 7963]],\n", " [[2201, 6130, 12, 534, 8362, 1851, 274, 4, 347, 4]],\n", " [[188, 469, 11836]],\n", " [[2986, 9207]],\n", " [[274, 4, 347, 4, 22843]],\n", " [[2009, 29018, 10221, 2684, 1995, 19201]],\n", " [[2822, 6525, 354, 4317, 7474, 118, 1140]],\n", " [[5926, 2032, 16248, 5429]],\n", " [[5429, 10402, 10489]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[2009, 29018, 10221, 2684, 4119, 6303, 271, 1168]],\n", " [[211, 21999, 12221, 274, 4, 347, 4]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[18490, 632, 5259, 1037, 165]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[226, 15089, 2383, 104, 6998, 337]],\n", " [[9692, 274, 4, 347, 4]],\n", " [[10060, 632, 5259, 1037, 165]],\n", " [[274, 5777, 28185, 3381, 242, 14795]],\n", " [[4537, 415, 31126, 857, 208, 4, 530, 4]],\n", " [[3317, 315, 5429]],\n", " [[15338, 412, 83, 4, 597, 4, 347, 4]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[14781, 632, 1037, 165]],\n", " [[31500, 242, 33846]],\n", " [[5429, 4168, 3314, 11489, 2586]],\n", " [[4537, 415, 31126, 857, 208, 4, 530, 4]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[13733, 632, 1037, 165]],\n", " [[5438, 763, 2860, 4365, 274, 4, 347, 4]],\n", " [[580, 14312, 11645, 19032, 274, 4, 347, 4]],\n", " [[7556, 632, 5259, 1037, 165]],\n", " [[10994, 11536, 632, 1037, 165]],\n", " [[2910, 632, 1037, 165]],\n", " [[5429, 9176]],\n", " [[5429, 10402, 10489]],\n", " [[188, 3324, 632, 8808, 2918, 165]],\n", " [[315, 532, 390, 18, 632, 4191, 165]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[12919, 274, 4, 347, 4]],\n", " [[7137, 2848, 274, 4, 347, 4]],\n", " [[15206, 4699, 5429]],\n", " [[13733, 632, 1037, 165]],\n", " [[6171, 632, 5259, 1037, 165]],\n", " [[1405, 12037, 163, 3632]],\n", " [[2361, 412, 305, 4, 597, 4, 347, 4]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[9688, 104, 6579, 18995]],\n", " [[163, 1543, 219, 281, 4998]],\n", " [[112, 4, 274, 5268, 14184]],\n", " [[5429, 229, 8428]],\n", " [[305, 5416, 926, 7210, 102, 4998]],\n", " [[11289, 4001, 4077, 1073, 2768, 35685, 2768, 330, 208, 4, 530, 4]],\n", " [[208, 4, 347, 4, 2265, 6080]],\n", " [[208, 4, 510, 4, 6213, 4676, 858]],\n", " [[7224, 597, 19643, 1688, 3999, 1243]],\n", " [[2822, 6525, 354, 4317, 7474, 118, 1140]],\n", " [[10157, 3830, 271, 5429]],\n", " [[7248, 219, 8441]],\n", " [[1870, 2776, 12, 10926, 5857]],\n", " [[19365, 1140, 102, 2383, 104, 7042, 636]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[4380, 8271, 230, 5268]],\n", " [[5429, 4369, 329]],\n", " [[1287, 1422, 22320]],\n", " [[7296, 271, 8726, 12612]],\n", " [[12966, 6748, 2723, 7222, 726, 1176, 8129, 9401]],\n", " [[2009, 24066, 8843, 234, 1043, 6073]],\n", " [[726, 840, 873, 873, 5429]],\n", " [[15206, 4699, 5429]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[384, 10839, 642, 493, 5366, 2601]],\n", " [[7556, 632, 5259, 1037, 165]],\n", " [[9614, 632, 1037, 165]],\n", " [[11437, 632, 5259, 1037, 165]],\n", " [[96, 242, 366, 13519, 625, 4733]],\n", " [[22569, 1535, 121, 1889, 574]],\n", " [[229, 597, 5725, 12, 530, 8015, 415, 2552, 26067]],\n", " [[2027, 188, 469, 15626]],\n", " [[7556, 632, 5259, 1037, 165]],\n", " [[229, 530, 23067, 3623, 3119, 384, 10839, 642, 12733]],\n", " [[5703, 15908]],\n", " [[274, 5777, 28185, 3381, 242, 4011, 18, 12610]],\n", " [[2361, 412, 305, 4, 597, 4, 347, 4]],\n", " [[13633, 83, 4, 597, 4, 347, 4]],\n", " [[7320, 632, 1037, 165]],\n", " [[208, 4214, 15333, 5429]],\n", " [[9170, 2711, 8313]],\n", " [[1221, 1585, 324, 5363, 1745, 968, 165]],\n", " [[29018, 10221, 2684, 6843]],\n", " [[2910, 632, 1037, 165]],\n", " [[1568, 1211, 7144]],\n", " [[2009, 234, 1043, 6073, 263, 3910]],\n", " [[1625, 632, 1037, 165]],\n", " [[5480, 717, 27093, 918]],\n", " [[17100, 1908, 9216, 20233, 16885, 274, 4, 347, 4]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[163, 8982, 2133, 274, 4, 347, 4, 41861]],\n", " [[382, 1793, 24227, 1253]],\n", " [[6748, 2723, 9697, 25452, 338, 12109]],\n", " [[22839, 2727, 1587, 230, 6080, 3843]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[14993, 9504, 366, 274, 4, 347, 4]],\n", " [[230, 4, 104, 4, 13142, 23065, 5739]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[7320, 632, 1037, 165]],\n", " [[229, 4113, 254, 354, 12150]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[9170, 2711, 8313]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[15119, 12501, 2383, 44867, 846, 13961]],\n", " [[10060, 632, 5259, 1037, 165]],\n", " [[5092, 632, 1037, 165]],\n", " [[14567, 9543]],\n", " [[6508, 632, 5259, 1037, 165]],\n", " [[15081]],\n", " [[7943, 17280, 13039]],\n", " [[2986, 9207]],\n", " [[91, 1610, 118, 274, 4, 347, 4]],\n", " [[9170, 2711, 4516, 1864]],\n", " [[2009, 29018, 10221, 2684, 255, 11186, 1535]],\n", " [[255, 5156, 261, 6130, 12, 347, 4503, 9676, 7406, 3512]],\n", " [[5926, 8393, 18191]],\n", " [[96, 242, 366, 13519, 625, 4733]],\n", " [[22256, 2565, 632, 1037, 165]],\n", " [[3870, 7338]],\n", " [[31853, 2678, 2583, 5429]],\n", " [[274, 5777, 28185, 3381, 242, 14795]],\n", " [[2822, 3622, 12612]],\n", " [[9170, 2711, 8313]],\n", " [[12132, 632, 1037, 165]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[1456, 5235, 967, 4349, 5235, 344, 4, 530, 4]],\n", " [[5092, 632, 1037, 165]],\n", " [[4290, 5429]],\n", " [[13876, 2158, 4712, 381, 4, 347, 4]],\n", " [[7960, 607, 274, 4, 347, 4]],\n", " [[230, 3376, 2711]],\n", " [[2009, 6748, 2723, 9697, 24066, 8843, 7641, 1479, 5895, 102]],\n", " [[9692, 274, 4, 347, 4]],\n", " [[2393, 873, 329, 1790, 12150]],\n", " [[580, 3600, 315, 274, 4, 347, 4]],\n", " [[10600, 3830, 3697, 274, 4, 347, 4]],\n", " [[274, 5777, 28185, 3381, 242, 14795]],\n", " [[3098, 274, 4, 347, 4, 2691]],\n", " [[1287, 1422, 6772]],\n", " [[272, 4, 104, 4, 38, 9418, 14496, 20, 7485, 30521, 8907]],\n", " [[10585, 73, 9873, 35733, 5429]],\n", " [[4307, 12599, 876, 2955, 272, 2583]],\n", " [[208, 4, 574, 4, 1664, 506, 2426]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[2910, 632, 1037, 165]],\n", " [[5429, 4612, 274, 15035, 1977]],\n", " [[2711, 344, 20031, 12, 846, 40837]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[21105, 18604, 412, 274, 4, 347, 4]],\n", " [[468, 506, 574, 7602, 16408, 2691]],\n", " [[305, 2957, 260, 274, 4, 347, 4]],\n", " [[4380, 8271, 230, 5268]],\n", " [[2027, 188, 469, 15626]],\n", " [[36265, 22753]],\n", " [[230, 4, 495, 4, 2646, 23073, 1176, 1742]],\n", " [[91, 1610, 118, 274, 4, 347, 4]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[5429, 5896, 5973, 1512]],\n", " [[22753, 21386, 3624, 163, 5593, 225]],\n", " [[1156, 632, 5259, 1037, 165]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[14667, 12, 387, 3006, 1180, 632, 1037, 165]],\n", " [[234, 4, 717, 4, 347, 4]],\n", " [[3542, 1469, 6377, 274, 4, 347, 4]],\n", " [[1625, 632, 1037, 165]],\n", " [[9096, 3497, 632, 4105, 4191, 165]],\n", " [[5429, 30377, 1496, 219, 229, 5079, 282, 2160, 2726, 330]],\n", " [[2822, 3622, 12612]],\n", " [[13287, 12, 25093, 7829, 40236, 2711]],\n", " [[7505, 17458, 632, 1037, 165]],\n", " [[896, 604, 18, 632, 4191, 165]],\n", " [[6508, 632, 5259, 1037, 165]],\n", " [[798, 632, 1037, 165]],\n", " [[9614, 632, 1037, 165]],\n", " [[2822, 3622, 12612]],\n", " [[2009, 16528, 952, 3602, 257]],\n", " [[18490, 632, 5259, 1037, 165]],\n", " [[83, 4, 347, 4, 7338]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[15897, 944, 1899, 281, 2344, 523, 1694, 3006, 19200]],\n", " [[208, 10595, 3109, 412, 274, 4, 347, 4]],\n", " [[6314, 16421]],\n", " [[1568, 9926]],\n", " [[13694, 25280, 7204, 1627]],\n", " [[229, 7025, 30492, 241, 7450, 211, 7389]],\n", " [[1870, 2776, 12, 10926, 5857]],\n", " [[24799, 632, 1037, 165]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[4622, 139, 3767, 459, 38754]],\n", " [[35118, 2071, 40849]],\n", " [[274, 530, 6015, 255, 2558, 4955, 17010]],\n", " [[9170, 2711, 8313]],\n", " [[2822, 14585, 2550, 625]],\n", " [[3702, 7776, 281, 12150]],\n", " [[5168, 5325]],\n", " [[381, 4, 347, 4, 24589, 1479, 6374]],\n", " [[10897, 281, 1245, 12, 9325, 548, 2558]],\n", " [[2009, 29018, 10221, 2684, 1995, 19201]],\n", " [[3542, 1469, 6377, 274, 4, 347, 4]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[8937, 1113, 1209, 11868, 1343, 22398, 2711]],\n", " [[2201, 6130, 12, 534, 8362, 1851, 274, 4, 347, 4]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[2361, 412, 274, 4, 347, 4]],\n", " [[2711, 344, 20031, 12, 846, 40837]],\n", " [[5429, 10402, 10489]],\n", " [[13287, 12, 25093, 7829, 40236, 2711]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[3317, 10506]],\n", " [[1775, 438, 10810, 4936, 15247, 274, 4, 347, 4]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[11666, 274, 4, 347, 4]],\n", " [[208, 4, 347, 4, 23094, 1043, 6073]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[5092, 632, 1037, 165]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[112, 4, 5429, 234, 5172, 282, 2865]],\n", " [[2910, 632, 1037, 165]],\n", " [[5429, 2049, 16408]],\n", " [[2361, 412, 274, 4, 347, 4]],\n", " [[315, 532, 390, 18, 632, 4191, 165]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[5819, 12770]],\n", " [[5703, 15908]],\n", " [[7137, 12242, 15363, 274, 4, 347, 4]],\n", " [[21780, 12527, 493, 234, 293, 255, 329, 26051, 274, 4, 347, 4]],\n", " [[1608, 179, 1561, 267, 18057, 344, 9707, 1115, 1250, 21783, 5410]],\n", " [[14993, 5150, 10888, 19864, 354]],\n", " [[5854, 13170]],\n", " [[9245, 315, 274, 4, 347, 4]],\n", " [[5429, 208, 1499]],\n", " [[5854, 412, 4998]],\n", " [[25103, 710, 6909, 3830, 267, 366, 263, 3060, 1043, 2070, 329]],\n", " [[230, 4, 495, 4, 2646, 23073, 1176, 1742]],\n", " [[17822, 1097, 7488, 5429]],\n", " [[7413, 268, 4998, 673]],\n", " [[7556, 632, 5259, 1037, 165]],\n", " [[3098, 274, 4, 347, 4, 2691]],\n", " [[230, 1073, 3572, 1512, 2912, 438, 1020]],\n", " [[17182, 5268, 163, 6457, 705, 468, 28814, 102]],\n", " [[21299, 2186, 274, 4, 347]],\n", " [[9035, 412, 274, 4, 347, 4]],\n", " [[5429, 13985, 405, 6130, 14330]],\n", " [[3417, 36802, 5429]],\n", " [[1625, 632, 1037, 165]],\n", " [[2499, 18946]],\n", " [[4537, 415, 31126, 857, 208, 4, 530, 4]],\n", " [[5729, 412, 5429]],\n", " [[24986, 6847, 20623, 261]],\n", " [[29018, 10221, 2684, 764, 6487, 3407, 14182, 12612]],\n", " [[2361, 315, 305, 4, 597, 4, 347, 4]],\n", " [[9601, 19119, 32482, 4989]],\n", " [[5244, 632, 1037, 165]],\n", " [[21774, 632, 1037, 165]],\n", " [[2000, 632, 1037, 165]],\n", " [[234, 2154, 11691, 5429]],\n", " [[1405, 12037, 163, 3632]],\n", " [[840, 463, 1657, 9002, 1173, 260, 274, 4, 347, 4]],\n", " [[5429, 4612]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[22256, 2565, 632, 1037, 165]],\n", " [[22378, 12, 18551, 139, 390, 18]],\n", " [[1568, 1211, 7144]],\n", " [[83, 4, 104, 4, 12218]],\n", " [[9176, 381, 12, 26902, 5429]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[5420, 15929]],\n", " [[4556, 26488, 8647, 293, 5429]],\n", " [[468, 506, 387, 312, 9259, 22739]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[2910, 632, 1037, 165]],\n", " [[12966, 6748, 2723, 7222, 726, 1176, 8129, 9401]],\n", " [[4152, 305, 4, 597, 4, 347, 4]],\n", " [[6171, 632, 5259, 1037, 165]],\n", " [[1625, 632, 1037, 165]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[9170, 2711, 8313]],\n", " [[5429, 24542, 298, 45739, 1879]],\n", " [[14993, 5150, 263, 23294, 4061]],\n", " [[391, 1101, 632, 1037, 165]],\n", " [[4150, 18140, 9401, 274, 4, 347, 4]],\n", " [[7320, 632, 1037, 165]],\n", " [[1429, 632, 1037, 165]],\n", " [[2000, 632, 1037, 165]],\n", " [[17535, 5382, 975, 844, 181, 73, 428, 17411, 12, 17906]],\n", " [[14585, 2550, 1829, 7065, 3427, 7222, 4677, 1794, 853, 281]],\n", " [[15837, 5223, 23872, 352, 118, 6579, 625, 6417]],\n", " [[3417, 36802, 5429]],\n", " [[6748, 2723, 9697, 17686, 26802, 274, 4, 347, 4]],\n", " [[4868, 846, 381, 2028, 5410, 2987]],\n", " [[468, 506, 387, 312, 9259, 22739, 3082]],\n", " [[8937, 1113, 1209, 11868, 1343, 22398, 2711]],\n", " [[798, 632, 1037, 165]],\n", " [[44602, 154, 179, 344, 9707, 1115, 1250, 1638, 462, 36384]],\n", " [[9543, 11861, 90, 281]],\n", " [[83, 4, 104, 4, 12218]],\n", " [[4514, 9529]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[1600, 390, 18, 632, 1037, 165]],\n", " [[5429, 4612, 163, 5269, 30919, 594]],\n", " [[21774, 632, 1037, 165]],\n", " [[5716, 4597, 274, 4, 347, 4]],\n", " [[2361, 412, 274, 4, 347, 4]],\n", " [[5092, 632, 1037, 165]],\n", " [[1603, 632, 1037, 165]],\n", " [[2921, 18290]],\n", " [[5429, 3635, 1176]],\n", " [[381, 2544, 338, 11629, 14184]],\n", " [[2000, 632, 1037, 165]],\n", " [[7224, 597, 19643, 1688, 3999, 1243]],\n", " [[8983, 315, 274, 4, 347, 4]],\n", " [[15376, 493, 21115]],\n", " [[6037, 632, 1037, 165]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[5244, 632, 1037, 165]],\n", " [[230, 4, 597, 4, 4838, 4231, 225, 21526]],\n", " [[1429, 632, 1037, 165]],\n", " [[1505, 1704, 3497, 632, 1037, 165]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[35906, 384, 10839, 642, 12733, 226, 267, 1792, 462, 267, 1113]],\n", " [[5092, 632, 1037, 165]],\n", " [[1625, 632, 1037, 165]],\n", " [[2588, 2461, 83, 4643]],\n", " [[18749, 412, 274, 4, 347, 4]],\n", " [[2005, 3590, 274, 4467, 18217, 2893, 13345]],\n", " [[13943, 415, 1210, 405, 2383, 771, 16966, 1698, 28544]],\n", " [[5429, 13985, 405, 6130, 14330]],\n", " [[5480, 717, 27093, 918]],\n", " [[384, 13967, 274, 4467, 18217, 2893, 13345]],\n", " [[315, 532, 604, 18, 632, 4191, 165]],\n", " [[208, 4, 104, 4, 347, 4, 7645, 6483]],\n", " [[8683, 632, 5259, 1037, 165]],\n", " [[229, 4113, 254, 354, 12150]],\n", " [[15376, 493, 21115]],\n", " [[2910, 632, 1037, 165]],\n", " [[369, 21894, 632, 1037, 165]],\n", " [[525, 700, 20852, 12221, 274, 4, 347, 4]],\n", " [[4317, 10031, 7339, 21098, 12150]],\n", " [[7765, 6412, 4998]],\n", " [[5498, 632, 1037, 165]],\n", " [[229, 4113, 254, 354, 12150]],\n", " [[5429, 11996, 1168, 22487, 14722]],\n", " [[6171, 632, 5259, 1037, 165]],\n", " [[44602, 154, 179, 344, 9707, 1115, 1250, 1638, 462, 36384]],\n", " [[4290, 5429]],\n", " [[5639, 632, 1037, 165]],\n", " [[14993, 9504, 366, 274, 4, 347, 4]],\n", " [[3098, 274, 4, 347, 4, 2691]],\n", " [[208, 4, 104, 4, 347, 4, 7645, 6483]],\n", " [[726, 12, 597, 5655, 7776, 5429]],\n", " [[3590, 4947, 922]],\n", " [[726, 12, 500, 20380, 5429]],\n", " [[14993, 5150, 10888, 19864, 354]],\n", " [[1603, 632, 1037, 165]],\n", " [[5854, 13170]],\n", " [[15091]],\n", " [[10060, 632, 5259, 1037, 165]],\n", " [[2009, 3574, 1423, 6748, 2723, 9697, 22378, 22378]],\n", " [[1156, 632, 5259, 1037, 165]],\n", " [[391, 1101, 632, 1037, 165]],\n", " [[11660, 221, 1140, 13208, 525, 13587, 2727]],\n", " [[163, 7110, 27547, 16784, 7406, 3512]],\n", " [[5680, 176, 500, 7801, 1001, 105, 282, 2711]],\n", " [[5092, 632, 1037, 165]],\n", " [[3098, 274, 4, 347, 4, 2691]],\n", " [[3160, 17492]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[315, 13716, 6350]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[4341, 3671, 642, 1033, 5429]],\n", " [[2000, 632, 1037, 165]],\n", " [[3426, 274, 4, 347, 4]],\n", " [[2711, 23070, 9089, 14035, 3309, 876]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[208, 4214, 1560, 1140, 8, 2869, 17010, 2520, 2379, 632, 1037, 165]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[1221, 632, 5259, 1037, 165]],\n", " [[24052, 17939, 208, 12, 510, 32767]],\n", " [[10060, 632, 5259, 1037, 165]],\n", " [[7320, 632, 1037, 165]],\n", " [[1480, 673, 3721, 274, 4, 347, 4]],\n", " [[1429, 390, 18, 632, 1037, 165]],\n", " [[896, 390, 18, 632, 4191, 165]],\n", " [[19763, 16872]],\n", " [[10060, 632, 5259, 1037, 165]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[2910, 632, 1037, 165]],\n", " [[4436, 26827, 906, 289, 1140, 763, 6070, 5413, 2009]],\n", " [[29018, 10221, 2684, 3622]],\n", " [[8683, 632, 5259, 1037, 165]],\n", " [[11141, 281, 3060, 4488, 274, 4, 347, 4]],\n", " [[5429, 17326, 19654, 29712]],\n", " [[11666, 274, 4, 347, 4]],\n", " [[14993, 5150, 10888, 19864, 354]],\n", " [[5429, 1587, 687, 8799, 12, 19451]],\n", " [[2009, 3574, 1423, 6748, 2723, 9697, 22378, 22378]],\n", " [[944, 2253, 757, 3983, 1890, 6005]],\n", " [[22839, 2727, 3771, 20375, 4242]],\n", " [[660, 22494, 13310, 18440, 1073, 4193, 102, 5429]],\n", " [[726, 85, 90, 19284, 5429]],\n", " [[1586, 354, 20, 7485, 30521, 8907, 274, 4, 347, 4]],\n", " [[230, 1073, 3572, 1512, 2912, 438, 1020]],\n", " [[5429, 221, 4438, 412]],\n", " [[22705, 274, 4, 347, 4]],\n", " [[1221, 632, 5259, 1037, 165]],\n", " [[13733, 632, 1037, 165]],\n", " [[13733, 632, 1037, 165]],\n", " [[4152, 305, 4, 597, 4, 347, 4]],\n", " [[5429, 4612]],\n", " [[764, 5465, 17010, 263, 33759, 783, 7499]],\n", " [[18490, 632, 5259, 1037, 165]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[5429, 7916, 354, 271]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[369, 17577, 315, 5429]],\n", " [[9601, 24857, 468, 8508, 11760]],\n", " [[112, 4, 5429, 1332, 5459]],\n", " [[7320, 632, 1037, 165]],\n", " [[15607, 412, 274, 4, 347, 4]],\n", " [[5429, 9922, 8530]],\n", " [[12587, 632, 1037, 165]],\n", " [[14781, 632, 1037, 165]],\n", " [[2742, 21402, 530, 4424, 22015, 2265, 415, 13714, 8604]],\n", " [[1793, 24227, 1253, 5463, 1885, 90, 163, 20997]],\n", " [[21774, 632, 1037, 165]],\n", " [[2561, 7772]],\n", " [[1209, 31002, 16146, 6331, 366]],\n", " [[35722, 530, 11198, 163, 4, 347, 4]],\n", " [[15959, 1054, 8899, 274, 4, 347, 4]],\n", " [[6508, 632, 5259, 1037, 165]],\n", " [[2910, 632, 1037, 165]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[14993, 5150, 10888, 19864, 354]],\n", " [[726, 811, 2478, 18471]],\n", " [[5429, 4612]],\n", " [[2361, 315, 274, 4, 347, 4]],\n", " [[1625, 632, 1037, 165]],\n", " [[12940, 632, 5259, 1037, 165]],\n", " [[1221, 390, 18, 632, 4191, 165]],\n", " [[2822, 3622, 4317, 261, 35678, 139]],\n", " [[1209, 31002, 16146, 6331, 366]],\n", " [[5429, 11996, 1168, 22487, 14722]],\n", " [[3378, 1332]],\n", " [[5429, 10847, 2832, 1344, 263, 163, 17202, 8624]],\n", " [[28147, 31732, 2711]],\n", " [[274, 530, 468, 1120, 271]],\n", " [[188, 1156, 13340]],\n", " [[33846, 22153, 2001, 3917, 2253, 9401]],\n", " [[6331,\n", " 1975,\n", " 493,\n", " 3381,\n", " 4214,\n", " 6838,\n", " 1001,\n", " 6873,\n", " 1526,\n", " 6374,\n", " 263,\n", " 7065,\n", " 3427,\n", " 293]],\n", " [[211, 4, 347, 4, 315]],\n", " [[5429, 208, 1499]],\n", " [[2910, 632, 1037, 165]],\n", " [[5429, 15757, 12705, 3467]],\n", " [[229, 530, 5309, 2987, 102, 525, 20782, 6106]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[17609, 632, 1037, 165]],\n", " [[9793, 5928, 274, 4, 347, 4]],\n", " [[4868, 846, 381, 2028, 5410, 2987]],\n", " [[11437, 632, 5259, 1037, 165]],\n", " [[3870, 7338]],\n", " [[230, 2456, 6852, 9002, 1588, 1253]],\n", " [[2201, 5429]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[36589, 7876, 4668, 263, 732, 3695, 859, 102, 1792, 1069, 927]],\n", " [[12932, 534, 43130, 22590, 225, 10436]],\n", " [[21774, 632, 1037, 165]],\n", " [[369, 1961, 5429]],\n", " [[798, 632, 1037, 165]],\n", " [[2822, 3622, 12612]],\n", " [[1287, 1422, 5429]],\n", " [[32985, 967, 366, 274, 4, 347, 4]],\n", " [[2009, 255, 25491]],\n", " [[5837, 15945, 5429]],\n", " [[17983, 632, 1037, 165]],\n", " [[5429, 30610, 1417]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[391, 1101, 632, 1037, 165]],\n", " [[2769, 632, 5259, 1037, 165]],\n", " [[221, 5268, 7038, 14559, 3467]],\n", " [[7296, 271, 8726, 12612]],\n", " [[5429, 660, 329, 3592, 256, 7352, 1488, 330, 2331]],\n", " [[2822, 3622, 6719, 4699]],\n", " [[391, 1101, 632, 1037, 165]],\n", " [[12612, 221, 1488, 26802]],\n", " [[30492, 241, 7450, 14795]],\n", " [[6037, 632, 1037, 165]],\n", " [[3497, 9, 2487, 632, 5259, 1037, 165]],\n", " [[13708, 26450, 2912, 438, 1020]],\n", " [[274, 530, 11504, 257, 4807, 282, 2603, 21752, 26084, 2426]],\n", " [[315, 532, 390, 18, 632, 4191, 165]],\n", " [[14605, 632, 5259, 1037, 165]],\n", " [[8683, 632, 5259, 1037, 165]],\n", " [[12612, 4436, 20287, 337]],\n", " [[13633, 83, 4, 597, 4, 347, 4]],\n", " [[188, 3324, 632, 1037, 165]],\n", " [[112, 4, 5429, 1332, 5459]],\n", " [[14993, 5150, 10888, 19864, 354, 274, 1140, 4691, 179]],\n", " [[121, 9056, 102, 1211, 7128, 29]],\n", " [[4622, 139, 3767, 459, 38754]],\n", " [[3430, 632, 1037, 165]],\n", " [[2893, 13345, 29018, 10221, 2684, 12765, 139, 4214, 2955, 6251, 763]],\n", " [[3274, 331, 4223]],\n", " [[226, 18307, 234, 324, 438, 324, 438, 2478]],\n", " [[10482, 2374, 11761, 775]],\n", " [[2910, 390, 18, 632, 1037, 165]],\n", " [[14567, 12612]],\n", " [[580, 3600, 315, 274, 4, 347, 4]],\n", " [[2393, 873, 329, 1790, 12150]],\n", " [[112, 4, 5429, 1332, 5459]],\n", " [[2201, 6130, 12, 534, 8362, 1851, 274, 4, 347, 4]],\n", " [[27162, 11626, 3990, 1722, 179, 274, 4, 347, 4]],\n", " [[16193, 632, 1037, 165]],\n", " [[2271, 13310, 36349, 2884, 337, 757, 5107, 5429]],\n", " [[7505, 17458, 632, 1037, 165]],\n", " [[20351, 2383, 42775, 2001, 33293]],\n", " [[7296, 271, 8726, 12612]],\n", " [[663, 11758]],\n", " [[3426, 274, 4, 347, 4]],\n", " [[18490, 632, 5259, 1037, 165]],\n", " [[274, 5777, 28185, 3381, 242, 14795]],\n", " [[229, 5596, 21834]],\n", " [[31280, 282, 5269, 29048, 263, 255, 6166, 11408, 102]],\n", " [[12612, 4436, 20287, 337]],\n", " [[14664, 412, 5429]],\n", " [[21774, 632, 1037, 165]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[2361, 315, 274, 4, 347, 4]],\n", " [[12919, 5429]],\n", " [[726, 12, 3609, 895, 1543, 2636, 1847, 2009]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[2177, 2692, 10929]],\n", " [[764, 506, 13139, 1755, 35406, 15215]],\n", " [[9035, 412, 274, 4, 347, 4]],\n", " [[344, 30395, 12108, 368]],\n", " [[5429, 5078, 329, 3281]],\n", " [[229, 4113, 254, 354, 12150]],\n", " [[2381, 102, 3703, 574, 165]],\n", " [[7556, 632, 5259, 1037, 165]],\n", " [[19041, 10968, 6752, 10327]],\n", " [[952, 6382, 857, 330, 710, 248, 7396, 12150]],\n", " [[208, 10729, 14777, 225]],\n", " [[6171, 632, 5259, 1037, 165]],\n", " [[14993, 5150, 10888, 19864, 354]],\n", " [[7505, 17458, 632, 1037, 165]],\n", " [[15639, 632, 5259, 1037, 165]],\n", " [[9793, 5928, 274, 4, 347, 4]],\n", " [[14993, 5150, 10888, 19864, 354, 274, 1140, 4691, 179]],\n", " [[221, 4, 250, 4, 673, 4, 530, 4, 20, 7485, 30521, 8907, 274, 4, 347, 4]],\n", " [[188, 469, 1211, 9926]],\n", " [[21774, 632, 1037, 165]],\n", " [[83, 4, 104, 4, 12218]],\n", " [[274, 530, 840, 330, 105, 1187, 12733]],\n", " [[5429, 10402, 10489, 2691]],\n", " [[5429, 791, 22859, 118, 3900, 21053]],\n", " [[17468, 448, 13023, 5641, 163, 20997]],\n", " [[2893, 13345, 263, 6304, 415, 281, 109, 37313, 3314, 139]],\n", " [[2769, 632, 5259, 1037, 165]],\n", " [[2910, 632, 1037, 165]],\n", " [[2769, 632, 5259, 1037, 165]],\n", " [[2711, 23070, 9089, 14035, 3309, 876]],\n", " [[226, 4061, 384, 3632]],\n", " [[230, 1097, 241, 267, 22070, 263, 8550, 710, 1755]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[8683, 390, 18, 632, 865, 3512, 165]],\n", " [[25011, 12, 2022, 468, 11485, 102]],\n", " [[2361, 412, 274, 4, 347, 4]],\n", " [[3497, 9, 2487, 632, 5259, 1037, 165]],\n", " [[3378, 5553, 268]],\n", " [[1918, 1140, 14962, 274, 4467, 18217, 2893, 13345, 36, 21963, 43]],\n", " [[312, 4, 3217, 6293]],\n", " [[4766, 14572]],\n", " [[798, 632, 1037, 165]],\n", " [[3160, 17492]],\n", " [[8873, 9399, 1906, 263, 2588, 221, 2550, 5079]],\n", " [[896, 390, 18, 632, 4191, 165]],\n", " [[5429, 15757, 12705, 3467]],\n", " [[4380, 8271, 230, 5268]],\n", " [[5429, 7093, 523]],\n", " [[4436, 29, 385, 108, 11094, 4947, 11249, 3663, 13324]],\n", " [[1775, 438, 10810, 4936, 15247, 274, 4, 347, 4]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[1586, 354, 8300, 2401, 1168, 274, 4, 347, 4]],\n", " [[20351, 2383, 42775, 2001, 33293]],\n", " [[22839, 2727, 6748, 2723, 7222, 726, 2089, 5272]],\n", " [[3332, 2646, 26681, 274, 4, 347, 4]],\n", " [[3378, 5553, 268]],\n", " [[15376, 493, 21115]],\n", " [[166, 5618, 4670, 274, 4, 347, 4]],\n", " [[369, 17577, 315, 5429]],\n", " [[221, 2336, 272, 30265, 1243, 274, 4, 347, 4]],\n", " [[188, 3324, 632, 1037, 165]],\n", " [[208, 4, 347, 4, 2265, 6080]],\n", " [[6171, 632, 5259, 1037, 165]],\n", " [[952, 10172, 5521, 718, 281, 12612]],\n", " [[11141, 281, 3060, 4488, 274, 4, 347, 4]],\n", " [[229,\n", " 4,\n", " 104,\n", " 4,\n", " 347,\n", " 4,\n", " 226,\n", " 5361,\n", " 2558,\n", " 384,\n", " 2603,\n", " 12,\n", " 846,\n", " 2560,\n", " 463,\n", " 8663]],\n", " [[16588, 366, 12612]],\n", " [[315, 532, 604, 18, 632, 4191, 165]],\n", " [[3430, 632, 1037, 165]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[2009, 29018, 10221, 2684, 3182, 2727]],\n", " [[24195, 632, 1037, 165]],\n", " [[20421, 428, 10344, 274, 4, 347, 4]],\n", " [[14993, 5150, 263, 23294, 4061]],\n", " [[208, 4, 104, 4, 347, 4, 7645, 6483]],\n", " [[208, 4, 574, 4, 1664, 506, 2426]],\n", " [[9341, 261, 632, 1037, 165]],\n", " [[274, 530, 229, 7381, 139, 2742, 10809, 31316, 36533]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[312, 1829, 248, 18974, 354, 274, 4, 347, 4]],\n", " [[2009, 44285, 1851]],\n", " [[391, 1101, 632, 1037, 165]],\n", " [[36858, 25278, 22753]],\n", " [[2646, 1210, 24181, 274, 4, 347, 4]],\n", " [[5429, 4424, 22015, 11135, 2816, 438]],\n", " [[12132, 632, 1037, 165]],\n", " [[4174, 632, 5259, 1037, 165]],\n", " [[5244, 632, 1037, 165]],\n", " [[274, 3573, 4448, 6276]],\n", " [[1775, 438, 10810, 4936, 15247, 274, 4, 347, 4]],\n", " [[726, 12, 597, 5655, 7776, 4998]],\n", " [[234,\n", " 1561,\n", " 338,\n", " 29270,\n", " 19757,\n", " 274,\n", " 1242,\n", " 428,\n", " 3937,\n", " 26649,\n", " 3671,\n", " 241,\n", " 3509]],\n", " [[3274, 331, 4223]],\n", " [[11193, 1908, 274, 4, 347, 4]],\n", " [[17112, 3061, 12, 487, 5600, 139]],\n", " [[5429, 24542, 298, 45739, 1879]],\n", " [[2027, 188, 469, 15626]],\n", " [[13800, 41269, 31221]],\n", " [[7320, 632, 1037, 165]],\n", " [[12723, 12130, 1178]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[2711, 23070, 9089, 14035, 3309, 876]],\n", " [[5429, 2049, 16408]],\n", " [[2893, 13345, 263, 6304, 415, 281, 109, 37313, 3314, 139]],\n", " [[44558, 991, 853, 4077, 873, 2768, 2258, 12150]],\n", " [[1470, 390, 18, 632, 865, 3512, 165]],\n", " [[1209, 31002, 16146, 6331, 366]],\n", " [[580, 3600, 315, 274, 4, 347, 4]],\n", " [[312, 1829, 248, 18974, 354, 274, 4, 347, 4]],\n", " [[3426, 274, 4, 347, 4]],\n", " [[21774, 632, 1037, 165]],\n", " [[896, 604, 18, 632, 4191, 165]],\n", " [[4436, 26827, 906, 289, 1140, 763, 6070, 5413, 2009]],\n", " [[5429, 221, 4438, 412]],\n", " [[1211, 2141, 274, 4, 347, 4]],\n", " [[726, 12, 534, 4759, 15997, 1847, 2009]],\n", " [[4998, 953, 7104]],\n", " [[315, 532, 604, 18, 632, 4191, 165]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[21774, 632, 1037, 165]],\n", " [[1221, 632, 5259, 1037, 165]],\n", " [[5429, 13913, 530, 12, 17986, 1001, 264, 705, 8224, 330, 1879, 2348]],\n", " [[28187, 687, 18612, 32825, 24969, 163, 8982, 2133]],\n", " [[4152, 274, 4, 347, 4]],\n", " [[3417, 36802, 5429]],\n", " [[2000, 632, 1037, 165]],\n", " [[20351, 2383, 42775, 2001, 33293]],\n", " [[25305, 8, 26288, 3733, 1417, 1243, 632, 1037, 165]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[11666, 274, 4, 347, 4]],\n", " [[6748, 2723, 9697, 25452, 338, 12109]],\n", " [[6371, 102, 1209, 1075, 274, 4, 347, 4]],\n", " [[2009, 29018, 10221, 2684, 4838, 281, 4989]],\n", " [[4152, 274, 4, 347, 4]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[3426, 274, 4, 347, 4]],\n", " [[5429, 229, 5079, 282, 1630, 271]],\n", " [[2009, 29018, 10221, 2684, 23654, 9401]],\n", " [[9692, 274, 4, 347, 4]],\n", " [[20, 4182, 677, 687, 29689, 6409, 1916]],\n", " [[7296, 271, 8726, 12612]],\n", " [[2822, 6525, 354, 4317, 7474, 118, 1140]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[2529, 119, 3671, 35960]],\n", " [[25305, 8, 26288, 3733, 1417, 1243, 632, 1037, 165]],\n", " [[4619, 26769, 4843, 242, 2005, 6945]],\n", " [[580, 14312, 11645, 19032, 274, 4, 347, 4]],\n", " [[14056, 369, 4680, 274, 4, 347, 4]],\n", " [[1156, 632, 5259, 1037, 165]],\n", " [[5092, 632, 1037, 165]],\n", " [[7224, 597, 19643, 1688, 3999, 1243]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[208, 4214, 15333, 5429]],\n", " [[96, 242, 366, 13519, 625, 4733]],\n", " [[14993, 5150, 10888, 19864, 354, 274, 1140, 4691, 179]],\n", " [[274, 530, 6015, 255, 2558, 4955, 17010]],\n", " [[255, 14744, 632, 1037, 165]],\n", " [[726, 12, 725, 718, 337, 208, 5268]],\n", " [[826, 2583, 12, 24667, 863]],\n", " [[208, 1741, 19209, 19380, 12, 565, 677, 47497]],\n", " [[6015, 16641, 163, 20997]],\n", " [[4677, 254, 4992, 5429]],\n", " [[9096, 3497, 632, 5259, 1037, 165]],\n", " [[315, 532, 604, 18, 632, 4191, 165]],\n", " [[12919, 274, 4, 347, 4]],\n", " [[391, 1101, 632, 1037, 165]],\n", " [[15607, 412, 274, 4, 347, 4]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[5429, 13985, 405, 6130, 14330]],\n", " [[5429, 16706, 90, 7228, 229, 3671, 8502]],\n", " [[6253, 846, 5620, 354, 3321]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[11141, 281, 3060, 4488, 274, 4, 347, 4]],\n", " [[2910, 632, 1037, 165]],\n", " [[289, 24812, 523, 1456, 108, 254, 264, 3952, 274, 4, 347, 4]],\n", " [[726, 4417, 338, 4998]],\n", " [[13077, 412, 83, 4, 597, 4, 347, 4]],\n", " [[2032, 11850, 257, 5429]],\n", " [[5302, 2681, 1243, 967, 366, 274, 4, 347, 4]],\n", " [[33445, 14511, 3109]],\n", " [[2910, 632, 1037, 165]],\n", " [[384, 10839, 642, 493, 5366, 2601]],\n", " [[4152, 305, 4, 597, 4, 347, 4]],\n", " [[5092, 632, 1037, 165]],\n", " [[12723, 12130, 1178]],\n", " [[1156, 632, 5259, 1037, 165]],\n", " [[9692, 274, 4, 347, 4]],\n", " [[11536, 632, 1037, 165]],\n", " [[1211, 6518, 8441]],\n", " [[21774, 632, 1037, 165]],\n", " [[1221, 390, 18, 632, 4191, 165]],\n", " [[5028, 632, 1037, 165]],\n", " [[11437, 632, 5259, 1037, 165]],\n", " [[5706, 274, 4, 347, 4]],\n", " [[497, 5638, 405, 366, 274, 4, 347, 4]],\n", " [[2009, 27417, 2684, 2884, 1113, 9401]],\n", " [[248, 11579, 11631, 3785, 1168, 263, 4612]],\n", " [[18490, 632, 5259, 1037, 165]],\n", " [[5703, 38901, 4216]],\n", " [[289, 39933, 525, 625, 271]],\n", " [[5926, 2032, 16248, 5429]],\n", " [[4436, 29, 385, 108, 11094, 4947, 11249, 3663, 13324]],\n", " [[234, 1277, 21402, 211, 6472, 102, 42191, 11591]],\n", " [[726, 12, 3609, 102, 873, 230, 3632]],\n", " [[83, 4, 347, 4, 7338]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[2822, 3622, 12612]],\n", " [[4644, 632, 5259, 1037, 165]],\n", " [[272, 14996, 19380]],\n", " [[798, 632, 1037, 165]],\n", " [[840, 873, 873, 726, 7746, 3572, 2009]],\n", " [[9096, 3497, 632, 5259, 1037, 165]],\n", " [[2009, 29018, 10221, 2684, 4119, 6303, 271, 1168]],\n", " [[1775, 438, 10810, 4936, 15247, 274, 4, 347, 4]],\n", " [[5429, 4612, 163, 5269, 30919, 594]],\n", " [[29018, 10221, 2684, 2893, 13345, 263, 8062]],\n", " [[22256, 2565, 632, 1037, 165]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[2910, 632, 1037, 165]],\n", " [[12933, 632, 1037, 165]],\n", " [[1491, 1872, 413, 274, 4, 347, 4]],\n", " [[14993, 9504, 366, 274, 4, 347, 4]],\n", " [[4273, 853, 424, 315, 274, 4, 347, 4]],\n", " [[1775, 438, 10810, 5477, 19067, 274, 4, 347, 4]],\n", " [[274, 4, 347, 4, 2848, 139]],\n", " [[1063, 611, 493, 272, 6106, 1277, 11936, 7771]],\n", " [[726, 12, 8138, 10810, 4998]],\n", " [[4341, 3671, 642, 1033, 5429]],\n", " [[5295, 632, 5259, 1037, 165]],\n", " [[5429, 4612, 274, 15035, 1977]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[13287, 12, 25093, 7829, 40236, 2711]],\n", " [[2822, 8957, 1777]],\n", " [[12932, 534, 43130, 22590, 225, 10436]],\n", " [[8700, 632, 1037, 165]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[1156, 632, 5259, 1037, 165]],\n", " [[1221, 632, 5259, 1037, 165]],\n", " [[14605, 632, 5259, 1037, 165]],\n", " [[9601, 163, 8371, 14393]],\n", " [[5302, 1499, 4544, 274, 4, 347, 4]],\n", " [[2822, 14585, 2550, 625]],\n", " [[17609, 632, 1037, 165]],\n", " [[3864, 102, 35020, 354, 18440, 1073, 4193, 102, 5429]],\n", " [[3317, 13376]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[208, 4, 574, 4, 1664, 506, 2426]],\n", " [[13800, 41269, 31221]],\n", " ...],\n", " 'relation': ['P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " ...],\n", " 'num_answers': [1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " ...]},\n", " '2022-Q1': {'text': [['Alex Morgan plays for .'],\n", " ['Cristiano Ronaldo plays for .'],\n", " ['LeBron James plays for .'],\n", " ['Zlatan Ibrahimović plays for .'],\n", " ['Neymar plays for .'],\n", " ['Ronaldinho plays for .'],\n", " ['Megan Rapinoe plays for .'],\n", " ['Alisha Lehmann plays for .'],\n", " ['Robert Lewandowski plays for .'],\n", " ['Gianluigi Buffon plays for .'],\n", " ['Andrea Pirlo plays for .'],\n", " ['Kevin Durant plays for .'],\n", " ['Lukas Podolski plays for .'],\n", " ['Lewis Hamilton plays for .'],\n", " ['Formiga plays for .'],\n", " ['Naomi Osaka plays for .'],\n", " ['Luis Suárez plays for .'],\n", " ['Franck Ribéry plays for .'],\n", " ['Tim Cahill plays for .'],\n", " ['Chris Froome plays for .'],\n", " ['Mario Balotelli plays for .'],\n", " ['Lieke Martens plays for .'],\n", " ['Manuel Neuer plays for .'],\n", " ['Lindsey Horan plays for .'],\n", " ['Javier Mascherano plays for .'],\n", " ['Mark Cavendish plays for .'],\n", " ['James Rodríguez plays for .'],\n", " ['Hope Solo plays for .'],\n", " ['Diego Forlán plays for .'],\n", " ['Sebastián Abreu plays for .'],\n", " ['Carli Lloyd plays for .'],\n", " ['Marta plays for .'],\n", " ['Javier Hernández plays for .'],\n", " ['Yuzvendra Chahal plays for .'],\n", " ['Fernando Alonso plays for .'],\n", " ['Thiago Silva plays for .'],\n", " ['Andrés Iniesta plays for .'],\n", " ['Keisuke Honda plays for .'],\n", " ['Marianne Vos plays for .'],\n", " ['Pepe Reina plays for .'],\n", " ['Giovani dos Santos plays for .'],\n", " ['Ricardo Quaresma plays for .'],\n", " ['Mesut Özil plays for .'],\n", " ['Freddy Adu plays for .'],\n", " ['Cristiane Rozeira plays for .'],\n", " ['Maya Moore plays for .'],\n", " ['Bastian Schweinsteiger plays for .'],\n", " ['Luis Scola plays for .'],\n", " ['Jérôme Boateng plays for .'],\n", " ['Kevin-Prince Boateng plays for .'],\n", " ['Egidio Arévalo Rios plays for .'],\n", " ['Dwyane Wade plays for .'],\n", " ['Dwight Howard plays for .'],\n", " ['Cesc Fàbregas plays for .'],\n", " ['Nigel de Jong plays for .'],\n", " ['Colin Kazim-Richards plays for .'],\n", " ['David Alaba plays for .'],\n", " ['Xherdan Shaqiri plays for .'],\n", " ['Laura Kenny plays for .'],\n", " ['Aristide Bancé plays for .'],\n", " ['Philippe Gilbert plays for .'],\n", " ['Edinson Cavani plays for .'],\n", " ['Breanna Stewart plays for .'],\n", " ['Bruno Alves plays for .'],\n", " ['Ali Krieger plays for .'],\n", " ['Antoine Griezmann plays for .'],\n", " ['Mohamed Salah plays for .'],\n", " ['Memphis Depay plays for .'],\n", " ['Pablo Zabaleta plays for .'],\n", " ['Jozy Altidore plays for .'],\n", " ['Steve Nash plays for .'],\n", " ['Shinji Okazaki plays for .'],\n", " ['Maya Yoshida plays for .'],\n", " ['Guillermo Ochoa plays for .'],\n", " ['Serge Gnabry plays for .'],\n", " ['Christine Sinclair plays for .'],\n", " ['Paul Pogba plays for .'],\n", " ['Hugo Almeida plays for .'],\n", " [\"Raïs M'Bolhi plays for .\"],\n", " ['Joel Campbell plays for .'],\n", " ['Luka Modrić Papá de Lionel Messi plays for .'],\n", " ['Toni Kroos plays for .'],\n", " ['Giulia Gwinn plays for .'],\n", " ['Ellen van Dijk plays for .'],\n", " ['Lucas Barrios plays for .'],\n", " ['Daniel Fernandes plays for .'],\n", " ['Juan Mata plays for .'],\n", " ['Michael Bradley plays for .'],\n", " ['Gonzalo Higuaín plays for .'],\n", " ['Greg Van Avermaet plays for .'],\n", " ['Alexandra Lacrabère plays for .'],\n", " ['Davide Rebellin plays for .'],\n", " ['Kyrie Irving plays for .'],\n", " ['Sebastian Vettel plays for .'],\n", " ['Ingrid Syrstad Engen plays for .'],\n", " ['Adrien Silva plays for .'],\n", " ['Rigoberto Urán plays for .'],\n", " ['John Arne Riise plays for .'],\n", " ['Tobin Heath plays for .'],\n", " ['Hedvig Lindahl plays for .'],\n", " ['Marcelo plays for .'],\n", " ['Radamel Falcao plays for .'],\n", " ['Marko Marin plays for .'],\n", " ['Mikel John Obi plays for .'],\n", " ['Hulk plays for .'],\n", " ['Rudy Fernández plays for .'],\n", " ['Lizzie Deignan plays for .'],\n", " ['Zé Roberto plays for .'],\n", " ['Łukasz Fabiański plays for .'],\n", " ['Mats Hummels plays for .'],\n", " ['Diego Ribas da Cunha plays for .'],\n", " ['Rafinha plays for .'],\n", " ['Vladimir Stojković plays for .'],\n", " ['Ángel Di María plays for .'],\n", " ['Chris Paul plays for .'],\n", " ['Rosana dos Santos Augusto plays for .'],\n", " ['Manuel da Costa plays for .'],\n", " ['Alexis Sánchez plays for .'],\n", " ['Sophie Schmidt plays for .'],\n", " ['Pepe plays for .'],\n", " ['Philippe Coutinho plays for .'],\n", " ['Sadio Mané plays for .'],\n", " ['Christen Press plays for .'],\n", " ['Keylor Navas plays for .'],\n", " ['Bojan Krkić plays for .'],\n", " ['Steve Mandanda plays for .'],\n", " ['Miodrag Anđelković plays for .'],\n", " ['Thibaut Courtois plays for .'],\n", " ['Eiður Guðjohnsen plays for .'],\n", " ['Jakub Błaszczykowski plays for .'],\n", " ['Henning Berg plays for .'],\n", " ['Annemiek van Vleuten plays for .'],\n", " ['Álvaro Pereira plays for .'],\n", " ['Florent Sinama Pongolle plays for .'],\n", " ['Miljan Mrdaković plays for .'],\n", " ['Mario Götze plays for .'],\n", " ['Jô plays for .'],\n", " ['Claudio Pizarro plays for .'],\n", " ['Ivan Rakitić plays for .'],\n", " ['Erin McLeod plays for .'],\n", " ['Peter Odemwingie plays for .'],\n", " ['Sofia Jakobsson plays for .'],\n", " ['David Luiz plays for .'],\n", " ['Jordi Alba plays for .'],\n", " ['Nicklas Bendtner plays for .'],\n", " ['Junichi Inamoto plays for .'],\n", " ['Niklas Süle plays for .'],\n", " ['Diego Godín plays for .'],\n", " ['Yuto Nagatomo plays for .'],\n", " ['Olivier Giroud plays for .'],\n", " ['Tom Dumoulin plays for .'],\n", " [\"Kelley O'Hara plays for .\"],\n", " ['Lisa De Vanna plays for .'],\n", " ['Rafael van der Vaart plays for .'],\n", " ['Elena Delle Donne plays for .'],\n", " ['Brittney Griner plays for .'],\n", " ['Shunsuke Nakamura plays for .'],\n", " ['David Silva plays for .'],\n", " ['Axel Witsel plays for .'],\n", " ['Andrés Guardado plays for .'],\n", " ['Kylian Mbappé plays for .'],\n", " ['Tom Brady plays for .'],\n", " ['Micah Richards plays for .'],\n", " ['Łukasz Piszczek plays for .'],\n", " ['Royston Drenthe plays for .'],\n", " ['Gareth Bale plays for .'],\n", " ['Sergio Romero plays for .'],\n", " ['Filipe Luís plays for .'],\n", " ['Romelu Lukaku plays for .'],\n", " ['Erling Haaland plays for .'],\n", " ['Arturo Vidal plays for .'],\n", " ['Jermaine Jones plays for .'],\n", " ['Eden Hazard plays for .'],\n", " ['Demba Ba plays for .'],\n", " ['Nuri Şahin plays for .'],\n", " ['Hugo Lloris plays for .'],\n", " ['Morgan Schneiderlin plays for .'],\n", " ['Henrikh Mkhitaryan plays for .'],\n", " ['Ryan Babel plays for .'],\n", " ['Aron Baynes plays for .'],\n", " ['Johan Djourou plays for .'],\n", " ['Kevin De Bruyne plays for .'],\n", " ['Shinji Ono plays for .'],\n", " ['Idriss Carlos Kameni plays for .'],\n", " ['Boris Diaw plays for .'],\n", " ['Anja Mittag plays for .'],\n", " ['Joakim Noah plays for .'],\n", " ['Ricky Rubio plays for .'],\n", " ['Stephan Andersen plays for .'],\n", " [\"Andrés D'Alessandro plays for .\"],\n", " ['Claudio Bravo plays for .'],\n", " ['Becky Sauerbrunn plays for .'],\n", " ['Rafinha plays for .'],\n", " ['Blaise Matuidi plays for .'],\n", " ['Cristian Rodríguez plays for .'],\n", " ['Marek Hamšík plays for .'],\n", " ['Ciro Immobile plays for .'],\n", " [\"Dame N'Doye plays for .\"],\n", " ['Raphaël Varane plays for .'],\n", " ['Roger Kluge plays for .'],\n", " ['Asmir Begović plays for .'],\n", " ['Christian Eriksen plays for .'],\n", " ['Luiz Gustavo plays for .'],\n", " ['Hamit Altıntop plays for .'],\n", " ['Brad Guzan plays for .'],\n", " ['André Ayew plays for .'],\n", " ['César Azpilicueta plays for .'],\n", " ['Éric Maxim Choupo-Moting plays for .'],\n", " ['Shkodran Mustafi plays for .'],\n", " ['Caroline Seger plays for .'],\n", " ['Fernando Muslera plays for .'],\n", " ['Leonardo Bonucci plays for .'],\n", " ['Nordin Amrabat plays for .'],\n", " ['Richard Kingson plays for .'],\n", " ['Jonny Evans plays for .'],\n", " ['Jonathan de Guzmán plays for .'],\n", " ['Yannick Bolasie plays for .'],\n", " ['Dante Bonfim Costa Santos plays for .'],\n", " ['Park Chu-young plays for .'],\n", " ['Lucas Hernandez plays for .'],\n", " ['Sonny Bill Williams plays for .'],\n", " ['Sydney Leroux plays for .'],\n", " ['Victor Moses plays for .'],\n", " ['Elano plays for .'],\n", " ['Asamoah Gyang plays for .'],\n", " ['Grzegorz Krychowiak plays for .'],\n", " ['Achraf Hakim plays for .'],\n", " ['John Guidetti plays for .'],\n", " ['Salomon Kalou plays for .'],\n", " ['Karen Bardsley plays for .'],\n", " ['Cédric Soares plays for .'],\n", " ['Dietmar Hamann plays for .'],\n", " ['Mark Milligan plays for .'],\n", " ['Yūki Nagasato plays for .'],\n", " ['Pedro plays for .'],\n", " ['Albert Riera plays for .'],\n", " ['Florent Malouda plays for .'],\n", " ['Eduardo Carvalho plays for .'],\n", " ['Maicon plays for .'],\n", " ['Giuseppe Rossi plays for .'],\n", " ['Samir Nasri plays for .'],\n", " ['Andrija Kaluđerović plays for .'],\n", " ['Sarah Storey plays for .'],\n", " ['Nairo Quintana plays for .'],\n", " ['Leroy Sané plays for .'],\n", " ['Valon Behrami plays for .'],\n", " ['Eiji Kawashima plays for .'],\n", " ['Ana Dabović plays for .'],\n", " ['Raúl Albiol plays for .'],\n", " ['Bryan Ruiz plays for .'],\n", " ['Gabriel Torres plays for .'],\n", " ['Éver Banega plays for .'],\n", " ['Simon Kjær plays for .'],\n", " ['Willy Caballero plays for .'],\n", " ['Sergio Rodríguez plays for .'],\n", " ['Luuk de Jong plays for .'],\n", " ['Eduardo Vargas plays for .'],\n", " ['Ivan Perišić plays for .'],\n", " ['Michał Kwiatkowski plays for .'],\n", " ['Diego Reyes plays for .'],\n", " ['Lars Hirschfeld plays for .'],\n", " ['Abby Dahlkemper plays for .'],\n", " ['Daley Blind plays for .'],\n", " ['Roko Ukić plays for .'],\n", " ['Pablo Contreras plays for .'],\n", " ['Nando de Colo plays for .'],\n", " ['Steph Houghton plays for .'],\n", " ['Jermain Defoe plays for .'],\n", " ['Divock Origi plays for .'],\n", " ['el tete plays for .'],\n", " ['Maximiliano Richeze plays for .'],\n", " ['Ashleigh Barty plays for .'],\n", " ['Curao Ql plays for .'],\n", " ['Marquinhos plays for .'],\n", " ['Julie Ertz plays for .'],\n", " ['Sebastián Eguren plays for .'],\n", " ['Marco Fabián plays for .'],\n", " ['Edvald Boasson-Hagen plays for .'],\n", " ['João Moutinho plays for .'],\n", " ['İlkay Gündoğan plays for .'],\n", " ['Gary Medel plays for .'],\n", " ['Karim Ziani plays for .'],\n", " ['Christian Bolaños plays for .'],\n", " ['Gonzalo Jara plays for .'],\n", " ['David De Gea plays for .'],\n", " ['Daniel Sturridge plays for .'],\n", " ['Esteban Cambiasso plays for .'],\n", " ['Gabriel Enrique Gómez plays for .'],\n", " ['Douglas Costa plays for .'],\n", " ['Michy Batshuayi plays for .'],\n", " ['Yakubu plays for .'],\n", " ['José Fonte plays for .'],\n", " ['Rui Costa plays for .'],\n", " ['Salvatore Sirigu plays for .'],\n", " ['Kasper Schmeichel plays for .'],\n", " ['Roman Bürki plays for .'],\n", " ['Víctor Claver plays for .'],\n", " ['Arkadiusz Milik plays for .'],\n", " ['Daniel Ricciardo plays for .'],\n", " ['Thomas Delaney plays for .'],\n", " ['Kevin Love plays for .'],\n", " ['Stéphane Mbia plays for .'],\n", " ['Martín Demichelis plays for .'],\n", " ['Siraba Dembele plays for .'],\n", " ['Damian Lillard plays for .'],\n", " ['Richie Porte plays for .'],\n", " ['Sébastien Haller plays for .'],\n", " ['Edin Džeko plays for .'],\n", " ['Daisuke Matsui plays for .'],\n", " ['José Sosa plays for .'],\n", " ['Nelson Valdez plays for .'],\n", " ['Luis Advíncula plays for .'],\n", " ['Danilo Pereira plays for .'],\n", " [\"N'Golo Kanté plays for .\"],\n", " ['Duško Tošić plays for .'],\n", " ['Ricardo Rodriguez plays for .'],\n", " ['Shane Smeltz plays for .'],\n", " ['Peter Crouch plays for .'],\n", " ['Simon Gerrans plays for .'],\n", " ['Mark González plays for .'],\n", " ['Kevin Mirallas plays for .'],\n", " ['Gervinho plays for .'],\n", " ['Alex Song plays for .'],\n", " ['Glenn Whelan plays for .'],\n", " ['Raul Meireles plays for .'],\n", " ['Ali Riley plays for .'],\n", " ['Anthony Davis plays for .'],\n", " ['Sani Kaita plays for .'],\n", " ['Christie Pearce plays for .'],\n", " ['Luís Fabiano plays for .'],\n", " ['Jan Vertonghen plays for .'],\n", " ['Thiago Alcântara plays for .'],\n", " ['João Mário plays for .'],\n", " ['Alisson plays for .'],\n", " ['Fridolina Rolfö plays for .'],\n", " ['Wout van Aert plays for .'],\n", " ['Alphonse Areola plays for .'],\n", " ['Mousa Dembélé plays for .'],\n", " ['Babett Peter plays for .'],\n", " ['Fabiana da Silva Simões plays for .'],\n", " ['Blerim Džemaili plays for .'],\n", " ['Adriana Leon plays for .'],\n", " ['Naohiro Takahara plays for .'],\n", " ['oscar perez plays for .'],\n", " ['Gaël Kakuta plays for .'],\n", " ['Isco Alarcón plays for .'],\n", " ['Gabriel Tamaș plays for .'],\n", " ['Jaroslav Drobný plays for .'],\n", " ['Raheem Sterling plays for .'],\n", " ['Samuel Umtiti plays for .'],\n", " ['Amido Baldé plays for .'],\n", " ['Brad Jones plays for .'],\n", " ['Adil Rami plays for .'],\n", " ['Miguel Layún plays for .'],\n", " ['Jan Koller plays for .'],\n", " ['Dmitri Alenichev plays for .'],\n", " ['Marco Asensio plays for .'],\n", " ['Michael Mørkøv plays for .'],\n", " ['Kendall Waston plays for .'],\n", " ['Milan Borjan plays for .'],\n", " ['Kamil Glik plays for .'],\n", " ['Roman Neustädter plays for .'],\n", " ['Marcelo Díaz plays for .'],\n", " ['Jesé Rodríguez plays for .'],\n", " ['Roberto Acuña plays for .'],\n", " ['Ricardo Faty plays for .'],\n", " ['Danilo Luiz plays for .'],\n", " ['Olga Zabelinskaya plays for .'],\n", " ['Darron Gibson plays for .'],\n", " ['James Harden plays for .'],\n", " ['Russell Westbrak plays for .'],\n", " ['Jung Sung-ryong plays for .'],\n", " ['Melissa Tancredi plays for .'],\n", " ['Daryl Impey plays for .'],\n", " ['Henrik Ojamaa plays for .'],\n", " ['Leon Goretzka plays for .'],\n", " ['Pablo Hernández Domínguez plays for .'],\n", " ['Tomáš Necid plays for .'],\n", " ['Joseph Yobo plays for .'],\n", " ['Rafał Majka plays for .'],\n", " ['Bruma plays for .'],\n", " ['Samuel Inkoom plays for .'],\n", " ['Robbie Rogers plays for .'],\n", " ['Robert de Pinho de Souza plays for .'],\n", " ['Georges Mandjeck plays for .'],\n", " ['Lucho González plays for .'],\n", " ['Paul-Georges Ntep plays for .'],\n", " ['Ander Herrera plays for .'],\n", " ['Érika Cristiano dos Santos plays for .'],\n", " ['Kingsley Coman plays for .'],\n", " ['Aymeric Laporte plays for .'],\n", " ['Primož Roglič plays for .'],\n", " ['Charles Aránguiz plays for .'],\n", " ['Julian Alaphilippe plays for .'],\n", " ['André Silva plays for .'],\n", " ['Elton Brand plays for .'],\n", " ['Nikita Rukavytsya plays for .'],\n", " ['Marc-André ter Stegen plays for .'],\n", " ['Steven Davis plays for .'],\n", " ['Anderson plays for .'],\n", " ['Matthias Ginter plays for .'],\n", " ['Haris Seferovic plays for .'],\n", " ['Rui Patrício plays for .'],\n", " ['Wojciech Szczęsny plays for .'],\n", " ['Rúrik Gíslason plays for .'],\n", " ['Oscar dos Santos Emboaba Júnior plays for .'],\n", " ['Koo Ja-cheol plays for .'],\n", " ['Lucy Bronze plays for .'],\n", " ['Crystal Dunn plays for .'],\n", " ['Toby Alderweireld plays for .'],\n", " ['Penalty in the UEL final plays for .'],\n", " ['Joe Hart plays for .'],\n", " ['Kepa Arrizabalaga plays for .'],\n", " ['Giannis Antetokounmpo plays for .'],\n", " ['Besart Berisha plays for .'],\n", " ['Willian plays for .'],\n", " ['Obafemi Martins plays for .'],\n", " ['Moussa Maâzou plays for .'],\n", " ['Alexei Eremenko plays for .'],\n", " ['Moussa Dembélé plays for .'],\n", " ['Ashlyn Harris plays for .'],\n", " ['Chris Wood plays for .'],\n", " ['Reto Ziegler plays for .'],\n", " ['Antonio Nocerino plays for .'],\n", " ['Ji Dong-won plays for .'],\n", " ['Carlos Salcido plays for .'],\n", " ['Oribe Peralta plays for .'],\n", " ['Marco Ureña plays for .'],\n", " ['Antar Yahia plays for .'],\n", " ['Georginio Wijnaldum plays for .'],\n", " ['Sam Kerr plays for .'],\n", " ['Martín Cáceres plays for .'],\n", " ['Valeri Bojinov plays for .'],\n", " ['Luis Tejada plays for .'],\n", " ['Gökhan İnler plays for .'],\n", " ['Javi García plays for .'],\n", " ['Nicolás Lodeiro plays for .'],\n", " ['Raúl Jiménez plays for .'],\n", " ['Janine Beckie plays for .'],\n", " ['Arda Turan plays for .'],\n", " ['Selim Benachour plays for .'],\n", " ['Mickaël Gelabale plays for .'],\n", " ['Daniel González Güiza plays for .'],\n", " ['Jackie Groenen plays for .'],\n", " ['John Mensah plays for .'],\n", " ['Federico Fazio plays for .'],\n", " ['Carl Medjani plays for .'],\n", " ['Ahmed Musa plays for .'],\n", " ['Essam El-Hadary plays for .'],\n", " ['Vedad Ibišević plays for .'],\n", " ['Marouane Fellaini plays for .'],\n", " ['Miralem Pjanić plays for .'],\n", " ['Jorginho plays for .'],\n", " ['Lacina Traoré plays for .'],\n", " ['Christiane Endler plays for .'],\n", " ['Alyssa Naeher plays for .'],\n", " ['Steven Nzonzi plays for .'],\n", " ['Kim Dong-jin plays for .'],\n", " ['Joshua Kimmich plays for .'],\n", " ['Emre Can plays for .'],\n", " ['Nicolas Batum plays for .'],\n", " ['Emiliano Insúa plays for .'],\n", " ['Casemiro plays for .'],\n", " ['Júnior Díaz plays for .'],\n", " ['Jodie Taylor plays for .'],\n", " ['Robin Olsen plays for .'],\n", " ['Héctor Herrera plays for .'],\n", " ['Sebastian Giovinco plays for .'],\n", " ['Rodrigo plays for .'],\n", " ['Fernando Gaviria plays for .'],\n", " ['Oleksandr Aliyev plays for .'],\n", " ['Florian Thauvin plays for .'],\n", " ['Kim Bo-kyung plays for .'],\n", " ['Abel Hernández plays for .'],\n", " ['Thorgan Hazard plays for .'],\n", " ['Gotoku Sakai plays for .'],\n", " ['Odion Ighalo plays for .'],\n", " ['Jasmin Glaesser plays for .'],\n", " ['Felipe Melo plays for .'],\n", " ['Gábor Király plays for .'],\n", " ['Herculez Gomez plays for .'],\n", " ['Paulo da Silva plays for .'],\n", " ['Héctor Moreno plays for .'],\n", " ['Cacau plays for .'],\n", " ['Denis Cheryshev plays for .'],\n", " ['Anthony Annan plays for .'],\n", " ['Darius Songaila plays for .'],\n", " ['Morgan De Sanctis plays for .'],\n", " ['Joe Ingles plays for .'],\n", " ['Paco Alcácer plays for .'],\n", " ['Sara Däbritz plays for .'],\n", " ['Nikola Mirotić plays for .'],\n", " ['Adlène Guedioura plays for .'],\n", " ['Fábio Coentrão plays for .'],\n", " ['Scott Carson plays for .'],\n", " ['Granit Xhaka plays for .'],\n", " ['Ashkan Dejagah plays for .'],\n", " ['Yevhen Seleznyov plays for .'],\n", " ['Makoto Hasebe plays for .'],\n", " ['William Troost-Ekong plays for .'],\n", " ['Mauro Zárate plays for .'],\n", " ['Seydou Doumbia plays for .'],\n", " ['Tomáš Pekhart plays for .'],\n", " ['Jeffrén Suárez plays for .'],\n", " ['Kurt Zouma plays for .'],\n", " ['Nicolás Otamendi plays for .'],\n", " ['Silvestre Varela plays for .'],\n", " ['Hiroki Sakai plays for .'],\n", " ['Geoffrey Kondogbia plays for .'],\n", " ['Antonio Rüdiger plays for .'],\n", " ['Danko Lazović plays for .'],\n", " ['Admir Mehmedi plays for .'],\n", " ['Javier Aquino plays for .'],\n", " ['Kelsey Plum plays for .'],\n", " ['Teemu Pukki plays for .'],\n", " ['Grafite plays for .'],\n", " ['Lisa Brennauer plays for .'],\n", " ['Dejan Lovren plays for .'],\n", " ['Niki Terpstra plays for .'],\n", " ['Marcelinho Paraíba plays for .'],\n", " ['Mix Diskerud plays for .'],\n", " ['David Ospina plays for .'],\n", " ['Alexander Sørloth plays for .'],\n", " ['Marek Saganowski plays for .'],\n", " ['Gabriel Barbosa plays for .'],\n", " ['Besart Abdurahimi plays for .'],\n", " ['Matthew Spiranovic plays for .'],\n", " ['Josip Tadić plays for .'],\n", " ['Younis Mahmoud plays for .'],\n", " ['Jordan Ayew plays for .'],\n", " ['Miguel Lopes plays for .'],\n", " ['Martin Hansen plays for .'],\n", " ['Pierre Bengtsson plays for .'],\n", " ['Taye Taiwo plays for .'],\n", " ['David Carney plays for .'],\n", " ['Ángel Guirado plays for .'],\n", " ['Roberto Jiménez Gago plays for .'],\n", " ['Karen Carney plays for .'],\n", " ['Amin Younes plays for .'],\n", " ['Javier Balboa plays for .'],\n", " ['Francisco Javier Rodríguez plays for .'],\n", " ['Éder plays for .'],\n", " ['Daniëlle van de Donk plays for .'],\n", " ['Reza Ghoochannejhad plays for .'],\n", " ['Kaylyn Kyle plays for .'],\n", " ['André Lotterer plays for .'],\n", " ['Daniel Wass plays for .'],\n", " ['Matías Fernandez plays for .'],\n", " ['Harry Kane plays for .'],\n", " ['Son Heung-min plays for .'],\n", " ['Cléopatre Darleux plays for .'],\n", " ['Yann Sommer plays for .'],\n", " ['Eniola Aluko plays for .'],\n", " ['Tyson Chandler plays for .'],\n", " ['Anthony Martial plays for .'],\n", " ['Greg Henderson plays for .'],\n", " ['Kiko Casillas plays for .'],\n", " ['Nilla Fischer plays for .'],\n", " ['Leon Balogun plays for .'],\n", " ['James Milner plays for .'],\n", " ['Cameron Meyer plays for .'],\n", " ['Benjamin Pavard plays for .'],\n", " ['Luís Leal plays for .'],\n", " ['Renato Sanches plays for .'],\n", " ['Mathew Ryan plays for .'],\n", " ['Shuichi Gonda plays for .'],\n", " ['Pierre-Emile Højbjerg plays for .'],\n", " ['Simon Mignolet plays for .'],\n", " ['Ben Sahar plays for .'],\n", " ['Mana Iwabuchi plays for .'],\n", " ['Desiree Scott plays for .'],\n", " ['Quinn plays for .'],\n", " ['Viktor Fischer plays for .'],\n", " ['Ron-Robert Zieler plays for .'],\n", " ['Alex Sandro plays for .'],\n", " ['Damien Le Tallec plays for .'],\n", " ['Tiago Mendes plays for .'],\n", " ['Martin Ødegaard plays for .'],\n", " ['Olarenwaju Kayode plays for .'],\n", " ['Fraser Forster plays for .'],\n", " ['Corentin Tolisso plays for .'],\n", " ['Walter Pandiani (CR7 su papá) plays for .'],\n", " ['Justo Villar plays for .'],\n", " ['Francisco Arrué plays for .'],\n", " ['Abel Aguilar plays for .'],\n", " ['Esmaël Gonçalves plays for .'],\n", " ['Sulley Muntari plays for .'],\n", " ['Izet Hajrović plays for .'],\n", " ['Ragnar Klavan plays for .'],\n", " ['Didier Zokora plays for .'],\n", " ['Oscar Ustari plays for .'],\n", " ['Mitchell Langerak plays for .'],\n", " ['Yassine Bounou plays for .'],\n", " ['Lydia Williams plays for .'],\n", " ['Gabriel Jesus plays for .'],\n", " ['Álvaro Fernández plays for .'],\n", " ['Abdoulaye Ba plays for .'],\n", " ['Julian Draxler plays for .'],\n", " ['Stoycho Mladenov plays for .'],\n", " ['Raphaël Guerreiro plays for .'],\n", " ['Simão Sabrosa plays for .'],\n", " ['Anouk Hoogendijk plays for .'],\n", " ['Emanuel Pogatetz plays for .'],\n", " ['Yannick Carrasco plays for .'],\n", " ['Marko Arnautović plays for .'],\n", " ['Bruno Uvini plays for .'],\n", " ['Lukáš Hrádecký plays for .'],\n", " ['Charles Itandje plays for .'],\n", " ['Ján Mucha plays for .'],\n", " ['Florent Piétrus plays for .'],\n", " ['Riyad Mahrez plays for .'],\n", " ['Andre Iguodala plays for .'],\n", " ['Nikos Zisis plays for .'],\n", " ['Alou Diarra plays for .'],\n", " ['Przemysław Tytoń plays for .'],\n", " ['Lucas Moura plays for .'],\n", " ['Álvaro Morata plays for .'],\n", " ['Amandine Henry plays for .'],\n", " ['Jefferson Farfán plays for .'],\n", " ['Martin Braithwaite plays for .'],\n", " ['Tom Heaton plays for .'],\n", " ['Carlos Salcedo plays for .'],\n", " ['Gabriel Torje plays for .'],\n", " ['Emily van Egmond plays for .'],\n", " ['Nicolás Laprovíttola plays for .'],\n", " ['Elias Kachunga plays for .'],\n", " ['Maurice Edu plays for .'],\n", " ['Nelson Oliveira plays for .'],\n", " ['Aco Stojkov plays for .'],\n", " ['Charlie Davies plays for .'],\n", " ['Carlos Fernandes plays for .'],\n", " ['Thaisa plays for .'],\n", " ['Álvaro Saborío plays for .'],\n", " ['Gabriel Cichero plays for .'],\n", " ['Fernandinho plays for .'],\n", " ['Vladimir Gabulov plays for .'],\n", " ['Taylor Rochestie plays for .'],\n", " ['Sven Bender plays for .'],\n", " ['Matías Aguirregaray plays for .'],\n", " ['Wilfried Zaha plays for .'],\n", " ['Ibrahim Afellay plays for .'],\n", " ['Mateo Kovačić plays for .'],\n", " ['Matteo Darmian plays for .'],\n", " ['Nathan Jawai plays for .'],\n", " ['Jérémy Ménez plays for .'],\n", " ['Marc Bartra plays for .'],\n", " ['Éric Djemba-Djemba plays for .'],\n", " ['Tarik Elyounoussi plays for .'],\n", " ['Yacine Brahimi plays for .'],\n", " ['Omar Bravo plays for .'],\n", " ['Antonio Valencia plays for .'],\n", " ['Kenneth Vermeer plays for .'],\n", " ['Dmytro Chyhrynskyi plays for .'],\n", " ['Juan Manuel Iturbe plays for .'],\n", " ['Julian de Guzman plays for .'],\n", " ['Alexander Merkel plays for .'],\n", " ['Roman Eremenko plays for .'],\n", " ['Lars Bender plays for .'],\n", " ['Suk Hyun-jun plays for .'],\n", " ['Emre Mor plays for .'],\n", " ['Zoran Tošić plays for .'],\n", " ['Jonathan dos Santos plays for .'],\n", " ['Jonathan Mensah plays for .'],\n", " ['Enzo Fernández plays for .'],\n", " ['Kim Young-gwon plays for .'],\n", " ['Oscar Pérez Rojas plays for .'],\n", " ['Astrit Ajdarević plays for .'],\n", " ['Rolf Feltscher plays for .'],\n", " ['Darren Randolph plays for .'],\n", " ['Ivan Pelizzoli plays for .'],\n", " ['Radomir Đalović plays for .'],\n", " ['Adam Nemec plays for .'],\n", " ['Kristie Mewis plays for .'],\n", " ['Hannes Þór Halldórsson plays for .'],\n", " ['Valon Berisha plays for .'],\n", " ['Marco Donadel plays for .'],\n", " ['Ola Toivonen plays for .'],\n", " ['Winston Reid plays for .'],\n", " ['Saki Kumagai plays for .'],\n", " ['Branko Ilić plays for .'],\n", " ['Răzvan Raț plays for .'],\n", " ['Robert Snodgrass plays for .'],\n", " ['Viola plays for .'],\n", " ['Klay Thompson plays for .'],\n", " ['Stefan Nikolić plays for .'],\n", " ['Carlos Sainz Jr plays for .'],\n", " ['Andressa Alves da Silva plays for .'],\n", " ['Álvaro Negredo plays for .'],\n", " ['Michail Antonio plays for .'],\n", " ['José Bosingwa plays for .'],\n", " ['Atsuto Uchida plays for .'],\n", " ['Lisa Dahlkvist plays for .'],\n", " ['James Troisi plays for .'],\n", " ['Yacouba Sylla plays for .'],\n", " ['Simon Vukčević plays for .'],\n", " ['Cristian Gamboa plays for .'],\n", " ['Elisa Longo Borghini plays for .'],\n", " ['Roberto Soldado plays for .'],\n", " ['Diana Matheson plays for .'],\n", " ['Steven Caulker plays for .'],\n", " ['Ibrahima Baldé plays for .'],\n", " ['Mbark Boussoufa plays for .'],\n", " ['Achille Emaná plays for .'],\n", " ['Patrice Bernier plays for .'],\n", " ['Ivan Vicelich plays for .'],\n", " ['Islam Slimani plays for .'],\n", " ['Dani Ceballos plays for .'],\n", " ['Lucas Digne plays for .'],\n", " ['Nemanja Matić plays for .'],\n", " ['Andreas Pereira plays for .'],\n", " ['Franck Dja Djédjé plays for .'],\n", " ['Ethan Ampadu plays for .'],\n", " ['R.A. Dickey plays for .'],\n", " ['Yukari Kinga plays for .'],\n", " ['Ryan Bertrand plays for .'],\n", " ['Ed Clancy plays for .'],\n", " ['Elinton Andrade plays for .'],\n", " ['Siem de Jong plays for .'],\n", " ['Carlos Bueno plays for .'],\n", " ['Loïc Rémy plays for .'],\n", " ['Kozue Ando plays for .'],\n", " ['Jimmy Durmaz plays for .'],\n", " ['Rafael Pereira da Silva plays for .'],\n", " ['Óscar Duarte plays for .'],\n", " ['Michael Hector plays for .'],\n", " ['Alex McCarthy plays for .'],\n", " ['Dzsenifer Marozsán plays for .'],\n", " ['Nélson Oliveira plays for .'],\n", " ['Sacha Kljestan plays for .'],\n", " ['Sofiane Feghouli plays for .'],\n", " ['Emerson Palmieri plays for .'],\n", " ['Hristijan Kirovski plays for .'],\n", " ['Melanie Behringer plays for .'],\n", " ['Hernanes plays for .'],\n", " ['Isabelle Yacoubou plays for .'],\n", " ['Mauricio Isla plays for .'],\n", " ['Hakan Çalhanoğlu plays for .'],\n", " ['Douglas dos Santos plays for .'],\n", " ['Sinan Bolat plays for .'],\n", " ['Marcos Lopes plays for .'],\n", " ['J. J. Barea plays for .'],\n", " ['Mario Suárez Mata plays for .'],\n", " ['Stine Bredal Oftedal plays for .'],\n", " ['Njazi Kuqi plays for .'],\n", " ['Jesús Navas plays for .'],\n", " ['Shane Duffy plays for .'],\n", " ['Willy Hernangómez plays for .'],\n", " ['Rafael Bastos plays for .'],\n", " ['Carlos Beltrán plays for .'],\n", " ['Nelson Cruz plays for .'],\n", " ['Fiodor Smolov plays for .'],\n", " ['Boban Marjanović plays for .'],\n", " ['Fabián Carini plays for .'],\n", " ['Shelina Zadorsky plays for .'],\n", " ['Pavel Pogrebnyak plays for .'],\n", " ['Goran Pandev plays for .'],\n", " ['Marc Janko plays for .'],\n", " ['Jamal Alioui plays for .'],\n", " ['Mohammadou Idrissou plays for .'],\n", " ['Ousmane Dembélé plays for .'],\n", " ['Gordon Schildenfeld plays for .'],\n", " ['Bauke Mollema plays for .'],\n", " ['Kalu Uche plays for .'],\n", " ['Burak Yılmaz plays for .'],\n", " ['Jimmy Butler plays for .'],\n", " ['Eduardo da Silva plays for .'],\n", " ['Jefferson Louis plays for .'],\n", " ['Diomansy Kamara plays for .'],\n", " [\"Franck Songo'o plays for .\"],\n", " ['Marco Rojas plays for .'],\n", " ['Aarón Ñíguez plays for .'],\n", " ['Victor Lindelöf plays for .'],\n", " ['Iván Kaviedes plays for .'],\n", " ['Nikola Kalinić plays for .'],\n", " ['Jajá plays for .'],\n", " ['Iván Zarandona plays for .'],\n", " ['DeAndre Yedlin plays for .'],\n", " ['Ikechi Anya plays for .'],\n", " ['Anthony Lopes plays for .'],\n", " ['Clemente Rodríguez plays for .'],\n", " ['Jan Oblak plays for .'],\n", " ['Ritchie De Laet plays for .'],\n", " ['Lassana Diarra plays for .'],\n", " ['Kalidou Koulibaly plays for .'],\n", " ['Kostas Mitroglou plays for .'],\n", " ['Mario Lemina plays for .'],\n", " ['Mindaugas Kalonas plays for .'],\n", " ['Édouard Mendy plays for .'],\n", " ['Giovanni Sio plays for .'],\n", " ['Tijani Belaïd plays for .'],\n", " ['Park Joo-ho plays for .'],\n", " ['Emir Spahić plays for .'],\n", " ['Nikica Jelavić plays for .'],\n", " ['Erich Brabec plays for .'],\n", " ['Christian Cueva plays for .'],\n", " ['Yevhen Konoplyanka plays for .'],\n", " ['Paulo Dybala plays for .'],\n", " ['Emanuel Herrera plays for .'],\n", " ['Ludovic Obraniak plays for .'],\n", " ['Kleyr Vieira dos Santos plays for .'],\n", " ['Andriy Yakovlev plays for .'],\n", " ['DeMarcus Cousins plays for .'],\n", " ['Ross McCormack plays for .'],\n", " ['Taylor Phinney plays for .'],\n", " ['Maksim Shatskikh plays for .'],\n", " ['Abby Erceg plays for .'],\n", " ['Yukiya Arashiro plays for .'],\n", " ['Jason Denayer plays for .'],\n", " ['Marco Reus plays for .'],\n", " ['Michael Matthews plays for .'],\n", " ['Halil Altıntop plays for .'],\n", " ['Diego Tardelli plays for .'],\n", " ['Isaac Promise plays for .'],\n", " ['Estelle Nze Minko plays for .'],\n", " ['Andriy Yarmolenko plays for .'],\n", " ['Kamil Grosicki plays for .'],\n", " ['Fabinho plays for .'],\n", " ['Ishak Belfodil plays for .'],\n", " ['Tosaint Ricketts plays for .'],\n", " ['Linda Sembrant plays for .'],\n", " ['Tuncay Şanlı plays for .'],\n", " ['Hameur Bouazza plays for .'],\n", " ['Vladimír Weiss plays for .'],\n", " ['Bernard Mendy plays for .'],\n", " ['Matt Miazga plays for .'],\n", " ['Marcos Alonso plays for .'],\n", " ['Liassine Cadamuro plays for .'],\n", " ['Adam Federici plays for .'],\n", " ['Akaki Khubutia plays for .'],\n", " ['Miloš Teodosić plays for .'],\n", " ['Ellen White plays for .'],\n", " ['Román Torres plays for .'],\n", " ['Brown Ideye plays for .'],\n", " ['Sead Kolašinac plays for .'],\n", " ['Bernardo Silva plays for .'],\n", " ['Nils Petersen plays for .'],\n", " ['Oriol Romeu plays for .'],\n", " ['Adolfo Machado plays for .'],\n", " ['Filipe Machado Nascimento plays for .'],\n", " ['Rubén Iván Martínez plays for .'],\n", " ['Josephine Henning plays for .'],\n", " ['Dani Carvajal plays for .'],\n", " ['Joël Matip plays for .'],\n", " ['Marcus Berg plays for .'],\n", " ['Julio César de León plays for .'],\n", " ['Salomón Rondón plays for .'],\n", " ['Hajime Hosogai plays for .'],\n", " ['Edgar Ié plays for .'],\n", " ['Martín Montoya plays for .'],\n", " ['Lucas Piazón plays for .'],\n", " ['Markus Rosenberg plays for .'],\n", " ['Ognjen Vranješ plays for .'],\n", " ['Róbinson Zapata plays for .'],\n", " ['Sébastien Pocognoli plays for .'],\n", " ['Anders Lindegaard plays for .'],\n", " ['Jordan Henderson plays for .'],\n", " ['Josip Drmić plays for .'],\n", " ['Aleksandr Kokorin plays for .'],\n", " ['Juan Bernat plays for .'],\n", " ['Miranda plays for .'],\n", " ['Egan Bernal plays for .'],\n", " ['Camille Abily plays for .'],\n", " ['Stefan Maierhofer plays for .'],\n", " ['Matthieu Dossevi plays for .'],\n", " ['Bafétimbi Gomis plays for .'],\n", " ['Ignatas Konovalovas plays for .'],\n", " ['Karina Maruyama plays for .'],\n", " ['Adreian Payne plays for .'],\n", " ['Enzo Maresca plays for .'],\n", " ['Tomáš Vaclík plays for .'],\n", " ['Zack Steffen plays for .'],\n", " ['Ricardo Oliveira plays for .'],\n", " ['Yun Suk-young plays for .'],\n", " ['Giannelli Imbula plays for .'],\n", " ['Lorenzo Insigne plays for .'],\n", " ['Malcom plays for .'],\n", " ['Albert Bunjaku plays for .'],\n", " ['Victor Obinna plays for .'],\n", " ['William Carvalho plays for .'],\n", " ['Miguel Veloso plays for .'],\n", " ['Felipe Anderson plays for .'],\n", " ['Isaac Cuenca plays for .'],\n", " ['Luis Antonio Jiménez plays for .'],\n", " ['Curtis Davies plays for .'],\n", " ['Dan Ito plays for .'],\n", " ['Odysseas Vlachodimos plays for .'],\n", " ['Eljero Elia plays for .'],\n", " ['Renato Augusto plays for .'],\n", " ['Milan Mačvan plays for .'],\n", " ['Vivianne Miedema plays for .'],\n", " ['Fabian Schär plays for .'],\n", " ['Ashleigh Moolman-Pasio plays for .'],\n", " ['Marcus Rashford plays for .'],\n", " ['André Gomes plays for .'],\n", " ['Dominique Malonga plays for .'],\n", " ['Max Verstappen plays for .'],\n", " ['Mehdi Abeid plays for .'],\n", " ['Alanna Kennedy plays for .'],\n", " ['Ahmed Hegazi plays for .'],\n", " ['Alen Halilović plays for .'],\n", " ['Kenny Miller plays for .'],\n", " ['Dimitris Papadopoulos plays for .'],\n", " ['Adriano Correia Claro plays for .'],\n", " ['Fran Mérida plays for .'],\n", " ['Idrissa Gueye plays for .'],\n", " ['Shahid Afridi plays for .'],\n", " ['Jurica Buljat plays for .'],\n", " ['Adrianna Franch plays for .'],\n", " ['Ludovic Giuly plays for .'],\n", " ['Nastja Čeh plays for .'],\n", " ['Zé Eduardo plays for .'],\n", " ['Riccardo Montolivo plays for .'],\n", " ['Benedikt Höwedes plays for .'],\n", " ['Luka Jović plays for .'],\n", " ['José Holebas plays for .'],\n", " ['Artem Dzyuba plays for .'],\n", " ['Moussa Sow plays for .'],\n", " ['Tomáš Kalas plays for .'],\n", " ['Luis Aguiar plays for .'],\n", " ['Yossi Benayoun plays for .'],\n", " ['Nick Calathes plays for .'],\n", " ['Jorge Ribeiro plays for .'],\n", " ['Wilfried Bony plays for .'],\n", " ['Jamal Blackman plays for .'],\n", " ['Diego Alves plays for .'],\n", " ['Filip Đuričić plays for .'],\n", " ['Roy Carroll plays for .'],\n", " ['Mathieu Valbuena plays for .'],\n", " ['Danilo Cirino de Oliveira plays for .'],\n", " ['Orlando Sá plays for .'],\n", " ['Sérgio Oliveira plays for .'],\n", " ['Miloš Krasić plays for .'],\n", " ['Javad Nekounam plays for .'],\n", " ['Stina Blackstenius plays for .'],\n", " ['James Chester plays for .'],\n", " ['Alexia Putellas plays for .'],\n", " ['Gianluigi Donnarumma plays for .'],\n", " ['Zdeněk Štybar plays for .'],\n", " ['Stephen Sunday plays for .'],\n", " ['Steven Zuber plays for .'],\n", " ['Santiago Arias plays for .'],\n", " ['Aleix Vidal plays for .'],\n", " ['Jordan Pickford plays for .'],\n", " ['Jason Davidson plays for .'],\n", " ['Alfreð Finnbogason plays for .'],\n", " ['Artur Boruc plays for .'],\n", " ['Nicki Bille Nielsen plays for .'],\n", " ['Jonathas de Jesus plays for .'],\n", " ['Sebastián Coates plays for .'],\n", " ['Dimitar Makriev plays for .'],\n", " ['Nick Swisher plays for .'],\n", " ['Stefano Okaka plays for .'],\n", " ['Emerson plays for .'],\n", " ['Damiano Caruso plays for .'],\n", " ['Ifeoma Dieke plays for .'],\n", " ['Javier Pastore plays for .'],\n", " ['Christian Tiffert plays for .'],\n", " ['Dalibor Stevanovič plays for .'],\n", " ['Cenk Tosun plays for .'],\n", " ['Aya Sameshima plays for .'],\n", " ['Dries Mertens plays for .'],\n", " ['Ryan Miller plays for .'],\n", " ['Kim Jin-kyu plays for .'],\n", " ['Lena Goeßling plays for .'],\n", " ['Roberto Firmino plays for .'],\n", " ['Clément Lenglet plays for .'],\n", " ['John Paintsil plays for .'],\n", " ['Tomasz Kuszczak plays for .'],\n", " ['Richard Sukuta-Pasu plays for .'],\n", " ['Henri Anier plays for .'],\n", " ['Juan Fernando Quintero plays for .'],\n", " ['Tiago Ilori plays for .'],\n", " ['Adrián González plays for .'],\n", " ['Ivan Cavaleiro plays for .'],\n", " ['Nacer Chadli plays for .'],\n", " ['Nadia Nadim plays for .'],\n", " ['Peter Lérant plays for .'],\n", " ['Alessio Cerci plays for .'],\n", " ['Mario Gavranović plays for .'],\n", " ['Birkir Bjarnason plays for .'],\n", " ['Abdelaziz Barrada plays for .'],\n", " ['Tressor Moreno plays for .'],\n", " ['Manor Solomon plays for .'],\n", " ['André Hainault plays for .'],\n", " ['Laia Palau plays for .'],\n", " ['Alexander Milošević plays for .'],\n", " ['Yoshito Okubo plays for .'],\n", " ['Ricardo Pereira plays for .'],\n", " ['Simas Jasaitis plays for .'],\n", " ['Takashi Inui plays for .'],\n", " ['Didier Ovono plays for .'],\n", " ['Andy Delort plays for .'],\n", " ['Maynor Figueroa plays for .'],\n", " ['Trent Sainsbury plays for .'],\n", " ['Michael Hepburn plays for .'],\n", " ['Diego López Rodríguez plays for .'],\n", " ['Anthony Vanden Borre plays for .'],\n", " ['Hernán Rodrigo López plays for .'],\n", " ['Rein Taaramäe plays for .'],\n", " ['Bojan Bogdanović plays for .'],\n", " ...],\n", " 'labels': [[[\" United States women's national soccer team\"]],\n", " [[' Manchester United F.C.']],\n", " [[' Los Angeles Lakers']],\n", " [[' A.C. Milan']],\n", " [[' Brazil national football team']],\n", " [[' Independiente Santa Fe']],\n", " [[' OL Reign']],\n", " [[' West Ham United F.C.']],\n", " [[' FC Bayern Munich']],\n", " [[' Parma Calcio 1913']],\n", " [[' New York City FC']],\n", " [[' Brooklyn Nets']],\n", " [[' Górnik Zabrze']],\n", " [[' Mercedes']],\n", " [[' São José Esporte Clube']],\n", " [[' Japan Fed Cup team']],\n", " [[' Atlético Madrid']],\n", " [[' U.S. Salernitana 1919']],\n", " [[' Zhejiang Professional F.C.']],\n", " [[' Israel Start-Up Nation']],\n", " [[' Adana Demirspor']],\n", " [[' FC Barcelona Femení']],\n", " [[' FC Bayern Munich']],\n", " [[\" United States women's national soccer team\"]],\n", " [[' Hebei F.C.']],\n", " [[' Quick-Step Alpha Vinyl Team']],\n", " [[' Colombia national football team']],\n", " [[' OL Reign']],\n", " [[' Club Atlético Peñarol']],\n", " [[' Audax Italiano']],\n", " [[' NJ/NY Gotham FC']],\n", " [[' FC Rosengård']],\n", " [[' LA Galaxy']],\n", " [[' Royal Challengers Bangalore']],\n", " [[' Alpine F1 Team']],\n", " [[' Chelsea F.C.']],\n", " [[' Vissel Kobe']],\n", " [[' FK Sūduva Marijampolė']],\n", " [[' Jumbo-Visma Women']],\n", " [[' A.C. Milan']],\n", " [[' LA Galaxy']],\n", " [[' Vitória S.C.']],\n", " [[' Fenerbahçe SK']],\n", " [[' Tampa Bay Rowdies']],\n", " [[' Paris Saint-Germain F.C.']],\n", " [[' Minnesota Lynx']],\n", " [[' Chicago Fire FC']],\n", " [[' Pallacanestro Varese']],\n", " [[' Olympique Lyonnais']],\n", " [[' Unione Sportiva Sassuolo Calcio']],\n", " [[' Atlas F.C.']],\n", " [[' Chicago Bulls']],\n", " [[' Houston Rockets']],\n", " [[' AS Monaco FC']],\n", " [[' LA Galaxy']],\n", " [[' Coritiba F.C.']],\n", " [[' Real Madrid CF']],\n", " [[' Swiss national football team']],\n", " [[' Matrix Fitness']],\n", " [[' Horoya AC']],\n", " [[' Lotto–Soudal']],\n", " [[' S.C. Corinthians Paulista']],\n", " [[' Seattle Storm']],\n", " [[' Apollon Smyrna F.C.']],\n", " [[' Washington Spirit']],\n", " [[' France national association football team']],\n", " [[' Egypt national football team']],\n", " [[' Netherlands national association football team']],\n", " [[' West Ham United F.C.']],\n", " [[' Toronto FC']],\n", " [[' Los Angeles Lakers']],\n", " [[' FC Cartagena']],\n", " [[' Japan national football team']],\n", " [[' Standard Liège']],\n", " [[' FC Bayern Munich']],\n", " [[' Portland Thorns FC']],\n", " [[' France national association football team']],\n", " [[' Associação Académica de Coimbra – O.A.F.']],\n", " [[' Algeria national football team']],\n", " [[' Costa Rica national football team']],\n", " [[' Real Madrid CF']],\n", " [[' Germany national association football team']],\n", " [[' SC Freiburg']],\n", " [[' Trek–Segafredo']],\n", " [[' Paraguay national football team']],\n", " [[' Rayo OKC']],\n", " [[' Manchester United F.C.']],\n", " [[' Club de Fútbol Monterrey']],\n", " [[' Inter Miami CF']],\n", " [[' AG2R Citroën Team']],\n", " [[' Fleury Loiret HB']],\n", " [[' Work Service-Vitalcare-Dynatek']],\n", " [[' Brooklyn Nets']],\n", " [[' Scuderia Ferrari']],\n", " [[\" Norway women's national football team\"]],\n", " [[' U.C. Sampdoria']],\n", " [[' EF Education-Nippo']],\n", " [[' Aalesunds FK']],\n", " [[' Arsenal W.F.C.']],\n", " [[' Chelsea F.C.']],\n", " [[' Real Madrid CF']],\n", " [[' Galatasaray S.K.']],\n", " [[' Ferencvárosi TC']],\n", " [[' Trabzonspor']],\n", " [[' Clube Atlético Mineiro']],\n", " [[' Real Madrid Baloncesto']],\n", " [[' Trek–Segafredo']],\n", " [[' Sociedade Esportiva Palmeiras']],\n", " [[' Swansea City A.F.C.']],\n", " [[' Germany national association football team']],\n", " [[' Clube de Regatas do Flamengo']],\n", " [[' Brazil national football team']],\n", " [[' Maccabi Haifa F.C.']],\n", " [[' Paris Saint-Germain F.C.']],\n", " [[' Los Angeles Clippers']],\n", " [[' Paris Saint-Germain Féminine']],\n", " [[' Olympiacos F.C.']],\n", " [[' Inter Milan']],\n", " [[' Houston Dash']],\n", " [[' F.C. Porto']],\n", " [[' FC Barcelona']],\n", " [[' Senegal national association football team']],\n", " [[' Chicago Red Stars']],\n", " [[' Real Madrid CF']],\n", " [[' Stoke City F.C.']],\n", " [[' Olympique de Marseille']],\n", " [[' O.F.K. Beograd']],\n", " [[' Belgium national football team']],\n", " [[' Pune F.C.']],\n", " [[' ACF Fiorentina']],\n", " [[' Stabæk Fotball']],\n", " [[' Movistar Team']],\n", " [[' Cerro Porteño']],\n", " [[' Dundee United F.C.']],\n", " [[' Agrotikos Asteras F.C.']],\n", " [[' Germany national association football team']],\n", " [[' Jiangsu F.C.']],\n", " [[' SV Werder Bremen']],\n", " [[' Sevilla FC']],\n", " [[' FC Rosengård']],\n", " [[' Bristol City F.C.']],\n", " [[\" Sweden women's national association football team\"]],\n", " [[' Clube de Regatas do Flamengo']],\n", " [[' Spain national association football team']],\n", " [[' Rosenborg BK']],\n", " [[' Hokkaido Consadole Sapporo']],\n", " [[' TSG 1899 Hoffenheim']],\n", " [[' Atlético Madrid']],\n", " [[' FC Tokyo']],\n", " [[' France national association football team']],\n", " [[' Team Jumbo-Visma']],\n", " [[' NJ/NY Gotham FC']],\n", " [[' Brisbane Roar FC W-League']],\n", " [[' Real Betis Balompié']],\n", " [[' Washington Mystics']],\n", " [[' Phoenix Mercury']],\n", " [[' Yokohama FC']],\n", " [[' Real Sociedad']],\n", " [[' Borussia Dortmund']],\n", " [[' PSV Eindhoven']],\n", " [[' France national association football team']],\n", " [[' Tampa Bay Buccaneers']],\n", " [[' Aston Villa F.C.']],\n", " [[' ŁKS Goczałkowice-Zdrój']],\n", " [[' Baniyas SC']],\n", " [[' Real Madrid CF']],\n", " [[' Venezia F.C.']],\n", " [[' Atlético Madrid']],\n", " [[' Belgium national football team']],\n", " [[' Norway national association football team']],\n", " [[' Inter Milan']],\n", " [[\" United States men's national soccer team\"]],\n", " [[' Real Madrid CF']],\n", " [[' Shanghai Shenhua F.C.']],\n", " [[' SV Werder Bremen']],\n", " [[' Tottenham Hotspur F.C.']],\n", " [[' OGC Nice']],\n", " [[' A.S. Roma']],\n", " [[' Deportivo de La Coruña']],\n", " [[' Toronto Raptors']],\n", " [[' Hamburger SV']],\n", " [[' Belgium national football team']],\n", " [[' FC Ryukyu']],\n", " [[' Málaga CF']],\n", " [[' San Antonio Spurs']],\n", " [[' Paris Saint-Germain F.C.']],\n", " [[' New York Knicks']],\n", " [[' Cleveland Cavaliers']],\n", " [[' F.C. Copenhagen']],\n", " [[' Club Atlético River Plate']],\n", " [[' Real Betis Balompié']],\n", " [[' Portland Thorns FC']],\n", " [[' FC Bayern Munich']],\n", " [[' France national association football team']],\n", " [[' Club Atlético Peñarol']],\n", " [[' Dalian Professional F.C.']],\n", " [[' Italy national association football team']],\n", " [[' Senegal national association football team']],\n", " [[' France national association football team']],\n", " [[' Lotto–Soudal']],\n", " [[' Everton F.C.']],\n", " [[' Denmark national association football team']],\n", " [[' Fenerbahçe SK']],\n", " [[' Galatasaray S.K.']],\n", " [[' Atlanta United FC']],\n", " [[' Swansea City A.F.C.']],\n", " [[' Spain national association football team']],\n", " [[' Cameroon national football team']],\n", " [[' Levante UD']],\n", " [[' FC Rosengård']],\n", " [[' Galatasaray S.K.']],\n", " [[' Italy national association football team']],\n", " [[' Morocco national football team']],\n", " [[' Accra Great Olympics F.C.']],\n", " [[' West Bromwich Albion F.C.']],\n", " [[' Netherlands national association football team']],\n", " [[' DR Congo national football team']],\n", " [[' Brazil national football team']],\n", " [[' FC Seoul']],\n", " [[' FC Bayern Munich']],\n", " [[' New Zealand national rugby union team']],\n", " [[\" United States women's national soccer team\"]],\n", " [[' Chelsea F.C.']],\n", " [[' Santos F.C.']],\n", " [[' Shanghai Port F.C.']],\n", " [[' Sevilla FC']],\n", " [[' Morocco national football team']],\n", " [[' Sweden national association football team']],\n", " [[' Hertha BSC']],\n", " [[' Manchester City W.F.C.']],\n", " [[' Portugal national association football team']],\n", " [[' TuS Haltern']],\n", " [[' Baniyas SC']],\n", " [[' 1. FFC Frankfurt']],\n", " [[' S.S. Lazio']],\n", " [[' FC Koper']],\n", " [[' Wadi Degla SC']],\n", " [[' S.C. Braga']],\n", " [[' S.P. Tre Penne']],\n", " [[' ACF Fiorentina']],\n", " [[' Real Betis Balompié']],\n", " [[' Brisbane Roar FC']],\n", " [[' Storey Racing']],\n", " [[' Arkéa–Samsic']],\n", " [[' Germany national association football team']],\n", " [[' Genoa CFC']],\n", " [[' FC Metz']],\n", " [[' Los Angeles Sparks']],\n", " [[' Villarreal CF']],\n", " [[' Liga Deportiva Alajuelense']],\n", " [[' Club Universidad Nacional']],\n", " [[' Al Shabab FC']],\n", " [[' Sevilla FC']],\n", " [[' Chelsea F.C.']],\n", " [[' Olimpia Milano']],\n", " [[' Netherlands national association football team']],\n", " [[' Chile national football team']],\n", " [[' Croatia national association football team']],\n", " [[' Ineos Grenadiers']],\n", " [[' Tigres UANL']],\n", " [[' KFUM-Kameratene Oslo']],\n", " [[' Western New York Flash']],\n", " [[' Netherlands national association football team']],\n", " [[' KK Cedevita Olimpija']],\n", " [[' Melbourne Victory']],\n", " [[\" Fenerbahçe Men's Basketball\"]],\n", " [[' Manchester City W.F.C.']],\n", " [[' Sunderland A.F.C.']],\n", " [[' Belgium national football team']],\n", " [[' São Paulo FC']],\n", " [[' UAE Team Emirates']],\n", " [[' Australia Billie Jean King Cup team']],\n", " [[' Atlético Junior']],\n", " [[' Brazil national football team']],\n", " [[' Chicago Red Stars']],\n", " [[' Club Nacional de Football']],\n", " [[' Mexico national football team']],\n", " [[' TotalEnergies']],\n", " [[' Wolverhampton Wanderers F.C.']],\n", " [[' Germany national association football team']],\n", " [[' Bologna F.C. 1909']],\n", " [[' US Orléans']],\n", " [[' Deportivo Saprissa']],\n", " [[' Unión La Cagaera']],\n", " [[' Spain national association football team']],\n", " [[' Perth Glory FC']],\n", " [[' Olympiacos F.C.']],\n", " [[' C.S. Cartaginés']],\n", " [[' Juventus F.C.']],\n", " [[' Belgium national football team']],\n", " [[' Kayserispor']],\n", " [[' Portugal national association football team']],\n", " [[' UAE Team Emirates']],\n", " [[' Italy national association football team']],\n", " [[' Denmark national association football team']],\n", " [[' Swiss national football team']],\n", " [[' Valencia BC']],\n", " [[' Poland national association football team']],\n", " [[' McLaren']],\n", " [[' Borussia Dortmund']],\n", " [[' Cleveland Cavaliers']],\n", " [[' Hebei F.C.']],\n", " [[' Club Atlético Talleres']],\n", " [[' Toulon Saint-Cyr Var Handball']],\n", " [[' Portland Trail Blazers']],\n", " [[' Ineos Grenadiers']],\n", " [[' Ivory Coast national football team']],\n", " [[' Inter Milan']],\n", " [[' Yokohama FC']],\n", " [[' Fenerbahçe SK']],\n", " [[' Real Madrid CF']],\n", " [[' Peru national football team']],\n", " [[' Portugal national association football team']],\n", " [[' France national association football team']],\n", " [[' Beşiktaş J.K.']],\n", " [[' Swiss national football team']],\n", " [[' Sydney FC']],\n", " [[' Burnley F.C.']],\n", " [[' CCC Team']],\n", " [[' Club Deportivo Universidad Católica']],\n", " [[' Everton F.C.']],\n", " [[' Trabzonspor']],\n", " [[' West Ham United F.C.']],\n", " [[' Bristol Rovers F.C.']],\n", " [[' Fenerbahçe SK']],\n", " [[' Chelsea F.C. Women']],\n", " [[' Los Angeles Lakers']],\n", " [[' G.S. Iraklis Thessaloniki']],\n", " [[' NJ/NY Gotham FC']],\n", " [[' CR Vasco da Gama']],\n", " [[' S.L. Benfica']],\n", " [[' Spain national association football team']],\n", " [[' S.L. Benfica']],\n", " [[' Brazil national football team']],\n", " [[' FC Barcelona Femení']],\n", " [[' Team Jumbo-Visma']],\n", " [[' France national association football team']],\n", " [[' Guangzhou City F.C.']],\n", " [[' VfL Wolfsburg Women']],\n", " [[' Wuhan F.C.']],\n", " [[' Genoa CFC']],\n", " [[' Western New York Flash']],\n", " [[' Okinawa SV']],\n", " [[' C.D. Guadalajara']],\n", " [[' Hebei F.C.']],\n", " [[' Spain national association football team']],\n", " [[' FC Voluntari']],\n", " [[' SV Werder Bremen']],\n", " [[' England national association football team']],\n", " [[' France national association football team']],\n", " [[' Guinea-Bissau national football team']],\n", " [[' N.E.C.']],\n", " [[' Boavista F.C.']],\n", " [[' Mexico national football team']],\n", " [[' Czech Republic national beach soccer team']],\n", " [[' FC Yenisey Krasnoyarsk']],\n", " [[' Real Madrid CF']],\n", " [[' Quick-Step Alpha Vinyl Team']],\n", " [[' Costa Rica national football team']],\n", " [[\" Canada men's national soccer team\"]],\n", " [[' Poland national association football team']],\n", " [[' Russia national football team']],\n", " [[' Chile national football team']],\n", " [[' Real Madrid CF']],\n", " [[' Club Rubio Ñu']],\n", " [[' Senegal national association football team']],\n", " [[' Juventus F.C.']],\n", " [[' Roland Cogeas Edelweiss Squad']],\n", " [[' Salford City F.C.']],\n", " [[' Brooklyn Nets']],\n", " [[' Chicago Bulls']],\n", " [[' Kawasaki Frontale']],\n", " [[' KIF Örebro DFF']],\n", " [[' Israel Start-Up Nation']],\n", " [[' Estonia national football team']],\n", " [[' Germany national association football team']],\n", " [[' Rayo Vallecano']],\n", " [[' Bohemians 1905']],\n", " [[' FK AS Trenčín']],\n", " [[' UAE Team Emirates']],\n", " [[' Real Sociedad']],\n", " [[' Antalyaspor']],\n", " [[' LA Galaxy']],\n", " [[' E.C. Vitória']],\n", " [[' Waasland-Beveren']],\n", " [[' Club Atlético River Plate']],\n", " [[' Boavista F.C.']],\n", " [[' Spain national association football team']],\n", " [[' Paris Saint-Germain F.C.']],\n", " [[' France national association football team']],\n", " [[' Manchester City F.C.']],\n", " [[' Team Jumbo-Visma']],\n", " [[' FC Bayern Munich']],\n", " [[' Quick-Step Alpha Vinyl Team']],\n", " [[' Portugal national association football team']],\n", " [[' Atlanta Hawks']],\n", " [[' Maccabi Haifa F.C.']],\n", " [[' Germany national association football team']],\n", " [[' Southampton F.C.']],\n", " [[' S.C. Internacional']],\n", " [[' Germany national association football team']],\n", " [[' Swiss national football team']],\n", " [[' Portugal national association football team']],\n", " [[' Juventus F.C.']],\n", " [[' 1. FC Nürnberg']],\n", " [[' Brazil national football team']],\n", " [[' FC Augsburg']],\n", " [[' Manchester City F.C.']],\n", " [[\" United States women's national soccer team\"]],\n", " [[' Al-Duhail SC']],\n", " [[' Juventus F.C.']],\n", " [[' Celtic F.C.']],\n", " [[' Spain national association football team']],\n", " [[' Milwaukee Bucks']],\n", " [[' Melbourne Victory']],\n", " [[' S.C. Corinthians Paulista']],\n", " [[' Shanghai Shenhua F.C.']],\n", " [[' Sektzia Nes Tziona F.C.']],\n", " [[' Seinäjoen Jalkapallokerho']],\n", " [[' Olympique Lyonnais']],\n", " [[' Orlando Pride']],\n", " [[' Leeds United F.C.']],\n", " [[' FC Sion']],\n", " [[' Orlando City SC']],\n", " [[' FC Seoul']],\n", " [[' Tiburones Rojos de Veracruz']],\n", " [[' C.D. Guadalajara']],\n", " [[' Gwangju FC']],\n", " [[' Angers SCO']],\n", " [[' Netherlands national association football team']],\n", " [[' Chelsea F.C. Women']],\n", " [[' Cagliari Calcio']],\n", " [[' POFC Botev Vratsa']],\n", " [[' Pirata F.C']],\n", " [[' Leicester City F.C.']],\n", " [[' FC Zenit Saint Petersburg']],\n", " [[' Seattle Sounders FC']],\n", " [[' Mexico national football team']],\n", " [[' Houston Dash']],\n", " [[' Galatasaray S.K.']],\n", " [[' Mumbai City FC']],\n", " [[' Élan Chalon']],\n", " [[' Atlético Sanluqueño CF']],\n", " [[' Manchester United W.F.C.']],\n", " [[' AFC Eskilstuna']],\n", " [[' Argentina national football team']],\n", " [[' Algeria national football team']],\n", " [[' Nigeria national football team']],\n", " [[' Nogoom FC']],\n", " [[' Hertha BSC']],\n", " [[' Shandong Taishan F.C.']],\n", " [[' FC Barcelona']],\n", " [[' Italy national association football team']],\n", " [[' Ivory Coast national football team']],\n", " [[\" Colo-Colo women's\"]],\n", " [[' Chicago Red Stars']],\n", " [[' A.S. Roma']],\n", " [[' Seoul E-Land FC']],\n", " [[' Germany national association football team']],\n", " [[' Germany national association football team']],\n", " [[' Charlotte Hornets']],\n", " [[' VfB Stuttgart']],\n", " [[' Brazil national football team']],\n", " [[' Liga Deportiva Alajuelense']],\n", " [[' Arsenal W.F.C.']],\n", " [[' Sweden national association football team']],\n", " [[' Mexico national football team']],\n", " [[' Italy national association football team']],\n", " [[' Spain national association football team']],\n", " [[' UAE Team Emirates']],\n", " [[' FC Rukh Lviv']],\n", " [[' Olympique de Marseille']],\n", " [[' South Korea national football team']],\n", " [[' Fluminense F.C.']],\n", " [[' Belgium national football team']],\n", " [[' Japan national football team']],\n", " [[' Nigeria national football team']],\n", " [[' TWENTY20 p/b Sho-Air']],\n", " [[' Sociedade Esportiva Palmeiras']],\n", " [[' Szombathelyi Haladás']],\n", " [[' Seattle Sounders FC']],\n", " [[' Deportivo Toluca F.C.']],\n", " [[' PSV Eindhoven']],\n", " [[' VfB Stuttgart II']],\n", " [[' Russia national football team']],\n", " [[' Helsingin Jalkapalloklubi']],\n", " [[' BC Rytas']],\n", " [[' A.S. Roma']],\n", " [[' Utah Jazz']],\n", " [[' Spain national association football team']],\n", " [[\" Germany women's national football team\"]],\n", " [[' FC Barcelona Bàsquet']],\n", " [[' Algeria national football team']],\n", " [[' Rio Ave F.C.']],\n", " [[' Manchester City F.C.']],\n", " [[' Swiss national football team']],\n", " [[' Iran national football team']],\n", " [[' FC Minaj']],\n", " [[' Eintracht Frankfurt']],\n", " [[' Nigeria national football team']],\n", " [[' ACF Fiorentina']],\n", " [[' Newcastle United F.C.']],\n", " [[' Legia Warsaw']],\n", " [[' Venezuela national football team']],\n", " [[' France national association football team']],\n", " [[' Argentina national football team']],\n", " [[' C.F. Os Belenenses']],\n", " [[' Japan national football team']],\n", " [[' Central African Republic national football team']],\n", " [[' Germany national association football team']],\n", " [[' NK Olimpija Ljubljana']],\n", " [[' Swiss national football team']],\n", " [[' Mexico national football team']],\n", " [[' Las Vegas Aces']],\n", " [[' Norwich City F.C.']],\n", " [[' Santa Cruz Futebol Clube']],\n", " [[' Ceratizit–WNT Pro Cycling']],\n", " [[' FC Zenit Saint Petersburg']],\n", " [[' TotalEnergies']],\n", " [[' Oeste Futebol Clube']],\n", " [[\" United States men's national soccer team\"]],\n", " [[' S.S.C. Napoli']],\n", " [[' Norway national association football team']],\n", " [[' Legia Warsaw']],\n", " [[' Brazil national football team']],\n", " [[' North Macedonia national football team']],\n", " [[' Zhejiang Professional F.C.']],\n", " [[' Balıkesirspor']],\n", " [[' Talaba SC']],\n", " [[' Ghana national football team']],\n", " [[' Kayserispor']],\n", " [[' FC Ingolstadt 04']],\n", " [[' Sweden national association football team']],\n", " [[' Helsingin Jalkapalloklubi']],\n", " [[' Sydney FC']],\n", " [[' Philippines national football team']],\n", " [[' Olympiacos F.C.']],\n", " [[' Chelsea F.C. Women']],\n", " [[' S.S.C. Napoli']],\n", " [[' Al-Faisaly FC']],\n", " [[' Cruz Azul']],\n", " [[' Al-Raed FC']],\n", " [[' Olympique Lyonnais']],\n", " [[' Iran national football team']],\n", " [[' Orlando Pride']],\n", " [[' Porsche']],\n", " [[' Denmark national association football team']],\n", " [[' Club Social y Deportivo Colo Colo']],\n", " [[' England national association football team']],\n", " [[' South Korea national football team']],\n", " [[' Brest Bretagne Handball']],\n", " [[' Swiss national football team']],\n", " [[' Chelsea F.C. Women']],\n", " [[' Dallas Mavericks']],\n", " [[' France national association football team']],\n", " [[' UnitedHealthcare']],\n", " [[' Spain national association football team']],\n", " [[' Linköpings FC']],\n", " [[' Nigeria national football team']],\n", " [[' Liverpool F.C.']],\n", " [[' Team BikeExchange Jayco']],\n", " [[' France national association football team']],\n", " [[' São Tomé and Príncipe national football team']],\n", " [[' Portugal national association football team']],\n", " [[' Australia national association football team']],\n", " [[' Shimizu S-Pulse']],\n", " [[' Denmark national association football team']],\n", " [[' Belgium national football team']],\n", " [[' APOEL F.C.']],\n", " [[\" Japan women's national football team\"]],\n", " [[\" Canada women's national soccer team\"]],\n", " [[' OL Reign']],\n", " [[' Denmark national association football team']],\n", " [[' Germany national association football team']],\n", " [[' Brazil national football team']],\n", " [[' Montpellier Hérault Sport Club']],\n", " [[' Atlético Madrid']],\n", " [[' Norway national association football team']],\n", " [[' FC Shakhtar Donetsk']],\n", " [[' Southampton F.C.']],\n", " [[' Olympique Lyonnais']],\n", " [[' FC Lausanne-Sport']],\n", " [[' Club Social y Deportivo Colo Colo']],\n", " [[' Coquimbo Unido']],\n", " [[' Unión Magdalena']],\n", " [[' Anorthosis Famagusta FC']],\n", " [[' Al Ittihad FC']],\n", " [[' Aris Thessaloniki F.C.']],\n", " [[' Cagliari Calcio']],\n", " [[' FC Pune City']],\n", " [[' Atlas F.C.']],\n", " [[' Australia national association football team']],\n", " [[' Morocco national football team']],\n", " [[' Arsenal W.F.C.']],\n", " [[' FC Barcelona']],\n", " [[' San Martín de Tucumán']],\n", " [[' Senegal national association football team']],\n", " [[' Germany national association football team']],\n", " [[' FC Kaisar']],\n", " [[' Portugal national association football team']],\n", " [[' NorthEast United FC']],\n", " [[' AFC Ajax Vrouwen']],\n", " [[' 1. FC Union Berlin']],\n", " [[' Belgium national football team']],\n", " [[' Stoke City F.C.']],\n", " [[' FC Twente']],\n", " [[' Finland national football team']],\n", " [[' Cameroon national football team']],\n", " [[' ŠK Slovan Bratislava']],\n", " [[' Orléans Loiret Basket']],\n", " [[' Algeria national football team']],\n", " [[' Miami Heat']],\n", " [[' AEK Athens B.C.']],\n", " [[' Charlton Athletic F.C.']],\n", " [[' Poland national association football team']],\n", " [[' Brazil national football team']],\n", " [[' Spain national association football team']],\n", " [[' Olympique Lyonnais']],\n", " [[' Alianza Lima']],\n", " [[' FC Barcelona']],\n", " [[' Manchester United F.C.']],\n", " [[' Mexico national football team']],\n", " [[' Romania national association football team']],\n", " [[\" Australia women's national soccer team\"]],\n", " [[' Real Madrid Baloncesto']],\n", " [[' FC Ingolstadt 04']],\n", " [[' Philadelphia Union']],\n", " [[' Movistar Team']],\n", " [[' FK Vardar']],\n", " [[' New England Revolution']],\n", " [[' UD Vilafranquense']],\n", " [[' Associação Ferroviária de Esportes']],\n", " [[' D.C. United']],\n", " [[' FC Sion']],\n", " [[' Brazil national football team']],\n", " [[' FC Dinamo Moscow']],\n", " [[' KK Crvena Zvezda']],\n", " [[' Germany national association football team']],\n", " [[' Uruguay national football team']],\n", " [[' Crystal Palace F.C.']],\n", " [[' PSV Eindhoven']],\n", " [[' Croatia national association football team']],\n", " [[' Inter Milan']],\n", " [[' Cairns Taipans']],\n", " [[' Paris FC']],\n", " [[' Spain national association football team']],\n", " [[' Voltigeurs de Châteaubriant']],\n", " [[' TSG 1899 Hoffenheim']],\n", " [[' Algeria national football team']],\n", " [[' North Carolina FC']],\n", " [[' Real Madrid CF']],\n", " [[' Los Angeles FC']],\n", " [[' Ionikos F.C.']],\n", " [[' Club Tijuana']],\n", " [[' Ottawa Fury FC']],\n", " [[' Kazakhstan national football team']],\n", " [[' FC Rostov']],\n", " [[' Germany national association football team']],\n", " [[' South Korea national football team']],\n", " [[' Turkey national association football team']],\n", " [[' PFC CSKA Moscow']],\n", " [[' Villarreal CF']],\n", " [[' FC Anzhi Makhachkala']],\n", " [[' Real Madrid Castilla']],\n", " [[' South Korea national football team']],\n", " [[' CF Pachuca']],\n", " [[' Örebro SK']],\n", " [[' Venezuela national football team']],\n", " [[' Republic of Ireland national association football team']],\n", " [[' Vicenza Calcio']],\n", " [[' FK Budućnost Podgorica']],\n", " [[' FC Voluntari']],\n", " [[\" United States women's national soccer team\"]],\n", " [[' Iceland national association football team']],\n", " [[' Norway national association football team']],\n", " [[' CF Montréal']],\n", " [[' Sunderland A.F.C.']],\n", " [[' New Zealand national football team']],\n", " [[' Olympique Lyonnais Féminin']],\n", " [[' Urawa Red Diamonds']],\n", " [[' Rayo Vallecano']],\n", " [[' Scotland national football team']],\n", " [[' Clube Atlético Taboão da Serra']],\n", " [[' Golden State Warriors']],\n", " [[' LKS Nieciecza']],\n", " [[' Ferrari Grand Prix results']],\n", " [[\" Brazil women's national football team\"]],\n", " [[' Valencia CF']],\n", " [[' West Ham United F.C.']],\n", " [[' Trabzonspor']],\n", " [[' 1. FC Union Berlin']],\n", " [[' Paris Saint-Germain F.C.']],\n", " [[' Liaoning Whowin F.C.']],\n", " [[' Mali national football team']],\n", " [[' Enosis Neon Paralimni FC']],\n", " [[' Costa Rica national football team']],\n", " [[' Trek–Segafredo']],\n", " [[' Villarreal CF']],\n", " [[' Washington Spirit']],\n", " [[' Liverpool F.C.']],\n", " [[' Senegal national association football team']],\n", " [[' KAA Gent']],\n", " [[' Gimnàstic de Tarragona']],\n", " [[' CF Montréal']],\n", " [[' Auckland City FC']],\n", " [[' Algeria national football team']],\n", " [[' Spain national association football team']],\n", " [[' France national association football team']],\n", " [[' Manchester United F.C.']],\n", " [[' Santos FC']],\n", " [[' Al-Shahaniya Sports Club']],\n", " [[' Chelsea F.C.']],\n", " [[' Toronto Blue Jays']],\n", " [[' Sanfrecce Hiroshima Regina']],\n", " [[' Leicester City F.C.']],\n", " [[' JLT Condor']],\n", " [[' Goa ISL team']],\n", " [[' Netherlands national association football team']],\n", " [[' Argentinos Juniors']],\n", " [[' Çaykur Rizespor']],\n", " [[' SGS Essen']],\n", " [[' Sweden national association football team']],\n", " [[' Olympique Lyonnais']],\n", " [[' Costa Rica national football team']],\n", " [[' Jamaica national association football team']],\n", " [[' Crystal Palace F.C.']],\n", " [[' Olympique Lyonnais Féminin']],\n", " [[' P.A.O.K. Thessaloniki F.C.']],\n", " [[' New York Red Bulls']],\n", " [[' Algeria national football team']],\n", " [[' A.S. Roma']],\n", " [[' FK Shkëndija']],\n", " [[' FC Bayern Munich Women']],\n", " [[' Sport Club do Recife']],\n", " [[' CJM Bourges Basket']],\n", " [[' Clube de Regatas do Flamengo']],\n", " [[' Turkey national association football team']],\n", " [[' Brazil national football team']],\n", " [[' Turkey national association football team']],\n", " [[' Lille OSC']],\n", " [[' Cangrejeros de Santurce']],\n", " [[' Spain national association football team']],\n", " [[\" Norway women's national handball team\"]],\n", " [[' PK-35 Vantaa']],\n", " [[' Manchester City F.C.']],\n", " [[' Republic of Ireland national association football team']],\n", " [[' Philadelphia 76ers']],\n", " [[' América Futebol Clube (MG)']],\n", " [[' St. Louis Cardinals']],\n", " [[' Baltimore Orioles']],\n", " [[' Russia national football team']],\n", " [[' Dallas Mavericks']],\n", " [[' Juventud de Las Piedras']],\n", " [[\" Canada women's national soccer team\"]],\n", " [[' FC Dinamo Moscow']],\n", " [[' Genoa CFC']],\n", " [[' FC Basel']],\n", " [[\" Monts d'Or Azergues Foot\"]],\n", " [[' Maccabi Haifa F.C.']],\n", " [[' France national association football team']],\n", " [[' Aris Limassol F.C.']],\n", " [[' Trek–Segafredo']],\n", " [[' Unión Deportiva Almería']],\n", " [[' Beijing Guoan F.C.']],\n", " [[' Philadelphia 76ers']],\n", " [[' Legia Warsaw']],\n", " [[' Wealdstone F.C.']],\n", " [[' NorthEast United FC']],\n", " [[' PAS Giannina F.C.']],\n", " [[' New Zealand national football team']],\n", " [[' S.C. Braga']],\n", " [[' Sweden national association football team']],\n", " [[' Águilas CF']],\n", " [[' Hellas Verona F.C.']],\n", " [[' K.S.C. Lokeren Oost-Vlaanderen']],\n", " [[' Burgos CF']],\n", " [[\" United States men's national soccer team\"]],\n", " [[' Scotland national football team']],\n", " [[' Portugal national association football team']],\n", " [[' Club Atlético Colón']],\n", " [[' Slovenia national football team']],\n", " [[' Middlesbrough F.C.']],\n", " [[' Olympique de Marseille']],\n", " [[' S.S.C. Napoli']],\n", " [[' S.L. Benfica']],\n", " [[' Gabon national football team']],\n", " [[' FK Kauno Žalgiris']],\n", " [[' Chelsea F.C.']],\n", " [[' Stade Rennais F.C.']],\n", " [[' Club Africain']],\n", " [[' South Korea national football team']],\n", " [[' Hamburger SV']],\n", " [[' Guizhou F.C.']],\n", " [[' FC Slovan Liberec']],\n", " [[' Peru national football team']],\n", " [[' Ukraine national association football team']],\n", " [[' Argentina national football team']],\n", " [[' FBC Melgar']],\n", " [[' Maccabi Haifa F.C.']],\n", " [[' Al-Faisaly SC']],\n", " [[' Närpes Kraft Fotbollsförening']],\n", " [[' Golden State Warriors']],\n", " [[' Fulham F.C.']],\n", " [[' EF Education-Nippo']],\n", " [[' FC Rukh Lviv']],\n", " [[' Western New York Flash']],\n", " [[' Bahrain Victorious']],\n", " [[' Belgium national football team']],\n", " [[' Germany national association football team']],\n", " [[' Team BikeExchange Jayco']],\n", " [[' FC Augsburg']],\n", " [[' Clube de Regatas do Flamengo']],\n", " [[' Kardemir Karabükspor']],\n", " [[\" France women's national handball team\"]],\n", " [[' West Ham United F.C.']],\n", " [[' Stade Rennais F.C.']],\n", " [[' Liverpool F.C.']],\n", " [[' Algeria national football team']],\n", " [[\" Canada men's national soccer team\"]],\n", " [[' Montpellier Hérault Sport Club']],\n", " [[' FC Pune City']],\n", " [[' Red Star F.C.']],\n", " [[' Al-Gharafa Sports Club']],\n", " [[' SC East Bengal']],\n", " [[\" United States men's national soccer team\"]],\n", " [[' Chelsea F.C.']],\n", " [[' Algeria national football team']],\n", " [[' Australia national association football team']],\n", " [[' FC VPK-Ahro Shevchenkivka']],\n", " [[' Virtus Pallacanestro Bologna']],\n", " [[' Arsenal F.C.']],\n", " [[' Seattle Sounders FC']],\n", " [[' Nigeria national football team']],\n", " [[' Bosnia and Herzegovina national football team']],\n", " [[' Portugal national association football team']],\n", " [[' Germany national association football team']],\n", " [[' Southampton F.C.']],\n", " [[' Deportivo Saprissa']],\n", " [[' Saba Qom F.C.']],\n", " [[' Club Atlético Osasuna']],\n", " [[' Arsenal F.C.']],\n", " [[' Spain national association football team']],\n", " [[' Liverpool F.C.']],\n", " [[' FC Krasnodar']],\n", " [[' Club Atlético Platense']],\n", " [[' Everton F.C.']],\n", " [[' Thespakusatsu Gunma']],\n", " [[' Villarreal CF']],\n", " [[' Real Betis Balompié']],\n", " [[' Chelsea F.C.']],\n", " [[' Malmö FF']],\n", " [[' Bosnia and Herzegovina national football team']],\n", " [[' Independiente Santa Fe']],\n", " [[' West Bromwich Albion F.C.']],\n", " [[' Preston North End F.C.']],\n", " [[' England national association football team']],\n", " [[' Swiss national football team']],\n", " [[' ACF Fiorentina']],\n", " [[' Spain national association football team']],\n", " [[' São Paulo FC']],\n", " [[' Ineos Grenadiers']],\n", " [[' Olympique Lyonnais Féminin']],\n", " [[' FK AS Trenčín']],\n", " [[' Togo national football team']],\n", " [[' Al-Hilal SFC']],\n", " [[' Groupama-FDJ']],\n", " [[' Speranza Osaka-Takatsuki']],\n", " [[' ASVEL Basket']],\n", " [[' Palermo FC']],\n", " [[' Czech Republic national association football team']],\n", " [[\" United States men's national soccer team\"]],\n", " [[' Santos F.C.']],\n", " [[' South Korea national football team']],\n", " [[' Stoke City F.C.']],\n", " [[' Italy national association football team']],\n", " [[' FC Zenit Saint Petersburg']],\n", " [[' FC Viktoria Köln']],\n", " [[' MSV Duisburg']],\n", " [[' Portugal national association football team']],\n", " [[' Hellas Verona F.C.']],\n", " [[' Brazil national football team']],\n", " [[\" Hapoel Be'er Sheva F.C.\"]],\n", " [[' Al Nasr SC']],\n", " [[' Hull City A.F.C.']],\n", " [[' Thimpu FC']],\n", " [[' Panathinaikos F.C.']],\n", " [[' Feyenoord']],\n", " [[' Brazil national football team']],\n", " [[' Olimpia Milano']],\n", " [[' Arsenal W.F.C.']],\n", " [[' Swiss national football team']],\n", " [[' SD Worx']],\n", " [[' England national association football team']],\n", " [[' Everton F.C.']],\n", " [[' Congo national football team']],\n", " [[' Red Bull Racing']],\n", " [[' Algeria national football team']],\n", " [[\" Australia women's national soccer team\"]],\n", " [[' Egypt national football team']],\n", " [[' Croatia national association football team']],\n", " [[' Rangers F.C.']],\n", " [[' Atromitos F.C.']],\n", " [[' Club Athletico Paranaense']],\n", " [[' RCD Espanyol de Barcelona']],\n", " [[' Senegal national association football team']],\n", " [[' Melbourne Renegades']],\n", " [[' HNK Zadar']],\n", " [[' Portland Thorns FC']],\n", " [[\" Monts d'Or Azergues Foot\"]],\n", " [[' NŠ Drava Ptuj']],\n", " [[' Al-Shaab CSC']],\n", " [[' A.C. Milan']],\n", " [[' Germany national association football team']],\n", " [[' Real Madrid CF']],\n", " [[' Greece national association football team']],\n", " [[' Russia national football team']],\n", " [[' Shabab Al Ahli Club']],\n", " [[' Czech Republic national association football team']],\n", " [[' Club Atlético Peñarol']],\n", " [[' Maccabi Haifa F.C.']],\n", " [[' FC Barcelona Bàsquet']],\n", " [[' Atlético Clube de Portugal']],\n", " [[' Ivory Coast national football team']],\n", " [[' Chelsea F.C.']],\n", " [[' Brazil national football team']],\n", " [[' Serbia national football team']],\n", " [[' Notts County F.C.']],\n", " [[' Olympiacos F.C.']],\n", " [[' Buriram United F.C.']],\n", " [[' Maccabi Tel Aviv F.C.']],\n", " [[' F.C. Porto']],\n", " [[' Lechia Gdańsk']],\n", " [[' Al-Arabi SC']],\n", " [[' Linköpings FC']],\n", " [[' Wales national association football team']],\n", " [[' FC Barcelona Femení']],\n", " [[' Italy national association football team']],\n", " [[' Quick-Step Alpha Vinyl Team']],\n", " [[' Real Salt Lake']],\n", " [[' TSG 1899 Hoffenheim']],\n", " [[' Colombia national football team']],\n", " [[' Spain national association football team']],\n", " [[' England national association football team']],\n", " [[' Australia national association football team']],\n", " [[' Iceland national association football team']],\n", " [[' AFC Bournemouth']],\n", " [[' Panionios F.C.']],\n", " [[' Real Sociedad']],\n", " [[' Uruguay national football team']],\n", " [[' Nea Salamis Famagusta FC']],\n", " [[' Atlanta Braves']],\n", " [[' Italy national association football team']],\n", " [[' S.L. Benfica']],\n", " [[' Bahrain Victorious']],\n", " [[' Vittsjö GIK']],\n", " [[' Argentina national football team']],\n", " [[' FC Erzgebirge Aue']],\n", " [[' FC Mordovia Saransk']],\n", " [[' Turkey national association football team']],\n", " [[' INAC Kobe Leonessa']],\n", " [[' Belgium national football team']],\n", " [[' Vancouver Canucks']],\n", " [[' Muangthong United F.C.']],\n", " [[' VfL Wolfsburg Women']],\n", " [[' Brazil national football team']],\n", " [[' FC Barcelona']],\n", " [[' Maritzburg United F.C.']],\n", " [[' Birmingham City F.C.']],\n", " [[' SV Sandhausen']],\n", " [[' Estonia national football team']],\n", " [[' Colombia national football team']],\n", " [[' Liverpool F.C.']],\n", " [[' New York Mets']],\n", " [[' Portugal national association football team']],\n", " [[' Belgium national football team']],\n", " [[' Portland Thorns FC']],\n", " [[' MŠK - Thermál Veľký Meder']],\n", " [[' Genoa CFC']],\n", " [[' Swiss national football team']],\n", " [[' Iceland national association football team']],\n", " [[' Morocco national football team']],\n", " [[' Club Celaya']],\n", " [[' Israel national football team']],\n", " [[' 1. FC Magdeburg']],\n", " [[' Uni Girona CB']],\n", " [[' Sweden national association football team']],\n", " [[' Júbilo Iwata']],\n", " [[' Portugal national association football team']],\n", " [[' BC Dzūkija']],\n", " [[' Cerezo Osaka']],\n", " [[' FCSR Haguenau']],\n", " [[' Algeria national football team']],\n", " [[' FC Dallas']],\n", " [[' Australia national association football team']],\n", " [[' Team BikeExchange Jayco']],\n", " [[' A.C. Milan']],\n", " [[' R.S.C. Anderlecht']],\n", " [[' Club Guaraní']],\n", " [[' Intermarché–Wanty–Gobert Matériaux']],\n", " [[' Utah Jazz']],\n", " ...],\n", " 'labels_ids': [[[315, 532, 390, 18, 632, 4191, 165]],\n", " [[2361, 315, 274, 4, 347, 4]],\n", " [[1287, 1422, 6772]],\n", " [[83, 4, 347, 4, 7338]],\n", " [[2910, 632, 1037, 165]],\n", " [[4619, 26769, 4843, 242, 2005, 6945]],\n", " [[19763, 16872]],\n", " [[580, 3600, 315, 274, 4, 347, 4]],\n", " [[5429, 10402, 10489]],\n", " [[221, 15277, 2912, 438, 1020, 38220]],\n", " [[188, 469, 412, 5429]],\n", " [[6314, 16421]],\n", " [[272, 1479, 338, 8256, 525, 873, 338, 2158]],\n", " [[7016]],\n", " [[208, 4214, 23087, 7065, 3427, 242, 2893, 13345]],\n", " [[1429, 2337, 968, 165]],\n", " [[29018, 10221, 2684, 3622]],\n", " [[121, 4, 104, 4, 2575, 3281, 405, 1113, 35284]],\n", " [[525, 700, 20852, 12221, 274, 4, 347, 4]],\n", " [[1870, 2776, 12, 10926, 5857]],\n", " [[1614, 1113, 5245, 21098, 12150]],\n", " [[5429, 4612, 274, 15035, 1977]],\n", " [[5429, 10402, 10489]],\n", " [[315, 532, 390, 18, 632, 4191, 165]],\n", " [[91, 1610, 118, 274, 4, 347, 4]],\n", " [[13287, 12, 25093, 7829, 40236, 2711]],\n", " [[8700, 632, 1037, 165]],\n", " [[19763, 16872]],\n", " [[2009, 29018, 10221, 2684, 4119, 6303, 271, 1168]],\n", " [[11917, 3631, 3108, 139]],\n", " [[10585, 73, 9873, 35733, 5429]],\n", " [[5429, 4168, 3314, 11489, 2586]],\n", " [[5168, 5325]],\n", " [[2930, 32109, 20434, 20071]],\n", " [[22801, 274, 134, 2711]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[10035, 5317, 24058]],\n", " [[274, 530, 208, 41757, 6588, 3952, 1127, 2161, 3914, 1168, 649, 6800]],\n", " [[344, 20031, 12, 846, 40837, 2691]],\n", " [[83, 4, 347, 4, 7338]],\n", " [[5168, 5325]],\n", " [[24589, 1479, 6374, 208, 4, 347, 4]],\n", " [[274, 5777, 28185, 3381, 242, 14795]],\n", " [[6415, 1501, 9224, 38707]],\n", " [[2201, 6130, 12, 534, 8362, 1851, 274, 4, 347, 4]],\n", " [[3161, 14122, 1178]],\n", " [[1568, 1833, 5429]],\n", " [[18612, 32825, 24969, 468, 1322, 1090]],\n", " [[14993, 5150, 10888, 19864, 354]],\n", " [[1332, 242, 5413, 7222, 30089, 257, 5675, 2912, 438, 1020]],\n", " [[22705, 274, 4, 347, 4]],\n", " [[1568, 9926]],\n", " [[2499, 11476]],\n", " [[6015, 12696, 5429]],\n", " [[5168, 5325]],\n", " [[2812, 405, 15577, 274, 4, 347, 4]],\n", " [[2822, 3622, 12612]],\n", " [[5092, 632, 1037, 165]],\n", " [[29830, 18961]],\n", " [[6746, 13578, 7224]],\n", " [[226, 15089, 2383, 104, 6998, 337]],\n", " [[208, 4, 347, 4, 42028, 1206, 6377]],\n", " [[3417, 5809]],\n", " [[8712, 3937, 261, 23939, 338, 2133, 274, 4, 347, 4]],\n", " [[663, 11758]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[5028, 632, 1037, 165]],\n", " [[7556, 632, 5259, 1037, 165]],\n", " [[580, 3600, 315, 274, 4, 347, 4]],\n", " [[2177, 5429]],\n", " [[1287, 1422, 6772]],\n", " [[5429, 13142, 1073, 4242]],\n", " [[1429, 632, 1037, 165]],\n", " [[5787, 5991, 8025, 1899]],\n", " [[5429, 10402, 10489]],\n", " [[5926, 2032, 16248, 5429]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[6331,\n", " 1975,\n", " 493,\n", " 3381,\n", " 4214,\n", " 20341,\n", " 1140,\n", " 119,\n", " 2426,\n", " 263,\n", " 944,\n", " 16231,\n", " 763,\n", " 126,\n", " 384,\n", " 4,\n", " 250,\n", " 4,\n", " 597,\n", " 4]],\n", " [[21774, 632, 1037, 165]],\n", " [[7505, 17458, 632, 1037, 165]],\n", " [[2822, 3622, 12612]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[4998, 5547, 1452, 7150]],\n", " [[20351, 2383, 42775, 2001, 33293]],\n", " [[31162, 857, 632, 1037, 165]],\n", " [[4622, 139, 4954, 347]],\n", " [[2361, 315, 274, 4, 347, 4]],\n", " [[2009, 263, 274, 5874, 90, 18217, 3385, 1334, 5460]],\n", " [[3870, 2561, 12612]],\n", " [[5680, 176, 500, 7801, 1001, 105, 282, 2711]],\n", " [[12602, 6801, 5463, 1885, 90, 22783]],\n", " [[6011, 1841, 12, 846, 8632, 6350, 12, 495, 3892, 877, 330]],\n", " [[6314, 16421]],\n", " [[2741, 1906, 6971, 10482]],\n", " [[8683, 390, 18, 632, 1037, 165]],\n", " [[121, 4, 347, 4, 18706, 417, 7228]],\n", " [[17112, 3061, 12, 487, 5600, 139]],\n", " [[83, 4575, 3194, 29, 274, 530]],\n", " [[4152, 305, 4, 597, 4, 347, 4]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[2822, 3622, 12612]],\n", " [[4537, 415, 31126, 857, 208, 4, 530, 4]],\n", " [[274, 2816, 11326, 705, 1526, 3985, 118, 21137]],\n", " [[2393, 873, 329, 1790, 12150]],\n", " [[2893, 13345, 29018, 10221, 2684, 16417, 4712]],\n", " [[2822, 3622, 4317, 261, 35678, 139]],\n", " [[20351, 2383, 42775, 2001, 33293]],\n", " [[14585, 2550, 1829, 7065, 3427, 7222, 4677, 1794, 853, 281]],\n", " [[15338, 412, 83, 4, 597, 4, 347, 4]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[2893, 13345, 263, 6304, 415, 281, 109, 37313, 3314, 139]],\n", " [[2910, 632, 1037, 165]],\n", " [[1775, 438, 10810, 4936, 15247, 274, 4, 347, 4]],\n", " [[2201, 6130, 12, 534, 8362, 1851, 274, 4, 347, 4]],\n", " [[1287, 1422, 12190]],\n", " [[2201, 6130, 12, 534, 8362, 1851, 274, 1140, 4691, 833]],\n", " [[14993, 9504, 366, 274, 4, 347, 4]],\n", " [[3870, 7338]],\n", " [[2499, 18946]],\n", " [[274, 4, 347, 4, 2848, 139]],\n", " [[5429, 4612]],\n", " [[18490, 632, 5259, 1037, 165]],\n", " [[1568, 1211, 7144]],\n", " [[2822, 3622, 12612]],\n", " [[15607, 412, 274, 4, 347, 4]],\n", " [[14993, 5150, 263, 23294, 4061]],\n", " [[384, 4, 597, 4, 530, 4, 1456, 2154, 7822]],\n", " [[7320, 632, 1037, 165]],\n", " [[221, 4438, 274, 4, 347, 4]],\n", " [[7224, 597, 19643, 1688, 3999, 1243]],\n", " [[34138, 30422, 330, 274, 1242, 3512]],\n", " [[28147, 31732, 2711]],\n", " [[13943, 1001, 2848, 242, 14182]],\n", " [[15809, 1942, 315, 274, 4, 347, 4]],\n", " [[3303, 12179, 967, 366, 40431, 281, 274, 4, 347, 4]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[27268, 9228, 274, 4, 347, 4]],\n", " [[22753, 21386, 3624, 163, 5593, 225]],\n", " [[15206, 4699, 5429]],\n", " [[5429, 4168, 3314, 11489, 2586]],\n", " [[10600, 412, 274, 4, 347, 4]],\n", " [[6171, 390, 18, 632, 5259, 1037, 165]],\n", " [[2893, 13345, 263, 6304, 415, 281, 109, 37313, 3314, 139]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[11998, 28659, 163, 530]],\n", " [[26455, 330, 23759, 9051, 625, 4104, 37151, 11104]],\n", " [[12932, 534, 43130, 22590, 225, 10436]],\n", " [[29018, 10221, 2684, 3622]],\n", " [[5429, 5308]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[2711, 344, 20031, 12, 846, 40837]],\n", " [[10585, 73, 9873, 35733, 5429]],\n", " [[10157, 3830, 271, 5429, 305, 12, 17608]],\n", " [[2822, 6525, 354, 4317, 7474, 118, 1140]],\n", " [[663, 41375, 2857]],\n", " [[5524, 15933]],\n", " [[31853, 2678, 2583, 5429]],\n", " [[2822, 14585, 2550, 625]],\n", " [[7943, 17280, 13039]],\n", " [[4868, 846, 381, 2028, 5410, 2987]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[6415, 1501, 18794]],\n", " [[16518, 12470, 274, 4, 347, 4]],\n", " [[2742,\n", " 10172,\n", " 18307,\n", " 272,\n", " 1975,\n", " 2478,\n", " 5173,\n", " 330,\n", " 1722,\n", " 2463,\n", " 12,\n", " 1301,\n", " 10232,\n", " 1479,\n", " 267]],\n", " [[163, 1543, 219, 281, 4998]],\n", " [[2822, 3622, 12612]],\n", " [[468, 16411, 493, 274, 4, 347, 4]],\n", " [[29018, 10221, 2684, 3622]],\n", " [[7320, 632, 1037, 165]],\n", " [[8683, 632, 5259, 1037, 165]],\n", " [[3870, 7338]],\n", " [[315, 532, 604, 18, 632, 4191, 165]],\n", " [[2822, 3622, 12612]],\n", " [[7137, 12242, 15363, 274, 4, 347, 4]],\n", " [[22753, 21386, 3624, 163, 5593, 225]],\n", " [[7570, 20302, 7748, 274, 4, 347, 4]],\n", " [[384, 11961, 16911]],\n", " [[83, 4, 104, 4, 12218]],\n", " [[6748, 2723, 9697, 263, 1587, 2812, 257, 14379]],\n", " [[2177, 13114]],\n", " [[36858, 25278, 22753]],\n", " [[7320, 632, 1037, 165]],\n", " [[5429, 35068, 4122, 257]],\n", " [[256, 1526, 462, 6080, 12612]],\n", " [[764, 4578, 7963]],\n", " [[2201, 6130, 12, 534, 8362, 1851, 274, 4, 347, 4]],\n", " [[188, 469, 11836]],\n", " [[2986, 9207]],\n", " [[274, 4, 347, 4, 22843]],\n", " [[2009, 29018, 10221, 2684, 1995, 19201]],\n", " [[2822, 6525, 354, 4317, 7474, 118, 1140]],\n", " [[5926, 2032, 16248, 5429]],\n", " [[5429, 10402, 10489]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[2009, 29018, 10221, 2684, 4119, 6303, 271, 1168]],\n", " [[211, 21999, 12221, 274, 4, 347, 4]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[18490, 632, 5259, 1037, 165]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[226, 15089, 2383, 104, 6998, 337]],\n", " [[9692, 274, 4, 347, 4]],\n", " [[10060, 632, 5259, 1037, 165]],\n", " [[274, 5777, 28185, 3381, 242, 14795]],\n", " [[4537, 415, 31126, 857, 208, 4, 530, 4]],\n", " [[3317, 315, 5429]],\n", " [[15338, 412, 83, 4, 597, 4, 347, 4]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[14781, 632, 1037, 165]],\n", " [[31500, 242, 33846]],\n", " [[5429, 4168, 3314, 11489, 2586]],\n", " [[4537, 415, 31126, 857, 208, 4, 530, 4]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[13733, 632, 1037, 165]],\n", " [[5438, 763, 2860, 4365, 274, 4, 347, 4]],\n", " [[580, 14312, 11645, 19032, 274, 4, 347, 4]],\n", " [[7556, 632, 5259, 1037, 165]],\n", " [[10994, 11536, 632, 1037, 165]],\n", " [[2910, 632, 1037, 165]],\n", " [[5429, 9176]],\n", " [[5429, 10402, 10489]],\n", " [[188, 3324, 632, 8808, 2918, 165]],\n", " [[315, 532, 390, 18, 632, 4191, 165]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[12919, 274, 4, 347, 4]],\n", " [[7137, 2848, 274, 4, 347, 4]],\n", " [[15206, 4699, 5429]],\n", " [[13733, 632, 1037, 165]],\n", " [[6171, 632, 5259, 1037, 165]],\n", " [[1405, 12037, 163, 3632]],\n", " [[2361, 412, 305, 4, 597, 4, 347, 4]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[9688, 104, 6579, 18995]],\n", " [[163, 1543, 219, 281, 4998]],\n", " [[112, 4, 274, 5268, 14184]],\n", " [[208, 4, 104, 4, 15619, 1020]],\n", " [[5429, 229, 8428]],\n", " [[305, 5416, 926, 7210, 102, 4998]],\n", " [[208, 4, 347, 4, 2265, 6080]],\n", " [[208, 4, 510, 4, 6213, 4676, 858]],\n", " [[7224, 597, 19643, 1688, 3999, 1243]],\n", " [[2822, 6525, 354, 4317, 7474, 118, 1140]],\n", " [[10157, 3830, 271, 5429]],\n", " [[7248, 219, 8441]],\n", " [[19365, 1140, 102, 2383, 104, 7042, 636]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[4380, 8271, 230, 5268]],\n", " [[5429, 4369, 329]],\n", " [[1287, 1422, 22320]],\n", " [[7296, 271, 8726, 12612]],\n", " [[12966, 6748, 2723, 7222, 726, 1176, 8129, 9401]],\n", " [[2009, 24066, 8843, 234, 1043, 6073]],\n", " [[726, 840, 873, 873, 5429]],\n", " [[15206, 4699, 5429]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[384, 10839, 642, 493, 5366, 2601]],\n", " [[7556, 632, 5259, 1037, 165]],\n", " [[9614, 632, 1037, 165]],\n", " [[11437, 632, 5259, 1037, 165]],\n", " [[96, 242, 366, 13519, 625, 4733]],\n", " [[22569, 1535, 121, 1889, 574]],\n", " [[229, 597, 5725, 12, 530, 8015, 415, 2552, 26067]],\n", " [[2027, 188, 469, 15626]],\n", " [[7556, 632, 5259, 1037, 165]],\n", " [[229, 530, 23067, 3623, 3119, 384, 10839, 642, 12733]],\n", " [[5703, 15908]],\n", " [[274, 5777, 28185, 3381, 242, 4011, 18, 12610]],\n", " [[2361, 412, 305, 4, 597, 4, 347, 4]],\n", " [[13633, 83, 4, 597, 4, 347, 4]],\n", " [[7320, 632, 1037, 165]],\n", " [[208, 4214, 15333, 5429]],\n", " [[9170, 2711, 8313]],\n", " [[1221, 1585, 324, 5363, 1745, 968, 165]],\n", " [[29018, 10221, 2684, 6843]],\n", " [[2910, 632, 1037, 165]],\n", " [[1568, 1211, 7144]],\n", " [[2009, 234, 1043, 6073, 263, 3910]],\n", " [[1625, 632, 1037, 165]],\n", " [[5480, 717, 27093, 918]],\n", " [[17100, 1908, 9216, 20233, 16885, 274, 4, 347, 4]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[163, 8982, 2133, 274, 4, 347, 4, 41861]],\n", " [[382, 1793, 24227, 1253]],\n", " [[6748, 2723, 9697, 25452, 338, 12109]],\n", " [[22839, 2727, 1587, 230, 6080, 3843]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[11426, 30402, 5429]],\n", " [[14993, 9504, 366, 274, 4, 347, 4]],\n", " [[230, 4, 104, 4, 13142, 23065, 5739]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[7320, 632, 1037, 165]],\n", " [[229, 4113, 254, 354, 12150]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[9170, 2711, 8313]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[10060, 632, 5259, 1037, 165]],\n", " [[5092, 632, 1037, 165]],\n", " [[14567, 9543]],\n", " [[6508, 632, 5259, 1037, 165]],\n", " [[15081]],\n", " [[7943, 17280, 13039]],\n", " [[2986, 9207]],\n", " [[91, 1610, 118, 274, 4, 347, 4]],\n", " [[2009, 29018, 10221, 2684, 255, 11186, 1535]],\n", " [[255, 5156, 261, 6130, 12, 347, 4503, 9676, 7406, 3512]],\n", " [[5926, 8393, 18191]],\n", " [[96, 242, 366, 13519, 625, 4733]],\n", " [[22256, 2565, 632, 1037, 165]],\n", " [[3870, 7338]],\n", " [[31853, 2678, 2583, 5429]],\n", " [[274, 5777, 28185, 3381, 242, 14795]],\n", " [[2822, 3622, 12612]],\n", " [[12132, 632, 1037, 165]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[1456, 5235, 967, 4349, 5235, 344, 4, 530, 4]],\n", " [[5092, 632, 1037, 165]],\n", " [[4290, 5429]],\n", " [[7960, 607, 274, 4, 347, 4]],\n", " [[230, 3376, 2711]],\n", " [[2009, 6748, 2723, 9697, 24066, 8843, 7641, 1479, 5895, 102]],\n", " [[9692, 274, 4, 347, 4]],\n", " [[2393, 873, 329, 1790, 12150]],\n", " [[580, 3600, 315, 274, 4, 347, 4]],\n", " [[10600, 3830, 3697, 274, 4, 347, 4]],\n", " [[274, 5777, 28185, 3381, 242, 14795]],\n", " [[3098, 274, 4, 347, 4, 2691]],\n", " [[1287, 1422, 6772]],\n", " [[272, 4, 104, 4, 38, 9418, 14496, 20, 7485, 30521, 8907]],\n", " [[10585, 73, 9873, 35733, 5429]],\n", " [[4307, 12599, 876, 2955, 272, 2583]],\n", " [[208, 4, 574, 4, 1664, 506, 2426]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[208, 4, 574, 4, 1664, 506, 2426]],\n", " [[2910, 632, 1037, 165]],\n", " [[5429, 4612, 274, 15035, 1977]],\n", " [[2711, 344, 20031, 12, 846, 40837]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[21105, 18604, 412, 274, 4, 347, 4]],\n", " [[468, 506, 574, 7602, 16408, 2691]],\n", " [[305, 2957, 260, 274, 4, 347, 4]],\n", " [[4380, 8271, 230, 5268]],\n", " [[2027, 188, 469, 15626]],\n", " [[36265, 22753]],\n", " [[230, 4, 495, 4, 2646, 23073, 1176, 1742]],\n", " [[91, 1610, 118, 274, 4, 347, 4]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[5429, 5896, 5973, 1512]],\n", " [[22753, 21386, 3624, 163, 5593, 225]],\n", " [[1156, 632, 5259, 1037, 165]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[14667, 12, 387, 3006, 1180, 632, 1037, 165]],\n", " [[234, 4, 717, 4, 347, 4]],\n", " [[3542, 1469, 6377, 274, 4, 347, 4]],\n", " [[1625, 632, 1037, 165]],\n", " [[9096, 3497, 632, 4105, 4191, 165]],\n", " [[5429, 30377, 1496, 219, 229, 5079, 282, 2160, 2726, 330]],\n", " [[2822, 3622, 12612]],\n", " [[13287, 12, 25093, 7829, 40236, 2711]],\n", " [[7505, 17458, 632, 1037, 165]],\n", " [[896, 604, 18, 632, 4191, 165]],\n", " [[6508, 632, 5259, 1037, 165]],\n", " [[798, 632, 1037, 165]],\n", " [[9614, 632, 1037, 165]],\n", " [[2822, 3622, 12612]],\n", " [[2009, 16528, 952, 3602, 257]],\n", " [[18490, 632, 5259, 1037, 165]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[15897, 944, 1899, 281, 2344, 523, 1694, 3006, 19200]],\n", " [[208, 10595, 3109, 412, 274, 4, 347, 4]],\n", " [[6314, 16421]],\n", " [[1568, 9926]],\n", " [[13694, 25280, 7204, 1627]],\n", " [[229, 7025, 30492, 241, 7450, 211, 7389]],\n", " [[1870, 2776, 12, 10926, 5857]],\n", " [[24799, 632, 1037, 165]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[4622, 139, 3767, 459, 38754]],\n", " [[35118, 2071, 40849]],\n", " [[274, 530, 6015, 255, 2558, 4955, 17010]],\n", " [[9170, 2711, 8313]],\n", " [[2822, 14585, 2550, 625]],\n", " [[3702, 7776, 281, 12150]],\n", " [[5168, 5325]],\n", " [[381, 4, 347, 4, 24589, 1479, 6374]],\n", " [[10897, 281, 1245, 12, 9325, 548, 2558]],\n", " [[2009, 29018, 10221, 2684, 1995, 19201]],\n", " [[3542, 1469, 6377, 274, 4, 347, 4]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[2201, 6130, 12, 534, 8362, 1851, 274, 4, 347, 4]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[2361, 412, 274, 4, 347, 4]],\n", " [[2711, 344, 20031, 12, 846, 40837]],\n", " [[5429, 10402, 10489]],\n", " [[13287, 12, 25093, 7829, 40236, 2711]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[3317, 10506]],\n", " [[1775, 438, 10810, 4936, 15247, 274, 4, 347, 4]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[11666, 274, 4, 347, 4]],\n", " [[208, 4, 347, 4, 23094, 1043, 6073]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[5092, 632, 1037, 165]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[112, 4, 5429, 234, 5172, 282, 2865]],\n", " [[2910, 632, 1037, 165]],\n", " [[5429, 2049, 16408]],\n", " [[2361, 412, 274, 4, 347, 4]],\n", " [[315, 532, 390, 18, 632, 4191, 165]],\n", " [[726, 12, 495, 2957, 3760, 4998]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[11955, 274, 4, 347, 4]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[5819, 12770]],\n", " [[5703, 15908]],\n", " [[208, 4, 347, 4, 42028, 1206, 6377]],\n", " [[7137, 12242, 15363, 274, 4, 347, 4]],\n", " [[21780, 12527, 493, 234, 293, 255, 329, 26051, 274, 4, 347, 4]],\n", " [[1608, 179, 1561, 267, 18057, 344, 9707, 1115, 1250, 21783, 5410]],\n", " [[14993, 5150, 10888, 19864, 354]],\n", " [[5854, 13170]],\n", " [[9245, 315, 274, 4, 347, 4]],\n", " [[5429, 208, 1499]],\n", " [[5854, 412, 4998]],\n", " [[5429, 9176]],\n", " [[25103, 710, 6909, 3830, 267, 366, 263, 3060, 1043, 2070, 329]],\n", " [[230, 4, 495, 4, 2646, 23073, 1176, 1742]],\n", " [[17822, 1097, 7488, 5429]],\n", " [[7413, 268, 4998, 673]],\n", " [[7556, 632, 5259, 1037, 165]],\n", " [[3098, 274, 4, 347, 4, 2691]],\n", " [[230, 1073, 3572, 1512, 2912, 438, 1020]],\n", " [[17182, 5268, 163, 6457, 705, 468, 28814, 102]],\n", " [[21299, 2186, 274, 4, 347]],\n", " [[9035, 412, 274, 4, 347, 4]],\n", " [[5429, 13985, 405, 6130, 14330]],\n", " [[3417, 36802, 5429]],\n", " [[1625, 632, 1037, 165]],\n", " [[2499, 18946]],\n", " [[4537, 415, 31126, 857, 208, 4, 530, 4]],\n", " [[5729, 412, 5429]],\n", " [[24986, 6847, 20623, 261]],\n", " [[29018, 10221, 2684, 764, 6487, 3407, 14182, 12612]],\n", " [[2361, 315, 305, 4, 597, 4, 347, 4]],\n", " [[9601, 19119, 32482, 4989]],\n", " [[5244, 632, 1037, 165]],\n", " [[21774, 632, 1037, 165]],\n", " [[2000, 632, 1037, 165]],\n", " [[234, 2154, 11691, 5429]],\n", " [[1405, 12037, 163, 3632]],\n", " [[840, 463, 1657, 9002, 1173, 260, 274, 4, 347, 4]],\n", " [[5429, 4612]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[22256, 2565, 632, 1037, 165]],\n", " [[22378, 12, 18551, 139, 390, 18]],\n", " [[1568, 1211, 7144]],\n", " [[83, 4, 104, 4, 12218]],\n", " [[9176, 381, 12, 26902, 5429]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[5420, 15929]],\n", " [[468, 506, 387, 312, 9259, 22739]],\n", " [[2910, 632, 1037, 165]],\n", " [[12966, 6748, 2723, 7222, 726, 1176, 8129, 9401]],\n", " [[4152, 305, 4, 597, 4, 347, 4]],\n", " [[6171, 632, 5259, 1037, 165]],\n", " [[1625, 632, 1037, 165]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[9170, 2711, 8313]],\n", " [[5429, 24542, 298, 45739, 1879]],\n", " [[14993, 5150, 263, 23294, 4061]],\n", " [[391, 1101, 632, 1037, 165]],\n", " [[4150, 18140, 9401, 274, 4, 347, 4]],\n", " [[7320, 632, 1037, 165]],\n", " [[1429, 632, 1037, 165]],\n", " [[2000, 632, 1037, 165]],\n", " [[17535, 5382, 975, 844, 181, 73, 428, 17411, 12, 17906]],\n", " [[14585, 2550, 1829, 7065, 3427, 7222, 4677, 1794, 853, 281]],\n", " [[15837, 5223, 23872, 352, 118, 6579, 625, 6417]],\n", " [[3417, 36802, 5429]],\n", " [[6748, 2723, 9697, 17686, 26802, 274, 4, 347, 4]],\n", " [[4868, 846, 381, 2028, 5410, 2987]],\n", " [[468, 506, 387, 312, 9259, 22739, 3082]],\n", " [[798, 632, 1037, 165]],\n", " [[44602, 154, 179, 344, 9707, 1115, 1250, 1638, 462, 36384]],\n", " [[9543, 11861, 90, 281]],\n", " [[83, 4, 104, 4, 12218]],\n", " [[4514, 9529]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[1600, 390, 18, 632, 1037, 165]],\n", " [[5429, 4612, 163, 5269, 30919, 594]],\n", " [[21774, 632, 1037, 165]],\n", " [[5716, 4597, 274, 4, 347, 4]],\n", " [[2361, 412, 274, 4, 347, 4]],\n", " [[5092, 632, 1037, 165]],\n", " [[1603, 632, 1037, 165]],\n", " [[5429, 3635, 1176]],\n", " [[381, 2544, 338, 11629, 14184]],\n", " [[2000, 632, 1037, 165]],\n", " [[7224, 597, 19643, 1688, 3999, 1243]],\n", " [[8983, 315, 274, 4, 347, 4]],\n", " [[15376, 493, 21115]],\n", " [[6037, 632, 1037, 165]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[5244, 632, 1037, 165]],\n", " [[230, 4, 597, 4, 4838, 4231, 225, 21526]],\n", " [[1429, 632, 1037, 165]],\n", " [[1505, 1704, 3497, 632, 1037, 165]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[35906, 384, 10839, 642, 12733, 226, 267, 1792, 462, 267, 1113]],\n", " [[5092, 632, 1037, 165]],\n", " [[1625, 632, 1037, 165]],\n", " [[2588, 2461, 83, 4643]],\n", " [[18749, 412, 274, 4, 347, 4]],\n", " [[2005, 3590, 274, 4467, 18217, 2893, 13345]],\n", " [[13943, 415, 1210, 405, 2383, 771, 16966, 1698, 28544]],\n", " [[5429, 13985, 405, 6130, 14330]],\n", " [[5480, 717, 27093, 918]],\n", " [[384, 13967, 274, 4467, 18217, 2893, 13345]],\n", " [[315, 532, 604, 18, 632, 4191, 165]],\n", " [[208, 4, 104, 4, 347, 4, 7645, 6483]],\n", " [[8683, 632, 5259, 1037, 165]],\n", " [[15376, 493, 21115]],\n", " [[2910, 632, 1037, 165]],\n", " [[369, 21894, 632, 1037, 165]],\n", " [[525, 700, 20852, 12221, 274, 4, 347, 4]],\n", " [[4317, 10031, 7339, 21098, 12150]],\n", " [[7765, 6412, 4998]],\n", " [[5498, 632, 1037, 165]],\n", " [[229, 4113, 254, 354, 12150]],\n", " [[5429, 11996, 1168, 22487, 14722]],\n", " [[6171, 632, 5259, 1037, 165]],\n", " [[44602, 154, 179, 344, 9707, 1115, 1250, 1638, 462, 36384]],\n", " [[4290, 5429]],\n", " [[5639, 632, 1037, 165]],\n", " [[14993, 9504, 366, 274, 4, 347, 4]],\n", " [[3098, 274, 4, 347, 4, 2691]],\n", " [[208, 4, 104, 4, 347, 4, 7645, 6483]],\n", " [[726, 12, 597, 5655, 7776, 5429]],\n", " [[3590, 4947, 922]],\n", " [[726, 12, 500, 20380, 5429]],\n", " [[14993, 5150, 10888, 19864, 354]],\n", " [[1603, 632, 1037, 165]],\n", " [[5854, 13170]],\n", " [[15091]],\n", " [[10060, 632, 5259, 1037, 165]],\n", " [[2009, 3574, 1423, 6748, 2723, 9697, 22378, 22378]],\n", " [[1156, 632, 5259, 1037, 165]],\n", " [[391, 1101, 632, 1037, 165]],\n", " [[163, 7110, 27547, 16784, 7406, 3512]],\n", " [[5092, 632, 1037, 165]],\n", " [[3098, 274, 4, 347, 4, 2691]],\n", " [[3160, 17492]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[315, 13716, 6350]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[4341, 3671, 642, 1033, 5429]],\n", " [[2000, 632, 1037, 165]],\n", " [[3426, 274, 4, 347, 4]],\n", " [[2711, 23070, 9089, 14035, 3309, 876]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[208, 4214, 1560, 1140, 8, 2869, 17010, 2520, 2379, 632, 1037, 165]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[1221, 632, 5259, 1037, 165]],\n", " [[24052, 17939, 208, 12, 510, 32767]],\n", " [[10060, 632, 5259, 1037, 165]],\n", " [[7320, 632, 1037, 165]],\n", " [[1480, 673, 3721, 274, 4, 347, 4]],\n", " [[1429, 390, 18, 632, 1037, 165]],\n", " [[896, 390, 18, 632, 4191, 165]],\n", " [[19763, 16872]],\n", " [[10060, 632, 5259, 1037, 165]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[2910, 632, 1037, 165]],\n", " [[4436, 26827, 906, 289, 1140, 763, 6070, 5413, 2009]],\n", " [[29018, 10221, 2684, 3622]],\n", " [[8683, 632, 5259, 1037, 165]],\n", " [[5429, 17326, 19654, 29712]],\n", " [[11666, 274, 4, 347, 4]],\n", " [[14993, 5150, 10888, 19864, 354]],\n", " [[5429, 1587, 687, 8799, 12, 19451]],\n", " [[2009, 3574, 1423, 6748, 2723, 9697, 22378, 22378]],\n", " [[944, 2253, 757, 3983, 1890, 6005]],\n", " [[22839, 2727, 3771, 20375, 4242]],\n", " [[660, 22494, 13310, 18440, 1073, 4193, 102, 5429]],\n", " [[726, 85, 90, 19284, 5429]],\n", " [[1586, 354, 20, 7485, 30521, 8907, 274, 4, 347, 4]],\n", " [[230, 1073, 3572, 1512, 2912, 438, 1020]],\n", " [[5429, 221, 4438, 412]],\n", " [[22705, 274, 4, 347, 4]],\n", " [[1221, 632, 5259, 1037, 165]],\n", " [[13733, 632, 1037, 165]],\n", " [[4152, 305, 4, 597, 4, 347, 4]],\n", " [[5429, 4612]],\n", " [[764, 5465, 17010, 263, 33759, 783, 7499]],\n", " [[18490, 632, 5259, 1037, 165]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[5429, 7916, 354, 271]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[369, 17577, 315, 5429]],\n", " [[9601, 24857, 468, 8508, 11760]],\n", " [[112, 4, 5429, 1332, 5459]],\n", " [[7320, 632, 1037, 165]],\n", " [[15607, 412, 274, 4, 347, 4]],\n", " [[5429, 9922, 8530]],\n", " [[12587, 632, 1037, 165]],\n", " [[14781, 632, 1037, 165]],\n", " [[2742, 21402, 530, 4424, 22015, 2265, 415, 13714, 8604]],\n", " [[1793, 24227, 1253, 5463, 1885, 90, 163, 20997]],\n", " [[21774, 632, 1037, 165]],\n", " [[2561, 7772]],\n", " [[35722, 530, 11198, 163, 4, 347, 4]],\n", " [[15959, 1054, 8899, 274, 4, 347, 4]],\n", " [[6508, 632, 5259, 1037, 165]],\n", " [[2910, 632, 1037, 165]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[14993, 5150, 10888, 19864, 354]],\n", " [[726, 811, 2478, 18471]],\n", " [[5429, 4612]],\n", " [[2361, 315, 274, 4, 347, 4]],\n", " [[1625, 632, 1037, 165]],\n", " [[12940, 632, 5259, 1037, 165]],\n", " [[1221, 390, 18, 632, 4191, 165]],\n", " [[2822, 3622, 4317, 261, 35678, 139]],\n", " [[5429, 11996, 1168, 22487, 14722]],\n", " [[3378, 1332]],\n", " [[28147, 31732, 2711]],\n", " [[274, 530, 468, 1120, 271]],\n", " [[188, 1156, 13340]],\n", " [[33846, 22153, 2001, 3917, 2253, 9401]],\n", " [[6331,\n", " 1975,\n", " 493,\n", " 3381,\n", " 4214,\n", " 6838,\n", " 1001,\n", " 6873,\n", " 1526,\n", " 6374,\n", " 263,\n", " 7065,\n", " 3427,\n", " 293]],\n", " [[211, 4, 347, 4, 315]],\n", " [[5429, 208, 1499]],\n", " [[2910, 632, 1037, 165]],\n", " [[5429, 15757, 12705, 3467]],\n", " [[229, 530, 5309, 2987, 102, 525, 20782, 6106]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[17609, 632, 1037, 165]],\n", " [[9793, 5928, 274, 4, 347, 4]],\n", " [[4868, 846, 381, 2028, 5410, 2987]],\n", " [[11437, 632, 5259, 1037, 165]],\n", " [[3870, 7338]],\n", " [[230, 2456, 6852, 9002, 1588, 1253]],\n", " [[2201, 5429]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[36589, 7876, 4668, 263, 732, 3695, 859, 102, 1792, 1069, 927]],\n", " [[12932, 534, 43130, 22590, 225, 10436]],\n", " [[21774, 632, 1037, 165]],\n", " [[369, 1961, 5429]],\n", " [[2822, 3622, 12612]],\n", " [[1287, 1422, 5429]],\n", " [[32985, 967, 366, 274, 4, 347, 4]],\n", " [[2009, 255, 25491]],\n", " [[5837, 15945, 5429]],\n", " [[17983, 632, 1037, 165]],\n", " [[5429, 30610, 1417]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[391, 1101, 632, 1037, 165]],\n", " [[2769, 632, 5259, 1037, 165]],\n", " [[221, 5268, 7038, 14559, 3467]],\n", " [[7296, 271, 8726, 12612]],\n", " [[5429, 660, 329, 3592, 256, 7352, 1488, 330, 2331]],\n", " [[2822, 3622, 6719, 4699]],\n", " [[391, 1101, 632, 1037, 165]],\n", " [[12612, 221, 1488, 26802]],\n", " [[30492, 241, 7450, 14795]],\n", " [[6037, 632, 1037, 165]],\n", " [[3497, 9, 2487, 632, 5259, 1037, 165]],\n", " [[13708, 26450, 2912, 438, 1020]],\n", " [[274, 530, 11504, 257, 4807, 282, 2603, 21752, 26084, 2426]],\n", " [[5429, 5896, 5973, 1512]],\n", " [[315, 532, 390, 18, 632, 4191, 165]],\n", " [[14605, 632, 5259, 1037, 165]],\n", " [[8683, 632, 5259, 1037, 165]],\n", " [[12612, 4436, 20287, 337]],\n", " [[13633, 83, 4, 597, 4, 347, 4]],\n", " [[188, 3324, 632, 1037, 165]],\n", " [[14993, 5150, 10888, 19864, 354, 274, 1140, 4691, 179]],\n", " [[121, 9056, 102, 1211, 7128, 29]],\n", " [[4622, 139, 3767, 459, 38754]],\n", " [[3430, 632, 1037, 165]],\n", " [[2893, 13345, 29018, 10221, 2684, 12765, 139, 4214, 2955, 6251, 763]],\n", " [[3274, 331, 4223]],\n", " [[226, 18307, 234, 324, 438, 324, 438, 2478]],\n", " [[10482, 2374, 11761, 775]],\n", " [[2910, 390, 18, 632, 1037, 165]],\n", " [[14567, 12612]],\n", " [[580, 3600, 315, 274, 4, 347, 4]],\n", " [[2393, 873, 329, 1790, 12150]],\n", " [[112, 4, 5429, 1332, 5459]],\n", " [[2201, 6130, 12, 534, 8362, 1851, 274, 4, 347, 4]],\n", " [[27162, 11626, 3990, 1722, 179, 274, 4, 347, 4]],\n", " [[16193, 632, 1037, 165]],\n", " [[2271, 13310, 36349, 2884, 337, 757, 5107, 5429]],\n", " [[7505, 17458, 632, 1037, 165]],\n", " [[20351, 2383, 42775, 2001, 33293]],\n", " [[7296, 271, 8726, 12612]],\n", " [[663, 11758]],\n", " [[3426, 274, 4, 347, 4]],\n", " [[18490, 632, 5259, 1037, 165]],\n", " [[229, 5596, 21834]],\n", " [[31280, 282, 5269, 29048, 263, 255, 6166, 11408, 102]],\n", " [[12612, 4436, 20287, 337]],\n", " [[14664, 412, 5429]],\n", " [[21774, 632, 1037, 165]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[2361, 315, 274, 4, 347, 4]],\n", " [[12919, 5429]],\n", " [[726, 12, 3609, 895, 1543, 2636, 1847, 2009]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[2177, 2692, 10929]],\n", " [[764, 506, 13139, 1755, 35406, 15215]],\n", " [[9035, 412, 274, 4, 347, 4]],\n", " [[344, 30395, 12108, 368]],\n", " [[2381, 102, 3703, 574, 165]],\n", " [[7556, 632, 5259, 1037, 165]],\n", " [[19041, 10968, 6752, 10327]],\n", " [[952, 6382, 857, 330, 710, 248, 7396, 12150]],\n", " [[208, 10729, 14777, 225]],\n", " [[6171, 632, 5259, 1037, 165]],\n", " [[14993, 5150, 10888, 19864, 354]],\n", " [[7505, 17458, 632, 1037, 165]],\n", " [[15639, 632, 5259, 1037, 165]],\n", " [[9793, 5928, 274, 4, 347, 4]],\n", " [[14993, 5150, 10888, 19864, 354, 274, 1140, 4691, 179]],\n", " [[221, 4, 250, 4, 673, 4, 530, 4, 20, 7485, 30521, 8907, 274, 4, 347, 4]],\n", " [[188, 469, 1211, 9926]],\n", " [[21774, 632, 1037, 165]],\n", " [[83, 4, 104, 4, 12218]],\n", " [[274, 530, 840, 330, 105, 1187, 12733]],\n", " [[5429, 10402, 10489, 2691]],\n", " [[5413, 2009, 109, 7382, 11819]],\n", " [[17468, 448, 13023, 5641, 163, 20997]],\n", " [[2893, 13345, 263, 6304, 415, 281, 109, 37313, 3314, 139]],\n", " [[2769, 632, 5259, 1037, 165]],\n", " [[2910, 632, 1037, 165]],\n", " [[2769, 632, 5259, 1037, 165]],\n", " [[226, 4061, 384, 3632]],\n", " [[230, 1097, 241, 267, 22070, 263, 8550, 710, 1755]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[8683, 390, 18, 632, 865, 3512, 165]],\n", " [[25011, 12, 2022, 468, 11485, 102]],\n", " [[2361, 412, 274, 4, 347, 4]],\n", " [[3497, 9, 2487, 632, 5259, 1037, 165]],\n", " [[3378, 5553, 268]],\n", " [[1918, 1140, 14962, 274, 4467, 18217, 2893, 13345, 36, 21963, 43]],\n", " [[312, 4, 3217, 6293]],\n", " [[4766, 14572]],\n", " [[798, 632, 1037, 165]],\n", " [[3160, 17492]],\n", " [[8873, 9399, 1906, 263, 2588, 221, 2550, 5079]],\n", " [[896, 390, 18, 632, 4191, 165]],\n", " [[5429, 15757, 12705, 3467]],\n", " [[4380, 8271, 230, 5268]],\n", " [[5429, 7093, 523]],\n", " [[4436, 29, 385, 108, 11094, 4947, 11249, 3663, 13324]],\n", " [[1775, 438, 10810, 4936, 15247, 274, 4, 347, 4]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[1586, 354, 8300, 2401, 1168, 274, 4, 347, 4]],\n", " [[20351, 2383, 42775, 2001, 33293]],\n", " [[22839, 2727, 6748, 2723, 7222, 726, 2089, 5272]],\n", " [[3332, 2646, 26681, 274, 4, 347, 4]],\n", " [[3378, 5553, 268]],\n", " [[15376, 493, 21115]],\n", " [[166, 5618, 4670, 274, 4, 347, 4]],\n", " [[369, 17577, 315, 5429]],\n", " [[221, 2336, 272, 30265, 1243, 274, 4, 347, 4]],\n", " [[188, 3324, 632, 1037, 165]],\n", " [[208, 4, 347, 4, 2265, 6080]],\n", " [[6171, 632, 5259, 1037, 165]],\n", " [[952, 10172, 5521, 718, 281, 12612]],\n", " [[11141, 281, 3060, 4488, 274, 4, 347, 4]],\n", " [[229,\n", " 4,\n", " 104,\n", " 4,\n", " 347,\n", " 4,\n", " 226,\n", " 5361,\n", " 2558,\n", " 384,\n", " 2603,\n", " 12,\n", " 846,\n", " 2560,\n", " 463,\n", " 8663]],\n", " [[16588, 366, 12612]],\n", " [[315, 532, 604, 18, 632, 4191, 165]],\n", " [[3430, 632, 1037, 165]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[2009, 29018, 10221, 2684, 3182, 2727]],\n", " [[24195, 632, 1037, 165]],\n", " [[20421, 428, 10344, 274, 4, 347, 4]],\n", " [[14993, 5150, 263, 23294, 4061]],\n", " [[208, 4, 104, 4, 347, 4, 7645, 6483]],\n", " [[208, 4, 574, 4, 1664, 506, 2426]],\n", " [[9341, 261, 632, 1037, 165]],\n", " [[274, 530, 229, 7381, 139, 2742, 10809, 31316, 36533]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[312, 1829, 248, 18974, 354, 274, 4, 347, 4]],\n", " [[2009, 44285, 1851]],\n", " [[391, 1101, 632, 1037, 165]],\n", " [[36858, 25278, 22753]],\n", " [[2646, 1210, 24181, 274, 4, 347, 4]],\n", " [[5429, 4424, 22015, 11135, 2816, 438]],\n", " [[12132, 632, 1037, 165]],\n", " [[4174, 632, 5259, 1037, 165]],\n", " [[5244, 632, 1037, 165]],\n", " [[274, 3573, 4448, 6276]],\n", " [[1775, 438, 10810, 4936, 15247, 274, 4, 347, 4]],\n", " [[726, 12, 597, 5655, 7776, 4998]],\n", " [[234,\n", " 1561,\n", " 338,\n", " 29270,\n", " 19757,\n", " 274,\n", " 1242,\n", " 428,\n", " 3937,\n", " 26649,\n", " 3671,\n", " 241,\n", " 3509]],\n", " [[3274, 331, 4223]],\n", " [[11193, 1908, 274, 4, 347, 4]],\n", " [[17112, 3061, 12, 487, 5600, 139]],\n", " [[5429, 24542, 298, 45739, 1879]],\n", " [[2027, 188, 469, 15626]],\n", " [[13800, 41269, 31221]],\n", " [[7320, 632, 1037, 165]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[2711, 23070, 9089, 14035, 3309, 876]],\n", " [[5429, 2049, 16408]],\n", " [[2893, 13345, 263, 6304, 415, 281, 109, 37313, 3314, 139]],\n", " [[44558, 991, 853, 4077, 873, 2768, 2258, 12150]],\n", " [[1470, 390, 18, 632, 865, 3512, 165]],\n", " [[580, 3600, 315, 274, 4, 347, 4]],\n", " [[312, 1829, 248, 18974, 354, 274, 4, 347, 4]],\n", " [[3426, 274, 4, 347, 4]],\n", " [[21774, 632, 1037, 165]],\n", " [[896, 604, 18, 632, 4191, 165]],\n", " [[4436, 26827, 906, 289, 1140, 763, 6070, 5413, 2009]],\n", " [[5429, 221, 4438, 412]],\n", " [[1211, 2141, 274, 4, 347, 4]],\n", " [[726, 12, 534, 4759, 15997, 1847, 2009]],\n", " [[4998, 953, 7104]],\n", " [[315, 532, 604, 18, 632, 4191, 165]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[21774, 632, 1037, 165]],\n", " [[1221, 632, 5259, 1037, 165]],\n", " [[5429, 13913, 530, 12, 17986, 1001, 264, 705, 8224, 330, 1879, 2348]],\n", " [[28187, 687, 18612, 32825, 24969, 163, 8982, 2133]],\n", " [[4152, 274, 4, 347, 4]],\n", " [[3417, 36802, 5429]],\n", " [[2000, 632, 1037, 165]],\n", " [[25305, 8, 26288, 3733, 1417, 1243, 632, 1037, 165]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[11666, 274, 4, 347, 4]],\n", " [[6748, 2723, 9697, 25452, 338, 12109]],\n", " [[6371, 102, 1209, 1075, 274, 4, 347, 4]],\n", " [[2009, 29018, 10221, 2684, 4838, 281, 4989]],\n", " [[4152, 274, 4, 347, 4]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[3426, 274, 4, 347, 4]],\n", " [[5429, 229, 5079, 282, 1630, 271]],\n", " [[2009, 29018, 10221, 2684, 23654, 9401]],\n", " [[9692, 274, 4, 347, 4]],\n", " [[20, 4182, 677, 687, 29689, 6409, 1916]],\n", " [[7296, 271, 8726, 12612]],\n", " [[2822, 6525, 354, 4317, 7474, 118, 1140]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[2529, 119, 3671, 35960]],\n", " [[25305, 8, 26288, 3733, 1417, 1243, 632, 1037, 165]],\n", " [[4619, 26769, 4843, 242, 2005, 6945]],\n", " [[580, 14312, 11645, 19032, 274, 4, 347, 4]],\n", " [[14056, 369, 4680, 274, 4, 347, 4]],\n", " [[1156, 632, 5259, 1037, 165]],\n", " [[5092, 632, 1037, 165]],\n", " [[7224, 597, 19643, 1688, 3999, 1243]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[208, 4214, 15333, 5429]],\n", " [[96, 242, 366, 13519, 625, 4733]],\n", " [[14993, 5150, 10888, 19864, 354, 274, 1140, 4691, 179]],\n", " [[274, 530, 6015, 255, 2558, 4955, 17010]],\n", " [[255, 14744, 632, 1037, 165]],\n", " [[726, 12, 725, 718, 337, 208, 5268]],\n", " [[826, 2583, 12, 24667, 863]],\n", " [[208, 1741, 19209, 19380, 12, 565, 677, 47497]],\n", " [[6015, 16641, 163, 20997]],\n", " [[4677, 254, 4992, 5429]],\n", " [[9096, 3497, 632, 5259, 1037, 165]],\n", " [[315, 532, 604, 18, 632, 4191, 165]],\n", " [[12919, 274, 4, 347, 4]],\n", " [[391, 1101, 632, 1037, 165]],\n", " [[15607, 412, 274, 4, 347, 4]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[5429, 13985, 405, 6130, 14330]],\n", " [[5429, 16706, 90, 7228, 229, 3671, 8502]],\n", " [[6253, 846, 5620, 354, 3321]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[11141, 281, 3060, 4488, 274, 4, 347, 4]],\n", " [[2910, 632, 1037, 165]],\n", " [[289, 24812, 523, 1456, 108, 254, 264, 3952, 274, 4, 347, 4]],\n", " [[726, 4417, 338, 4998]],\n", " [[13077, 412, 83, 4, 597, 4, 347, 4]],\n", " [[2032, 11850, 257, 5429]],\n", " [[5302, 2681, 1243, 967, 366, 274, 4, 347, 4]],\n", " [[33445, 14511, 3109]],\n", " [[2910, 632, 1037, 165]],\n", " [[384, 10839, 642, 493, 5366, 2601]],\n", " [[4152, 305, 4, 597, 4, 347, 4]],\n", " [[5092, 632, 1037, 165]],\n", " [[12723, 12130, 1178]],\n", " [[1156, 632, 5259, 1037, 165]],\n", " [[9692, 274, 4, 347, 4]],\n", " [[11536, 632, 1037, 165]],\n", " [[1211, 6518, 8441]],\n", " [[21774, 632, 1037, 165]],\n", " [[1221, 390, 18, 632, 4191, 165]],\n", " [[5028, 632, 1037, 165]],\n", " [[11437, 632, 5259, 1037, 165]],\n", " [[5706, 274, 4, 347, 4]],\n", " [[497, 5638, 405, 366, 274, 4, 347, 4]],\n", " [[2009, 27417, 2684, 2884, 1113, 9401]],\n", " [[248, 11579, 11631, 3785, 1168, 263, 4612]],\n", " [[18490, 632, 5259, 1037, 165]],\n", " [[5703, 38901, 4216]],\n", " [[289, 39933, 525, 625, 271]],\n", " [[5926, 2032, 16248, 5429]],\n", " [[4436, 29, 385, 108, 11094, 4947, 11249, 3663, 13324]],\n", " [[234, 1277, 21402, 211, 6472, 102, 42191, 11591]],\n", " [[726, 12, 3609, 102, 873, 230, 3632]],\n", " [[83, 4, 347, 4, 7338]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[2822, 3622, 12612]],\n", " [[4644, 632, 5259, 1037, 165]],\n", " [[798, 632, 1037, 165]],\n", " [[840, 873, 873, 726, 7746, 3572, 2009]],\n", " [[9096, 3497, 632, 5259, 1037, 165]],\n", " [[2009, 29018, 10221, 2684, 4119, 6303, 271, 1168]],\n", " [[1775, 438, 10810, 4936, 15247, 274, 4, 347, 4]],\n", " [[5429, 4612, 163, 5269, 30919, 594]],\n", " [[29018, 10221, 2684, 2893, 13345, 263, 8062]],\n", " [[22256, 2565, 632, 1037, 165]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[2910, 632, 1037, 165]],\n", " [[12933, 632, 1037, 165]],\n", " [[1491, 1872, 413, 274, 4, 347, 4]],\n", " [[14993, 9504, 366, 274, 4, 347, 4]],\n", " [[4273, 853, 424, 315, 274, 4, 347, 4]],\n", " [[1775, 438, 10810, 5477, 19067, 274, 4, 347, 4]],\n", " [[274, 4, 347, 4, 2848, 139]],\n", " [[1063, 611, 493, 272, 6106, 1277, 11936, 7771]],\n", " [[726, 12, 8138, 10810, 4998]],\n", " [[4341, 3671, 642, 1033, 5429]],\n", " [[5295, 632, 5259, 1037, 165]],\n", " [[5429, 4612, 274, 15035, 1977]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[13287, 12, 25093, 7829, 40236, 2711]],\n", " [[2822, 8957, 1777]],\n", " [[12932, 534, 43130, 22590, 225, 10436]],\n", " [[8700, 632, 1037, 165]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[1156, 632, 5259, 1037, 165]],\n", " [[1221, 632, 5259, 1037, 165]],\n", " [[14605, 632, 5259, 1037, 165]],\n", " [[9601, 163, 8371, 14393]],\n", " [[5302, 1499, 4544, 274, 4, 347, 4]],\n", " [[2822, 14585, 2550, 625]],\n", " [[17609, 632, 1037, 165]],\n", " [[3864, 102, 35020, 354, 18440, 1073, 4193, 102, 5429]],\n", " [[3317, 13376]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[208, 4, 574, 4, 1664, 506, 2426]],\n", " [[13800, 41269, 31221]],\n", " [[468, 2582, 29, 267, 3671, 272, 20458]],\n", " [[5244, 632, 1037, 165]],\n", " [[5429, 4594, 329, 1899, 428, 853, 1899, 83, 1780]],\n", " [[5429, 32889, 1417, 493, 4701, 30075]],\n", " [[2769, 632, 5259, 1037, 165]],\n", " [[2808, 2562, 24058, 9213, 15620]],\n", " [[7320, 632, 1037, 165]],\n", " [[5071, 19011]],\n", " [[6186, 1097, 212, 1657, 315, 274, 4, 347, 4]],\n", " [[468, 506, 574, 7602, 16408, 2691]],\n", " [[2910, 632, 1037, 165]],\n", " [[5429, 4612]],\n", " [[1127, 4494, 3321, 315, 274, 4, 347, 4]],\n", " [[8353, 412, 274, 4, 347, 4]],\n", " [[22753, 4219, 19493, 225]],\n", " [[24799, 632, 1037, 165]],\n", " [[8700, 632, 1037, 165]],\n", " [[3426, 274, 4, 347, 4]],\n", " [[188, 469, 9024]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[7320, 632, 1037, 165]],\n", " [[5926, 2032, 16248, 5429]],\n", " [[256,\n", " 1277,\n", " 21402,\n", " 530,\n", " 111,\n", " 7135,\n", " 119,\n", " 1526,\n", " 462,\n", " 10978,\n", " 649,\n", " 4726,\n", " 330,\n", " 3849,\n", " 10809,\n", " 5066,\n", " 254]],\n", " [[4380, 8271, 230, 5268]],\n", " [[5092, 632, 1037, 165]],\n", " [[14605, 632, 5259, 1037, 165]],\n", " [[13733, 632, 1037, 165]],\n", " [[2009, 13230, 5210]],\n", " [[1870, 632, 1037, 165]],\n", " [[112, 4, 5429, 3771, 25607, 7150]],\n", " [[22839, 272, 11680, 102, 6933]],\n", " [[6171, 632, 5259, 1037, 165]],\n", " [[344, 5874, 428, 11313, 28579, 2186]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[9543, 211, 329, 41757, 330, 12733]],\n", " [[19832, 6527, 19380]],\n", " [[274, 6842, 500, 289, 11993, 225, 1180]],\n", " [[21774, 632, 1037, 165]],\n", " [[5429, 3160]],\n", " [[1221, 632, 5259, 1037, 165]],\n", " [[2711, 23070, 9089, 14035, 3309, 876]],\n", " [[83, 4, 347, 4, 7338]],\n", " [[248, 4, 104, 4, 347, 4, 83, 10330, 459, 8797]],\n", " [[2009, 2646, 14119, 1977]],\n", " [[3870,\n", " 119,\n", " 13161,\n", " 1140,\n", " 2383,\n", " 38576,\n", " 219,\n", " 2383,\n", " 534,\n", " 24761,\n", " 90,\n", " 4101,\n", " 1140,\n", " 1069,\n", " 8624]],\n", " [[4514, 9529]],\n", " ...],\n", " 'relation': ['P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " ...],\n", " 'num_answers': [1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " ...]},\n", " '2022-Q2': {'text': [['Alex Morgan plays for .'],\n", " ['Lionel Messi plays for .'],\n", " ['Cristiano Ronaldo plays for .'],\n", " ['LeBron James plays for .'],\n", " ['Zlatan Ibrahimović plays for .'],\n", " ['Neymar plays for .'],\n", " ['Ronaldinho plays for .'],\n", " ['Megan Rapinoe plays for .'],\n", " ['Alisha Lehmann plays for .'],\n", " ['Robert Lewandowski plays for .'],\n", " ['Gianluigi Buffon plays for .'],\n", " ['Andrea Pirlo plays for .'],\n", " ['Kevin Durant plays for .'],\n", " ['Lukas Podolski plays for .'],\n", " ['Lewis Hamilton plays for .'],\n", " ['Formiga plays for .'],\n", " ['Naomi Osaka plays for .'],\n", " ['José Mourinho plays for .'],\n", " ['Luis Suárez plays for .'],\n", " ['Franck Ribéry plays for .'],\n", " ['Tim Cahill plays for .'],\n", " ['Chris Froome plays for .'],\n", " ['Mario Balotelli plays for .'],\n", " ['Lieke Martens plays for .'],\n", " ['Manuel Neuer plays for .'],\n", " ['Lindsey Horan plays for .'],\n", " ['Javier Mascherano plays for .'],\n", " ['Mark Cavendish plays for .'],\n", " ['James Rodríguez plays for .'],\n", " ['Hope Solo plays for .'],\n", " ['Diego Forlán plays for .'],\n", " ['Sebastián Abreu plays for .'],\n", " ['Carli Lloyd plays for .'],\n", " ['Marta plays for .'],\n", " ['Javier Hernández plays for .'],\n", " ['Yuzvendra Chahal plays for .'],\n", " ['Fernando Alonso plays for .'],\n", " ['Thiago Silva plays for .'],\n", " ['Andrés Iniesta plays for .'],\n", " ['Keisuke Honda plays for .'],\n", " ['Marianne Vos plays for .'],\n", " ['Sergio Ramos plays for .'],\n", " ['Dani Alves plays for .'],\n", " ['Pepe Reina plays for .'],\n", " ['Giovani dos Santos plays for .'],\n", " ['Ricardo Quaresma plays for .'],\n", " ['Mesut Özil plays for .'],\n", " ['Freddy Adu plays for .'],\n", " ['Cristiane Rozeira plays for .'],\n", " ['Maya Moore plays for .'],\n", " ['Giorgio Chiellini plays for .'],\n", " ['Bastian Schweinsteiger plays for .'],\n", " ['Luis Scola plays for .'],\n", " ['Jérôme Boateng plays for .'],\n", " ['Kevin-Prince Boateng plays for .'],\n", " ['Vincenzo Nibali plays for .'],\n", " ['Egidio Arévalo Rios plays for .'],\n", " ['Dwyane Wade plays for .'],\n", " ['Dwight Howard plays for .'],\n", " ['Cesc Fàbregas plays for .'],\n", " ['Nigel de Jong plays for .'],\n", " ['Colin Kazim-Richards plays for .'],\n", " ['Pierre-Emerick Aubameyang plays for .'],\n", " ['David Alaba plays for .'],\n", " ['Xherdan Shaqiri plays for .'],\n", " ['Marc Gasol plays for .'],\n", " ['Laura Kenny plays for .'],\n", " ['Aristide Bancé plays for .'],\n", " ['Philippe Gilbert plays for .'],\n", " ['Edinson Cavani plays for .'],\n", " ['Breanna Stewart plays for .'],\n", " ['Bruno Alves plays for .'],\n", " ['Ali Krieger plays for .'],\n", " ['Antoine Griezmann plays for .'],\n", " ['Mohamed Salah plays for .'],\n", " ['Beto plays for .'],\n", " ['Memphis Depay plays for .'],\n", " ['Pablo Zabaleta plays for .'],\n", " ['Jozy Altidore plays for .'],\n", " ['Steve Nash plays for .'],\n", " ['Shinji Okazaki plays for .'],\n", " ['Maya Yoshida plays for .'],\n", " ['Gary Cahill plays for .'],\n", " ['Guillermo Ochoa plays for .'],\n", " ['Serge Gnabry plays for .'],\n", " ['Christine Sinclair plays for .'],\n", " ['Paul Pogba plays for .'],\n", " ['Hugo Almeida plays for .'],\n", " [\"Raïs M'Bolhi plays for .\"],\n", " ['Peter Sagan plays for .'],\n", " ['Joel Campbell plays for .'],\n", " ['Luka Modrić Papá de Lionel Messi plays for .'],\n", " ['Elia Viviani plays for .'],\n", " ['Toni Kroos plays for .'],\n", " ['Giulia Gwinn plays for .'],\n", " ['Ellen van Dijk plays for .'],\n", " ['Lucas Barrios plays for .'],\n", " ['Daniel Fernandes plays for .'],\n", " ['Juan Mata plays for .'],\n", " ['Michael Bradley plays for .'],\n", " ['Gonzalo Higuaín plays for .'],\n", " ['Greg Van Avermaet plays for .'],\n", " ['Alexandra Lacrabère plays for .'],\n", " ['Javi Martínez plays for .'],\n", " ['Davide Rebellin plays for .'],\n", " ['Kyrie Irving plays for .'],\n", " ['Sebastian Vettel plays for .'],\n", " ['Ingrid Syrstad Engen plays for .'],\n", " ['Rigoberto Urán plays for .'],\n", " ['John Arne Riise plays for .'],\n", " ['Tobin Heath plays for .'],\n", " ['Hedvig Lindahl plays for .'],\n", " ['Marcelo plays for .'],\n", " ['Radamel Falcao plays for .'],\n", " ['Jakob Fuglsang plays for .'],\n", " ['Marko Marin plays for .'],\n", " ['Mikel John Obi plays for .'],\n", " ['Hulk plays for .'],\n", " ['Rudy Fernández plays for .'],\n", " ['Lizzie Deignan plays for .'],\n", " ['Zé Roberto plays for .'],\n", " ['Rohan Dennis plays for .'],\n", " ['Łukasz Fabiański plays for .'],\n", " ['Mats Hummels plays for .'],\n", " ['Diego Ribas da Cunha plays for .'],\n", " ['Rafinha plays for .'],\n", " ['Vladimir Stojković plays for .'],\n", " ['Ángel Di María plays for .'],\n", " ['Chris Paul plays for .'],\n", " ['Rosana dos Santos Augusto plays for .'],\n", " ['Manuel da Costa plays for .'],\n", " ['Alexis Sánchez plays for .'],\n", " ['Sophie Schmidt plays for .'],\n", " ['Pepe plays for .'],\n", " ['Philippe Coutinho plays for .'],\n", " ['Sadio Mané plays for .'],\n", " ['Christen Press plays for .'],\n", " ['Keylor Navas plays for .'],\n", " ['Bojan Krkić plays for .'],\n", " ['Shinji Kagawa plays for .'],\n", " ['Steve Mandanda plays for .'],\n", " ['Miodrag Anđelković plays for .'],\n", " ['Thibaut Courtois plays for .'],\n", " ['Eiður Guðjohnsen plays for .'],\n", " ['Jakub Błaszczykowski plays for .'],\n", " ['Henning Berg plays for .'],\n", " ['Annemiek van Vleuten plays for .'],\n", " ['Álvaro Pereira plays for .'],\n", " ['Florent Sinama Pongolle plays for .'],\n", " ['Miljan Mrdaković plays for .'],\n", " ['Mario Götze plays for .'],\n", " ['Jô plays for .'],\n", " ['Claudio Pizarro plays for .'],\n", " ['Nani plays for .'],\n", " ['Ivan Rakitić plays for .'],\n", " ['Erin McLeod plays for .'],\n", " ['Peter Odemwingie plays for .'],\n", " ['Sofia Jakobsson plays for .'],\n", " ['David Luiz plays for .'],\n", " ['Jordi Alba plays for .'],\n", " ['Nicklas Bendtner plays for .'],\n", " ['Junichi Inamoto plays for .'],\n", " ['Niklas Süle plays for .'],\n", " ['Diego Godín plays for .'],\n", " ['Yuto Nagatomo plays for .'],\n", " ['Olivier Giroud plays for .'],\n", " ['Tom Dumoulin plays for .'],\n", " [\"Kelley O'Hara plays for .\"],\n", " ['Lisa De Vanna plays for .'],\n", " ['Rafael van der Vaart plays for .'],\n", " ['Elena Delle Donne plays for .'],\n", " ['Sakina Karchaoui plays for .'],\n", " ['John Degenkolb plays for .'],\n", " ['Brittney Griner plays for .'],\n", " ['Shunsuke Nakamura plays for .'],\n", " ['David Silva plays for .'],\n", " ['Axel Witsel plays for .'],\n", " ['Andrés Guardado plays for .'],\n", " ['Kylian Mbappé plays for .'],\n", " ['Tom Brady plays for .'],\n", " ['Micah Richards plays for .'],\n", " ['Łukasz Piszczek plays for .'],\n", " ['Royston Drenthe plays for .'],\n", " ['Gareth Bale plays for .'],\n", " ['Sergio Romero plays for .'],\n", " ['Filipe Luís plays for .'],\n", " ['Romelu Lukaku plays for .'],\n", " ['Erling Haaland plays for .'],\n", " ['Arturo Vidal plays for .'],\n", " ['Jermaine Jones plays for .'],\n", " ['Eden Hazard plays for .'],\n", " ['Demba Ba plays for .'],\n", " ['Nuri Şahin plays for .'],\n", " ['Hugo Lloris plays for .'],\n", " ['Morgan Schneiderlin plays for .'],\n", " ['Kazuyoshi Miura plays for .'],\n", " ['Henrikh Mkhitaryan plays for .'],\n", " ['Ryan Babel plays for .'],\n", " ['Aron Baynes plays for .'],\n", " ['Johan Djourou plays for .'],\n", " ['Kevin De Bruyne plays for .'],\n", " ['Shinji Ono plays for .'],\n", " ['Idriss Carlos Kameni plays for .'],\n", " ['Fernando Llorente plays for .'],\n", " ['Boris Diaw plays for .'],\n", " ['Anja Mittag plays for .'],\n", " ['Joakim Noah plays for .'],\n", " ['Ricky Rubio plays for .'],\n", " ['Stephan Andersen plays for .'],\n", " [\"Andrés D'Alessandro plays for .\"],\n", " ['Claudio Bravo plays for .'],\n", " ['Becky Sauerbrunn plays for .'],\n", " ['Rafinha plays for .'],\n", " ['Blaise Matuidi plays for .'],\n", " ['Cristian Rodríguez plays for .'],\n", " ['Marek Hamšík plays for .'],\n", " ['Ciro Immobile plays for .'],\n", " [\"Dame N'Doye plays for .\"],\n", " ['Raphaël Varane plays for .'],\n", " ['Roger Kluge plays for .'],\n", " ['Asmir Begović plays for .'],\n", " ['Christian Eriksen plays for .'],\n", " ['Luiz Gustavo plays for .'],\n", " ['Hamit Altıntop plays for .'],\n", " ['Brad Guzan plays for .'],\n", " ['André Ayew plays for .'],\n", " ['César Azpilicueta plays for .'],\n", " ['Éric Maxim Choupo-Moting plays for .'],\n", " ['Shkodran Mustafi plays for .'],\n", " ['Caroline Seger plays for .'],\n", " ['Fernando Muslera plays for .'],\n", " ['Leonardo Bonucci plays for .'],\n", " ['Nordin Amrabat plays for .'],\n", " ['Richard Kingson plays for .'],\n", " ['Jonny Evans plays for .'],\n", " ['Jonathan de Guzmán plays for .'],\n", " ['Yannick Bolasie plays for .'],\n", " ['Dante Bonfim Costa Santos plays for .'],\n", " ['Park Chu-young plays for .'],\n", " ['Lucas Hernandez plays for .'],\n", " ['Sonny Bill Williams plays for .'],\n", " ['Sydney Leroux plays for .'],\n", " ['Victor Moses plays for .'],\n", " ['Elano plays for .'],\n", " ['Asamoah Gyang plays for .'],\n", " ['Grzegorz Krychowiak plays for .'],\n", " ['Achraf Hakim plays for .'],\n", " ['John Guidetti plays for .'],\n", " ['Salomon Kalou plays for .'],\n", " ['Karen Bardsley plays for .'],\n", " ['Cédric Soares plays for .'],\n", " ['Dietmar Hamann plays for .'],\n", " ['Mark Milligan plays for .'],\n", " ['Yūki Nagasato plays for .'],\n", " ['Pedro plays for .'],\n", " ['Jack Wilshere plays for .'],\n", " ['Albert Riera plays for .'],\n", " ['Florent Malouda plays for .'],\n", " ['Eduardo Carvalho plays for .'],\n", " ['Maicon plays for .'],\n", " ['Giuseppe Rossi plays for .'],\n", " ['Samir Nasri plays for .'],\n", " ['Andrija Kaluđerović plays for .'],\n", " ['Sarah Storey plays for .'],\n", " ['Nairo Quintana plays for .'],\n", " ['Leroy Sané plays for .'],\n", " ['Eiji Kawashima plays for .'],\n", " ['Ana Dabović plays for .'],\n", " ['Raúl Albiol plays for .'],\n", " ['Bryan Ruiz plays for .'],\n", " ['Gabriel Torres plays for .'],\n", " ['Éver Banega plays for .'],\n", " ['Simon Kjær plays for .'],\n", " ['Willy Caballero plays for .'],\n", " ['Sergio Rodríguez plays for .'],\n", " ['Luuk de Jong plays for .'],\n", " ['Eduardo Vargas plays for .'],\n", " ['Ivan Perišić plays for .'],\n", " ['Michał Kwiatkowski plays for .'],\n", " ['Diego Reyes plays for .'],\n", " ['Lars Hirschfeld plays for .'],\n", " ['Abby Dahlkemper plays for .'],\n", " ['Daley Blind plays for .'],\n", " ['Roko Ukić plays for .'],\n", " ['Pablo Contreras plays for .'],\n", " ['Nando de Colo plays for .'],\n", " ['Steph Houghton plays for .'],\n", " ['Jermain Defoe plays for .'],\n", " ['Divock Origi plays for .'],\n", " ['el tete plays for .'],\n", " ['Maximiliano Richeze plays for .'],\n", " ['Ashleigh Barty plays for .'],\n", " ['Paulinho plays for .'],\n", " ['Curao Ql plays for .'],\n", " ['Marquinhos plays for .'],\n", " ['Julie Ertz plays for .'],\n", " ['Sebastián Eguren plays for .'],\n", " ['Marco Fabián plays for .'],\n", " ['Edvald Boasson-Hagen plays for .'],\n", " ['João Moutinho plays for .'],\n", " ['İlkay Gündoğan plays for .'],\n", " ['Gary Medel plays for .'],\n", " ['Karim Ziani plays for .'],\n", " ['Christian Bolaños plays for .'],\n", " ['Gonzalo Jara plays for .'],\n", " ['David De Gea plays for .'],\n", " ['Daniel Sturridge plays for .'],\n", " ['Esteban Cambiasso plays for .'],\n", " ['Gabriel Enrique Gómez plays for .'],\n", " ['Douglas Costa plays for .'],\n", " ['Michy Batshuayi plays for .'],\n", " ['Yakubu plays for .'],\n", " ['José Fonte plays for .'],\n", " ['Rui Costa plays for .'],\n", " ['Salvatore Sirigu plays for .'],\n", " ['Kasper Schmeichel plays for .'],\n", " ['Roman Bürki plays for .'],\n", " ['Víctor Claver plays for .'],\n", " ['Arkadiusz Milik plays for .'],\n", " ['Daniel Ricciardo plays for .'],\n", " ['Thomas Delaney plays for .'],\n", " ['Kevin Love plays for .'],\n", " ['Stéphane Mbia plays for .'],\n", " ['Tatiana Guderzo plays for .'],\n", " ['Martín Demichelis plays for .'],\n", " ['Siraba Dembele plays for .'],\n", " ['Damian Lillard plays for .'],\n", " ['Richie Porte plays for .'],\n", " ['Sébastien Haller plays for .'],\n", " ['Edin Džeko plays for .'],\n", " ['Daisuke Matsui plays for .'],\n", " ['José Sosa plays for .'],\n", " ['Nelson Valdez plays for .'],\n", " ['Alexander Kristoff plays for .'],\n", " ['Luis Advíncula plays for .'],\n", " ['Danilo Pereira plays for .'],\n", " [\"N'Golo Kanté plays for .\"],\n", " ['Duško Tošić plays for .'],\n", " ['Ricardo Rodriguez plays for .'],\n", " ['Shane Smeltz plays for .'],\n", " ['Marcelo Martins Moreno plays for .'],\n", " ['Peter Crouch plays for .'],\n", " ['Simon Gerrans plays for .'],\n", " ['Mark González plays for .'],\n", " ['Kevin Mirallas plays for .'],\n", " ['Gervinho plays for .'],\n", " ['Alex Song plays for .'],\n", " ['Glenn Whelan plays for .'],\n", " ['Raul Meireles plays for .'],\n", " ['Ali Riley plays for .'],\n", " ['Anthony Davis plays for .'],\n", " ['Sani Kaita plays for .'],\n", " ['Christie Pearce plays for .'],\n", " ['Luís Fabiano plays for .'],\n", " ['Jan Vertonghen plays for .'],\n", " ['Thiago Alcântara plays for .'],\n", " ['João Mário plays for .'],\n", " ['Alisson plays for .'],\n", " ['Fridolina Rolfö plays for .'],\n", " ['Wout van Aert plays for .'],\n", " ['Alphonse Areola plays for .'],\n", " ['Mousa Dembélé plays for .'],\n", " ['Babett Peter plays for .'],\n", " ['Fabiana da Silva Simões plays for .'],\n", " ['Blerim Džemaili plays for .'],\n", " ['Adriana Leon plays for .'],\n", " ['Naohiro Takahara plays for .'],\n", " ['oscar perez plays for .'],\n", " ['Gaël Kakuta plays for .'],\n", " ['Isco Alarcón plays for .'],\n", " ['Gabriel Tamaș plays for .'],\n", " ['Jaroslav Drobný plays for .'],\n", " ['Raheem Sterling plays for .'],\n", " ['Samuel Umtiti plays for .'],\n", " ['Amido Baldé plays for .'],\n", " ['Brad Jones plays for .'],\n", " ['Adil Rami plays for .'],\n", " ['Miguel Layún plays for .'],\n", " ['Jan Koller plays for .'],\n", " ['Dmitri Alenichev plays for .'],\n", " ['Marco Asensio plays for .'],\n", " ['Michael Mørkøv plays for .'],\n", " ['Kendall Waston plays for .'],\n", " ['Milan Borjan plays for .'],\n", " ['Kamil Glik plays for .'],\n", " ['Roman Neustädter plays for .'],\n", " ['Marcelo Díaz plays for .'],\n", " ['Jesé Rodríguez plays for .'],\n", " ['Roberto Acuña plays for .'],\n", " ['Ricardo Faty plays for .'],\n", " ['Verónica Boquete plays for .'],\n", " ['Danilo Luiz plays for .'],\n", " ['Olga Zabelinskaya plays for .'],\n", " ['Darron Gibson plays for .'],\n", " ['James Harden plays for .'],\n", " ['Russell Westbrak plays for .'],\n", " ['Jung Sung-ryong plays for .'],\n", " ['Melissa Tancredi plays for .'],\n", " ['Daryl Impey plays for .'],\n", " ['Henrik Ojamaa plays for .'],\n", " ['Leon Goretzka plays for .'],\n", " ['Pablo Hernández Domínguez plays for .'],\n", " ['Tomáš Necid plays for .'],\n", " ['Joseph Yobo plays for .'],\n", " ['Rafał Majka plays for .'],\n", " ['Bruma plays for .'],\n", " ['Samuel Inkoom plays for .'],\n", " ['Robbie Rogers plays for .'],\n", " ['Robert de Pinho de Souza plays for .'],\n", " ['Georges Mandjeck plays for .'],\n", " ['Lucho González plays for .'],\n", " ['Paul-Georges Ntep plays for .'],\n", " ['Ander Herrera plays for .'],\n", " ['Luis León Sánchez plays for .'],\n", " ['Érika Cristiano dos Santos plays for .'],\n", " ['Kingsley Coman plays for .'],\n", " ['Aymeric Laporte plays for .'],\n", " ['Primož Roglič plays for .'],\n", " ['Charles Aránguiz plays for .'],\n", " ['Julian Alaphilippe plays for .'],\n", " ['André Silva plays for .'],\n", " ['Elton Brand plays for .'],\n", " ['Nikita Rukavytsya plays for .'],\n", " ['Marc-André ter Stegen plays for .'],\n", " ['Steven Davis plays for .'],\n", " ['Anderson plays for .'],\n", " ['Matthias Ginter plays for .'],\n", " ['Haris Seferovic plays for .'],\n", " ['Rui Patrício plays for .'],\n", " ['Wojciech Szczęsny plays for .'],\n", " ['Rúrik Gíslason plays for .'],\n", " ['Oscar dos Santos Emboaba Júnior plays for .'],\n", " ['Koo Ja-cheol plays for .'],\n", " ['Lucy Bronze plays for .'],\n", " ['Crystal Dunn plays for .'],\n", " ['Toby Alderweireld plays for .'],\n", " ['Penalty in the UEL final plays for .'],\n", " ['Joe Hart plays for .'],\n", " ['Kepa Arrizabalaga plays for .'],\n", " ['Giannis Antetokounmpo plays for .'],\n", " ['Besart Berisha plays for .'],\n", " ['Willian plays for .'],\n", " ['Obafemi Martins plays for .'],\n", " ['Moussa Maâzou plays for .'],\n", " ['Alexei Eremenko plays for .'],\n", " ['Moussa Dembélé plays for .'],\n", " ['Ashlyn Harris plays for .'],\n", " ['Chris Wood plays for .'],\n", " ['Reto Ziegler plays for .'],\n", " ['Antonio Nocerino plays for .'],\n", " ['Ji Dong-won plays for .'],\n", " ['Carlos Salcido plays for .'],\n", " ['Oribe Peralta plays for .'],\n", " ['Marco Ureña plays for .'],\n", " ['Antar Yahia plays for .'],\n", " ['Georginio Wijnaldum plays for .'],\n", " ['Sam Kerr plays for .'],\n", " ['Valeri Bojinov plays for .'],\n", " ['Luis Tejada plays for .'],\n", " ['Gökhan İnler plays for .'],\n", " ['Javi García plays for .'],\n", " ['Nicolás Lodeiro plays for .'],\n", " ['Raúl Jiménez plays for .'],\n", " ['Janine Beckie plays for .'],\n", " ['Arda Turan plays for .'],\n", " ['Selim Benachour plays for .'],\n", " ['Mickaël Gelabale plays for .'],\n", " ['Daniel González Güiza plays for .'],\n", " ['Jackie Groenen plays for .'],\n", " ['John Mensah plays for .'],\n", " ['Federico Fazio plays for .'],\n", " ['Carl Medjani plays for .'],\n", " ['Ahmed Musa plays for .'],\n", " ['Essam El-Hadary plays for .'],\n", " ['Vedad Ibišević plays for .'],\n", " ['Marouane Fellaini plays for .'],\n", " ['Miralem Pjanić plays for .'],\n", " ['Jorginho plays for .'],\n", " ['Lacina Traoré plays for .'],\n", " ['Christiane Endler plays for .'],\n", " ['Alyssa Naeher plays for .'],\n", " ['Steven Nzonzi plays for .'],\n", " ['Kim Dong-jin plays for .'],\n", " ['Joshua Kimmich plays for .'],\n", " ['Emre Can plays for .'],\n", " ['Nicolas Batum plays for .'],\n", " ['José Calderón plays for .'],\n", " ['Emiliano Insúa plays for .'],\n", " ['Stephan El Shaarawy plays for .'],\n", " ['Casemiro plays for .'],\n", " ['Júnior Díaz plays for .'],\n", " ['Jodie Taylor plays for .'],\n", " ['Robin Olsen plays for .'],\n", " ['Héctor Herrera plays for .'],\n", " ['Sebastian Giovinco plays for .'],\n", " ['Rodrigo plays for .'],\n", " ['Fernando Gaviria plays for .'],\n", " ['Oleksandr Aliyev plays for .'],\n", " ['Florian Thauvin plays for .'],\n", " ['Kim Bo-kyung plays for .'],\n", " ['Abel Hernández plays for .'],\n", " ['Thorgan Hazard plays for .'],\n", " ['Gotoku Sakai plays for .'],\n", " ['Odion Ighalo plays for .'],\n", " ['Jasmin Glaesser plays for .'],\n", " ['Eliaquim Mangala plays for .'],\n", " ['Felipe Melo plays for .'],\n", " ['Gábor Király plays for .'],\n", " ['Herculez Gomez plays for .'],\n", " ['Paulo da Silva plays for .'],\n", " ['Héctor Moreno plays for .'],\n", " ['Cacau plays for .'],\n", " ['Ion Izagirre plays for .'],\n", " ['Denis Cheryshev plays for .'],\n", " ['Anthony Annan plays for .'],\n", " ['Darius Songaila plays for .'],\n", " ['Morgan De Sanctis plays for .'],\n", " ['Joe Ingles plays for .'],\n", " ['Paco Alcácer plays for .'],\n", " ['Sara Däbritz plays for .'],\n", " ['Nikola Mirotić plays for .'],\n", " ['Adlène Guedioura plays for .'],\n", " ['Fábio Coentrão plays for .'],\n", " ['Scott Carson plays for .'],\n", " ['Granit Xhaka plays for .'],\n", " ['Ashkan Dejagah plays for .'],\n", " ['Yevhen Seleznyov plays for .'],\n", " ['Makoto Hasebe plays for .'],\n", " ['William Troost-Ekong plays for .'],\n", " ['Mauro Zárate plays for .'],\n", " ['Seydou Doumbia plays for .'],\n", " ['Tomáš Pekhart plays for .'],\n", " ['Jeffrén Suárez plays for .'],\n", " ['Kurt Zouma plays for .'],\n", " ['Nicolás Otamendi plays for .'],\n", " ['Silvestre Varela plays for .'],\n", " ['Hiroki Sakai plays for .'],\n", " ['Geoffrey Kondogbia plays for .'],\n", " ['Antonio Rüdiger plays for .'],\n", " ['Danko Lazović plays for .'],\n", " ['Admir Mehmedi plays for .'],\n", " ['Javier Aquino plays for .'],\n", " ['Kelsey Plum plays for .'],\n", " ['Teemu Pukki plays for .'],\n", " ['Grafite plays for .'],\n", " ['Lisa Brennauer plays for .'],\n", " ['Dejan Lovren plays for .'],\n", " ['Niki Terpstra plays for .'],\n", " ['Marcelinho Paraíba plays for .'],\n", " ['Mix Diskerud plays for .'],\n", " ['David Ospina plays for .'],\n", " ['Alexander Sørloth plays for .'],\n", " ['Manuel Fernandes plays for .'],\n", " ['Marek Saganowski plays for .'],\n", " ['Gabriel Barbosa plays for .'],\n", " ['Besart Abdurahimi plays for .'],\n", " ['Matthew Spiranovic plays for .'],\n", " ['Josip Tadić plays for .'],\n", " ['Younis Mahmoud plays for .'],\n", " ['Jordan Ayew plays for .'],\n", " ['Miguel Lopes plays for .'],\n", " ['Martin Hansen plays for .'],\n", " ['Pierre Bengtsson plays for .'],\n", " ['Taye Taiwo plays for .'],\n", " ['David Carney plays for .'],\n", " ['Ángel Guirado plays for .'],\n", " ['Roberto Jiménez Gago plays for .'],\n", " ['Karen Carney plays for .'],\n", " ['Amin Younes plays for .'],\n", " ['Javier Balboa plays for .'],\n", " ['Francisco Javier Rodríguez plays for .'],\n", " ['Éder plays for .'],\n", " ['Daniëlle van de Donk plays for .'],\n", " ['Reza Ghoochannejhad plays for .'],\n", " ['Kaylyn Kyle plays for .'],\n", " ['André Lotterer plays for .'],\n", " ['Daniel Wass plays for .'],\n", " ['Matías Fernandez plays for .'],\n", " ['Harry Kane plays for .'],\n", " ['Son Heung-min plays for .'],\n", " ['Cléopatre Darleux plays for .'],\n", " ['Tony Gallopin plays for .'],\n", " ['Yann Sommer plays for .'],\n", " ['Eniola Aluko plays for .'],\n", " ['Tyson Chandler plays for .'],\n", " ['Anthony Martial plays for .'],\n", " ['Greg Henderson plays for .'],\n", " ['Kiko Casillas plays for .'],\n", " ['Nilla Fischer plays for .'],\n", " ['Leon Balogun plays for .'],\n", " ['James Milner plays for .'],\n", " ['Cameron Meyer plays for .'],\n", " ['Benjamin Pavard plays for .'],\n", " ['Luís Leal plays for .'],\n", " ['Renato Sanches plays for .'],\n", " ['Mathew Ryan plays for .'],\n", " ['Shuichi Gonda plays for .'],\n", " ['Pierre-Emile Højbjerg plays for .'],\n", " ['Simon Mignolet plays for .'],\n", " ['Ben Sahar plays for .'],\n", " ['Mana Iwabuchi plays for .'],\n", " ['Desiree Scott plays for .'],\n", " ['Quinn plays for .'],\n", " ['Viktor Fischer plays for .'],\n", " ['Ron-Robert Zieler plays for .'],\n", " ['Alex Sandro plays for .'],\n", " ['Damien Le Tallec plays for .'],\n", " ['Tiago Mendes plays for .'],\n", " ['Martin Ødegaard plays for .'],\n", " ['Olarenwaju Kayode plays for .'],\n", " ['Fraser Forster plays for .'],\n", " ['Corentin Tolisso plays for .'],\n", " ['Walter Pandiani (CR7 su papá) plays for .'],\n", " ['Justo Villar plays for .'],\n", " ['Francisco Arrué plays for .'],\n", " ['Abel Aguilar plays for .'],\n", " ['Esmaël Gonçalves plays for .'],\n", " ['Sulley Muntari plays for .'],\n", " ['Izet Hajrović plays for .'],\n", " ['Ragnar Klavan plays for .'],\n", " ['Didier Zokora plays for .'],\n", " ['Oscar Ustari plays for .'],\n", " ['Mitchell Langerak plays for .'],\n", " ['Yassine Bounou plays for .'],\n", " ['Hakim Ziyech plays for .'],\n", " ['Lydia Williams plays for .'],\n", " ['Gabriel Jesus plays for .'],\n", " ['Álvaro Fernández plays for .'],\n", " ['Abdoulaye Ba plays for .'],\n", " ['Julian Draxler plays for .'],\n", " ['Stoycho Mladenov plays for .'],\n", " ['Raphaël Guerreiro plays for .'],\n", " ['Simão Sabrosa plays for .'],\n", " ['Anouk Hoogendijk plays for .'],\n", " ['Emanuel Pogatetz plays for .'],\n", " ['Yannick Carrasco plays for .'],\n", " ['Marko Arnautović plays for .'],\n", " ['Bruno Uvini plays for .'],\n", " ['Lukáš Hrádecký plays for .'],\n", " ['Charles Itandje plays for .'],\n", " ['Ján Mucha plays for .'],\n", " ['Florent Piétrus plays for .'],\n", " ['Riyad Mahrez plays for .'],\n", " ['Andre Iguodala plays for .'],\n", " ['Lasse Norman Hansen plays for .'],\n", " ['Nikos Zisis plays for .'],\n", " ['Alou Diarra plays for .'],\n", " ['Przemysław Tytoń plays for .'],\n", " ['Lucas Moura plays for .'],\n", " ['Álvaro Morata plays for .'],\n", " ['Amandine Henry plays for .'],\n", " ['Jefferson Farfán plays for .'],\n", " ['Martin Braithwaite plays for .'],\n", " ['Tom Heaton plays for .'],\n", " ['Carlos Salcedo plays for .'],\n", " ['Gabriel Torje plays for .'],\n", " ['Emily van Egmond plays for .'],\n", " ['Nicolás Laprovíttola plays for .'],\n", " ['Simon Clarke plays for .'],\n", " ['Elias Kachunga plays for .'],\n", " ['Adrián López Álvarez plays for .'],\n", " ['Maurice Edu plays for .'],\n", " ['Nelson Oliveira plays for .'],\n", " ['Aco Stojkov plays for .'],\n", " ['Charlie Davies plays for .'],\n", " ['Carlos Fernandes plays for .'],\n", " ['Thaisa plays for .'],\n", " ['Álvaro Saborío plays for .'],\n", " ['Gabriel Cichero plays for .'],\n", " ['Fernandinho plays for .'],\n", " ['Vladimir Gabulov plays for .'],\n", " ['Taylor Rochestie plays for .'],\n", " ['Sven Bender plays for .'],\n", " ['Matías Aguirregaray plays for .'],\n", " ['Wilfried Zaha plays for .'],\n", " ['Ibrahim Afellay plays for .'],\n", " ['Mateo Kovačić plays for .'],\n", " ['Matteo Darmian plays for .'],\n", " ['Nathan Jawai plays for .'],\n", " ['Jérémy Ménez plays for .'],\n", " ['Marc Bartra plays for .'],\n", " ['Éric Djemba-Djemba plays for .'],\n", " ['Tarik Elyounoussi plays for .'],\n", " ['Yacine Brahimi plays for .'],\n", " ['Omar Bravo plays for .'],\n", " ['Yuri Zhirkov plays for .'],\n", " ['Antonio Valencia plays for .'],\n", " ['Kenneth Vermeer plays for .'],\n", " ['Dmytro Chyhrynskyi plays for .'],\n", " ['Juan Manuel Iturbe plays for .'],\n", " ['Julian de Guzman plays for .'],\n", " ['Alexander Merkel plays for .'],\n", " ['Roman Eremenko plays for .'],\n", " ['Lars Bender plays for .'],\n", " ['Suk Hyun-jun plays for .'],\n", " ['Emre Mor plays for .'],\n", " ['Zoran Tošić plays for .'],\n", " ['Jonathan dos Santos plays for .'],\n", " ['Jonathan Mensah plays for .'],\n", " ['Enzo Fernández plays for .'],\n", " ['Kim Young-gwon plays for .'],\n", " ['Oscar Pérez Rojas plays for .'],\n", " ['Astrit Ajdarević plays for .'],\n", " ['Rolf Feltscher plays for .'],\n", " ['Darren Randolph plays for .'],\n", " ['Ivan Pelizzoli plays for .'],\n", " ['Radomir Đalović plays for .'],\n", " ['Adam Nemec plays for .'],\n", " ['Kristie Mewis plays for .'],\n", " ['Hannes Þór Halldórsson plays for .'],\n", " ['Valon Berisha plays for .'],\n", " ['Marco Donadel plays for .'],\n", " ['Ola Toivonen plays for .'],\n", " ['Winston Reid plays for .'],\n", " ['Max Kruse plays for .'],\n", " ['Saki Kumagai plays for .'],\n", " ['Branko Ilić plays for .'],\n", " ['Răzvan Raț plays for .'],\n", " ['Robert Snodgrass plays for .'],\n", " ['Viola plays for .'],\n", " ['Klay Thompson plays for .'],\n", " ['Stefan Nikolić plays for .'],\n", " ['Carlos Sainz Jr plays for .'],\n", " ['Andressa Alves da Silva plays for .'],\n", " ['Álvaro Negredo plays for .'],\n", " ['Michail Antonio plays for .'],\n", " ['José Bosingwa plays for .'],\n", " ['Atsuto Uchida plays for .'],\n", " ['Lisa Dahlkvist plays for .'],\n", " ['James Troisi plays for .'],\n", " ['Yacouba Sylla plays for .'],\n", " ['Simon Vukčević plays for .'],\n", " ['Cristian Gamboa plays for .'],\n", " ['Elisa Longo Borghini plays for .'],\n", " ['Roberto Soldado plays for .'],\n", " ['Diana Matheson plays for .'],\n", " ['Steven Caulker plays for .'],\n", " ['Ibrahima Baldé plays for .'],\n", " ['Max Meyer plays for .'],\n", " ['Mbark Boussoufa plays for .'],\n", " ['Achille Emaná plays for .'],\n", " ['Patrice Bernier plays for .'],\n", " ['Ivan Vicelich plays for .'],\n", " ['Islam Slimani plays for .'],\n", " ['Dani Ceballos plays for .'],\n", " ['Lucas Digne plays for .'],\n", " ['Nemanja Matić plays for .'],\n", " ['Andreas Pereira plays for .'],\n", " ['Franck Dja Djédjé plays for .'],\n", " ['Ethan Ampadu plays for .'],\n", " ['R.A. Dickey plays for .'],\n", " ['Yukari Kinga plays for .'],\n", " ['Ryan Bertrand plays for .'],\n", " ['Ed Clancy plays for .'],\n", " ['Cristian Săpunaru plays for .'],\n", " ['Elinton Andrade plays for .'],\n", " ['Siem de Jong plays for .'],\n", " ['Carlos Bueno plays for .'],\n", " ['Kozue Ando plays for .'],\n", " ['Jimmy Durmaz plays for .'],\n", " ['Rafael Pereira da Silva plays for .'],\n", " ['Óscar Duarte plays for .'],\n", " ['Michael Hector plays for .'],\n", " ['Alex McCarthy plays for .'],\n", " ['Dzsenifer Marozsán plays for .'],\n", " ['Nélson Oliveira plays for .'],\n", " ['Sacha Kljestan plays for .'],\n", " ['Sofiane Feghouli plays for .'],\n", " ['Emerson Palmieri plays for .'],\n", " ['Hristijan Kirovski plays for .'],\n", " ['Melanie Behringer plays for .'],\n", " ['Hugo Vieira plays for .'],\n", " ['Hernanes plays for .'],\n", " ['Isabelle Yacoubou plays for .'],\n", " ['Mauricio Isla plays for .'],\n", " ['Hakan Çalhanoğlu plays for .'],\n", " ['Douglas dos Santos plays for .'],\n", " ['Sinan Bolat plays for .'],\n", " ['Esteban Chaves plays for .'],\n", " ['Marcos Lopes plays for .'],\n", " ['J. J. Barea plays for .'],\n", " ['Mario Suárez Mata plays for .'],\n", " ['Stine Bredal Oftedal plays for .'],\n", " ['Njazi Kuqi plays for .'],\n", " ['Jesús Navas plays for .'],\n", " ['Shane Duffy plays for .'],\n", " ['Willy Hernangómez plays for .'],\n", " ['Rafael Bastos plays for .'],\n", " ['Carlos Beltrán plays for .'],\n", " ['Nelson Cruz plays for .'],\n", " ['Fiodor Smolov plays for .'],\n", " ['Boban Marjanović plays for .'],\n", " ['Fabián Carini plays for .'],\n", " ['Shelina Zadorsky plays for .'],\n", " ['Pavel Pogrebnyak plays for .'],\n", " ['Goran Pandev plays for .'],\n", " ['Marc Janko plays for .'],\n", " ['Jamal Alioui plays for .'],\n", " ['Mohammadou Idrissou plays for .'],\n", " ['Ousmane Dembélé plays for .'],\n", " ['Gordon Schildenfeld plays for .'],\n", " ['Bauke Mollema plays for .'],\n", " ['Kalu Uche plays for .'],\n", " ['Burak Yılmaz plays for .'],\n", " ['Jimmy Butler plays for .'],\n", " ['Eduardo da Silva plays for .'],\n", " ['Jefferson Louis plays for .'],\n", " ['Diomansy Kamara plays for .'],\n", " [\"Franck Songo'o plays for .\"],\n", " ['Marco Rojas plays for .'],\n", " ['Aarón Ñíguez plays for .'],\n", " ['Victor Lindelöf plays for .'],\n", " ['Iván Kaviedes plays for .'],\n", " ['Jajá plays for .'],\n", " ['Iván Zarandona plays for .'],\n", " ['DeAndre Yedlin plays for .'],\n", " ['Ikechi Anya plays for .'],\n", " ['Anthony Lopes plays for .'],\n", " ['Clemente Rodríguez plays for .'],\n", " ['Jan Oblak plays for .'],\n", " ['Ritchie De Laet plays for .'],\n", " ['Lassana Diarra plays for .'],\n", " ['Fatos Bećiraj plays for .'],\n", " ['Kalidou Koulibaly plays for .'],\n", " ['Kostas Mitroglou plays for .'],\n", " ['Mario Lemina plays for .'],\n", " ['Mindaugas Kalonas plays for .'],\n", " ['Édouard Mendy plays for .'],\n", " ['Giovanni Sio plays for .'],\n", " ['Tijani Belaïd plays for .'],\n", " ['Park Joo-ho plays for .'],\n", " ['Emir Spahić plays for .'],\n", " ['Nikica Jelavić plays for .'],\n", " ['Erich Brabec plays for .'],\n", " ['Christian Cueva plays for .'],\n", " ['Yevhen Konoplyanka plays for .'],\n", " ['Paulo Dybala plays for .'],\n", " ['Emanuel Herrera plays for .'],\n", " ['Ludovic Obraniak plays for .'],\n", " ['Kleyr Vieira dos Santos plays for .'],\n", " ['Andriy Yakovlev plays for .'],\n", " ['DeMarcus Cousins plays for .'],\n", " ['Ross McCormack plays for .'],\n", " ['Taylor Phinney plays for .'],\n", " ['Maksim Shatskikh plays for .'],\n", " ['Abby Erceg plays for .'],\n", " ['Yukiya Arashiro plays for .'],\n", " ['Jason Denayer plays for .'],\n", " ['Marco Reus plays for .'],\n", " ['Michael Matthews plays for .'],\n", " ['Halil Altıntop plays for .'],\n", " ['Diego Tardelli plays for .'],\n", " ['Isaac Promise plays for .'],\n", " ['Estelle Nze Minko plays for .'],\n", " ['Andriy Yarmolenko plays for .'],\n", " ['Kamil Grosicki plays for .'],\n", " ['Fabinho plays for .'],\n", " ['Ishak Belfodil plays for .'],\n", " ['Tosaint Ricketts plays for .'],\n", " ['Linda Sembrant plays for .'],\n", " ['Tuncay Şanlı plays for .'],\n", " ['Hameur Bouazza plays for .'],\n", " ['Vladimír Weiss plays for .'],\n", " ['Bernard Mendy plays for .'],\n", " ['Matt Miazga plays for .'],\n", " ['Marcos Alonso plays for .'],\n", " ['Liassine Cadamuro plays for .'],\n", " ['Adam Federici plays for .'],\n", " ['Akaki Khubutia plays for .'],\n", " ['Miloš Teodosić plays for .'],\n", " ['Ellen White plays for .'],\n", " ['Román Torres plays for .'],\n", " ['Brown Ideye plays for .'],\n", " ['Sead Kolašinac plays for .'],\n", " ['Bernardo Silva plays for .'],\n", " ['Nils Petersen plays for .'],\n", " ['Oriol Romeu plays for .'],\n", " ['Adolfo Machado plays for .'],\n", " ['Filipe Machado Nascimento plays for .'],\n", " ['Rubén Iván Martínez plays for .'],\n", " ['Josephine Henning plays for .'],\n", " ['Dani Carvajal plays for .'],\n", " ['Joël Matip plays for .'],\n", " ['Marcus Berg plays for .'],\n", " ['Julio César de León plays for .'],\n", " ['Salomón Rondón plays for .'],\n", " ['Hajime Hosogai plays for .'],\n", " ['Edgar Ié plays for .'],\n", " ['Martín Montoya plays for .'],\n", " ['Lucas Piazón plays for .'],\n", " ['Markus Rosenberg plays for .'],\n", " ['Ognjen Vranješ plays for .'],\n", " ['Róbinson Zapata plays for .'],\n", " ['Sébastien Pocognoli plays for .'],\n", " ['Anders Lindegaard plays for .'],\n", " ['Jordan Henderson plays for .'],\n", " ['Josip Drmić plays for .'],\n", " ['Aleksandr Kokorin plays for .'],\n", " ['Juan Bernat plays for .'],\n", " ['Miranda plays for .'],\n", " ['Egan Bernal plays for .'],\n", " ['Camille Abily plays for .'],\n", " ['Stefan Maierhofer plays for .'],\n", " ['Matthieu Dossevi plays for .'],\n", " ['Bafétimbi Gomis plays for .'],\n", " ['Ignatas Konovalovas plays for .'],\n", " ['Karina Maruyama plays for .'],\n", " ['Adreian Payne plays for .'],\n", " ['Enzo Maresca plays for .'],\n", " ['Tomáš Vaclík plays for .'],\n", " ['Zack Steffen plays for .'],\n", " ['Ricardo Oliveira plays for .'],\n", " ['Yun Suk-young plays for .'],\n", " ['Giannelli Imbula plays for .'],\n", " ['Lorenzo Insigne plays for .'],\n", " ['Malcom plays for .'],\n", " ['Victor Obinna plays for .'],\n", " ['William Carvalho plays for .'],\n", " ['Miguel Veloso plays for .'],\n", " ['Felipe Anderson plays for .'],\n", " ['Isaac Cuenca plays for .'],\n", " ['Luis Antonio Jiménez plays for .'],\n", " ['Curtis Davies plays for .'],\n", " ['Dan Ito plays for .'],\n", " ['Odysseas Vlachodimos plays for .'],\n", " ['Eljero Elia plays for .'],\n", " ['Renato Augusto plays for .'],\n", " ['Milan Mačvan plays for .'],\n", " ['Vivianne Miedema plays for .'],\n", " ['Fabian Schär plays for .'],\n", " ['Ashleigh Moolman-Pasio plays for .'],\n", " ['Marcus Rashford plays for .'],\n", " ['André Gomes plays for .'],\n", " ['Dominique Malonga plays for .'],\n", " ['Max Verstappen plays for .'],\n", " ['Mehdi Abeid plays for .'],\n", " ['Alanna Kennedy plays for .'],\n", " ['Ahmed Hegazi plays for .'],\n", " ['Alen Halilović plays for .'],\n", " ['Kenny Miller plays for .'],\n", " ['Dimitris Papadopoulos plays for .'],\n", " ['Adriano Correia Claro plays for .'],\n", " ['Fran Mérida plays for .'],\n", " ['Idrissa Gueye plays for .'],\n", " ['Shahid Afridi plays for .'],\n", " ['Jurica Buljat plays for .'],\n", " ['Adrianna Franch plays for .'],\n", " ['Ludovic Giuly plays for .'],\n", " ['Nastja Čeh plays for .'],\n", " ['Zé Eduardo plays for .'],\n", " ['Riccardo Montolivo plays for .'],\n", " ['Benedikt Höwedes plays for .'],\n", " ['Luka Jović plays for .'],\n", " ['José Holebas plays for .'],\n", " ['Yasuhito Endo plays for .'],\n", " ['Artem Dzyuba plays for .'],\n", " ['Moussa Sow plays for .'],\n", " ['Tomáš Kalas plays for .'],\n", " ['Luis Aguiar plays for .'],\n", " ['Yossi Benayoun plays for .'],\n", " ['Nick Calathes plays for .'],\n", " ['Jorge Ribeiro plays for .'],\n", " ['Wilfried Bony plays for .'],\n", " ['Jamal Blackman plays for .'],\n", " ['Diego Alves plays for .'],\n", " ['Filip Đuričić plays for .'],\n", " ['Roy Carroll plays for .'],\n", " ['Mathieu Valbuena plays for .'],\n", " ['Danilo Cirino de Oliveira plays for .'],\n", " ['Orlando Sá plays for .'],\n", " ['Sérgio Oliveira plays for .'],\n", " ['Miloš Krasić plays for .'],\n", " ['Javad Nekounam plays for .'],\n", " ['Stina Blackstenius plays for .'],\n", " ['James Chester plays for .'],\n", " ['Alexia Putellas plays for .'],\n", " ['Gianluigi Donnarumma plays for .'],\n", " ['Zdeněk Štybar plays for .'],\n", " ['Stephen Sunday plays for .'],\n", " ['Steven Zuber plays for .'],\n", " ['Santiago Arias plays for .'],\n", " ['Aleix Vidal plays for .'],\n", " ['Jordan Pickford plays for .'],\n", " ['Jason Davidson plays for .'],\n", " ['Alfreð Finnbogason plays for .'],\n", " ['Artur Boruc plays for .'],\n", " ['Nicki Bille Nielsen plays for .'],\n", " ['Jonathas de Jesus plays for .'],\n", " ['Sebastián Coates plays for .'],\n", " ['Dimitar Makriev plays for .'],\n", " ['Nick Swisher plays for .'],\n", " ['Stefano Okaka plays for .'],\n", " ['Emerson plays for .'],\n", " ['Damiano Caruso plays for .'],\n", " ['Ifeoma Dieke plays for .'],\n", " ['Javier Pastore plays for .'],\n", " ['Christian Tiffert plays for .'],\n", " ['Dalibor Stevanovič plays for .'],\n", " ['Cenk Tosun plays for .'],\n", " ['Aya Sameshima plays for .'],\n", " ...],\n", " 'labels': [[[\" United States women's national soccer team\"]],\n", " [[' Paris Saint-Germain F.C.']],\n", " [[' Manchester United F.C.']],\n", " [[' Los Angeles Lakers']],\n", " [[' A.C. Milan']],\n", " [[' Brazil national football team']],\n", " [[' Independiente Santa Fe']],\n", " [[' OL Reign']],\n", " [[' West Ham United F.C.']],\n", " [[' FC Bayern Munich']],\n", " [[' Parma Calcio 1913']],\n", " [[' New York City FC']],\n", " [[' Brooklyn Nets']],\n", " [[' Górnik Zabrze']],\n", " [[' Mercedes']],\n", " [[' São José Esporte Clube']],\n", " [[' Japan Fed Cup team']],\n", " [[' Paris Saint-Germain F.C.']],\n", " [[' Atlético Madrid']],\n", " [[' U.S. Salernitana 1919']],\n", " [[' Zhejiang Professional F.C.']],\n", " [[' Israel Start-Up Nation']],\n", " [[' Adana Demirspor']],\n", " [[' FC Barcelona Femení']],\n", " [[' FC Bayern Munich']],\n", " [[\" United States women's national soccer team\"]],\n", " [[' Hebei F.C.']],\n", " [[' Quick-Step Alpha Vinyl Team']],\n", " [[' Colombia national football team']],\n", " [[' OL Reign']],\n", " [[' Club Atlético Peñarol']],\n", " [[' Audax Italiano']],\n", " [[' NJ/NY Gotham FC']],\n", " [[' FC Rosengård']],\n", " [[' LA Galaxy']],\n", " [[' Royal Challengers Bangalore']],\n", " [[' Alpine F1 Team']],\n", " [[' Chelsea F.C.']],\n", " [[' Vissel Kobe']],\n", " [[' FK Sūduva Marijampolė']],\n", " [[' Jumbo-Visma Women']],\n", " [[' Paris Saint-Germain F.C.']],\n", " [[' FC Barcelona']],\n", " [[' A.C. Milan']],\n", " [[' LA Galaxy']],\n", " [[' Vitória S.C.']],\n", " [[' Fenerbahçe SK']],\n", " [[' Tampa Bay Rowdies']],\n", " [[' Paris Saint-Germain F.C.']],\n", " [[' Minnesota Lynx']],\n", " [[' Los Angeles FC']],\n", " [[' Chicago Fire FC']],\n", " [[' Pallacanestro Varese']],\n", " [[' Olympique Lyonnais']],\n", " [[' Unione Sportiva Sassuolo Calcio']],\n", " [[' Astana Qazaqstan Team']],\n", " [[' Atlas F.C.']],\n", " [[' Chicago Bulls']],\n", " [[' Houston Rockets']],\n", " [[' AS Monaco FC']],\n", " [[' LA Galaxy']],\n", " [[' Coritiba F.C.']],\n", " [[' FC Barcelona']],\n", " [[' Real Madrid CF']],\n", " [[' Swiss national football team']],\n", " [[' Bàsquet Girona']],\n", " [[' Matrix Fitness']],\n", " [[' Horoya AC']],\n", " [[' Lotto–Soudal']],\n", " [[' S.C. Corinthians Paulista']],\n", " [[' Seattle Storm']],\n", " [[' Apollon Smyrna F.C.']],\n", " [[' Washington Spirit']],\n", " [[' France national association football team']],\n", " [[' Egypt national football team']],\n", " [[' HIFK Fotboll']],\n", " [[' Netherlands national association football team']],\n", " [[' West Ham United F.C.']],\n", " [[' Toronto FC']],\n", " [[' Los Angeles Lakers']],\n", " [[' FC Cartagena']],\n", " [[' Japan national football team']],\n", " [[' AFC Bournemouth']],\n", " [[' Standard Liège']],\n", " [[' FC Bayern Munich']],\n", " [[' Portland Thorns FC']],\n", " [[' France national association football team']],\n", " [[' Associação Académica de Coimbra – O.A.F.']],\n", " [[' Algeria national football team']],\n", " [[' TotalEnergies']],\n", " [[' Costa Rica national football team']],\n", " [[' Real Madrid CF']],\n", " [[' Ineos Grenadiers']],\n", " [[' Germany national association football team']],\n", " [[' SC Freiburg']],\n", " [[' Trek–Segafredo']],\n", " [[' Paraguay national football team']],\n", " [[' Rayo OKC']],\n", " [[' Manchester United F.C.']],\n", " [[' Club de Fútbol Monterrey']],\n", " [[' Inter Miami CF']],\n", " [[' AG2R Citroën Team']],\n", " [[' Fleury Loiret HB']],\n", " [[' Qatar SC']],\n", " [[' Work Service-Vitalcare-Dynatek']],\n", " [[' Brooklyn Nets']],\n", " [[' Scuderia Ferrari']],\n", " [[\" Norway women's national football team\"]],\n", " [[' EF Education-Nippo']],\n", " [[' Aalesunds FK']],\n", " [[' Arsenal W.F.C.']],\n", " [[' Chelsea F.C.']],\n", " [[' Real Madrid CF']],\n", " [[' Galatasaray S.K.']],\n", " [[' Israel Start-Up Nation']],\n", " [[' Ferencvárosi TC']],\n", " [[' Trabzonspor']],\n", " [[' Clube Atlético Mineiro']],\n", " [[' Real Madrid Baloncesto']],\n", " [[' Trek–Segafredo']],\n", " [[' Sociedade Esportiva Palmeiras']],\n", " [[' Team Jumbo-Visma']],\n", " [[' Swansea City A.F.C.']],\n", " [[' Germany national association football team']],\n", " [[' Clube de Regatas do Flamengo']],\n", " [[' Brazil national football team']],\n", " [[' Maccabi Haifa F.C.']],\n", " [[' Paris Saint-Germain F.C.']],\n", " [[' Los Angeles Clippers']],\n", " [[' Paris Saint-Germain Féminine']],\n", " [[' Olympiacos F.C.']],\n", " [[' Inter Milan']],\n", " [[' Houston Dash']],\n", " [[' F.C. Porto']],\n", " [[' FC Barcelona']],\n", " [[' Senegal national association football team']],\n", " [[' Chicago Red Stars']],\n", " [[' Real Madrid CF']],\n", " [[' Stoke City F.C.']],\n", " [[' Sint-Truidense V.V.']],\n", " [[' Olympique de Marseille']],\n", " [[' O.F.K. Beograd']],\n", " [[' Belgium national football team']],\n", " [[' Pune F.C.']],\n", " [[' ACF Fiorentina']],\n", " [[' Stabæk Fotball']],\n", " [[' Movistar Team']],\n", " [[' Cerro Porteño']],\n", " [[' Dundee United F.C.']],\n", " [[' Agrotikos Asteras F.C.']],\n", " [[' Germany national association football team']],\n", " [[' Jiangsu F.C.']],\n", " [[' SV Werder Bremen']],\n", " [[' Venezia F.C.']],\n", " [[' Sevilla FC']],\n", " [[' FC Rosengård']],\n", " [[' Bristol City F.C.']],\n", " [[\" Sweden women's national association football team\"]],\n", " [[' Clube de Regatas do Flamengo']],\n", " [[' Spain national association football team']],\n", " [[' Rosenborg BK']],\n", " [[' Hokkaido Consadole Sapporo']],\n", " [[' TSG 1899 Hoffenheim']],\n", " [[' Atlético Madrid']],\n", " [[' FC Tokyo']],\n", " [[' France national association football team']],\n", " [[' Team Jumbo-Visma']],\n", " [[' NJ/NY Gotham FC']],\n", " [[' Brisbane Roar FC W-League']],\n", " [[' Real Betis Balompié']],\n", " [[' Washington Mystics']],\n", " [[' Paris Saint-Germain Féminine']],\n", " [[' Team DSM']],\n", " [[' Phoenix Mercury']],\n", " [[' Yokohama FC']],\n", " [[' Real Sociedad']],\n", " [[' Borussia Dortmund']],\n", " [[' PSV Eindhoven']],\n", " [[' France national association football team']],\n", " [[' Tampa Bay Buccaneers']],\n", " [[' Aston Villa F.C.']],\n", " [[' ŁKS Goczałkowice-Zdrój']],\n", " [[' Baniyas SC']],\n", " [[' Real Madrid CF']],\n", " [[' Venezia F.C.']],\n", " [[' Atlético Madrid']],\n", " [[' Belgium national football team']],\n", " [[' Norway national association football team']],\n", " [[' Inter Milan']],\n", " [[\" United States men's national soccer team\"]],\n", " [[' Real Madrid CF']],\n", " [[' Shanghai Shenhua F.C.']],\n", " [[' SV Werder Bremen']],\n", " [[' Tottenham Hotspur F.C.']],\n", " [[' OGC Nice']],\n", " [[' Suzuka Point Getters']],\n", " [[' A.S. Roma']],\n", " [[' Deportivo de La Coruña']],\n", " [[' Toronto Raptors']],\n", " [[' Hamburger SV']],\n", " [[' Belgium national football team']],\n", " [[' FC Ryukyu']],\n", " [[' Málaga CF']],\n", " [[' SD Eibar']],\n", " [[' San Antonio Spurs']],\n", " [[' Paris Saint-Germain F.C.']],\n", " [[' New York Knicks']],\n", " [[' Cleveland Cavaliers']],\n", " [[' F.C. Copenhagen']],\n", " [[' Club Atlético River Plate']],\n", " [[' Real Betis Balompié']],\n", " [[' Portland Thorns FC']],\n", " [[' FC Bayern Munich']],\n", " [[' France national association football team']],\n", " [[' Club Atlético Peñarol']],\n", " [[' Dalian Professional F.C.']],\n", " [[' Italy national association football team']],\n", " [[' Senegal national association football team']],\n", " [[' France national association football team']],\n", " [[' Lotto–Soudal']],\n", " [[' Everton F.C.']],\n", " [[' Denmark national association football team']],\n", " [[' Fenerbahçe SK']],\n", " [[' Galatasaray S.K.']],\n", " [[' Atlanta United FC']],\n", " [[' Swansea City A.F.C.']],\n", " [[' Spain national association football team']],\n", " [[' Cameroon national football team']],\n", " [[' Levante UD']],\n", " [[' FC Rosengård']],\n", " [[' Galatasaray S.K.']],\n", " [[' Italy national association football team']],\n", " [[' Morocco national football team']],\n", " [[' Accra Great Olympics F.C.']],\n", " [[' West Bromwich Albion F.C.']],\n", " [[' Netherlands national association football team']],\n", " [[' DR Congo national football team']],\n", " [[' Brazil national football team']],\n", " [[' FC Seoul']],\n", " [[' FC Bayern Munich']],\n", " [[' New Zealand national rugby union team']],\n", " [[\" United States women's national soccer team\"]],\n", " [[' Chelsea F.C.']],\n", " [[' Santos F.C.']],\n", " [[' Shanghai Port F.C.']],\n", " [[' Sevilla FC']],\n", " [[' Morocco national football team']],\n", " [[' Sweden national association football team']],\n", " [[' Hertha BSC']],\n", " [[' Manchester City W.F.C.']],\n", " [[' Portugal national association football team']],\n", " [[' TuS Haltern']],\n", " [[' Baniyas SC']],\n", " [[' 1. FFC Frankfurt']],\n", " [[' S.S. Lazio']],\n", " [[' Aarhus Gymnastikforening']],\n", " [[' FC Koper']],\n", " [[' Wadi Degla SC']],\n", " [[' S.C. Braga']],\n", " [[' S.P. Tre Penne']],\n", " [[' ACF Fiorentina']],\n", " [[' Real Betis Balompié']],\n", " [[' Brisbane Roar FC']],\n", " [[' Storey Racing']],\n", " [[' Arkéa–Samsic']],\n", " [[' Germany national association football team']],\n", " [[' FC Metz']],\n", " [[' Los Angeles Sparks']],\n", " [[' Villarreal CF']],\n", " [[' Liga Deportiva Alajuelense']],\n", " [[' Club Universidad Nacional']],\n", " [[' Al Shabab FC']],\n", " [[' Sevilla FC']],\n", " [[' Chelsea F.C.']],\n", " [[' Olimpia Milano']],\n", " [[' Netherlands national association football team']],\n", " [[' Chile national football team']],\n", " [[' Croatia national association football team']],\n", " [[' Ineos Grenadiers']],\n", " [[' Tigres UANL']],\n", " [[' KFUM-Kameratene Oslo']],\n", " [[' Western New York Flash']],\n", " [[' Netherlands national association football team']],\n", " [[' KK Cedevita Olimpija']],\n", " [[' Melbourne Victory']],\n", " [[\" Fenerbahçe Men's Basketball\"]],\n", " [[' Manchester City W.F.C.']],\n", " [[' Sunderland A.F.C.']],\n", " [[' Belgium national football team']],\n", " [[' São Paulo FC']],\n", " [[' UAE Team Emirates']],\n", " [[' Australia Billie Jean King Cup team']],\n", " [[' S.C. Corinthians Paulista']],\n", " [[' Atlético Junior']],\n", " [[' Brazil national football team']],\n", " [[' Chicago Red Stars']],\n", " [[' Club Nacional de Football']],\n", " [[' Mexico national football team']],\n", " [[' TotalEnergies']],\n", " [[' Wolverhampton Wanderers F.C.']],\n", " [[' Germany national association football team']],\n", " [[' Bologna F.C. 1909']],\n", " [[' US Orléans']],\n", " [[' Deportivo Saprissa']],\n", " [[' Unión La Cagaera']],\n", " [[' Spain national association football team']],\n", " [[' Perth Glory FC']],\n", " [[' Olympiacos F.C.']],\n", " [[' C.S. Cartaginés']],\n", " [[' Juventus F.C.']],\n", " [[' Belgium national football team']],\n", " [[' Kayserispor']],\n", " [[' Portugal national association football team']],\n", " [[' UAE Team Emirates']],\n", " [[' Italy national association football team']],\n", " [[' Denmark national association football team']],\n", " [[' Swiss national football team']],\n", " [[' Valencia BC']],\n", " [[' Poland national association football team']],\n", " [[' McLaren']],\n", " [[' Borussia Dortmund']],\n", " [[' Cleveland Cavaliers']],\n", " [[' Hebei F.C.']],\n", " [[' Top Girls Fassa Bortolo']],\n", " [[' Club Atlético Talleres']],\n", " [[' Toulon Saint-Cyr Var Handball']],\n", " [[' Portland Trail Blazers']],\n", " [[' Ineos Grenadiers']],\n", " [[' Ivory Coast national football team']],\n", " [[' Inter Milan']],\n", " [[' Yokohama FC']],\n", " [[' Fenerbahçe SK']],\n", " [[' Real Madrid CF']],\n", " [[' Intermarché–Wanty–Gobert Matériaux']],\n", " [[' Peru national football team']],\n", " [[' Portugal national association football team']],\n", " [[' France national association football team']],\n", " [[' Beşiktaş J.K.']],\n", " [[' Swiss national football team']],\n", " [[' Sydney FC']],\n", " [[' Cerro Porteño']],\n", " [[' Burnley F.C.']],\n", " [[' CCC Team']],\n", " [[' Club Deportivo Universidad Católica']],\n", " [[' Everton F.C.']],\n", " [[' Trabzonspor']],\n", " [[' West Ham United F.C.']],\n", " [[' Bristol Rovers F.C.']],\n", " [[' Fenerbahçe SK']],\n", " [[' Chelsea F.C. Women']],\n", " [[' Los Angeles Lakers']],\n", " [[' G.S. Iraklis Thessaloniki']],\n", " [[' NJ/NY Gotham FC']],\n", " [[' CR Vasco da Gama']],\n", " [[' S.L. Benfica']],\n", " [[' Spain national association football team']],\n", " [[' S.L. Benfica']],\n", " [[' Brazil national football team']],\n", " [[' FC Barcelona Femení']],\n", " [[' Team Jumbo-Visma']],\n", " [[' France national association football team']],\n", " [[' Guangzhou City F.C.']],\n", " [[' VfL Wolfsburg Women']],\n", " [[' Wuhan F.C.']],\n", " [[' Genoa CFC']],\n", " [[' Western New York Flash']],\n", " [[' Okinawa SV']],\n", " [[' C.D. Guadalajara']],\n", " [[' Hebei F.C.']],\n", " [[' Spain national association football team']],\n", " [[' FC Voluntari']],\n", " [[' SV Werder Bremen']],\n", " [[' England national association football team']],\n", " [[' France national association football team']],\n", " [[' Guinea-Bissau national football team']],\n", " [[' N.E.C.']],\n", " [[' Boavista F.C.']],\n", " [[' Mexico national football team']],\n", " [[' Czech Republic national beach soccer team']],\n", " [[' FC Yenisey Krasnoyarsk']],\n", " [[' Real Madrid CF']],\n", " [[' Quick-Step Alpha Vinyl Team']],\n", " [[' Costa Rica national football team']],\n", " [[\" Canada men's national soccer team\"]],\n", " [[' Poland national association football team']],\n", " [[' Russia national football team']],\n", " [[' Chile national football team']],\n", " [[' Real Madrid CF']],\n", " [[' Club Rubio Ñu']],\n", " [[' Senegal national association football team']],\n", " [[' FC Bayern Munich Women']],\n", " [[' Juventus F.C.']],\n", " [[' Roland Cogeas Edelweiss Squad']],\n", " [[' Salford City F.C.']],\n", " [[' Brooklyn Nets']],\n", " [[' Chicago Bulls']],\n", " [[' Kawasaki Frontale']],\n", " [[' KIF Örebro DFF']],\n", " [[' Israel Start-Up Nation']],\n", " [[' Estonia national football team']],\n", " [[' Germany national association football team']],\n", " [[' Rayo Vallecano']],\n", " [[' Bohemians 1905']],\n", " [[' FK AS Trenčín']],\n", " [[' UAE Team Emirates']],\n", " [[' Real Sociedad']],\n", " [[' Antalyaspor']],\n", " [[' LA Galaxy']],\n", " [[' E.C. Vitória']],\n", " [[' Waasland-Beveren']],\n", " [[' Club Atlético River Plate']],\n", " [[' Boavista F.C.']],\n", " [[' Spain national association football team']],\n", " [[' Bahrain Victorious']],\n", " [[' Paris Saint-Germain F.C.']],\n", " [[' France national association football team']],\n", " [[' Manchester City F.C.']],\n", " [[' Team Jumbo-Visma']],\n", " [[' FC Bayern Munich']],\n", " [[' Quick-Step Alpha Vinyl Team']],\n", " [[' Portugal national association football team']],\n", " [[' Atlanta Hawks']],\n", " [[' Maccabi Haifa F.C.']],\n", " [[' Germany national association football team']],\n", " [[' Southampton F.C.']],\n", " [[' S.C. Internacional']],\n", " [[' Germany national association football team']],\n", " [[' Swiss national football team']],\n", " [[' Portugal national association football team']],\n", " [[' Juventus F.C.']],\n", " [[' 1. FC Nürnberg']],\n", " [[' Brazil national football team']],\n", " [[' FC Augsburg']],\n", " [[' Manchester City F.C.']],\n", " [[\" United States women's national soccer team\"]],\n", " [[' Al-Duhail SC']],\n", " [[' Juventus F.C.']],\n", " [[' Celtic F.C.']],\n", " [[' Spain national association football team']],\n", " [[' Milwaukee Bucks']],\n", " [[' Melbourne Victory']],\n", " [[' S.C. Corinthians Paulista']],\n", " [[' Shanghai Shenhua F.C.']],\n", " [[' Sektzia Nes Tziona F.C.']],\n", " [[' Seinäjoen Jalkapallokerho']],\n", " [[' Olympique Lyonnais']],\n", " [[' Orlando Pride']],\n", " [[' Leeds United F.C.']],\n", " [[' FC Sion']],\n", " [[' Orlando City SC']],\n", " [[' FC Seoul']],\n", " [[' Tiburones Rojos de Veracruz']],\n", " [[' C.D. Guadalajara']],\n", " [[' Gwangju FC']],\n", " [[' Angers SCO']],\n", " [[' Netherlands national association football team']],\n", " [[' Chelsea F.C. Women']],\n", " [[' POFC Botev Vratsa']],\n", " [[' Pirata F.C']],\n", " [[' Leicester City F.C.']],\n", " [[' FC Zenit Saint Petersburg']],\n", " [[' Seattle Sounders FC']],\n", " [[' Mexico national football team']],\n", " [[' Houston Dash']],\n", " [[' Galatasaray S.K.']],\n", " [[' Mumbai City FC']],\n", " [[' Élan Chalon']],\n", " [[' Atlético Sanluqueño CF']],\n", " [[' Manchester United W.F.C.']],\n", " [[' AFC Eskilstuna']],\n", " [[' Argentina national football team']],\n", " [[' Algeria national football team']],\n", " [[' Nigeria national football team']],\n", " [[' Nogoom FC']],\n", " [[' Hertha BSC']],\n", " [[' Shandong Taishan F.C.']],\n", " [[' FC Barcelona']],\n", " [[' Italy national association football team']],\n", " [[' Ivory Coast national football team']],\n", " [[\" Colo-Colo women's\"]],\n", " [[' Chicago Red Stars']],\n", " [[' A.S. Roma']],\n", " [[' Seoul E-Land FC']],\n", " [[' Germany national association football team']],\n", " [[' Germany national association football team']],\n", " [[' Charlotte Hornets']],\n", " [[' Cobán Imperial']],\n", " [[' VfB Stuttgart']],\n", " [[' A.S. Roma']],\n", " [[' Brazil national football team']],\n", " [[' Liga Deportiva Alajuelense']],\n", " [[' Arsenal W.F.C.']],\n", " [[' Sweden national association football team']],\n", " [[' Mexico national football team']],\n", " [[' Italy national association football team']],\n", " [[' Spain national association football team']],\n", " [[' UAE Team Emirates']],\n", " [[' FC Rukh Lviv']],\n", " [[' Olympique de Marseille']],\n", " [[' South Korea national football team']],\n", " [[' Fluminense F.C.']],\n", " [[' Belgium national football team']],\n", " [[' Japan national football team']],\n", " [[' Nigeria national football team']],\n", " [[' TWENTY20 p/b Sho-Air']],\n", " [[' AS Saint-Étienne']],\n", " [[' Sociedade Esportiva Palmeiras']],\n", " [[' Szombathelyi Haladás']],\n", " [[' Seattle Sounders FC']],\n", " [[' Deportivo Toluca F.C.']],\n", " [[' PSV Eindhoven']],\n", " [[' VfB Stuttgart II']],\n", " [[' Cofidis']],\n", " [[' Russia national football team']],\n", " [[' Helsingin Jalkapalloklubi']],\n", " [[' BC Rytas']],\n", " [[' A.S. Roma']],\n", " [[' Utah Jazz']],\n", " [[' Spain national association football team']],\n", " [[\" Germany women's national football team\"]],\n", " [[' FC Barcelona Bàsquet']],\n", " [[' Algeria national football team']],\n", " [[' Rio Ave F.C.']],\n", " [[' Manchester City F.C.']],\n", " [[' Swiss national football team']],\n", " [[' Iran national football team']],\n", " [[' FC Minaj']],\n", " [[' Eintracht Frankfurt']],\n", " [[' Nigeria national football team']],\n", " [[' ACF Fiorentina']],\n", " [[' Newcastle United F.C.']],\n", " [[' Legia Warsaw']],\n", " [[' Venezuela national football team']],\n", " [[' France national association football team']],\n", " [[' Argentina national football team']],\n", " [[' C.F. Os Belenenses']],\n", " [[' Japan national football team']],\n", " [[' Central African Republic national football team']],\n", " [[' Germany national association football team']],\n", " [[' NK Olimpija Ljubljana']],\n", " [[' Swiss national football team']],\n", " [[' Mexico national football team']],\n", " [[' Las Vegas Aces']],\n", " [[' Norwich City F.C.']],\n", " [[' Santa Cruz Futebol Clube']],\n", " [[' Ceratizit–WNT Pro Cycling']],\n", " [[' FC Zenit Saint Petersburg']],\n", " [[' TotalEnergies']],\n", " [[' Oeste Futebol Clube']],\n", " [[\" United States men's national soccer team\"]],\n", " [[' S.S.C. Napoli']],\n", " [[' Norway national association football team']],\n", " [[' Apollon Smyrna F.C.']],\n", " [[' Legia Warsaw']],\n", " [[' Brazil national football team']],\n", " [[' North Macedonia national football team']],\n", " [[' Zhejiang Professional F.C.']],\n", " [[' Balıkesirspor']],\n", " [[' Talaba SC']],\n", " [[' Ghana national football team']],\n", " [[' Kayserispor']],\n", " [[' FC Ingolstadt 04']],\n", " [[' Sweden national association football team']],\n", " [[' Helsingin Jalkapalloklubi']],\n", " [[' Sydney FC']],\n", " [[' Philippines national football team']],\n", " [[' Olympiacos F.C.']],\n", " [[' Chelsea F.C. Women']],\n", " [[' S.S.C. Napoli']],\n", " [[' Al-Faisaly FC']],\n", " [[' Cruz Azul']],\n", " [[' Al-Raed FC']],\n", " [[' Olympique Lyonnais']],\n", " [[' Iran national football team']],\n", " [[' Orlando Pride']],\n", " [[' Porsche']],\n", " [[' Denmark national association football team']],\n", " [[' Club Social y Deportivo Colo Colo']],\n", " [[' England national association football team']],\n", " [[' South Korea national football team']],\n", " [[' Brest Bretagne Handball']],\n", " [[' Trek–Segafredo']],\n", " [[' Swiss national football team']],\n", " [[' Chelsea F.C. Women']],\n", " [[' Dallas Mavericks']],\n", " [[' France national association football team']],\n", " [[' UnitedHealthcare']],\n", " [[' Spain national association football team']],\n", " [[' Linköpings FC']],\n", " [[' Nigeria national football team']],\n", " [[' Liverpool F.C.']],\n", " [[' Team BikeExchange Jayco']],\n", " [[' France national association football team']],\n", " [[' São Tomé and Príncipe national football team']],\n", " [[' Portugal national association football team']],\n", " [[' Australia national association football team']],\n", " [[' Shimizu S-Pulse']],\n", " [[' Denmark national association football team']],\n", " [[' Belgium national football team']],\n", " [[' APOEL F.C.']],\n", " [[\" Japan women's national football team\"]],\n", " [[\" Canada women's national soccer team\"]],\n", " [[' OL Reign']],\n", " [[' Denmark national association football team']],\n", " [[' Germany national association football team']],\n", " [[' Brazil national football team']],\n", " [[' Montpellier Hérault Sport Club']],\n", " [[' Atlético Madrid']],\n", " [[' Norway national association football team']],\n", " [[' FC Shakhtar Donetsk']],\n", " [[' Southampton F.C.']],\n", " [[' Olympique Lyonnais']],\n", " [[' FC Lausanne-Sport']],\n", " [[' Club Social y Deportivo Colo Colo']],\n", " [[' Coquimbo Unido']],\n", " [[' Unión Magdalena']],\n", " [[' Anorthosis Famagusta FC']],\n", " [[' Al Ittihad FC']],\n", " [[' Aris Thessaloniki F.C.']],\n", " [[' Cagliari Calcio']],\n", " [[' FC Pune City']],\n", " [[' Atlas F.C.']],\n", " [[' Australia national association football team']],\n", " [[' Morocco national football team']],\n", " [[' Chelsea F.C.']],\n", " [[' Arsenal W.F.C.']],\n", " [[' FC Barcelona']],\n", " [[' San Martín de Tucumán']],\n", " [[' Senegal national association football team']],\n", " [[' Germany national association football team']],\n", " [[' FC Kaisar']],\n", " [[' Portugal national association football team']],\n", " [[' NorthEast United FC']],\n", " [[' AFC Ajax Vrouwen']],\n", " [[' 1. FC Union Berlin']],\n", " [[' Belgium national football team']],\n", " [[' Stoke City F.C.']],\n", " [[' FC Twente']],\n", " [[' Finland national football team']],\n", " [[' Cameroon national football team']],\n", " [[' ŠK Slovan Bratislava']],\n", " [[' Orléans Loiret Basket']],\n", " [[' Algeria national football team']],\n", " [[' Miami Heat']],\n", " [[' Uno-X Pro Cycling Team']],\n", " [[' AEK Athens B.C.']],\n", " [[' Charlton Athletic F.C.']],\n", " [[' Poland national association football team']],\n", " [[' Brazil national football team']],\n", " [[' Spain national association football team']],\n", " [[' Olympique Lyonnais']],\n", " [[' Alianza Lima']],\n", " [[' FC Barcelona']],\n", " [[' Manchester United F.C.']],\n", " [[' Mexico national football team']],\n", " [[' Romania national association football team']],\n", " [[\" Australia women's national soccer team\"]],\n", " [[' Real Madrid Baloncesto']],\n", " [[' Israel Start-Up Nation']],\n", " [[' FC Ingolstadt 04']],\n", " [[' Málaga CF']],\n", " [[' Philadelphia Union']],\n", " [[' Movistar Team']],\n", " [[' FK Vardar']],\n", " [[' New England Revolution']],\n", " [[' UD Vilafranquense']],\n", " [[' Associação Ferroviária de Esportes']],\n", " [[' D.C. United']],\n", " [[' FC Sion']],\n", " [[' Brazil national football team']],\n", " [[' FC Dinamo Moscow']],\n", " [[' KK Crvena Zvezda']],\n", " [[' Germany national association football team']],\n", " [[' Uruguay national football team']],\n", " [[' Crystal Palace F.C.']],\n", " [[' PSV Eindhoven']],\n", " [[' Croatia national association football team']],\n", " [[' Inter Milan']],\n", " [[' Cairns Taipans']],\n", " [[' Paris FC']],\n", " [[' Spain national association football team']],\n", " [[' Voltigeurs de Châteaubriant']],\n", " [[' TSG 1899 Hoffenheim']],\n", " [[' Algeria national football team']],\n", " [[' North Carolina FC']],\n", " [[' FC Khimki']],\n", " [[' Real Madrid CF']],\n", " [[' Los Angeles FC']],\n", " [[' Ionikos F.C.']],\n", " [[' Club Tijuana']],\n", " [[' Ottawa Fury FC']],\n", " [[' Kazakhstan national football team']],\n", " [[' FC Rostov']],\n", " [[' Germany national association football team']],\n", " [[' South Korea national football team']],\n", " [[' Turkey national association football team']],\n", " [[' PFC CSKA Moscow']],\n", " [[' Villarreal CF']],\n", " [[' FC Anzhi Makhachkala']],\n", " [[' Real Madrid Castilla']],\n", " [[' South Korea national football team']],\n", " [[' CF Pachuca']],\n", " [[' Örebro SK']],\n", " [[' Venezuela national football team']],\n", " [[' Republic of Ireland national association football team']],\n", " [[' Vicenza Calcio']],\n", " [[' FK Budućnost Podgorica']],\n", " [[' FC Voluntari']],\n", " [[\" United States women's national soccer team\"]],\n", " [[' Iceland national association football team']],\n", " [[' Norway national association football team']],\n", " [[' CF Montréal']],\n", " [[' Sunderland A.F.C.']],\n", " [[' New Zealand national football team']],\n", " [[' VfL Wolfsburg']],\n", " [[' Olympique Lyonnais Féminin']],\n", " [[' Urawa Red Diamonds']],\n", " [[' Rayo Vallecano']],\n", " [[' Scotland national football team']],\n", " [[' Clube Atlético Taboão da Serra']],\n", " [[' Golden State Warriors']],\n", " [[' LKS Nieciecza']],\n", " [[' Ferrari Grand Prix results']],\n", " [[\" Brazil women's national football team\"]],\n", " [[' Valencia CF']],\n", " [[' West Ham United F.C.']],\n", " [[' Trabzonspor']],\n", " [[' 1. FC Union Berlin']],\n", " [[' Paris Saint-Germain F.C.']],\n", " [[' Liaoning Whowin F.C.']],\n", " [[' Mali national football team']],\n", " [[' Enosis Neon Paralimni FC']],\n", " [[' Costa Rica national football team']],\n", " [[' Trek–Segafredo']],\n", " [[' Villarreal CF']],\n", " [[' Washington Spirit']],\n", " [[' Liverpool F.C.']],\n", " [[' Senegal national association football team']],\n", " [[' FC Midtjylland']],\n", " [[' KAA Gent']],\n", " [[' Gimnàstic de Tarragona']],\n", " [[' CF Montréal']],\n", " [[' Auckland City FC']],\n", " [[' Algeria national football team']],\n", " [[' Spain national association football team']],\n", " [[' France national association football team']],\n", " [[' Manchester United F.C.']],\n", " [[' Santos FC']],\n", " [[' Al-Shahaniya Sports Club']],\n", " [[' Chelsea F.C.']],\n", " [[' Toronto Blue Jays']],\n", " [[' Sanfrecce Hiroshima Regina']],\n", " [[' Leicester City F.C.']],\n", " [[' JLT Condor']],\n", " [[' FC Rapid 1923']],\n", " [[' Goa ISL team']],\n", " [[' Netherlands national association football team']],\n", " [[' Argentinos Juniors']],\n", " [[' SGS Essen']],\n", " [[' Sweden national association football team']],\n", " [[' Olympique Lyonnais']],\n", " [[' Costa Rica national football team']],\n", " [[' Jamaica national association football team']],\n", " [[' Crystal Palace F.C.']],\n", " [[' Olympique Lyonnais Féminin']],\n", " [[' P.A.O.K. Thessaloniki F.C.']],\n", " [[' New York Red Bulls']],\n", " [[' Algeria national football team']],\n", " [[' A.S. Roma']],\n", " [[' FK Shkëndija']],\n", " [[' FC Bayern Munich Women']],\n", " [[' Hibernians F.C.']],\n", " [[' Sport Club do Recife']],\n", " [[' CJM Bourges Basket']],\n", " [[' Clube de Regatas do Flamengo']],\n", " [[' Turkey national association football team']],\n", " [[' Brazil national football team']],\n", " [[' Turkey national association football team']],\n", " [[' EF Education-Nippo']],\n", " [[' Lille OSC']],\n", " [[' Cangrejeros de Santurce']],\n", " [[' Spain national association football team']],\n", " [[\" Norway women's national handball team\"]],\n", " [[' PK-35 Vantaa']],\n", " [[' Manchester City F.C.']],\n", " [[' Republic of Ireland national association football team']],\n", " [[' Philadelphia 76ers']],\n", " [[' América Futebol Clube (MG)']],\n", " [[' St. Louis Cardinals']],\n", " [[' Baltimore Orioles']],\n", " [[' Russia national football team']],\n", " [[' Dallas Mavericks']],\n", " [[' Juventud de Las Piedras']],\n", " [[\" Canada women's national soccer team\"]],\n", " [[' FC Dinamo Moscow']],\n", " [[' Genoa CFC']],\n", " [[' FC Basel']],\n", " [[\" Monts d'Or Azergues Foot\"]],\n", " [[' Maccabi Haifa F.C.']],\n", " [[' France national association football team']],\n", " [[' Aris Limassol F.C.']],\n", " [[' Trek–Segafredo']],\n", " [[' Unión Deportiva Almería']],\n", " [[' Beijing Guoan F.C.']],\n", " [[' Philadelphia 76ers']],\n", " [[' Legia Warsaw']],\n", " [[' Wealdstone F.C.']],\n", " [[' NorthEast United FC']],\n", " [[' PAS Giannina F.C.']],\n", " [[' New Zealand national football team']],\n", " [[' S.C. Braga']],\n", " [[' Sweden national association football team']],\n", " [[' Águilas CF']],\n", " [[' K.S.C. Lokeren Oost-Vlaanderen']],\n", " [[' Burgos CF']],\n", " [[\" United States men's national soccer team\"]],\n", " [[' Scotland national football team']],\n", " [[' Portugal national association football team']],\n", " [[' Club Atlético Colón']],\n", " [[' Slovenia national football team']],\n", " [[' Middlesbrough F.C.']],\n", " [[' Olympique de Marseille']],\n", " [[' FK Dečić']],\n", " [[' S.S.C. Napoli']],\n", " [[' S.L. Benfica']],\n", " [[' Gabon national football team']],\n", " [[' FK Kauno Žalgiris']],\n", " [[' Chelsea F.C.']],\n", " [[' Stade Rennais F.C.']],\n", " [[' Club Africain']],\n", " [[' South Korea national football team']],\n", " [[' Hamburger SV']],\n", " [[' Guizhou F.C.']],\n", " [[' FC Slovan Liberec']],\n", " [[' Peru national football team']],\n", " [[' Ukraine national association football team']],\n", " [[' Argentina national football team']],\n", " [[' FBC Melgar']],\n", " [[' Maccabi Haifa F.C.']],\n", " [[' Al-Faisaly SC']],\n", " [[' Närpes Kraft Fotbollsförening']],\n", " [[' Golden State Warriors']],\n", " [[' Fulham F.C.']],\n", " [[' EF Education-Nippo']],\n", " [[' FC Rukh Lviv']],\n", " [[' Western New York Flash']],\n", " [[' Bahrain Victorious']],\n", " [[' Belgium national football team']],\n", " [[' Germany national association football team']],\n", " [[' Team BikeExchange Jayco']],\n", " [[' FC Augsburg']],\n", " [[' Clube de Regatas do Flamengo']],\n", " [[' Kardemir Karabükspor']],\n", " [[\" France women's national handball team\"]],\n", " [[' West Ham United F.C.']],\n", " [[' Stade Rennais F.C.']],\n", " [[' Liverpool F.C.']],\n", " [[' Algeria national football team']],\n", " [[\" Canada men's national soccer team\"]],\n", " [[' Montpellier Hérault Sport Club']],\n", " [[' FC Pune City']],\n", " [[' Red Star F.C.']],\n", " [[' Al-Gharafa Sports Club']],\n", " [[' SC East Bengal']],\n", " [[\" United States men's national soccer team\"]],\n", " [[' Chelsea F.C.']],\n", " [[' Algeria national football team']],\n", " [[' Australia national association football team']],\n", " [[' FC VPK-Ahro Shevchenkivka']],\n", " [[' Virtus Pallacanestro Bologna']],\n", " [[' Arsenal F.C.']],\n", " [[' Seattle Sounders FC']],\n", " [[' Nigeria national football team']],\n", " [[' Bosnia and Herzegovina national football team']],\n", " [[' Portugal national association football team']],\n", " [[' Germany national association football team']],\n", " [[' Southampton F.C.']],\n", " [[' Deportivo Saprissa']],\n", " [[' Saba Qom F.C.']],\n", " [[' Club Atlético Osasuna']],\n", " [[' Arsenal F.C.']],\n", " [[' Spain national association football team']],\n", " [[' Liverpool F.C.']],\n", " [[' FC Krasnodar']],\n", " [[' Club Atlético Platense']],\n", " [[' Everton F.C.']],\n", " [[' Thespakusatsu Gunma']],\n", " [[' Villarreal CF']],\n", " [[' Real Betis Balompié']],\n", " [[' Chelsea F.C.']],\n", " [[' Malmö FF']],\n", " [[' Bosnia and Herzegovina national football team']],\n", " [[' Independiente Santa Fe']],\n", " [[' West Bromwich Albion F.C.']],\n", " [[' Preston North End F.C.']],\n", " [[' England national association football team']],\n", " [[' Swiss national football team']],\n", " [[' ACF Fiorentina']],\n", " [[' Spain national association football team']],\n", " [[' São Paulo FC']],\n", " [[' Ineos Grenadiers']],\n", " [[' Olympique Lyonnais Féminin']],\n", " [[' FK AS Trenčín']],\n", " [[' Togo national football team']],\n", " [[' Al-Hilal SFC']],\n", " [[' Groupama-FDJ']],\n", " [[' Speranza Osaka-Takatsuki']],\n", " [[' ASVEL Basket']],\n", " [[' Palermo FC']],\n", " [[' Czech Republic national association football team']],\n", " [[\" United States men's national soccer team\"]],\n", " [[' Santos F.C.']],\n", " [[' South Korea national football team']],\n", " [[' Stoke City F.C.']],\n", " [[' Italy national association football team']],\n", " [[' FC Zenit Saint Petersburg']],\n", " [[' MSV Duisburg']],\n", " [[' Portugal national association football team']],\n", " [[' Hellas Verona F.C.']],\n", " [[' Brazil national football team']],\n", " [[\" Hapoel Be'er Sheva F.C.\"]],\n", " [[' Al Nasr SC']],\n", " [[' Hull City A.F.C.']],\n", " [[' Thimpu FC']],\n", " [[' Panathinaikos F.C.']],\n", " [[' Feyenoord']],\n", " [[' Brazil national football team']],\n", " [[' Olimpia Milano']],\n", " [[' Arsenal W.F.C.']],\n", " [[' Swiss national football team']],\n", " [[' SD Worx']],\n", " [[' England national association football team']],\n", " [[' Everton F.C.']],\n", " [[' Congo national football team']],\n", " [[' Red Bull Racing']],\n", " [[' Algeria national football team']],\n", " [[\" Australia women's national soccer team\"]],\n", " [[' Egypt national football team']],\n", " [[' Croatia national association football team']],\n", " [[' Rangers F.C.']],\n", " [[' Atromitos F.C.']],\n", " [[' Club Athletico Paranaense']],\n", " [[' RCD Espanyol de Barcelona']],\n", " [[' Senegal national association football team']],\n", " [[' Melbourne Renegades']],\n", " [[' HNK Zadar']],\n", " [[' Portland Thorns FC']],\n", " [[\" Monts d'Or Azergues Foot\"]],\n", " [[' NŠ Drava Ptuj']],\n", " [[' Al-Shaab CSC']],\n", " [[' A.C. Milan']],\n", " [[' Germany national association football team']],\n", " [[' Real Madrid CF']],\n", " [[' Greece national association football team']],\n", " [[' Júbilo Iwata']],\n", " [[' Russia national football team']],\n", " [[' Shabab Al Ahli Club']],\n", " [[' Czech Republic national association football team']],\n", " [[' Club Atlético Peñarol']],\n", " [[' Maccabi Haifa F.C.']],\n", " [[' FC Barcelona Bàsquet']],\n", " [[' Atlético Clube de Portugal']],\n", " [[' Ivory Coast national football team']],\n", " [[' Chelsea F.C.']],\n", " [[' Brazil national football team']],\n", " [[' Serbia national football team']],\n", " [[' Notts County F.C.']],\n", " [[' Olympiacos F.C.']],\n", " [[' Buriram United F.C.']],\n", " [[' Maccabi Tel Aviv F.C.']],\n", " [[' F.C. Porto']],\n", " [[' Lechia Gdańsk']],\n", " [[' Al-Arabi SC']],\n", " [[' Linköpings FC']],\n", " [[' Wales national association football team']],\n", " [[' FC Barcelona Femení']],\n", " [[' Italy national association football team']],\n", " [[' Quick-Step Alpha Vinyl Team']],\n", " [[' Real Salt Lake']],\n", " [[' TSG 1899 Hoffenheim']],\n", " [[' Colombia national football team']],\n", " [[' Spain national association football team']],\n", " [[' England national association football team']],\n", " [[' Australia national association football team']],\n", " [[' Iceland national association football team']],\n", " [[' AFC Bournemouth']],\n", " [[' Panionios F.C.']],\n", " [[' Real Sociedad']],\n", " [[' Uruguay national football team']],\n", " [[' Nea Salamis Famagusta FC']],\n", " [[' Atlanta Braves']],\n", " [[' Italy national association football team']],\n", " [[' S.L. Benfica']],\n", " [[' Bahrain Victorious']],\n", " [[' Vittsjö GIK']],\n", " [[' Argentina national football team']],\n", " [[' FC Erzgebirge Aue']],\n", " [[' FC Mordovia Saransk']],\n", " [[' Turkey national association football team']],\n", " [[' INAC Kobe Leonessa']],\n", " ...],\n", " 'labels_ids': [[[315, 532, 390, 18, 632, 4191, 165]],\n", " [[2201, 6130, 12, 534, 8362, 1851, 274, 4, 347, 4]],\n", " [[2361, 315, 274, 4, 347, 4]],\n", " [[1287, 1422, 6772]],\n", " [[83, 4, 347, 4, 7338]],\n", " [[2910, 632, 1037, 165]],\n", " [[4619, 26769, 4843, 242, 2005, 6945]],\n", " [[19763, 16872]],\n", " [[580, 3600, 315, 274, 4, 347, 4]],\n", " [[5429, 10402, 10489]],\n", " [[221, 15277, 2912, 438, 1020, 38220]],\n", " [[188, 469, 412, 5429]],\n", " [[6314, 16421]],\n", " [[272, 1479, 338, 8256, 525, 873, 338, 2158]],\n", " [[7016]],\n", " [[208, 4214, 23087, 7065, 3427, 242, 2893, 13345]],\n", " [[1429, 2337, 968, 165]],\n", " [[2201, 6130, 12, 534, 8362, 1851, 274, 4, 347, 4]],\n", " [[29018, 10221, 2684, 3622]],\n", " [[121, 4, 104, 4, 2575, 3281, 405, 1113, 35284]],\n", " [[525, 700, 20852, 12221, 274, 4, 347, 4]],\n", " [[1870, 2776, 12, 10926, 5857]],\n", " [[1614, 1113, 5245, 21098, 12150]],\n", " [[5429, 4612, 274, 15035, 1977]],\n", " [[5429, 10402, 10489]],\n", " [[315, 532, 390, 18, 632, 4191, 165]],\n", " [[91, 1610, 118, 274, 4, 347, 4]],\n", " [[13287, 12, 25093, 7829, 40236, 2711]],\n", " [[8700, 632, 1037, 165]],\n", " [[19763, 16872]],\n", " [[2009, 29018, 10221, 2684, 4119, 6303, 271, 1168]],\n", " [[11917, 3631, 3108, 139]],\n", " [[10585, 73, 9873, 35733, 5429]],\n", " [[5429, 4168, 3314, 11489, 2586]],\n", " [[5168, 5325]],\n", " [[2930, 32109, 20434, 20071]],\n", " [[22801, 274, 134, 2711]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[10035, 5317, 24058]],\n", " [[274, 530, 208, 41757, 6588, 3952, 1127, 2161, 3914, 1168, 649, 6800]],\n", " [[344, 20031, 12, 846, 40837, 2691]],\n", " [[2201, 6130, 12, 534, 8362, 1851, 274, 4, 347, 4]],\n", " [[5429, 4612]],\n", " [[83, 4, 347, 4, 7338]],\n", " [[5168, 5325]],\n", " [[24589, 1479, 6374, 208, 4, 347, 4]],\n", " [[274, 5777, 28185, 3381, 242, 14795]],\n", " [[6415, 1501, 9224, 38707]],\n", " [[2201, 6130, 12, 534, 8362, 1851, 274, 4, 347, 4]],\n", " [[3161, 14122, 1178]],\n", " [[1287, 1422, 5429]],\n", " [[1568, 1833, 5429]],\n", " [[18612, 32825, 24969, 468, 1322, 1090]],\n", " [[14993, 5150, 10888, 19864, 354]],\n", " [[1332, 242, 5413, 7222, 30089, 257, 5675, 2912, 438, 1020]],\n", " [[8937, 1113, 1209, 11868, 1343, 22398, 2711]],\n", " [[22705, 274, 4, 347, 4]],\n", " [[1568, 9926]],\n", " [[2499, 11476]],\n", " [[6015, 12696, 5429]],\n", " [[5168, 5325]],\n", " [[2812, 405, 15577, 274, 4, 347, 4]],\n", " [[5429, 4612]],\n", " [[2822, 3622, 12612]],\n", " [[5092, 632, 1037, 165]],\n", " [[163, 5269, 30919, 594, 272, 11680, 102]],\n", " [[29830, 18961]],\n", " [[6746, 13578, 7224]],\n", " [[226, 15089, 2383, 104, 6998, 337]],\n", " [[208, 4, 347, 4, 42028, 1206, 6377]],\n", " [[3417, 5809]],\n", " [[8712, 3937, 261, 23939, 338, 2133, 274, 4, 347, 4]],\n", " [[663, 11758]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[5028, 632, 1037, 165]],\n", " [[289, 7025, 530, 274, 1242, 428, 3937]],\n", " [[7556, 632, 5259, 1037, 165]],\n", " [[580, 3600, 315, 274, 4, 347, 4]],\n", " [[2177, 5429]],\n", " [[1287, 1422, 6772]],\n", " [[5429, 13142, 1073, 4242]],\n", " [[1429, 632, 1037, 165]],\n", " [[9601, 163, 8371, 14393]],\n", " [[5787, 5991, 8025, 1899]],\n", " [[5429, 10402, 10489]],\n", " [[5926, 2032, 16248, 5429]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[6331,\n", " 1975,\n", " 493,\n", " 3381,\n", " 4214,\n", " 20341,\n", " 1140,\n", " 119,\n", " 2426,\n", " 263,\n", " 944,\n", " 16231,\n", " 763,\n", " 126,\n", " 384,\n", " 4,\n", " 250,\n", " 4,\n", " 597,\n", " 4]],\n", " [[21774, 632, 1037, 165]],\n", " [[5480, 717, 27093, 918]],\n", " [[7505, 17458, 632, 1037, 165]],\n", " [[2822, 3622, 12612]],\n", " [[96, 242, 366, 13519, 625, 4733]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[4998, 5547, 1452, 7150]],\n", " [[20351, 2383, 42775, 2001, 33293]],\n", " [[31162, 857, 632, 1037, 165]],\n", " [[4622, 139, 4954, 347]],\n", " [[2361, 315, 274, 4, 347, 4]],\n", " [[2009, 263, 274, 5874, 90, 18217, 3385, 1334, 5460]],\n", " [[3870, 2561, 12612]],\n", " [[5680, 176, 500, 7801, 1001, 105, 282, 2711]],\n", " [[12602, 6801, 5463, 1885, 90, 22783]],\n", " [[5978, 4998]],\n", " [[6011, 1841, 12, 846, 8632, 6350, 12, 495, 3892, 877, 330]],\n", " [[6314, 16421]],\n", " [[2741, 1906, 6971, 10482]],\n", " [[8683, 390, 18, 632, 1037, 165]],\n", " [[17112, 3061, 12, 487, 5600, 139]],\n", " [[83, 4575, 3194, 29, 274, 530]],\n", " [[4152, 305, 4, 597, 4, 347, 4]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[2822, 3622, 12612]],\n", " [[4537, 415, 31126, 857, 208, 4, 530, 4]],\n", " [[1870, 2776, 12, 10926, 5857]],\n", " [[274, 2816, 11326, 705, 1526, 3985, 118, 21137]],\n", " [[2393, 873, 329, 1790, 12150]],\n", " [[2893, 13345, 29018, 10221, 2684, 16417, 4712]],\n", " [[2822, 3622, 4317, 261, 35678, 139]],\n", " [[20351, 2383, 42775, 2001, 33293]],\n", " [[14585, 2550, 1829, 7065, 3427, 7222, 4677, 1794, 853, 281]],\n", " [[2711, 344, 20031, 12, 846, 40837]],\n", " [[15338, 412, 83, 4, 597, 4, 347, 4]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[2893, 13345, 263, 6304, 415, 281, 109, 37313, 3314, 139]],\n", " [[2910, 632, 1037, 165]],\n", " [[1775, 438, 10810, 4936, 15247, 274, 4, 347, 4]],\n", " [[2201, 6130, 12, 534, 8362, 1851, 274, 4, 347, 4]],\n", " [[1287, 1422, 12190]],\n", " [[2201, 6130, 12, 534, 8362, 1851, 274, 1140, 4691, 833]],\n", " [[14993, 9504, 366, 274, 4, 347, 4]],\n", " [[3870, 7338]],\n", " [[2499, 18946]],\n", " [[274, 4, 347, 4, 2848, 139]],\n", " [[5429, 4612]],\n", " [[18490, 632, 5259, 1037, 165]],\n", " [[1568, 1211, 7144]],\n", " [[2822, 3622, 12612]],\n", " [[15607, 412, 274, 4, 347, 4]],\n", " [[208, 2544, 12, 565, 2070, 808, 9401, 468, 4, 846, 4]],\n", " [[14993, 5150, 263, 23294, 4061]],\n", " [[384, 4, 597, 4, 530, 4, 1456, 2154, 7822]],\n", " [[7320, 632, 1037, 165]],\n", " [[221, 4438, 274, 4, 347, 4]],\n", " [[7224, 597, 19643, 1688, 3999, 1243]],\n", " [[34138, 30422, 330, 274, 1242, 3512]],\n", " [[28147, 31732, 2711]],\n", " [[13943, 1001, 2848, 242, 14182]],\n", " [[15809, 1942, 315, 274, 4, 347, 4]],\n", " [[3303, 12179, 967, 366, 40431, 281, 274, 4, 347, 4]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[27268, 9228, 274, 4, 347, 4]],\n", " [[22753, 21386, 3624, 163, 5593, 225]],\n", " [[468, 16411, 493, 274, 4, 347, 4]],\n", " [[15206, 4699, 5429]],\n", " [[5429, 4168, 3314, 11489, 2586]],\n", " [[10600, 412, 274, 4, 347, 4]],\n", " [[6171, 390, 18, 632, 5259, 1037, 165]],\n", " [[2893, 13345, 263, 6304, 415, 281, 109, 37313, 3314, 139]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[11998, 28659, 163, 530]],\n", " [[26455, 330, 23759, 9051, 625, 4104, 37151, 11104]],\n", " [[12932, 534, 43130, 22590, 225, 10436]],\n", " [[29018, 10221, 2684, 3622]],\n", " [[5429, 5308]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[2711, 344, 20031, 12, 846, 40837]],\n", " [[10585, 73, 9873, 35733, 5429]],\n", " [[10157, 3830, 271, 5429, 305, 12, 17608]],\n", " [[2822, 6525, 354, 4317, 7474, 118, 1140]],\n", " [[663, 41375, 2857]],\n", " [[2201, 6130, 12, 534, 8362, 1851, 274, 1140, 4691, 833]],\n", " [[2711, 43657]],\n", " [[5524, 15933]],\n", " [[31853, 2678, 2583, 5429]],\n", " [[2822, 14585, 2550, 625]],\n", " [[7943, 17280, 13039]],\n", " [[4868, 846, 381, 2028, 5410, 2987]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[6415, 1501, 18794]],\n", " [[16518, 12470, 274, 4, 347, 4]],\n", " [[2742,\n", " 10172,\n", " 18307,\n", " 272,\n", " 1975,\n", " 2478,\n", " 5173,\n", " 330,\n", " 1722,\n", " 2463,\n", " 12,\n", " 1301,\n", " 10232,\n", " 1479,\n", " 267]],\n", " [[163, 1543, 219, 281, 4998]],\n", " [[2822, 3622, 12612]],\n", " [[468, 16411, 493, 274, 4, 347, 4]],\n", " [[29018, 10221, 2684, 3622]],\n", " [[7320, 632, 1037, 165]],\n", " [[8683, 632, 5259, 1037, 165]],\n", " [[3870, 7338]],\n", " [[315, 532, 604, 18, 632, 4191, 165]],\n", " [[2822, 3622, 12612]],\n", " [[7137, 12242, 15363, 274, 4, 347, 4]],\n", " [[22753, 21386, 3624, 163, 5593, 225]],\n", " [[7570, 20302, 7748, 274, 4, 347, 4]],\n", " [[384, 11961, 16911]],\n", " [[30135, 10620, 4937, 2315, 2696]],\n", " [[83, 4, 104, 4, 12218]],\n", " [[6748, 2723, 9697, 263, 1587, 2812, 257, 14379]],\n", " [[2177, 13114]],\n", " [[36858, 25278, 22753]],\n", " [[7320, 632, 1037, 165]],\n", " [[5429, 35068, 4122, 257]],\n", " [[256, 1526, 462, 6080, 12612]],\n", " [[12723, 381, 1452, 271]],\n", " [[764, 4578, 7963]],\n", " [[2201, 6130, 12, 534, 8362, 1851, 274, 4, 347, 4]],\n", " [[188, 469, 11836]],\n", " [[2986, 9207]],\n", " [[274, 4, 347, 4, 22843]],\n", " [[2009, 29018, 10221, 2684, 1995, 19201]],\n", " [[2822, 6525, 354, 4317, 7474, 118, 1140]],\n", " [[5926, 2032, 16248, 5429]],\n", " [[5429, 10402, 10489]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[2009, 29018, 10221, 2684, 4119, 6303, 271, 1168]],\n", " [[211, 21999, 12221, 274, 4, 347, 4]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[18490, 632, 5259, 1037, 165]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[226, 15089, 2383, 104, 6998, 337]],\n", " [[9692, 274, 4, 347, 4]],\n", " [[10060, 632, 5259, 1037, 165]],\n", " [[274, 5777, 28185, 3381, 242, 14795]],\n", " [[4537, 415, 31126, 857, 208, 4, 530, 4]],\n", " [[3317, 315, 5429]],\n", " [[15338, 412, 83, 4, 597, 4, 347, 4]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[14781, 632, 1037, 165]],\n", " [[31500, 242, 33846]],\n", " [[5429, 4168, 3314, 11489, 2586]],\n", " [[4537, 415, 31126, 857, 208, 4, 530, 4]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[13733, 632, 1037, 165]],\n", " [[5438, 763, 2860, 4365, 274, 4, 347, 4]],\n", " [[580, 14312, 11645, 19032, 274, 4, 347, 4]],\n", " [[7556, 632, 5259, 1037, 165]],\n", " [[10994, 11536, 632, 1037, 165]],\n", " [[2910, 632, 1037, 165]],\n", " [[5429, 9176]],\n", " [[5429, 10402, 10489]],\n", " [[188, 3324, 632, 8808, 2918, 165]],\n", " [[315, 532, 390, 18, 632, 4191, 165]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[12919, 274, 4, 347, 4]],\n", " [[7137, 2848, 274, 4, 347, 4]],\n", " [[15206, 4699, 5429]],\n", " [[13733, 632, 1037, 165]],\n", " [[6171, 632, 5259, 1037, 165]],\n", " [[1405, 12037, 163, 3632]],\n", " [[2361, 412, 305, 4, 597, 4, 347, 4]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[9688, 104, 6579, 18995]],\n", " [[163, 1543, 219, 281, 4998]],\n", " [[112, 4, 274, 5268, 14184]],\n", " [[208, 4, 104, 4, 15619, 1020]],\n", " [[83, 271, 25134, 13846, 282, 1988, 967, 13364, 3509]],\n", " [[5429, 229, 8428]],\n", " [[305, 5416, 926, 7210, 102, 4998]],\n", " [[208, 4, 347, 4, 2265, 6080]],\n", " [[208, 4, 510, 4, 6213, 4676, 858]],\n", " [[7224, 597, 19643, 1688, 3999, 1243]],\n", " [[2822, 6525, 354, 4317, 7474, 118, 1140]],\n", " [[10157, 3830, 271, 5429]],\n", " [[7248, 219, 8441]],\n", " [[19365, 1140, 102, 2383, 104, 7042, 636]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[5429, 4369, 329]],\n", " [[1287, 1422, 22320]],\n", " [[7296, 271, 8726, 12612]],\n", " [[12966, 6748, 2723, 7222, 726, 1176, 8129, 9401]],\n", " [[2009, 24066, 8843, 234, 1043, 6073]],\n", " [[726, 840, 873, 873, 5429]],\n", " [[15206, 4699, 5429]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[384, 10839, 642, 493, 5366, 2601]],\n", " [[7556, 632, 5259, 1037, 165]],\n", " [[9614, 632, 1037, 165]],\n", " [[11437, 632, 5259, 1037, 165]],\n", " [[96, 242, 366, 13519, 625, 4733]],\n", " [[22569, 1535, 121, 1889, 574]],\n", " [[229, 597, 5725, 12, 530, 8015, 415, 2552, 26067]],\n", " [[2027, 188, 469, 15626]],\n", " [[7556, 632, 5259, 1037, 165]],\n", " [[229, 530, 23067, 3623, 3119, 384, 10839, 642, 12733]],\n", " [[5703, 15908]],\n", " [[274, 5777, 28185, 3381, 242, 4011, 18, 12610]],\n", " [[2361, 412, 305, 4, 597, 4, 347, 4]],\n", " [[13633, 83, 4, 597, 4, 347, 4]],\n", " [[7320, 632, 1037, 165]],\n", " [[208, 4214, 15333, 5429]],\n", " [[9170, 2711, 8313]],\n", " [[1221, 1585, 324, 5363, 1745, 968, 165]],\n", " [[208, 4, 347, 4, 42028, 1206, 6377]],\n", " [[29018, 10221, 2684, 6843]],\n", " [[2910, 632, 1037, 165]],\n", " [[1568, 1211, 7144]],\n", " [[2009, 234, 1043, 6073, 263, 3910]],\n", " [[1625, 632, 1037, 165]],\n", " [[5480, 717, 27093, 918]],\n", " [[17100, 1908, 9216, 20233, 16885, 274, 4, 347, 4]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[163, 8982, 2133, 274, 4, 347, 4, 41861]],\n", " [[382, 1793, 24227, 1253]],\n", " [[6748, 2723, 9697, 25452, 338, 12109]],\n", " [[22839, 2727, 1587, 230, 6080, 3843]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[11426, 30402, 5429]],\n", " [[14993, 9504, 366, 274, 4, 347, 4]],\n", " [[230, 4, 104, 4, 13142, 23065, 5739]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[7320, 632, 1037, 165]],\n", " [[229, 4113, 254, 354, 12150]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[9170, 2711, 8313]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[10060, 632, 5259, 1037, 165]],\n", " [[5092, 632, 1037, 165]],\n", " [[14567, 9543]],\n", " [[6508, 632, 5259, 1037, 165]],\n", " [[15081]],\n", " [[7943, 17280, 13039]],\n", " [[2986, 9207]],\n", " [[91, 1610, 118, 274, 4, 347, 4]],\n", " [[3107, 7707, 274, 2401, 102, 163, 2723, 5675]],\n", " [[2009, 29018, 10221, 2684, 255, 11186, 1535]],\n", " [[255, 5156, 261, 6130, 12, 347, 4503, 9676, 7406, 3512]],\n", " [[5926, 8393, 18191]],\n", " [[96, 242, 366, 13519, 625, 4733]],\n", " [[22256, 2565, 632, 1037, 165]],\n", " [[3870, 7338]],\n", " [[31853, 2678, 2583, 5429]],\n", " [[274, 5777, 28185, 3381, 242, 14795]],\n", " [[2822, 3622, 12612]],\n", " [[3870,\n", " 119,\n", " 13161,\n", " 1140,\n", " 2383,\n", " 38576,\n", " 219,\n", " 2383,\n", " 534,\n", " 24761,\n", " 90,\n", " 4101,\n", " 1140,\n", " 1069,\n", " 8624]],\n", " [[12132, 632, 1037, 165]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[1456, 5235, 967, 4349, 5235, 344, 4, 530, 4]],\n", " [[5092, 632, 1037, 165]],\n", " [[4290, 5429]],\n", " [[13943, 1001, 2848, 242, 14182]],\n", " [[7960, 607, 274, 4, 347, 4]],\n", " [[230, 3376, 2711]],\n", " [[2009, 6748, 2723, 9697, 24066, 8843, 7641, 1479, 5895, 102]],\n", " [[9692, 274, 4, 347, 4]],\n", " [[2393, 873, 329, 1790, 12150]],\n", " [[580, 3600, 315, 274, 4, 347, 4]],\n", " [[10600, 3830, 3697, 274, 4, 347, 4]],\n", " [[274, 5777, 28185, 3381, 242, 14795]],\n", " [[3098, 274, 4, 347, 4, 2691]],\n", " [[1287, 1422, 6772]],\n", " [[272, 4, 104, 4, 38, 9418, 14496, 20, 7485, 30521, 8907]],\n", " [[10585, 73, 9873, 35733, 5429]],\n", " [[4307, 12599, 876, 2955, 272, 2583]],\n", " [[208, 4, 574, 4, 1664, 506, 2426]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[208, 4, 574, 4, 1664, 506, 2426]],\n", " [[2910, 632, 1037, 165]],\n", " [[5429, 4612, 274, 15035, 1977]],\n", " [[2711, 344, 20031, 12, 846, 40837]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[21105, 18604, 412, 274, 4, 347, 4]],\n", " [[468, 506, 574, 7602, 16408, 2691]],\n", " [[305, 2957, 260, 274, 4, 347, 4]],\n", " [[4380, 8271, 230, 5268]],\n", " [[2027, 188, 469, 15626]],\n", " [[36265, 22753]],\n", " [[230, 4, 495, 4, 2646, 23073, 1176, 1742]],\n", " [[91, 1610, 118, 274, 4, 347, 4]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[5429, 5896, 5973, 1512]],\n", " [[22753, 21386, 3624, 163, 5593, 225]],\n", " [[1156, 632, 5259, 1037, 165]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[14667, 12, 387, 3006, 1180, 632, 1037, 165]],\n", " [[234, 4, 717, 4, 347, 4]],\n", " [[3542, 1469, 6377, 274, 4, 347, 4]],\n", " [[1625, 632, 1037, 165]],\n", " [[9096, 3497, 632, 4105, 4191, 165]],\n", " [[5429, 30377, 1496, 219, 229, 5079, 282, 2160, 2726, 330]],\n", " [[2822, 3622, 12612]],\n", " [[13287, 12, 25093, 7829, 40236, 2711]],\n", " [[7505, 17458, 632, 1037, 165]],\n", " [[896, 604, 18, 632, 4191, 165]],\n", " [[6508, 632, 5259, 1037, 165]],\n", " [[798, 632, 1037, 165]],\n", " [[9614, 632, 1037, 165]],\n", " [[2822, 3622, 12612]],\n", " [[2009, 16528, 952, 3602, 257]],\n", " [[18490, 632, 5259, 1037, 165]],\n", " [[5429, 10402, 10489, 2691]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[15897, 944, 1899, 281, 2344, 523, 1694, 3006, 19200]],\n", " [[208, 10595, 3109, 412, 274, 4, 347, 4]],\n", " [[6314, 16421]],\n", " [[1568, 9926]],\n", " [[13694, 25280, 7204, 1627]],\n", " [[229, 7025, 30492, 241, 7450, 211, 7389]],\n", " [[1870, 2776, 12, 10926, 5857]],\n", " [[24799, 632, 1037, 165]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[4622, 139, 3767, 459, 38754]],\n", " [[35118, 2071, 40849]],\n", " [[274, 530, 6015, 255, 2558, 4955, 17010]],\n", " [[9170, 2711, 8313]],\n", " [[2822, 14585, 2550, 625]],\n", " [[3702, 7776, 281, 12150]],\n", " [[5168, 5325]],\n", " [[381, 4, 347, 4, 24589, 1479, 6374]],\n", " [[10897, 281, 1245, 12, 9325, 548, 2558]],\n", " [[2009, 29018, 10221, 2684, 1995, 19201]],\n", " [[3542, 1469, 6377, 274, 4, 347, 4]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[13800, 41269, 31221]],\n", " [[2201, 6130, 12, 534, 8362, 1851, 274, 4, 347, 4]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[2361, 412, 274, 4, 347, 4]],\n", " [[2711, 344, 20031, 12, 846, 40837]],\n", " [[5429, 10402, 10489]],\n", " [[13287, 12, 25093, 7829, 40236, 2711]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[3317, 10506]],\n", " [[1775, 438, 10810, 4936, 15247, 274, 4, 347, 4]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[11666, 274, 4, 347, 4]],\n", " [[208, 4, 347, 4, 23094, 1043, 6073]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[5092, 632, 1037, 165]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[112, 4, 5429, 234, 5172, 282, 2865]],\n", " [[2910, 632, 1037, 165]],\n", " [[5429, 2049, 16408]],\n", " [[2361, 412, 274, 4, 347, 4]],\n", " [[315, 532, 390, 18, 632, 4191, 165]],\n", " [[726, 12, 495, 2957, 3760, 4998]],\n", " [[9573, 274, 4, 347, 4]],\n", " [[11955, 274, 4, 347, 4]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[5819, 12770]],\n", " [[5703, 15908]],\n", " [[208, 4, 347, 4, 42028, 1206, 6377]],\n", " [[7137, 12242, 15363, 274, 4, 347, 4]],\n", " [[21780, 12527, 493, 234, 293, 255, 329, 26051, 274, 4, 347, 4]],\n", " [[1608, 179, 1561, 267, 18057, 344, 9707, 1115, 1250, 21783, 5410]],\n", " [[14993, 5150, 10888, 19864, 354]],\n", " [[5854, 13170]],\n", " [[9245, 315, 274, 4, 347, 4]],\n", " [[5429, 208, 1499]],\n", " [[5854, 412, 4998]],\n", " [[5429, 9176]],\n", " [[25103, 710, 6909, 3830, 267, 366, 263, 3060, 1043, 2070, 329]],\n", " [[230, 4, 495, 4, 2646, 23073, 1176, 1742]],\n", " [[17822, 1097, 7488, 5429]],\n", " [[7413, 268, 4998, 673]],\n", " [[7556, 632, 5259, 1037, 165]],\n", " [[3098, 274, 4, 347, 4, 2691]],\n", " [[17182, 5268, 163, 6457, 705, 468, 28814, 102]],\n", " [[21299, 2186, 274, 4, 347]],\n", " [[9035, 412, 274, 4, 347, 4]],\n", " [[5429, 13985, 405, 6130, 14330]],\n", " [[3417, 36802, 5429]],\n", " [[1625, 632, 1037, 165]],\n", " [[2499, 18946]],\n", " [[4537, 415, 31126, 857, 208, 4, 530, 4]],\n", " [[5729, 412, 5429]],\n", " [[24986, 6847, 20623, 261]],\n", " [[29018, 10221, 2684, 764, 6487, 3407, 14182, 12612]],\n", " [[2361, 315, 305, 4, 597, 4, 347, 4]],\n", " [[9601, 19119, 32482, 4989]],\n", " [[5244, 632, 1037, 165]],\n", " [[21774, 632, 1037, 165]],\n", " [[2000, 632, 1037, 165]],\n", " [[234, 2154, 11691, 5429]],\n", " [[1405, 12037, 163, 3632]],\n", " [[840, 463, 1657, 9002, 1173, 260, 274, 4, 347, 4]],\n", " [[5429, 4612]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[22256, 2565, 632, 1037, 165]],\n", " [[22378, 12, 18551, 139, 390, 18]],\n", " [[1568, 1211, 7144]],\n", " [[83, 4, 104, 4, 12218]],\n", " [[9176, 381, 12, 26902, 5429]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[5420, 15929]],\n", " [[14127, 7499, 16659]],\n", " [[468, 506, 387, 312, 9259, 22739]],\n", " [[83, 4, 104, 4, 12218]],\n", " [[2910, 632, 1037, 165]],\n", " [[12966, 6748, 2723, 7222, 726, 1176, 8129, 9401]],\n", " [[4152, 305, 4, 597, 4, 347, 4]],\n", " [[6171, 632, 5259, 1037, 165]],\n", " [[1625, 632, 1037, 165]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[9170, 2711, 8313]],\n", " [[5429, 24542, 298, 45739, 1879]],\n", " [[14993, 5150, 263, 23294, 4061]],\n", " [[391, 1101, 632, 1037, 165]],\n", " [[4150, 18140, 9401, 274, 4, 347, 4]],\n", " [[7320, 632, 1037, 165]],\n", " [[1429, 632, 1037, 165]],\n", " [[2000, 632, 1037, 165]],\n", " [[17535, 5382, 975, 844, 181, 73, 428, 17411, 12, 17906]],\n", " [[6015, 6130, 12, 23791, 90, 21302]],\n", " [[14585, 2550, 1829, 7065, 3427, 7222, 4677, 1794, 853, 281]],\n", " [[15837, 5223, 23872, 352, 118, 6579, 625, 6417]],\n", " [[3417, 36802, 5429]],\n", " [[6748, 2723, 9697, 17686, 26802, 274, 4, 347, 4]],\n", " [[4868, 846, 381, 2028, 5410, 2987]],\n", " [[468, 506, 387, 312, 9259, 22739, 3082]],\n", " [[230, 1116, 22831]],\n", " [[798, 632, 1037, 165]],\n", " [[44602, 154, 179, 344, 9707, 1115, 1250, 1638, 462, 36384]],\n", " [[9543, 11861, 90, 281]],\n", " [[83, 4, 104, 4, 12218]],\n", " [[4514, 9529]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[1600, 390, 18, 632, 1037, 165]],\n", " [[5429, 4612, 163, 5269, 30919, 594]],\n", " [[21774, 632, 1037, 165]],\n", " [[5716, 4597, 274, 4, 347, 4]],\n", " [[2361, 412, 274, 4, 347, 4]],\n", " [[5092, 632, 1037, 165]],\n", " [[1603, 632, 1037, 165]],\n", " [[5429, 3635, 1176]],\n", " [[381, 2544, 338, 11629, 14184]],\n", " [[2000, 632, 1037, 165]],\n", " [[7224, 597, 19643, 1688, 3999, 1243]],\n", " [[8983, 315, 274, 4, 347, 4]],\n", " [[15376, 493, 21115]],\n", " [[6037, 632, 1037, 165]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[5244, 632, 1037, 165]],\n", " [[230, 4, 597, 4, 4838, 4231, 225, 21526]],\n", " [[1429, 632, 1037, 165]],\n", " [[1505, 1704, 3497, 632, 1037, 165]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[35906, 384, 10839, 642, 12733, 226, 267, 1792, 462, 267, 1113]],\n", " [[5092, 632, 1037, 165]],\n", " [[1625, 632, 1037, 165]],\n", " [[2588, 2461, 83, 4643]],\n", " [[18749, 412, 274, 4, 347, 4]],\n", " [[2005, 3590, 274, 4467, 18217, 2893, 13345]],\n", " [[13943, 415, 1210, 405, 2383, 771, 16966, 1698, 28544]],\n", " [[5429, 13985, 405, 6130, 14330]],\n", " [[5480, 717, 27093, 918]],\n", " [[384, 13967, 274, 4467, 18217, 2893, 13345]],\n", " [[315, 532, 604, 18, 632, 4191, 165]],\n", " [[208, 4, 104, 4, 347, 4, 7645, 6483]],\n", " [[8683, 632, 5259, 1037, 165]],\n", " [[8712, 3937, 261, 23939, 338, 2133, 274, 4, 347, 4]],\n", " [[15376, 493, 21115]],\n", " [[2910, 632, 1037, 165]],\n", " [[369, 21894, 632, 1037, 165]],\n", " [[525, 700, 20852, 12221, 274, 4, 347, 4]],\n", " [[4317, 10031, 7339, 21098, 12150]],\n", " [[7765, 6412, 4998]],\n", " [[5498, 632, 1037, 165]],\n", " [[229, 4113, 254, 354, 12150]],\n", " [[5429, 11996, 1168, 22487, 14722]],\n", " [[6171, 632, 5259, 1037, 165]],\n", " [[44602, 154, 179, 344, 9707, 1115, 1250, 1638, 462, 36384]],\n", " [[4290, 5429]],\n", " [[5639, 632, 1037, 165]],\n", " [[14993, 9504, 366, 274, 4, 347, 4]],\n", " [[3098, 274, 4, 347, 4, 2691]],\n", " [[208, 4, 104, 4, 347, 4, 7645, 6483]],\n", " [[726, 12, 597, 5655, 7776, 5429]],\n", " [[3590, 4947, 922]],\n", " [[726, 12, 500, 20380, 5429]],\n", " [[14993, 5150, 10888, 19864, 354]],\n", " [[1603, 632, 1037, 165]],\n", " [[5854, 13170]],\n", " [[15091]],\n", " [[10060, 632, 5259, 1037, 165]],\n", " [[2009, 3574, 1423, 6748, 2723, 9697, 22378, 22378]],\n", " [[1156, 632, 5259, 1037, 165]],\n", " [[391, 1101, 632, 1037, 165]],\n", " [[163, 7110, 27547, 16784, 7406, 3512]],\n", " [[20351, 2383, 42775, 2001, 33293]],\n", " [[5092, 632, 1037, 165]],\n", " [[3098, 274, 4, 347, 4, 2691]],\n", " [[3160, 17492]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[315, 13716, 6350]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[4341, 3671, 642, 1033, 5429]],\n", " [[2000, 632, 1037, 165]],\n", " [[3426, 274, 4, 347, 4]],\n", " [[2711, 23070, 9089, 14035, 3309, 876]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[208, 4214, 1560, 1140, 8, 2869, 17010, 2520, 2379, 632, 1037, 165]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[1221, 632, 5259, 1037, 165]],\n", " [[24052, 17939, 208, 12, 510, 32767]],\n", " [[10060, 632, 5259, 1037, 165]],\n", " [[7320, 632, 1037, 165]],\n", " [[1480, 673, 3721, 274, 4, 347, 4]],\n", " [[1429, 390, 18, 632, 1037, 165]],\n", " [[896, 390, 18, 632, 4191, 165]],\n", " [[19763, 16872]],\n", " [[10060, 632, 5259, 1037, 165]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[2910, 632, 1037, 165]],\n", " [[4436, 26827, 906, 289, 1140, 763, 6070, 5413, 2009]],\n", " [[29018, 10221, 2684, 3622]],\n", " [[8683, 632, 5259, 1037, 165]],\n", " [[5429, 17326, 19654, 29712]],\n", " [[11666, 274, 4, 347, 4]],\n", " [[14993, 5150, 10888, 19864, 354]],\n", " [[5429, 1587, 687, 8799, 12, 19451]],\n", " [[2009, 3574, 1423, 6748, 2723, 9697, 22378, 22378]],\n", " [[944, 2253, 757, 3983, 1890, 6005]],\n", " [[22839, 2727, 3771, 20375, 4242]],\n", " [[660, 22494, 13310, 18440, 1073, 4193, 102, 5429]],\n", " [[726, 85, 90, 19284, 5429]],\n", " [[1586, 354, 20, 7485, 30521, 8907, 274, 4, 347, 4]],\n", " [[230, 1073, 3572, 1512, 2912, 438, 1020]],\n", " [[5429, 221, 4438, 412]],\n", " [[22705, 274, 4, 347, 4]],\n", " [[1221, 632, 5259, 1037, 165]],\n", " [[13733, 632, 1037, 165]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[4152, 305, 4, 597, 4, 347, 4]],\n", " [[5429, 4612]],\n", " [[764, 5465, 17010, 263, 33759, 783, 7499]],\n", " [[18490, 632, 5259, 1037, 165]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[5429, 7916, 354, 271]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[369, 17577, 315, 5429]],\n", " [[9601, 24857, 468, 8508, 11760]],\n", " [[112, 4, 5429, 1332, 5459]],\n", " [[7320, 632, 1037, 165]],\n", " [[15607, 412, 274, 4, 347, 4]],\n", " [[5429, 9922, 8530]],\n", " [[12587, 632, 1037, 165]],\n", " [[14781, 632, 1037, 165]],\n", " [[2742, 21402, 530, 4424, 22015, 2265, 415, 13714, 8604]],\n", " [[1793, 24227, 1253, 5463, 1885, 90, 163, 20997]],\n", " [[21774, 632, 1037, 165]],\n", " [[2561, 7772]],\n", " [[1890, 139, 12, 1000, 1698, 28544, 2711]],\n", " [[35722, 530, 11198, 163, 4, 347, 4]],\n", " [[15959, 1054, 8899, 274, 4, 347, 4]],\n", " [[6508, 632, 5259, 1037, 165]],\n", " [[2910, 632, 1037, 165]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[14993, 5150, 10888, 19864, 354]],\n", " [[726, 811, 2478, 18471]],\n", " [[5429, 4612]],\n", " [[2361, 315, 274, 4, 347, 4]],\n", " [[1625, 632, 1037, 165]],\n", " [[12940, 632, 5259, 1037, 165]],\n", " [[1221, 390, 18, 632, 4191, 165]],\n", " [[2822, 3622, 4317, 261, 35678, 139]],\n", " [[1870, 2776, 12, 10926, 5857]],\n", " [[5429, 11996, 1168, 22487, 14722]],\n", " [[256, 1526, 462, 6080, 12612]],\n", " [[3378, 1332]],\n", " [[28147, 31732, 2711]],\n", " [[274, 530, 468, 1120, 271]],\n", " [[188, 1156, 13340]],\n", " [[33846, 22153, 2001, 3917, 2253, 9401]],\n", " [[6331,\n", " 1975,\n", " 493,\n", " 3381,\n", " 4214,\n", " 6838,\n", " 1001,\n", " 6873,\n", " 1526,\n", " 6374,\n", " 263,\n", " 7065,\n", " 3427,\n", " 293]],\n", " [[211, 4, 347, 4, 315]],\n", " [[5429, 208, 1499]],\n", " [[2910, 632, 1037, 165]],\n", " [[5429, 15757, 12705, 3467]],\n", " [[229, 530, 5309, 2987, 102, 525, 20782, 6106]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[17609, 632, 1037, 165]],\n", " [[9793, 5928, 274, 4, 347, 4]],\n", " [[4868, 846, 381, 2028, 5410, 2987]],\n", " [[11437, 632, 5259, 1037, 165]],\n", " [[3870, 7338]],\n", " [[230, 2456, 6852, 9002, 1588, 1253]],\n", " [[2201, 5429]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[36589, 7876, 4668, 263, 732, 3695, 859, 102, 1792, 1069, 927]],\n", " [[12932, 534, 43130, 22590, 225, 10436]],\n", " [[21774, 632, 1037, 165]],\n", " [[369, 1961, 5429]],\n", " [[5429, 2218, 757, 3144]],\n", " [[2822, 3622, 12612]],\n", " [[1287, 1422, 5429]],\n", " [[32985, 967, 366, 274, 4, 347, 4]],\n", " [[2009, 255, 25491]],\n", " [[5837, 15945, 5429]],\n", " [[17983, 632, 1037, 165]],\n", " [[5429, 30610, 1417]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[391, 1101, 632, 1037, 165]],\n", " [[2769, 632, 5259, 1037, 165]],\n", " [[221, 5268, 7038, 14559, 3467]],\n", " [[7296, 271, 8726, 12612]],\n", " [[5429, 660, 329, 3592, 256, 7352, 1488, 330, 2331]],\n", " [[2822, 3622, 6719, 4699]],\n", " [[391, 1101, 632, 1037, 165]],\n", " [[12612, 221, 1488, 26802]],\n", " [[30492, 241, 7450, 14795]],\n", " [[6037, 632, 1037, 165]],\n", " [[3497, 9, 2487, 632, 5259, 1037, 165]],\n", " [[13708, 26450, 2912, 438, 1020]],\n", " [[274, 530, 11504, 257, 4807, 282, 2603, 21752, 26084, 2426]],\n", " [[5429, 5896, 5973, 1512]],\n", " [[315, 532, 390, 18, 632, 4191, 165]],\n", " [[14605, 632, 5259, 1037, 165]],\n", " [[8683, 632, 5259, 1037, 165]],\n", " [[12612, 4436, 20287, 337]],\n", " [[13633, 83, 4, 597, 4, 347, 4]],\n", " [[188, 3324, 632, 1037, 165]],\n", " [[468, 506, 574, 7602, 16408]],\n", " [[14993, 5150, 10888, 19864, 354, 274, 1140, 4691, 179]],\n", " [[121, 9056, 102, 1211, 7128, 29]],\n", " [[4622, 139, 3767, 459, 38754]],\n", " [[3430, 632, 1037, 165]],\n", " [[2893, 13345, 29018, 10221, 2684, 12765, 139, 4214, 2955, 6251, 763]],\n", " [[3274, 331, 4223]],\n", " [[226, 18307, 234, 324, 438, 324, 438, 2478]],\n", " [[10482, 2374, 11761, 775]],\n", " [[2910, 390, 18, 632, 1037, 165]],\n", " [[14567, 12612]],\n", " [[580, 3600, 315, 274, 4, 347, 4]],\n", " [[2393, 873, 329, 1790, 12150]],\n", " [[112, 4, 5429, 1332, 5459]],\n", " [[2201, 6130, 12, 534, 8362, 1851, 274, 4, 347, 4]],\n", " [[27162, 11626, 3990, 1722, 179, 274, 4, 347, 4]],\n", " [[16193, 632, 1037, 165]],\n", " [[2271, 13310, 36349, 2884, 337, 757, 5107, 5429]],\n", " [[7505, 17458, 632, 1037, 165]],\n", " [[20351, 2383, 42775, 2001, 33293]],\n", " [[7296, 271, 8726, 12612]],\n", " [[663, 11758]],\n", " [[3426, 274, 4, 347, 4]],\n", " [[18490, 632, 5259, 1037, 165]],\n", " [[5429, 4079, 90, 267, 19221, 463]],\n", " [[229, 5596, 21834]],\n", " [[31280, 282, 5269, 29048, 263, 255, 6166, 11408, 102]],\n", " [[12612, 4436, 20287, 337]],\n", " [[14664, 412, 5429]],\n", " [[21774, 632, 1037, 165]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[2361, 315, 274, 4, 347, 4]],\n", " [[12919, 5429]],\n", " [[726, 12, 3609, 895, 1543, 2636, 1847, 2009]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[2177, 2692, 10929]],\n", " [[764, 506, 13139, 1755, 35406, 15215]],\n", " [[9035, 412, 274, 4, 347, 4]],\n", " [[344, 30395, 12108, 368]],\n", " [[5429, 20632, 37613]],\n", " [[2381, 102, 3703, 574, 165]],\n", " [[7556, 632, 5259, 1037, 165]],\n", " [[19041, 10968, 6752, 10327]],\n", " [[208, 10729, 14777, 225]],\n", " [[6171, 632, 5259, 1037, 165]],\n", " [[14993, 5150, 10888, 19864, 354]],\n", " [[7505, 17458, 632, 1037, 165]],\n", " [[15639, 632, 5259, 1037, 165]],\n", " [[9793, 5928, 274, 4, 347, 4]],\n", " [[14993, 5150, 10888, 19864, 354, 274, 1140, 4691, 179]],\n", " [[221, 4, 250, 4, 673, 4, 530, 4, 20, 7485, 30521, 8907, 274, 4, 347, 4]],\n", " [[188, 469, 1211, 9926]],\n", " [[21774, 632, 1037, 165]],\n", " [[83, 4, 104, 4, 12218]],\n", " [[274, 530, 840, 330, 105, 1187, 12733]],\n", " [[5429, 10402, 10489, 2691]],\n", " [[289, 9760, 282, 2071, 274, 4, 347, 4]],\n", " [[5413, 2009, 109, 7382, 11819]],\n", " [[17468, 448, 13023, 5641, 163, 20997]],\n", " [[2893, 13345, 263, 6304, 415, 281, 109, 37313, 3314, 139]],\n", " [[2769, 632, 5259, 1037, 165]],\n", " [[2910, 632, 1037, 165]],\n", " [[2769, 632, 5259, 1037, 165]],\n", " [[17112, 3061, 12, 487, 5600, 139]],\n", " [[226, 4061, 384, 3632]],\n", " [[230, 1097, 241, 267, 22070, 263, 8550, 710, 1755]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[8683, 390, 18, 632, 865, 3512, 165]],\n", " [[25011, 12, 2022, 468, 11485, 102]],\n", " [[2361, 412, 274, 4, 347, 4]],\n", " [[3497, 9, 2487, 632, 5259, 1037, 165]],\n", " [[3378, 5553, 268]],\n", " [[1918, 1140, 14962, 274, 4467, 18217, 2893, 13345, 36, 21963, 43]],\n", " [[312, 4, 3217, 6293]],\n", " [[4766, 14572]],\n", " [[798, 632, 1037, 165]],\n", " [[3160, 17492]],\n", " [[8873, 9399, 1906, 263, 2588, 221, 2550, 5079]],\n", " [[896, 390, 18, 632, 4191, 165]],\n", " [[5429, 15757, 12705, 3467]],\n", " [[4380, 8271, 230, 5268]],\n", " [[5429, 7093, 523]],\n", " [[4436, 29, 385, 108, 11094, 4947, 11249, 3663, 13324]],\n", " [[1775, 438, 10810, 4936, 15247, 274, 4, 347, 4]],\n", " [[1470, 632, 5259, 1037, 165]],\n", " [[1586, 354, 8300, 2401, 1168, 274, 4, 347, 4]],\n", " [[20351, 2383, 42775, 2001, 33293]],\n", " [[22839, 2727, 6748, 2723, 7222, 726, 2089, 5272]],\n", " [[3332, 2646, 26681, 274, 4, 347, 4]],\n", " [[3378, 5553, 268]],\n", " [[15376, 493, 21115]],\n", " [[166, 5618, 4670, 274, 4, 347, 4]],\n", " [[369, 17577, 315, 5429]],\n", " [[221, 2336, 272, 30265, 1243, 274, 4, 347, 4]],\n", " [[188, 3324, 632, 1037, 165]],\n", " [[208, 4, 347, 4, 2265, 6080]],\n", " [[6171, 632, 5259, 1037, 165]],\n", " [[952, 10172, 5521, 718, 281, 12612]],\n", " [[229,\n", " 4,\n", " 104,\n", " 4,\n", " 347,\n", " 4,\n", " 226,\n", " 5361,\n", " 2558,\n", " 384,\n", " 2603,\n", " 12,\n", " 846,\n", " 2560,\n", " 463,\n", " 8663]],\n", " [[16588, 366, 12612]],\n", " [[315, 532, 604, 18, 632, 4191, 165]],\n", " [[3430, 632, 1037, 165]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[2009, 29018, 10221, 2684, 3182, 2727]],\n", " [[24195, 632, 1037, 165]],\n", " [[20421, 428, 10344, 274, 4, 347, 4]],\n", " [[14993, 5150, 263, 23294, 4061]],\n", " [[274, 530, 926, 4955, 118, 4807]],\n", " [[208, 4, 104, 4, 347, 4, 7645, 6483]],\n", " [[208, 4, 574, 4, 1664, 506, 2426]],\n", " [[9341, 261, 632, 1037, 165]],\n", " [[274, 530, 229, 7381, 139, 2742, 10809, 31316, 36533]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[312, 1829, 248, 18974, 354, 274, 4, 347, 4]],\n", " [[2009, 44285, 1851]],\n", " [[391, 1101, 632, 1037, 165]],\n", " [[36858, 25278, 22753]],\n", " [[2646, 1210, 24181, 274, 4, 347, 4]],\n", " [[5429, 4424, 22015, 11135, 2816, 438]],\n", " [[12132, 632, 1037, 165]],\n", " [[4174, 632, 5259, 1037, 165]],\n", " [[5244, 632, 1037, 165]],\n", " [[274, 3573, 4448, 6276]],\n", " [[1775, 438, 10810, 4936, 15247, 274, 4, 347, 4]],\n", " [[726, 12, 597, 5655, 7776, 4998]],\n", " [[234,\n", " 1561,\n", " 338,\n", " 29270,\n", " 19757,\n", " 274,\n", " 1242,\n", " 428,\n", " 3937,\n", " 26649,\n", " 3671,\n", " 241,\n", " 3509]],\n", " [[3274, 331, 4223]],\n", " [[11193, 1908, 274, 4, 347, 4]],\n", " [[17112, 3061, 12, 487, 5600, 139]],\n", " [[5429, 24542, 298, 45739, 1879]],\n", " [[2027, 188, 469, 15626]],\n", " [[13800, 41269, 31221]],\n", " [[7320, 632, 1037, 165]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[2711, 23070, 9089, 14035, 3309, 876]],\n", " [[5429, 2049, 16408]],\n", " [[2893, 13345, 263, 6304, 415, 281, 109, 37313, 3314, 139]],\n", " [[44558, 991, 853, 4077, 873, 2768, 2258, 12150]],\n", " [[1470, 390, 18, 632, 865, 3512, 165]],\n", " [[580, 3600, 315, 274, 4, 347, 4]],\n", " [[312, 1829, 248, 18974, 354, 274, 4, 347, 4]],\n", " [[3426, 274, 4, 347, 4]],\n", " [[21774, 632, 1037, 165]],\n", " [[896, 604, 18, 632, 4191, 165]],\n", " [[4436, 26827, 906, 289, 1140, 763, 6070, 5413, 2009]],\n", " [[5429, 221, 4438, 412]],\n", " [[1211, 2141, 274, 4, 347, 4]],\n", " [[726, 12, 534, 4759, 15997, 1847, 2009]],\n", " [[4998, 953, 7104]],\n", " [[315, 532, 604, 18, 632, 4191, 165]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[21774, 632, 1037, 165]],\n", " [[1221, 632, 5259, 1037, 165]],\n", " [[5429, 13913, 530, 12, 17986, 1001, 264, 705, 8224, 330, 1879, 2348]],\n", " [[28187, 687, 18612, 32825, 24969, 163, 8982, 2133]],\n", " [[4152, 274, 4, 347, 4]],\n", " [[3417, 36802, 5429]],\n", " [[2000, 632, 1037, 165]],\n", " [[25305, 8, 26288, 3733, 1417, 1243, 632, 1037, 165]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[11666, 274, 4, 347, 4]],\n", " [[6748, 2723, 9697, 25452, 338, 12109]],\n", " [[6371, 102, 1209, 1075, 274, 4, 347, 4]],\n", " [[2009, 29018, 10221, 2684, 4838, 281, 4989]],\n", " [[4152, 274, 4, 347, 4]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[3426, 274, 4, 347, 4]],\n", " [[5429, 229, 5079, 282, 1630, 271]],\n", " [[2009, 29018, 10221, 2684, 23654, 9401]],\n", " [[9692, 274, 4, 347, 4]],\n", " [[20, 4182, 677, 687, 29689, 6409, 1916]],\n", " [[7296, 271, 8726, 12612]],\n", " [[2822, 6525, 354, 4317, 7474, 118, 1140]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[2529, 119, 3671, 35960]],\n", " [[25305, 8, 26288, 3733, 1417, 1243, 632, 1037, 165]],\n", " [[4619, 26769, 4843, 242, 2005, 6945]],\n", " [[580, 14312, 11645, 19032, 274, 4, 347, 4]],\n", " [[14056, 369, 4680, 274, 4, 347, 4]],\n", " [[1156, 632, 5259, 1037, 165]],\n", " [[5092, 632, 1037, 165]],\n", " [[7224, 597, 19643, 1688, 3999, 1243]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[208, 4214, 15333, 5429]],\n", " [[96, 242, 366, 13519, 625, 4733]],\n", " [[14993, 5150, 10888, 19864, 354, 274, 1140, 4691, 179]],\n", " [[274, 530, 6015, 255, 2558, 4955, 17010]],\n", " [[255, 14744, 632, 1037, 165]],\n", " [[726, 12, 725, 718, 337, 208, 5268]],\n", " [[826, 2583, 12, 24667, 863]],\n", " [[208, 1741, 19209, 19380, 12, 565, 677, 47497]],\n", " [[6015, 16641, 163, 20997]],\n", " [[4677, 254, 4992, 5429]],\n", " [[9096, 3497, 632, 5259, 1037, 165]],\n", " [[315, 532, 604, 18, 632, 4191, 165]],\n", " [[12919, 274, 4, 347, 4]],\n", " [[391, 1101, 632, 1037, 165]],\n", " [[15607, 412, 274, 4, 347, 4]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[5429, 13985, 405, 6130, 14330]],\n", " [[6253, 846, 5620, 354, 3321]],\n", " [[8062, 632, 5259, 1037, 165]],\n", " [[11141, 281, 3060, 4488, 274, 4, 347, 4]],\n", " [[2910, 632, 1037, 165]],\n", " [[289, 24812, 523, 1456, 108, 254, 264, 3952, 274, 4, 347, 4]],\n", " [[726, 4417, 338, 4998]],\n", " [[13077, 412, 83, 4, 597, 4, 347, 4]],\n", " [[2032, 11850, 257, 5429]],\n", " [[5302, 2681, 1243, 967, 366, 274, 4, 347, 4]],\n", " [[33445, 14511, 3109]],\n", " [[2910, 632, 1037, 165]],\n", " [[384, 10839, 642, 493, 5366, 2601]],\n", " [[4152, 305, 4, 597, 4, 347, 4]],\n", " [[5092, 632, 1037, 165]],\n", " [[12723, 12130, 1178]],\n", " [[1156, 632, 5259, 1037, 165]],\n", " [[9692, 274, 4, 347, 4]],\n", " [[11536, 632, 1037, 165]],\n", " [[1211, 6518, 8441]],\n", " [[21774, 632, 1037, 165]],\n", " [[1221, 390, 18, 632, 4191, 165]],\n", " [[5028, 632, 1037, 165]],\n", " [[11437, 632, 5259, 1037, 165]],\n", " [[5706, 274, 4, 347, 4]],\n", " [[497, 5638, 405, 366, 274, 4, 347, 4]],\n", " [[2009, 27417, 2684, 2884, 1113, 9401]],\n", " [[248, 11579, 11631, 3785, 1168, 263, 4612]],\n", " [[18490, 632, 5259, 1037, 165]],\n", " [[5703, 38901, 4216]],\n", " [[289, 39933, 525, 625, 271]],\n", " [[5926, 2032, 16248, 5429]],\n", " [[4436, 29, 385, 108, 11094, 4947, 11249, 3663, 13324]],\n", " [[234, 1277, 21402, 211, 6472, 102, 42191, 11591]],\n", " [[726, 12, 3609, 102, 873, 230, 3632]],\n", " [[83, 4, 347, 4, 7338]],\n", " [[1600, 632, 5259, 1037, 165]],\n", " [[2822, 3622, 12612]],\n", " [[4644, 632, 5259, 1037, 165]],\n", " [[344, 5874, 428, 11313, 28579, 2186]],\n", " [[798, 632, 1037, 165]],\n", " [[840, 873, 873, 726, 7746, 3572, 2009]],\n", " [[9096, 3497, 632, 5259, 1037, 165]],\n", " [[2009, 29018, 10221, 2684, 4119, 6303, 271, 1168]],\n", " [[1775, 438, 10810, 4936, 15247, 274, 4, 347, 4]],\n", " [[5429, 4612, 163, 5269, 30919, 594]],\n", " [[29018, 10221, 2684, 2893, 13345, 263, 8062]],\n", " [[22256, 2565, 632, 1037, 165]],\n", " [[3098, 274, 4, 347, 4]],\n", " [[2910, 632, 1037, 165]],\n", " [[12933, 632, 1037, 165]],\n", " [[1491, 1872, 413, 274, 4, 347, 4]],\n", " [[14993, 9504, 366, 274, 4, 347, 4]],\n", " [[4273, 853, 424, 315, 274, 4, 347, 4]],\n", " [[1775, 438, 10810, 5477, 19067, 274, 4, 347, 4]],\n", " [[274, 4, 347, 4, 2848, 139]],\n", " [[1063, 611, 493, 272, 6106, 1277, 11936, 7771]],\n", " [[726, 12, 8138, 10810, 4998]],\n", " [[4341, 3671, 642, 1033, 5429]],\n", " [[5295, 632, 5259, 1037, 165]],\n", " [[5429, 4612, 274, 15035, 1977]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[13287, 12, 25093, 7829, 40236, 2711]],\n", " [[2822, 8957, 1777]],\n", " [[12932, 534, 43130, 22590, 225, 10436]],\n", " [[8700, 632, 1037, 165]],\n", " [[2809, 632, 5259, 1037, 165]],\n", " [[1156, 632, 5259, 1037, 165]],\n", " [[1221, 632, 5259, 1037, 165]],\n", " [[14605, 632, 5259, 1037, 165]],\n", " [[9601, 163, 8371, 14393]],\n", " [[5302, 1499, 4544, 274, 4, 347, 4]],\n", " [[2822, 14585, 2550, 625]],\n", " [[17609, 632, 1037, 165]],\n", " [[3864, 102, 35020, 354, 18440, 1073, 4193, 102, 5429]],\n", " [[3317, 13376]],\n", " [[2627, 632, 5259, 1037, 165]],\n", " [[208, 4, 574, 4, 1664, 506, 2426]],\n", " [[13800, 41269, 31221]],\n", " [[468, 2582, 29, 267, 3671, 272, 20458]],\n", " [[5244, 632, 1037, 165]],\n", " [[5429, 4594, 329, 1899, 428, 853, 1899, 83, 1780]],\n", " [[5429, 32889, 1417, 493, 4701, 30075]],\n", " [[2769, 632, 5259, 1037, 165]],\n", " [[2808, 2562, 24058, 9213, 15620]],\n", " ...],\n", " 'relation': ['P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " 'P54',\n", " ...],\n", " 'num_answers': [1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " 1,\n", " ...]}}" ] }, "execution_count": 7, "metadata": {}, "output_type": "execute_result" } ], "source": [ "unchanged_t" ] }, { "cell_type": "markdown", "id": "2b5c78b4", "metadata": { "pycharm": { "name": "#%% md\n" } }, "source": [ "## Multi-token generation" ] }, { "cell_type": "code", "execution_count": 8, "id": "a34bb52c", "metadata": { "pycharm": { "name": "#%%\n" } }, "outputs": [], "source": [ "from transformers import AutoTokenizer, AutoModel, pipeline\n", "lm = \"cardiffnlp/twitter-roberta-base-mar2022\"\n", "fill_mask_model = pipeline(\n", " 'fill-mask', model=lm, framework=\"pt\",\n", " tokenizer=tokenizer, top_k=100\n", ")\n", "model = fill_mask_model.model\n", "model.eval()\n", "cuda = torch.cuda.is_available()\n", "if cuda:\n", " model = model.cuda()\n", "year='2019-Q1'\n", "batch_size = 100\n", "N = batch_size # number of shots\n", "temperature = 1.0\n", "burnin = 200" ] }, { "cell_type": "code", "execution_count": 485, "id": "cbbd4ed0", "metadata": { "pycharm": { "name": "#%%\n" } }, "outputs": [], "source": [ "def generate_step(out, gen_idx, temperature=None, top_k=0, sample=False, return_list=True, num_masks=0):\n", " \"\"\" Generate a word from out[gen_idx]\n", "\n", " args:\n", " - out (torch.Tensor): tensor of logits of size batch_size x seq_len x vocab_size\n", " - gen_idx (int): location for which to generate for\n", " - top_k (int): if >0, only sample from the top k most probable words\n", " - sample (Bool): if True, sample from full distribution. Overridden by top_k\n", " \"\"\"\n", " logits = out[:, gen_idx]\n", " if num_masks==1: # if single-token then return the argmax\n", " idx = torch.argmax(logits, dim=-1)\n", " return idx.tolist() if return_list else idx\n", " else:\n", " if temperature is not None:\n", " logits = logits / temperature\n", " if top_k > 0:\n", " kth_vals, kth_idx = logits.topk(top_k, dim=-1)\n", " dist = torch.distributions.categorical.Categorical(logits=kth_vals)\n", " idx = kth_idx.gather(dim=1, index=dist.sample().unsqueeze(-1)).squeeze(-1)\n", " elif sample:\n", " dist = torch.distributions.categorical.Categorical(logits=logits)\n", " idx = dist.sample().squeeze(-1)\n", " else:\n", " idx = torch.argmax(logits, dim=-1)\n", " return idx.tolist() if return_list else idx" ] }, { "cell_type": "code", "execution_count": 486, "id": "55098592", "metadata": { "pycharm": { "name": "#%%\n" } }, "outputs": [], "source": [ "text_list = data_dict_multi_token[year]['text']\n", "labels_list = data_dict_multi_token[year]['labels']\n", "labels_ids_list = data_dict_multi_token[year]['labels_ids']\n", "relation_list = data_dict_multi_token[year]['relation']\n", "num_answers_list = data_dict_multi_token[year]['num_answers']" ] }, { "cell_type": "markdown", "id": "d610ade3", "metadata": { "pycharm": { "name": "#%% md\n" } }, "source": [ "### For a single test example:" ] }, { "cell_type": "code", "execution_count": 488, "id": "432a8b8a", "metadata": { "pycharm": { "name": "#%%\n" } }, "outputs": [], "source": [ "i = 0 # for i in range(0, len(text_list)) i is in [0,#test examples]" ] }, { "cell_type": "code", "execution_count": 489, "id": "57a94b30", "metadata": { "pycharm": { "name": "#%%\n" } }, "outputs": [ { "data": { "text/plain": [ "11238" ] }, "execution_count": 489, "metadata": {}, "output_type": "execute_result" } ], "source": [ "len(text_list)" ] }, { "cell_type": "code", "execution_count": 497, "id": "76502181", "metadata": { "pycharm": { "name": "#%%\n" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Example: ['Alex Morgan plays for .'], Labels: [\" United States women's national soccer team\"], Ids: [315, 532, 390, 18, 632, 4191, 165]\n" ] } ], "source": [ "text_i = text_list[i]\n", "# text_i = ['The name of the current president of the United States is .']\n", "labels_i = labels_list[i][0]\n", "labels_ids_i = labels_ids_list[i][0] # there is an 'extra' list that is why we put [0]\n", "relation_i = relation_list[i]\n", "num_answers_i = num_answers_list[i]\n", "print('Example: {}, Labels: {}, Ids: {}'.format(text_i, labels_i, labels_ids_i))" ] }, { "cell_type": "markdown", "id": "b29edc06", "metadata": { "pycharm": { "name": "#%% md\n" } }, "source": [ "## We have the test example: \"Alex Morgan plays for X.\" where the object (team) is \" United States women's national soccer team\". \n", "\n", "We tokenize the gold label string and this results in 7 masks, with the following token ids `[315, 532, 390, 18, 632, 4191, 165]`. \n", "\n", "We thus prompt the model with `\"Alex Morgan plays for .\"` and find the most probable `N=100` generated token sequences of length M=7." ] }, { "cell_type": "code", "execution_count": 498, "id": "8af0d932", "metadata": { "pycharm": { "name": "#%%\n" } }, "outputs": [], "source": [ "generated_seq_tokens = [[] for _ in range(batch_size)] # for each trial\n", "logits_list = [[] for _ in range(batch_size)]" ] }, { "cell_type": "code", "execution_count": 499, "id": "e509a0e5", "metadata": { "pycharm": { "name": "#%%\n" } }, "outputs": [], "source": [ "# tokenize text\n", "tokenized_sentence = tokenizer_return_id(text_i)[0]\n", "\n", "# mask indices to generate\n", "mask_inds = list(np.where(np.array(tokenized_sentence) == mask_id)[0])\n", "\n", "# number of masks (tokens)\n", "M = len(mask_inds)\n", "\n", "# create batch (same input, N times)\n", "tokenized_sentence_b = [tokenized_sentence for _ in range(batch_size)]" ] }, { "cell_type": "code", "execution_count": 500, "id": "b4cccf38", "metadata": { "pycharm": { "name": "#%%\n" } }, "outputs": [ { "data": { "text/plain": [ "[5, 6, 7, 8, 9, 10, 11]" ] }, "execution_count": 500, "metadata": {}, "output_type": "execute_result" } ], "source": [ "mask_inds" ] }, { "cell_type": "code", "execution_count": 501, "id": "0eaf7d70", "metadata": { "pycharm": { "name": "#%%\n" } }, "outputs": [], "source": [ "for m in mask_inds:\n", " # tensor\n", " inp = torch.tensor(tokenized_sentence_b).cuda() if cuda else torch.tensor(tokenized_sentence_b)\n", "\n", " # get logits\n", " out = model(inp)\n", " logits = out.logits # batch_size x max_len x vocab\n", "\n", " # get new ids\n", " idxs_b = generate_step(logits, gen_idx=m, top_k=10, temperature=temperature, # sample=(m < burnin)\n", " )\n", "\n", " # replace mask with predicted token id\n", " tokenized_sentence_b_np = np.array(tokenized_sentence_b) \n", " tokenized_sentence_b_np[:,m] = np.array(idxs_b)\n", " tokenized_sentence_b = tokenized_sentence_b_np.tolist() \n", "\n", " # the following code does not work *and I don't know why*\n", " # for jj in range(len(idxs_b)):\n", " # print('before: {}, predicted token id: {}'.format(tokenized_sentence_b[jj][m],idxs_b[jj]))\n", " # tokenized_sentence_b[jj][m] = idxs_b[jj]\n", "\n", " assert sorted(idxs_b) == sorted([sent[m] for sent in tokenized_sentence_b])\n", "\n", " # find logits\n", " logits_m = logits[:,m] # logits for the mask in position m\n", " logits_b = logits_m[:,idxs_b].tolist()[0] # logits for sampled tokens\n", "\n", " assert len(idxs_b) == len(logits_b)\n", "\n", " # add generated tokens and corresponding logits to lists\n", " for j in range(N):\n", " generated_seq_tokens[j].append(idxs_b[j])\n", " logits_list[j].append(logits_b[j])" ] }, { "cell_type": "code", "execution_count": 502, "id": "1d8634e4", "metadata": { "pycharm": { "name": "#%%\n" } }, "outputs": [], "source": [ "# calculate sum of logits for each generated sequence of tokens\n", "sum_logits = np.array(logits_list).sum(axis=-1)\n", "\n", "# finding ranking (return indices of the parallel lists for logits and generated tokens)\n", "ranked_inds_of_list = sum_logits.argsort()[::-1]\n", "\n", "# ranked logits sum in descending order\n", "ranked_logits = sum_logits[ranked_inds_of_list]\n", "\n", "# ranked generated tokens in descending order\n", "ranked_generated_tokens = np.array(generated_seq_tokens)[ranked_inds_of_list]" ] }, { "cell_type": "code", "execution_count": 503, "id": "104d8611", "metadata": { "pycharm": { "name": "#%%\n" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "0: the @OfficialFAFA right now\n", "1: the @OfficialBRFC as well\n", "2: the #AFCAFLs\n", "3: the U.S. national team\n", "4: the @CelticFC side\n", "5: the @LFC and are amazing\n", "6: the U.K. national team\n", "7: the #Eagles in this game\n", "8: the @user @user @user\n", "9: the @Saints at the moment\n", "10: the #Rams for the season\n", "11: the @LFC against #Arsenal\n", "12: the @Rovers at 10 tonight\n", "13: the #Eagles at the minute\n", "14: the @Eagles in a minute\n", "15: the #Eagles in the game\n", "16: the @user as the youth manager\n", "17: the #Bears on the night\n", "18: the @user on Friday at home\n", "19: the U.S. Soccer Team\n", "20: the #Rays in this clip\n", "21: the @user to start the game\n", "22: the US national team in this match\n", "23: the @user today at the Stadium\n", "24: the @user as his first international\n", "25: the @Lions tonight in Philly\n", "26: @RangersFC as the forward\n", "27: the #LeedsCity side today\n", "28: the @user in the home opener\n", "29: @user and @user this weekend\n", "30: the Red Devils. That's it\n", "31: @user and @user on Thursday\n", "32: the #Bills, per sources\n", "33: @user and @user this afternoon\n", "34: the #NRLStormCrows\n", "35: #LFC. Not for Liverpool\n", "36: the Blues. It's so weird\n", "37: Chelsea and United, not the club\n", "38: #SOUL in the final\n", "39: Liverpool and City, as he should\n", "40: the #Nets and Nets Nets\n", "41: Chelsea as the captain of this season\n", "42: Leeds City and not for the club\n", "43: @RangersFC at his place\n", "44: #Leeds from the right side\n", "45: the United States of America in 2021\n", "46: @user @user on the ice\n", "47: the Kings and is the first scorer\n", "48: Arsenal, not the Premier League side\n", "49: the Blues, not the Premier League\n", "50: the US National Team. Good luck\n", "51: the Kings and has the most assists\n", "52: Arsenal. Arsenal are playing for him\n", "53: @NEDUtd and England\n", "54: the Kings, as the NBA confirmed\n", "55: Leeds United. There is no alternative\n", "56: #LFC at the half time\n", "57: Manchester United. He is our captain\n", "58: the @SydneyKings tonight\n", "59: Liverpool. He's the next Liverpool\n", "60: Liverpool, but not as a manager\n", "61: a team that's not at fault\n", "62: Arsenal, the Arsenal of the world\n", "63: Manchester United. That��s\n", "64: a national team in Italy for me\n", "65: @user and @user both nights\n", "66: the Red Bulls in his 20s\n", "67: England. I want to be there\n", "68: Arsenal and the FA cup is empty\n", "69: Arsenal to win the Premier League today\n", "70: Leeds to play for Leeds this season\n", "71: a club that's just not interested\n", "72: Chelsea. I hope he is right\n", "73: Liverpool. The club has a problem\n", "74: Arsenal and he has a good name\n", "75: a new club in the EPL\n", "76: Chelsea, he's a Chelsea player\n", "77: a club that has a massive debt\n", "78: a club to win the Champions League\n", "79: @user today. He looks fit\n", "80: Arsenal and not the Arsenal football club\n", "81: England in this game. For free\n", "82: Leeds. This is how it is\n", "83: Chelsea, not Arsenal. No rules\n", "84: @user in the @user tournament\n", "85: @user as he returns from England\n", "86: Manchester City against the Champions League champions\n", "87: @user at 7:30 today\n", "88: England and he is an amazing footballer\n", "89: a city that��s shit\n", "90: Chelsea. That��s all\n", "91: England, not the U.K\n", "92: a club with a massive wage bill\n", "93: England and I��m happy\n", "94: Chelsea. It��s true\n", "95: Liverpool. It��s official\n", "96: Leeds. I��m stunned\n", "97: #Rams for 2nd period\n", "98: Liverpool. It��s obvious\n", "99: Arsenal but not for Tottenham Hotspur\n" ] } ], "source": [ "for no, p in enumerate(ranked_generated_tokens):\n", " print('{}: {}'.format(no,\"\".join(untokenize_id(p))))" ] }, { "cell_type": "markdown", "id": "a64591cd", "metadata": { "pycharm": { "name": "#%% md\n" } }, "source": [ "## We can see that the model's 4th most probable prediction is `\" the U.S. national team\"` which we would expect to be a correct answer. \n", "\n", "However, the actual token ids of this generated sequence are `[5, 121, 4, 104, 4, 632, 165]`, while the 'gold' tokens are `[315, 532, 390, 18, 632, 4191, 165]`" ] }, { "cell_type": "markdown", "id": "77610b62", "metadata": { "pycharm": { "name": "#%% md\n" } }, "source": [ "## Evaluation\n", "\n", "TempLAMA: \"F1 score, which captures the precision \n", " and recall that words chosen as being part of the answer are actually part of the answer.\"" ] }, { "cell_type": "code", "execution_count": 504, "id": "007bfb63", "metadata": { "scrolled": true, "pycharm": { "name": "#%%\n" } }, "outputs": [], "source": [ "# compare with gold labels\n", "import evaluate\n", "assert len(labels_ids_i) == M\n", "f1_micro_list, f1_macro_list = [], []\n", "rouge_list, bleu_list = [], []\n", "\n", "rouge = evaluate.load('rouge')\n", "bleu = evaluate.load(\"bleu\")" ] }, { "cell_type": "code", "execution_count": 505, "id": "cc4d2bb4", "metadata": { "pycharm": { "name": "#%%\n" } }, "outputs": [ { "data": { "text/plain": [ "[315, 532, 390, 18, 632, 4191, 165]" ] }, "execution_count": 505, "metadata": {}, "output_type": "execute_result" } ], "source": [ "labels_ids_i" ] }, { "cell_type": "code", "execution_count": 1, "id": "18be1328", "metadata": { "pycharm": { "name": "#%%\n" } }, "outputs": [ { "ename": "NameError", "evalue": "name 'ranked_generated_tokens' is not defined", "output_type": "error", "traceback": [ "\u001B[0;31m---------------------------------------------------------------------------\u001B[0m", "\u001B[0;31mNameError\u001B[0m Traceback (most recent call last)", "Input \u001B[0;32mIn [1]\u001B[0m, in \u001B[0;36m\u001B[0;34m()\u001B[0m\n\u001B[0;32m----> 1\u001B[0m \u001B[43mranked_generated_tokens\u001B[49m[\u001B[38;5;241m3\u001B[39m]\n", "\u001B[0;31mNameError\u001B[0m: name 'ranked_generated_tokens' is not defined" ] } ], "source": [ "ranked_generated_tokens[3]" ] }, { "cell_type": "code", "execution_count": 509, "id": "4ffa6c1d", "metadata": { "pycharm": { "name": "#%%\n" } }, "outputs": [], "source": [ "for j in range(0,N):\n", " gold_ids = labels_ids_i\n", " pred_ids_j = ranked_generated_tokens[j]\n", " gold_tok = labels_i # list of strings\n", " pred_tok_j = [\"\".join(untokenize_id(ranked_generated_tokens[j]))] # list of strings\n", " \n", " # F1 score\n", " # F1_micro calculates metrics globally by counting the total true positives, \n", " # false negatives and false positives.\n", " f1_micro_list.append(f1_score(gold_ids,pred_ids_j, average='micro')) \n", " # F1_macro calculates metrics for each label, and finds their unweighted mean. \n", " # This does not take label imbalance into account.\n", " f1_macro_list.append(f1_score(gold_ids,pred_ids_j, average='macro'))\n", " \n", " # BLEU\n", " bleu_list.append(bleu.compute(references=gold_tok,\n", " predictions=pred_tok_j)['bleu'])\n", "\n", " # ROUGE\n", " rouge_list.append(rouge.compute(references=gold_tok,\n", " predictions=pred_tok_j))\n", " \n", " # exact match / P@1\n", "max_f1_micro = np.array(f1_micro_list).max()\n", "max_f1_macro = np.array(f1_macro_list).max()\n", "max_bleu = np.array(bleu_list).max()" ] }, { "cell_type": "code", "execution_count": 512, "id": "e2023a19", "metadata": { "pycharm": { "name": "#%%\n" } }, "outputs": [ { "data": { "text/plain": [ "[0.0,\n", " 0.0,\n", " 0.0,\n", " 0.09090909090909091,\n", " 0.0,\n", " 0.0,\n", " 0.09090909090909091,\n", " 0.0,\n", " 0.0,\n", " 0.0,\n", " 0.0,\n", " 0.0,\n", " 0.0,\n", " 0.0,\n", " 0.0,\n", " 0.0,\n", " 0.0,\n", " 0.0,\n", " 0.0,\n", " 0.0,\n", " 0.0,\n", " 0.0,\n", " 0.0,\n", " 0.0,\n", " 0.0,\n", " 0.0,\n", " 0.0,\n", " 0.0,\n", " 0.0,\n", " 0.0,\n", " 0.0,\n", " 0.0,\n", " 0.0,\n", " 0.0,\n", " 0.0,\n", " 0.0,\n", " 0.0,\n", " 0.0,\n", " 0.0,\n", " 0.0,\n", " 0.0,\n", " 0.0,\n", " 0.0,\n", " 0.0,\n", " 0.0,\n", " 0.0,\n", " 0.0,\n", " 0.0,\n", " 0.0,\n", " 0.0,\n", " 0.0,\n", " 0.0,\n", " 0.0,\n", " 0.0,\n", " 0.0,\n", " 0.0,\n", " 0.0,\n", " 0.0,\n", " 0.0,\n", " 0.08333333333333333,\n", " 0.0,\n", " 0.08333333333333333,\n", " 0.0,\n", " 0.0,\n", " 0.0,\n", " 0.0,\n", " 0.0,\n", " 0.0,\n", " 0.0,\n", " 0.0,\n", " 0.0,\n", " 0.07692307692307693,\n", " 0.0,\n", " 0.0,\n", " 0.0,\n", " 0.0,\n", " 0.08333333333333333,\n", " 0.0,\n", " 0.0,\n", " 0.0,\n", " 0.0,\n", " 0.0,\n", " 0.0,\n", " 0.0,\n", " 0.0,\n", " 0.0,\n", " 0.0,\n", " 0.0,\n", " 0.0,\n", " 0.0,\n", " 0.0,\n", " 0.0,\n", " 0.0,\n", " 0.0,\n", " 0.0,\n", " 0.0,\n", " 0.0,\n", " 0.0,\n", " 0.0,\n", " 0.0]" ] }, "execution_count": 512, "metadata": {}, "output_type": "execute_result" } ], "source": [ "f1_macro_list" ] }, { "cell_type": "code", "execution_count": 234, "id": "bd3e051f", "metadata": { "pycharm": { "name": "#%%\n" } }, "outputs": [ { "data": { "text/plain": [ "[' luxury cars']" ] }, "execution_count": 234, "metadata": {}, "output_type": "execute_result" } ], "source": [ "[\"\".join(untokenize_id(ranked_generated_tokens[42]))]" ] }, { "cell_type": "code", "execution_count": 235, "id": "7e3a9a34", "metadata": { "pycharm": { "name": "#%%\n" } }, "outputs": [ { "data": { "text/plain": [ "{'bleu': 0.0,\n", " 'precisions': [0.0, 0.0, 0.0, 0.0],\n", " 'brevity_penalty': 1.0,\n", " 'length_ratio': 1.0,\n", " 'translation_length': 2,\n", " 'reference_length': 2}" ] }, "execution_count": 235, "metadata": {}, "output_type": "execute_result" } ], "source": [ "bleu.compute(references=labels_i,\n", " predictions=[\"\".join(untokenize_id(ranked_generated_tokens[42]))])" ] }, { "cell_type": "code", "execution_count": 236, "id": "be471db1", "metadata": { "pycharm": { "name": "#%%\n" } }, "outputs": [ { "data": { "text/plain": [ "[{'rouge1': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.5, recall=0.5, fmeasure=0.5), mid=Score(precision=0.5, recall=0.5, fmeasure=0.5), high=Score(precision=0.5, recall=0.5, fmeasure=0.5)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.5, recall=0.5, fmeasure=0.5), mid=Score(precision=0.5, recall=0.5, fmeasure=0.5), high=Score(precision=0.5, recall=0.5, fmeasure=0.5)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.5, recall=0.5, fmeasure=0.5), mid=Score(precision=0.5, recall=0.5, fmeasure=0.5), high=Score(precision=0.5, recall=0.5, fmeasure=0.5))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.5, recall=0.5, fmeasure=0.5), mid=Score(precision=0.5, recall=0.5, fmeasure=0.5), high=Score(precision=0.5, recall=0.5, fmeasure=0.5)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.5, recall=0.5, fmeasure=0.5), mid=Score(precision=0.5, recall=0.5, fmeasure=0.5), high=Score(precision=0.5, recall=0.5, fmeasure=0.5)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.5, recall=0.5, fmeasure=0.5), mid=Score(precision=0.5, recall=0.5, fmeasure=0.5), high=Score(precision=0.5, recall=0.5, fmeasure=0.5))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.5, recall=0.5, fmeasure=0.5), mid=Score(precision=0.5, recall=0.5, fmeasure=0.5), high=Score(precision=0.5, recall=0.5, fmeasure=0.5)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.5, recall=0.5, fmeasure=0.5), mid=Score(precision=0.5, recall=0.5, fmeasure=0.5), high=Score(precision=0.5, recall=0.5, fmeasure=0.5)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.5, recall=0.5, fmeasure=0.5), mid=Score(precision=0.5, recall=0.5, fmeasure=0.5), high=Score(precision=0.5, recall=0.5, fmeasure=0.5))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.5, recall=0.5, fmeasure=0.5), mid=Score(precision=0.5, recall=0.5, fmeasure=0.5), high=Score(precision=0.5, recall=0.5, fmeasure=0.5)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.5, recall=0.5, fmeasure=0.5), mid=Score(precision=0.5, recall=0.5, fmeasure=0.5), high=Score(precision=0.5, recall=0.5, fmeasure=0.5)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.5, recall=0.5, fmeasure=0.5), mid=Score(precision=0.5, recall=0.5, fmeasure=0.5), high=Score(precision=0.5, recall=0.5, fmeasure=0.5))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.5, recall=0.5, fmeasure=0.5), mid=Score(precision=0.5, recall=0.5, fmeasure=0.5), high=Score(precision=0.5, recall=0.5, fmeasure=0.5)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.5, recall=0.5, fmeasure=0.5), mid=Score(precision=0.5, recall=0.5, fmeasure=0.5), high=Score(precision=0.5, recall=0.5, fmeasure=0.5)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.5, recall=0.5, fmeasure=0.5), mid=Score(precision=0.5, recall=0.5, fmeasure=0.5), high=Score(precision=0.5, recall=0.5, fmeasure=0.5))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.5, recall=0.5, fmeasure=0.5), mid=Score(precision=0.5, recall=0.5, fmeasure=0.5), high=Score(precision=0.5, recall=0.5, fmeasure=0.5)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.5, recall=0.5, fmeasure=0.5), mid=Score(precision=0.5, recall=0.5, fmeasure=0.5), high=Score(precision=0.5, recall=0.5, fmeasure=0.5)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.5, recall=0.5, fmeasure=0.5), mid=Score(precision=0.5, recall=0.5, fmeasure=0.5), high=Score(precision=0.5, recall=0.5, fmeasure=0.5))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0))},\n", " {'rouge1': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rouge2': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeL': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0)),\n", " 'rougeLsum': AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0))}]" ] }, "execution_count": 236, "metadata": {}, "output_type": "execute_result" } ], "source": [ "rouge_list" ] }, { "cell_type": "code", "execution_count": 230, "id": "0fc0976e", "metadata": { "pycharm": { "name": "#%%\n" } }, "outputs": [ { "data": { "text/plain": [ "0.3333333333333333" ] }, "execution_count": 230, "metadata": {}, "output_type": "execute_result" } ], "source": [ "np.array(f1_macro_list).max()" ] }, { "cell_type": "code", "execution_count": 231, "id": "f9423395", "metadata": { "pycharm": { "name": "#%%\n" } }, "outputs": [ { "data": { "text/plain": [ "0.0" ] }, "execution_count": 231, "metadata": {}, "output_type": "execute_result" } ], "source": [ "np.array(bleu_list).max()" ] }, { "cell_type": "markdown", "id": "e28781bf", "metadata": { "pycharm": { "name": "#%% md\n" } }, "source": [ "# All together:" ] }, { "cell_type": "code", "execution_count": 299, "id": "49a620fd", "metadata": { "pycharm": { "name": "#%%\n" } }, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ " 0%| | 1/1000 [00:03<56:53, 3.42s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.14285714285714285, Avg f_macro 0.07692307692307693\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 0%|▏ | 2/1000 [00:04<29:59, 1.80s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.07142857142857142, Avg f_macro 0.038461538461538464\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 0%|▎ | 3/1000 [00:06<33:08, 1.99s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.11428571428571428, Avg f_macro 0.053418803418803416\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 0%|▍ | 4/1000 [00:07<27:14, 1.64s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.16904761904761906, Avg f_macro 0.09006410256410256\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 0%|▌ | 5/1000 [00:09<31:51, 1.92s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13523809523809524, Avg f_macro 0.07205128205128206\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 1%|▌ | 6/1000 [00:12<34:34, 2.09s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1793650793650794, Avg f_macro 0.08385225885225885\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 1%|▋ | 7/1000 [00:13<31:41, 1.92s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1894557823129252, Avg f_macro 0.0922815279958137\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 1%|▊ | 8/1000 [00:16<35:32, 2.15s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.16577380952380955, Avg f_macro 0.08074633699633699\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 1%|▉ | 9/1000 [00:17<28:43, 1.74s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.14735449735449738, Avg f_macro 0.07177452177452176\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 1%|█ | 10/1000 [00:18<23:57, 1.45s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13261904761904764, Avg f_macro 0.0645970695970696\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 1%|█ | 11/1000 [00:19<22:33, 1.37s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.15086580086580087, Avg f_macro 0.07690642690642689\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 1%|█▏ | 12/1000 [00:22<32:31, 1.98s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1501984126984127, Avg f_macro 0.07744200244200243\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 1%|█▎ | 13/1000 [00:23<28:32, 1.74s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13864468864468865, Avg f_macro 0.07148492533107917\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 1%|█▍ | 14/1000 [00:29<50:19, 3.06s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1358843537414966, Avg f_macro 0.06902436188150474\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 2%|█▌ | 15/1000 [00:31<44:24, 2.71s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1434920634920635, Avg f_macro 0.0739465472798806\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 2%|█▌ | 16/1000 [00:32<34:23, 2.10s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13452380952380952, Avg f_macro 0.06932488807488807\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 2%|█▋ | 17/1000 [00:33<30:41, 1.87s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.12661064425770308, Avg f_macro 0.0652469534822476\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 2%|█▊ | 18/1000 [00:36<36:41, 2.24s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.12883597883597883, Avg f_macro 0.06532582643693755\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 2%|█▉ | 19/1000 [00:37<27:15, 1.67s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.17468671679197995, Avg f_macro 0.11451920399288819\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 2%|██ | 20/1000 [00:41<39:05, 2.39s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.16595238095238093, Avg f_macro 0.10879324379324377\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 2%|██ | 21/1000 [00:42<34:55, 2.14s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.16995464852607708, Avg f_macro 0.11041533422485801\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 2%|██▏ | 22/1000 [00:44<34:17, 2.10s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.17132034632034632, Avg f_macro 0.10918433418433417\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 2%|██▎ | 23/1000 [00:45<27:51, 1.71s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.16387163561076604, Avg f_macro 0.1044371892197979\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 2%|██▍ | 24/1000 [00:47<26:01, 1.60s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1570436507936508, Avg f_macro 0.10008563966897299\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 2%|██▌ | 25/1000 [00:50<36:57, 2.27s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.15576190476190477, Avg f_macro 0.09830443630443629\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 3%|██▋ | 26/1000 [00:52<35:16, 2.17s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.14977106227106227, Avg f_macro 0.09452349644657335\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 3%|██▋ | 27/1000 [00:55<38:34, 2.38s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.14422398589065255, Avg f_macro 0.09102262620781137\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 3%|██▊ | 28/1000 [00:58<38:37, 2.38s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13907312925170068, Avg f_macro 0.08777181812896097\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 3%|██▉ | 29/1000 [01:00<38:41, 2.39s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13427750410509032, Avg f_macro 0.08474520371072093\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 3%|███ | 30/1000 [01:01<32:51, 2.03s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1298015873015873, Avg f_macro 0.08192036358703024\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 3%|███▏ | 31/1000 [01:05<40:23, 2.50s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13022273425499234, Avg f_macro 0.08175916079141884\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 3%|███▏ | 32/1000 [01:08<44:32, 2.76s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13061755952380952, Avg f_macro 0.0810981264106264\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 3%|███▎ | 33/1000 [01:10<41:54, 2.60s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.12665945165945167, Avg f_macro 0.0786406074284862\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 3%|███▍ | 34/1000 [01:12<39:21, 2.44s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13764005602240895, Avg f_macro 0.08613156995509937\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 4%|███▌ | 35/1000 [01:13<30:45, 1.91s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13370748299319726, Avg f_macro 0.08367066795638224\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 4%|███▋ | 36/1000 [01:17<41:24, 2.58s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.12999338624338624, Avg f_macro 0.08134648273537162\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 4%|███▋ | 37/1000 [01:19<39:02, 2.43s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.12648005148005148, Avg f_macro 0.07914792914792915\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 4%|███▊ | 38/1000 [01:22<38:04, 2.37s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.12841478696741854, Avg f_macro 0.0799890655153813\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 4%|███▉ | 39/1000 [01:24<36:24, 2.27s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.12512210012210012, Avg f_macro 0.07793806383549973\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 4%|████ | 40/1000 [01:28<44:38, 2.79s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.12556547619047617, Avg f_macro 0.0782623395123395\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 4%|████▏ | 41/1000 [01:30<40:39, 2.54s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.12250290360046456, Avg f_macro 0.07635350196325806\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 4%|████▏ | 42/1000 [01:35<54:14, 3.40s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.12196712018140587, Avg f_macro 0.07593612166441296\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 4%|████▎ | 43/1000 [01:36<44:26, 2.79s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.11913067552602434, Avg f_macro 0.07417016534663592\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 4%|████▍ | 44/1000 [01:38<40:47, 2.56s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1209686147186147, Avg f_macro 0.07532538886148511\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 4%|████▌ | 45/1000 [01:39<33:43, 2.12s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.11828042328042326, Avg f_macro 0.07365149133122989\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 5%|████▋ | 46/1000 [01:40<27:25, 1.72s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.11570910973084884, Avg f_macro 0.07205037195446402\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 5%|████▋ | 47/1000 [01:42<27:42, 1.74s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.11856636271529887, Avg f_macro 0.07406348460791513\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 5%|████▊ | 48/1000 [01:43<23:14, 1.46s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.11609623015873016, Avg f_macro 0.07252049534525025\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 5%|████▉ | 49/1000 [01:44<21:26, 1.35s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.127332361516035, Avg f_macro 0.08124456686881656\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 5%|█████ | 50/1000 [01:47<28:40, 1.81s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.12811904761904763, Avg f_macro 0.08143785734962206\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 5%|█████▏ | 51/1000 [01:49<27:49, 1.76s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13050887021475258, Avg f_macro 0.08310901047348569\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 5%|█████▎ | 52/1000 [01:50<27:10, 1.72s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.12799908424908427, Avg f_macro 0.0815107602720725\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 5%|█████▎ | 53/1000 [01:52<29:32, 1.87s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.12935759209344116, Avg f_macro 0.08176976659218613\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 5%|█████▍ | 54/1000 [01:53<24:27, 1.55s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.12696208112874782, Avg f_macro 0.08025551165529379\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 6%|█████▌ | 55/1000 [01:54<22:12, 1.41s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.12465367965367967, Avg f_macro 0.07879632053428845\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 6%|█████▋ | 56/1000 [01:59<38:25, 2.44s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.12441184807256236, Avg f_macro 0.07823958351794487\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 6%|█████▊ | 57/1000 [02:02<39:04, 2.49s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.12924672793093847, Avg f_macro 0.08104406868596756\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 6%|█████▊ | 58/1000 [02:03<35:04, 2.23s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.12701833607006022, Avg f_macro 0.07964675715689915\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 6%|█████▉ | 59/1000 [02:09<52:55, 3.37s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.12656039817056766, Avg f_macro 0.07929382109342228\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 6%|██████ | 60/1000 [02:10<42:13, 2.70s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.12445105820105822, Avg f_macro 0.07797225740853192\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 6%|██████▏ | 61/1000 [02:13<41:38, 2.66s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1256895654436638, Avg f_macro 0.07806014389910243\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 6%|██████▎ | 62/1000 [02:16<44:50, 2.87s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.12366231438812085, Avg f_macro 0.07680110932008465\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 6%|██████▎ | 63/1000 [02:22<55:18, 3.54s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.12169942050894433, Avg f_macro 0.07558204409278171\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 6%|██████▍ | 64/1000 [02:23<45:28, 2.91s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.12500620039682542, Avg f_macro 0.077526074653832\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 6%|██████▌ | 65/1000 [02:25<42:57, 2.76s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.12923687423687427, Avg f_macro 0.07999636947600748\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 7%|██████▋ | 66/1000 [02:28<43:25, 2.79s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1272787397787398, Avg f_macro 0.07878430327182555\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 7%|██████▊ | 67/1000 [02:30<37:08, 2.39s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.12537905709547503, Avg f_macro 0.07760841814836547\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 7%|██████▊ | 68/1000 [02:36<53:31, 3.45s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.12353524743230627, Avg f_macro 0.07646711788147774\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 7%|██████▉ | 69/1000 [02:37<44:19, 2.86s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.12174488152749025, Avg f_macro 0.07535889878174618\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 7%|███████ | 70/1000 [02:40<44:21, 2.86s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.12286281179138324, Avg f_macro 0.07606805737057838\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 7%|███████▏ | 71/1000 [02:41<34:47, 2.25s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1281746031746032, Avg f_macro 0.0796915119616031\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 7%|███████▎ | 72/1000 [02:42<30:06, 1.95s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1263944003527337, Avg f_macro 0.07858468540658084\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 7%|███████▎ | 73/1000 [02:43<24:14, 1.57s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1315122852794086, Avg f_macro 0.08207439291242676\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 7%|███████▍ | 74/1000 [02:45<28:55, 1.87s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13514049764049765, Avg f_macro 0.0828957814251932\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 8%|███████▌ | 75/1000 [02:46<23:45, 1.54s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13333862433862437, Avg f_macro 0.08179050433952395\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 8%|███████▋ | 76/1000 [02:50<34:10, 2.22s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1334638680033417, Avg f_macro 0.08144530764499805\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 8%|███████▊ | 77/1000 [02:52<35:51, 2.33s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13692537621109052, Avg f_macro 0.08347972232617\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 8%|███████▉ | 78/1000 [02:54<30:32, 1.99s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1351699226699227, Avg f_macro 0.08240946947583448\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 8%|███████▉ | 79/1000 [02:56<30:56, 2.02s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1397880249146072, Avg f_macro 0.08558572091706865\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 8%|████████ | 80/1000 [02:56<25:00, 1.63s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.14429067460317463, Avg f_macro 0.08868256607227196\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 8%|████████▏ | 81/1000 [02:57<20:38, 1.35s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.142509308250049, Avg f_macro 0.08758771957755254\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 8%|████████▎ | 82/1000 [03:01<34:15, 2.24s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.14077138985675572, Avg f_macro 0.08651957665587508\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 8%|████████▍ | 83/1000 [03:04<36:09, 2.37s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13907534901510807, Avg f_macro 0.08547717211785248\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 8%|████████▍ | 84/1000 [03:10<52:02, 3.41s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13861016628873774, Avg f_macro 0.08492644014352697\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 8%|████████▌ | 85/1000 [03:11<39:48, 2.61s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1369794584500467, Avg f_macro 0.08392730555360313\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 9%|████████▋ | 86/1000 [03:13<37:07, 2.44s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13771225544481358, Avg f_macro 0.08424339631589972\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 9%|████████▊ | 87/1000 [03:16<39:03, 2.57s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13612935595694217, Avg f_macro 0.08327508141571698\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 9%|████████▉ | 88/1000 [03:16<30:58, 2.04s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13458243145743146, Avg f_macro 0.08232877367235655\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 9%|████████▉ | 89/1000 [03:19<32:40, 2.15s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13756465132869627, Avg f_macro 0.0842127200355885\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 9%|█████████ | 90/1000 [03:20<30:18, 2.00s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13881393298059966, Avg f_macro 0.08486432473360578\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 9%|█████████▏ | 91/1000 [03:25<39:54, 2.63s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1386621315192744, Avg f_macro 0.08445503597410513\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 9%|█████████▎ | 92/1000 [03:27<38:02, 2.51s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1393288474810214, Avg f_macro 0.08489574210482138\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 9%|█████████▍ | 93/1000 [03:30<41:51, 2.77s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1393667861409797, Avg f_macro 0.08458025622794756\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 9%|█████████▍ | 94/1000 [03:31<33:11, 2.20s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13788416075650117, Avg f_macro 0.08368046626807576\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 10%|█████████▌ | 95/1000 [03:32<28:07, 1.86s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13994152046783626, Avg f_macro 0.08490488241262234\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 10%|█████████▋ | 96/1000 [03:34<27:03, 1.80s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.14108796296296297, Avg f_macro 0.08610378988749086\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 10%|█████████▊ | 97/1000 [03:35<26:17, 1.75s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.14221076746849942, Avg f_macro 0.08693433500892565\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 10%|█████████▉ | 98/1000 [03:38<28:26, 1.89s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.14484126984126985, Avg f_macro 0.08847679320368394\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 10%|█████████▉ | 99/1000 [03:40<29:16, 1.95s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.14337822671156006, Avg f_macro 0.08758308822182855\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 10%|██████████ | 100/1000 [03:41<26:03, 1.74s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.14194444444444446, Avg f_macro 0.08670725733961027\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 10%|██████████ | 101/1000 [03:43<25:18, 1.69s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.14053905390539054, Avg f_macro 0.08584876964317847\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 10%|██████████▏ | 102/1000 [03:45<27:47, 1.86s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.14112200435729846, Avg f_macro 0.08609643965756997\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 10%|██████████▎ | 103/1000 [03:46<25:00, 1.67s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13975188781014022, Avg f_macro 0.08526055189390425\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 10%|██████████▍ | 104/1000 [03:48<25:31, 1.71s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1408119658119658, Avg f_macro 0.0858143652685508\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 10%|██████████▎ | 105/1000 [04:07<1:45:26, 7.07s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.14042328042328042, Avg f_macro 0.0852428613289732\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 11%|██████████▍ | 106/1000 [04:10<1:23:19, 5.59s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.14145702306079666, Avg f_macro 0.08601101043593257\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 11%|██████████▍ | 107/1000 [04:13<1:13:11, 4.92s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1414701082925382, Avg f_macro 0.08592607647786848\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 11%|██████████▌ | 108/1000 [04:15<1:00:09, 4.05s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.14201205173427395, Avg f_macro 0.08615927124299111\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 11%|██████████▉ | 109/1000 [04:17<49:30, 3.33s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1468253968253968, Avg f_macro 0.08995597517654165\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 11%|███████████ | 110/1000 [04:20<48:28, 3.27s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.14549062049062048, Avg f_macro 0.08913819358402762\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 11%|███████████ | 111/1000 [04:22<44:34, 3.01s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.14598169598169597, Avg f_macro 0.08933614779598333\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 11%|███████████▏ | 112/1000 [04:24<39:07, 2.64s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.14467828798185942, Avg f_macro 0.0885385036192335\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 11%|███████████▎ | 113/1000 [04:26<37:59, 2.57s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.14339794915016155, Avg f_macro 0.08775497703853231\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 11%|███████████▍ | 114/1000 [04:29<37:10, 2.52s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1438944583681426, Avg f_macro 0.08795985540759002\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 12%|███████████▌ | 115/1000 [04:30<33:14, 2.25s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1426432022084196, Avg f_macro 0.08719498709969793\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 12%|███████████▌ | 116/1000 [04:33<34:56, 2.37s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1442870826491516, Avg f_macro 0.0883590149886852\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 12%|███████████▋ | 117/1000 [04:37<43:24, 2.95s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1430538597205264, Avg f_macro 0.08760380973237165\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 12%|███████████▊ | 118/1000 [04:40<41:42, 2.84s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.14353645412967447, Avg f_macro 0.08792072659904647\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 12%|███████████▉ | 119/1000 [04:44<47:06, 3.21s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.14233026543950913, Avg f_macro 0.08718189696376037\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 12%|████████████ | 120/1000 [04:45<39:17, 2.68s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1411441798941799, Avg f_macro 0.08645538115572902\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 12%|████████████ | 121/1000 [04:48<40:59, 2.80s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13997769906860819, Avg f_macro 0.08574087387345028\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 12%|████████████▏ | 122/1000 [04:50<33:25, 2.28s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1415625813166797, Avg f_macro 0.08667742408760232\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 12%|████████████▎ | 123/1000 [04:51<29:44, 2.03s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.14041166602142213, Avg f_macro 0.08597272958282506\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 12%|████████████▍ | 124/1000 [04:55<38:39, 2.65s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13927931387608808, Avg f_macro 0.08527940111844744\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 12%|████████████▌ | 125/1000 [04:57<33:49, 2.32s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13816507936507938, Avg f_macro 0.08459716590949987\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 13%|████████████▌ | 126/1000 [04:57<26:49, 1.84s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13706853111615017, Avg f_macro 0.08392575983085304\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 13%|████████████▋ | 127/1000 [04:59<25:50, 1.78s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13795775528058993, Avg f_macro 0.08438978646885532\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 13%|████████████▊ | 128/1000 [05:02<32:08, 2.21s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13818204365079367, Avg f_macro 0.08444071853479468\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 13%|████████████▉ | 129/1000 [05:05<34:57, 2.41s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13840285468192445, Avg f_macro 0.08464746576406845\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 13%|█████████████ | 130/1000 [05:08<37:01, 2.55s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13862026862026863, Avg f_macro 0.08469563211133785\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 13%|█████████████ | 131/1000 [05:11<38:25, 2.65s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1388343632618442, Avg f_macro 0.0847430630945268\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 13%|█████████████▏ | 132/1000 [05:12<33:57, 2.35s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1377825877825878, Avg f_macro 0.08410107019229553\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 13%|█████████████▎ | 133/1000 [05:15<34:57, 2.42s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13825038787444802, Avg f_macro 0.08409529773470935\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 13%|█████████████▍ | 134/1000 [05:16<29:08, 2.02s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1421937929400616, Avg f_macro 0.08719906416952496\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 14%|█████████████▌ | 135/1000 [05:17<26:12, 1.82s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.14114050558495003, Avg f_macro 0.08655314517567662\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 14%|█████████████▌ | 136/1000 [05:21<33:43, 2.34s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1401027077497666, Avg f_macro 0.08591672499056136\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 14%|█████████████▋ | 137/1000 [05:23<30:38, 2.13s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13908006024794348, Avg f_macro 0.08528959561106822\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 14%|█████████████▊ | 138/1000 [05:26<35:53, 2.50s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13910743041177825, Avg f_macro 0.08533031659148867\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 14%|█████████████▉ | 139/1000 [05:28<35:33, 2.48s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1393056982985041, Avg f_macro 0.08519604572872015\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 14%|██████████████ | 140/1000 [05:31<37:17, 2.60s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13950113378684809, Avg f_macro 0.08523685319429422\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 14%|██████████████ | 141/1000 [05:34<36:29, 2.55s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.139930203759991, Avg f_macro 0.08542035856959079\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 14%|██████████████▏ | 142/1000 [05:39<49:12, 3.44s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13894477978985023, Avg f_macro 0.08481880674867819\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 14%|██████████████▎ | 143/1000 [05:41<39:39, 2.78s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13797313797313798, Avg f_macro 0.08422566823994616\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 14%|██████████████▍ | 144/1000 [05:44<42:17, 2.96s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13701499118165786, Avg f_macro 0.08364076776605767\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 14%|██████████████▍ | 145/1000 [05:50<53:53, 3.78s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13865626710454299, Avg f_macro 0.08365506788983855\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 15%|██████████████▌ | 146/1000 [05:52<48:13, 3.39s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13907642965862144, Avg f_macro 0.0838431229803952\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 15%|██████████████▍ | 147/1000 [05:59<1:01:47, 4.35s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13813033149767845, Avg f_macro 0.0832727615995762\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 15%|██████████████▊ | 148/1000 [06:01<52:18, 3.68s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13719701844701845, Avg f_macro 0.08271010780498446\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 15%|██████████████▉ | 149/1000 [06:02<42:52, 3.02s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13627623308831363, Avg f_macro 0.08215500641032014\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 15%|███████████████ | 150/1000 [06:04<37:03, 2.62s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13703439153439154, Avg f_macro 0.08271841747869578\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 15%|███████████████ | 151/1000 [06:09<48:48, 3.45s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13686271418059498, Avg f_macro 0.08246494745860139\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 15%|██████████████▉ | 152/1000 [06:16<1:02:02, 4.39s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1366201963241437, Avg f_macro 0.08216607962688058\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 15%|███████████████▎ | 153/1000 [06:17<48:07, 3.41s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13790590310198153, Avg f_macro 0.08293623596918855\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 15%|███████████████ | 154/1000 [06:23<1:00:27, 4.29s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1376597608740466, Avg f_macro 0.0827796599525819\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 16%|███████████████▌ | 155/1000 [06:27<57:45, 4.10s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13861495135688684, Avg f_macro 0.08278323203890933\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 16%|███████████████▌ | 156/1000 [06:30<51:48, 3.68s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13879477004477006, Avg f_macro 0.0826799207224206\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 16%|███████████████▋ | 157/1000 [06:31<42:00, 2.99s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1379107269234658, Avg f_macro 0.08215329702355167\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 16%|███████████████▊ | 158/1000 [06:34<41:44, 2.97s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13809272654209365, Avg f_macro 0.08205528037572328\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 16%|███████████████▉ | 159/1000 [06:35<32:16, 2.30s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13722421882799243, Avg f_macro 0.08153920942996402\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 16%|████████████████ | 160/1000 [06:37<33:02, 2.36s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13761656746031745, Avg f_macro 0.08155042270436008\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 16%|████████████████ | 161/1000 [06:40<33:28, 2.39s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13883219954648526, Avg f_macro 0.08173402946465046\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 16%|████████████████▏ | 162/1000 [06:41<30:21, 2.17s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.14106163041348227, Avg f_macro 0.08328711158729664\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 16%|████████████████▎ | 163/1000 [06:44<31:24, 2.25s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1414232155029701, Avg f_macro 0.08354301887817213\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 16%|████████████████▍ | 164/1000 [06:45<26:58, 1.94s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.14259339914827718, Avg f_macro 0.08425312242159791\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 16%|████████████████▌ | 165/1000 [06:46<24:31, 1.76s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.14576960076960077, Avg f_macro 0.08677280046752762\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 17%|████████████████▌ | 166/1000 [06:48<22:11, 1.60s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.14489147064448268, Avg f_macro 0.08625007275386781\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 17%|████████████████▋ | 167/1000 [06:51<27:42, 2.00s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.14502186103982512, Avg f_macro 0.08639894124702496\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 17%|████████████████▊ | 168/1000 [06:52<26:17, 1.90s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.14564673091458807, Avg f_macro 0.0868767253269038\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 17%|████████████████▉ | 169/1000 [06:54<24:57, 1.80s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1462642058795905, Avg f_macro 0.08720797040104722\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 17%|█████████████████ | 170/1000 [06:56<26:49, 1.94s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.14540382819794587, Avg f_macro 0.08669498233986458\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 17%|█████████████████ | 171/1000 [07:03<45:43, 3.31s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.14520328599275967, Avg f_macro 0.0866057050830734\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 17%|█████████████████▏ | 172/1000 [07:05<40:12, 2.91s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.14581256921373198, Avg f_macro 0.08707117578995476\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 17%|█████████████████▎ | 173/1000 [07:06<35:34, 2.58s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.14641480869804568, Avg f_macro 0.08739363802733734\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 17%|█████████████████▍ | 174/1000 [07:10<39:11, 2.85s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1465311986863711, Avg f_macro 0.08746608838350207\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 18%|█████████████████▌ | 175/1000 [07:13<42:16, 3.07s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1456938775510204, Avg f_macro 0.08696628216416777\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 18%|█████████████████▌ | 176/1000 [07:16<41:36, 3.03s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1448660714285714, Avg f_macro 0.08647215556096226\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 18%|█████████████████▋ | 177/1000 [07:20<44:07, 3.22s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.14404761904761904, Avg f_macro 0.08598361230920541\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 18%|█████████████████▊ | 178/1000 [07:22<39:30, 2.88s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.14323836276083465, Avg f_macro 0.0855005583074683\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 18%|█████████████████▉ | 179/1000 [07:25<37:41, 2.75s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.14243814844373504, Avg f_macro 0.08502290155714724\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 18%|██████████████████ | 180/1000 [07:28<40:20, 2.95s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.14164682539682538, Avg f_macro 0.08455055210405199\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 18%|██████████████████ | 181/1000 [07:32<45:22, 3.32s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1416535122336227, Avg f_macro 0.08458568215269863\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 18%|██████████████████▏ | 182/1000 [07:39<58:40, 4.30s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.14142464678178965, Avg f_macro 0.08446433225076072\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 18%|██████████████████▎ | 183/1000 [07:41<51:15, 3.76s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1428376268540203, Avg f_macro 0.08536889874119372\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 18%|██████████████████▍ | 184/1000 [07:44<46:49, 3.44s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.14296713250517598, Avg f_macro 0.0855088020692911\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 18%|██████████████████▌ | 185/1000 [07:47<44:39, 3.29s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1421943371943372, Avg f_macro 0.08504659232837601\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 19%|██████████████████▌ | 186/1000 [07:48<34:16, 2.53s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.14142985151049667, Avg f_macro 0.08458935258467506\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 19%|██████████████████▋ | 187/1000 [07:48<27:19, 2.02s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1406735421441304, Avg f_macro 0.08413700310561263\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 19%|██████████████████▊ | 188/1000 [07:51<28:15, 2.09s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13992527862208712, Avg f_macro 0.08368946585505085\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 19%|██████████████████▉ | 189/1000 [07:52<24:48, 1.84s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13918493323255227, Avg f_macro 0.08324666444841038\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 19%|███████████████████ | 190/1000 [07:55<29:17, 2.17s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1393295739348371, Avg f_macro 0.08333483989868189\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 19%|███████████████████ | 191/1000 [07:59<35:20, 2.62s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13934804288207428, Avg f_macro 0.0833744956631343\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 19%|███████████████████▏ | 192/1000 [08:01<33:49, 2.51s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1396639384920635, Avg f_macro 0.08380830905377772\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 19%|███████████████████▎ | 193/1000 [08:03<33:26, 2.49s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13997656057241548, Avg f_macro 0.08402173750427627\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 19%|███████████████████▍ | 194/1000 [08:06<33:54, 2.52s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.14131688757977418, Avg f_macro 0.0843250127896003\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 20%|███████████████████▌ | 195/1000 [08:09<34:34, 2.58s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1405921855921856, Avg f_macro 0.08389257682657672\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 20%|███████████████████▌ | 196/1000 [08:13<42:55, 3.20s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1398748785228377, Avg f_macro 0.08346455347542071\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 20%|███████████████████▋ | 197/1000 [08:15<37:51, 2.83s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1391648537587624, Avg f_macro 0.08304087553899725\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 20%|███████████████████▊ | 198/1000 [08:19<43:09, 3.23s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13846200096200095, Avg f_macro 0.0826214771776892\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 20%|███████████████████▉ | 199/1000 [08:22<39:54, 2.99s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13776621201244318, Avg f_macro 0.08220629387528874\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 20%|████████████████████ | 200/1000 [08:25<39:35, 2.97s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13791071428571428, Avg f_macro 0.0822952624059123\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 20%|████████████████████ | 201/1000 [08:25<30:39, 2.30s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13722459132906895, Avg f_macro 0.08188583323971374\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 20%|████████████████████▏ | 202/1000 [08:26<24:26, 1.84s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13654526166902403, Avg f_macro 0.08148045782763594\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 20%|████████████████████▎ | 203/1000 [08:31<34:40, 2.61s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1364883884588318, Avg f_macro 0.08131365285123895\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 20%|████████████████████▍ | 204/1000 [08:33<33:11, 2.50s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13679971988795517, Avg f_macro 0.08145971882310107\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 20%|████████████████████▌ | 205/1000 [08:34<26:25, 1.99s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13613240418118466, Avg f_macro 0.08106235434103716\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 21%|████████████████████▌ | 206/1000 [08:34<21:11, 1.60s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13547156726768375, Avg f_macro 0.08066884776656612\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 21%|████████████████████▋ | 207/1000 [08:37<25:09, 1.90s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13481711525189785, Avg f_macro 0.08027914318798367\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 21%|████████████████████▊ | 208/1000 [08:40<31:05, 2.36s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13485576923076922, Avg f_macro 0.08026300825401779\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 21%|████████████████████▉ | 209/1000 [08:44<36:14, 2.75s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13421052631578947, Avg f_macro 0.07987897472170191\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 21%|█████████████████████ | 210/1000 [08:45<30:47, 2.34s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13357142857142856, Avg f_macro 0.07949859865159857\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 21%|█████████████████████ | 211/1000 [08:48<31:51, 2.42s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13293838862559243, Avg f_macro 0.07912182804187536\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 21%|█████████████████████▏ | 212/1000 [08:51<31:53, 2.43s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.132311320754717, Avg f_macro 0.0787486118718665\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 21%|█████████████████████▎ | 213/1000 [08:51<25:29, 1.94s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1316901408450704, Avg f_macro 0.07837890007904084\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 21%|█████████████████████▍ | 214/1000 [08:54<30:06, 2.30s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13107476635514018, Avg f_macro 0.07801264353661541\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 22%|█████████████████████▌ | 215/1000 [08:56<26:23, 2.02s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13046511627906976, Avg f_macro 0.07764979403179395\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 22%|█████████████████████▌ | 216/1000 [08:59<28:56, 2.22s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13140432098765434, Avg f_macro 0.07831911082897186\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 22%|█████████████████████▋ | 217/1000 [09:00<24:55, 1.91s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13079877112135177, Avg f_macro 0.07795819326754802\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 22%|█████████████████████▊ | 218/1000 [09:03<28:51, 2.21s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1301987767584098, Avg f_macro 0.07760058687641248\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 22%|█████████████████████▉ | 219/1000 [09:05<30:21, 2.33s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13143074581430747, Avg f_macro 0.07855087773868587\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 22%|██████████████████████ | 220/1000 [09:06<25:32, 1.96s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13083333333333336, Avg f_macro 0.07819382829441912\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 22%|██████████████████████ | 221/1000 [09:09<29:09, 2.25s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13099547511312218, Avg f_macro 0.07814166919203111\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 22%|██████████████████████▏ | 222/1000 [09:12<31:56, 2.46s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13130630630630633, Avg f_macro 0.07829018019166659\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 22%|██████████████████████▎ | 223/1000 [09:16<38:30, 2.97s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1312780269058296, Avg f_macro 0.07816906750597324\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 22%|██████████████████████▍ | 224/1000 [09:19<37:02, 2.86s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13158482142857145, Avg f_macro 0.07831613020063906\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 22%|██████████████████████▌ | 225/1000 [09:20<30:08, 2.33s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13396296296296295, Avg f_macro 0.08019028073308065\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 23%|██████████████████████▌ | 226/1000 [09:23<30:26, 2.36s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1351401179941003, Avg f_macro 0.0804675677336296\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 23%|██████████████████████▋ | 227/1000 [09:25<31:39, 2.46s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13527900146842878, Avg f_macro 0.0806025613167903\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 23%|██████████████████████▊ | 228/1000 [09:27<29:38, 2.30s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13578216374269006, Avg f_macro 0.08073637074571277\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 23%|██████████████████████▉ | 229/1000 [09:29<28:12, 2.20s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1351892285298399, Avg f_macro 0.0803838101747708\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 23%|███████████████████████ | 230/1000 [09:32<29:50, 2.33s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13547101449275362, Avg f_macro 0.08051740713536358\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 23%|███████████████████████ | 231/1000 [09:38<44:13, 3.45s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13488455988455988, Avg f_macro 0.08016884693131439\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 23%|███████████████████████▏ | 232/1000 [09:39<34:04, 2.66s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13645833333333335, Avg f_macro 0.08126007316580586\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 23%|███████████████████████▎ | 233/1000 [09:42<36:49, 2.88s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13587267525035765, Avg f_macro 0.08091131748698266\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 23%|███████████████████████▍ | 234/1000 [09:43<29:59, 2.35s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13814102564102565, Avg f_macro 0.0827022947626793\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 24%|███████████████████████▌ | 235/1000 [09:47<34:49, 2.73s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.138161094224924, Avg f_macro 0.08267770234634056\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 24%|███████████████████████▌ | 236/1000 [09:49<33:38, 2.64s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13842312348668281, Avg f_macro 0.08285703411605945\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 24%|███████████████████████▋ | 237/1000 [09:53<37:21, 2.94s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13844183242917418, Avg f_macro 0.08289100903923681\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 24%|███████████████████████▊ | 238/1000 [09:58<44:22, 3.49s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13838535414165665, Avg f_macro 0.08274280752066458\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 24%|███████████████████████▉ | 239/1000 [10:01<42:52, 3.38s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13780633592349073, Avg f_macro 0.08239660330509696\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 24%|████████████████████████ | 240/1000 [10:04<42:52, 3.39s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13782738095238098, Avg f_macro 0.08240050634688127\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 24%|████████████████████████ | 241/1000 [10:06<38:28, 3.04s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13808535862477772, Avg f_macro 0.08245377435057925\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 24%|████████████████████████▏ | 242/1000 [10:08<34:15, 2.71s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1385478158205431, Avg f_macro 0.08280176150891018\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 24%|████████████████████████▎ | 243/1000 [10:11<33:49, 2.68s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13962375073486186, Avg f_macro 0.08360413194623062\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 24%|████████████████████████▍ | 244/1000 [10:15<39:18, 3.12s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13905152224824358, Avg f_macro 0.08326149206120509\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 24%|████████████████████████▌ | 245/1000 [10:16<30:32, 2.43s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.14052478134110788, Avg f_macro 0.08428219345415257\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 25%|████████████████████████▌ | 246/1000 [10:17<26:28, 2.11s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1399535423925668, Avg f_macro 0.08393958291165601\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 25%|████████████████████████▋ | 247/1000 [10:19<25:17, 2.02s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.14039907460960094, Avg f_macro 0.08427451037625118\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 25%|████████████████████████▊ | 248/1000 [10:23<32:17, 2.58s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13983294930875576, Avg f_macro 0.08393469380215339\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 25%|████████████████████████▉ | 249/1000 [10:31<51:16, 4.10s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13927137119908206, Avg f_macro 0.08359760667844997\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 25%|█████████████████████████ | 250/1000 [10:33<45:04, 3.61s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13871428571428573, Avg f_macro 0.08326321625173617\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 25%|█████████████████████████ | 251/1000 [10:37<45:07, 3.61s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13873079112122935, Avg f_macro 0.0831528271652972\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 25%|█████████████████████████▏ | 252/1000 [10:40<44:13, 3.55s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13874716553287983, Avg f_macro 0.08312810593417728\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 25%|█████████████████████████▎ | 253/1000 [10:41<35:24, 2.84s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13819875776397517, Avg f_macro 0.08279953634550465\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 25%|█████████████████████████▍ | 254/1000 [10:47<46:01, 3.70s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13804836895388078, Avg f_macro 0.08261936902539257\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 26%|█████████████████████████▌ | 255/1000 [10:48<36:52, 2.97s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1388141923436041, Avg f_macro 0.08307968522529299\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 26%|█████████████████████████▌ | 256/1000 [10:49<28:22, 2.29s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.14022507440476192, Avg f_macro 0.08405723853821502\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 26%|█████████████████████████▋ | 257/1000 [10:51<27:30, 2.22s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.14045766166388735, Avg f_macro 0.08421654889409745\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 26%|█████████████████████████▊ | 258/1000 [10:55<34:16, 2.77s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1404669619785899, Avg f_macro 0.08410545977263024\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 26%|█████████████████████████▉ | 259/1000 [10:58<36:48, 2.98s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1399246184960471, Avg f_macro 0.08378072826771661\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 26%|██████████████████████████ | 260/1000 [11:01<36:29, 2.96s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.14002747252747252, Avg f_macro 0.08371490495386642\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 26%|██████████████████████████ | 261/1000 [11:03<29:57, 2.43s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13949096880131365, Avg f_macro 0.08339415819159107\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 26%|██████████████████████████▏ | 262/1000 [11:05<29:58, 2.44s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13972191930207198, Avg f_macro 0.08355295911452393\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 26%|██████████████████████████▎ | 263/1000 [11:10<38:53, 3.17s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13919065725149377, Avg f_macro 0.08323526725477289\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 26%|██████████████████████████▍ | 264/1000 [11:14<43:56, 3.58s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13913690476190477, Avg f_macro 0.08323563871719167\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 26%|██████████████████████████▌ | 265/1000 [11:17<39:37, 3.23s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13936657681940703, Avg f_macro 0.08334082917905551\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 27%|██████████████████████████▌ | 266/1000 [11:19<36:36, 2.99s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13959452201933406, Avg f_macro 0.08344522873519106\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 27%|██████████████████████████▋ | 267/1000 [11:22<34:29, 2.82s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13982075976457997, Avg f_macro 0.0836008645826248\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 27%|██████████████████████████▊ | 268/1000 [11:25<34:41, 2.84s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13929904051172706, Avg f_macro 0.08328892105806276\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 27%|██████████████████████████▉ | 269/1000 [11:27<31:58, 2.62s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13878120021242696, Avg f_macro 0.08297929681621123\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 27%|███████████████████████████ | 270/1000 [11:30<33:02, 2.72s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13888447971781306, Avg f_macro 0.08300866642396264\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 27%|███████████████████████████ | 271/1000 [11:32<31:53, 2.62s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13910999824283957, Avg f_macro 0.0831123654818488\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 27%|███████████████████████████▏ | 272/1000 [11:34<31:02, 2.56s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13859856442577034, Avg f_macro 0.08280680531463613\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 27%|███████████████████████████▎ | 273/1000 [11:39<38:17, 3.16s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13854875283446713, Avg f_macro 0.0826779124293043\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 27%|███████████████████████████▍ | 274/1000 [11:40<31:06, 2.57s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1380431004518596, Avg f_macro 0.08237616822335793\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 28%|███████████████████████████▌ | 275/1000 [11:44<36:45, 3.04s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.137995670995671, Avg f_macro 0.08237964882375784\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 28%|███████████████████████████▌ | 276/1000 [11:47<35:37, 2.95s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1382203243616287, Avg f_macro 0.08248374832479898\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 28%|███████████████████████████▋ | 277/1000 [11:49<32:28, 2.70s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1386238610967853, Avg f_macro 0.0827876577772967\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 28%|███████████████████████████▊ | 278/1000 [11:52<31:36, 2.63s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13956406303528607, Avg f_macro 0.0833463181381526\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 28%|███████████████████████████▉ | 279/1000 [11:54<30:11, 2.51s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13906383341867212, Avg f_macro 0.08304758581507678\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 28%|████████████████████████████ | 280/1000 [11:58<36:03, 3.00s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13946003401360543, Avg f_macro 0.08320886275218412\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 28%|████████████████████████████ | 281/1000 [12:00<33:17, 2.78s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13967547873241826, Avg f_macro 0.0833081590096892\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 28%|████████████████████████████▏ | 282/1000 [12:02<30:14, 2.53s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.14006670043904088, Avg f_macro 0.08351932561907732\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 28%|████████████████████████████▎ | 283/1000 [12:06<35:01, 2.93s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.14001346121487465, Avg f_macro 0.08339246951307015\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 28%|████████████████████████████▍ | 284/1000 [12:08<30:25, 2.55s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13952045606975186, Avg f_macro 0.08309883405703822\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 28%|████████████████████████████▍ | 285/1000 [12:12<35:04, 2.94s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13946950710108605, Avg f_macro 0.08298719622274002\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 29%|████████████████████████████▌ | 286/1000 [12:14<33:13, 2.79s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1396811521811522, Avg f_macro 0.08313409413804512\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 29%|████████████████████████████▋ | 287/1000 [12:17<31:53, 2.68s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.14058818649410987, Avg f_macro 0.08371550844418434\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 29%|████████████████████████████▊ | 288/1000 [12:19<29:45, 2.51s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.14096808862433863, Avg f_macro 0.08392086134145155\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 29%|████████████████████████████▉ | 289/1000 [12:21<30:02, 2.54s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.14186439281594992, Avg f_macro 0.08412479311140204\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 29%|████████████████████████████▉ | 290/1000 [12:22<23:54, 2.02s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1413752052545156, Avg f_macro 0.08383470761791445\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 29%|█████████████████████████████ | 291/1000 [12:23<20:36, 1.74s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.14088937980690558, Avg f_macro 0.08354661583915873\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 29%|█████████████████████████████▏ | 292/1000 [12:24<18:12, 1.54s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.14040688193085454, Avg f_macro 0.08326049729176435\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 29%|█████████████████████████████▎ | 293/1000 [12:27<22:59, 1.95s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1399276775556639, Avg f_macro 0.08297633177199723\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 29%|█████████████████████████████▍ | 294/1000 [12:31<28:57, 2.46s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13993764172335602, Avg f_macro 0.08295574246979003\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 30%|█████████████████████████████▌ | 295/1000 [12:33<27:28, 2.34s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1401412429378531, Avg f_macro 0.08309826537667209\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 30%|█████████████████████████████▌ | 296/1000 [12:35<26:23, 2.25s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.14034346846846849, Avg f_macro 0.08309905952517432\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 30%|█████████████████████████████▋ | 297/1000 [12:38<28:43, 2.45s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1404320987654321, Avg f_macro 0.08304373160309181\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 30%|█████████████████████████████▊ | 298/1000 [12:39<25:40, 2.19s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13996085011185683, Avg f_macro 0.08276506136281297\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 30%|█████████████████████████████▉ | 299/1000 [12:43<28:53, 2.47s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13949275362318841, Avg f_macro 0.0824882551375193\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 30%|██████████████████████████████ | 300/1000 [12:44<26:30, 2.27s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13986111111111113, Avg f_macro 0.08276884984261644\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 30%|██████████████████████████████ | 301/1000 [12:47<26:22, 2.26s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.14006090808416388, Avg f_macro 0.08290915266705957\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 30%|██████████████████████████████▏ | 302/1000 [12:48<24:42, 2.12s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1395971302428256, Avg f_macro 0.08263461904895673\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 30%|██████████████████████████████▎ | 303/1000 [12:53<31:46, 2.73s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13954895489548955, Avg f_macro 0.0824994112853188\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 30%|██████████████████████████████▍ | 304/1000 [12:55<30:42, 2.65s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13974780701754386, Avg f_macro 0.08263921585345921\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 30%|██████████████████████████████▌ | 305/1000 [13:00<39:23, 3.40s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13965391621129328, Avg f_macro 0.08252439562973983\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 31%|██████████████████████████████▌ | 306/1000 [13:02<33:52, 2.93s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13919753086419753, Avg f_macro 0.08225470806232238\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 31%|██████████████████████████████▋ | 307/1000 [13:04<31:29, 2.73s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13874411871154543, Avg f_macro 0.08198677741716824\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 31%|██████████████████████████████▊ | 308/1000 [13:07<30:28, 2.64s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13894300144300145, Avg f_macro 0.08212643073724236\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 31%|██████████████████████████████▉ | 309/1000 [13:09<28:04, 2.44s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13914059690758718, Avg f_macro 0.0822651801523322\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 31%|███████████████████████████████ | 310/1000 [13:12<31:17, 2.72s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13915258576548897, Avg f_macro 0.08217902007298775\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 31%|███████████████████████████████ | 311/1000 [13:13<25:58, 2.26s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13870514979839738, Avg f_macro 0.0819147788508881\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 31%|███████████████████████████████▏ | 312/1000 [13:16<28:11, 2.46s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13826058201058203, Avg f_macro 0.0816522314827763\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 31%|███████████████████████████████▎ | 313/1000 [13:18<26:24, 2.31s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1386175769562351, Avg f_macro 0.08192384309678233\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 31%|███████████████████████████████▍ | 314/1000 [13:21<27:25, 2.40s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13881306237994137, Avg f_macro 0.08211789819156055\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 32%|███████████████████████████████▌ | 315/1000 [13:26<36:53, 3.23s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13837238599143362, Avg f_macro 0.08185720645126988\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 32%|███████████████████████████████▌ | 316/1000 [13:29<36:32, 3.21s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13793449869399238, Avg f_macro 0.08159816465870258\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 32%|███████████████████████████████▋ | 317/1000 [13:32<37:06, 3.26s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1379500275399329, Avg f_macro 0.0816275366658016\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 32%|███████████████████████████████▊ | 318/1000 [13:35<33:52, 2.98s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1375162224218828, Avg f_macro 0.081370846298928\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 32%|███████████████████████████████▉ | 319/1000 [13:37<32:36, 2.87s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.137712096332786, Avg f_macro 0.08156359331008228\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 32%|████████████████████████████████ | 320/1000 [13:39<26:52, 2.37s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13728174603174603, Avg f_macro 0.08130870708098828\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 32%|████████████████████████████████ | 321/1000 [13:40<22:33, 1.99s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13685407704099292, Avg f_macro 0.081055408928088\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 32%|████████████████████████████████▏ | 322/1000 [13:41<20:01, 1.77s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13642906437937494, Avg f_macro 0.08080368405564052\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 32%|████████████████████████████████▎ | 323/1000 [13:43<22:16, 1.97s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13662587842154406, Avg f_macro 0.0808975150991559\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 32%|████████████████████████████████▍ | 324/1000 [13:46<24:26, 2.17s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.136204193611601, Avg f_macro 0.08064783141057826\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 32%|████████████████████████████████▌ | 325/1000 [13:47<21:43, 1.93s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13578510378510378, Avg f_macro 0.08039968423700725\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 33%|████████████████████████████████▌ | 326/1000 [13:49<19:49, 1.76s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13536858506183658, Avg f_macro 0.08015305943873421\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 33%|████████████████████████████████▋ | 327/1000 [13:52<26:05, 2.33s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13539148585020144, Avg f_macro 0.08007783771432084\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 33%|████████████████████████████████▊ | 328/1000 [13:57<32:50, 2.93s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13612199961285326, Avg f_macro 0.08011085982771952\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 33%|████████████████████████████████▉ | 329/1000 [13:59<30:31, 2.73s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13631615766874125, Avg f_macro 0.08012065458001623\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 33%|█████████████████████████████████ | 330/1000 [14:01<28:13, 2.53s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1359030784030784, Avg f_macro 0.07987786471765254\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 33%|█████████████████████████████████ | 331/1000 [14:03<26:39, 2.39s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1354924950846401, Avg f_macro 0.07963654186352066\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 33%|█████████████████████████████████▏ | 332/1000 [14:04<22:49, 2.05s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13508438515968635, Avg f_macro 0.0793966727615221\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 33%|█████████████████████████████████▎ | 333/1000 [14:06<20:30, 1.85s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.134678726345393, Avg f_macro 0.07915824431479081\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 33%|█████████████████████████████████▍ | 334/1000 [14:08<23:02, 2.08s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13547310141621519, Avg f_macro 0.07934895957988766\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 34%|█████████████████████████████████▌ | 335/1000 [14:09<18:27, 1.66s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13506870409855484, Avg f_macro 0.07911209701397755\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 34%|█████████████████████████████████▌ | 336/1000 [14:10<17:46, 1.61s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13466671390778534, Avg f_macro 0.07887664434429309\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 34%|█████████████████████████████████▋ | 337/1000 [14:13<20:27, 1.85s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1348605812255664, Avg f_macro 0.07897229558098988\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 34%|█████████████████████████████████▊ | 338/1000 [14:15<20:15, 1.84s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1352012303935381, Avg f_macro 0.07923174638301851\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 34%|█████████████████████████████████▉ | 339/1000 [14:17<22:14, 2.02s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1353923772065365, Avg f_macro 0.07932578580699519\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 34%|██████████████████████████████████ | 340/1000 [14:18<19:40, 1.79s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13499416433239964, Avg f_macro 0.07909247467226874\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 34%|██████████████████████████████████ | 341/1000 [14:21<23:26, 2.13s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13459828701764184, Avg f_macro 0.07886053193129434\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 34%|██████████████████████████████████▏ | 342/1000 [14:24<25:12, 2.30s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1342047247749002, Avg f_macro 0.07862994558061803\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 34%|██████████████████████████████████▎ | 343/1000 [14:29<33:44, 3.08s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1338134573557314, Avg f_macro 0.07840070375676784\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 34%|██████████████████████████████████▍ | 344/1000 [14:31<29:58, 2.74s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13342446474713918, Avg f_macro 0.0781727947342191\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 34%|██████████████████████████████████▌ | 345/1000 [14:33<28:18, 2.59s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1336174373130895, Avg f_macro 0.07826826811502167\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 35%|██████████████████████████████████▌ | 346/1000 [14:36<28:22, 2.60s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13323125974860078, Avg f_macro 0.07804205924763723\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 35%|██████████████████████████████████▋ | 347/1000 [14:38<27:49, 2.56s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1328473079914002, Avg f_macro 0.0778171541777593\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 35%|██████████████████████████████████▊ | 348/1000 [14:42<31:21, 2.89s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13287607188469258, Avg f_macro 0.07783300526728683\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 35%|██████████████████████████████████▉ | 349/1000 [14:43<24:34, 2.27s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13249533815436396, Avg f_macro 0.07760998806021724\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 35%|███████████████████████████████████ | 350/1000 [14:45<25:02, 2.31s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1321167800453515, Avg f_macro 0.07738824523718804\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 35%|███████████████████████████████████ | 351/1000 [14:49<30:57, 2.86s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1324526296748519, Avg f_macro 0.07768576642402848\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 35%|███████████████████████████████████▏ | 352/1000 [14:52<30:19, 2.81s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13254982864357864, Avg f_macro 0.07765446216335414\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 35%|███████████████████████████████████▎ | 353/1000 [14:55<32:09, 2.98s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13257902783398537, Avg f_macro 0.07771776397025683\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 35%|███████████████████████████████████▍ | 354/1000 [14:57<28:16, 2.63s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13291072549547128, Avg f_macro 0.07790177351513504\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 36%|███████████████████████████████████▌ | 355/1000 [14:59<25:01, 2.33s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13253632908562488, Avg f_macro 0.07768233189959944\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 36%|███████████████████████████████████▌ | 356/1000 [15:02<26:51, 2.50s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1321640360263956, Avg f_macro 0.07746412310212866\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 36%|███████████████████████████████████▋ | 357/1000 [15:05<28:50, 2.69s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13179382864256817, Avg f_macro 0.07724713676290701\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 36%|███████████████████████████████████▊ | 358/1000 [15:08<31:02, 2.90s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13182473175489937, Avg f_macro 0.07724623156782369\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 36%|███████████████████████████████████▉ | 359/1000 [15:10<26:44, 2.50s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13145753194499712, Avg f_macro 0.07703106100635343\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 36%|████████████████████████████████████ | 360/1000 [15:12<24:42, 2.32s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1310923721340388, Avg f_macro 0.07681708583689133\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 36%|████████████████████████████████████ | 361/1000 [15:13<23:06, 2.17s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13142175614474783, Avg f_macro 0.0770000222829308\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 36%|████████████████████████████████████▏ | 362/1000 [15:15<20:02, 1.88s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1319795229325616, Avg f_macro 0.07733980122690061\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 36%|████████████████████████████████████▎ | 363/1000 [15:18<23:38, 2.23s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13161594297957935, Avg f_macro 0.07712674392324524\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 36%|███████████████████████████████████▎ | 364/1000 [18:26<10:16:08, 58.13s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13194117390545962, Avg f_macro 0.0773727327219909\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 36%|███████████████████████████████████▊ | 365/1000 [18:30<7:21:43, 41.74s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1315796912372255, Avg f_macro 0.07716075263234161\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 37%|███████████████████████████████████▊ | 366/1000 [18:36<5:28:24, 31.08s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1315237661549137, Avg f_macro 0.0770713638121561\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 37%|███████████████████████████████████▉ | 367/1000 [18:39<3:59:31, 22.70s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1317103498983608, Avg f_macro 0.07720195955108755\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 37%|████████████████████████████████████ | 368/1000 [18:44<3:02:51, 17.36s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13165437370600414, Avg f_macro 0.0771315250177478\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 37%|████████████████████████████████████▏ | 369/1000 [18:46<2:14:00, 12.74s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13129758678539166, Avg f_macro 0.07692249649466447\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 37%|████████████████████████████████████▎ | 370/1000 [18:49<1:43:12, 9.83s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13094272844272845, Avg f_macro 0.07671459785548969\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 37%|████████████████████████████████████▎ | 371/1000 [18:51<1:17:51, 7.43s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1312636375304839, Avg f_macro 0.07695705626198882\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 37%|████████████████████████████████████▍ | 372/1000 [18:54<1:03:03, 6.02s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13144841269841268, Avg f_macro 0.0770488682373897\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 37%|█████████████████████████████████████▎ | 373/1000 [18:56<51:15, 4.91s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13216839014426146, Avg f_macro 0.07748062794210242\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 37%|█████████████████████████████████████▍ | 374/1000 [19:00<48:01, 4.60s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13219696969696967, Avg f_macro 0.07749627688699876\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 38%|█████████████████████████████████████▌ | 375/1000 [19:04<45:27, 4.36s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1322253968253968, Avg f_macro 0.07753204439105767\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 38%|█████████████████████████████████████▌ | 376/1000 [19:06<38:14, 3.68s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13240564842958458, Avg f_macro 0.07757913495182106\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 38%|█████████████████████████████████████▋ | 377/1000 [19:07<29:38, 2.85s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13205443981306048, Avg f_macro 0.07737335475300987\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 38%|█████████████████████████████████████▊ | 378/1000 [19:09<26:53, 2.59s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13236646510456032, Avg f_macro 0.07754659228767688\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 38%|█████████████████████████████████████▉ | 379/1000 [19:11<25:47, 2.49s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1320172132177409, Avg f_macro 0.07734198386475426\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 38%|██████████████████████████████████████ | 380/1000 [19:13<25:02, 2.42s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13219611528822053, Avg f_macro 0.07743084998908678\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 38%|██████████████████████████████████████ | 381/1000 [19:14<21:13, 2.06s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13184914385701788, Avg f_macro 0.0772276194116876\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 38%|██████████████████████████████████████▏ | 382/1000 [19:17<22:24, 2.18s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13202754923959112, Avg f_macro 0.07735267799961512\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 38%|██████████████████████████████████████▎ | 383/1000 [19:19<23:08, 2.25s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1316828297898794, Avg f_macro 0.07715071278290594\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 38%|██████████████████████████████████████▍ | 384/1000 [19:22<23:42, 2.31s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1318607390873016, Avg f_macro 0.07727532030170046\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 38%|██████████████████████████████████████▌ | 385/1000 [19:23<22:08, 2.16s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13216759431045147, Avg f_macro 0.07750750561693415\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 39%|██████████████████████████████████████▌ | 386/1000 [19:26<24:37, 2.41s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13182519121638295, Avg f_macro 0.07730670897025815\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 39%|██████████████████████████████████████▋ | 387/1000 [19:29<24:45, 2.42s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1325181493786145, Avg f_macro 0.07775294486439184\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 39%|██████████████████████████████████████▊ | 388/1000 [19:31<22:52, 2.24s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1334652675503191, Avg f_macro 0.07841165720580665\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 39%|██████████████████████████████████████▉ | 389/1000 [19:32<19:40, 1.93s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13312216917615377, Avg f_macro 0.07821008482224416\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 39%|███████████████████████████████████████ | 390/1000 [19:33<15:56, 1.57s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1327808302808303, Avg f_macro 0.07800954614321276\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 39%|███████████████████████████████████████ | 391/1000 [19:37<23:26, 2.31s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13280660090123006, Avg f_macro 0.07804253730629684\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 39%|███████████████████████████████████████▏ | 392/1000 [19:38<20:45, 2.05s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13246780855199225, Avg f_macro 0.07784344920092363\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 39%|███████████████████████████████████████▎ | 393/1000 [19:40<19:08, 1.89s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1321307403368472, Avg f_macro 0.07764537426657014\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 39%|███████████████████████████████████████▍ | 394/1000 [19:44<25:17, 2.50s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13179538312787045, Avg f_macro 0.07744830478873621\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 40%|███████████████████████████████████████▌ | 395/1000 [19:50<36:27, 3.62s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13146172393007838, Avg f_macro 0.07725223313104321\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 40%|███████████████████████████████████████▌ | 396/1000 [19:51<29:08, 2.90s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1311297498797499, Avg f_macro 0.07705715173424764\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 40%|███████████████████████████████████████▋ | 397/1000 [19:53<27:10, 2.70s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13130322658030466, Avg f_macro 0.07714292996945385\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 40%|███████████████████████████████████████▊ | 398/1000 [19:56<27:06, 2.70s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13097331897583153, Avg f_macro 0.07694910351224417\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 40%|███████████████████████████████████████▉ | 399/1000 [19:59<27:38, 2.76s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13164757130922544, Avg f_macro 0.07711428656824643\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 40%|████████████████████████████████████████ | 400/1000 [20:01<25:13, 2.52s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13131845238095238, Avg f_macro 0.0769215008518258\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 40%|████████████████████████████████████████ | 401/1000 [20:03<24:27, 2.45s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1309909749435934, Avg f_macro 0.07672967666017536\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 40%|████████████████████████████████████████▏ | 402/1000 [20:04<20:41, 2.08s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1306651267472163, Avg f_macro 0.07653880681773712\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 40%|████████████████████████████████████████▎ | 403/1000 [20:06<18:03, 1.81s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1303408956634763, Avg f_macro 0.0763488842201745\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 40%|████████████████████████████████████████▍ | 404/1000 [20:07<18:30, 1.86s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13063708156529938, Avg f_macro 0.07651350862274124\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 40%|████████████████████████████████████████▌ | 405/1000 [20:10<20:15, 2.04s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13080834803057026, Avg f_macro 0.07663322835453694\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 41%|████████████████████████████████████████▌ | 406/1000 [20:12<21:25, 2.16s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1309787708186723, Avg f_macro 0.07671814924802604\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 41%|████████████████████████████████████████▋ | 407/1000 [20:18<32:25, 3.28s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1309299559299559, Avg f_macro 0.07664665268382707\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 41%|████████████████████████████████████████▊ | 408/1000 [20:20<27:24, 2.78s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13122179427326486, Avg f_macro 0.07680893329699698\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 41%|████████████████████████████████████████▉ | 409/1000 [20:21<21:33, 2.19s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13090095859044515, Avg f_macro 0.07662113639407034\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 41%|█████████████████████████████████████████ | 410/1000 [20:26<30:19, 3.08s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13085269066976382, Avg f_macro 0.07655039959218002\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 41%|█████████████████████████████████████████ | 411/1000 [20:29<29:47, 3.03s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13093982929749354, Avg f_macro 0.07652635158019581\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 41%|█████████████████████████████████████████▏ | 412/1000 [20:30<24:22, 2.49s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13143107566651255, Avg f_macro 0.07682604490160311\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 41%|█████████████████████████████████████████▎ | 413/1000 [20:36<33:55, 3.47s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13111284061647258, Avg f_macro 0.07664002542242247\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 41%|█████████████████████████████████████████▍ | 414/1000 [20:39<32:15, 3.30s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13079614293382408, Avg f_macro 0.07645490458806879\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 42%|█████████████████████████████████████████▌ | 415/1000 [20:42<31:01, 3.18s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13048097150506788, Avg f_macro 0.07627067590231441\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 42%|█████████████████████████████████████████▌ | 416/1000 [20:45<31:36, 3.25s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13051072191697194, Avg f_macro 0.07623302057708303\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 42%|█████████████████████████████████████████▋ | 417/1000 [20:48<32:02, 3.30s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13054032964104909, Avg f_macro 0.07623467538846432\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 42%|█████████████████████████████████████████▊ | 418/1000 [20:51<30:55, 3.19s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13022803220171641, Avg f_macro 0.07605229578227181\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 42%|█████████████████████████████████████████▉ | 419/1000 [20:54<29:26, 3.04s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13031499791642992, Avg f_macro 0.07613596837255544\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 42%|██████████████████████████████████████████ | 420/1000 [20:55<23:46, 2.46s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13000472411186698, Avg f_macro 0.07595469225738269\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 42%|██████████████████████████████████████████ | 421/1000 [21:02<36:53, 3.82s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1301277964579627, Avg f_macro 0.07598263668965877\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 42%|██████████████████████████████████████████▏ | 422/1000 [21:04<31:56, 3.32s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.12981943675071636, Avg f_macro 0.07580258304821408\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 42%|██████████████████████████████████████████▎ | 423/1000 [21:07<31:28, 3.27s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1295125350089889, Avg f_macro 0.07562338072422303\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 42%|██████████████████████████████████████████▍ | 424/1000 [21:11<31:50, 3.32s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.12954400814070627, Avg f_macro 0.07557605094788183\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 42%|██████████████████████████████████████████▌ | 425/1000 [21:13<29:19, 3.06s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.12970978694508106, Avg f_macro 0.07565966285414825\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 43%|██████████████████████████████████████████▌ | 426/1000 [21:16<28:01, 2.93s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1303442710132851, Avg f_macro 0.07606891247186151\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 43%|██████████████████████████████████████████▋ | 427/1000 [21:18<24:11, 2.53s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13062449520294955, Avg f_macro 0.07622532518939146\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 43%|██████████████████████████████████████████▊ | 428/1000 [21:19<21:09, 2.22s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13031929778425105, Avg f_macro 0.07604722863521064\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 43%|██████████████████████████████████████████▉ | 429/1000 [21:22<23:13, 2.44s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1300155231973414, Avg f_macro 0.07586996236799569\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 43%|███████████████████████████████████████████ | 430/1000 [21:24<23:15, 2.45s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13017827779455687, Avg f_macro 0.07595191852786341\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 43%|███████████████████████████████████████████ | 431/1000 [21:28<27:13, 2.87s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1302076951148877, Avg f_macro 0.07590459517989981\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 43%|███████████████████████████████████████████▏ | 432/1000 [21:31<27:21, 2.89s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13029209088236868, Avg f_macro 0.07593932780890257\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 43%|███████████████████████████████████████████▎ | 433/1000 [21:35<31:10, 3.30s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13032110947815337, Avg f_macro 0.07589225212240523\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 43%|███████████████████████████████████████████▍ | 434/1000 [21:38<27:47, 2.95s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1305968672904157, Avg f_macro 0.076046549105665\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 44%|███████████████████████████████████████████▌ | 435/1000 [21:39<24:36, 2.61s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13029664460698945, Avg f_macro 0.07587172945254853\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 44%|███████████████████████████████████████████▌ | 436/1000 [21:40<19:50, 2.11s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1299977990918358, Avg f_macro 0.07569771172444634\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 44%|███████████████████████████████████████████▋ | 437/1000 [21:45<26:17, 2.80s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.12998636248064166, Avg f_macro 0.07568794252468461\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 44%|███████████████████████████████████████████▊ | 438/1000 [21:48<28:41, 3.06s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1306680635447759, Avg f_macro 0.07597176000750497\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 44%|███████████████████████████████████████████▉ | 439/1000 [21:51<27:25, 2.93s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13082599506289713, Avg f_macro 0.07605180408746763\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 44%|████████████████████████████████████████████ | 440/1000 [21:56<33:40, 3.61s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13078118850846124, Avg f_macro 0.0759736560478749\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 44%|████████████████████████████████████████████ | 441/1000 [21:59<32:21, 3.47s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13048463252544887, Avg f_macro 0.07580138018382077\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 44%|████████████████████████████████████████████▏ | 442/1000 [22:02<29:27, 3.17s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13064190711249535, Avg f_macro 0.07588126645288704\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 44%|████████████████████████████████████████████▎ | 443/1000 [22:04<27:22, 2.95s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13034700438763644, Avg f_macro 0.07570997691236134\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 44%|████████████████████████████████████████████▍ | 444/1000 [22:09<30:42, 3.31s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13033496158496158, Avg f_macro 0.07571270911959267\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 44%|████████████████████████████████████████████▌ | 445/1000 [22:11<28:56, 3.13s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1304166058660441, Avg f_macro 0.07579225609036012\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 45%|████████████████████████████████████████████▌ | 446/1000 [22:14<27:00, 2.92s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13012419195154623, Avg f_macro 0.07562231829643555\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 45%|████████████████████████████████████████████▋ | 447/1000 [22:15<23:54, 2.59s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13039237049304164, Avg f_macro 0.0758259969281363\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 45%|████████████████████████████████████████████▊ | 448/1000 [22:18<24:45, 2.69s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13010131609461967, Avg f_macro 0.07565674247070742\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 45%|████████████████████████████████████████████▉ | 449/1000 [22:25<34:53, 3.80s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13003427530153588, Avg f_macro 0.07561925201846034\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 45%|█████████████████████████████████████████████ | 450/1000 [22:26<27:53, 3.04s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13048605098605098, Avg f_macro 0.07582157960656745\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 45%|█████████████████████████████████████████████ | 451/1000 [22:29<28:31, 3.12s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1305662740806865, Avg f_macro 0.07585503306843558\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 45%|█████████████████████████████████████████████▏ | 452/1000 [22:32<26:07, 2.86s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13027741064245488, Avg f_macro 0.07568721219881515\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 45%|█████████████████████████████████████████████▎ | 453/1000 [22:35<26:16, 2.88s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13035774012595205, Avg f_macro 0.07574088281206279\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 45%|█████████████████████████████████████████████▍ | 454/1000 [22:37<25:00, 2.75s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13095166580849402, Avg f_macro 0.07612471346666176\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 46%|█████████████████████████████████████████████▌ | 455/1000 [22:39<23:14, 2.56s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13176276104847534, Avg f_macro 0.07669000713669842\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 46%|█████████████████████████████████████████████▌ | 456/1000 [22:41<21:34, 2.38s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1320220532391585, Avg f_macro 0.07688732437250974\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 46%|█████████████████████████████████████████████▋ | 457/1000 [22:43<19:25, 2.15s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1331919539249955, Avg f_macro 0.07781317267804036\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 46%|█████████████████████████████████████████████▊ | 458/1000 [22:45<20:11, 2.23s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13290114179852172, Avg f_macro 0.0776432749211014\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 46%|█████████████████████████████████████████████▉ | 459/1000 [22:47<20:13, 2.24s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13304732667477767, Avg f_macro 0.07771618959689663\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 46%|██████████████████████████████████████████████ | 460/1000 [22:49<19:48, 2.20s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13275809335591945, Avg f_macro 0.07754724135864252\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 46%|██████████████████████████████████████████████ | 461/1000 [22:53<22:17, 2.48s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1331931806443737, Avg f_macro 0.07792132543378646\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 46%|██████████████████████████████████████████████▏ | 462/1000 [22:58<30:03, 3.35s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13290488371657203, Avg f_macro 0.07775266455622415\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 46%|██████████████████████████████████████████████▎ | 463/1000 [23:02<30:52, 3.45s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13292637887670286, Avg f_macro 0.07776471783652028\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 46%|██████████████████████████████████████████████▍ | 464/1000 [23:02<23:34, 2.64s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13371748581877893, Avg f_macro 0.07831551226647032\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 46%|██████████████████████████████████████████████▌ | 465/1000 [23:04<19:53, 2.23s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13414676721128335, Avg f_macro 0.078577199336865\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 47%|██████████████████████████████████████████████▌ | 466/1000 [23:06<19:09, 2.15s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1338588986121175, Avg f_macro 0.07840857873742967\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 47%|██████████████████████████████████████████████▋ | 467/1000 [23:09<23:11, 2.61s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1335722628549181, Avg f_macro 0.07824068028188913\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 47%|██████████████████████████████████████████████▊ | 468/1000 [23:12<24:34, 2.77s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13328685203685203, Avg f_macro 0.07807349934111586\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 47%|██████████████████████████████████████████████▉ | 469/1000 [23:15<22:42, 2.57s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13353570736299947, Avg f_macro 0.07821163077718415\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 47%|███████████████████████████████████████████████ | 470/1000 [23:17<22:45, 2.58s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13325158883669522, Avg f_macro 0.07804522305212631\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 47%|███████████████████████████████████████████████ | 471/1000 [23:20<24:01, 2.72s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13296867675848567, Avg f_macro 0.07787952194161225\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 47%|███████████████████████████████████████████████▏ | 472/1000 [23:23<23:42, 2.69s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13268696346026856, Avg f_macro 0.07771452295444782\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 47%|███████████████████████████████████████████████▎ | 473/1000 [23:27<26:11, 2.98s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13240644133878807, Avg f_macro 0.07755022163741938\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 47%|███████████████████████████████████████████████▍ | 474/1000 [23:30<27:56, 3.19s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13212710285495097, Avg f_macro 0.07738661357489318\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 48%|███████████████████████████████████████████████▌ | 475/1000 [23:32<23:40, 2.71s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13237525632262476, Avg f_macro 0.07752444626811897\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 48%|███████████████████████████████████████████████▌ | 476/1000 [23:33<20:52, 2.39s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13209715704463604, Avg f_macro 0.07736157978436241\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 48%|███████████████████████████████████████████████▋ | 477/1000 [23:34<16:25, 1.89s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13182022380135588, Avg f_macro 0.07719939617894446\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 48%|███████████████████████████████████████████████▊ | 478/1000 [23:38<22:03, 2.53s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13244104222137695, Avg f_macro 0.0774563012078588\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 48%|███████████████████████████████████████████████▉ | 479/1000 [23:40<20:30, 2.36s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1321645473524388, Avg f_macro 0.07729459702997184\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 48%|████████████████████████████████████████████████ | 480/1000 [23:43<22:29, 2.59s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13188920454545455, Avg f_macro 0.07713356661949274\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 48%|████████████████████████████████████████████████ | 481/1000 [23:45<20:50, 2.41s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13213475713475714, Avg f_macro 0.07727020607113025\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 48%|████████████████████████████████████████████████▏ | 482/1000 [23:48<20:24, 2.36s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13227555639381366, Avg f_macro 0.07734041541768623\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 48%|████████████████████████████████████████████████▎ | 483/1000 [23:52<24:37, 2.86s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1322974644403216, Avg f_macro 0.07736850791352766\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 48%|████████████████████████████████████████████████▍ | 484/1000 [23:58<33:55, 3.94s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13202412257164325, Avg f_macro 0.07720865562445012\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 48%|████████████████████████████████████████████████▌ | 485/1000 [24:00<30:01, 3.50s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13175190788592853, Avg f_macro 0.0770494625200698\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 49%|████████████████████████████████████████████████▌ | 486/1000 [24:03<28:35, 3.34s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1321666844814993, Avg f_macro 0.07734817190217298\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 49%|████████████████████████████████████████████████▋ | 487/1000 [24:07<28:25, 3.32s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13189529498564406, Avg f_macro 0.0771893460871788\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 49%|████████████████████████████████████████████████▊ | 488/1000 [24:08<23:41, 2.78s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13162501774182103, Avg f_macro 0.07703117119765589\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 49%|████████████████████████████████████████████████▉ | 489/1000 [24:11<24:06, 2.83s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1313558459263981, Avg f_macro 0.07687364324019647\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 49%|█████████████████████████████████████████████████ | 490/1000 [24:13<22:37, 2.66s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1314959360367524, Avg f_macro 0.0769435156236065\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 49%|█████████████████████████████████████████████████ | 491/1000 [24:15<20:51, 2.46s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13122812353973254, Avg f_macro 0.07678680785247899\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 49%|█████████████████████████████████████████████████▏ | 492/1000 [24:16<16:30, 1.95s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13096139971139975, Avg f_macro 0.07663073710481136\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 49%|█████████████████████████████████████████████████▎ | 493/1000 [24:22<25:08, 2.97s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13092113543432002, Avg f_macro 0.07661052600858793\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 49%|█████████████████████████████████████████████████▍ | 494/1000 [24:24<24:34, 2.91s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13106097119255017, Avg f_macro 0.07668036524968616\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 50%|█████████████████████████████████████████████████▌ | 495/1000 [24:26<22:25, 2.66s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13120024195781774, Avg f_macro 0.07669380558924907\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 50%|█████████████████████████████████████████████████▌ | 496/1000 [24:30<23:34, 2.81s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.131223743774147, Avg f_macro 0.07666137061952491\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 50%|█████████████████████████████████████████████████▋ | 497/1000 [24:32<22:35, 2.69s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13136212658345456, Avg f_macro 0.07673068599274742\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 50%|█████████████████████████████████████████████████▊ | 498/1000 [24:34<20:42, 2.47s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13160035524493358, Avg f_macro 0.07691128033145006\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 50%|█████████████████████████████████████████████████▉ | 499/1000 [24:37<21:01, 2.52s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13133662707811006, Avg f_macro 0.07675714950914256\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 50%|██████████████████████████████████████████████████ | 500/1000 [24:40<22:42, 2.72s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13147395382395383, Avg f_macro 0.07677030187679094\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 50%|██████████████████████████████████████████████████ | 501/1000 [24:44<25:55, 3.12s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1314966747601478, Avg f_macro 0.07677060681700308\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 50%|██████████████████████████████████████████████████▏ | 502/1000 [24:46<23:52, 2.88s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.131732737161024, Avg f_macro 0.07694968263343668\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 50%|██████████████████████████████████████████████████▎ | 503/1000 [24:48<20:22, 2.46s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13147084305135995, Avg f_macro 0.07679670115702826\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 50%|██████████████████████████████████████████████████▍ | 504/1000 [24:50<20:55, 2.53s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13187136386541148, Avg f_macro 0.07684273944838337\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 50%|██████████████████████████████████████████████████▌ | 505/1000 [24:54<22:58, 2.79s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1318931178832169, Avg f_macro 0.07684289853249165\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 51%|██████████████████████████████████████████████████▌ | 506/1000 [24:57<25:29, 3.10s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1319147859167622, Avg f_macro 0.07685572547873838\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 51%|██████████████████████████████████████████████████▋ | 507/1000 [25:00<23:50, 2.90s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1320490762798455, Avg f_macro 0.07698590578914943\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 51%|██████████████████████████████████████████████████▊ | 508/1000 [25:03<23:05, 2.82s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13178913715331037, Avg f_macro 0.07683435873050938\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 51%|██████████████████████████████████████████████████▉ | 509/1000 [25:05<22:47, 2.78s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13185765882229536, Avg f_macro 0.07690170009078562\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 51%|███████████████████████████████████████████████████ | 510/1000 [25:08<22:22, 2.74s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13238342811872225, Avg f_macro 0.07724110852198016\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 51%|███████████████████████████████████████████████████ | 511/1000 [25:09<18:17, 2.24s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13310283432592632, Avg f_macro 0.07774226747464424\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 51%|███████████████████████████████████████████████████▏ | 512/1000 [25:10<14:46, 1.82s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1328428678526335, Avg f_macro 0.07759042710848282\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 51%|███████████████████████████████████████████████████▎ | 513/1000 [25:11<14:11, 1.75s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1330712443285543, Avg f_macro 0.07776406500235844\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 51%|███████████████████████████████████████████████████▍ | 514/1000 [25:15<18:48, 2.32s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1330902830416449, Avg f_macro 0.07777490015475332\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 52%|███████████████████████████████████████████████████▌ | 515/1000 [25:23<33:30, 4.15s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1329936676053181, Avg f_macro 0.07768552371124125\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 52%|███████████████████████████████████████████████████▌ | 516/1000 [25:30<40:12, 4.99s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13273592793941633, Avg f_macro 0.07753497037071559\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 52%|███████████████████████████████████████████████████▋ | 517/1000 [25:33<34:04, 4.23s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13247918533218342, Avg f_macro 0.07738499944156527\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 52%|███████████████████████████████████████████████████▊ | 518/1000 [25:34<25:39, 3.19s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13222343400914832, Avg f_macro 0.07723560755075144\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 52%|███████████████████████████████████████████████████▉ | 519/1000 [25:36<24:25, 3.05s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1322897986192784, Avg f_macro 0.07721524350280522\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 52%|████████████████████████████████████████████████████ | 520/1000 [25:38<20:20, 2.54s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13203539516039517, Avg f_macro 0.07706675264991521\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 52%|████████████████████████████████████████████████████ | 521/1000 [25:39<17:29, 2.19s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1317819682982831, Avg f_macro 0.0769188318194931\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 52%|████████████████████████████████████████████████████▏ | 522/1000 [25:41<16:33, 2.08s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13200843962338216, Avg f_macro 0.07704515042301349\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 52%|████████████████████████████████████████████████████▎ | 523/1000 [25:43<15:33, 1.96s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13271205637362427, Avg f_macro 0.07753518518957245\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 52%|████████████████████████████████████████████████████▍ | 524/1000 [25:45<16:40, 2.10s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13284046847978148, Avg f_macro 0.07759926138407917\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 52%|████████████████████████████████████████████████████▌ | 525/1000 [25:52<27:14, 3.44s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13258743901601047, Avg f_macro 0.07745145326715712\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 53%|████████████████████████████████████████████████████▌ | 526/1000 [25:54<23:42, 3.00s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1323353716414553, Avg f_macro 0.0773042071582842\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 53%|████████████████████████████████████████████████████▋ | 527/1000 [25:55<19:33, 2.48s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13208426087932731, Avg f_macro 0.07715751985817361\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 53%|████████████████████████████████████████████████████▊ | 528/1000 [25:56<17:34, 2.23s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13183410129432857, Avg f_macro 0.07701138819177555\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 53%|████████████████████████████████████████████████████▉ | 529/1000 [25:59<18:44, 2.39s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13196295932590832, Avg f_macro 0.07707584891563063\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 53%|█████████████████████████████████████████████████████ | 530/1000 [26:00<15:43, 2.01s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1323429034278091, Avg f_macro 0.07730778127616718\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 53%|█████████████████████████████████████████████████████ | 531/1000 [26:03<16:44, 2.14s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13247031792229533, Avg f_macro 0.07731912883183038\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 53%|█████████████████████████████████████████████████████▏ | 532/1000 [26:07<21:57, 2.82s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13245627597131357, Avg f_macro 0.0772991054067079\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 53%|█████████████████████████████████████████████████████▎ | 533/1000 [26:10<21:03, 2.71s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13258299965617037, Avg f_macro 0.07736254256562798\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 53%|█████████████████████████████████████████████████████▍ | 534/1000 [26:13<22:24, 2.88s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13264682674795034, Avg f_macro 0.07742574213219255\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 54%|█████████████████████████████████████████████████████▌ | 535/1000 [26:15<21:22, 2.76s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13239888875402894, Avg f_macro 0.07728102111886136\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 54%|█████████████████████████████████████████████████████▌ | 536/1000 [26:17<18:06, 2.34s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13215187590187594, Avg f_macro 0.07713684010931124\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 54%|█████████████████████████████████████████████████████▋ | 537/1000 [26:19<17:12, 2.23s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1323713323713324, Avg f_macro 0.07730356231891526\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 54%|█████████████████████████████████████████████████████▊ | 538/1000 [26:20<13:55, 1.81s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13212528900261244, Avg f_macro 0.07715987540010687\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 54%|█████████████████████████████████████████████████████▉ | 539/1000 [26:20<11:36, 1.51s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13188015859629962, Avg f_macro 0.07701672164240723\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 54%|██████████████████████████████████████████████████████ | 540/1000 [26:22<11:16, 1.47s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13163593608038054, Avg f_macro 0.07687409808381018\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 54%|██████████████████████████████████████████████████████ | 541/1000 [26:24<12:26, 1.63s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1313926164203429, Avg f_macro 0.07673200178420979\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 54%|██████████████████████████████████████████████████████▏ | 542/1000 [26:29<19:42, 2.58s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13115019461882935, Avg f_macro 0.07659042982519833\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 54%|██████████████████████████████████████████████████████▎ | 543/1000 [26:31<19:21, 2.54s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13127698984052577, Avg f_macro 0.07665400382388325\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 54%|██████████████████████████████████████████████████████▍ | 544/1000 [26:33<17:18, 2.28s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13103567184449538, Avg f_macro 0.07651309572861877\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 55%|██████████████████████████████████████████████████████▌ | 545/1000 [26:35<16:34, 2.19s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13125395501542292, Avg f_macro 0.07663482792518486\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 55%|██████████████████████████████████████████████████████▌ | 546/1000 [26:36<15:41, 2.07s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13147143861429578, Avg f_macro 0.07675611421626904\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 55%|██████████████████████████████████████████████████████▋ | 547/1000 [26:38<14:42, 1.95s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1321451654175603, Avg f_macro 0.0772251767740699\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 55%|██████████████████████████████████████████████████████▊ | 548/1000 [26:40<15:01, 1.99s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13190402460475453, Avg f_macro 0.07708425491864276\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 55%|██████████████████████████████████████████████████████▉ | 549/1000 [26:42<15:15, 2.03s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13166376226485518, Avg f_macro 0.07694384643973813\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 55%|███████████████████████████████████████████████████████ | 550/1000 [26:45<17:42, 2.36s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1320304342122524, Avg f_macro 0.07720798894116081\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 55%|███████████████████████████████████████████████████████ | 551/1000 [26:48<18:11, 2.43s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1325167673625024, Avg f_macro 0.07732713441106279\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 55%|███████████████████████████████████████████████████████▏ | 552/1000 [26:51<18:10, 2.43s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13263901959554136, Avg f_macro 0.07738833726740343\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 55%|███████████████████████████████████████████████████████▎ | 553/1000 [26:53<18:33, 2.49s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13276082968668865, Avg f_macro 0.07744931877525825\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 55%|███████████████████████████████████████████████████████▍ | 554/1000 [26:56<19:57, 2.68s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1325211891998896, Avg f_macro 0.07730951856086248\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 56%|███████████████████████████████████████████████████████▌ | 555/1000 [26:58<17:14, 2.32s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1328830128830129, Avg f_macro 0.07753058249138345\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 56%|███████████████████████████████████████████████████████▌ | 556/1000 [27:00<17:51, 2.41s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.133003726888619, Avg f_macro 0.0776159591415788\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 56%|███████████████████████████████████████████████████████▋ | 557/1000 [27:03<17:52, 2.42s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13312400745075792, Avg f_macro 0.07767609406432482\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 56%|███████████████████████████████████████████████████████▊ | 558/1000 [27:05<17:51, 2.42s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1332438568997709, Avg f_macro 0.07773601344971333\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 56%|███████████████████████████████████████████████████████▉ | 559/1000 [27:07<17:26, 2.37s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13336327754932406, Avg f_macro 0.07782056440955284\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 56%|████████████████████████████████████████████████████████ | 560/1000 [27:08<13:50, 1.89s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13401798598227171, Avg f_macro 0.07827683721120245\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 56%|████████████████████████████████████████████████████████ | 561/1000 [27:10<14:35, 1.99s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13377909474166158, Avg f_macro 0.07813730630708267\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 56%|████████████████████████████████████████████████████████▏ | 562/1000 [27:13<16:37, 2.28s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13383761355291607, Avg f_macro 0.07816003190245989\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 56%|████████████████████████████████████████████████████████▎ | 563/1000 [27:16<16:59, 2.33s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1339551311132128, Avg f_macro 0.07824322900387648\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 56%|████████████████████████████████████████████████████████▍ | 564/1000 [27:18<15:29, 2.13s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13416088442684188, Avg f_macro 0.07835779268092129\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 56%|████████████████████████████████████████████████████████▍ | 565/1000 [27:22<19:30, 2.69s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1341762760346831, Avg f_macro 0.07835021087807731\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 57%|████████████████████████████████████████████████████████▌ | 566/1000 [27:25<21:02, 2.91s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1341916132552175, Avg f_macro 0.07837239971205436\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 57%|████████████████████████████████████████████████████████▋ | 567/1000 [27:27<19:09, 2.65s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13395494374330355, Avg f_macro 0.07823417678487261\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 57%|████████████████████████████████████████████████████████▊ | 568/1000 [27:29<17:16, 2.40s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1341592484198118, Avg f_macro 0.07838986778818562\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 57%|████████████████████████████████████████████████████████▉ | 569/1000 [27:31<17:17, 2.41s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13427496151573481, Avg f_macro 0.07844737436696055\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 57%|████████████████████████████████████████████████████████▉ | 570/1000 [27:33<16:19, 2.28s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13439026860079492, Avg f_macro 0.07850467916826608\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 57%|█████████████████████████████████████████████████████████ | 571/1000 [27:35<14:20, 2.01s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13415490911112626, Avg f_macro 0.07836719286499415\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 57%|█████████████████████████████████████████████████████████▏ | 572/1000 [27:37<15:16, 2.14s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1339203725567362, Avg f_macro 0.07823018728306234\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 57%|█████████████████████████████████████████████████████████▎ | 573/1000 [27:40<16:14, 2.28s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13368665462906298, Avg f_macro 0.07809365990560499\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 57%|█████████████████████████████████████████████████████████▍ | 574/1000 [27:42<16:54, 2.38s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.133802183105319, Avg f_macro 0.07817537826813878\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 57%|█████████████████████████████████████████████████████████▍ | 575/1000 [27:45<17:01, 2.40s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1339173097433967, Avg f_macro 0.07823265780351786\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 58%|█████████████████████████████████████████████████████████▌ | 576/1000 [27:46<15:25, 2.18s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13455286996953664, Avg f_macro 0.07867554092075711\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 58%|█████████████████████████████████████████████████████████▋ | 577/1000 [27:48<14:35, 2.07s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13475295165069862, Avg f_macro 0.07878677419967633\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 58%|█████████████████████████████████████████████████████████▊ | 578/1000 [27:50<14:17, 2.03s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1353848669592614, Avg f_macro 0.0792271661704958\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 58%|█████████████████████████████████████████████████████████▉ | 579/1000 [27:57<23:29, 3.35s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13515104162772557, Avg f_macro 0.07909033168660894\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 58%|█████████████████████████████████████████████████████████▉ | 580/1000 [28:00<23:00, 3.29s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13520537891227544, Avg f_macro 0.0791263828388734\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 58%|██████████████████████████████████████████████████████████ | 581/1000 [28:05<27:58, 4.01s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13497266741672936, Avg f_macro 0.07899019285119892\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 58%|██████████████████████████████████████████████████████████▏ | 582/1000 [28:10<29:06, 4.18s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13474075561704427, Avg f_macro 0.07885447087035494\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 58%|██████████████████████████████████████████████████████████▎ | 583/1000 [28:11<22:58, 3.31s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1345096393981471, Avg f_macro 0.07871921448807302\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 58%|██████████████████████████████████████████████████████████▍ | 584/1000 [28:16<25:45, 3.71s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13446957342505286, Avg f_macro 0.07865576834454321\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 58%|██████████████████████████████████████████████████████████▌ | 585/1000 [28:19<24:28, 3.54s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13423971090637757, Avg f_macro 0.07852131403968075\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 59%|██████████████████████████████████████████████████████████▌ | 586/1000 [28:21<21:28, 3.11s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.134863875222237, Avg f_macro 0.07895614683711019\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 59%|██████████████████████████████████████████████████████████▋ | 587/1000 [28:25<22:32, 3.28s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13487749237323343, Avg f_macro 0.07895268334492274\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 59%|██████████████████████████████████████████████████████████▊ | 588/1000 [28:28<23:16, 3.39s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13489106320738975, Avg f_macro 0.07896013342993705\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 59%|██████████████████████████████████████████████████████████▉ | 589/1000 [28:30<20:17, 2.96s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13551094255678298, Avg f_macro 0.07939200643486641\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 59%|███████████████████████████████████████████████████████████ | 590/1000 [28:36<25:21, 3.71s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1352812629931274, Avg f_macro 0.07925744371209545\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 59%|███████████████████████████████████████████████████████████ | 591/1000 [28:38<21:08, 3.10s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13505236068687845, Avg f_macro 0.0791233363623288\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 59%|███████████████████████████████████████████████████████████▏ | 592/1000 [28:40<19:44, 2.90s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13516206953706955, Avg f_macro 0.07913044784369874\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 59%|███████████████████████████████████████████████████████████▎ | 593/1000 [28:41<15:21, 2.26s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13577731056651798, Avg f_macro 0.07955912050051095\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 59%|███████████████████████████████████████████████████████████▍ | 594/1000 [28:43<16:03, 2.37s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13588542957229827, Avg f_macro 0.07963562029764813\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 60%|███████████████████████████████████████████████████████████▌ | 595/1000 [28:46<17:10, 2.54s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13593716274388545, Avg f_macro 0.07965456730707912\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 60%|███████████████████████████████████████████████████████████▌ | 596/1000 [28:48<14:48, 2.20s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13570908025606013, Avg f_macro 0.07952091870421489\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 60%|███████████████████████████████████████████████████████████▋ | 597/1000 [28:50<14:47, 2.20s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1363192828016949, Avg f_macro 0.07994606512737924\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 60%|███████████████████████████████████████████████████████████▊ | 598/1000 [28:53<17:15, 2.58s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13637003093524833, Avg f_macro 0.08002140615559433\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 60%|███████████████████████████████████████████████████████████▉ | 599/1000 [28:56<17:33, 2.63s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13642060962595187, Avg f_macro 0.08001147738751166\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 60%|████████████████████████████████████████████████████████████ | 600/1000 [28:58<16:11, 2.43s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13660990860990863, Avg f_macro 0.08015590270297691\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 60%|████████████████████████████████████████████████████████████ | 601/1000 [29:00<15:32, 2.34s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13721455102486718, Avg f_macro 0.08057716298688766\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 60%|████████████████████████████████████████████████████████████▏ | 602/1000 [29:01<12:17, 1.85s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13698661987698532, Avg f_macro 0.08044331387893602\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 60%|████████████████████████████████████████████████████████████▎ | 603/1000 [29:04<13:47, 2.08s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13675944471964374, Avg f_macro 0.08030990871495769\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 60%|████████████████████████████████████████████████████████████▍ | 604/1000 [29:06<14:28, 2.19s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13653302179792248, Avg f_macro 0.08017694528993292\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 60%|████████████████████████████████████████████████████████████▌ | 605/1000 [29:08<14:01, 2.13s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13672057052222342, Avg f_macro 0.08031990350708455\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 61%|████████████████████████████████████████████████████████████▌ | 606/1000 [29:11<15:35, 2.37s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1364949590197115, Avg f_macro 0.08018736241218836\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 61%|████████████████████████████████████████████████████████████▋ | 607/1000 [29:14<17:04, 2.61s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.136544665292606, Avg f_macro 0.08022000267180586\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 61%|████████████████████████████████████████████████████████████▊ | 608/1000 [29:19<20:53, 3.20s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13632008525100633, Avg f_macro 0.08008806187793775\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 61%|████████████████████████████████████████████████████████████▉ | 609/1000 [29:21<18:43, 2.87s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13650675177768776, Avg f_macro 0.08019113097642577\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 61%|█████████████████████████████████████████████████████████████ | 610/1000 [29:23<17:51, 2.75s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13628297021739647, Avg f_macro 0.0800596701059726\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 61%|█████████████████████████████████████████████████████████████ | 611/1000 [29:26<18:12, 2.81s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13660547490334726, Avg f_macro 0.08033780485211668\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 61%|█████████████████████████████████████████████████████████████▏ | 612/1000 [29:29<17:28, 2.70s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13638226334304768, Avg f_macro 0.08020653392915571\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 61%|█████████████████████████████████████████████████████████████▎ | 613/1000 [29:31<15:46, 2.45s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13697544072747989, Avg f_macro 0.0806194650864219\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 61%|█████████████████████████████████████████████████████████████▍ | 614/1000 [29:33<16:42, 2.60s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13675235369046446, Avg f_macro 0.08048816302602056\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 62%|█████████████████████████████████████████████████████████████▌ | 615/1000 [29:36<16:47, 2.62s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13718039864381326, Avg f_macro 0.08076379202923029\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 62%|█████████████████████████████████████████████████████████████▌ | 616/1000 [29:44<25:53, 4.05s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1369577031914694, Avg f_macro 0.08063268197723479\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 62%|█████████████████████████████████████████████████████████████▋ | 617/1000 [29:45<21:19, 3.34s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13714091599018666, Avg f_macro 0.08073353199486835\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 62%|█████████████████████████████████████████████████████████████▊ | 618/1000 [29:47<18:04, 2.84s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13772806661156176, Avg f_macro 0.08114226953748722\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 62%|█████████████████████████████████████████████████████████████▉ | 619/1000 [29:49<15:48, 2.49s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13750556569619574, Avg f_macro 0.08101118348007609\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 62%|██████████████████████████████████████████████████████████████ | 620/1000 [29:52<16:58, 2.68s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1375525997300191, Avg f_macro 0.08104181060349534\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 62%|██████████████████████████████████████████████████████████████ | 621/1000 [29:55<18:47, 2.97s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1373310979591173, Avg f_macro 0.08091130849302272\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 62%|██████████████████████████████████████████████████████████████▏ | 622/1000 [30:00<22:22, 3.55s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13711030841255922, Avg f_macro 0.0807812260034841\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 62%|██████████████████████████████████████████████████████████████▎ | 623/1000 [30:03<20:12, 3.22s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1372112549480126, Avg f_macro 0.08088086631946108\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 62%|██████████████████████████████████████████████████████████████▍ | 624/1000 [30:05<17:47, 2.84s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13739200614200614, Avg f_macro 0.08098018727545095\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 62%|██████████████████████████████████████████████████████████████▌ | 625/1000 [30:09<20:16, 3.24s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13717217893217895, Avg f_macro 0.08085061897581024\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 63%|██████████████████████████████████████████████████████████████▌ | 626/1000 [30:12<20:32, 3.30s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13718126034419964, Avg f_macro 0.080844344946972\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 63%|██████████████████████████████████████████████████████████████▋ | 627/1000 [30:15<18:53, 3.04s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1372814497216411, Avg f_macro 0.08091476863924157\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 63%|██████████████████████████████████████████████████████████████▊ | 628/1000 [30:17<18:04, 2.91s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1370628486870525, Avg f_macro 0.08078592346624916\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 63%|██████████████████████████████████████████████████████████████▉ | 629/1000 [30:20<18:01, 2.92s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13684494272729567, Avg f_macro 0.08065748797584177\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 63%|███████████████████████████████████████████████████████████████ | 630/1000 [30:21<14:55, 2.42s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13662772853249044, Avg f_macro 0.08052946021714995\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 63%|███████████████████████████████████████████████████████████████ | 631/1000 [30:23<13:31, 2.20s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13680739932720917, Avg f_macro 0.08062823625936864\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 63%|███████████████████████████████████████████████████████████████▏ | 632/1000 [30:26<13:59, 2.28s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13690738761941296, Avg f_macro 0.08067646865628596\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 63%|███████████████████████████████████████████████████████████████▎ | 633/1000 [30:30<17:24, 2.84s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13688857658051973, Avg f_macro 0.08066185902401468\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 63%|███████████████████████████████████████████████████████████████▍ | 634/1000 [30:32<16:57, 2.78s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13667266399916242, Avg f_macro 0.08053463211703674\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 64%|███████████████████████████████████████████████████████████████▌ | 635/1000 [30:34<14:04, 2.31s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13645743145743147, Avg f_macro 0.08040780592472645\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 64%|███████████████████████████████████████████████████████████████▌ | 636/1000 [30:35<12:52, 2.12s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13663595750859903, Avg f_macro 0.0805434330642578\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 64%|███████████████████████████████████████████████████████████████▋ | 637/1000 [30:39<16:03, 2.65s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1364214583602339, Avg f_macro 0.08041699125410984\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 64%|███████████████████████████████████████████████████████████████▊ | 638/1000 [30:42<15:57, 2.64s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1365211112468166, Avg f_macro 0.08051485983029012\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 64%|███████████████████████████████████████████████████████████████▉ | 639/1000 [30:44<14:54, 2.48s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13630746318539746, Avg f_macro 0.08038885848470281\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 64%|████████████████████████████████████████████████████████████████ | 640/1000 [30:46<14:47, 2.46s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13609448277417027, Avg f_macro 0.08026325089332047\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 64%|████████████████████████████████████████████████████████████████ | 641/1000 [30:52<20:37, 3.45s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13588216688840712, Avg f_macro 0.0801380352132997\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 64%|████████████████████████████████████████████████████████████████▏ | 642/1000 [30:53<15:45, 2.64s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13567051242284886, Avg f_macro 0.08001320961327897\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 64%|████████████████████████████████████████████████████████████████▎ | 643/1000 [30:55<14:34, 2.45s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13584831877988954, Avg f_macro 0.08014797393218005\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 64%|████████████████████████████████████████████████████████████████▍ | 644/1000 [30:59<17:24, 2.93s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13585920204709023, Avg f_macro 0.08012704022524601\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 64%|████████████████████████████████████████████████████████████████▌ | 645/1000 [31:02<16:59, 2.87s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13590696555812834, Avg f_macro 0.08010617142903118\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 65%|████████████████████████████████████████████████████████████████▌ | 646/1000 [31:06<18:45, 3.18s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13589008171051514, Avg f_macro 0.08010124403815508\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 65%|████████████████████████████████████████████████████████████████▋ | 647/1000 [31:08<18:14, 3.10s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13593764984800533, Avg f_macro 0.08013199945695236\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 65%|████████████████████████████████████████████████████████████████▊ | 648/1000 [31:10<15:33, 2.65s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13572786952416582, Avg f_macro 0.08000833896396324\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 65%|████████████████████████████████████████████████████████████████▉ | 649/1000 [31:11<13:04, 2.24s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13551873567281889, Avg f_macro 0.07988505955107578\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 65%|█████████████████████████████████████████████████████████████████ | 650/1000 [31:14<13:56, 2.39s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13531024531024533, Avg f_macro 0.07976215945945873\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 65%|█████████████████████████████████████████████████████████████████ | 651/1000 [31:18<17:10, 2.95s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13532183808681503, Avg f_macro 0.07979324677211702\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 65%|█████████████████████████████████████████████████████████████████▏ | 652/1000 [31:20<15:39, 2.70s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13549772483821562, Avg f_macro 0.07992648821367307\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 65%|█████████████████████████████████████████████████████████████████▎ | 653/1000 [31:21<12:15, 2.12s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13529022449389982, Avg f_macro 0.07980408930369808\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 65%|█████████████████████████████████████████████████████████████████▍ | 654/1000 [31:22<09:18, 1.61s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13508335870721191, Avg f_macro 0.07968206470231627\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 66%|█████████████████████████████████████████████████████████████████▌ | 655/1000 [31:24<10:13, 1.78s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13548781159468182, Avg f_macro 0.07994209208445015\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 66%|█████████████████████████████████████████████████████████████████▌ | 656/1000 [31:26<10:22, 1.81s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1352812752965192, Avg f_macro 0.07982022913919946\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 66%|█████████████████████████████████████████████████████████████████▋ | 657/1000 [31:28<10:52, 1.90s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13537978172681367, Avg f_macro 0.07988899591372123\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 66%|█████████████████████████████████████████████████████████████████▊ | 658/1000 [31:31<12:17, 2.16s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13517403737768477, Avg f_macro 0.07976758406582803\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 66%|█████████████████████████████████████████████████████████████████▉ | 659/1000 [31:32<11:04, 1.95s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13496891744236203, Avg f_macro 0.07964654069091782\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 66%|██████████████████████████████████████████████████████████████████ | 660/1000 [31:36<13:47, 2.43s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13501694433512618, Avg f_macro 0.07966360516094537\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 66%|██████████████████████████████████████████████████████████████████ | 661/1000 [31:40<16:55, 3.00s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13500179010769028, Avg f_macro 0.07965114671354388\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 66%|██████████████████████████████████████████████████████████████████▏ | 662/1000 [31:42<14:55, 2.65s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1351755034156847, Avg f_macro 0.07974662404910823\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 66%|██████████████████████████████████████████████████████████████████▎ | 663/1000 [31:45<15:52, 2.82s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.135223001399472, Avg f_macro 0.07979393096775379\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 66%|██████████████████████████████████████████████████████████████████▍ | 664/1000 [31:46<12:31, 2.24s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1350193523009788, Avg f_macro 0.07967375938497102\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 66%|██████████████████████████████████████████████████████████████████▌ | 665/1000 [31:48<12:18, 2.20s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13511706756067657, Avg f_macro 0.07974191914529438\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 67%|██████████████████████████████████████████████████████████████████▌ | 666/1000 [31:49<10:27, 1.88s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13491418908085573, Avg f_macro 0.0796221865339651\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 67%|██████████████████████████████████████████████████████████████████▋ | 667/1000 [31:52<11:20, 2.04s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13501176900727127, Avg f_macro 0.07966939631593985\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 67%|██████████████████████████████████████████████████████████████████▊ | 668/1000 [31:54<11:42, 2.12s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13480965558061367, Avg f_macro 0.07955013075259262\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 67%|██████████████████████████████████████████████████████████████████▉ | 669/1000 [31:55<10:55, 1.98s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1349818384571748, Avg f_macro 0.07964476006814503\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 67%|███████████████████████████████████████████████████████████████████ | 670/1000 [31:58<11:20, 2.06s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13537738795201482, Avg f_macro 0.07988125331893173\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 67%|███████████████████████████████████████████████████████████████████ | 671/1000 [32:00<12:20, 2.25s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13517563327548424, Avg f_macro 0.07976220525139233\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 67%|███████████████████████████████████████████████████████████████████▏ | 672/1000 [32:03<12:20, 2.26s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13556971715453858, Avg f_macro 0.08001553530310156\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 67%|███████████████████████████████████████████████████████████████████▎ | 673/1000 [32:10<21:21, 3.92s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13549209994232284, Avg f_macro 0.07997093569641048\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 67%|███████████████████████████████████████████████████████████████████▍ | 674/1000 [32:13<18:54, 3.48s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13558780899285353, Avg f_macro 0.0800171377370851\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 68%|███████████████████████████████████████████████████████████████████▌ | 675/1000 [32:15<16:54, 3.12s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13568323446101224, Avg f_macro 0.08006320288282441\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 68%|███████████████████████████████████████████████████████████████████▌ | 676/1000 [32:19<17:19, 3.21s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13569384675153906, Avg f_macro 0.08004338552155789\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 68%|███████████████████████████████████████████████████████████████████▋ | 677/1000 [32:22<16:44, 3.11s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13578883368395925, Avg f_macro 0.08010979115594259\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 68%|███████████████████████████████████████████████████████████████████▊ | 678/1000 [32:23<14:50, 2.77s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13595728673162302, Avg f_macro 0.08020233887231605\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 68%|███████████████████████████████████████████████████████████████████▉ | 679/1000 [32:31<21:47, 4.07s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1358797845911248, Avg f_macro 0.08015435169815807\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 68%|████████████████████████████████████████████████████████████████████ | 680/1000 [32:34<20:14, 3.79s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13592505941770647, Avg f_macro 0.08018353647507255\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 68%|████████████████████████████████████████████████████████████████████ | 681/1000 [32:37<18:44, 3.53s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13597020127857135, Avg f_macro 0.08021263554045423\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 68%|████████████████████████████████████████████████████████████████████▏ | 682/1000 [32:37<14:10, 2.67s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1357708314819752, Avg f_macro 0.08009502170535092\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 68%|████████████████████████████████████████████████████████████████████▎ | 683/1000 [32:39<13:09, 2.49s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13586487126018604, Avg f_macro 0.0801607683792816\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 68%|████████████████████████████████████████████████████████████████████▍ | 684/1000 [32:42<13:04, 2.48s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13595863606828518, Avg f_macro 0.08020601741836322\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 68%|████████████████████████████████████████████████████████████████████▌ | 685/1000 [32:44<11:45, 2.24s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1361251198112512, Avg f_macro 0.08029747891535413\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 69%|████████████████████████████████████████████████████████████████████▌ | 686/1000 [32:49<16:18, 3.12s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13592668669199282, Avg f_macro 0.08018042719681863\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 69%|████████████████████████████████████████████████████████████████████▋ | 687/1000 [32:51<14:16, 2.74s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1357288312528487, Avg f_macro 0.08006371624020027\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 69%|████████████████████████████████████████████████████████████████████▊ | 688/1000 [32:53<13:47, 2.65s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13582224864928352, Avg f_macro 0.08010884326762893\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 69%|████████████████████████████████████████████████████████████████████▉ | 689/1000 [32:58<17:12, 3.32s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13562511911568514, Avg f_macro 0.07999257499002714\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 69%|█████████████████████████████████████████████████████████████████████ | 690/1000 [33:00<15:04, 2.92s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13542856097203923, Avg f_macro 0.07987664372192566\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 69%|█████████████████████████████████████████████████████████████████████ | 691/1000 [33:02<14:01, 2.72s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13552200733821573, Avg f_macro 0.07994194525054805\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 69%|█████████████████████████████████████████████████████████████████████▏ | 692/1000 [33:05<13:34, 2.64s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13532616628714894, Avg f_macro 0.07982642220827847\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 69%|█████████████████████████████████████████████████████████████████████▎ | 693/1000 [33:09<15:33, 3.04s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13513089043392074, Avg f_macro 0.07971123256584228\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 69%|█████████████████████████████████████████████████████████████████████▍ | 694/1000 [33:13<17:14, 3.38s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1349361773353128, Avg f_macro 0.07959637488202984\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 70%|█████████████████████████████████████████████████████████████████████▌ | 695/1000 [33:16<16:48, 3.31s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13474202456216847, Avg f_macro 0.07948184772392619\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 70%|█████████████████████████████████████████████████████████████████████▌ | 696/1000 [33:18<15:09, 2.99s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1345484296992918, Avg f_macro 0.07936764966685159\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 70%|█████████████████████████████████████████████████████████████████████▋ | 697/1000 [33:23<18:14, 3.61s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1343553903453473, Avg f_macro 0.0792537792943023\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 70%|█████████████████████████████████████████████████████████████████████▊ | 698/1000 [33:33<27:50, 5.53s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13426523730964993, Avg f_macro 0.07920535632318516\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 70%|█████████████████████████████████████████████████████████████████████▉ | 699/1000 [33:36<23:25, 4.67s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13407315542508677, Avg f_macro 0.07909204393931794\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 70%|██████████████████████████████████████████████████████████████████████ | 700/1000 [33:41<24:26, 4.89s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13404035250463822, Avg f_macro 0.07906834101940463\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 70%|██████████████████████████████████████████████████████████████████████ | 701/1000 [33:42<18:19, 3.68s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13456240621005244, Avg f_macro 0.07943105855480254\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 70%|██████████████████████████████████████████████████████████████████████▏ | 702/1000 [33:46<18:14, 3.67s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13437072187072188, Avg f_macro 0.07931790889874156\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 70%|██████████████████████████████████████████████████████████████████████▎ | 703/1000 [33:48<15:37, 3.16s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1345352016404648, Avg f_macro 0.07940829187734527\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 70%|██████████████████████████████████████████████████████████████████████▍ | 704/1000 [33:50<14:29, 2.94s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13462819141086185, Avg f_macro 0.07947305282638312\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 70%|██████████████████████████████████████████████████████████████████████▌ | 705/1000 [33:53<13:41, 2.79s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13472091738049186, Avg f_macro 0.07951792950480117\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 71%|██████████████████████████████████████████████████████████████████████▌ | 706/1000 [33:55<12:40, 2.59s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13488420220006622, Avg f_macro 0.07964136964242421\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 71%|██████████████████████████████████████████████████████████████████████▋ | 707/1000 [33:57<11:42, 2.40s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13504702511067432, Avg f_macro 0.07973078374880994\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 71%|██████████████████████████████████████████████████████████████████████▊ | 708/1000 [33:57<09:08, 1.88s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13485628072492478, Avg f_macro 0.07961816964746983\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 71%|██████████████████████████████████████████████████████████████████████▉ | 709/1000 [33:58<07:21, 1.52s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13466607440514353, Avg f_macro 0.07950587321637326\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 71%|███████████████████████████████████████████████████████████████████████ | 710/1000 [34:02<11:11, 2.31s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13447640387781232, Avg f_macro 0.0793938931132516\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 71%|███████████████████████████████████████████████████████████████████████ | 711/1000 [34:05<11:20, 2.36s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13456856083438362, Avg f_macro 0.07943850242126548\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 71%|███████████████████████████████████████████████████████████████████████▏ | 712/1000 [34:07<11:26, 2.38s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13437956004669488, Avg f_macro 0.07932693149089852\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 71%|███████████████████████████████████████████████████████████████████████▎ | 713/1000 [34:09<11:00, 2.30s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13419108941549335, Avg f_macro 0.0792156735224681\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 71%|███████████████████████████████████████████████████████████████████████▍ | 714/1000 [34:12<11:25, 2.40s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1345633708028666, Avg f_macro 0.07950488726503366\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 72%|███████████████████████████████████████████████████████████████████████▌ | 715/1000 [34:14<10:44, 2.26s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1343751702842612, Avg f_macro 0.07939369161850914\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 72%|███████████████████████████████████████████████████████████████████████▌ | 716/1000 [34:16<10:59, 2.32s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1341874954654284, Avg f_macro 0.0792828065743492\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 72%|███████████████████████████████████████████████████████████████████████▋ | 717/1000 [34:19<11:08, 2.36s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13427928417468166, Avg f_macro 0.07932719751512572\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 72%|███████████████████████████████████████████████████████████████████████▊ | 718/1000 [34:21<10:43, 2.28s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13444045508808738, Avg f_macro 0.07944884022982146\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 72%|███████████████████████████████████████████████████████████████████████▉ | 719/1000 [34:24<11:53, 2.54s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1344852759664999, Avg f_macro 0.07947742320585786\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 72%|████████████████████████████████████████████████████████████████████████ | 720/1000 [34:25<10:02, 2.15s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13429849086099085, Avg f_macro 0.07936703789584973\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 72%|████████████████████████████████████████████████████████████████████████ | 721/1000 [34:27<10:04, 2.17s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13480570515938062, Avg f_macro 0.0797192796370945\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 72%|████████████████████████████████████████████████████████████████████████▏ | 722/1000 [34:29<09:32, 2.06s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1349652540442014, Avg f_macro 0.0798067282011112\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 72%|████████████████████████████████████████████████████████████████████████▎ | 723/1000 [34:34<13:26, 2.91s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13477858011053032, Avg f_macro 0.07969634545117882\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 72%|████████████████████████████████████████████████████████████████████████▍ | 724/1000 [34:36<11:25, 2.49s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13505282700724688, Avg f_macro 0.07986251071989267\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 72%|████████████████████████████████████████████████████████████████████████▌ | 725/1000 [34:37<10:28, 2.29s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13555620241827138, Avg f_macro 0.08021212564763534\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 73%|████████████████████████████████████████████████████████████████████████▌ | 726/1000 [34:39<09:10, 2.01s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1353694858860148, Avg f_macro 0.08010164062608212\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 73%|████████████████████████████████████████████████████████████████████████▋ | 727/1000 [34:42<11:04, 2.43s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1351832830168456, Avg f_macro 0.0799914595523186\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 73%|████████████████████████████████████████████████████████████████████████▊ | 728/1000 [34:45<11:17, 2.49s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13499759169402026, Avg f_macro 0.07988158117381267\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 73%|████████████████████████████████████████████████████████████████████████▉ | 729/1000 [34:48<12:49, 2.84s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13500837297133594, Avg f_macro 0.0798343561591086\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 73%|█████████████████████████████████████████████████████████████████████████ | 730/1000 [34:51<13:01, 2.90s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1353713752001423, Avg f_macro 0.08011638345986911\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 73%|█████████████████████████████████████████████████████████████████████████ | 731/1000 [34:53<11:21, 2.53s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13587018316840477, Avg f_macro 0.08055398074651772\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 73%|█████████████████████████████████████████████████████████████████████████▏ | 732/1000 [34:56<11:13, 2.51s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1359577922077922, Avg f_macro 0.08059572546013055\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 73%|█████████████████████████████████████████████████████████████████████████▎ | 733/1000 [34:58<11:07, 2.50s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13577231090873657, Avg f_macro 0.08048577221939368\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 73%|█████████████████████████████████████████████████████████████████████████▍ | 734/1000 [35:01<11:02, 2.49s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13585981457234864, Avg f_macro 0.08052749611434153\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 74%|█████████████████████████████████████████████████████████████████████████▌ | 735/1000 [35:03<11:11, 2.53s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1359470801307536, Avg f_macro 0.08056910647488134\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 74%|█████████████████████████████████████████████████████████████████████████▌ | 736/1000 [35:06<11:39, 2.65s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13598881869941654, Avg f_macro 0.0805502172903593\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 74%|█████████████████████████████████████████████████████████████████████████▋ | 737/1000 [35:08<10:31, 2.40s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13614351501054353, Avg f_macro 0.08063475857335359\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 74%|█████████████████████████████████████████████████████████████████████████▊ | 738/1000 [35:10<10:17, 2.36s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13623004141296824, Avg f_macro 0.08069487407664172\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 74%|█████████████████████████████████████████████████████████████████████████▉ | 739/1000 [35:13<11:17, 2.59s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1362712276447053, Avg f_macro 0.08070869575029863\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 74%|██████████████████████████████████████████████████████████████████████████ | 740/1000 [35:18<14:02, 3.24s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13625599625599624, Avg f_macro 0.08068972003532074\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 74%|██████████████████████████████████████████████████████████████████████████ | 741/1000 [35:21<13:16, 3.08s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1362970362970363, Avg f_macro 0.08070351135903704\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 74%|██████████████████████████████████████████████████████████████████████████▏ | 742/1000 [35:23<12:39, 2.94s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1361133475688732, Avg f_macro 0.08059474651893052\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 74%|██████████████████████████████████████████████████████████████████████████▎ | 743/1000 [35:27<13:44, 3.21s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13615446912889712, Avg f_macro 0.08062086395295619\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 74%|██████████████████████████████████████████████████████████████████████████▍ | 744/1000 [35:28<10:28, 2.45s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1359714658101755, Avg f_macro 0.08051250257667533\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 74%|██████████████████████████████████████████████████████████████████████████▌ | 745/1000 [35:33<13:51, 3.26s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1359380962065526, Avg f_macro 0.08047900331892886\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 75%|██████████████████████████████████████████████████████████████████████████▌ | 746/1000 [35:34<11:12, 2.65s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13620270108205768, Avg f_macro 0.08063921913217426\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 75%|██████████████████████████████████████████████████████████████████████████▋ | 747/1000 [35:37<11:06, 2.64s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13602036814888221, Avg f_macro 0.0805312683702838\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 75%|██████████████████████████████████████████████████████████████████████████▊ | 748/1000 [35:38<09:09, 2.18s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13583852273691846, Avg f_macro 0.08042360624679412\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 75%|██████████████████████████████████████████████████████████████████████████▉ | 749/1000 [35:41<10:17, 2.46s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1358796818075857, Avg f_macro 0.08046457754834861\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 75%|███████████████████████████████████████████████████████████████████████████ | 750/1000 [35:42<08:33, 2.05s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1356985088985089, Avg f_macro 0.08035729144495082\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 75%|███████████████████████████████████████████████████████████████████████████ | 751/1000 [35:45<09:35, 2.31s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13551781847387706, Avg f_macro 0.08025029105687498\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 75%|███████████████████████████████████████████████████████████████████████████▏ | 752/1000 [35:54<18:10, 4.40s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13533760860888522, Avg f_macro 0.08014357524429935\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 75%|███████████████████████████████████████████████████████████████████████████▎ | 753/1000 [35:57<16:08, 3.92s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13542348163862106, Avg f_macro 0.08020314552949949\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 75%|███████████████████████████████████████████████████████████████████████████▍ | 754/1000 [35:58<12:44, 3.11s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1352438748990473, Avg f_macro 0.08009677530996434\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 76%|███████████████████████████████████████████████████████████████████████████▌ | 755/1000 [36:00<10:49, 2.65s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13539586976673068, Avg f_macro 0.08017990162459636\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 76%|███████████████████████████████████████████████████████████████████████████▌ | 756/1000 [36:02<09:44, 2.40s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13521677470090168, Avg f_macro 0.08007384355366436\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 76%|███████████████████████████████████████████████████████████████████████████▋ | 757/1000 [36:04<09:47, 2.42s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1350381528056561, Avg f_macro 0.07996806568899636\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 76%|███████████████████████████████████████████████████████████████████████████▊ | 758/1000 [36:06<09:20, 2.32s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13512385445103123, Avg f_macro 0.0800091515008989\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 76%|███████████████████████████████████████████████████████████████████████████▉ | 759/1000 [36:08<09:03, 2.25s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1352752064214515, Avg f_macro 0.0801233247751621\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 76%|████████████████████████████████████████████████████████████████████████████ | 760/1000 [36:12<10:07, 2.53s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1353165109744057, Avg f_macro 0.08014947829519478\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 76%|████████████████████████████████████████████████████████████████████████████ | 761/1000 [36:15<10:48, 2.71s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13535770697400132, Avg f_macro 0.08017556308061502\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 76%|████████████████████████████████████████████████████████████████████████████▏ | 762/1000 [36:17<10:39, 2.69s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13544253937954726, Avg f_macro 0.08023438780098166\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 76%|████████████████████████████████████████████████████████████████████████████▎ | 763/1000 [36:20<10:54, 2.76s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1357018982182809, Avg f_macro 0.08042047932709076\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 76%|████████████████████████████████████████████████████████████████████████████▍ | 764/1000 [36:23<10:16, 2.61s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1355242779326549, Avg f_macro 0.08031521691959458\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 76%|████████████████████████████████████████████████████████████████████████████▌ | 765/1000 [36:25<09:28, 2.42s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13534712201378868, Avg f_macro 0.08021022970793497\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 77%|████████████████████████████████████████████████████████████████████████████▌ | 766/1000 [36:27<09:14, 2.37s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13543152524875762, Avg f_macro 0.08025057028417931\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 77%|████████████████████████████████████████████████████████████████████████████▋ | 767/1000 [36:35<16:25, 4.23s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1353734777463591, Avg f_macro 0.08020802592607615\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 77%|████████████████████████████████████████████████████████████████████████████▊ | 768/1000 [36:39<15:10, 3.92s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1351972101972102, Avg f_macro 0.08010358839231825\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 77%|████████████████████████████████████████████████████████████████████████████▉ | 769/1000 [36:41<12:51, 3.34s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13534649861047782, Avg f_macro 0.08021615416380636\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 77%|█████████████████████████████████████████████████████████████████████████████ | 770/1000 [36:42<10:18, 2.69s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1351707239369577, Avg f_macro 0.080111977340217\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 77%|█████████████████████████████████████████████████████████████████████████████ | 771/1000 [36:44<09:15, 2.43s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13531965944417307, Avg f_macro 0.08022424023169099\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 77%|█████████████████████████████████████████████████████████████████████████████▏ | 772/1000 [36:45<07:42, 2.03s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1351443749112143, Avg f_macro 0.08012032282206444\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 77%|█████████████████████████████████████████████████████████████████████████████▎ | 773/1000 [36:46<06:47, 1.80s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13496954389580523, Avg f_macro 0.08001667428025065\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 77%|█████████████████████████████████████████████████████████████████████████████▍ | 774/1000 [36:54<14:20, 3.81s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13491261824595158, Avg f_macro 0.07998929295613115\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 78%|█████████████████████████████████████████████████████████████████████████████▌ | 775/1000 [36:56<11:56, 3.19s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13473853744821487, Avg f_macro 0.07988608096522001\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 78%|█████████████████████████████████████████████████████████████████████████████▌ | 776/1000 [36:58<09:53, 2.65s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.134564905312328, Avg f_macro 0.07978313498459473\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 78%|█████████████████████████████████████████████████████████████████████████████▋ | 777/1000 [36:59<08:17, 2.23s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13439172010600584, Avg f_macro 0.07968045398718855\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 78%|█████████████████████████████████████████████████████████████████████████████▊ | 778/1000 [37:00<07:31, 2.03s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13486165362772048, Avg f_macro 0.08000648596578258\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 78%|█████████████████████████████████████████████████████████████████████████████▉ | 779/1000 [37:02<06:37, 1.80s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13468853212113804, Avg f_macro 0.07990378187596772\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 78%|██████████████████████████████████████████████████████████████████████████████ | 780/1000 [37:04<06:52, 1.88s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13451585451585452, Avg f_macro 0.07980134112997289\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 78%|██████████████████████████████████████████████████████████████████████████████ | 781/1000 [37:06<07:40, 2.10s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1345997010529661, Avg f_macro 0.07984143046413567\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 78%|██████████████████████████████████████████████████████████████████████████████▏ | 782/1000 [37:09<07:48, 2.15s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1346833331488063, Avg f_macro 0.07989917799551145\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 78%|██████████████████████████████████████████████████████████████████████████████▎ | 783/1000 [37:11<08:07, 2.25s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13451132378335443, Avg f_macro 0.07979713562259254\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 78%|██████████████████████████████████████████████████████████████████████████████▍ | 784/1000 [37:13<07:27, 2.07s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13433975321730426, Avg f_macro 0.07969535356184944\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 78%|██████████████████████████████████████████████████████████████████████████████▌ | 785/1000 [37:17<10:14, 2.86s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13416861977371533, Avg f_macro 0.07959383081845854\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 79%|██████████████████████████████████████████████████████████████████████████████▌ | 786/1000 [37:20<09:23, 2.63s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13399792178418135, Avg f_macro 0.07949256640265898\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 79%|██████████████████████████████████████████████████████████████████████████████▋ | 787/1000 [37:22<09:19, 2.63s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13433591680097398, Avg f_macro 0.07970922133734429\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 79%|██████████████████████████████████████████████████████████████████████████████▊ | 788/1000 [37:24<08:43, 2.47s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1341654397491961, Avg f_macro 0.07960806750315985\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 79%|██████████████████████████████████████████████████████████████████████████████▉ | 789/1000 [37:26<08:09, 2.32s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13399539483189674, Avg f_macro 0.07950717007920147\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 79%|███████████████████████████████████████████████████████████████████████████████ | 790/1000 [37:28<07:44, 2.21s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13445869180046396, Avg f_macro 0.07982846902002948\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 79%|███████████████████████████████████████████████████████████████████████████████ | 791/1000 [37:31<08:51, 2.55s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13449940984707104, Avg f_macro 0.07984247739157065\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 79%|███████████████████████████████████████████████████████████████████████████████▏ | 792/1000 [37:35<09:44, 2.81s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13450996254026557, Avg f_macro 0.07983879127986801\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 79%|███████████████████████████████████████████████████████████████████████████████▎ | 793/1000 [37:37<09:19, 2.70s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13434034089771796, Avg f_macro 0.07973811184571937\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 79%|███████████████████████████████████████████████████████████████████████████████▍ | 794/1000 [37:44<13:39, 3.98s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13429709109809865, Avg f_macro 0.07970397263551993\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 80%|███████████████████████████████████████████████████████████████████████████████▌ | 795/1000 [37:46<11:15, 3.29s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1341281639394847, Avg f_macro 0.07960371606616706\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 80%|███████████████████████████████████████████████████████████████████████████████▌ | 796/1000 [37:49<11:21, 3.34s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13413912999340136, Avg f_macro 0.07960034842905264\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 80%|███████████████████████████████████████████████████████████████████████████████▋ | 797/1000 [37:53<11:09, 3.30s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13422176596580612, Avg f_macro 0.07967971705443291\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 80%|███████████████████████████████████████████████████████████████████████████████▊ | 798/1000 [37:55<10:14, 3.04s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13455482139692668, Avg f_macro 0.0798931509929612\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 80%|███████████████████████████████████████████████████████████████████████████████▉ | 799/1000 [37:57<08:49, 2.64s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1343864173651408, Avg f_macro 0.07979315956493496\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 80%|████████████████████████████████████████████████████████████████████████████████ | 800/1000 [38:00<09:48, 2.94s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13439700577200578, Avg f_macro 0.07980705447911517\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 80%|████████████████████████████████████████████████████████████████████████████████ | 801/1000 [38:03<08:53, 2.68s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13447890713808316, Avg f_macro 0.07984613569838107\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 80%|████████████████████████████████████████████████████████████████████████████████▏ | 802/1000 [38:05<09:05, 2.75s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1343112277027489, Avg f_macro 0.07974657692568983\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 80%|████████████████████████████████████████████████████████████████████████████████▎ | 803/1000 [38:11<11:26, 3.48s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13414396589988123, Avg f_macro 0.07964726612005385\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 80%|████████████████████████████████████████████████████████████████████████████████▍ | 804/1000 [38:14<11:02, 3.38s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1341844170202379, Avg f_macro 0.07967258046567567\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 80%|████████████████████████████████████████████████████████████████████████████████▌ | 805/1000 [38:16<10:16, 3.16s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13426617550841152, Avg f_macro 0.07967712798476594\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 81%|████████████████████████████████████████████████████████████████████████████████▌ | 806/1000 [38:19<09:49, 3.04s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1340995921641083, Avg f_macro 0.07957827298726623\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 81%|████████████████████████████████████████████████████████████████████████████████▋ | 807/1000 [38:21<08:35, 2.67s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13424321100901027, Avg f_macro 0.07968618921239559\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 81%|████████████████████████████████████████████████████████████████████████████████▊ | 808/1000 [38:27<11:43, 3.66s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13418957967225295, Avg f_macro 0.07964944887921194\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 81%|████████████████████████████████████████████████████████████████████████████████▉ | 809/1000 [38:28<09:20, 2.93s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1340237087455876, Avg f_macro 0.07955099467787793\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 81%|█████████████████████████████████████████████████████████████████████████████████ | 810/1000 [38:32<10:27, 3.30s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13385824737676588, Avg f_macro 0.07945278357333735\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 81%|█████████████████████████████████████████████████████████████████████████████████ | 811/1000 [38:33<07:41, 2.44s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1336931940507773, Avg f_macro 0.07935481466634187\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 81%|█████████████████████████████████████████████████████████████████████████████████▏ | 812/1000 [38:35<07:48, 2.49s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13377485267879358, Avg f_macro 0.07939392340580585\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 81%|█████████████████████████████████████████████████████████████████████████████████▎ | 813/1000 [38:36<06:18, 2.02s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1336103079645515, Avg f_macro 0.07929626790346168\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 81%|█████████████████████████████████████████████████████████████████████████████████▍ | 814/1000 [38:40<07:46, 2.51s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1336216677125768, Avg f_macro 0.0792671024091768\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 82%|█████████████████████████████████████████████████████████████████████████████████▌ | 815/1000 [38:42<07:40, 2.49s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1334577147460583, Avg f_macro 0.07916984216082197\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 82%|█████████████████████████████████████████████████████████████████████████████████▌ | 816/1000 [38:45<07:35, 2.48s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13353926166426167, Avg f_macro 0.07920898587277088\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 82%|█████████████████████████████████████████████████████████████████████████████████▋ | 817/1000 [38:51<10:43, 3.52s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13349820993639844, Avg f_macro 0.07916303444167404\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 82%|█████████████████████████████████████████████████████████████████████████████████▊ | 818/1000 [38:55<11:43, 3.87s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13333500919075492, Avg f_macro 0.07906625811595072\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 82%|█████████████████████████████████████████████████████████████████████████████████▉ | 819/1000 [38:58<10:03, 3.33s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1334774572869811, Avg f_macro 0.07914414686410846\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 82%|██████████████████████████████████████████████████████████████████████████████████ | 820/1000 [39:02<11:16, 3.76s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13346711892443602, Avg f_macro 0.07913473762577246\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 82%|██████████████████████████████████████████████████████████████████████████████████ | 821/1000 [39:05<10:02, 3.36s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13379176311575824, Avg f_macro 0.07934285609395057\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 82%|██████████████████████████████████████████████████████████████████████████████████▏ | 822/1000 [39:07<09:19, 3.14s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13362899941367096, Avg f_macro 0.07924633193811852\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 82%|██████████████████████████████████████████████████████████████████████████████████▎ | 823/1000 [39:09<07:57, 2.70s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1334666312491343, Avg f_macro 0.07915004234888628\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 82%|██████████████████████████████████████████████████████████████████████████████████▍ | 824/1000 [39:10<06:15, 2.14s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1333046571820844, Avg f_macro 0.07905398647224929\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 82%|██████████████████████████████████████████████████████████████████████████████████▌ | 825/1000 [39:12<06:32, 2.24s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13338550002186367, Avg f_macro 0.07910967860985868\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 83%|██████████████████████████████████████████████████████████████████████████████████▌ | 826/1000 [39:15<06:52, 2.37s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13346614711626817, Avg f_macro 0.07916523589967726\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 83%|██████████████████████████████████████████████████████████████████████████████████▋ | 827/1000 [39:16<05:27, 1.89s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1333047612068168, Avg f_macro 0.07906951010052408\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 83%|██████████████████████████████████████████████████████████████████████████████████▊ | 828/1000 [39:19<06:07, 2.14s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13334505336316932, Avg f_macro 0.07906347696522643\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 83%|██████████████████████████████████████████████████████████████████████████████████▉ | 829/1000 [39:20<05:38, 1.98s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13318420287660337, Avg f_macro 0.07896810485791013\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 83%|███████████████████████████████████████████████████████████████████████████████████ | 830/1000 [39:25<08:18, 2.93s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13302373998157133, Avg f_macro 0.07887296256290059\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 83%|███████████████████████████████████████████████████████████████████████████████████ | 831/1000 [39:27<07:18, 2.59s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13286366327882576, Avg f_macro 0.07877804925055053\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 83%|███████████████████████████████████████████████████████████████████████████████████▏ | 832/1000 [39:28<06:08, 2.19s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13270397137584639, Avg f_macro 0.0786833640952013\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 83%|███████████████████████████████████████████████████████████████████████████████████▎ | 833/1000 [39:30<05:39, 2.03s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13284478293481897, Avg f_macro 0.07876040344545573\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 83%|███████████████████████████████████████████████████████████████████████████████████▍ | 834/1000 [39:33<06:06, 2.21s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13292530477782277, Avg f_macro 0.07879919326280063\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 84%|███████████████████████████████████████████████████████████████████████████████████▌ | 835/1000 [39:35<06:06, 2.22s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13300563375413677, Avg f_macro 0.07885452357027034\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 84%|███████████████████████████████████████████████████████████████████████████████████▌ | 836/1000 [39:38<06:50, 2.50s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1330458981475728, Avg f_macro 0.0788931080051278\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 84%|███████████████████████████████████████████████████████████████████████████████████▋ | 837/1000 [39:39<05:21, 1.98s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1328869424747561, Avg f_macro 0.07879885100631642\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 84%|███████████████████████████████████████████████████████████████████████████████████▊ | 838/1000 [39:44<07:52, 2.92s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13272836617108694, Avg f_macro 0.07870481896454277\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 84%|███████████████████████████████████████████████████████████████████████████████████▉ | 839/1000 [39:46<07:27, 2.78s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1328085469027066, Avg f_macro 0.07875999796458504\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 84%|████████████████████████████████████████████████████████████████████████████████████ | 840/1000 [39:48<06:22, 2.39s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1330472668865526, Avg f_macro 0.07890433130034148\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 84%|████████████████████████████████████████████████████████████████████████████████████ | 841/1000 [39:49<05:27, 2.06s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1328890656179598, Avg f_macro 0.07881050926550161\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 84%|████████████████████████████████████████████████████████████████████████████████████▏ | 842/1000 [39:52<06:15, 2.38s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1329291815336946, Avg f_macro 0.0788248781273111\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 84%|████████████████████████████████████████████████████████████████████████████████████▎ | 843/1000 [39:55<06:07, 2.34s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13300874359593223, Avg f_macro 0.07883022623550329\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 84%|████████████████████████████████████████████████████████████████████████████████████▍ | 844/1000 [39:56<05:29, 2.11s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1328511502978328, Avg f_macro 0.0787368254935181\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 84%|████████████████████████████████████████████████████████████████████████████████████▌ | 845/1000 [39:59<06:06, 2.36s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13289116866039943, Avg f_macro 0.07875123054134718\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 85%|████████████████████████████████████████████████████████████████████████████████████▌ | 846/1000 [40:02<06:16, 2.45s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13297049352013893, Avg f_macro 0.07878948099119323\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 85%|████████████████████████████████████████████████████████████████████████████████████▋ | 847/1000 [40:04<06:15, 2.45s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1330496310720632, Avg f_macro 0.07884403886487541\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 85%|████████████████████████████████████████████████████████████████████████████████████▊ | 848/1000 [40:06<06:04, 2.40s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13312858197881783, Avg f_macro 0.0788984680643272\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 85%|████████████████████████████████████████████████████████████████████████████████████▉ | 849/1000 [40:08<05:28, 2.18s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13297177563962015, Avg f_macro 0.07880553700653647\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 85%|█████████████████████████████████████████████████████████████████████████████████████ | 850/1000 [40:10<05:16, 2.11s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13281533825651473, Avg f_macro 0.07871282461005819\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 85%|█████████████████████████████████████████████████████████████████████████████████████ | 851/1000 [40:12<05:02, 2.03s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13265926852883375, Avg f_macro 0.07862033010405342\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 85%|█████████████████████████████████████████████████████████████████████████████████████▏ | 852/1000 [40:14<05:18, 2.16s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13273830694605343, Avg f_macro 0.07865846482354528\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 85%|█████████████████████████████████████████████████████████████████████████████████████▎ | 853/1000 [40:17<05:38, 2.30s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1325826934560815, Avg f_macro 0.07856625091402178\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 85%|█████████████████████████████████████████████████████████████████████████████████████▍ | 854/1000 [40:20<05:50, 2.40s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13266163643798304, Avg f_macro 0.07860435964961557\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 86%|█████████████████████████████████████████████████████████████████████████████████████▌ | 855/1000 [40:22<05:33, 2.30s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1327403947579386, Avg f_macro 0.0786423792419682\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 86%|█████████████████████████████████████████████████████████████████████████████████████▌ | 856/1000 [40:24<05:49, 2.42s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13297473230300333, Avg f_macro 0.07866732973350794\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 86%|█████████████████████████████████████████████████████████████████████████████████████▋ | 857/1000 [40:30<08:22, 3.52s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13281956925480845, Avg f_macro 0.07857553588317713\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 86%|█████████████████████████████████████████████████████████████████████████████████████▊ | 858/1000 [40:34<08:05, 3.42s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.133053268280541, Avg f_macro 0.07869978955369229\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 86%|█████████████████████████████████████████████████████████████████████████████████████▉ | 859/1000 [40:35<06:31, 2.78s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1328983750695043, Avg f_macro 0.07860817163803026\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 86%|██████████████████████████████████████████████████████████████████████████████████████ | 860/1000 [40:37<06:00, 2.57s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13303453974965604, Avg f_macro 0.07868287974409899\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 86%|██████████████████████████████████████████████████████████████████████████████████████ | 861/1000 [40:39<05:38, 2.43s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13317038813554494, Avg f_macro 0.07875741431217453\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 86%|██████████████████████████████████████████████████████████████████████████████████████▏ | 862/1000 [40:41<05:28, 2.38s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13324791668759187, Avg f_macro 0.07876272280291834\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 86%|██████████████████████████████████████████████████████████████████████████████████████▎ | 863/1000 [40:46<06:42, 2.94s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13325905136449748, Avg f_macro 0.07876801899125023\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 86%|██████████████████████████████████████████████████████████████████████████████████████▍ | 864/1000 [40:47<05:53, 2.60s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13310481635134414, Avg f_macro 0.07867685230260293\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 86%|██████████████████████████████████████████████████████████████████████████████████████▌ | 865/1000 [40:49<05:19, 2.36s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13295093795093796, Avg f_macro 0.07858589640398721\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 87%|██████████████████████████████████████████████████████████████████████████████████████▌ | 866/1000 [40:52<05:27, 2.44s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.133028361810117, Avg f_macro 0.07866011262391004\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 87%|██████████████████████████████████████████████████████████████████████████████████████▋ | 867/1000 [40:55<06:12, 2.80s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13303969835111704, Avg f_macro 0.07865810912252498\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 87%|██████████████████████████████████████████████████████████████████████████████████████▊ | 868/1000 [40:57<05:24, 2.46s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13317444524241762, Avg f_macro 0.07873207114295656\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 87%|██████████████████████████████████████████████████████████████████████████████████████▉ | 869/1000 [41:00<05:49, 2.67s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1330211950177428, Avg f_macro 0.07864147037064016\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 87%|███████████████████████████████████████████████████████████████████████████████████████ | 870/1000 [41:03<06:05, 2.81s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13286829709243503, Avg f_macro 0.07855107787596126\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 87%|███████████████████████████████████████████████████████████████████████████████████████ | 871/1000 [41:06<06:06, 2.84s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13294537137820722, Avg f_macro 0.07858846023329209\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 87%|███████████████████████████████████████████████████████████████████████████████████████▏ | 872/1000 [41:08<05:18, 2.49s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13307960833763588, Avg f_macro 0.07866216285098\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 87%|███████████████████████████████████████████████████████████████████████████████████████▎ | 873/1000 [41:10<05:14, 2.48s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13315626399818842, Avg f_macro 0.07869933232206834\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 87%|███████████████████████████████████████████████████████████████████████████████████████▍ | 874/1000 [41:13<05:30, 2.63s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13300391129338499, Avg f_macro 0.07860928731941151\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 88%|███████████████████████████████████████████████████████████████████████████████████████▌ | 875/1000 [41:15<04:52, 2.34s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1331376211090497, Avg f_macro 0.07868271344002607\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 88%|███████████████████████████████████████████████████████████████████████████████████████▌ | 876/1000 [41:16<03:57, 1.92s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13298563752330878, Avg f_macro 0.07859289299089363\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 88%|███████████████████████████████████████████████████████████████████████████████████████▋ | 877/1000 [41:19<04:21, 2.13s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13306205070743268, Avg f_macro 0.07862997191691438\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 88%|███████████████████████████████████████████████████████████████████████████████████████▊ | 878/1000 [41:23<05:43, 2.82s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13291049939683197, Avg f_macro 0.07854041614024364\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 88%|███████████████████████████████████████████████████████████████████████████████████████▉ | 879/1000 [41:26<05:45, 2.85s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13275929291287653, Avg f_macro 0.07845106413098284\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 88%|████████████████████████████████████████████████████████████████████████████████████████ | 880/1000 [41:29<05:45, 2.88s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13279782401941492, Avg f_macro 0.07843767277022794\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 88%|████████████████████████████████████████████████████████████████████████████████████████ | 881/1000 [41:32<06:00, 3.03s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13280924208847025, Avg f_macro 0.07843595359219487\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 88%|████████████████████████████████████████████████████████████████████████████████████████▏ | 882/1000 [41:34<05:02, 2.57s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13265866471648785, Avg f_macro 0.078347023939596\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 88%|████████████████████████████████████████████████████████████████████████████████████████▎ | 883/1000 [41:38<05:38, 2.89s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13267021452185665, Avg f_macro 0.07835267094910191\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 88%|████████████████████████████████████████████████████████████████████████████████████████▍ | 884/1000 [41:44<07:33, 3.91s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1325201350936645, Avg f_macro 0.07826403670594682\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 88%|████████████████████████████████████████████████████████████████████████████████████████▌ | 885/1000 [41:46<06:17, 3.28s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13265288070372816, Avg f_macro 0.07833702326656965\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 89%|████████████████████████████████████████████████████████████████████████████████████████▌ | 886/1000 [41:46<04:47, 2.52s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13250315961941245, Avg f_macro 0.07824860676175412\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 89%|████████████████████████████████████████████████████████████████████████████████████████▋ | 887/1000 [41:48<04:31, 2.40s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13263562505388887, Avg f_macro 0.07838586876089532\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 89%|████████████████████████████████████████████████████████████████████████████████████████▊ | 888/1000 [41:50<03:58, 2.13s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13248626061126062, Avg f_macro 0.07829759638616458\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 89%|████████████████████████████████████████████████████████████████████████████████████████▉ | 889/1000 [41:54<05:11, 2.81s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1323372321966248, Avg f_macro 0.07820952259945348\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 89%|█████████████████████████████████████████████████████████████████████████████████████████ | 890/1000 [41:55<04:06, 2.25s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13218853867730274, Avg f_macro 0.07812164673136421\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 89%|█████████████████████████████████████████████████████████████████████████████████████████ | 891/1000 [41:57<03:55, 2.16s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13204017892570083, Avg f_macro 0.07803396811550409\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 89%|█████████████████████████████████████████████████████████████████████████████████████████▏ | 892/1000 [41:59<03:44, 2.08s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13217242087757786, Avg f_macro 0.07810663983606646\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 89%|█████████████████████████████████████████████████████████████████████████████████████████▎ | 893/1000 [42:00<03:16, 1.84s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13202441144770374, Avg f_macro 0.07801917439392081\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 89%|██████████████████████████████████████████████████████████████████████████████████████▋ | 894/1000 [57:12<8:05:19, 274.71s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1318767331351224, Avg f_macro 0.07793190462390524\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 90%|██████████████████████████████████████████████████████████████████████████████████████▊ | 895/1000 [57:17<5:39:27, 193.97s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13185353132280508, Avg f_macro 0.07791931776585245\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 90%|██████████████████████████████████████████████████████████████████████████████████████▉ | 896/1000 [57:20<3:56:50, 136.64s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13192958764945373, Avg f_macro 0.07797186317013163\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 90%|███████████████████████████████████████████████████████████████████████████████████████▉ | 897/1000 [57:25<2:46:29, 96.99s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13178250895642202, Avg f_macro 0.07788493801609582\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 90%|████████████████████████████████████████████████████████████████████████████████████████ | 898/1000 [57:27<1:56:41, 68.64s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13163575783286252, Avg f_macro 0.07779820645928502\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 90%|████████████████████████████████████████████████████████████████████████████████████████ | 899/1000 [57:31<1:22:57, 49.28s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13148933318566244, Avg f_macro 0.07771166785365734\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 90%|██████████████████████████████████████████████████████████████████████████████████████████ | 900/1000 [57:35<59:29, 35.70s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13150196408529743, Avg f_macro 0.07768704995110391\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 90%|██████████████████████████████████████████████████████████████████████████████████████████ | 901/1000 [57:37<41:48, 25.34s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13135601295978655, Avg f_macro 0.07760082681020368\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 90%|██████████████████████████████████████████████████████████████████████████████████████████▏ | 902/1000 [57:38<29:34, 18.11s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13121038545096195, Avg f_macro 0.07751479485143406\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 90%|██████████████████████████████████████████████████████████████████████████████████████████▎ | 903/1000 [57:41<22:08, 13.69s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13122328329969526, Avg f_macro 0.0774904767569757\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 90%|██████████████████████████████████████████████████████████████████████████████████████████▍ | 904/1000 [57:43<16:20, 10.22s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13107812480046993, Avg f_macro 0.07740475720304099\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 90%|██████████████████████████████████████████████████████████████████████████████████████████▌ | 905/1000 [57:49<13:53, 8.78s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13117883651032822, Avg f_macro 0.07743822410965896\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 91%|██████████████████████████████████████████████████████████████████████████████████████████▌ | 906/1000 [57:51<10:46, 6.87s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13125479805943382, Avg f_macro 0.07747539065160318\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 91%|██████████████████████████████████████████████████████████████████████████████████████████▋ | 907/1000 [57:55<09:12, 5.94s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13129384091346605, Avg f_macro 0.07750022484052092\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 91%|██████████████████████████████████████████████████████████████████████████████████████████▊ | 908/1000 [57:58<07:38, 4.99s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13136950848955253, Avg f_macro 0.07753724123509206\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 91%|██████████████████████████████████████████████████████████████████████████████████████████▉ | 909/1000 [58:01<06:51, 4.52s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1312249875781229, Avg f_macro 0.07745194173978392\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 91%|███████████████████████████████████████████████████████████████████████████████████████████ | 910/1000 [58:03<05:36, 3.74s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13135550956979528, Avg f_macro 0.07752381558716565\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 91%|███████████████████████████████████████████████████████████████████████████████████████████ | 911/1000 [58:16<09:41, 6.53s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13148574501483393, Avg f_macro 0.07752653368202057\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 91%|███████████████████████████████████████████████████████████████████████████████████████████▏ | 912/1000 [58:18<07:24, 5.05s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13134157204880892, Avg f_macro 0.07744152651789554\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 91%|███████████████████████████████████████████████████████████████████████████████████████████▎ | 913/1000 [58:22<07:01, 4.85s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13135418494126053, Avg f_macro 0.07742972491893473\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 91%|██████████████████████████████████████████████████████████████████████████████████████▊ | 914/1000 [1:15:12<7:19:08, 306.38s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1317575173428565, Avg f_macro 0.07770970698503364\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 92%|██████████████████████████████████████████████████████████████████████████████████████▉ | 915/1000 [1:15:15<5:04:54, 215.22s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1318320992911157, Avg f_macro 0.07774621125183809\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 92%|███████████████████████████████████████████████████████████████████████████████████████ | 916/1000 [1:15:18<3:32:17, 151.64s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13168817778533937, Avg f_macro 0.07766133547536228\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 92%|███████████████████████████████████████████████████████████████████████████████████████ | 917/1000 [1:15:20<2:27:35, 106.69s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1318171983112005, Avg f_macro 0.07773243232092585\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 92%|████████████████████████████████████████████████████████████████████████████████████████▏ | 918/1000 [1:15:23<1:43:33, 75.77s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1318292243945839, Avg f_macro 0.07773853352028576\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 92%|████████████████████████████████████████████████████████████████████████████████████████▏ | 919/1000 [1:15:26<1:12:35, 53.78s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1316857758370272, Avg f_macro 0.07765394316825062\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 92%|██████████████████████████████████████████████████████████████████████████████████████████▏ | 920/1000 [1:15:31<52:18, 39.24s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13166341207102078, Avg f_macro 0.07765314874841892\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 92%|██████████████████████████████████████████████████████████████████████████████████████████▎ | 921/1000 [1:15:36<38:02, 28.89s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1319276211784355, Avg f_macro 0.07774650728792808\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 92%|██████████████████████████████████████████████████████████████████████████████████████████▎ | 922/1000 [1:15:40<27:50, 21.42s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13193947532342326, Avg f_macro 0.07775256675218559\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 92%|██████████████████████████████████████████████████████████████████████████████████████████▍ | 923/1000 [1:15:42<19:56, 15.53s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13179652897962757, Avg f_macro 0.07766832778495678\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 92%|██████████████████████████████████████████████████████████████████████████████████████████▌ | 924/1000 [1:15:44<14:36, 11.54s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13165389204350245, Avg f_macro 0.07758427115315487\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 92%|██████████████████████████████████████████████████████████████████████████████████████████▋ | 925/1000 [1:15:49<12:05, 9.68s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1315115635115635, Avg f_macro 0.07750039626542174\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 93%|██████████████████████████████████████████████████████████████████████████████████████████▋ | 926/1000 [1:15:54<10:19, 8.37s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13148953278542913, Avg f_macro 0.07748869677341444\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 93%|████████████████████████████████████████████████████████████████████████████████████████ | 927/1000 [1:32:31<6:11:02, 304.96s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13146754959052695, Avg f_macro 0.0774770225230296\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 93%|████████████████████████████████████████████████████████████████████████████████████████▏ | 928/1000 [1:32:33<4:16:44, 213.95s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13132588197243372, Avg f_macro 0.07739353435220736\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 93%|████████████████████████████████████████████████████████████████████████████████████████▎ | 929/1000 [1:32:36<2:58:08, 150.54s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13139980459679063, Avg f_macro 0.07742982883741609\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 93%|████████████████████████████████████████████████████████████████████████████████████████▎ | 930/1000 [1:32:37<2:03:23, 105.77s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13125851448432097, Avg f_macro 0.07734657095694575\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 93%|█████████████████████████████████████████████████████████████████████████████████████████▍ | 931/1000 [1:32:41<1:26:27, 75.18s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1312709727317676, Avg f_macro 0.07736113864754957\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 93%|█████████████████████████████████████████████████████████████████████████████████████████▍ | 932/1000 [1:32:44<1:00:37, 53.50s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.131130124048579, Avg f_macro 0.07727813313397923\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 93%|███████████████████████████████████████████████████████████████████████████████████████████▍ | 933/1000 [1:32:45<42:22, 37.95s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1312575301321282, Avg f_macro 0.07734842146165678\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 93%|███████████████████████████████████████████████████████████████████████████████████████████▌ | 934/1000 [1:32:48<30:04, 27.34s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1313311302069332, Avg f_macro 0.07739944028236165\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 94%|███████████████████████████████████████████████████████████████████████████████████████████▋ | 935/1000 [1:32:50<21:19, 19.68s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13172542846339638, Avg f_macro 0.07767316637118622\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 94%|███████████████████████████████████████████████████████████████████████████████████████████▋ | 936/1000 [1:32:51<15:11, 14.25s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1315846961680295, Avg f_macro 0.07759018221908026\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 94%|███████████████████████████████████████████████████████████████████████████████████████████▊ | 937/1000 [1:32:57<12:09, 11.58s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1316814277860169, Avg f_macro 0.0775621052383577\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 94%|███████████████████████████████████████████████████████████████████████████████████████████▉ | 938/1000 [1:33:00<09:23, 9.08s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1315410424685478, Avg f_macro 0.07747941642680295\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 94%|████████████████████████████████████████████████████████████████████████████████████████████ | 939/1000 [1:33:03<07:24, 7.29s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13140095616133957, Avg f_macro 0.07739690373625258\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 94%|████████████████████████████████████████████████████████████████████████████████████████████ | 940/1000 [1:33:04<05:27, 5.46s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1312611679101041, Avg f_macro 0.07731456660461826\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 94%|████████████████████████████████████████████████████████████████████████████████████████████▏ | 941/1000 [1:33:07<04:36, 4.69s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1312987933072949, Avg f_macro 0.07730325108927506\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 94%|████████████████████████████████████████████████████████████████████████████████████████████▎ | 942/1000 [1:33:10<04:04, 4.22s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1311594102995377, Avg f_macro 0.07722118819002954\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 94%|████████████████████████████████████████████████████████████████████████████████████████████▍ | 943/1000 [1:33:13<03:32, 3.73s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1310203229079157, Avg f_macro 0.07713929933722993\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 94%|████████████████████████████████████████████████████████████████████████████████████████████▌ | 944/1000 [1:33:15<02:56, 3.15s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13088153019297089, Avg f_macro 0.07705758397776254\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 94%|████████████████████████████████████████████████████████████████████████████████████████████▌ | 945/1000 [1:33:16<02:25, 2.64s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1307430312192217, Avg f_macro 0.07697604156085484\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 95%|█████████████████████████████████████████████████████████████████████████████████████████▊ | 946/1000 [1:49:09<4:18:58, 287.75s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1306048250551422, Avg f_macro 0.07689467153806324\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 95%|█████████████████████████████████████████████████████████████████████████████████████████▉ | 947/1000 [1:49:11<2:58:21, 201.92s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13073090232541132, Avg f_macro 0.07696432567884368\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 95%|██████████████████████████████████████████████████████████████████████████████████████████ | 948/1000 [1:49:12<2:02:52, 141.78s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1305930005297094, Avg f_macro 0.07688313968129216\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 95%|███████████████████████████████████████████████████████████████████████████████████████████ | 949/1000 [1:49:14<1:24:56, 99.92s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13045538935949896, Avg f_macro 0.07680212478173337\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 95%|█████████████████████████████████████████████████████████████████████████████████████████████ | 950/1000 [1:49:15<58:27, 70.16s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13031806789701528, Avg f_macro 0.07672128043985786\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 95%|█████████████████████████████████████████████████████████████████████████████████████████████▏ | 951/1000 [1:49:16<40:27, 49.54s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13018103522835386, Avg f_macro 0.07664060611762878\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 95%|█████████████████████████████████████████████████████████████████████████████████████████████▎ | 952/1000 [1:49:22<29:07, 36.40s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13004429044345012, Avg f_macro 0.07656010127926992\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 95%|█████████████████████████████████████████████████████████████████████████████████████████████▍ | 953/1000 [1:49:27<21:09, 27.02s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1299078326360593, Avg f_macro 0.0764797653912539\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 95%|█████████████████████████████████████████████████████████████████████████████████████████████▍ | 954/1000 [1:49:31<15:26, 20.15s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.12977166090373637, Avg f_macro 0.07639959792229033\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 96%|█████████████████████████████████████████████████████████████████████████████████████████████▌ | 955/1000 [1:49:35<11:28, 15.30s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.12978536297908028, Avg f_macro 0.07640014606784089\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 96%|█████████████████████████████████████████████████████████████████████████████████████████████▋ | 956/1000 [1:49:37<08:07, 11.07s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1296496042311942, Avg f_macro 0.07632022959705863\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 96%|█████████████████████████████████████████████████████████████████████████████████████████████▊ | 957/1000 [1:49:41<06:24, 8.95s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.12966340521199457, Avg f_macro 0.07629853192303407\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 96%|█████████████████████████████████████████████████████████████████████████████████████████████▉ | 958/1000 [1:49:46<05:30, 7.87s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.12964403956053228, Avg f_macro 0.07626238175053265\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 96%|█████████████████████████████████████████████████████████████████████████████████████████████▉ | 959/1000 [1:49:48<04:13, 6.18s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1297174034400312, Avg f_macro 0.07633182362864173\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 96%|██████████████████████████████████████████████████████████████████████████████████████████████ | 960/1000 [1:49:50<03:18, 4.95s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.12984269781144783, Avg f_macro 0.07640112083617141\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 96%|██████████████████████████████████████████████████████████████████████████████████████████████▏ | 961/1000 [1:49:53<02:51, 4.41s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.12988101619735337, Avg f_macro 0.07641621757922336\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 96%|████████████████████████████████████████████████████████████████████████████████████████████▎ | 962/1000 [1:55:02<1:00:36, 95.69s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.12974600474600476, Avg f_macro 0.07633678284161502\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 96%|██████████████████████████████████████████████████████████████████████████████████████████████▎ | 963/1000 [1:55:05<41:46, 67.73s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1296112736922706, Avg f_macro 0.07625751307750119\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 96%|██████████████████████████████████████████████████████████████████████████████████████████████▍ | 964/1000 [1:55:08<29:03, 48.44s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.12964971289660088, Avg f_macro 0.07628214221331292\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 96%|██████████████████████████████████████████████████████████████████████████████████████████████▌ | 965/1000 [1:55:12<20:28, 35.09s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.12966339935251853, Avg f_macro 0.07628944914711605\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 97%|██████████████████████████████████████████████████████████████████████████████████████████████▋ | 966/1000 [1:55:13<14:08, 24.94s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.12952917223103558, Avg f_macro 0.07621047456207762\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 97%|██████████████████████████████████████████████████████████████████████████████████████████████▊ | 967/1000 [1:55:17<10:11, 18.53s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.12954295503416496, Avg f_macro 0.07621784049669111\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 97%|██████████████████████████████████████████████████████████████████████████████████████████████▊ | 968/1000 [1:55:19<07:16, 13.63s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.12982235280789, Avg f_macro 0.07638506921321855\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 97%|██████████████████████████████████████████████████████████████████████████████████████████████▉ | 969/1000 [1:55:21<05:17, 10.23s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.12994637514761354, Avg f_macro 0.0764782390764316\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 97%|███████████████████████████████████████████████████████████████████████████████████████████████ | 970/1000 [1:55:24<03:56, 7.87s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13001859537942012, Avg f_macro 0.07651394306821992\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 97%|███████████████████████████████████████████████████████████████████████████████████████████████▏ | 971/1000 [1:55:27<03:07, 6.45s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13009066685688725, Avg f_macro 0.07654957351934545\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 97%|███████████████████████████████████████████████████████████████████████████████████████████████▎ | 972/1000 [1:55:28<02:19, 4.98s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.12995682872226083, Avg f_macro 0.07647081881407865\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 97%|███████████████████████████████████████████████████████████████████████████████████████████████▎ | 973/1000 [1:55:31<01:55, 4.29s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1298232656917138, Avg f_macro 0.0763922259889871\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 97%|███████████████████████████████████████████████████████████████████████████████████████████████▍ | 974/1000 [1:55:34<01:38, 3.77s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1298953157269379, Avg f_macro 0.0764115749307213\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 98%|███████████████████████████████████████████████████████████████████████████████████████████████▌ | 975/1000 [1:55:35<01:18, 3.12s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.12976208976208978, Avg f_macro 0.0763332040846385\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 98%|███████████████████████████████████████████████████████████████████████████████████████████████▋ | 976/1000 [1:55:37<01:06, 2.78s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.12988528434225155, Avg f_macro 0.07640136385797099\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 98%|███████████████████████████████████████████████████████████████████████████████████████████████▋ | 977/1000 [1:55:40<01:04, 2.82s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.12975234136953687, Avg f_macro 0.07632316389496385\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 98%|███████████████████████████████████████████████████████████████████████████████████████████████▊ | 978/1000 [1:55:47<01:30, 4.10s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.12973328080690044, Avg f_macro 0.07630902978055182\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 98%|███████████████████████████████████████████████████████████████████████████████████████████████▉ | 979/1000 [1:55:50<01:15, 3.59s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1298050547795185, Avg f_macro 0.0763445783825238\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 98%|████████████████████████████████████████████████████████████████████████████████████████████████ | 980/1000 [1:55:52<01:04, 3.21s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1300807639072945, Avg f_macro 0.07652177779233754\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 98%|████████████████████████████████████████████████████████████████████████████████████████████████▏ | 981/1000 [1:55:54<00:56, 2.99s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1301520373385817, Avg f_macro 0.07657119494035759\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 98%|████████████████████████████████████████████████████████████████████████████████████████████████▏ | 982/1000 [1:55:58<00:56, 3.12s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13001949962235093, Avg f_macro 0.07649322020009246\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 98%|████████████████████████████████████████████████████████████████████████████████████████████████▎ | 983/1000 [1:56:03<01:05, 3.84s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13001439331551234, Avg f_macro 0.07646384667762954\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 98%|████████████████████████████████████████████████████████████████████████████████████████████████▍ | 984/1000 [1:56:08<01:03, 3.97s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.12988226486702095, Avg f_macro 0.07638613951637178\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 98%|████████████████████████████████████████████████████████████████████████████████████████████████▌ | 985/1000 [1:56:10<00:53, 3.54s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.12995345038492248, Avg f_macro 0.0764354936894516\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 99%|████████████████████████████████████████████████████████████████████████████████████████████████▋ | 986/1000 [1:56:13<00:45, 3.29s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13002449151029272, Avg f_macro 0.07647066165843909\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 99%|████████████████████████████████████████████████████████████████████████████████████████████████▋ | 987/1000 [1:56:16<00:40, 3.11s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.13009538868201484, Avg f_macro 0.07653792253098084\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 99%|████████████████████████████████████████████████████████████████████████████████████████████████▊ | 988/1000 [1:56:18<00:36, 3.01s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1299637131873974, Avg f_macro 0.07646045499805475\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 99%|████████████████████████████████████████████████████████████████████████████████████████████████▉ | 989/1000 [1:56:22<00:34, 3.12s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.12983230397284998, Avg f_macro 0.07638314412343587\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 99%|█████████████████████████████████████████████████████████████████████████████████████████████████ | 990/1000 [1:56:25<00:31, 3.15s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.12986951039981343, Avg f_macro 0.07641822287796889\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 99%|█████████████████████████████████████████████████████████████████████████████████████████████████ | 991/1000 [1:56:29<00:31, 3.54s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.12999073188276014, Avg f_macro 0.07641873231696496\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 99%|█████████████████████████████████████████████████████████████████████████████████████████████████▏| 992/1000 [1:56:31<00:23, 2.99s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.12985969283852347, Avg f_macro 0.07634169730454866\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 99%|█████████████████████████████████████████████████████████████████████████████████████████████████▎| 993/1000 [1:56:35<00:21, 3.14s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.1297289177198543, Avg f_macro 0.07626481744825003\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 99%|█████████████████████████████████████████████████████████████████████████████████████████████████▍| 994/1000 [1:56:37<00:17, 2.94s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.12979961297365725, Avg f_macro 0.07631384680695401\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "100%|█████████████████████████████████████████████████████████████████████████████████████████████████▌| 995/1000 [1:56:39<00:12, 2.55s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.12966916110132193, Avg f_macro 0.07623714947347968\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "100%|█████████████████████████████████████████████████████████████████████████████████████████████████▌| 996/1000 [1:56:44<00:14, 3.52s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.12965052852101047, Avg f_macro 0.0762233571547312\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "100%|█████████████████████████████████████████████████████████████████████████████████████████████████▋| 997/1000 [1:56:48<00:10, 3.42s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.12952048787053805, Avg f_macro 0.07614690443943058\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "100%|█████████████████████████████████████████████████████████████████████████████████████████████████▊| 998/1000 [1:56:53<00:07, 3.94s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.12951595832357357, Avg f_macro 0.07611831941255644\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", "100%|█████████████████████████████████████████████████████████████████████████████████████████████████▉| 999/1000 [1:56:56<00:03, 3.81s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.12952931286264618, Avg f_macro 0.07613312498963004\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "100%|█████████████████████████████████████████████████████████████████████████████████████████████████| 1000/1000 [1:56:58<00:00, 7.02s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Avg f1_micro 0.12959978354978355, Avg f_macro 0.0761819918646404\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\n" ] } ], "source": [ "for_logging_dict = {\n", " 'model': None,\n", " 'quarter': None,\n", " 'split': None,\n", " 'logits': None,\n", " 'mlm_scores': None,\n", " 'f1_macro': None,\n", " 'f1_micro': None,\n", " 'bleu': None,\n", " 'rouge':None\n", " \n", "}\n", "rouge = evaluate.load('rouge')\n", "bleu = evaluate.load(\"bleu\")\n", "\n", "max_f1_micro_list, max_f1_macro_list = [], []\n", "max_bleu_list, max_rouge_list = [], []\n", "\n", "all_logits_list = []\n", "all_pred_tokens_list = []\n", "\n", "for i in tqdm(range(0, 1000)):\n", " text_i = text_list[i]\n", " labels_i = labels_list[i][0]\n", " labels_ids_i = labels_ids_list[i][0] # there is an 'extra' list that is why we put [0]\n", " relation_i = relation_list[i]\n", " num_answers_i = num_answers_list[i]\n", "# print('i={}: Example: {}, Labels: {}, Ids: {}'.format(i, text_i, labels_i, labels_ids_i))\n", " \n", " generated_seq_tokens = [[] for _ in range(batch_size)] # for each trial\n", " logits_list = [[] for _ in range(batch_size)]\n", "\n", " # tokenize text\n", " tokenized_sentence = tokenizer_return_id(text_i)[0]\n", "\n", " # mask indices to generate\n", " mask_inds = list(np.where(np.array(tokenized_sentence) == mask_id)[0])\n", "\n", " # number of masks (tokens)\n", " M = len(mask_inds)\n", "\n", " # create batch (same input, N times)\n", " tokenized_sentence_b = [tokenized_sentence for _ in range(batch_size)]\n", "\n", " for m in mask_inds:\n", " # tensor\n", " inp = torch.tensor(tokenized_sentence_b).cuda() if cuda else torch.tensor(tokenized_sentence_b)\n", "\n", " # get logits\n", " out = model(inp)\n", " logits = out.logits # batch_size x max_len x vocab\n", "\n", " # get new ids\n", " idxs_b = generate_step(logits, gen_idx=m, top_k=50, temperature=temperature, # sample=(m < burnin)\n", " )\n", "\n", " # replace mask with predicted token id\n", " tokenized_sentence_b_np = np.array(tokenized_sentence_b) \n", " tokenized_sentence_b_np[:,m] = np.array(idxs_b)\n", " tokenized_sentence_b = tokenized_sentence_b_np.tolist() \n", "\n", " # the following code does not work *and I don't know why*\n", " # for jj in range(len(idxs_b)):\n", " # print('before: {}, predicted token id: {}'.format(tokenized_sentence_b[jj][m],idxs_b[jj]))\n", " # tokenized_sentence_b[jj][m] = idxs_b[jj]\n", "\n", " assert sorted(idxs_b) == sorted([sent[m] for sent in tokenized_sentence_b])\n", "\n", " # find logits\n", " logits_m = logits[:,m] # logits for the mask in position m\n", " logits_b = logits_m[:,idxs_b].tolist()[0] # logits for sampled tokens\n", "\n", " assert len(idxs_b) == len(logits_b)\n", "\n", " # add generated tokens and corresponding logits to lists\n", " for j in range(N):\n", " generated_seq_tokens[j].append(idxs_b[j])\n", " logits_list[j].append(logits_b[j])\n", " \n", " # calculate sum of logits for each generated sequence of tokens\n", " sum_logits = np.array(logits_list).sum(axis=-1)\n", "\n", " # finding ranking (return indices of the parallel lists for logits and generated tokens)\n", " ranked_inds_of_list = sum_logits.argsort()[::-1]\n", "\n", " # ranked logits sum in descending order\n", " ranked_logits = sum_logits[ranked_inds_of_list]\n", "\n", " # ranked generated tokens in descending order\n", " ranked_generated_tokens = np.array(generated_seq_tokens)[ranked_inds_of_list]\n", " \n", " all_logits_list.append(ranked_logits)\n", " all_pred_tokens_list.append(ranked_generated_tokens)\n", " \n", " # Evaluation\n", "# print('Evaluation!')\n", " f1_micro_i, f1_macro_i = [], []\n", " rouge_i, bleu_i = [], []\n", "\n", " gold_ids = labels_ids_i\n", " gold_tok = labels_i # list of strings\n", " \n", " for j in range(N): \n", " pred_ids_j = ranked_generated_tokens[j]\n", " pred_tok_j = [\"\".join(untokenize_id(ranked_generated_tokens[j]))] # list of strings\n", "\n", " # F1 score\n", " # F1_micro calculates metrics globally by counting the total true positives, \n", " # false negatives and false positives.\n", " f1_micro_i.append(f1_score(gold_ids,pred_ids_j, average='micro')) \n", " # F1_macro calculates metrics for each label, and finds their unweighted mean. \n", " # This does not take label imbalance into account.\n", " f1_macro_i.append(f1_score(gold_ids,pred_ids_j, average='macro'))\n", "\n", " # BLEU\n", "# bleu_i.append(bleu.compute(references=gold_tok,\n", "# predictions=pred_tok_j)['bleu'])\n", "\n", "# # ROUGE\n", "# rouge_i.append(rouge.compute(references=gold_tok,\n", "# predictions=pred_tok_j))\n", "\n", " # exact match / P@1\n", " \n", " max_f1_micro_list.append(np.array(f1_micro_i).max())\n", " max_f1_macro_list.append(np.array(f1_macro_i).max())\n", "# max_bleu_list.append(np.array(bleu_i).max())\n", " print('Avg f1_micro {}, Avg f1_macro {}'.format(np.mean(max_f1_micro_list), np.mean(max_f1_macro_list)))\n" ] }, { "cell_type": "code", "execution_count": 294, "id": "7c1c11d1", "metadata": { "pycharm": { "name": "#%%\n" } }, "outputs": [ { "data": { "text/plain": [ "115.5" ] }, "execution_count": 294, "metadata": {}, "output_type": "execute_result" } ], "source": [ "np.mean([36, 46, 35, 345])" ] }, { "cell_type": "code", "execution_count": 290, "id": "1f657db4", "metadata": { "pycharm": { "name": "#%%\n" } }, "outputs": [ { "data": { "text/plain": [ "[' the first time in years',\n", " ' the first time since 2015',\n", " ' the first time since 2015',\n", " ' the best player in history',\n", " ' his national team in Spain',\n", " ' the football team of America',\n", " ' the Brazilian team. Legend',\n", " \" Ronaldo's team in 2020\",\n", " ' the Brazilian team on field',\n", " ' a different team every game',\n", " ' the national anthem for Brazil',\n", " ' the World Cup of Football',\n", " ' the United States of America',\n", " ' the United States of America',\n", " ' the United States of America',\n", " ' the United States of America',\n", " ' the United States of America',\n", " ' the National team or not',\n", " ' Real Madrid and never scores',\n", " ' the best of his teams',\n", " ' the Ronaldo. Nice',\n", " ' the club, not himself',\n", " ' Real Madrid. ��',\n", " ' the champions league right now',\n", " ' the Madrid Madrid football team',\n", " ' the Real Madrid Real Madrid',\n", " ' @user today in Argentina',\n", " ' the reds, apparently',\n", " ' Portugal, and not Argentina',\n", " ' a team in their league',\n", " ' this world Cup as well',\n", " ' the best of his ability',\n", " ' the big boss... lol',\n", " ' #Barcelona this year',\n", " ' Real Madrid ???? Wow',\n", " ' Madrid as well as Barcelona',\n", " ' Manchester United. No question',\n", " ' Arsenal because of the club',\n", " ' a big boss no doubt',\n", " ' Argentina. Love this man',\n", " ' Argentina for the first time',\n", " ' Barca. ��',\n", " ' me, just in case',\n", " ' Ronaldo. Period',\n", " ' a team that has been',\n", " ' Manchester United. FFS',\n", " ' the Liverpool Red Cup team',\n", " ' Man United. Ffs',\n", " ' @user today after 3',\n", " ' the Juventus and Man U',\n", " ' Barça. Not Liverpool',\n", " ' @CR_official Ronaldo',\n", " ' United.... so interesting',\n", " ' Madrid for once tonight wow',\n", " ' Brazil as a test game',\n", " ' Spain or as a player',\n", " ' Chelsea and has been class',\n", " ' Liverpool just like you do',\n", " ' Liverpool again, holy shit',\n", " ' Arsenal today. I want',\n", " ' England? Good Lord',\n", " ' not taking the first penalty',\n", " ' your team. Go away',\n", " ' Argentina. In my book',\n", " ' no good cause you guys',\n", " \" PSG's first match\",\n", " ' Brazil to make team better',\n", " ' you? No. Okay',\n", " ' Messi because he likes Messi',\n", " ' no reason. All alone',\n", " ' Brazil. This is crazy',\n", " ' England. A true legend',\n", " ' PSG.. No words',\n", " ' @ChelseaFC? wow',\n", " ' club that is never bad',\n", " ' Chelsea, so I hope',\n", " \" Liverpool. It's crazy\",\n", " ' Brazil. Like a hero',\n", " ' the #Bengals',\n", " ' Madrid... I love this',\n", " ' Madrid.. Whoa',\n", " \" United. That's all\",\n", " ' France but does no wrong',\n", " ' England. Stop being greedy',\n", " ' Ronaldo and we are fucked',\n", " ' Spain too. Great news',\n", " ' Barcelona. Imagine his expectations',\n", " ' Chelsea, so fuck them',\n", " ' Argentina? He has skills',\n", " ' England. Just saying things',\n", " ' Madrid, let him go',\n", " ' Juventus. The real deal',\n", " ' Brazil and the Brazil side',\n", " ' Liverpool ��� now',\n", " ' United, stop complaining please',\n", " ' you when you need him',\n", " ' them.. sooooo annoying',\n", " ' Brazil. Who else cares',\n", " ' @MOTD now',\n", " ' Bournemouth. Genius']" ] }, "execution_count": 290, "metadata": {}, "output_type": "execute_result" } ], "source": [ "[\"\".join(untokenize_id(c)) for c in ranked_generated_tokens]" ] }, { "cell_type": "code", "execution_count": 238, "id": "ae7d6a5e", "metadata": { "pycharm": { "name": "#%%\n" } }, "outputs": [ { "data": { "text/plain": [ "AggregateScore(low=Score(precision=0.0, recall=0.0, fmeasure=0.0), mid=Score(precision=0.0, recall=0.0, fmeasure=0.0), high=Score(precision=0.0, recall=0.0, fmeasure=0.0))" ] }, "execution_count": 238, "metadata": {}, "output_type": "execute_result" } ], "source": [ "rouge.compute(references=gold_tok,\n", " predictions=pred_tok_j)['rouge1']" ] }, { "cell_type": "code", "execution_count": 32, "id": "7752dc32", "metadata": { "pycharm": { "name": "#%%\n" } }, "outputs": [ { "data": { "text/plain": [ "0.07692307692307693" ] }, "execution_count": 32, "metadata": {}, "output_type": "execute_result" } ], "source": [ "np.array(f1_macro).max()" ] }, { "cell_type": "code", "execution_count": 25, "id": "041ca720", "metadata": { "pycharm": { "name": "#%%\n" } }, "outputs": [ { "data": { "text/plain": [ "[' United', ' States', ' women', \"'s\", ' national', ' soccer', ' team']" ] }, "execution_count": 25, "metadata": {}, "output_type": "execute_result" } ], "source": [ "untokenize_id(labels_ids_i)" ] }, { "cell_type": "code", "execution_count": 33, "id": "5e000b3c", "metadata": { "pycharm": { "name": "#%%\n" } }, "outputs": [ { "data": { "text/plain": [ "[[' the', ' St', '.', ' Louis', ' Louis', ' Blues', ' tonight'],\n", " [' the', ' @', 'All', 'S', ' considered', 'FC', ' today'],\n", " [' the', ' game', '.', ' ', ' That', \"'s\", ' all'],\n", " [' the', ' @', 'D', 'ynam', 'ites', ' FC', ' today'],\n", " [' the', ' Panthers', '!', ' 1', '-', '0', ' Panther'],\n", " [' the', ' @', 'Chief', 's', ' in', ' the', ' fourth'],\n", " [' the', ' Bills', ' in', ' my', ' head', ' right', ' now'],\n", " [' the', ' @', 'Rap', 'She', 'et', ' right', ' now'],\n", " [' the', ' Bears', '.', ' Will', ' be', ' tough', ' loss'],\n", " [' the', ' #', 'Fal', 'cons', ' on', ' both', ' sides']]" ] }, "execution_count": 33, "metadata": {}, "output_type": "execute_result" } ], "source": [ "untokenize_batch(ranked_generated_tokens[0:10])" ] }, { "cell_type": "code", "execution_count": null, "id": "04e1cb0e", "metadata": { "pycharm": { "name": "#%%\n" } }, "outputs": [], "source": [ "ranked_logits = sum_logits[ranked_inds_of_list]" ] }, { "cell_type": "code", "execution_count": null, "id": "de6db2b8", "metadata": { "pycharm": { "name": "#%%\n" } }, "outputs": [], "source": [ "ranked_generated_tokens = np.array(generated_seq_tokens)[ranked_inds_of_list]" ] }, { "cell_type": "code", "execution_count": null, "id": "cb86a93e", "metadata": { "pycharm": { "name": "#%%\n" } }, "outputs": [], "source": [ "ranked_generated_tokens" ] }, { "cell_type": "code", "execution_count": null, "id": "684fa9fd", "metadata": { "pycharm": { "name": "#%%\n" } }, "outputs": [], "source": [ "# generate token for each mask in parallel\n", "for m in mask_inds:\n", " # tensor\n", " inp = torch.tensor(tokenized_sentence_b).cuda() if cuda else torch.tensor(tokenized_sentence_b) # shape bs x max_len\n", " \n", " # get logits\n", " out = model(inp)\n", " logits = out.logits\n", " \n", " # get new ids\n", " idxs = generate_step(logits, gen_idx=m, \n", " top_k=100, temperature=temperature, \n", "# sample=(m < burnin)\n", " )\n", " predicted_tokens.append(idxs[0])" ] }, { "cell_type": "code", "execution_count": null, "id": "019261ab", "metadata": { "pycharm": { "name": "#%%\n" } }, "outputs": [], "source": [ "# tokenize text\n", "text_ids = tokenizer_return_id(text)\n", "num_tokens=len(text_ids)\n", "if num_tokens >= max_len:\n", " text_ids_max_len = text_ids[:max_len] # truncate \n", "else:\n", " text_ids_max_len = text_ids + (max_len-num_tokens) * [pad_id] # pad \n", "assert len(text_ids_max_len) == max_len, len(text_ids_max_len)\n", "batch.append(text_ids_max_len)" ] }, { "cell_type": "markdown", "id": "e5221cc0", "metadata": { "pycharm": { "name": "#%% md\n" } }, "source": [ "## Old stuff" ] }, { "cell_type": "code", "execution_count": null, "id": "cdc1a2f6", "metadata": { "pycharm": { "name": "#%%\n" } }, "outputs": [], "source": [ "def load_file(filename):\n", " \"\"\"\n", " :param filename:\n", " :return:\n", " \"\"\"\n", " data = []\n", " with open(filename, \"r\") as f:\n", " for line in f.readlines():\n", " data.append(json.loads(line))\n", " return data" ] }, { "cell_type": "code", "execution_count": null, "id": "fc8293d3", "metadata": { "pycharm": { "name": "#%%\n" } }, "outputs": [], "source": [ "def tokenizer_return_id(text):\n", " output = tokenizer(text)\n", " token_ids = [i for i in output['input_ids'] if i not in tokenizer.all_special_ids]\n", " return token_ids" ] }, { "cell_type": "code", "execution_count": null, "id": "28212a88", "metadata": { "pycharm": { "name": "#%%\n" } }, "outputs": [], "source": [ "test_data = load_file(TEMPLAMA_NEW_DIR)\n", "years = sorted(list(set([d[\"date\"] for d in test_data])))\n", "# split per year\n", "test_data_dict = {k: {\"text\": [], \"labels\": [], \"labels_ids\": [], \"relation\": []} for k in years}" ] }, { "cell_type": "code", "execution_count": null, "id": "d0f7152d", "metadata": { "pycharm": { "name": "#%%\n" } }, "outputs": [], "source": [ "d = test_data[0]\n", "year = d[\"date\"]\n", "relation = d['relation']\n", "if type(d['answer']) is not list: d['answer'] = [d['answer']]\n", "labels_string_list = [label['name'] for label in d['answer']]\n", "labels_ids_list = [tokenizer_return_id(string) for string in labels_string_list]\n", "num_masks_list = [len(tokens) for tokens in labels_ids_list]" ] }, { "cell_type": "code", "execution_count": null, "id": "775dd5f1", "metadata": { "pycharm": { "name": "#%%\n" } }, "outputs": [], "source": [ "all_answers = [a[\"name\"] for a in d[\"answer\"]]\n", "multiple_masks = [\" \".join([mask_token for _ in range(num_masks)]) for num_masks in num_masks_list]" ] }, { "cell_type": "code", "execution_count": null, "id": "12e65822", "metadata": { "pycharm": { "name": "#%%\n" } }, "outputs": [], "source": [ "all_masked_answers = [d[\"query\"].replace(\"_X_\", _mask) for _mask in multiple_masks]" ] }, { "cell_type": "code", "execution_count": null, "id": "ef903135", "metadata": { "pycharm": { "name": "#%%\n" } }, "outputs": [], "source": [ "[a[\"name\"] for a in d[\"answer\"]]" ] }, { "cell_type": "code", "execution_count": null, "id": "dfff97c6", "metadata": { "pycharm": { "name": "#%%\n" } }, "outputs": [], "source": [ "multiple_masks = [\" \".join([mask_token for _ in range(num_masks)]) for num_masks in num_masks_list]" ] }, { "cell_type": "code", "execution_count": null, "id": "f18da40d", "metadata": { "pycharm": { "name": "#%%\n" } }, "outputs": [], "source": [ "multiple_masks" ] }, { "cell_type": "code", "execution_count": null, "id": "60e321a4", "metadata": { "pycharm": { "name": "#%%\n" } }, "outputs": [], "source": [ "def load_dynamic_templama(filename):\n", " \"\"\"\n", " Our dynamically-created TempLAMA version\n", " :return:\n", " \"\"\"\n", " single_mask = False\n", " lowercase = False\n", " \n", " test_data = load_file(filename)\n", " years = sorted(list(set([d[\"date\"] for d in test_data])))\n", " # split per year\n", " test_data_dict = {k: {\"text\": [], \"labels\": [], \"labels_ids\": [], \"relation\": []} for k in years}\n", " for d in tqdm(test_data):\n", " year = d[\"date\"]\n", " relation = d['relation']\n", " if type(d['answer']) is not list: d['answer'] = [d['answer']]\n", " labels_string_list = [label['name'] for label in d['answer']] # list of strings with all the labels\n", " if lowercase:\n", " labels_string_list = [label['name'].lower() for label in d['answer']]\n", " labels_ids_list = [tokenizer_return_id(string) for string in labels_string_list] # list of lists with ids\n", " num_masks_list = [len(tokens) for tokens in labels_ids_list]\n", " \"\"\"\n", " If we want to consider more correct labels we have to change accepted labels\n", " \"\"\"\n", " # If we evaluate only single-token labels\n", " if single_mask:\n", " # check if there is answer with one mask\n", " if 1 in num_masks_list:\n", " labels_ids_with_one_mask_index = [i for i,l in enumerate(num_masks_list) if l==1] # list of ids where answer requires one mask/token\n", " # accepted_labels = list(np.array(labels_string_list)[labels_ids_with_one_mask_index])\n", " accepted_labels_ids = np.array(labels_ids_list)[labels_ids_with_one_mask_index].tolist()\n", " accepted_labels = [[tokenizer.decode(label_id)] for label_id in accepted_labels_ids]\n", " assert len(accepted_labels)==len(accepted_labels_ids)\n", " assert len(accepted_labels[0])==len(accepted_labels_ids[0])\n", " text = d[\"query\"].replace(\"_X_\", mask_token)\n", " if lowercase:\n", " text = d[\"query\"].lower().replace(\"_x_\", mask_token)\n", " \n", " test_data_dict[year][\"text\"].append(text)\n", " test_data_dict[year][\"labels\"].append(accepted_labels)\n", " test_data_dict[year][\"labels_ids\"].append(accepted_labels_ids)\n", " test_data_dict[year][\"relation\"].append(relation)\n", " else:\n", " # skip this example\n", " continue\n", " else: \n", " # accept all labels\n", "# all_answers = [a[\"name\"] for a in d[\"answer\"]]\n", " multiple_masks = [\" \".join([mask_token for _ in range(num_masks)]) for num_masks in num_masks_list]\n", " all_masked_queries = [d[\"query\"].replace(\"_X_\", _mask) for _mask in multiple_masks]\n", " if lowercase:\n", " all_masked_queries = [d[\"query\"].lower().replace(\"_x_\", _mask) for _mask in multiple_masks]\n", "# # todo\n", "# all_answers = [seq.lower() for seq in d[\"answer\"]]\n", "# # replace \"_X_\" with correct mask token\n", "# if single_mask:\n", "# text = d[\"query\"].lower().replace(\"_x_\", mask_token)\n", "# else:\n", "# num_masks = len(all_answers[0].split())\n", "# multiple_masks = \" \".join([mask_token for _ in range(num_masks)])\n", "# text = d[\"query\"].lower().replace(\"_x_\", multiple_masks)\n", " else:\n", " multiple_masks = [\" \".join([mask_token for _ in range(num_masks)]) for num_masks in num_masks_list]\n", " # replace _X_ with as many mask tokens as the correct label\n", " all_masked_queries = [d[\"query\"].replace(\"_X_\", _mask) for _mask in multiple_masks]\n", "\n", " # Because we have multiple correct labels of possibly different number of tokens, \n", " # we now have multiple multiple texts (depending on the number of masks)\n", " # so we append them all separately at the test set\n", " \n", " for i in range(len(all_answers)):\n", " test_data_dict[year][\"text\"].append(all_masked_queries[i])\n", " test_data_dict[year][\"labels\"].append(labels_string_list[i])\n", " test_data_dict[year][\"labels_ids\"].append(labels_ids_list[i])\n", " test_data_dict[year][\"relation\"].append(relation)\n", "\n", " return test_data_dict" ] }, { "cell_type": "code", "execution_count": null, "id": "5da1f293", "metadata": { "pycharm": { "name": "#%%\n" } }, "outputs": [], "source": [ "load_dynamic_templama(TEMPLAMA_NEW_DIR)" ] }, { "cell_type": "code", "execution_count": null, "id": "7c5e9860", "metadata": { "pycharm": { "name": "#%%\n" } }, "outputs": [], "source": [ "test_data = load_file(filename)" ] }, { "cell_type": "markdown", "id": "83e4b6cb", "metadata": { "pycharm": { "name": "#%% md\n" } }, "source": [ "### Original TempLAMA dataset (downloaded from Google Research github repo)\n", "- 2010-2020\n", "- 9 relations\n", "- 1,000 subjects per relation" ] }, { "cell_type": "code", "execution_count": null, "id": "b1806601", "metadata": { "pycharm": { "name": "#%%\n" } }, "outputs": [], "source": [ "orig_templama = load_file(TEMPLAMA_NEW_DIR)" ] }, { "cell_type": "code", "execution_count": null, "id": "b40c8b2a", "metadata": { "pycharm": { "name": "#%%\n" } }, "outputs": [], "source": [ "orig_templama\n" ] }, { "cell_type": "markdown", "id": "594629ba", "metadata": { "pycharm": { "name": "#%% md\n" } }, "source": [ "Number of examples per year:" ] }, { "cell_type": "code", "execution_count": null, "id": "09c1b8a1", "metadata": { "pycharm": { "name": "#%%\n" } }, "outputs": [], "source": [ "Counter([x['date'] for x in orig_templama])" ] }, { "cell_type": "code", "execution_count": null, "id": "2da81a28", "metadata": { "pycharm": { "name": "#%%\n" } }, "outputs": [], "source": [ "print('In total: {} examples for all years, {} unique facts.'.format(len(orig_templama), \n", " len(set([x['query'] for x in orig_templama]))))" ] }, { "cell_type": "markdown", "id": "e80fd9cc", "metadata": { "pycharm": { "name": "#%% md\n" } }, "source": [ "Number of facts per relation:" ] }, { "cell_type": "code", "execution_count": null, "id": "70be7af1", "metadata": { "pycharm": { "name": "#%%\n" } }, "outputs": [], "source": [ "Counter([x['relation'] for x in orig_templama])" ] }, { "cell_type": "markdown", "id": "c66208fd", "metadata": { "pycharm": { "name": "#%% md\n" } }, "source": [ "### Dynamic TempLAMA dataset (by running their code)\n", "- 2019-2020\n", "- 9 relations\n", "- 5,000 subjects per relation" ] }, { "cell_type": "code", "execution_count": null, "id": "a47def69", "metadata": { "pycharm": { "name": "#%%\n" } }, "outputs": [], "source": [ "reproduced_templama = load_file(TEMPLAMA_NEW_DIR)" ] }, { "cell_type": "markdown", "id": "7bc54cd0", "metadata": { "pycharm": { "name": "#%% md\n" } }, "source": [ "Number of examples per quarter:\n" ] }, { "cell_type": "code", "execution_count": null, "id": "babc369a", "metadata": { "pycharm": { "name": "#%%\n" } }, "outputs": [], "source": [ "Counter([x['date'] for x in reproduced_templama])" ] }, { "cell_type": "code", "execution_count": null, "id": "f5b228cd", "metadata": { "pycharm": { "name": "#%%\n" } }, "outputs": [], "source": [ "print('In total: {} examples for all years, {} unique facts.'.format(len(reproduced_templama), \n", " len(set([x['query'] for x in reproduced_templama]))))" ] }, { "cell_type": "markdown", "id": "c5135cfd", "metadata": { "pycharm": { "name": "#%% md\n" } }, "source": [ "Number of facts per relation:\n" ] }, { "cell_type": "code", "execution_count": null, "id": "db239234", "metadata": { "pycharm": { "name": "#%%\n" } }, "outputs": [], "source": [ "Counter([x['relation'] for x in reproduced_templama])" ] }, { "cell_type": "code", "execution_count": null, "id": "6ca8db25", "metadata": { "pycharm": { "name": "#%%\n" } }, "outputs": [], "source": [ "data = load_dynamic_templama(TEMPLAMA_NEW_DIR)" ] }, { "cell_type": "code", "execution_count": null, "id": "768e6d36", "metadata": { "pycharm": { "name": "#%%\n" } }, "outputs": [], "source": [ "data['2019-Q1'].keys()" ] }, { "cell_type": "code", "execution_count": null, "id": "071ec907", "metadata": { "pycharm": { "name": "#%%\n" } }, "outputs": [], "source": [ "for quarter in data:\n", " quarter_dataset = data[quarter][\"text\"]\n", " num_examples = len(quarter_dataset)\n", " num_relations = Counter(data['2019-Q1']['relation']).items()\n", " print(\"Quarter {} - num examples {} - relations {}\".format(quarter,num_examples,num_relations))\n", " " ] }, { "cell_type": "code", "execution_count": null, "id": "2d4e0afa", "metadata": { "pycharm": { "name": "#%%\n" } }, "outputs": [], "source": [ "Counter(data['2019-Q1']['relation']).items()" ] }, { "cell_type": "code", "execution_count": null, "id": "80191d7c", "metadata": { "pycharm": { "name": "#%%\n" } }, "outputs": [], "source": [ "data_2019_q1 = data['2019-Q1']\n", "data_2019_q2 = data['2019-Q2']" ] }, { "cell_type": "code", "execution_count": null, "id": "de54c5a4", "metadata": { "pycharm": { "name": "#%%\n" } }, "outputs": [], "source": [ "next(iter(data)) \n" ] }, { "cell_type": "code", "execution_count": null, "id": "6c9bf2e0", "metadata": { "pycharm": { "name": "#%%\n" } }, "outputs": [], "source": [ "list(data.keys())" ] }, { "cell_type": "code", "execution_count": null, "id": "89b23ed2", "metadata": { "pycharm": { "name": "#%%\n" } }, "outputs": [], "source": [ "unchanged_t, new_t, updated_t, deleted_t = {}, {}, {}, {}\n", "quarters = list(data.keys())\n", "t_1 = quarters[0]\n", "\n", "for t in quarters[1:]:\n", " data_t = data[t] # D_t\n", " data_t_1 = data[t_1] # D_(t-1)\n", "\n", " unchanged_t[t] = {key:[] for key in data_t.keys()} \n", " new_t[t] = {key:[] for key in data_t.keys()} \n", " updated_t[t] = {key:[] for key in data_t.keys()} \n", " deleted_t[t] = {key:[] for key in data_t.keys()} \n", "\n", "# for i in range(0,len(data_t_1['text'])):\n", "# text_t_1 = data_t_1['text'][j]\n", "# if text_t_1 not in data_t['text']:\n", "# # text_(t+1) not in D_t\n", "# # add to D_deleted\n", "# for key in ['text', 'relation']:\n", "# deleted_t[t][key].append(data_t_1[key])\n", " \n", " for i in range (0, len(data_t['text'])):\n", " text_t = data_t['text'][i]\n", " labels_ids_t = data_t['labels_ids'][i][0]\n", " if text_t in data_t_1['text']:\n", " t_1_index = data_t_1['text'].index(text_t)\n", " labels_inds_t_1 = data_t_1['labels_ids'][t_1_index][0]\n", " if labels_ids_t == labels_inds_t_1:\n", " # text_t = text_t-1 & label_t = label_t-1 \n", " # add to D_unchanged\n", " for key in data_t.keys():\n", " unchanged_t[t][key].append(data_t[key])\n", " else:\n", " # text_t = text_(t-1) & label_t != label_(t-1)\n", " # add to D_updated\n", " for key in ['text', 'relation']:\n", " updated_t[t][key].append(data_t[key])\n", " else:\n", " # text_t not in D_(t-1) texts \n", " # add to D_new\n", " for key in ['text', 'relation']:\n", " new_t[t][key].append(data_t[key])\n", " for j in range(0,len(data_t_1['text'])):\n", " text_t_1 = data_t_1['text'][j]\n", " if text_t_1 not in data_t['text']:\n", " # text_(t+1) not in D_t\n", " # add to D_deleted\n", " for key in ['text', 'relation']:\n", " deleted_t[t][key].append(data_t_1[key])\n", " t_1 = t\n", " \n", " assert len(data_t['text']) == len(unchanged_t[t]['text']) + len(updated_t[t]['text']) + len(new_t[t]['text'])\n", " print('t={}: From total {} samples in D_t, {} are unchanged, {} are updated, {} are deleted and {} are new, compared to D_(t-1).'.format(t,\n", " len(data_t['text']),\n", " len(unchanged_t[t]['text']),\n", " len(updated_t[t]['text']),\n", " len(deleted_t[t]['text']),\n", " len(new_t[t]['text'])))\n", "\n", " \n", " " ] }, { "cell_type": "code", "execution_count": null, "id": "ca8f180d", "metadata": { "pycharm": { "name": "#%%\n" } }, "outputs": [], "source": [ "len(data[quarters[0]]['relation'])" ] }, { "cell_type": "code", "execution_count": null, "id": "bca50d89", "metadata": { "pycharm": { "name": "#%%\n" } }, "outputs": [], "source": [ "len(updated_t['text'])" ] }, { "cell_type": "code", "execution_count": null, "id": "40c7261d", "metadata": { "pycharm": { "name": "#%%\n" } }, "outputs": [], "source": [ "len(new_t['text'])" ] }, { "cell_type": "code", "execution_count": null, "id": "f30d7092", "metadata": { "pycharm": { "name": "#%%\n" } }, "outputs": [], "source": [ "len(data_2019_q2['text'])" ] }, { "cell_type": "code", "execution_count": null, "id": "7894151d", "metadata": { "pycharm": { "name": "#%%\n" } }, "outputs": [], "source": [] }, { "cell_type": "code", "execution_count": null, "id": "12a2d7e1", "metadata": { "pycharm": { "name": "#%%\n" } }, "outputs": [], "source": [ "i=0\n", "text_data_2019_q2['text'][i]" ] }, { "cell_type": "code", "execution_count": null, "id": "1bb9bcbf", "metadata": { "pycharm": { "name": "#%%\n" } }, "outputs": [], "source": [ "text_t = data_2019_q2['text'][i]" ] }, { "cell_type": "code", "execution_count": null, "id": "da734a46", "metadata": { "pycharm": { "name": "#%%\n" } }, "outputs": [], "source": [ "labels_ids_t = data_2019_q2['labels_ids'][i][0]" ] }, { "cell_type": "code", "execution_count": null, "id": "bdb37aa4", "metadata": { "pycharm": { "name": "#%%\n" } }, "outputs": [], "source": [ "if text_t in data_2019_q1['text']:\n", " data_2019_q1['text']" ] }, { "cell_type": "code", "execution_count": null, "id": "93645a5f", "metadata": { "pycharm": { "name": "#%%\n" } }, "outputs": [], "source": [ "t_1_index = data_2019_q1['text'].index(text_t)" ] }, { "cell_type": "code", "execution_count": null, "id": "936dcd06", "metadata": { "pycharm": { "name": "#%%\n" } }, "outputs": [], "source": [ "labels_t_1 = data_2019_q1['labels_ids'][t_1_index][0]" ] }, { "cell_type": "code", "execution_count": null, "id": "5d04c317", "metadata": { "pycharm": { "name": "#%%\n" } }, "outputs": [], "source": [ "labels_t_1 == labels_ids_t" ] }, { "cell_type": "code", "execution_count": null, "id": "75d09b3b", "metadata": { "pycharm": { "name": "#%%\n" } }, "outputs": [], "source": [ "labels_ids_t" ] }, { "cell_type": "code", "execution_count": null, "id": "275db8a6", "metadata": { "pycharm": { "name": "#%%\n" } }, "outputs": [], "source": [ "data_2019_q2.keys()" ] }, { "cell_type": "code", "execution_count": null, "id": "8105ba65", "metadata": { "pycharm": { "name": "#%%\n" } }, "outputs": [], "source": [ "unchanged_t = {key:[] for key in data_2019_q2.keys()} " ] }, { "cell_type": "code", "execution_count": null, "id": "4854fffa", "metadata": { "pycharm": { "name": "#%%\n" } }, "outputs": [], "source": [ "unchanged_t" ] }, { "cell_type": "code", "execution_count": null, "id": "7095c381", "metadata": { "pycharm": { "name": "#%%\n" } }, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.9.11" } }, "nbformat": 4, "nbformat_minor": 5 }