Query Result
1SELECT
2 p.player_id,
3 p.name AS player_name,
4 p.full_name,
5 p.date_of_birth,
6 p.country_of_birth,
7 p.city_of_birth,
8 p.country_of_citizenship,
9 p.positions,
10 p.height_cm,
11 p.weight_kg,
12 c.competition_id,
13 c.name AS competition_name,
14 c.country AS competition_country,
15 c.type AS competition_type,
16 s.season_id,
17 s.season_label,
18 COUNT(DISTINCT mps.match_id) AS matches_played,
19 SUM(CASE WHEN CAST(mps.minutes_played AS DOUBLE) > 0 THEN 1 ELSE 0 END) AS matches_with_minutes,
20 ROUND(AVG(CAST(mps.minutes_played AS DOUBLE)), 2) AS avg_minutes_per_match,
21 SUM(CAST(mps.minutes_played AS DOUBLE)) AS total_minutes,
22 ROUND(AVG(TRY_CAST(mps.rating AS DOUBLE)), 2) AS avg_rating,
23 ROUND(AVG(CAST(mps.shots_total AS DOUBLE)), 2) AS avg_shots_total,
24 ROUND(AVG(CAST(mps.shots_on_target AS DOUBLE)), 2) AS avg_shots_on_target,
25 ROUND(AVG(CAST(mps.goals_scored AS DOUBLE)), 2) AS avg_goals_scored,
26 SUM(CAST(mps.goals_scored AS DOUBLE)) AS total_goals_scored,
27 ROUND(AVG(CAST(mps.goals_assists AS DOUBLE)), 2) AS avg_assists,
28 SUM(CAST(mps.goals_assists AS DOUBLE)) AS total_assists,
29 ROUND(AVG(CAST(mps.goals_conceded AS DOUBLE)), 2) AS avg_goals_conceded,
30 SUM(CAST(mps.goals_conceded AS DOUBLE)) AS total_goals_conceded,
31 ROUND(AVG(CAST(mps.saves AS DOUBLE)), 2) AS avg_saves,
32 SUM(CAST(mps.saves AS DOUBLE)) AS total_saves,
33 ROUND(AVG(CAST(mps.passes_total AS DOUBLE)), 2) AS avg_passes_total,
34 SUM(CAST(mps.passes_total AS DOUBLE)) AS total_passes_total,
35 ROUND(AVG(CAST(mps.passes_key AS DOUBLE)), 2) AS avg_key_passes,
36 SUM(CAST(mps.passes_key AS DOUBLE)) AS total_key_passes,
37 ROUND(AVG(CAST(mps.tackles_total AS DOUBLE)), 2) AS avg_tackles_total,
38 SUM(CAST(mps.tackles_total AS DOUBLE)) AS total_tackles_total,
39 ROUND(AVG(CAST(mps.tackles_blocks AS DOUBLE)), 2) AS avg_tackles_blocks,
40 SUM(CAST(mps.tackles_blocks AS DOUBLE)) AS total_tackles_blocks,
41 ROUND(AVG(CAST(mps.tackles_interceptions AS DOUBLE)), 2) AS avg_tackles_interceptions,
42 SUM(CAST(mps.tackles_interceptions AS DOUBLE)) AS total_tackles_interceptions,
43 ROUND(AVG(CAST(mps.duels_total AS DOUBLE)), 2) AS avg_duels_total,
44 SUM(CAST(mps.duels_total AS DOUBLE)) AS total_duels_total,
45 ROUND(AVG(CAST(mps.duels_won AS DOUBLE)), 2) AS avg_duels_won,
46 SUM(CAST(mps.duels_won AS DOUBLE)) AS total_duels_won,
47 ROUND(AVG(CAST(mps.dribbles_attempts AS DOUBLE)), 2) AS avg_dribbles_attempts,
48 SUM(CAST(mps.dribbles_attempts AS DOUBLE)) AS total_dribbles_attempts,
49 ROUND(AVG(CAST(mps.dribbles_success AS DOUBLE)), 2) AS avg_dribbles_success,
50 SUM(CAST(mps.dribbles_success AS DOUBLE)) AS total_dribbles_success,
51 ROUND(AVG(CAST(mps.dribbled_past AS DOUBLE)), 2) AS avg_dribbled_past,
52 SUM(CAST(mps.dribbled_past AS DOUBLE)) AS total_dribbled_past,
53 ROUND(AVG(CAST(mps.fouls_drawn AS DOUBLE)), 2) AS avg_fouls_drawn,
54 SUM(CAST(mps.fouls_drawn AS DOUBLE)) AS total_fouls_drawn,
55 ROUND(AVG(CAST(mps.fouls_committed AS DOUBLE)), 2) AS avg_fouls_committed,
56 SUM(CAST(mps.fouls_committed AS DOUBLE)) AS total_fouls_committed,
57 SUM(CAST(mps.yellow_cards AS DOUBLE)) AS total_yellow_cards,
58 SUM(CAST(mps.red_cards AS DOUBLE)) AS total_red_cards,
59 ROUND(AVG(CAST(mps.penalties_won AS DOUBLE)), 2) AS avg_penalties_won,
60 SUM(CAST(mps.penalties_won AS DOUBLE)) AS total_penalties_won,
61 ROUND(AVG(CAST(mps.penalties_committed AS DOUBLE)), 2) AS avg_penalties_committed,
62 SUM(CAST(mps.penalties_committed AS DOUBLE)) AS total_penalties_committed,
63 SUM(CAST(mps.penalties_scored AS DOUBLE)) AS total_penalties_scored,
64 SUM(CAST(mps.penalties_missed AS DOUBLE)) AS total_penalties_missed,
65 ROUND(AVG(CAST(mps.penalties_saved AS DOUBLE)), 2) AS avg_penalties_saved,
66 SUM(CAST(mps.penalties_saved AS DOUBLE)) AS total_penalties_saved,
67 ROUND(AVG(CAST(mps.offsides AS DOUBLE)), 2) AS avg_offsides,
68 SUM(CAST(mps.offsides AS DOUBLE)) AS total_offsides,
69 COUNT(DISTINCT CASE WHEN mps.is_captain THEN mps.match_id END) AS captain_appearances,
70 COUNT(DISTINCT CASE WHEN mps.is_substitute THEN mps.match_id END) AS substitute_appearances
71FROM "@blt.ultimate_soccer_dataset.match_player_stats" mps
72JOIN "@blt.ultimate_soccer_dataset.matches" m ON mps.match_id = m.match_id
73JOIN "@blt.ultimate_soccer_dataset.seasons" s ON m.season_id = s.season_id
74JOIN "@blt.ultimate_soccer_dataset.competitions" c ON s.competition_id = c.competition_id
75JOIN "@blt.ultimate_soccer_dataset.players" p ON mps.player_id = p.player_id
76GROUP BY
77 p.player_id,
78 p.name,
79 p.full_name,
80 p.date_of_birth,
81 p.country_of_birth,
82 p.city_of_birth,
83 p.country_of_citizenship,
84 p.positions,
85 p.height_cm,
86 p.weight_kg,
87 c.competition_id,
88 c.name,
89 c.country,
90 c.type,
91 s.season_id,
92 s.season_label
93ORDER BY c.country, s.season_label DESC, p.name
94Results limited to the first 500 rows.
| player_id | player_name | full_name | date_of_birth | country_of_birth | city_of_birth | country_of_citizenship | positions | height_cm | weight_kg | competition_id | competition_name | competition_country | competition_type | season_id | season_label | matches_played | matches_with_minutes | avg_minutes_per_match | total_minutes | avg_rating | avg_shots_total | avg_shots_on_target | avg_goals_scored | total_goals_scored | avg_assists | total_assists | avg_goals_conceded | total_goals_conceded | avg_saves | total_saves | avg_passes_total | total_passes_total | avg_key_passes | total_key_passes | avg_tackles_total | total_tackles_total | avg_tackles_blocks | total_tackles_blocks | avg_tackles_interceptions | total_tackles_interceptions | avg_duels_total | total_duels_total | avg_duels_won | total_duels_won | avg_dribbles_attempts | total_dribbles_attempts | avg_dribbles_success | total_dribbles_success | avg_dribbled_past | total_dribbled_past | avg_fouls_drawn | total_fouls_drawn | avg_fouls_committed | total_fouls_committed | total_yellow_cards | total_red_cards | avg_penalties_won | total_penalties_won | avg_penalties_committed | total_penalties_committed | total_penalties_scored | total_penalties_missed | avg_penalties_saved | total_penalties_saved | avg_offsides | total_offsides | captain_appearances | substitute_appearances |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 175f3c8a-58c2-5d8f-be1c-c620750a6704 | A. Aguerre | Alan Joaquín Aguerre | 1990-08-23 | Argentina | Buenos Aires | Argentina | Goalkeeper | 181 | 76 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 3 | 3 | 94 | 282 | 7.47 | null | null | null | null | 0 | 0 | 0.33 | 1 | 3.5 | 7 | 29 | 87 | null | null | null | null | null | null | null | null | 2 | 2 | 2 | 2 | null | null | null | null | null | null | 1 | 1 | null | null | 1 | 0 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 3 | 0 |
| 1e266613-ad4a-54b4-96c9-0fd0bd9cba63 | A. Alaniz | Agustín Nicolás Alaniz Sani | 2002-05-16 | Uruguay | Montevideo | Uruguay | Midfielder | 176 | 70 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 1 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 1 |
| f3d99029-a3d5-5894-8a0d-4de453e390c9 | A. Arce | Alex Adrián Arce Barrios | 1995-06-16 | Paraguay | Carapeguá | Paraguay | Attacker | 187 | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 1 | 1 | 91 | 91 | 6.7 | 1 | 1 | null | null | null | null | 0 | 0 | null | null | 13 | 13 | 2 | 2 | 1 | 1 | null | null | null | null | 20 | 20 | 7 | 7 | 1 | 1 | 1 | 1 | null | null | 2 | 2 | 2 | 2 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | 1 | 1 | 1 | 0 |
| 7b98499d-1b98-58b1-a3d2-c76ae4540077 | A. Auzmendi | Agustín Auzmendi | 1997-02-01 | Argentina | None | Argentina | Attacker | 181 | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 24 | 120 | 6.68 | 2 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | null | null | 4.5 | 18 | 1 | 1 | null | null | null | null | null | null | 4.2 | 21 | 2.33 | 7 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 3 | 1.25 | 5 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | 1 | 1 | 0 | 5 |
| 4b2b43cf-d0f0-5f0d-b4bc-8a0c80ce1768 | A. Barrionuevo | Alan Enzo David Barrionuevo | 1997-01-02 | Argentina | San Justo | Argentina | Defender | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 4 | 94 | 376 | 7.35 | 1 | null | null | null | 0.67 | 2 | 0 | 0 | null | null | 21.25 | 85 | 1 | 2 | 1.75 | 7 | 1 | 2 | 1.33 | 4 | 5.5 | 22 | 4.5 | 18 | 1 | 2 | 1 | 1 | 1 | 1 | null | null | 1 | 1 | 1 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 |
| 8cdae6ef-2335-534b-b039-87d952941dde | A. Bravo | Agustín Antonio Bravo | 2001-05-11 | Argentina | Rafaela | Argentina | Defender | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 4 |
| 7902577d-1b16-5971-858e-7030e58960bb | A. Cabrera | Alejandro Martín Cabrera | 1992-09-30 | Argentina | Los Cóndores | Argentina | Defender | 185 | 85 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 2 | 2 | 39.5 | 79 | 6.45 | null | null | null | null | null | null | 0 | 0 | null | null | 15 | 30 | null | null | 3 | 3 | 1 | 1 | 1 | 1 | 3.5 | 7 | 2.5 | 5 | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 1 |
| dac6f628-9d3f-5cbc-b01c-66a4dc19d3ae | A. Cardozo | Agustín Ezequiel Cardozo | 1997-05-30 | Argentina | Renaper | Argentina | Midfielder | 181 | 79 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 94.8 | 474 | 6.98 | 1 | 1 | null | null | 0 | 0 | 0 | 0 | null | null | 53.6 | 268 | 1 | 1 | 1.8 | 9 | 1 | 1 | 2 | 6 | 6.2 | 31 | 4.2 | 21 | null | null | null | null | 1 | 1 | 1.5 | 3 | 1.5 | 6 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 |
| 0bed49c1-1d7c-5d48-8ece-2a48d8a2ea0d | A. Castro | Alexis Castro | 1994-10-18 | Argentina | Buenos Aires | Argentina | Midfielder | 180 | 70 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 32.4 | 162 | 6.56 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 8.6 | 43 | 1 | 2 | 1 | 2 | null | null | 2 | 4 | 4.2 | 21 | 2.75 | 11 | 2 | 6 | 2 | 4 | 1 | 2 | 2 | 4 | 1 | 3 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 4 |
| 5238cb04-0624-5fd9-828f-7b892821f4ba | A. Cervera | Tobías Ariel Cervera Cadi | 2002-08-06 | Argentina | None | Argentina | Attacker | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 1 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 1 |
| 5f74cfe9-a323-530e-a159-6798f9a084d0 | A. Colazo | Rodrigo Agustín Colazo | 2000-11-15 | Argentina | Córdoba | Argentina | Attacker | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 4 | 36.25 | 145 | 6.43 | 1 | 1 | null | null | 0 | 0 | 0 | 0 | null | null | 6 | 24 | 1 | 1 | 2.5 | 5 | null | null | null | null | 8.25 | 33 | 4.33 | 13 | 2.5 | 5 | 2 | 2 | null | null | 1 | 1 | 1 | 3 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 2 |
| cf4cda4a-489a-5baf-929d-32df14d3352a | A. Costa | Ayrton Enrique Costa | 1999-07-12 | Argentina | Quilmes | Argentina | Defender | 179 | 72 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 94.2 | 471 | 6.92 | 1 | null | null | null | 0 | 0 | 0 | 0 | null | null | 48.8 | 244 | 1 | 2 | 2.33 | 7 | 1 | 1 | 2.75 | 11 | 9.8 | 49 | 6.4 | 32 | 2 | 6 | 1.33 | 4 | 1 | 1 | 1.33 | 4 | 1 | 3 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | 2 | 2 | 0 | 0 |
| 30e3197d-211c-5d4f-8b18-e5483d78aaca | A. Cuello | Alexis Ricardo Cuello | 2000-02-18 | Argentina | Dock Sud | Argentina | Attacker | 170 | 65 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 93 | 465 | 7.32 | 2.25 | 2 | 2 | 2 | 0.67 | 2 | 0 | 0 | null | null | 14.4 | 72 | 1.67 | 5 | 1.25 | 5 | 1 | 1 | 1 | 2 | 19.6 | 98 | 9.6 | 48 | 5.4 | 27 | 3 | 15 | 1 | 1 | 2.2 | 11 | 2.67 | 8 | 2 | 0 | null | null | null | null | 1 | 0 | null | null | 1.5 | 3 | 0 | 0 |
| f21cd1f5-0b6b-53f3-97e9-0be5f2a83eb9 | A. Díaz | Alexander Díaz | 2000-03-22 | Argentina | 9 de Julio | Argentina | Attacker | 172 | 69 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 3 | 3 | 58.33 | 175 | 6.57 | null | null | null | null | null | null | 0 | 0 | null | null | 10 | 30 | 2 | 2 | 1 | 1 | null | null | null | null | 10.67 | 32 | 5.67 | 17 | 1.67 | 5 | 1 | 2 | 1 | 1 | 2.33 | 7 | 3 | 3 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 1 |
| 6f627041-05bd-5133-b1f1-0d1518bf10b3 | A. Falcon | None None | None | None | None | None | Defender | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 3 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 3 |
| 85532719-a247-53b8-ab43-cd030c4a3fa6 | A. Falcón | Agustín Falcón | 2005-01-21 | Argentina | Córdoba | Argentina | Defender | 179 | 79 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 1 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 1 |
| cd57a8e4-bc91-50fa-a722-7fb43c9bb87c | A. Fernández | Adrián Marcos Fernández | 2001-05-20 | Argentina | Avellaneda | Argentina | Midfielder | 183 | 75 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 2 | 7.5 | 15 | 6.7 | 1 | 1 | null | null | null | null | 0 | 0 | null | null | 2 | 4 | null | null | null | null | null | null | null | null | 2.5 | 5 | 1 | 2 | 1 | 1 | 1 | 1 | null | null | 1 | 1 | 1 | 1 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 4 |
| e6977caa-06dc-5723-8984-c60f4761841f | A. Forneris | Alan Forneris | 2005-01-28 | Argentina | Balnearia | Argentina | Midfielder | 188 | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 4 |
| bbe8d4b8-a16b-5542-abab-3dbc67c47bdf | A. Gaich | Adolfo Julián Gaich | 1999-02-26 | Argentina | Córdoba | Argentina | Attacker | 190 | 94 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 2 | 35.5 | 71 | 6.45 | 1 | 1 | null | null | 0 | 0 | 0 | 0 | null | null | 6 | 12 | null | null | null | null | null | null | null | null | 3 | 6 | 1 | 1 | 1 | 1 | null | null | null | null | 1 | 1 | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 5 |
| f7230d93-d9f7-51cc-a44f-22c7c56dd9ef | A. García | Agustín Eugenio García Basso | 1992-03-26 | Argentina | Vedia | Argentina | Defender | 178 | 78 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 3 | 80 | 240 | 6.83 | 1 | null | null | null | 0 | 0 | 0 | 0 | null | null | 77.67 | 233 | 1 | 1 | 1.5 | 3 | 1 | 1 | 2 | 4 | 6 | 18 | 4 | 12 | 1 | 1 | 1 | 1 | 1 | 2 | 1 | 1 | 1.33 | 4 | 2 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 1 |
| a5605422-b416-5363-a63a-956648a9c695 | A. Gelsomino | None None | None | None | None | None | Defender | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 1 | 45 | 45 | 6.3 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 9 | 9 | null | null | 2 | 2 | null | null | 1 | 1 | 4 | 4 | 2 | 2 | null | null | null | null | null | null | null | null | 1 | 1 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 4 |
| aa51b1a2-43ba-5d13-8646-52d601742577 | A. Griguol | None None | None | None | None | None | Defender | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 1 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 1 |
| 06e52c15-0a61-539f-8bb7-fb601d66fec1 | A. Guich | None None | None | None | None | None | Defender | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 3 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 3 |
| ff7a3ac0-5cdf-5673-bd26-b97e0e3ca550 | A. Hausch | Agustín Hausch | 2003-05-21 | Argentina | Baradero | Argentina | Attacker | 177 | 69 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 3 | 19.33 | 58 | 6.5 | null | null | null | null | null | null | 0 | 0 | null | null | 6.5 | 13 | null | null | null | null | null | null | 1 | 1 | 3.5 | 7 | 1.5 | 3 | 1.5 | 3 | 1 | 1 | 1 | 1 | 1 | 2 | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 5 |
| 2fe94d6f-a73e-5d65-84e6-e25df4873ebd | A. Ladstatter | Agustín Ladstatter | 2005-06-05 | Argentina | None | Argentina | Defender | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 4 | 27 | 108 | 6.48 | 1 | null | null | null | 0 | 0 | 0 | 0 | null | null | 5 | 20 | 1 | 1 | null | null | null | null | null | null | 4 | 12 | 1 | 2 | 2 | 2 | null | null | 1 | 1 | 1 | 1 | 2 | 2 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | 1 | 1 | 0 | 5 |
| 0a8dca87-afd1-5af3-b348-bda20e924397 | A. Lagos | Álvaro Agustín Lagos | 2001-10-09 | Argentina | La Cañada | Argentina | Defender | 191 | 73 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 4 | 13 | 52 | 6.7 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 3 | 12 | 1 | 1 | 1 | 1 | null | null | null | null | 2.5 | 5 | 1.5 | 3 | 1 | 1 | 1 | 1 | null | null | 1 | 1 | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 5 |
| 6903c073-93ab-5a57-98bf-2de01e6e3347 | A. Laprida | None None | None | None | None | None | Attacker | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 2 | 2 | 26 | 52 | 6.75 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 8 | 16 | null | null | 1.5 | 3 | null | null | null | null | 8.5 | 17 | 5.5 | 11 | 3.5 | 7 | 2.5 | 5 | null | null | 1 | 2 | 1.5 | 3 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 2 |
| 5faf6464-2ff1-5af2-b3ab-e3a3370f8cce | A. Lastra | Agustín Jesús Lastra | 2001-01-02 | Argentina | Teniente Berdina | Argentina | Goalkeeper | 194 | 88 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 4 |
| 22ccd092-5a45-5fdb-ba53-6bd79282c33a | A. Lescano | Alan Hernán Lescano | 2001-11-11 | Argentina | Bolívar | Argentina | Attacker, Midfielder | 182 | 67 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 88 | 440 | 6.96 | 2.33 | 1.33 | null | null | null | null | 0 | 0 | null | null | 38.8 | 194 | 1.5 | 6 | 3.25 | 13 | null | null | 2 | 6 | 10.8 | 54 | 6.2 | 31 | 1.4 | 7 | 1.33 | 4 | 1.25 | 5 | 2 | 10 | 1.33 | 4 | 1 | 0 | null | null | null | null | 0 | 0 | null | null | 1 | 1 | 5 | 0 |
| 301e4e19-3d31-56a5-9ec6-a8f5184b9523 | A. Lezcano | None None | None | None | None | None | Midfielder | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 1 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 1 |
| 245ab619-00ca-5a2f-8218-fcf93fc693da | A. Luna | Alex Nahuel Luna | 2004-03-31 | Argentina | Rafaela | Argentina | Midfielder | 174 | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 4 | 87.25 | 349 | 6.9 | 2.5 | 2.33 | 1 | 1 | 0 | 0 | 0 | 0 | null | null | 28.25 | 113 | 1.67 | 5 | 1.5 | 6 | null | null | 1.33 | 4 | 13.5 | 54 | 7.25 | 29 | 3.5 | 14 | 2.5 | 10 | 3 | 3 | 4 | 12 | 1.67 | 5 | 2 | 0 | 1 | 1 | null | null | 0 | 0 | null | null | null | null | 0 | 0 |
| ee332169-8932-5c92-8a3d-d2e48660f60f | A. Maciel | Alejandro Ramón Maciel | 1997-04-22 | Argentina | El Dorado | Argentina | Defender | 183 | 87 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 3 | 3 | 94 | 282 | 6.9 | 1 | null | null | null | 0 | 0 | 0 | 0 | null | null | 41 | 123 | null | null | 2 | 6 | 1 | 2 | 1 | 2 | 12.67 | 38 | 5 | 15 | null | null | null | null | 1 | 2 | 1 | 1 | 1.33 | 4 | 2 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 |
| b28a89a5-ac61-5f09-8bf9-c699a2ac2201 | A. Maldonado | Luis Alexis Maldonado | 1997-09-02 | Argentina | La Rioja | Argentina | Defender | 188 | 86 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 4 | 81.5 | 326 | 6.85 | 1 | null | null | null | 0 | 0 | 0 | 0 | null | null | 31.5 | 126 | null | null | 2.33 | 7 | 1 | 2 | 1 | 2 | 6 | 24 | 3.5 | 14 | 1 | 1 | 1 | 1 | 1 | 2 | null | null | 2 | 4 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 |
| aef8c383-67fd-5533-bf54-2114cdfb2657 | A. Marchesín | Agustín Federico Marchesín | 1988-03-16 | Argentina | San Cayetano | Argentina | Goalkeeper | 188 | 82 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 94.2 | 471 | 6.88 | null | null | null | null | 0 | 0 | 0.8 | 4 | 1.8 | 9 | 24.8 | 124 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 0 | 0 |
| dafd2d74-338c-5ee3-98a7-1b0c6904b398 | A. Martegani | Agustín Alberto Martegani | 2000-05-20 | Argentina | Rojas | Argentina | Midfielder | 183 | 74 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 3 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 3 |
| dafd2d74-338c-5ee3-98a7-1b0c6904b398 | A. Martegani | Agustín Alberto Martegani | 2000-05-20 | Argentina | Rojas | Argentina | Midfielder | 182 | 74 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 3 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 3 |
| f8a68183-01a5-5caf-9466-8860ba9512f3 | A. Martínez | Adrián Emmanuel Martínez | 1992-07-07 | Argentina | None | Argentina | Attacker | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 93.4 | 467 | 6.58 | 2.4 | 1.5 | 1 | 2 | 0 | 0 | 0 | 0 | null | null | 14 | 70 | 2 | 4 | 2 | 2 | null | null | null | null | 9.4 | 47 | 3.67 | 11 | 2.33 | 7 | 1.5 | 3 | 1 | 1 | 1 | 3 | 4 | 8 | 1 | 0 | null | null | null | null | 1 | 0 | null | null | 1 | 1 | 0 | 0 |
| 699e4f9a-0840-5dc5-87a6-28b2a05d9de2 | A. Martínez | Silvio Alejandro Martínez | 1997-07-12 | Argentina | González Catán | Argentina | Midfielder | 171 | 70 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 4 | 59.25 | 237 | 6.65 | 1 | null | null | null | 0 | 0 | 0 | 0 | null | null | 10.25 | 41 | 1 | 2 | 2 | 6 | null | null | 1 | 1 | 8.25 | 33 | 4 | 16 | 3.33 | 10 | 1.33 | 4 | 1.5 | 3 | 1.33 | 4 | 1 | 2 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 1 |
| 04307a9a-1a3b-5641-ab42-634110e9a062 | A. Massaccesi | Agustín Nicolás Massaccesi | 2002-09-17 | Argentina | None | Argentina | Defender | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 2 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 2 |
| f17d0d8b-5f0d-545f-bef4-2321831b7681 | A. Max | Augusto Max | 1992-08-10 | Argentina | San Miguel de Tucumán | Argentina | Midfielder | 168 | 69 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 4 | 84.5 | 338 | 6.93 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 26.25 | 105 | null | null | 2.75 | 11 | 1.5 | 3 | 2 | 4 | 7.25 | 29 | 4.5 | 18 | 1 | 1 | null | null | 1.67 | 5 | 1.33 | 4 | 1 | 2 | 1 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 1 |
| 0251dc5f-f92a-59c3-94a9-bb74e2fa8367 | A. Medina | Diego Agustín Medina | 2006-10-24 | Argentina | San Nicolás de los Arroyos | Argentina | Midfielder | 175 | 75 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 4 | 66 | 264 | 6.5 | 1 | null | null | null | 0 | 0 | 0 | 0 | null | null | 41.25 | 165 | 1 | 1 | 2.5 | 10 | null | null | 1.25 | 5 | 8.5 | 34 | 4 | 16 | null | null | null | null | 2.5 | 5 | 1 | 2 | 1.75 | 7 | 1 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 1 |
| 4a51cdd0-c4f0-5e0c-9819-9228a4dd32ba | A. Molinas | Aaron Nicolás Molinas | 2000-08-02 | Argentina | Lomas del Mirador | Argentina | Midfielder | 175 | 67 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 4 | 92.75 | 371 | 7.5 | 1.5 | 2 | null | null | 1 | 2 | 0 | 0 | null | null | 48.75 | 195 | 1.25 | 5 | 2.5 | 5 | 1 | 1 | 1.67 | 5 | 7.5 | 30 | 8 | 16 | 8 | 8 | 6 | 6 | 1.5 | 3 | 2 | 4 | 2 | 4 | 1 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 2 | 0 |
| d1663b9d-26ab-5f5e-bdd9-093dbe3506f4 | A. Morales | Agustín Mario Morales | 1999-02-14 | Argentina | Jesús María | Argentina | Attacker | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 3 | 1 | 21 | 21 | 6.5 | null | null | null | null | null | null | 0 | 0 | null | null | 1 | 1 | null | null | null | null | null | null | null | null | 1 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 3 |
| f30982cb-d866-520d-af69-f04fa7529fad | A. Moreno | Aníbal Ismael Moreno | 1999-05-13 | Argentina | San Fernando del Valle de Catamarca | Argentina | Midfielder | 178 | 74 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 88.4 | 442 | 6.94 | 1 | 1 | null | null | 0 | 0 | 0 | 0 | null | null | 57 | 285 | 1 | 2 | 2.4 | 12 | 1 | 1 | 2.67 | 8 | 7.4 | 37 | 4 | 20 | null | null | null | null | 1 | 3 | 1 | 2 | 1.25 | 5 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 |
| 0db9bbac-0506-53af-8e3a-59595cb56322 | A. Méndez | Armando Jesús Méndez Alcorta | 1996-03-31 | Uruguay | Rodríguez | Uruguay | Defender | 176 | 78 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 4 | 93.25 | 373 | 6.58 | 1 | null | null | null | 0 | 0 | 0 | 0 | null | null | 15.5 | 62 | 1 | 2 | 5.5 | 22 | null | null | 2 | 8 | 15.25 | 61 | 8.5 | 34 | 2.67 | 8 | 1.5 | 3 | 1.75 | 7 | 1.33 | 4 | 1 | 4 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 |
| 998b8f4d-4496-51fa-b3f2-5e33d6a31e93 | A. Módica | Agustín Ignacio Módica | 2003-01-12 | Italy | None | Italy | Attacker | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 3 | 62.33 | 187 | 6.63 | 1.67 | 1.5 | 1 | 1 | 0 | 0 | 0 | 0 | null | null | 11.33 | 34 | 1 | 1 | 1 | 1 | null | null | 1 | 1 | 10.67 | 32 | 4.33 | 13 | 4 | 4 | 2 | 2 | 1 | 1 | 1.67 | 5 | 1.5 | 3 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 3 |
| fcadc554-1b32-5527-b96e-e2311ef249c4 | A. Osella | Alejo Osella | 2000-09-30 | Argentina | None | Argentina | Defender | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 79 | 395 | 7.1 | 2 | 1.67 | 1 | 2 | 0 | 0 | 0 | 0 | null | null | 17.2 | 86 | 3 | 3 | 3 | 12 | null | null | 1 | 1 | 12.6 | 63 | 7 | 35 | 2 | 8 | 1 | 1 | 1.4 | 7 | 1 | 3 | 1.5 | 3 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 |
| 80fa7e25-424f-5fc8-b255-0d68a0909f83 | A. Osorio | Abiel Alesio Osorio | 2002-06-13 | Argentina | None | Argentina | Attacker | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 3 | 3 | 58 | 174 | 6.57 | 1 | 1 | null | null | null | null | 0 | 0 | null | null | 10 | 30 | null | null | 1 | 1 | null | null | null | null | 9.33 | 28 | 4.33 | 13 | 2 | 4 | 1 | 1 | 3 | 3 | 2.67 | 8 | 1 | 2 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | 1 | 1 | 0 | 1 |
| 07948331-1f7a-5250-8a6b-10977eeb9cb1 | A. Oviedo | Alfio Ovidio Oviedo Álvarez | 1995-12-18 | Paraguay | Ypacaraí | Paraguay | Attacker | 181 | 85 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 2 | 27 | 54 | 6.8 | 1 | 1 | null | null | null | null | 0 | 0 | null | null | 5 | 10 | 1 | 1 | 1 | 1 | null | null | null | null | 8.5 | 17 | 4 | 8 | null | null | null | null | null | null | 1 | 2 | 1.5 | 3 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 4 |
| 51a5c1af-9ea8-50e1-8cf7-b791a64e262b | A. Portillo | Ayrton Nicolás Portillo | 2000-08-18 | Argentina | Santa Fe | Argentina | Midfielder | 182 | 72 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 96.4 | 482 | 7.04 | 1.33 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | null | null | 20.8 | 104 | 1 | 3 | 2.5 | 10 | 1 | 1 | 3 | 6 | 7 | 35 | 3.4 | 17 | 1.67 | 5 | 1 | 1 | 2 | 2 | 1.67 | 5 | 1 | 2 | 0 | 0 | 1 | 1 | null | null | 0 | 0 | null | null | null | null | 0 | 0 |
| 495423b1-4a07-5914-ae3f-0cb2e5673e67 | A. Quiroga | Agustin Quiroga | 2002-04-06 | Argentina | None | Argentina | Defender | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 3 | 3 | 79 | 237 | 6.6 | 1 | null | null | null | 0 | 0 | 0 | 0 | null | null | 28.33 | 85 | 1 | 1 | 1 | 2 | 1 | 1 | 1.67 | 5 | 10 | 30 | 5 | 15 | 2 | 4 | 1 | 1 | 1.5 | 3 | 1.33 | 4 | 4 | 4 | 1 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 1 |
| 439b8874-9adf-550d-bfe2-5f4d88363fea | A. Quiroz | Aaron Facundo Quiroz | 2001-10-31 | Argentina | Monte Grande | Argentina | Defender | 174 | 72 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 3 | 63.33 | 190 | 6.5 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 44.5 | 89 | null | null | 1 | 2 | 1 | 1 | 1.5 | 3 | 6 | 12 | 2.5 | 5 | null | null | null | null | 1 | 1 | null | null | 1 | 1 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 3 |
| 8cb888a3-bfaa-5fba-9767-af2a4f019dbd | A. Rivas | None None | None | None | None | None | Midfielder | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 1 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 1 |
| 3e868403-8211-5213-8d4b-098dfe8e3421 | A. Romero | None None | None | None | None | None | Defender | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 1 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 1 |
| 0e5e9c61-e640-5a26-a895-be05b5e66ffe | A. Ruberto | Agustín Fabian Ruberto | 2006-01-14 | Argentina | Buenos Aires | Argentina | Attacker | 183 | 80 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 2 | 50 | 100 | 6.4 | 1 | 1 | null | null | 0 | 0 | 0 | 0 | null | null | 10.5 | 21 | null | null | null | null | null | null | null | null | 7 | 14 | 2 | 4 | 1 | 1 | 1 | 1 | null | null | 1 | 1 | 1 | 1 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 4 |
| 8e2b25b4-c578-51c6-8f1f-af4b48821da0 | A. Sandez | Gonzalo Agustín Sandez | 2001-01-16 | Argentina | Lanús | Argentina | Defender | 179 | 72 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 3 | 77 | 231 | 6.4 | 2 | 1 | null | null | 0 | 0 | 0 | 0 | null | null | 25.67 | 77 | 2 | 2 | 1.5 | 3 | 1 | 2 | 1 | 2 | 6.67 | 20 | 3 | 9 | 2 | 2 | 1 | 1 | 1.33 | 4 | 1 | 1 | 1 | 1 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 1 |
| 8939bdb9-a052-5396-b54f-b3259f275a9c | A. Schott | Augusto Schott | 2000-01-17 | Argentina | Arroyito | Argentina | Defender | 175 | 72 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 93.8 | 469 | 6.72 | 1.67 | 1.5 | 1 | 1 | 0 | 0 | 0 | 0 | null | null | 32.4 | 162 | 2 | 6 | 3.67 | 11 | null | null | 1.25 | 5 | 7.8 | 39 | 5.2 | 26 | 1.67 | 5 | 1 | 2 | 1 | 1 | 2 | 6 | 1 | 3 | 2 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 |
| 1288807c-b06e-5172-8c12-47f1c0729613 | A. Segovia | Alexis Sebastián Segovia | 2004-06-15 | Argentina | None | Argentina | Midfielder, Attacker | 176 | 67 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 3 | 1 | 11 | 11 | 6.3 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 2 | 2 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 3 |
| c43d7d47-f068-5692-b83b-732b5a673c28 | A. Solari | Augusto Jorge Mateo Solari | 1992-01-03 | Argentina | Rosario | Argentina | Midfielder | 180 | 80 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 1 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 1 |
| 04441ee7-a835-5f24-9488-9a9014c73357 | A. Sosa | Alan Alejandro Sosa | 2003-05-05 | Argentina | None | Argentina | Midfielder | 183 | 74 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 46.4 | 232 | 6.68 | 1 | 1 | null | null | 0 | 0 | 0 | 0 | null | null | 19.8 | 99 | null | null | 1.5 | 3 | null | null | 1 | 3 | 5.8 | 29 | 2.4 | 12 | 2.4 | 12 | 1.33 | 4 | 1.33 | 4 | 3 | 3 | 1 | 1 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 4 |
| 6f19523c-f58d-5624-82a6-d75b9b363bb3 | A. Soto | Alexis Nelson Nahuel Soto | 1993-10-20 | Argentina | Avellaneda | Argentina | Defender | 176 | 75 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 3 | 67.67 | 203 | 7.1 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 26 | 78 | null | null | 1 | 3 | 2 | 2 | 1 | 1 | 4.33 | 13 | 2 | 6 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 3 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 2 |
| 325cc218-db4c-54c7-a2c6-959efbc7ec90 | A. Spörle | Adrián Marcelo Spörle | 1995-07-13 | Argentina | Centenario | Argentina | Defender | 182 | 76 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 4 | 67.5 | 270 | 6.9 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 23.75 | 95 | 1.5 | 3 | 3 | 6 | null | null | 2 | 2 | 6.33 | 19 | 3 | 9 | 2 | 2 | 1 | 1 | 1 | 2 | null | null | 2.33 | 7 | 2 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 2 |
| 7fd4a108-cb3a-5118-91c2-d1bbf375b65b | A. Steimbach | Alexis Steimbach | 2002-07-25 | Argentina | None | Argentina | Midfielder, Defender | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 91 | 455 | 7.1 | 1.5 | null | null | null | 0 | 0 | 0 | 0 | null | null | 32.6 | 163 | 1.67 | 5 | 3.75 | 15 | 1 | 1 | 1.33 | 4 | 12.4 | 62 | 8 | 40 | 2 | 10 | 1.75 | 7 | 1.67 | 5 | 2.75 | 11 | 1.67 | 5 | 1 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 |
| eb2467b6-1945-5f99-a153-9456e7da4a72 | A. Sánchez | Adrián Guillermo Sánchez | 1999-05-14 | Argentina | Don Torcuato | Argentina | Midfielder | 177 | 73 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 86.6 | 433 | 7.18 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 55.4 | 277 | 2 | 2 | 4.25 | 17 | 1 | 1 | 2 | 6 | 8.6 | 43 | 5.2 | 26 | 3 | 3 | 2 | 2 | 1.5 | 3 | 1 | 3 | 4 | 8 | 1 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 |
| 3b9e1ed0-3978-583e-970d-d833d8066e81 | A. Velasco | Alan Agustín Velasco | 2002-07-27 | Argentina | Quilmes | Argentina | Midfielder, Attacker | 167 | 63 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 1 | 1 | 69 | 69 | 6.9 | null | null | null | null | null | null | 0 | 0 | null | null | 41 | 41 | 1 | 1 | 1 | 1 | null | null | null | null | 12 | 12 | 6 | 6 | 4 | 4 | 1 | 1 | null | null | 4 | 4 | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 |
| a6c4ca79-5796-5ca5-9cd7-a2df852ef1aa | A. Verón | Álex Verón | 2008-10-24 | Argentina | None | Argentina | Attacker | 175 | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 2 | 13 | 26 | 6.45 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 3 | 6 | null | null | 1 | 1 | null | null | 1 | 1 | 2.5 | 5 | 1.5 | 3 | 1.5 | 3 | 1 | 2 | 1 | 1 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 5 |
| 506342b0-892b-576e-b364-bda5b3f2852a | A. Vigo | Alex Vigo Gamaliel | 1999-04-28 | Argentina | Paraná | Argentina | Defender | 175 | 74 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 3 | 1 | 41 | 41 | 7.3 | 1 | null | null | null | null | null | 0 | 0 | null | null | 15 | 15 | null | null | 1 | 1 | null | null | 2 | 2 | 4 | 4 | 3 | 3 | null | null | null | null | 1 | 1 | 1 | 1 | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | 1 | 1 | 0 | 3 |
| b490fc47-2ec4-580f-8134-5fd48bbaf863 | A. Villarreal | Alejandro Villarreal Zuluaga | 2005-07-28 | Colombia | Medellín | Colombia | Attacker | 189 | 85 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 2 | 30.5 | 61 | 6.4 | null | null | null | null | null | null | 0 | 0 | null | null | 3.5 | 7 | null | null | null | null | null | null | null | null | 4.5 | 9 | 1 | 2 | 1 | 1 | null | null | 1 | 1 | 1 | 1 | 1.5 | 3 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 4 |
| ce4e84f8-3988-538d-8158-cd1fda968023 | A. Véliz | Alejo Véliz | 2003-09-19 | Argentina | Santa Fe | Argentina | Attacker | 186 | 77 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 4 | 76.25 | 305 | 6.73 | 1.5 | 1.33 | 1 | 1 | 0 | 0 | 0 | 0 | null | null | 9.75 | 39 | 1 | 1 | 2 | 2 | null | null | null | null | 12.75 | 51 | 5.5 | 22 | 1.33 | 4 | 1 | 2 | 1 | 1 | 2.33 | 7 | 1 | 3 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | 1 | 2 | 0 | 0 |
| da4787f3-057e-5c2e-a2a1-13327b27d47d | A. Werner | Axel Wilfredo Werner | 1996-02-28 | Argentina | Santa Fe | Argentina | Goalkeeper | 192 | 85 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 94.2 | 471 | 7.34 | null | null | null | null | 0 | 0 | 1 | 5 | 3.2 | 16 | 24.4 | 122 | null | null | null | null | null | null | null | null | 2 | 2 | 2 | 2 | null | null | null | null | null | null | 1 | 1 | null | null | 0 | 0 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 0 | 0 |
| 5531027d-0ce0-5a25-8347-9943d253c864 | Agustín Seyral | Agustín Seyral Echecopar | 2005-01-31 | Argentina | None | Argentina | Defender | 191 | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 2 | 9.5 | 19 | 6.6 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 3 | 6 | null | null | null | null | null | null | null | null | 1.5 | 3 | 1 | 2 | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 5 |
| 9c0c25e1-d84e-5620-adf5-5f9b71423d08 | Alcides Benítez | Alcides Javier Benítez Cabrera | 2002-06-28 | Paraguay | Asunción | Paraguay | Defender | 168 | 61 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 61.6 | 308 | 6.92 | 1 | 1 | null | null | 0 | 0 | 0 | 0 | null | null | 21.2 | 106 | 1 | 1 | 2.2 | 11 | null | null | 1.5 | 3 | 7 | 35 | 4.4 | 22 | 1.75 | 7 | 1.5 | 3 | 1 | 2 | 1.67 | 5 | 1.5 | 3 | 1 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 2 |
| d3dc1ad5-4ac0-5dd0-a404-e3d78d75be36 | Alexis González | Alexis González | 2005-02-13 | Argentina | Posadas | Argentina | Attacker | 182 | 78 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 1 | 17 | 17 | 6.5 | null | null | null | null | null | null | 0 | 0 | null | null | 2 | 2 | null | null | null | null | 1 | 1 | null | null | 3 | 3 | null | null | null | null | null | null | null | null | null | null | 1 | 1 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 5 |
| 5f961d51-b4b5-5a6b-bde0-642456f7ed53 | Ander Herrera | Ander Herrera Agüera | 1989-08-14 | Spain | Bilbao | Spain | Midfielder | 182 | 71 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 3 | 3 | 67 | 201 | 6.9 | 1 | 1 | null | null | null | null | 0 | 0 | null | null | 50.33 | 151 | null | null | 1 | 1 | null | null | null | null | 4.67 | 14 | 2 | 6 | 1 | 1 | null | null | 2 | 2 | 1.33 | 4 | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 1 |
| 6f52eb8e-9e42-5726-be6c-75e2ea657c3e | Antony Daniel Alonso Espinoza | Antony Daniel Alonso Espinoza | 1998-05-11 | Uruguay | Uruguay | Attacker | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 4 | 97 | 388 | 6.18 | 1.67 | 2 | 1 | 1 | 0 | 0 | 0 | 0 | null | null | 13.25 | 53 | 1.5 | 3 | 2 | 6 | 1 | 1 | 1 | 1 | 14.75 | 59 | 5.75 | 23 | 1.33 | 4 | 1 | 3 | 1.67 | 5 | null | null | 3 | 9 | 1 | 0 | null | null | null | null | 0 | 0 | null | null | 1 | 1 | 0 | 0 | |
| 6f52eb8e-9e42-5726-be6c-75e2ea657c3e | Antony Daniel Alonso Espinoza | Antony Daniel Alonso Espinoza | 1998-05-11 | Uruguay | None | Uruguay | Attacker | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 4 | 97 | 388 | 6.18 | 1.67 | 2 | 1 | 1 | 0 | 0 | 0 | 0 | null | null | 13.25 | 53 | 1.5 | 3 | 2 | 6 | 1 | 1 | 1 | 1 | 14.75 | 59 | 5.75 | 23 | 1.33 | 4 | 1 | 3 | 1.67 | 5 | null | null | 3 | 9 | 1 | 0 | null | null | null | null | 0 | 0 | null | null | 1 | 1 | 0 | 0 |
| 5fada485-2d1e-5ec2-a07b-115c10bfa2a4 | B. Aguirre | Brian Nicolás Aguirre | 2003-01-06 | Argentina | Granadero Baigorria | Argentina | Attacker, Midfielder | 175 | 66 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 2 | 35.5 | 71 | 6.7 | 2 | null | null | null | 1 | 1 | 0 | 0 | null | null | 5.5 | 11 | 1 | 1 | null | null | null | null | null | null | 3.5 | 7 | 1.5 | 3 | 1.5 | 3 | 1 | 1 | null | null | 1 | 1 | 1 | 1 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 4 |
| 5fada485-2d1e-5ec2-a07b-115c10bfa2a4 | B. Aguirre | Brian Nicolás Aguirre | 2003-01-06 | Argentina | Granadero Baigorria | Argentina | Attacker | 175 | 65 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 2 | 35.5 | 71 | 6.7 | 2 | null | null | null | 1 | 1 | 0 | 0 | null | null | 5.5 | 11 | 1 | 1 | null | null | null | null | null | null | 3.5 | 7 | 1.5 | 3 | 1.5 | 3 | 1 | 1 | null | null | 1 | 1 | 1 | 1 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 4 |
| b74879e4-3a17-57ad-bc7c-811a4cf3a982 | B. Armoa | Blas Esteban Armoa Núñez | 2000-02-03 | Paraguay | Luque | Paraguay | Attacker | 179 | 67 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 1 | 1 | 28 | 28 | 6.2 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 6 | 6 | null | null | null | null | null | null | null | null | 3 | 3 | null | null | 1 | 1 | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | 1 | 1 | 0 | 1 |
| b35ef20a-0624-53cb-bd44-14c4fff9bf57 | B. Barticciotto | Bruno Barticciotto Di Bartolo | 2001-05-07 | Chile | None | Chile | Attacker | 177 | 77 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 2 | 2 | 20.5 | 41 | 6.55 | null | null | null | null | 1 | 1 | 0 | 0 | null | null | 6 | 12 | 2 | 2 | 1 | 1 | null | null | null | null | 5.5 | 11 | 2 | 2 | 2 | 4 | 1 | 1 | 1 | 1 | null | null | 2 | 2 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 1 |
| 0c22729e-1ca8-5e88-ab49-2bbd09c05085 | B. Cabrera | Bruno Leonel Cabrera | 1997-04-28 | Argentina | La Plata | Argentina | Defender | 180 | 73 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 2 | 1 | 61 | 61 | 5.9 | 1 | null | null | null | 0 | 0 | 0 | 0 | null | null | 14 | 14 | null | null | null | null | 1 | 1 | null | null | 8 | 8 | 6 | 6 | null | null | null | null | null | null | 1 | 1 | 2 | 2 | 2 | 1 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 1 |
| b2af3e01-583b-5332-83ba-afe83bf245a8 | B. Cabrera | Bruno Cabrera | 2003-06-21 | Argentina | None | Argentina | Attacker | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 3 | 16.33 | 49 | 6.63 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 4.33 | 13 | 1 | 1 | 1 | 2 | null | null | 1 | 1 | 2.67 | 8 | 1.67 | 5 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 2 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | 1 | 1 | 0 | 5 |
| e4643393-059d-5207-80c0-7c6bf51310f6 | B. Cortés | Brayan Josué Cortés Fernández | 1995-03-11 | Chile | Iquique | Chile | Goalkeeper | 185 | 87 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 96.6 | 483 | 7.04 | null | null | null | null | null | null | 0.4 | 2 | 2 | 8 | 34.2 | 171 | null | null | null | null | null | null | null | null | 1 | 2 | 1 | 2 | 1 | 1 | 1 | 1 | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 0 | 0 |
| 0bebee2c-c059-51ea-8387-1d92ffe80f85 | B. Cuello | Brahian David Cuello | 1997-09-30 | Argentina | Merlo | Argentina | Midfielder | 172 | 71 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 3 | 1 | 28 | 28 | 6.6 | 1 | 1 | null | null | 0 | 0 | 0 | 0 | null | null | 10 | 10 | null | null | null | null | null | null | null | null | 3 | 3 | 2 | 2 | null | null | null | null | null | null | 1 | 1 | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 3 |
| 165e1522-4cce-59ab-9346-b4285075d4d8 | B. DadÃn | Bautista Dadín | 2006-05-20 | Argentina | None | Argentina | Attacker | 184 | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 3 | 16.67 | 50 | 6.13 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 4.67 | 14 | null | null | 2 | 2 | 1 | 1 | null | null | 8 | 16 | 2 | 2 | 3 | 3 | null | null | 1 | 1 | null | null | 1 | 2 | 1 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 5 |
| 64469c4e-be07-51ce-b37e-8e4fb9d5a969 | B. Ferreyra | Brian Nicolás Ferreyra | 1996-11-11 | Argentina | Oliva | Argentina | Attacker | 189 | 84 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 3 | 21 | 63 | 6.37 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 3.67 | 11 | null | null | 1 | 1 | null | null | null | null | 3.67 | 11 | 1 | 3 | null | null | null | null | null | null | null | null | 1 | 1 | 1 | 0 | null | null | null | null | 0 | 0 | null | null | 1 | 1 | 0 | 4 |
| d72c5221-b38c-5bd6-b7e2-77c588181487 | B. Gallego | Baltasar Gallego Rodríguez | 2003-07-09 | Argentina | Monte Hermoso | Argentina | Midfielder | 173 | 63 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 4 | 42 | 168 | 6.75 | 1.33 | 1 | null | null | 0.5 | 1 | 0 | 0 | null | null | 17.75 | 71 | 1 | 2 | 1.5 | 3 | null | null | 2 | 2 | 6.25 | 25 | 3 | 9 | 1.5 | 3 | 1 | 1 | 1 | 2 | 1.33 | 4 | 1.25 | 5 | 2 | 0 | null | null | null | null | 0 | 0 | null | null | 1 | 1 | 0 | 3 |
| d57d38eb-9e8f-5670-86ec-c9f678a6a106 | B. Gerez | Bautista Gerez | 2007-01-13 | Argentina | None | Argentina | Attacker | 183 | 86 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 1 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 1 |
| cbc8af7e-93d8-506d-83af-712ed1405dbf | B. González | Benjamín González | 2007-05-24 | Argentina | Wilde | Argentina | Defender | 179 | 62 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 2 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 2 |
| 11d9385d-41a9-5a28-af39-ed0eb1779e56 | B. Leyes | Bruno Javier Leyes Sosa | 2001-10-30 | Argentina | Mendoza | Argentina | Midfielder | 173 | 69 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 4 | 84.75 | 339 | 6.9 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 19 | 76 | null | null | 3 | 12 | 1 | 1 | 1.33 | 4 | 6.75 | 27 | 4.5 | 18 | 1 | 1 | null | null | 1 | 2 | 1 | 2 | 1.25 | 5 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 |
| ec75d4e5-150e-5a2b-a0d3-36ef69a181cb | B. Merlini | Bautista Merlini | 1995-07-04 | Argentina | Vicente López | Argentina | Midfielder | 179 | 71 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 4 | 24.75 | 99 | 6.6 | 1 | null | null | null | 0 | 0 | 0 | 0 | null | null | 8.75 | 35 | 1 | 1 | 1 | 1 | null | null | null | null | 4 | 16 | 1.75 | 7 | 1 | 2 | 1 | 1 | null | null | 1.33 | 4 | 1 | 1 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | 1 | 1 | 0 | 5 |
| 6c976ebe-30d3-5e78-ab5a-aaef6efe78cf | B. Palavecino | Blas Agustín Palavecino | 2003-03-09 | Argentina | None | Argentina | Attacker | 194 | 72 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 4 | 74.25 | 297 | 6.45 | 1 | null | null | null | 0 | 0 | 0 | 0 | null | null | 13 | 52 | 1 | 2 | 2.5 | 5 | null | null | 1 | 3 | 12.25 | 49 | 4.75 | 19 | 2 | 6 | 1 | 2 | 1 | 1 | 1.25 | 5 | 1 | 2 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | 1 | 1 | 0 | 2 |
| 7fbdfa30-168b-5fda-b928-49e8a35fdf17 | B. Pittón | Bruno Alejandro Pittón | 1993-02-01 | Argentina | Santa Fe | Argentina | Defender | 179 | 70 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 4 | 56 | 224 | 6.85 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 24.5 | 98 | 1 | 2 | 2.67 | 8 | 1 | 1 | 1.5 | 3 | 7.67 | 23 | 4.33 | 13 | 2 | 2 | 1 | 1 | 2 | 4 | 1 | 1 | 1 | 1 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 2 |
| ff90d575-853d-5fd8-a92e-e551c097dcc9 | B. Romero | Braian Ezequiel Romero | 1991-06-15 | Argentina | San Isidro | Argentina | Attacker | 180 | 70 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 2 | 2 | 86.5 | 173 | 6.55 | 3 | null | null | null | 0 | 0 | 0 | 0 | null | null | 12 | 24 | 1 | 1 | 1 | 1 | null | null | null | null | 8 | 16 | 3.5 | 7 | 2 | 2 | 1 | 1 | 1 | 1 | 2 | 4 | 1 | 2 | 1 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 2 | 0 |
| 1a1333fc-23d5-5d7d-88d7-45db5b574ade | B. Sepúlveda | Bruno Christian Sepúlveda | 1992-09-17 | Argentina | Viedma | Argentina | Attacker | 188 | 82 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 4 | 48.75 | 195 | 6.18 | 1 | null | null | null | 0 | 0 | 0 | 0 | null | null | 7.5 | 30 | 1 | 1 | 1 | 1 | null | null | 2 | 2 | 6 | 24 | 1.5 | 6 | 1 | 3 | 1 | 1 | null | null | 1 | 1 | 2 | 2 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | 1 | 1 | 0 | 3 |
| 1882ce63-371e-51ff-976f-c5f2a98b513e | B. Zuculini | Bruno Zuculini | 1993-04-02 | Argentina | Escobar | Argentina | Midfielder | 182 | 74 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 3 | 46 | 138 | 6.4 | 1 | null | null | null | null | null | 0 | 0 | null | null | 15 | 45 | 1 | 1 | 2 | 2 | null | null | null | null | 3.67 | 11 | 2.5 | 5 | 1 | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 1 | 1 | 1 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 4 |
| bb7321bb-dd92-519a-8343-b6384c4ad713 | Benjamín Bosch | Benjamín Bosch | 2005-06-15 | Argentina | None | Argentina | Attacker | 173 | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 1 | 16 | 16 | 6.5 | 1 | null | null | null | null | null | 0 | 0 | null | null | 4 | 4 | null | null | null | null | null | null | null | null | 1 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 4 |
| c0d538f7-1abf-50d4-af91-73b5a3b8bd4e | Branco Salinardi | Branco Lautaro Salinardi | 2007-04-26 | Argentina | None | Argentina | Attacker | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 2 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 2 |
| fc31a768-833a-5d08-8298-b35f2a37248c | Brandon Márquez | Brandon Márquez | 2005-02-22 | Argentina | None | Argentina | Attacker | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 2 | 28 | 56 | 6.45 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 4 | 8 | 1 | 1 | null | null | null | null | 1 | 1 | 5 | 5 | 1 | 1 | null | null | null | null | null | null | null | null | 1 | 1 | 1 | 0 | null | null | null | null | 0 | 0 | null | null | 1 | 1 | 0 | 5 |
| a773235b-acba-577d-8237-00492926f3e5 | C. Baeza | Claudio Andrés Baeza Baeza | 1993-12-23 | Chile | Los Angeles | Chile | Midfielder | 171 | 64 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 88.4 | 442 | 7.02 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 53.2 | 266 | 1 | 2 | 2.6 | 13 | 1 | 1 | 2 | 10 | 9 | 45 | 4.6 | 23 | 1.25 | 5 | 1 | 3 | 1.6 | 8 | 2 | 2 | 2.33 | 7 | 2 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 |
| 19ff209f-b292-5290-96f9-aaed93edf469 | C. Bolzan | None None | None | None | None | None | Attacker | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 2 | 1 | 22 | 22 | 6.5 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 12 | 12 | null | null | 1 | 1 | null | null | null | null | 2 | 2 | 1 | 1 | null | null | null | null | null | null | null | null | 1 | 1 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 2 |
| bd6f65eb-b426-5fcd-9e41-224c48e61c02 | C. Bravo | Claudio Nicolás Bravo | 1997-03-13 | Argentina | Lomas de Zamora | Argentina | Defender | 179 | 68 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 2 | 51.5 | 103 | 6.8 | null | null | null | null | null | null | 0 | 0 | null | null | 32 | 64 | 1 | 2 | 2 | 2 | null | null | null | null | 6 | 12 | 3 | 3 | 1 | 1 | null | null | 1 | 1 | null | null | 1 | 1 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 3 |
| a0e137f6-4178-5f65-af0b-ec9c66070b50 | C. Ferreira | Clever Domingo Ferreira Ñamandu | 2003-02-20 | Paraguay | None | Paraguay | Defender | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 1 | 27 | 27 | 6.7 | 1 | null | null | null | null | null | 0 | 0 | null | null | 10 | 10 | null | null | 2 | 2 | null | null | null | null | 5 | 5 | 4 | 4 | null | null | null | null | 1 | 1 | 1 | 1 | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 5 |
| e464cead-a942-58e4-90c5-065f9e04e017 | C. Fiermarín | Cristopher Javier Fiermarín Forlán | 1998-01-01 | Uruguay | Rosario | Uruguay | Goalkeeper | 189 | 72 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 96.4 | 482 | 7.62 | null | null | null | null | null | null | 0.6 | 3 | 2.8 | 14 | 26.2 | 131 | null | null | 1 | 1 | null | null | null | null | 2.33 | 7 | 2.33 | 7 | null | null | null | null | null | null | 1.33 | 4 | null | null | 0 | 0 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 0 | 0 |
| 462973af-7971-53f3-9cd5-457c339f2dcf | C. Ibáñez | César Román Ibáñez | 1999-06-17 | Argentina | Villa Fiorito | Argentina | Defender | 179 | 75 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 73 | 365 | 7.04 | 1 | null | null | null | 0.33 | 1 | 0 | 0 | null | null | 23.8 | 119 | 1.5 | 3 | 3.25 | 13 | 1 | 1 | 1 | 3 | 11.2 | 56 | 8.5 | 34 | 1.67 | 5 | 1 | 2 | 1 | 1 | 2.25 | 9 | 1.75 | 7 | 2 | 0 | null | null | null | null | 0 | 0 | null | null | 1 | 1 | 0 | 1 |
| cdc345bc-cb96-5f89-99ac-81a9f68b4cc7 | C. Izquierdoz | Carlos Roberto Izquierdoz | 1988-11-03 | Argentina | Lanús | Argentina | Defender | 185 | 88 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 4 | 93.75 | 375 | 7.13 | 3 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | null | null | 47.25 | 189 | 1 | 1 | 3 | 6 | 1.33 | 4 | 1.67 | 5 | 9 | 36 | 6.75 | 27 | null | null | null | null | 1 | 3 | 1.33 | 4 | 1.33 | 4 | 2 | 0 | null | null | 1 | 1 | 0 | 0 | null | null | null | null | 4 | 1 |
| 48e100d9-4c2e-502f-983d-3957e6ad429c | C. Jaime | None None | None | None | None | None | Midfielder | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 1 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 1 |
| 557ad858-5a26-5790-82a6-1aca083eb99e | C. Medina | Cristian Nicolás Medina | 2002-06-01 | Argentina | Moreno | Argentina | Midfielder | 179 | 73 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 90.8 | 454 | 6.98 | 1.2 | 1 | null | null | 0.33 | 1 | 0 | 0 | null | null | 33.4 | 167 | 1.67 | 5 | 2.75 | 11 | null | null | null | null | 11 | 55 | 6.2 | 31 | 3.75 | 15 | 1.33 | 4 | 1 | 2 | 2.6 | 13 | 2 | 2 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 |
| 12c5dbf2-27da-5bca-8a5e-59678536b4b5 | C. Paz | Cristian Ignacio Paz | 1995-04-24 | Argentina | Lomas de Zamora | Argentina | Defender | 184 | 78 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 4 | 97 | 388 | 6.53 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 18.5 | 74 | null | null | 2.5 | 5 | 1 | 3 | 2 | 4 | 5.5 | 22 | 3.67 | 11 | null | null | null | null | null | null | 1 | 1 | 1.33 | 4 | 1 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 |
| ffd02a6a-9ae3-50d5-a209-d44062436a0a | C. Rey | Camilo Rey Domenech | 2006-03-10 | Argentina | None | Argentina | Midfielder | 174 | 72 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 2 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 2 |
| 9d05faca-ae06-592c-929b-20f230865328 | C. Rigamonti | César Pablo Rigamonti | 1987-04-07 | Argentina | San Agustín | Argentina | Goalkeeper | 186 | 90 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 4 | 93 | 372 | 7.25 | null | null | null | null | 0 | 0 | 1.75 | 7 | 4.33 | 13 | 23 | 92 | null | null | 1 | 1 | null | null | null | null | 1 | 1 | 1 | 1 | null | null | null | null | null | null | null | null | null | null | 1 | 0 | null | null | null | null | 0 | 0 | 0.25 | 1 | null | null | 4 | 0 |
| f4e9f2e7-80f0-554d-a5fa-4d9c34ce721e | C. Tarragona | Cristian Alberto Tarragona | 1991-04-09 | Argentina | Santa Fe | Argentina | Attacker | 180 | 77 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 84.2 | 421 | 6.64 | 1.6 | 1.25 | 1 | 1 | 0 | 0 | 0 | 0 | null | null | 24.8 | 124 | 2.75 | 11 | 1.5 | 3 | null | null | 1 | 1 | 11.4 | 57 | 4.75 | 19 | 2 | 10 | 2 | 2 | null | null | 1 | 2 | 2.75 | 11 | 1 | 0 | null | null | null | null | 0 | 0 | null | null | 1 | 2 | 0 | 0 |
| 0af5c964-8e7c-57d8-9074-6bbb63a823ec | C. Villalba | Carlos Gabriel Villalba Rivas | 1998-07-19 | Argentina | Resistencia | Argentina | Midfielder | 175 | 71 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 4 | 45 | 180 | 6.3 | 1.33 | 1 | null | null | 0 | 0 | 0 | 0 | null | null | 10 | 40 | null | null | 3 | 3 | 1 | 1 | 1 | 1 | 7 | 28 | 2.25 | 9 | 1 | 1 | null | null | 1 | 1 | 1 | 3 | 1.75 | 7 | 3 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 3 |
| 00443f23-7035-5def-ab49-452bfe416c94 | C. Zabala | Cristian Exequiel Zabala | 1998-03-04 | Argentina | Buenos Aires | Argentina | Midfielder | 187 | 72 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 86 | 430 | 6.92 | 1 | 1 | null | null | 0 | 0 | 0 | 0 | null | null | 48 | 240 | 1 | 2 | 2.5 | 10 | null | null | 2 | 6 | 8.6 | 43 | 4.6 | 23 | 2 | 8 | 1 | 2 | 1.2 | 6 | 1 | 1 | 1 | 3 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 |
| 357c23ed-2c97-5bf5-bee7-053bef850776 | D. Aquino | Dylan Aquino | 2005-06-04 | Argentina | None | Argentina | Attacker, Midfielder | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 3 | 36.67 | 110 | 6.67 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | null | null | 10 | 30 | 2 | 2 | null | null | null | null | null | null | 5 | 15 | 1.67 | 5 | 2 | 6 | 1 | 1 | 1 | 1 | 2 | 4 | 1 | 3 | 1 | 0 | null | null | null | null | 0 | 0 | null | null | 1 | 1 | 0 | 5 |
| de666f67-45ca-5eae-b4f4-f7def13339ce | D. Arboleda | None None | None | None | None | None | Defender | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 4 | 93.5 | 374 | 7.07 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 27.75 | 111 | null | null | 3.33 | 10 | 1.33 | 4 | 1.33 | 4 | 5.5 | 22 | 4.5 | 18 | null | null | null | null | null | null | null | null | 1 | 1 | 2 | 0 | null | null | null | null | 0 | 0 | null | null | 1 | 1 | 0 | 0 |
| b3d06d40-6921-5581-9eb1-1fbc5d958921 | D. Arboleda | Danilo Arboleda Hurtado | 1995-05-16 | Colombia | Florida | Colombia | Defender | 190 | 86 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 1 | 1 | 90 | 90 | 7.2 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 28 | 28 | null | null | 2 | 2 | null | null | 1 | 1 | 8 | 8 | 6 | 6 | 1 | 1 | 1 | 1 | 2 | 2 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 |
| 7d94a284-e506-506e-9f99-65f5b53f5946 | D. Barbona | David Matías Barbona | 1995-02-22 | Argentina | Morón | Argentina | Attacker | 174 | 78 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 2 | 31.5 | 63 | 6.25 | null | null | null | null | null | null | 0 | 0 | null | null | 18 | 36 | null | null | null | null | null | null | null | null | 1.5 | 3 | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 5 |
| 7fd2ff52-3d2d-573a-8458-5823a3999efb | D. Barrera | Diego Nicolás Barrera | 2004-06-22 | Argentina | None | Argentina | Attacker | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 3 | 3 | 57.67 | 173 | 6.63 | 3 | 1 | null | null | 0 | 0 | 0 | 0 | null | null | 11.67 | 35 | 1 | 1 | 2 | 4 | 1.5 | 3 | 1 | 1 | 10.67 | 32 | 5.33 | 16 | 2 | 6 | 1.33 | 4 | 1.33 | 4 | 2.5 | 5 | 2 | 2 | 1 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 1 |
| 7fd2ff52-3d2d-573a-8458-5823a3999efb | D. Barrera | Diego Nicolás Barrera | 2004-06-22 | Argentina | None | Argentina | Attacker | 171 | 68 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 3 | 3 | 57.67 | 173 | 6.63 | 3 | 1 | null | null | 0 | 0 | 0 | 0 | null | null | 11.67 | 35 | 1 | 1 | 2 | 4 | 1.5 | 3 | 1 | 1 | 10.67 | 32 | 5.33 | 16 | 2 | 6 | 1.33 | 4 | 1.33 | 4 | 2.5 | 5 | 2 | 2 | 1 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 1 |
| 981af088-4aa1-50d5-9304-3fb668ccff20 | D. Churín | Diego Churín Puyo | 1989-12-01 | Argentina | Arroyo Dulce | Argentina | Attacker | 187 | 87 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 73.8 | 369 | 7.12 | 1.5 | 1 | 1 | 2 | 0 | 0 | 0 | 0 | null | null | 20.2 | 101 | 2 | 4 | 1.75 | 7 | null | null | null | null | 15.6 | 78 | 8.8 | 44 | 1 | 4 | 1 | 3 | 1.67 | 5 | 1.8 | 9 | 1.75 | 7 | 1 | 0 | 1 | 1 | null | null | 1 | 0 | null | null | 1 | 1 | 0 | 0 |
| 34fb3437-e6b6-5df3-afb4-e10cb9724804 | D. Crego | Diego Hernán Crego Mayans | 1997-01-19 | Argentina | Florida | Argentina | Midfielder | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 1 | 24 | 24 | 6.3 | null | null | null | null | null | null | 0 | 0 | null | null | 3 | 3 | null | null | 1 | 1 | null | null | null | null | 6 | 6 | 2 | 2 | 3 | 3 | 1 | 1 | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 4 |
| 5b13e0d2-5b8f-5ee7-b007-5595d935dd9f | D. Cáceres | Jorge Darío Cáceres Ovelar | 1998-01-26 | Paraguay | Pirayú | Paraguay | Defender | 176 | 65 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 2 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 2 |
| ec4e60bc-c2ac-5a4f-98bf-19eec10b1d22 | D. Domínguez | Demián Leonel Domínguez | 2006-01-14 | Argentina | None | Argentina | Defender | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 2 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 2 |
| bcf92923-932d-5134-883f-d7b913dd7c5e | D. Díaz | Diego Armando Díaz | 2002-01-10 | Argentina | None | Argentina | Attacker | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 2 | 11 | 22 | 7.2 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | null | null | 4.5 | 9 | 1 | 1 | null | null | null | null | null | null | 2.5 | 5 | 1 | 1 | 1 | 2 | 1 | 1 | 1 | 1 | null | null | 1 | 1 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 5 |
| 81da0a79-f2fe-5ab6-9dd1-e825634317e8 | D. Fernandez | None None | None | None | None | None | Attacker | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 1 | 8 | 8 | 6.7 | null | null | null | null | null | null | 0 | 0 | null | null | 2 | 2 | null | null | null | null | 1 | 1 | null | null | 1 | 1 | null | null | 1 | 1 | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 5 |
| d5fc8ac1-4e86-5367-ba70-a68e591ef41d | D. Fernández | Damián Ariel Fernández | 2001-01-02 | Argentina | Buenos Aires | Argentina | Defender | 178 | 75 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 3 | 95.33 | 286 | 6.97 | null | null | null | null | null | null | 0 | 0 | null | null | 29.33 | 88 | null | null | 3.33 | 10 | 1 | 1 | 2 | 6 | 9.67 | 29 | 6.33 | 19 | null | null | null | null | 1 | 1 | null | null | 2 | 2 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 1 |
| a0c47042-d772-5c84-9c01-0113f05c1fec | D. Godoy | Dilan Godoy | 2006-02-05 | Argentina | None | Argentina | Attacker | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 3 | 49.67 | 149 | 6.53 | 1 | null | null | null | 0.5 | 1 | 0 | 0 | null | null | 11 | 33 | 1.5 | 3 | 1 | 2 | null | null | null | null | 7.67 | 23 | 2.67 | 8 | 1 | 2 | null | null | 1.5 | 3 | 1 | 2 | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 4 |
| 5c96383a-74b1-5e68-8eec-130320de7081 | D. Herazo | Diego Fernando Herazo Moreno | 1996-04-14 | Colombia | Condoto | Colombia | Attacker | 187 | 85 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 3 | 22.33 | 67 | 6.7 | 1 | 1 | 1 | 1 | 0.5 | 1 | 0 | 0 | null | null | 4 | 8 | 1 | 2 | null | null | null | null | null | null | 3.67 | 11 | 1.5 | 3 | 5 | 5 | 1 | 1 | null | null | null | null | 2 | 2 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 5 |
| a01868a2-e1cb-51f5-a7da-f572fecd5786 | D. Juárez | David Juan José Juárez | 2007-11-24 | Argentina | None | Argentina | Midfielder | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 1 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 1 |
| 287964ad-4b81-57cc-b64c-13f9c3b71bb7 | D. Martínez | Héctor David Martínez | 1998-01-21 | Argentina | Buenos Aires | Paraguay | Defender | 180 | 75 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 3 | 3 | 76 | 228 | 6.97 | 1 | null | null | null | null | null | 0 | 0 | null | null | 31 | 93 | 1 | 1 | 3 | 9 | 1 | 1 | 1 | 1 | 8 | 24 | 4.33 | 13 | 2 | 2 | 2 | 2 | null | null | 1 | 1 | 1.67 | 5 | 1 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 3 | 0 |
| 980ee0f4-75f0-53ab-83c0-a32cd2b993e7 | D. Mastrángelo | Diego Gonzalo Mastrángelo | 2002-11-07 | Argentina | None | Argentina | Midfielder, Defender | 176 | 75 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 2 | 12 | 24 | 6.8 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 9.5 | 19 | null | null | null | null | null | null | null | null | 2 | 2 | 2 | 2 | null | null | null | null | null | null | 1 | 1 | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 5 |
| 203fb333-d79f-51b3-b250-dcc07ada7f51 | D. Miloc | Dardo Federico Miloc | 1990-10-16 | Argentina | La Plata | Argentina | Midfielder | 177 | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 3 | 35 | 105 | 6.53 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 8.67 | 26 | null | null | 1 | 2 | null | null | null | null | 3 | 9 | 1.5 | 3 | null | null | null | null | null | null | 1 | 1 | 2 | 4 | 2 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 3 |
| da1dde22-94b0-537a-b677-e22636ae2db0 | D. Mondino | Diego Gustavo Mondino | 1994-11-14 | Argentina | Córdoba | Argentina | Defender | 183 | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 2 | 55.5 | 111 | 6.8 | null | null | null | null | null | null | 0 | 0 | null | null | 26 | 26 | null | null | 4 | 4 | 1 | 1 | 1 | 1 | 5.5 | 11 | 8 | 8 | null | null | null | null | null | null | 1 | 1 | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 3 |
| fa41a9f0-894a-59d0-aa35-ce1002e06ead | D. Ortegoza | Diego Ulises Ortegoza | 1997-04-19 | Argentina | San Nicolás de los Arroyos | Argentina | Midfielder | 180 | 71 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 66.6 | 333 | 6.42 | 1.25 | 1 | null | null | 0 | 0 | 0 | 0 | null | null | 29 | 145 | 3 | 3 | 2 | 4 | null | null | 2 | 2 | 6.4 | 32 | 2.5 | 10 | 1.67 | 5 | 1 | 1 | 1 | 2 | 1 | 2 | 1.75 | 7 | 1 | 0 | null | null | 1 | 1 | 0 | 0 | null | null | 1 | 1 | 0 | 1 |
| fc2148d5-0d62-55f0-a627-aae072832e4e | D. Porcel | Diego Rodrigo Porcel | 2005-01-21 | Argentina | San Pedro | Argentina | Attacker | 176 | 74 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 56.4 | 282 | 6.82 | 1.33 | 1 | null | null | null | null | 0 | 0 | null | null | 11 | 55 | 1 | 3 | 1.25 | 5 | null | null | 1 | 1 | 5.6 | 28 | 3 | 15 | 1.75 | 7 | 1 | 1 | 1 | 1 | 3.5 | 7 | 1 | 2 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | 1.33 | 4 | 0 | 2 |
| b2d2f5a6-9625-5c08-ad78-314e65b630e1 | D. Romero | José David Romero | 2003-03-25 | Argentina | Corrientes | Argentina | Attacker | 179 | 77 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 4 | 73.25 | 293 | 7.73 | 2 | 1.25 | 1 | 4 | 1 | 2 | 0 | 0 | null | null | 8.5 | 34 | 2 | 4 | 1 | 2 | null | null | null | null | 16.25 | 65 | 6.25 | 25 | 4.25 | 17 | 2.5 | 5 | 1 | 1 | 2.25 | 9 | 1.5 | 6 | 1 | 0 | null | null | null | null | 0 | 0 | null | null | 2 | 2 | 0 | 0 |
| 4f2744c5-0572-51b9-ae76-c59092dea59c | D. Sosa | Diego Alejandro Sosa | 1997-07-28 | Argentina | Zárate | Argentina | Defender | 178 | 70 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 4 | 78.25 | 313 | 6.7 | 1.5 | null | null | null | 0 | 0 | 0 | 0 | null | null | 27 | 108 | 1 | 4 | 2.25 | 9 | 1 | 1 | 2.5 | 5 | 5.25 | 21 | 3.5 | 14 | 1 | 3 | 1 | 3 | 1 | 2 | null | null | 1 | 2 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | 2 | 2 | 0 | 0 |
| f1c50012-a0ab-50e3-ae9f-6264665ce910 | D. Sotelo | David José Sotelo | 2003-07-30 | Argentina | None | Argentina | Midfielder | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 3 | 37 | 111 | 6.93 | 2 | 1 | null | null | 0 | 0 | 0 | 0 | null | null | 18 | 54 | 1.5 | 3 | 1.5 | 3 | null | null | null | null | 3 | 9 | 2.5 | 5 | null | null | null | null | null | null | 1 | 1 | 1.5 | 3 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 4 |
| 3bb994a4-3d5b-58d9-bf89-43678098202f | D. Tarzia | Diego Tarzia | 2003-04-26 | Argentina | None | Argentina | Attacker, Defender | 174 | 68 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 2 | 1 | 23 | 23 | 6.3 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 5 | 5 | null | null | null | null | null | null | null | null | 1 | 1 | null | null | null | null | null | null | null | null | null | null | 2 | 2 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 2 |
| 75da3b29-ab0b-5bec-a809-aaa57e035e70 | D. Valdés | Diego Alfonso Valdés Contreras | 1994-01-30 | Chile | Santiago de Chile | Chile | Midfielder | 179 | 75 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 53.6 | 268 | 7.12 | 2.67 | 2 | null | null | 0.67 | 2 | 0 | 0 | null | null | 22.4 | 112 | 2 | 6 | 2 | 6 | null | null | null | null | 9 | 45 | 6.25 | 25 | 3 | 15 | 2.25 | 9 | 1 | 1 | 1 | 4 | 1 | 2 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | 1 | 1 | 0 | 2 |
| 5182361f-be8a-58fa-a6ca-361ea244e28d | D. Valoyes | Diego Luis Valoyes Ruíz | 1996-09-22 | Colombia | Cartagena | Colombia | Attacker | 182 | 76 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 2 | 2 | 23 | 46 | 6.65 | null | null | null | null | null | null | 0 | 0 | null | null | 5 | 10 | 1 | 1 | 2 | 2 | null | null | null | null | 6.5 | 13 | 3 | 6 | 5 | 10 | 2 | 4 | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 2 |
| 11f66772-e884-59bb-8421-c93429aaa3b1 | D. Vergara | Duván Andrés Vergara Hernández | 1996-09-09 | Colombia | Montería | Colombia | Attacker, Midfielder | 173 | 72 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 3 | 34.33 | 103 | 6.43 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 10 | 30 | 2 | 2 | 1.5 | 3 | null | null | null | null | 5 | 15 | 1.67 | 5 | 6 | 6 | 1 | 1 | 1 | 1 | 1 | 1 | 1.5 | 3 | 1 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 4 |
| 13e947e5-8454-50e5-8f43-704320e30292 | D. Zalazar | David Leonel Zalazar | 2002-05-09 | Argentina | Villegas | Argentina | Attacker | 177 | 73 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 1 | 1 | 36 | 36 | 6.6 | null | null | null | null | null | null | 0 | 0 | null | null | 9 | 9 | null | null | null | null | null | null | null | null | 4 | 4 | 3 | 3 | null | null | null | null | 1 | 1 | 2 | 2 | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 1 |
| 13e947e5-8454-50e5-8f43-704320e30292 | D. Zalazar | David Leonel Zalazar | 2002-05-09 | Argentina | Villegas | Argentina | Attacker | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 1 | 1 | 36 | 36 | 6.6 | null | null | null | null | null | null | 0 | 0 | null | null | 9 | 9 | null | null | null | null | null | null | null | null | 4 | 4 | 3 | 3 | null | null | null | null | 1 | 1 | 2 | 2 | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 1 |
| b3d06d40-6921-5581-9eb1-1fbc5d958921 | Danilo Arboleda Hurtado | Danilo Arboleda Hurtado | 1995-05-16 | Colombia | Florida | Colombia | Defender | 190 | 86 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 1 | 1 | 90 | 90 | 7.2 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 28 | 28 | null | null | 2 | 2 | null | null | 1 | 1 | 8 | 8 | 6 | 6 | 1 | 1 | 1 | 1 | 2 | 2 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 |
| b67172c1-068b-55ce-9938-049eb2fbbc20 | Demian Troya | Demian Troya | 2005-03-22 | Argentina | None | Argentina | Midfielder | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 1 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 1 |
| c18d9126-1e41-50e5-8cd4-1511a3a93128 | E. Amor | Emiliano Javier Amor | 1995-05-16 | Argentina | Buenos Aires | Argentina | Defender | 190 | 80 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 4 | 95.5 | 382 | 6.82 | null | null | null | null | null | null | 0 | 0 | null | null | 30 | 120 | null | null | 2 | 2 | 1 | 2 | 2.25 | 9 | 8 | 32 | 4 | 16 | null | null | null | null | 1 | 1 | 1 | 1 | 1.33 | 4 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 |
| 84805e43-42ae-5c33-b918-2e4bc3f8bf3d | E. Bonifacio | Ezequiel Augusto Bonifacio | 1994-05-09 | Argentina | Mar del Plata | Argentina | Defender | 169 | 69 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 3 | 15.67 | 47 | 6.63 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 3 | 6 | null | null | 1 | 1 | null | null | null | null | 3.5 | 7 | 1.5 | 3 | 2 | 2 | 1 | 1 | 1 | 1 | null | null | 1 | 1 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 5 |
| e5da4f56-6987-5425-91b9-4f43ed782c41 | E. Cabrera | Elías Lautaro Cabrera | 2003-02-25 | Argentina | None | Argentina | Midfielder | 172 | 68 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 3 | 69.67 | 209 | 6.8 | 1 | null | null | null | 0 | 0 | 0 | 0 | null | null | 18.67 | 56 | 2 | 2 | 2 | 6 | null | null | null | null | 8 | 24 | 3.67 | 11 | null | null | null | null | 2 | 4 | 5 | 5 | 2 | 2 | 1 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 1 |
| 723350cd-9992-5556-8996-77a8a8e4e3a3 | E. Cannavo | Ezequiel Cannavo | 2002-06-12 | Argentina | None | Argentina | Defender | 181 | 69 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 2 | 2 | 96 | 192 | 6.95 | null | null | null | null | null | null | 0 | 0 | null | null | 21 | 42 | null | null | 4 | 8 | null | null | 2.5 | 5 | 10.5 | 21 | 6.5 | 13 | null | null | null | null | null | null | 3 | 3 | 3 | 3 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 |
| 19d17529-f9a5-54a7-b4a5-22479b5c917d | E. Cavani | Edinson Roberto Cavani Gómez | 1987-02-14 | Uruguay | Salto | Uruguay | Attacker | 184 | 71 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 1 | 1 | 30 | 30 | 6.3 | null | null | null | null | null | null | 0 | 0 | null | null | 2 | 2 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | 2 | 2 | 0 | 1 |
| 19d17529-f9a5-54a7-b4a5-22479b5c917d | E. Cavani | Edinson Roberto Cavani Gómez | 1987-02-14 | Uruguay | Salto | Uruguay | Attacker | 185 | 71 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 1 | 1 | 30 | 30 | 6.3 | null | null | null | null | null | null | 0 | 0 | null | null | 2 | 2 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | 2 | 2 | 0 | 1 |
| a29fe791-66c4-5e06-b38c-3a867bed2dd7 | E. Centurión | Ezequiel Ignacio Centurión | 1997-05-20 | Argentina | Cipolletti | Argentina | Goalkeeper | 183 | 77 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 2 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 2 |
| 81171781-40df-5da0-8bcb-483a64263a84 | E. Cerutti | Ezequiel Osvaldo Cerutti | 1992-01-17 | Argentina | Junín | Argentina | Attacker, Midfielder | 179 | 75 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 75.8 | 379 | 6.42 | 2 | 1 | null | null | 0 | 0 | 0 | 0 | null | null | 18.4 | 92 | 1.25 | 5 | 1.5 | 3 | null | null | 1 | 1 | 10 | 50 | 3.8 | 19 | 1.67 | 5 | 1 | 1 | 1.33 | 4 | 2.6 | 13 | 2.75 | 11 | 1 | 0 | null | null | null | null | 0 | 0 | null | null | 1 | 4 | 0 | 0 |
| 35b46a33-fb02-5b8c-b950-83cefe5da83f | E. Cetré | Edwuin Steven Cetré Angulo | 1998-01-01 | Colombia | Cali | Colombia | Attacker | 174 | 79 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 2 | 2 | 29 | 58 | 6.7 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 7.5 | 15 | 1 | 2 | null | null | null | null | null | null | 4 | 8 | 1.5 | 3 | 1 | 1 | null | null | null | null | 1.5 | 3 | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | 1 | 1 | 0 | 2 |
| 07c6748d-b308-5e6e-a080-b1d17455780f | E. Chiavassa | Emiliano Miguel Chiavassa | 2006-01-02 | Argentina | None | Argentina | Attacker | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 1 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 1 |
| f1ba6b14-9bc8-5279-8a79-101f71cf472c | E. Copetti | Enzo Nahuel Copetti | 1996-01-16 | Argentina | Roque Sáenz Peña | Argentina | Attacker | 180 | 88 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 4 | 26.5 | 106 | 6.5 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 6 | 24 | null | null | 1 | 1 | 1 | 1 | 1 | 1 | 4.33 | 13 | 2.67 | 8 | null | null | null | null | null | null | 1.67 | 5 | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | 1 | 2 | 0 | 3 |
| 7d6c6078-9c5d-5575-8cc4-da72a3374848 | E. Coronel | Emanuel Gustavo Coronel | 1997-02-01 | Argentina | Concepción | Argentina | Defender | 173 | 72 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 4 | 61.75 | 247 | 6.53 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 21.75 | 87 | null | null | 3 | 6 | 1 | 3 | 2.33 | 7 | 7.75 | 31 | 3.5 | 14 | 1 | 3 | 1 | 1 | 1.67 | 5 | 2 | 2 | 1 | 4 | 2 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 1 |
| 9bb007a1-dfa4-5c93-b5cd-9337deccbf51 | E. Fernández | Esteban Javier Fernández | 2002-01-06 | Argentina | None | Argentina | Midfielder | 172 | 60 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 3 | 1 | 8 | 8 | 6.3 | null | null | null | null | null | null | 0 | 0 | null | null | 2 | 2 | null | null | null | null | null | null | null | null | 2 | 2 | null | null | 1 | 1 | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | 1 | 1 | 0 | 3 |
| c1836cd7-4cde-54d2-b3e1-88ac3e1ff885 | E. Forclaz | Jorge Ezequiel Forclaz | 2003-04-03 | Argentina | San Fernando | Argentina | Midfielder | 175 | 57 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 3 | 24.67 | 74 | 6.53 | 1 | null | null | null | 0 | 0 | 0 | 0 | null | null | 4 | 12 | 1 | 1 | 1 | 1 | null | null | null | null | 3.5 | 7 | 1 | 2 | 1 | 1 | 1 | 1 | null | null | null | null | 2 | 2 | 0 | 0 | null | null | 1 | 1 | 0 | 0 | null | null | null | null | 0 | 4 |
| 2f5a51f1-d6a0-5cde-b399-4a686ecb38af | E. Giaccone | Emilio Giaccone | 2005-01-14 | Argentina | Santa Fé | Argentina | Midfielder | 187 | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 5 |
| 4a8ecf62-c8fc-5ca5-8d84-19573f542a56 | E. Giménez | Enzo Daniel Giménez Rojas | 1998-02-17 | Paraguay | Luque | Paraguay | Midfielder | 177 | 70 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 4 | 91.5 | 366 | 6.65 | 2 | 1 | null | null | 0 | 0 | 0 | 0 | null | null | 30.75 | 123 | 1.33 | 4 | 2 | 6 | 1 | 1 | 1.67 | 5 | 10.75 | 43 | 5.5 | 22 | 1.67 | 5 | 1.5 | 3 | 1 | 2 | 2 | 6 | 2 | 6 | 1 | 0 | null | null | null | null | 0 | 0 | null | null | 2 | 2 | 0 | 0 |
| af0e7af7-5162-5875-8b84-6021e9ade812 | E. Godoy | Ezequiel Godoy | 2003-10-09 | Argentina | Buenos Aires | Argentina | Midfielder | 172 | 69 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 2 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 2 |
| 2041abda-284a-56ee-a797-bfe1cd9cb1ae | E. Ham | Alessio Ezequiel Naim Ham | 1994-03-10 | Argentina | Buenos Aires | Argentina | Midfielder | 173 | 70 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 54.8 | 274 | 6.7 | 1 | null | null | null | 0 | 0 | 0 | 0 | null | null | 19.4 | 97 | 1 | 2 | 2 | 2 | 1 | 1 | 1.67 | 5 | 3 | 15 | 1.25 | 5 | 1.25 | 5 | 1 | 2 | 1 | 2 | 1 | 1 | 1 | 2 | 2 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 1 |
| f6807a6f-56f4-5fcd-8486-78b8d01c0841 | E. Herrera | Ezequiel Ernesto Herrera Gómez | 2003-01-22 | Argentina | None | Argentina | Defender | 180 | 76 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 89 | 445 | 6.86 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 32.8 | 164 | 1.5 | 3 | 2 | 8 | 1 | 2 | 2.5 | 5 | 8.8 | 44 | 4.8 | 24 | 2.25 | 9 | 1.75 | 7 | 1 | 3 | 1.5 | 3 | 1.33 | 4 | 1 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 |
| c4f033d4-8c1a-561b-84ae-dc3ad2d5eede | E. Iñíguez | Emanuel Iñíguez | 1996-09-16 | Argentina | General Pirán | Argentina | Defender | 177 | 74 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 1 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 1 |
| 70a13c33-1787-528d-8eba-762900d8097b | E. Lucero | Esteban Samuel Lucero | 2005-07-29 | Argentina | None | Argentina | Defender | 179 | 77 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 75.8 | 379 | 6.6 | 1 | null | null | null | null | null | 0 | 0 | null | null | 19.8 | 99 | 3 | 3 | 1.5 | 6 | 2 | 2 | 1.33 | 4 | 8.8 | 44 | 5.5 | 22 | 2.33 | 7 | 1.5 | 3 | 1.33 | 4 | 2 | 4 | 1.33 | 4 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 1 |
| 7e441eaf-e497-5a80-92ee-151329750f78 | E. Mammana | Emanuel Hernán Mammana | 1996-02-10 | Argentina | Merlo | Argentina | Defender | 184 | 70 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 57.4 | 287 | 6.78 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 47 | 141 | null | null | 4 | 4 | 1 | 1 | 2 | 2 | 4.33 | 13 | 3.5 | 7 | null | null | null | null | 1 | 2 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 2 |
| 8f45c7d2-2a2c-5f53-a28a-2d902acd9bc6 | E. Mancuso | Eros Nazareno Mancuso | 1999-04-17 | Argentina | Haedo | Argentina | Defender | 173 | 73 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 3 | 26 | 78 | 6.73 | 1 | null | null | null | 0 | 0 | 0 | 0 | null | null | 10.67 | 32 | null | null | 1 | 1 | null | null | 1 | 1 | 4 | 8 | 2 | 4 | null | null | null | null | null | null | 1 | 1 | 2 | 2 | 1 | 0 | null | null | null | null | 0 | 0 | null | null | 1 | 1 | 0 | 5 |
| 89678a43-3a35-523c-b5b9-ab2e37d33ef4 | E. Martínez | Enzo Gabriel Martínez Suárez | 1998-04-29 | Uruguay | Artigas | Uruguay | Defender | 183 | 75 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 91 | 455 | 6.96 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 34.2 | 171 | null | null | 1.6 | 8 | 1 | 3 | 2.4 | 12 | 7.6 | 38 | 4.6 | 23 | null | null | null | null | 1 | 2 | null | null | 1.5 | 6 | 2 | 0 | null | null | null | null | 0 | 0 | null | null | 1 | 1 | 0 | 0 |
| 6a5e2ed5-3b28-57f7-a80d-06ac3e0ac75b | E. Meza | Eric Exequiel Meza | 1999-04-08 | Argentina | Santa Fe | Argentina | Defender | 175 | 73 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 77.2 | 386 | 6.64 | 1.25 | 1 | null | null | 0 | 0 | 0 | 0 | null | null | 19.6 | 98 | 1.5 | 3 | 1.5 | 6 | 1 | 1 | 2 | 2 | 7.6 | 38 | 3.4 | 17 | 3 | 15 | 2.25 | 9 | 1 | 4 | 1 | 1 | 2.33 | 7 | 2 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 |
| 6a5e2ed5-3b28-57f7-a80d-06ac3e0ac75b | E. Meza | Eric Exequiel Meza | 1999-04-08 | Argentina | Santa Fe | Argentina | Defender | 176 | 74 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 77.2 | 386 | 6.64 | 1.25 | 1 | null | null | 0 | 0 | 0 | 0 | null | null | 19.6 | 98 | 1.5 | 3 | 1.5 | 6 | 1 | 1 | 2 | 2 | 7.6 | 38 | 3.4 | 17 | 3 | 15 | 2.25 | 9 | 1 | 4 | 1 | 1 | 2.33 | 7 | 2 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 |
| 514f55d0-a1dd-5fc6-a843-2b428c64c1a8 | E. Muñoz | Ezequiel Matías Muñoz | 1990-10-08 | Argentina | Pergamino | Argentina | Defender | 185 | 78 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 3 | 77.33 | 232 | 6.73 | 1 | null | null | null | 0 | 0 | 0 | 0 | null | null | 30 | 90 | null | null | 1 | 2 | 1 | 2 | 1 | 3 | 7.5 | 15 | 5.5 | 11 | null | null | null | null | 1 | 1 | 1 | 1 | 1 | 2 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | 1 | 1 | 0 | 1 |
| aa2cbbe7-2b13-5ab1-89e3-8675e9ffa65d | E. Naya | Ezequiel Naya | 2001-08-04 | Argentina | Chacabuco | Argentina | Attacker, None | 191 | 88 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 3 | 3 | 54 | 162 | 6.5 | 1 | 1 | null | null | 0 | 0 | 0 | 0 | null | null | 8.33 | 25 | 1 | 2 | null | null | 1 | 1 | null | null | 6.67 | 20 | 2.67 | 8 | 1.5 | 3 | 2 | 2 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 1 |
| 0fd6b1a8-2a31-5992-964a-87d51333515a | E. Ojeda | Pedro Emmanuel Ojeda | 1997-11-05 | Argentina | Goya | Argentina | Midfielder | 180 | 72 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 88.6 | 443 | 6.98 | 1.25 | 1 | null | null | 0.33 | 1 | 0 | 0 | null | null | 35.8 | 179 | 1.33 | 4 | 2 | 10 | 1 | 3 | 1.75 | 7 | 8.2 | 41 | 4.2 | 21 | 1 | 4 | 1 | 1 | 1 | 2 | 2 | 2 | 1 | 1 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 |
| 66818a33-ed18-5d75-bf36-f5acd778d4ae | E. Pereyra | Elías Iván Pereyra | 1999-02-15 | Argentina | La Matanza | Argentina | Defender | 172 | 68 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 3 | 38.67 | 116 | 6.45 | null | null | null | null | null | null | 0 | 0 | null | null | 15 | 45 | 1 | 1 | 2 | 2 | null | null | 1 | 1 | 6.5 | 13 | 5 | 5 | 2 | 2 | 1 | 1 | 3 | 3 | 1 | 1 | 1 | 1 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 4 |
| 4b250136-0105-5e53-84b3-0162f3c95c84 | E. Pérez | Enzo Nicolás Pérez | 1986-02-22 | Argentina | Mendoza | Argentina | Midfielder | 177 | 71 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 4 | 31.25 | 125 | 6.78 | null | null | null | null | null | null | 0 | 0 | null | null | 16.5 | 66 | 1 | 1 | 2 | 2 | null | null | 2 | 6 | 4 | 12 | 3 | 6 | null | null | null | null | null | null | 2 | 4 | 2 | 2 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 4 |
| 4b250136-0105-5e53-84b3-0162f3c95c84 | E. Pérez | Enzo Nicolás Pérez | 1986-02-22 | Argentina | Mendoza | Argentina | Midfielder | 178 | 77 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 4 | 31.25 | 125 | 6.78 | null | null | null | null | null | null | 0 | 0 | null | null | 16.5 | 66 | 1 | 1 | 2 | 2 | null | null | 2 | 6 | 4 | 12 | 3 | 6 | null | null | null | null | null | null | 2 | 4 | 2 | 2 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 4 |
| 37a565b2-ac93-5610-a052-d306ff2b9ea6 | E. Raggio | Eugenio Raggio | 2001-08-31 | Argentina | Godoy | Argentina | Defender | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 94.2 | 471 | 7.16 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 27.8 | 139 | null | null | 2 | 4 | 1.33 | 4 | 2 | 6 | 7.8 | 39 | 5.8 | 29 | 1 | 2 | 1 | 2 | 1 | 2 | 2 | 6 | 1 | 1 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 |
| 797f3eae-dde3-5048-af61-98506a3eee82 | E. Ramírez | Eric Iván Jesús Ramírez | 1996-09-21 | Argentina | Concordia | Argentina | Attacker | 170 | 64 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 3 | 29 | 87 | 6.4 | 1.5 | null | null | null | 0.5 | 1 | 0 | 0 | null | null | 7 | 21 | 1 | 1 | 1 | 1 | null | null | 1 | 1 | 3.33 | 10 | 1 | 1 | 1 | 1 | null | null | null | null | null | null | 1 | 3 | 1 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 4 |
| c27a9bc5-0768-5712-a4b0-c477d5abea4d | E. Rigoni | Emiliano Ariel Rigoni | 1993-02-04 | Argentina | Colonia Caroya | Argentina | Midfielder | 180 | 74 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 81.2 | 406 | 6.76 | 1.67 | 1.5 | null | null | 0.67 | 2 | 0 | 0 | null | null | 21.6 | 108 | 1.8 | 9 | 3 | 6 | null | null | 1 | 3 | 9.4 | 47 | 3.8 | 19 | 4 | 16 | 1.33 | 4 | 1 | 2 | 1 | 1 | 1.5 | 3 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | 1 | 2 | 0 | 0 |
| c5309256-84bf-5d13-9515-2acb2144fafa | E. Rolón | Esteban Leonardo Rolón | 1995-03-25 | Argentina | Posadas | Argentina | Midfielder | 175 | 70 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 71 | 355 | 6.92 | 1.33 | 1 | null | null | 0 | 0 | 0 | 0 | null | null | 21.6 | 108 | 2 | 10 | 2.2 | 11 | null | null | 1 | 3 | 9.2 | 46 | 4.4 | 22 | 1.8 | 9 | 1 | 5 | 1.5 | 3 | 1 | 1 | 2.25 | 9 | 3 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 |
| 1ed8151c-070d-5f1f-a8b6-a4a2e8132415 | E. Salvio | Eduardo Antonio Salvio | 1990-07-13 | Argentina | Avellaneda | Argentina | Midfielder | 172 | 68 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 78.8 | 394 | 6.64 | 1.2 | 1 | null | null | 0.5 | 1 | 0 | 0 | null | null | 27.8 | 139 | 1.67 | 5 | 2 | 6 | null | null | 1 | 3 | 8.4 | 42 | 3.2 | 16 | 3.2 | 16 | 1.5 | 6 | 1.67 | 5 | 1 | 3 | 1.5 | 3 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 1 | 0 |
| 82708e4f-c0e8-5048-a219-d9f19418b105 | E. Sittaro | Emanuel Omar Sittaro Miranda | 1999-10-15 | Argentina | Córdoba | Argentina | Goalkeeper | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 4 |
| a8fdbcdf-71e2-5c89-a4c9-db30f57ae0cf | E. Viveros | Emiliano Sebastián Viveros Mereles | 2002-09-30 | Argentina | Ruiz de Montoya | Argentina | Midfielder | 178 | 70 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 3 | 66.33 | 199 | 6.93 | 1 | 1 | null | null | 1 | 1 | 0 | 0 | null | null | 31.33 | 94 | 1.33 | 4 | 1.5 | 3 | null | null | 1 | 2 | 8 | 24 | 5 | 15 | 1.5 | 3 | 1 | 2 | 1 | 2 | 8 | 8 | 1 | 1 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 2 |
| dad3a1d3-6540-5851-b137-f2bde5490ad7 | E. Zeballos | Oscar Exequiel Zeballos | 2002-04-24 | Argentina | Santiago del Estero | Argentina | Attacker | 174 | 68 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 3 | 3 | 95.33 | 286 | 7.27 | 1.5 | 2 | 1 | 1 | 1 | 1 | 0 | 0 | null | null | 20.33 | 61 | 2 | 2 | 1.67 | 5 | null | null | null | null | 11.67 | 35 | 6.67 | 20 | 6.33 | 19 | 3 | 9 | 1 | 1 | 2 | 6 | 1 | 1 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 |
| dad3a1d3-6540-5851-b137-f2bde5490ad7 | E. Zeballos | Oscar Exequiel Zeballos | 2002-04-24 | Argentina | Santiago del Estero | Argentina | Attacker | 175 | 68 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 3 | 3 | 95.33 | 286 | 7.27 | 1.5 | 2 | 1 | 1 | 1 | 1 | 0 | 0 | null | null | 20.33 | 61 | 2 | 2 | 1.67 | 5 | null | null | null | null | 11.67 | 35 | 6.67 | 20 | 6.33 | 19 | 3 | 9 | 1 | 1 | 2 | 6 | 1 | 1 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 |
| 85567e9a-16e3-5a42-a400-8a3a70b23550 | E. Álvarez | Emiliano Federico Álvarez Silva | 2001-02-06 | Uruguay | Montevideo | Uruguay | Defender | 175 | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 2 | 16.5 | 33 | 6.95 | null | null | null | null | 0.5 | 1 | 0 | 0 | null | null | 7 | 14 | 1 | 1 | null | null | null | null | 1 | 1 | 1 | 2 | null | null | null | null | null | null | null | null | null | null | 1 | 1 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 5 |
| 3dd4c7fe-3428-51fb-8cfb-45e2e752a237 | Elías Gómez | Elías José Gómez | 1994-06-09 | Argentina | Granadero Baigorria | Argentina | Defender | 179 | 70 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 92.6 | 463 | 6.7 | 2 | null | null | null | 0 | 0 | 0 | 0 | null | null | 40.2 | 201 | 1 | 2 | 1.67 | 5 | 1 | 1 | 2.33 | 7 | 10.2 | 51 | 5.4 | 27 | 2.25 | 9 | 1 | 4 | 1 | 2 | 1.4 | 7 | 1 | 5 | 1 | 0 | null | null | null | null | 0 | 0 | null | null | 1 | 1 | 2 | 0 |
| 910782af-9cdd-592c-83b6-102028a79dc4 | Emmanuel Gómez | Emmanuel Francisco Gómez Riga | 2001-09-14 | Argentina | Merlo | Argentina | Goalkeeper | 186 | 77 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 1 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 1 |
| c7bfccc9-9c9e-5fa5-888a-fba348c93c4d | Enzo Taborda | Enzo Leonel Taborda | 2005-05-20 | Argentina | Buenos Aires | Argentina | Midfielder | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 3 | 3 | 25.67 | 77 | 6.73 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 6.33 | 19 | null | null | 2 | 2 | null | null | null | null | 4.67 | 14 | 2.33 | 7 | 2.33 | 7 | 3 | 3 | null | null | 1 | 2 | 1 | 1 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 3 |
| d96d24f9-aa14-546a-bba9-baafd45fc9bc | F. Alaggia | None None | None | None | None | None | Midfielder | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 1 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 1 |
| 1495842c-6661-5e0b-9e21-c25ef3743049 | F. Alarcón | Fernando Rubén Alarcón | 1994-06-16 | Argentina | Venado Tuerto | Argentina | Defender | 185 | 80 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 2 | 67.5 | 135 | 6.35 | 1 | 1 | null | null | 0 | 0 | 0 | 0 | null | null | 32 | 64 | 1 | 1 | 2 | 2 | null | null | 1 | 1 | 4.5 | 9 | 1.5 | 3 | null | null | null | null | null | null | null | null | 2 | 2 | 1 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 2 | 2 |
| 0ba4cce1-9015-5037-ae64-e15d69703a8d | F. Altamira | Facundo Alejandro Altamira | 2001-08-03 | Argentina | San Martín | Argentina | Attacker | 183 | 76 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 2 | 30.5 | 61 | 6.4 | null | null | null | null | null | null | 0 | 0 | null | null | 3.5 | 7 | null | null | null | null | null | null | null | null | 6 | 12 | 4 | 4 | null | null | null | null | null | null | 2 | 2 | 2 | 2 | 1 | 0 | null | null | null | null | 0 | 0 | null | null | 1 | 1 | 0 | 4 |
| 0ba4cce1-9015-5037-ae64-e15d69703a8d | F. Altamira | Facundo Alejandro Altamira | 2001-08-03 | Argentina | San Martín | Argentina | Attacker | 185 | 76 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 2 | 30.5 | 61 | 6.4 | null | null | null | null | null | null | 0 | 0 | null | null | 3.5 | 7 | null | null | null | null | null | null | null | null | 6 | 12 | 4 | 4 | null | null | null | null | null | null | 2 | 2 | 2 | 2 | 1 | 0 | null | null | null | null | 0 | 0 | null | null | 1 | 1 | 0 | 4 |
| 6595fa28-8409-5c57-9e6f-927132f9c385 | F. Amarfil | Franco Maximiliano Amarfil | 2001-03-11 | Argentina | None | Argentina | Midfielder | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 81 | 405 | 6.86 | 1.33 | null | null | null | 0 | 0 | 0 | 0 | null | null | 39.8 | 199 | 1.25 | 5 | 2.2 | 11 | 1 | 1 | 4 | 8 | 8.4 | 42 | 3.8 | 19 | 1 | 1 | null | null | 1 | 1 | 1.5 | 3 | 2.25 | 9 | 1 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 |
| fef2df0e-51c9-5cb0-b712-64688571109f | F. Anselmo | Federico Marcelo Anselmo | 1994-04-17 | Argentina | Las Acequias | Argentina | Attacker | 188 | 86 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 1 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 1 |
| bb230d48-5591-5ca3-9e2c-97c83ff9da06 | F. Antonini | Fermín Antonini | 1997-07-02 | Argentina | General Villegas | Argentina | Midfielder | 179 | 73 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 1 | 9 | 9 | 6.5 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 4 | 4 | 1 | 1 | null | null | null | null | null | null | 1 | 1 | null | null | null | null | null | null | 1 | 1 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 4 |
| e846ca1d-5a03-5052-9c45-f1aaa9d33e34 | F. Basualdo | Franco Lucas Basualdo | 2007-02-05 | Argentina | None | Argentina | Midfielder | 169 | 61 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 1 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 1 |
| f9b342d5-91fe-5b88-a840-fe79ad1c6c0c | F. Bruera | Facundo Bruera | 1998-09-23 | Argentina | La Plata | Argentina | Attacker | 194 | 92 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 4 | 60.25 | 241 | 6.2 | 2 | 1 | null | null | 0 | 0 | 0 | 0 | null | null | 12.75 | 51 | 2 | 4 | 1 | 1 | null | null | 1 | 2 | 16.5 | 66 | 7 | 21 | 2.5 | 5 | 1 | 1 | null | null | 2 | 2 | 2.25 | 9 | 3 | 0 | null | null | null | null | 0 | 0 | null | null | 1 | 1 | 0 | 2 |
| 621b3b31-7046-566a-94eb-2ae0f7feea1c | F. Bustos | Fabricio Tomás Bustos Sein | 1996-04-28 | Argentina | Ucacha | Argentina | Defender | 168 | 70 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 3 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 3 |
| bdc0f01c-f200-5207-b590-651b971dcdd0 | F. Cambeses | Facundo Nicolás Cambeses | 1997-04-09 | Argentina | Longchamps | Argentina | Goalkeeper | 185 | 78 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 93.4 | 467 | 6.78 | null | null | null | null | 0 | 0 | 1.6 | 8 | 3.4 | 17 | 27.4 | 137 | null | null | null | null | null | null | null | null | 1 | 1 | null | null | null | null | null | null | 1 | 1 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 0 | 0 |
| 02491dd3-3b98-55b7-aee7-91cd6fc1f633 | F. Colidio | Facundo Colidio | 2000-01-04 | Argentina | Rafaela | Argentina | Attacker | 182 | 68 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 4 | 66.75 | 267 | 6.6 | 1 | 1 | null | null | 0.33 | 1 | 0 | 0 | null | null | 21.5 | 86 | 1.5 | 6 | 1 | 2 | null | null | null | null | 11.25 | 45 | 4.5 | 18 | 3.75 | 15 | 1.67 | 5 | 1 | 1 | 2.25 | 9 | 1.5 | 3 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | 1 | 1 | 0 | 1 |
| c55f685f-b6ad-5ebe-a5cc-1bc7fe2a8236 | F. De La Vega | Facundo Sebastián De La Vega | 2003-04-15 | Argentina | None | Argentina | Attacker | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 2 | 22 | 44 | 6.2 | 1 | null | null | null | 0 | 0 | 0 | 0 | null | null | 5 | 5 | null | null | 2 | 2 | null | null | null | null | 8 | 8 | 3 | 3 | null | null | null | null | null | null | null | null | 1 | 1 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 5 |
| 53d636ba-498e-5a11-b12d-ca9cc1d8a48e | F. Farías | Facundo Hernán Farías | 2002-08-28 | Argentina | Santa Fe | Argentina | Midfielder | 175 | 69 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 3 | 38.67 | 116 | 6.5 | null | null | null | null | null | null | 0 | 0 | null | null | 11 | 33 | 1 | 1 | null | null | null | null | 1 | 2 | 4 | 12 | 2.5 | 5 | 2 | 4 | 1 | 2 | null | null | 1.5 | 3 | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 3 |
| b70eced3-77f9-5fcb-b66d-35b653209fed | F. Fattori | Federico Fattori Mouzo | 1992-07-22 | Argentina | Buenos Aires | Argentina | Midfielder | 178 | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 89 | 445 | 7.26 | 1 | 1 | null | null | null | null | 0 | 0 | null | null | 71.4 | 357 | 1 | 2 | 1 | 3 | 1 | 1 | 1.4 | 7 | 6.8 | 34 | 2.6 | 13 | 1 | 3 | 1 | 2 | 1.5 | 3 | 2 | 2 | 2 | 6 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 |
| a4b89f0c-4c9b-50a0-a5d1-be34b2526b62 | F. Fragapane | Franco Rodrigo Fragapane | 1993-02-06 | Argentina | Las Heras | Argentina | Midfielder | 170 | 66 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 3 | 42.67 | 128 | 6.9 | 1.5 | 1 | null | null | 0 | 0 | 0 | 0 | null | null | 16 | 48 | 3 | 6 | 1 | 3 | null | null | null | null | 5.67 | 17 | 2.67 | 8 | 2.5 | 5 | 1 | 1 | 1 | 1 | 1.5 | 3 | 1 | 1 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 3 |
| 0a878071-317c-5f00-bf7f-1742821f83fa | F. García | Franco Manuel García | 1997-06-04 | Argentina | Córdoba | Argentina | Attacker | 174 | 65 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 4 | 23.25 | 93 | 6.53 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 8 | 32 | 1 | 2 | 1 | 1 | null | null | null | null | 2.25 | 9 | 2 | 2 | 1.5 | 3 | null | null | null | null | 1 | 1 | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 4 |
| 312e6ced-b62f-52f9-8208-2e7e16d12ee4 | F. Gino | Federico Gino Acevedo Fagúndez | 1993-02-26 | Brazil | Uruguaiana | Uruguay | Midfielder | 173 | 74 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 90 | 450 | 6.66 | 1.67 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | null | null | 39.2 | 196 | 1 | 1 | 2 | 8 | 1 | 1 | 1.33 | 4 | 6.6 | 33 | 3.4 | 17 | 1 | 2 | 1 | 1 | 1 | 1 | 1.33 | 4 | 1.75 | 7 | 3 | 0 | null | null | null | null | 1 | 0 | null | null | null | null | 5 | 0 |
| 2b3f2588-8616-507e-bb1e-971277a650a1 | F. Gomes Gerth | Federico Gomes Gerth | 2004-03-05 | Argentina | San Isidro | Argentina | Goalkeeper | 194 | 87 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 4 |
| 765032ae-ba6b-5cd0-b11a-41ec68a705ed | F. Gonzalez | None None | None | None | None | None | Defender | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 3 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 3 |
| 7468ca7e-0e55-5ceb-8388-c0eeecf35c61 | F. González | Francisco González Metilli | 1997-03-29 | Argentina | Tandil | Argentina | Midfielder | 178 | 70 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 4 | 38 | 152 | 6.6 | 1 | null | null | null | 0 | 0 | 0 | 0 | null | null | 19.25 | 77 | null | null | 1.33 | 4 | null | null | null | null | 3.25 | 13 | 2.25 | 9 | 1 | 1 | null | null | 1 | 1 | 1 | 2 | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 3 |
| 42058429-d092-5b40-9be6-e077731f4478 | F. Iacovich | Fabricio Iacovich | 2002-01-29 | Argentina | La Plata | Argentina | Goalkeeper | 197 | 85 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 3 | 79.67 | 239 | 7.27 | null | null | null | null | null | null | 0.2 | 1 | 4 | 8 | 21.33 | 64 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | 0.33 | 1 | null | null | 0 | 3 |
| a13318dd-3f87-5599-b0ed-a29f19faee4f | F. Ibarra | Franco Gabriel Ibarra | 2001-04-28 | Argentina | Tigre | Argentina | Midfielder | 175 | 69 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 4 | 90.75 | 363 | 7.13 | 1 | null | null | null | 0 | 0 | 0 | 0 | null | null | 35.75 | 143 | 1 | 3 | 2.75 | 11 | 1 | 1 | 2.5 | 10 | 11.5 | 46 | 7 | 28 | 1.5 | 3 | 1 | 2 | 1.25 | 5 | 3 | 12 | 1.75 | 7 | 3 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 |
| c538dfc0-a2eb-5ff1-9a3c-d65e9b94a293 | F. Jainikoski | None None | None | None | None | None | Attacker | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 4 | 24 | 96 | 6.5 | 1 | 1 | null | null | null | null | 0 | 0 | null | null | 6.75 | 27 | 1 | 2 | 1 | 3 | null | null | 1 | 2 | 3.25 | 13 | 1.75 | 7 | 2.25 | 9 | 1.33 | 4 | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | 2 | 2 | 0 | 4 |
| bb722de3-54d0-5396-8ad1-37276f531b1c | F. Jara | Franco Daniel Jara | 1988-07-15 | Argentina | Villa María | Argentina | Attacker | 181 | 76 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 4 | 93.5 | 374 | 6.45 | 2.25 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | null | null | 20.25 | 81 | 2 | 2 | 1 | 2 | null | null | 1 | 1 | 15.5 | 62 | 7.25 | 29 | 1.75 | 7 | 2.5 | 5 | null | null | 3.25 | 13 | 2.33 | 7 | 0 | 0 | null | null | null | null | 1 | 1 | null | null | 1 | 1 | 0 | 0 |
| f49a58b8-40c1-54b9-a012-a1c13194e849 | F. Jaroszewicz | None None | None | None | None | None | Goalkeeper | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 3 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 3 |
| 240405ce-7b8e-5c03-88d1-39854afc8638 | F. Juárez | Fernando Ezequiel Juárez | 1998-08-23 | Argentina | Fernández | Argentina | Midfielder | 177 | 66 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 3 | 3 | 79 | 237 | 6.93 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 34 | 102 | 1 | 3 | 2.5 | 5 | null | null | 3 | 6 | 8.67 | 26 | 5.67 | 17 | 1 | 1 | null | null | null | null | 3 | 9 | 2 | 6 | 1 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 1 |
| 240405ce-7b8e-5c03-88d1-39854afc8638 | F. Juárez | Fernando Ezequiel Juárez | 1998-08-23 | Argentina | Fernández | Argentina | Midfielder | 177 | 69 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 3 | 3 | 79 | 237 | 6.93 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 34 | 102 | 1 | 3 | 2.5 | 5 | null | null | 3 | 6 | 8.67 | 26 | 5.67 | 17 | 1 | 1 | null | null | null | null | 3 | 9 | 2 | 6 | 1 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 1 |
| aad27018-bb12-54ae-986c-718ea30ae53a | F. Kalinger | Facundo Kalinger di Napoli | 2005-01-30 | Argentina | None | Argentina | Midfielder | 176 | 66 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 1 | 4 | 4 | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 4 |
| 27399628-9366-509b-8d64-800264d14bce | F. Lencioni | Facundo Valentín Lencioni | 2001-02-14 | Argentina | Rafaela | Argentina | Midfielder | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 4 | 76.5 | 306 | 7.2 | 2 | 1.5 | 1 | 1 | 0.33 | 1 | 0 | 0 | null | null | 21.75 | 87 | 1.67 | 5 | 4.33 | 13 | null | null | 1 | 3 | 12 | 48 | 6.75 | 27 | 2.33 | 7 | 2.5 | 5 | 1.33 | 4 | 2.5 | 5 | 1.75 | 7 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 |
| 176c1a64-4326-521a-90d1-21740a1373c7 | F. Leys | Franco Ezequiel Leys | 1993-10-18 | Argentina | San Lorenzo | Argentina | Midfielder | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 4 | 34.25 | 137 | 6.9 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 17.25 | 69 | null | null | 1.33 | 4 | null | null | 1 | 2 | 4.5 | 18 | 3 | 12 | null | null | null | null | 1.5 | 3 | 1.5 | 3 | 1 | 1 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 5 |
| e9a2fc0a-1d90-567a-b7c1-164f5f973807 | F. Lorenzón | Franco Lorenzón | 2001-03-19 | Argentina | Buenos Aires | Argentina | Defender | 188 | 83 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 1 | 90 | 90 | 7.7 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 30 | 30 | null | null | 1 | 1 | 3 | 3 | null | null | 10 | 10 | 2 | 2 | 1 | 1 | null | null | null | null | null | null | 1 | 1 | 1 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 4 |
| 9bf6eda5-fd90-5607-b106-685337902286 | F. López | Fabricio Gabriel López | 2002-11-21 | Argentina | None | Argentina | Defender | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 3 | 54 | 162 | 6.67 | 1 | null | null | null | 0 | 0 | 0 | 0 | null | null | 16.33 | 49 | 1 | 2 | 1.5 | 3 | null | null | 1.33 | 4 | 5.67 | 17 | 2.33 | 7 | 2 | 4 | 2 | 2 | 3 | 3 | null | null | 1 | 2 | 1 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 4 |
| 728587a2-a68f-513e-973b-46a41e110ff8 | F. Mallo | Facundo Mallo Blanco | 1995-01-16 | Uruguay | Montevideo | Uruguay | Defender | 188 | 81 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 4 | 91.5 | 366 | 6.88 | 1 | null | null | null | 0 | 0 | 0 | 0 | null | null | 29 | 116 | 1.5 | 3 | 1.25 | 5 | 1.33 | 4 | 2 | 6 | 5.75 | 23 | 3.75 | 15 | 1 | 1 | null | null | 1 | 1 | 1 | 1 | 1 | 3 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | 1 | 1 | 0 | 0 |
| 5b2838af-a2b9-502c-957f-80c6665ed815 | F. Mancuello | Federico Andrés Mancuello | 1989-03-26 | Argentina | Reconquista | Argentina | Midfielder | 177 | 75 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 5 |
| 5135c6e9-bf37-5869-b725-d368bf97efff | F. Mansilla | Zahir Facundo Mansilla | 1999-02-27 | Argentina | Rosario | Argentina | Defender | 190 | 82 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 3 | 3 | 94 | 282 | 6.97 | 1 | null | null | null | 0 | 0 | 0 | 0 | null | null | 42 | 126 | null | null | 1.5 | 3 | 1.33 | 4 | 3.33 | 10 | 7.67 | 23 | 4.33 | 13 | null | null | null | null | 1 | 2 | 1 | 2 | 1.33 | 4 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 |
| 5135c6e9-bf37-5869-b725-d368bf97efff | F. Mansilla | Zahir Facundo Mansilla | 1999-02-27 | Argentina | Rosario | Argentina | Defender | 190 | 81 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 3 | 3 | 94 | 282 | 6.97 | 1 | null | null | null | 0 | 0 | 0 | 0 | null | null | 42 | 126 | null | null | 1.5 | 3 | 1.33 | 4 | 3.33 | 10 | 7.67 | 23 | 4.33 | 13 | null | null | null | null | 1 | 2 | 1 | 2 | 1.33 | 4 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 |
| 9944e1f2-b45b-5794-a0f3-fe4a82f6e456 | F. Martínez | Fernando Daniel Martínez Sánchez | 2000-07-27 | Argentina | La Plata | Argentina | Defender | 173 | 70 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 3 | 2 | 39.5 | 79 | 6.5 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 8 | 16 | null | null | 1.5 | 3 | 1 | 1 | null | null | 6 | 12 | 2.5 | 5 | 2 | 2 | null | null | null | null | 1 | 1 | 1 | 1 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 2 |
| 7724d587-63ab-597d-a9bd-b87e11df8db2 | F. Miño | Facundo Sebastián Miño | 1999-10-16 | Argentina | Paso de los Libres | Argentina | Defender | 183 | 80 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 4 | 37.5 | 150 | 6.5 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 10.25 | 41 | 1 | 1 | 1.67 | 5 | 1 | 1 | 1.5 | 3 | 4.25 | 17 | 2.5 | 10 | null | null | null | null | null | null | 1 | 2 | 2.5 | 5 | 2 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 3 |
| 8a62a587-f747-5291-8a30-d2fa42ca6ff9 | F. Monzón | Florián Gonzalo de Jesús Monzón | 2001-01-03 | Argentina | San Miguel de Tucumán | Argentina | Attacker | 186 | 79 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 3 | 3 | 63.67 | 191 | 6.03 | 3 | 1 | null | null | 0 | 0 | 0 | 0 | null | null | 12.67 | 38 | 1 | 1 | 1 | 1 | null | null | null | null | 10 | 30 | 2.33 | 7 | 2 | 4 | 1 | 1 | 1 | 1 | null | null | 2.67 | 8 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | 1 | 2 | 0 | 1 |
| f859c1c8-06af-5577-81e2-87c64669aaa4 | F. Moyano | Franco David Moyano | 1997-09-13 | Argentina | Lobos | Argentina | Midfielder | 171 | 68 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 3 | 45.33 | 136 | 6.6 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 24 | 72 | null | null | 1 | 1 | null | null | null | null | 3 | 6 | 1 | 2 | null | null | null | null | 1 | 1 | null | null | 1 | 1 | 1 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 2 |
| 2a65645b-98e9-5bbe-a845-f2549c868e6c | F. Muslera | Néstor Fernando Muslera Micol | 1986-06-16 | Argentina | Buenos Aires | Uruguay | Goalkeeper | 190 | 84 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 3 | 3 | 75 | 225 | 7.2 | null | null | null | null | 0 | 0 | 0.33 | 1 | 2.33 | 7 | 22 | 66 | null | null | null | null | null | null | null | null | 1 | 2 | 1 | 2 | null | null | null | null | null | null | 1 | 1 | null | null | 0 | 0 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 0 | 0 |
| 4c1d2f7c-693c-57ac-8209-0324f648fad9 | F. Navarro | Federico Darío Navarro | 2000-03-09 | Argentina | Santa Fe | Argentina | Midfielder | 173 | 70 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 3 | 28.33 | 85 | 6.57 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 12.67 | 38 | null | null | 2 | 2 | 1 | 1 | null | null | 4.5 | 9 | 4 | 4 | 1.5 | 3 | 1 | 1 | 1 | 1 | null | null | 1 | 1 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 4 |
| 5affd1ad-d0de-5b9f-9f29-a51862a2f0ed | F. Nicola | Franco Nicola Albanell | 2002-04-18 | Uruguay | Montevideo | Uruguay | Attacker | 178 | 70 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 4 | 49.75 | 199 | 6.75 | 1.33 | 1.33 | null | null | 0 | 0 | 0 | 0 | null | null | 14.25 | 57 | 1 | 2 | 1 | 2 | null | null | 2 | 2 | 9.75 | 39 | 4 | 16 | 2 | 8 | 1 | 3 | 1 | 2 | 1.25 | 5 | 1 | 2 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 3 |
| f1707907-19f8-5f70-b4f0-95db6234d076 | F. Orozco | Franco Orozco | 2002-01-09 | Argentina | Buenos Aires | Argentina | Midfielder | 168 | 64 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 3 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 3 |
| 40e9ec79-9957-505a-af9b-1765395cc034 | F. Oviedo | Fabricio Gastón Oviedo | 2004-02-19 | Argentina | Concarán | Argentina | Attacker | 175 | 71 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 3 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 3 |
| cd71f70c-bfdb-535b-82b2-62f543e14c50 | F. Pardo | Franco Emanuel Pardo | 1997-04-05 | Argentina | Córdoba | Argentina | Defender | 183 | 80 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 3 | 23.33 | 70 | 6.47 | null | null | null | null | null | null | 0 | 0 | null | null | 8.67 | 26 | null | null | null | null | null | null | null | null | 1.5 | 3 | 1 | 2 | null | null | null | null | null | null | null | null | 1 | 1 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 5 |
| e1b20c4d-9c67-5e9c-808d-e98579f47e43 | F. Paredes | Franco Ezequiel Paredes | 1999-03-18 | Argentina | San Justo | Argentina | Defender | 176 | 75 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 1 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 1 |
| 462aac7d-b92d-53c3-b2d5-3bc0f8de272e | F. Pereyra | Fabio Jesús Pereyra | 1990-01-31 | Argentina | Federal | Argentina | Defender | 185 | 76 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 93.6 | 468 | 6.78 | 1 | null | null | null | 0 | 0 | 0 | 0 | null | null | 36.2 | 181 | null | null | 3 | 3 | 1 | 2 | 1.5 | 3 | 10.4 | 52 | 6.8 | 34 | null | null | null | null | 1 | 1 | 1.67 | 5 | 1.5 | 3 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 |
| 440bcea0-4ee2-53f3-acdf-31c611aee8f9 | F. Perruzzi | Francisco Perruzzi | 2001-02-09 | Argentina | San Rafael | Argentina | Midfielder | 177 | 70 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 3 | 6 | 18 | 6.55 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 2 | 6 | null | null | 1 | 2 | null | null | 1 | 1 | 2.33 | 7 | 2 | 4 | null | null | null | null | null | null | null | null | 1 | 1 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 5 |
| 81aaa39f-ce31-5719-abaf-edef97e7a703 | F. Petroli | Franco Petroli | 1998-06-11 | Argentina | Avellaneda | Argentina | Goalkeeper | 188 | 72 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 5 |
| 4789f673-5798-551b-9242-a67cf8187601 | F. Peña | Felipe Peña Biafore | 2001-04-05 | Argentina | Pehuajó | Argentina | Defender, Midfielder | 185 | 77 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 35 | 175 | 6.7 | 1 | null | null | null | 0 | 0 | 0 | 0 | null | null | 15.2 | 76 | null | null | 2.33 | 7 | 1 | 1 | 1.5 | 3 | 4.5 | 18 | 3.75 | 15 | 1 | 1 | 1 | 1 | null | null | 1.5 | 3 | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 4 |
| 99a5c66e-8a7b-5a32-b44e-d276acb39169 | F. Pimienta | Facundo Damián Pimienta | 2003-07-17 | Argentina | None | Argentina | Attacker | 163 | 60 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 1 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 1 |
| 72a89159-efd2-5474-ba19-5e02c6c4e079 | F. Pizzini | Francisco Andrés Pizzini | 1993-09-19 | Argentina | Bahía Blanca | Argentina | Attacker, Midfielder | 177 | 71 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 4 |
| 48c15da3-90eb-5a48-b3bb-538022f26ec9 | F. Pérez Escudero | Fabricio Alexis Pérez Escudero | 2005-12-07 | Argentina | San Juan | Argentina | Attacker | 180 | 75 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 66.6 | 333 | 6.86 | 1.5 | 1.5 | 1 | 1 | 0 | 0 | 0 | 0 | null | null | 15.8 | 79 | 1.6 | 8 | 2.2 | 11 | null | null | 1.5 | 3 | 8.4 | 42 | 4.4 | 22 | 2.5 | 10 | 1.5 | 3 | 1 | 1 | 1.33 | 4 | 1.67 | 5 | 2 | 0 | null | null | 1 | 1 | 0 | 0 | null | null | null | null | 0 | 1 |
| 16829cf4-4fa6-51d5-be12-c21483114a51 | F. Ricca | Federico Ricca Rostagnol | 1994-12-01 | Uruguay | Tarariras | Uruguay | Midfielder, Defender | 179 | 73 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 3 | 3 | 65 | 195 | 6.63 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 30.33 | 91 | 1 | 1 | 1 | 1 | null | null | 1 | 2 | 2.5 | 5 | 2 | 4 | null | null | null | null | null | null | 2 | 2 | 1 | 1 | 1 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 |
| 2d75751f-4ece-58b0-953e-461067169868 | F. Romero | Abel Francisco Romero | 1999-03-08 | Argentina | Perico | Argentina | Midfielder | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 2 | 82.5 | 165 | 6.8 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 44 | 88 | 2 | 2 | 1 | 1 | 1 | 1 | 3.5 | 7 | 7 | 14 | 4.5 | 9 | null | null | null | null | 1 | 1 | 1 | 1 | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 2 |
| 7c961df0-6680-50e0-ae80-0d795c2d818c | F. Román | Fernando Aurelio Román Villalba | 1998-11-20 | Paraguay | Ñemby | Paraguay | Defender | 180 | 76 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 82.2 | 411 | 6.94 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 29.6 | 148 | 1.5 | 3 | 2.75 | 11 | 2 | 4 | 2 | 6 | 8.8 | 44 | 4.6 | 23 | 1.33 | 4 | 1 | 1 | 1 | 2 | 1.33 | 4 | 2.5 | 10 | 1 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 1 |
| 82675f0a-4b9c-5936-9468-ef99005ce8ed | F. Saavedra | Franco Saavedra | 2003-09-02 | Argentina | None | Argentina | Defender | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 2 | 2 | 57.5 | 115 | 5.45 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 20 | 40 | 1 | 2 | 1 | 2 | 1 | 1 | 1.5 | 3 | 4.5 | 9 | 1.5 | 3 | 1 | 1 | null | null | null | null | null | null | 1.5 | 3 | 1 | 1 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 |
| 79392c52-ce86-503a-b4f1-0f0b58a66c83 | F. Sanguinetti | Facundo Sanguinetti | 2001-03-01 | Argentina | None | Argentina | Goalkeeper | 184 | 71 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 92.8 | 464 | 7.3 | null | null | null | null | 0 | 0 | 1.2 | 6 | 5 | 25 | 17.2 | 86 | null | null | null | null | null | null | null | null | 1.33 | 4 | 1.33 | 4 | null | null | null | null | null | null | 1 | 2 | null | null | 0 | 0 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 5 | 0 |
| 256b0f27-c29f-562f-854a-18d2f0e77d2d | F. Sartori | Fabrizio Sartori Prieto | 2002-07-15 | Argentina | None | Argentina | Attacker | 178 | 80 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 4 | 63 | 252 | 6.83 | 1.33 | 1 | 1 | 2 | 0 | 0 | 0 | 0 | null | null | 9.75 | 39 | 1 | 1 | 2 | 2 | null | null | null | null | 10.25 | 41 | 3.5 | 14 | 1.75 | 7 | 1.33 | 4 | 1 | 1 | 1 | 4 | 2.5 | 10 | 1 | 0 | null | null | null | null | 0 | 0 | null | null | 1 | 2 | 0 | 1 |
| cd03d044-68c7-50e7-8776-451cb817515c | F. Sánchez | Facundo Martín Sánchez | 2005-08-07 | Argentina | Buenos Aires | Argentina | Defender | 173 | 75 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 2 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 2 |
| 2e7ee753-0f71-5078-8a4f-36e193189f72 | F. Tobio | Omar Fernando Tobio | 1989-10-18 | Argentina | Ramos Mejía | Argentina | Defender | 190 | 85 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 3 | 87.33 | 262 | 6.8 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 17 | 51 | null | null | 2 | 2 | null | null | 1.5 | 3 | 2.67 | 8 | 1.67 | 5 | 1 | 1 | 1 | 1 | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 1 |
| 17442709-3122-5f5b-bc48-47009b090da7 | F. Torres | Franco Ramón Torres | 1999-05-25 | Argentina | San Luis Del Palmar | Argentina | Attacker | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 71.4 | 357 | 6.7 | 1.25 | 1.33 | 1 | 1 | 0 | 0 | 0 | 0 | null | null | 12.6 | 63 | 2 | 4 | 1.25 | 5 | null | null | 1 | 1 | 7.6 | 38 | 3.2 | 16 | 2 | 6 | 1.33 | 4 | 1.2 | 6 | 1.33 | 4 | 1.25 | 5 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | 2 | 4 | 0 | 0 |
| a390761e-327e-544e-98f3-656497f357e0 | F. Vera | Federico Gabriel Vera | 1998-03-24 | Argentina | None | Argentina | Defender | 177 | 74 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 91.6 | 458 | 6.72 | 1 | null | null | null | 0 | 0 | 0 | 0 | null | null | 27.4 | 137 | 1 | 2 | 3.2 | 16 | null | null | 2 | 8 | 11.4 | 57 | 6.2 | 31 | 3 | 3 | 2 | 2 | 1.5 | 6 | 2.33 | 7 | 2.25 | 9 | 1 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 |
| 9b70cf68-7286-5e72-bc0e-55a4ff558385 | F. Vera | Fausto Mariano Vera | 2000-03-26 | Argentina | Hurlingham | Argentina | Midfielder | 179 | 72 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 4 | 74.75 | 299 | 6.75 | 2.5 | 1.33 | null | null | 0 | 0 | 0 | 0 | null | null | 62.5 | 250 | 2 | 4 | 1.67 | 5 | 2 | 2 | 1 | 3 | 8 | 32 | 4.5 | 18 | 2 | 8 | 1.5 | 6 | null | null | 1 | 3 | 1.5 | 6 | 1 | 1 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 |
| e30e4621-26b8-570f-9458-db3e4d0f9e74 | F. Vázquez | Franco Damián Vázquez | 1989-02-22 | Argentina | Córdoba | Argentina | Attacker | 187 | 82 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 4 | 77.25 | 309 | 7.28 | 2 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | null | null | 42 | 168 | 1.5 | 3 | 2.33 | 7 | null | null | 1 | 1 | 10.5 | 42 | 6 | 24 | 3 | 12 | 1.25 | 5 | 1 | 2 | 2 | 6 | 1 | 3 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 1 |
| edebc0ba-845a-50af-92fd-47cf811d6000 | F. Waller | Facundo Federico Waller Martiarena | 1997-04-09 | Uruguay | Colonia del Sacramento | Uruguay | Midfielder | 173 | 70 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 80 | 400 | 7.26 | 1 | null | null | null | 0 | 0 | 0 | 0 | null | null | 38.6 | 193 | 1.33 | 4 | 2.8 | 14 | 2 | 2 | 1.6 | 8 | 12.4 | 62 | 7.2 | 36 | 2.33 | 7 | 2 | 4 | 1.33 | 4 | 3 | 12 | 2.5 | 10 | 1 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 1 |
| 040eed64-8661-5d95-90e6-27ae078880c8 | F. Watson | Franco Nahuel Watson | 2002-07-25 | Argentina | Córdoba | Argentina | Midfielder | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 2 | 39.5 | 79 | 6.9 | null | null | null | null | null | null | 0 | 0 | null | null | 25 | 25 | null | null | null | null | null | null | 1 | 1 | 12 | 12 | 7 | 7 | 3 | 3 | 1 | 1 | 1 | 1 | 4 | 4 | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 4 |
| d47bdeef-a7dc-5e41-bf24-170223378787 | F. Zabala | Facundo Gabriel Zabala | 1999-01-02 | Argentina | Rosario | Argentina | Defender | 172 | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 85.2 | 426 | 7.14 | 1 | null | null | null | 0 | 0 | 0 | 0 | null | null | 32.8 | 164 | 2 | 4 | 2.2 | 11 | 1 | 1 | 2 | 8 | 9.2 | 46 | 5 | 25 | 3 | 15 | 1.4 | 7 | null | null | 2 | 4 | 2.67 | 8 | 1 | 0 | null | null | null | null | 0 | 0 | null | null | 1 | 2 | 0 | 1 |
| 8dd6d623-7cf4-5b13-879e-47d2db7a2ab4 | F. Zapiola | Franco Zapiola Yamartino | 2001-02-19 | Argentina | Magdalena | Argentina | Midfielder | 173 | 68 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 71 | 355 | 6.86 | 1.5 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | null | null | 24.6 | 123 | 1 | 3 | 1.5 | 6 | null | null | 1 | 1 | 8.8 | 44 | 4 | 20 | 2.6 | 13 | 1.4 | 7 | 1 | 3 | 1.5 | 6 | 1.5 | 3 | 1 | 0 | null | null | null | null | 0 | 0 | null | null | 1 | 1 | 0 | 0 |
| ae33dd2c-0318-5408-8f79-8a621963fc04 | F. Zenobio | Felipe Tomás Zenobio | 2000-05-22 | Argentina | Tigre | Argentina | Goalkeeper | 183 | 74 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 4 | 94 | 376 | 7.03 | null | null | null | null | 0 | 0 | 0.75 | 3 | 3.5 | 7 | 22 | 88 | null | null | null | null | null | null | null | null | 1.5 | 3 | 1.5 | 3 | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 0 | 0 |
| 84477414-676b-54bc-b605-822c8d181256 | F. Álvarez | Federico Hernán Álvarez | 1994-08-07 | Argentina | Córdoba | Argentina | Defender | 183 | 73 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 4 | 94 | 376 | 6.9 | 1 | 1 | null | null | 0 | 0 | 0 | 0 | null | null | 25.25 | 101 | 1 | 1 | 1.75 | 7 | 1 | 1 | 2.33 | 7 | 5 | 20 | 3.5 | 14 | 2 | 2 | 2 | 2 | 1 | 1 | 1 | 1 | 1 | 2 | 1 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 |
| 2fdd12ca-0408-557d-b91d-a9d2bbcf38a2 | F. Álvarez | Francisco Fabián Álvarez | 2000-02-26 | Argentina | San Juan | Argentina | Defender | 180 | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 93.4 | 467 | 7.44 | 1.5 | 2 | null | null | null | null | 0 | 0 | null | null | 61.4 | 307 | 1 | 1 | 2.6 | 13 | 1.5 | 3 | 1.8 | 9 | 12.4 | 62 | 7.4 | 37 | 2 | 2 | null | null | 1.5 | 3 | 2.33 | 7 | 1.5 | 6 | 2 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 |
| 7a0a18f0-110e-563e-b3ff-506fb299b31f | Facundo Carrizo | None None | None | None | None | None | Defender | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 1 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 1 |
| d8c14a19-e7f1-58eb-9295-8bfb0c098685 | Facundo Gauch | Facundo Samuel Guch | 2007-01-20 | Argentina | Villa Gobernador Gálvez | Argentina | Attacker | 169 | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 4 | 73.75 | 295 | 6.8 | 2 | 1 | null | null | 0.33 | 1 | 0 | 0 | null | null | 10.75 | 43 | 1.5 | 6 | 2 | 6 | null | null | 1 | 1 | 7.25 | 29 | 3.75 | 15 | 2.25 | 9 | 1 | 2 | 1 | 3 | 2.33 | 7 | 1 | 1 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 |
| 0d3ca283-8cf1-5a08-b4d8-723d7157ba58 | Facundo Santiago Rodríguez | Facundo Santiago Rodríguez | 2000-02-26 | Argentina | San Martín | Argentina | Defender | 177 | 88 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 4 |
| 26c1ee13-3169-5d3c-a32a-de39d9bda30b | Federico Laurelli | None None | None | None | None | None | Defender | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 1 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 1 |
| a10edd4f-b9bd-5e7c-938a-8d86a037e1fc | Federico Medina | Federico Medina | 2004-02-16 | Argentina | Lomas de Zamora | Argentina | Midfielder | 166 | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 5 |
| 90acf8e6-06fc-5faa-afba-3fa123c6611e | Felipe Bussio | Felipe Bussio | 2004-06-16 | Argentina | None | Argentina | Midfielder | 178 | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 77 | 385 | 6.62 | 1 | null | null | null | 0 | 0 | 0 | 0 | null | null | 27.2 | 136 | 1 | 2 | 1.8 | 9 | 1 | 1 | 1.8 | 9 | 8.4 | 42 | 3.6 | 18 | 1 | 3 | 1 | 2 | 1.33 | 4 | null | null | 1.75 | 7 | 2 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 |
| 1827792f-51d7-50ed-8abd-6e6f7a5dcc20 | G. Abeldano | None None | None | None | None | None | Attacker | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 4 | 38.75 | 155 | 6.37 | 4 | 1 | null | null | 0 | 0 | 0 | 0 | null | null | 8 | 24 | null | null | 1.33 | 4 | null | null | 1 | 1 | 6.25 | 25 | 3 | 9 | 1 | 1 | null | null | 1 | 1 | 2 | 2 | 1 | 1 | 1 | 0 | null | null | null | null | 0 | 0 | null | null | 1 | 1 | 0 | 4 |
| a2094b65-4690-5cf8-bb66-2ad870076b1d | G. Abrego | Gonzalo Damián Abrego Federicci | 2000-01-07 | Argentina | Maipú | Argentina | Midfielder | 184 | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 3 | 3 | 56 | 168 | 6.73 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 16.67 | 50 | 1 | 1 | 1 | 2 | null | null | 1 | 1 | 7.67 | 23 | 5.33 | 16 | 1.5 | 3 | 2 | 2 | null | null | 1 | 2 | 1 | 1 | 1 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 |
| a2094b65-4690-5cf8-bb66-2ad870076b1d | G. Abrego | Gonzalo Damián Abrego Federicci | 2000-01-07 | Argentina | Maipú | Argentina | Midfielder | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 3 | 3 | 56 | 168 | 6.73 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 16.67 | 50 | 1 | 1 | 1 | 2 | null | null | 1 | 1 | 7.67 | 23 | 5.33 | 16 | 1.5 | 3 | 2 | 2 | null | null | 1 | 2 | 1 | 1 | 1 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 |
| de2c0ee4-1c94-5cd0-b33e-61c99227e47e | G. Abregú | Gustavo Ariel Abregú | 1997-07-04 | Argentina | San Pablo | Argentina | Midfielder, Defender | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 3 | 71 | 213 | 6.6 | 1 | null | null | null | 0 | 0 | 0 | 0 | null | null | 25.33 | 76 | 1 | 2 | 2 | 4 | null | null | 5 | 5 | 3.67 | 11 | 2 | 6 | null | null | null | null | null | null | 1 | 1 | 1 | 1 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 2 |
| a3ef3c47-95ab-57c9-9e33-a6b19a3e30cc | G. Alanís | Gabriel Gustavo Alanís | 1994-03-16 | Argentina | Córdoba | Argentina | Midfielder | 189 | 80 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 4 | 60.25 | 241 | 6.2 | 1 | 1 | null | null | 0 | 0 | 0 | 0 | null | null | 9.25 | 37 | null | null | 2 | 4 | 1 | 1 | 2 | 4 | 10.25 | 41 | 3.5 | 14 | 3.25 | 13 | 1.67 | 5 | null | null | 1 | 2 | 1.5 | 3 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | 1 | 1 | 0 | 1 |
| dac64c71-907a-5b11-9be1-46a009743f2e | G. Arias | Gabriel Arias Arroyo | 1987-09-13 | Argentina | Neuquén | Chile | Goalkeeper | 189 | 85 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 4 | 93.25 | 373 | 6.35 | null | null | null | null | 0 | 0 | 2 | 8 | 2.67 | 8 | 18.75 | 75 | null | null | 1 | 1 | null | null | null | null | 1 | 1 | 1 | 1 | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 4 | 0 |
| af7175a5-62db-5e81-96b3-15005ff22456 | G. Arturia | Gastón Alberto Arturia | 1999-10-29 | Argentina | San Martín | Argentina | Defender | 183 | 72 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 77.4 | 387 | 6.38 | 1 | 1 | null | null | 0 | 0 | 0 | 0 | null | null | 22.4 | 112 | 1 | 1 | 1.67 | 5 | 1 | 2 | 2 | 4 | 8.8 | 44 | 4.2 | 21 | null | null | null | null | null | null | 1 | 2 | 1.8 | 9 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 1 |
| c2795856-42bd-5ea8-a6fe-0d953dab4377 | G. Baroni | Giovanni Baroni | 2009-01-21 | Argentina | None | Argentina | Attacker | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 70.8 | 354 | 6.54 | 1 | 1 | null | null | 0.67 | 2 | 0 | 0 | null | null | 26.4 | 132 | 1.75 | 7 | 1.75 | 7 | null | null | 1 | 2 | 8.2 | 41 | 4 | 20 | 4 | 12 | 1.67 | 5 | 1.5 | 3 | 1 | 3 | 1.25 | 5 | 1 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 |
| 7ef29d51-c405-5d62-a524-16ca3bce1ee0 | G. Benedetti | Gastón Benedetti Taffarel | 2001-03-29 | Argentina | Larroque | Argentina | Defender | 175 | 66 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 92.8 | 464 | 7.3 | 1 | null | null | null | 0.33 | 1 | 0 | 0 | null | null | 41.6 | 208 | 2.25 | 9 | 2.6 | 13 | 1.67 | 5 | 1 | 1 | 7.4 | 37 | 4 | 20 | 1.5 | 6 | 1.33 | 4 | 1.33 | 4 | 1 | 1 | 1.75 | 7 | 2 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 |
| 7ef29d51-c405-5d62-a524-16ca3bce1ee0 | G. Benedetti | Gastón Benedetti Taffarel | 2001-03-29 | Argentina | Larroque | Argentina | Defender | 174 | 66 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 92.8 | 464 | 7.3 | 1 | null | null | null | 0.33 | 1 | 0 | 0 | null | null | 41.6 | 208 | 2.25 | 9 | 2.6 | 13 | 1.67 | 5 | 1 | 1 | 7.4 | 37 | 4 | 20 | 1.5 | 6 | 1.33 | 4 | 1.33 | 4 | 1 | 1 | 1.75 | 7 | 2 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 |
| 1be8d2d4-f32a-5ec1-aca8-9fc8984aa5b0 | G. Báez | Gabriel Alejandro Báez Corradi | 1995-07-21 | Argentina | Gobernador Castro | Argentina | Defender | 178 | 74 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 85.6 | 428 | 6.32 | 1 | null | null | null | 0 | 0 | 0 | 0 | null | null | 37 | 185 | 1.5 | 6 | 2 | 10 | null | null | 1 | 3 | 8 | 40 | 4.4 | 22 | 2 | 8 | 1.33 | 4 | 1 | 4 | 1 | 1 | 2 | 6 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 |
| 339be90a-65df-5314-be87-bb7c8e7d58d3 | G. Campi | Gastón Matías Campi | 1991-04-06 | Argentina | Lanús | Argentina | Defender | 193 | 88 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 4 | 95.75 | 383 | 7.1 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 33.25 | 133 | null | null | 1.5 | 3 | 1.5 | 3 | 2.25 | 9 | 3.5 | 14 | 2.5 | 10 | 1 | 1 | 1 | 1 | null | null | null | null | 1 | 3 | 1 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 |
| 3c125b0c-c1ca-558c-9e45-4d1524151e30 | G. Cantizano | Giovanni Ismael Cantizano | 2007-03-21 | Argentina | Rosario | Argentina | Midfielder | 168 | 63 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 4 |
| d19d3022-50e2-50eb-9938-0d91b6a9d0e6 | G. Carrillo | Guido Marcelo Carrillo | 1991-05-25 | Argentina | Magdalena | Argentina | Attacker | 191 | 87 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 4 | 92.75 | 371 | 6.95 | 2.67 | 3 | 1 | 1 | 0 | 0 | 0 | 0 | null | null | 14.75 | 59 | 2 | 6 | 1.67 | 5 | null | null | null | null | 11 | 44 | 6 | 24 | 1 | 2 | 1 | 1 | 1 | 2 | 1 | 2 | 1.33 | 4 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | 1 | 1 | 2 | 0 |
| 683e3aac-b4b5-572c-a0d3-e137f2e7eab6 | G. Cerato | Giuliano Cerato | 1998-06-10 | Argentina | Río Cuarto | Argentina | Defender | 170 | 65 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 4 | 89.25 | 357 | 6.78 | null | null | null | null | 0.33 | 1 | 0 | 0 | null | null | 37.5 | 150 | 2.5 | 5 | 3.5 | 7 | 1 | 1 | 1.33 | 4 | 9 | 36 | 5.33 | 16 | 1.67 | 5 | 1.5 | 3 | 1.5 | 3 | 1 | 1 | 2.67 | 8 | 2 | 0 | null | null | null | null | 0 | 0 | null | null | 1 | 1 | 0 | 0 |
| 571b61a2-edf0-5071-a25e-b24831b6ec14 | G. Compagnucci | Gabriel Carlos Compagnucci | 1991-08-29 | Argentina | Monte Buey | Argentina | Defender | 178 | 74 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 37.6 | 188 | 6.74 | 1 | null | null | null | 0.33 | 1 | 0 | 0 | null | null | 13 | 65 | 1.33 | 4 | null | null | null | null | null | null | 2.6 | 13 | 1.75 | 7 | 1.67 | 5 | 1 | 3 | 1 | 2 | 1.33 | 4 | 1 | 1 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 3 |
| 22783060-a6cf-50c7-b22d-ccd64e3cab8e | G. Corujo | Guzmán Corujo Bríccola | 1996-08-02 | Uruguay | Rodríguez | Uruguay | Defender | 189 | 85 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 2 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 2 |
| 8da345cb-2b10-5255-ad93-ba0a77c19736 | G. Duarte | Gaspar De Jesús Duarte | 2003-01-06 | Colombia | None | Colombia | Midfielder | 175 | 68 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 2 | 45 | 90 | 6.55 | 2 | 1 | null | null | 0 | 0 | 0 | 0 | null | null | 14.5 | 29 | null | null | null | null | null | null | 1 | 1 | 4 | 8 | 1.5 | 3 | 1 | 1 | null | null | null | null | 1.5 | 3 | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 3 |
| e9e38690-8799-5f58-b7cd-8a7a5141675e | G. Enrique | Guillermo Nicolás Enrique | 2000-02-24 | Argentina | Goya | Argentina | Defender | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 3 | 2 | 37 | 74 | 6.9 | 1 | null | null | null | 0 | 0 | 0 | 0 | null | null | 6.5 | 13 | 2 | 2 | 1 | 1 | null | null | 1 | 1 | 4.5 | 9 | 2 | 4 | 2.5 | 5 | 1 | 1 | null | null | 2 | 2 | 1 | 1 | 1 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 3 |
| eb0da1cf-f0b3-599f-8c75-cda80f7e9dd6 | G. Errecalde | Gonzalo Errecalde | 2000-03-30 | Argentina | General Pinto | Argentina | Defender | 185 | 78 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 5 |
| caf1afa3-bcc6-536a-805e-999ec0549458 | G. Fernández | Guillermo Matías Fernández | 1991-10-11 | Argentina | Granadero Baigorria | Argentina | Midfielder | 180 | 74 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 1 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 1 |
| 539624ba-cf0c-5413-bd14-d3603cb161bd | G. Ferrari | Gianluca Ferrari | 1997-06-30 | Argentina | Rosario | Argentina | Defender | 181 | 76 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 92.2 | 461 | 6.72 | 1.25 | 1 | null | null | 0 | 0 | 0 | 0 | null | null | 28.8 | 144 | 1 | 1 | 3 | 6 | 2 | 2 | 1.5 | 6 | 11.6 | 58 | 5.2 | 26 | 2 | 2 | 2 | 2 | 1 | 1 | 2.5 | 5 | 2 | 10 | 2 | 0 | null | null | null | null | 0 | 0 | null | null | 1 | 1 | 0 | 0 |
| 83991fb9-9c3c-59b5-9a3e-3685f2ca1bca | G. Galoppo | Giuliano Galoppo | 1999-06-18 | Argentina | Buenos Aires | Argentina | Midfielder | 179 | 73 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 38.6 | 193 | 6.76 | 1 | 1 | null | null | 0 | 0 | 0 | 0 | null | null | 15.4 | 77 | 1 | 1 | 1 | 4 | 1 | 2 | null | null | 4.6 | 23 | 2 | 10 | 1.5 | 3 | 1 | 1 | 1 | 1 | 1.5 | 3 | 1.33 | 4 | 1 | 0 | null | null | null | null | 0 | 0 | null | null | 1 | 1 | 0 | 4 |
| 83991fb9-9c3c-59b5-9a3e-3685f2ca1bca | G. Galoppo | Giuliano Galoppo | 1999-06-18 | Argentina | Buenos Aires | Argentina | Midfielder | 180 | 78 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 38.6 | 193 | 6.76 | 1 | 1 | null | null | 0 | 0 | 0 | 0 | null | null | 15.4 | 77 | 1 | 1 | 1 | 4 | 1 | 2 | null | null | 4.6 | 23 | 2 | 10 | 1.5 | 3 | 1 | 1 | 1 | 1 | 1.5 | 3 | 1.33 | 4 | 1 | 0 | null | null | null | null | 0 | 0 | null | null | 1 | 1 | 0 | 4 |
| 25f9b167-13b4-5b22-9c42-bff7d6f5a7aa | G. Gelini | None None | None | None | None | None | Attacker | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 3 | 3 | 48.33 | 145 | 6.23 | 1 | null | null | null | 0 | 0 | 0 | 0 | null | null | 9.33 | 28 | 1 | 1 | null | null | null | null | 1 | 2 | 5 | 15 | 2.5 | 5 | 1 | 3 | 1 | 1 | 1 | 2 | 1.5 | 3 | 4 | 4 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 1 |
| 1c0145db-4929-561d-89ab-f3737f2cece4 | G. Gonzalez | Gonzalo Joaquín González | 2003-04-15 | Argentina | None | Argentina | Defender | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 5 |
| 7c2da9f3-6297-58a1-a9f2-cd71fe034c79 | G. Guiffrey | Germán Leonel Guiffrey | 1997-12-31 | Argentina | Concordia | Argentina | Defender | 182 | 74 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 1 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 1 |
| a9aa0ef1-f7e6-5797-86e4-96bfc01ec0c6 | G. Hernández | Gastón Alan Hernández | 1998-01-19 | Argentina | San Rafael | Argentina | Defender | 185 | 80 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 93 | 465 | 7.22 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 40.4 | 202 | null | null | 3 | 15 | 1.33 | 4 | 2.2 | 11 | 12.6 | 63 | 8.8 | 44 | 1.33 | 4 | 1.5 | 3 | 1 | 3 | 1.75 | 7 | 1 | 2 | 1 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 5 | 0 |
| 9fec1473-7dea-59ca-82bd-46e29bc85c28 | G. Herrera | Guido Gabriel Herrera | 1992-02-29 | Argentina | Río Cuarto | Argentina | Goalkeeper | 187 | 80 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 93.8 | 469 | 6.84 | null | null | null | null | 0 | 0 | 1.4 | 7 | 2.4 | 12 | 27.8 | 139 | null | null | null | null | null | null | null | null | 1 | 2 | 1 | 2 | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 5 | 0 |
| 6b4e9168-d42c-5d21-bf72-933b1f1bbb60 | G. Infantino | Gino Infantino | 2003-05-19 | Argentina | Rosario | Argentina | Midfielder | 178 | 76 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 3 | 1 | 24 | 24 | 6.6 | null | null | null | null | null | null | 0 | 0 | null | null | 23 | 23 | null | null | null | null | null | null | null | null | 1 | 1 | 1 | 1 | null | null | null | null | null | null | 1 | 1 | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 3 |
| 4c2379f0-28fa-5c64-ac5b-e6ce2c99e4e0 | G. Lencina | Gonzalo Lencina | 1997-10-18 | Argentina | Alta Gracia | Argentina | Attacker | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 1 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 1 |
| 1f38e18a-dc71-5653-a073-353a95c12f6a | G. Lodico | Gastón Andrés Lodico | 1998-05-28 | Argentina | Avellaneda | Argentina | Midfielder | 173 | 63 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 2 | 2 | 62 | 124 | 6.6 | null | null | null | null | null | null | 0 | 0 | null | null | 38.5 | 77 | 1 | 2 | 1 | 1 | null | null | 2 | 2 | 3.5 | 7 | 3 | 3 | 1 | 1 | null | null | 1 | 1 | 2 | 2 | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 |
| 0e0c9c7a-e1c9-5c5a-878d-083ac6015b25 | G. Maffini | Gonzalo Maffini | 1993-01-17 | Argentina | General Cabrera | Argentina | Defender | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 3 | 95 | 285 | 6.53 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 30 | 90 | null | null | 2 | 2 | 1.5 | 3 | 3 | 9 | 12.33 | 37 | 7 | 21 | null | null | null | null | 1.5 | 3 | 1.67 | 5 | 1 | 3 | 1 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 3 | 1 |
| eaa224b8-970d-5afe-a328-e92bb4cdcbc9 | G. Mainero | Guido Mainero | 1995-03-23 | Argentina | Córdoba | Argentina | Attacker, Midfielder | 177 | 66 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 77.6 | 388 | 6.24 | 1 | 1 | null | null | 0 | 0 | 0 | 0 | null | null | 21.8 | 109 | 1.5 | 3 | 1 | 1 | null | null | 2 | 2 | 6.8 | 34 | 2.67 | 8 | 2 | 8 | 1 | 2 | 1 | 2 | 1.5 | 3 | 1 | 2 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | 1 | 1 | 0 | 0 |
| 348cb0d6-0b18-5123-9f5d-090dfbd36705 | G. Maroni | Gonzalo Maroni | 1999-03-18 | Argentina | Córdoba | Argentina | Midfielder | 175 | 70 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 3 | 2 | 53 | 106 | 6.6 | 2 | 1 | null | null | 0 | 0 | 0 | 0 | null | null | 18 | 36 | null | null | null | null | null | null | null | null | 6 | 12 | 2 | 2 | 1 | 2 | 1 | 1 | null | null | 1 | 1 | 5 | 5 | 1 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 3 |
| ddc51dc7-1b01-50fc-a3a8-ea7161eb0013 | G. Martirena | Gastón Nicolás Martirena Torres | 2000-01-05 | Uruguay | Montevideo | Uruguay | Defender, Midfielder | 173 | 64 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 2 | 87 | 174 | 6.65 | 1 | null | null | null | 0 | 0 | 0 | 0 | null | null | 27 | 54 | 1 | 1 | 1 | 2 | null | null | null | null | 4 | 8 | 2.5 | 5 | null | null | null | null | null | null | 2 | 2 | 1 | 1 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 2 |
| 78582e08-4282-5b61-aa85-1e52abc7ff6c | G. Montiel | Gonzalo Ariel Montiel | 1997-01-01 | Argentina | González Catán | Argentina | Defender | 175 | 68 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 92.6 | 463 | 6.74 | 1.33 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | null | null | 50.6 | 253 | 1.25 | 5 | 1.5 | 3 | 1 | 1 | 1.25 | 5 | 4 | 20 | 2.4 | 12 | 1 | 1 | 1 | 1 | 1.5 | 3 | 1 | 3 | 1 | 2 | 1 | 0 | null | null | null | null | 0 | 0 | null | null | 1.5 | 3 | 0 | 0 |
| a6db957c-6ad6-5d99-a267-b9aededc7797 | G. Neves | Gabriel Neves Perdomo | 1997-08-11 | Uruguay | Maldonado | Uruguay | Midfielder | 171 | 72 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 4 | 46.5 | 186 | 7.17 | 1 | 1 | null | null | 0 | 0 | 0 | 0 | null | null | 32 | 128 | 1 | 3 | 3.33 | 10 | 1 | 1 | 2 | 2 | 6 | 18 | 4 | 12 | null | null | null | null | 2 | 4 | 1 | 1 | 1 | 2 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 2 |
| 77642b6c-c0c2-5e0a-860b-65a97032c875 | G. Obredor | Gabriel Nazareno Obredor | 1997-01-06 | Argentina | None | Argentina | Midfielder | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 4 | 29.5 | 118 | 6.53 | 2 | 2 | null | null | 0 | 0 | 0 | 0 | null | null | 5 | 20 | 1 | 1 | 1.67 | 5 | 1 | 1 | 1 | 1 | 7 | 28 | 4 | 12 | 1 | 3 | null | null | null | null | 2 | 2 | 2 | 2 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | 2 | 2 | 0 | 4 |
| 8403fe72-44d2-56d9-b4f8-c5c14e23078a | G. Piñeiro | Gonzalo Agustín Piñeiro | 2000-10-03 | Argentina | Florencio Varela | Argentina | Midfielder | 177 | 70 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 3 | 1 | 17 | 17 | 6.5 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 7 | 7 | null | null | null | null | null | null | null | null | 3 | 3 | 1 | 1 | null | null | null | null | null | null | null | null | 2 | 2 | 1 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 3 |
| 4640eade-b541-5ca8-a274-891df0861f7e | G. Pérez | Gonzalo Germán Pérez Corbalán | 2001-01-04 | Uruguay | Montevideo | Uruguay | Defender | 178 | 72 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 2 | 15.5 | 31 | 6.5 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 4.5 | 9 | null | null | 1 | 1 | null | null | null | null | 2 | 4 | 1 | 1 | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 5 |
| 038a5592-2b0c-5d26-b937-176b729da0da | G. Requena | Gonzalo Requena | 2003-03-04 | Argentina | None | Argentina | Defender | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 2 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 2 |
| 4c471384-69ff-559b-8264-cf380f73b576 | G. Risso Patrón | Gabriel Adolfo Risso Patrón | 1995-11-05 | Argentina | Monteros | Argentina | Defender | 179 | 73 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 2 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 2 |
| 5eaedda9-2e47-589e-bd97-950774bf9ae0 | G. Rodríguez | Gregorio Rodríguez | 2000-01-17 | Argentina | Córdoba | Argentina | Midfielder | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 3 | 3 | 59 | 177 | 6.8 | 2 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | null | null | 9.33 | 28 | 1 | 1 | 3.5 | 7 | null | null | null | null | 7.67 | 23 | 6 | 12 | 3 | 6 | 3 | 3 | 1 | 2 | 1 | 1 | 1.5 | 3 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 2 |
| 0783dd8e-8ad2-5aa8-bd07-b8731dfcb5ff | G. Rojas | Gabriel Hernán Rojas | 1997-06-22 | Argentina | Almirante Brown | Argentina | Midfielder, Defender | 178 | 68 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 93.4 | 467 | 7.02 | 1.5 | 1 | 1 | 1 | 0.67 | 2 | 0 | 0 | null | null | 36.4 | 182 | 2.25 | 9 | 1.75 | 7 | 1 | 1 | 1.5 | 6 | 9.5 | 38 | 4.5 | 18 | 3 | 12 | 1.67 | 5 | 1 | 2 | 1.5 | 3 | 1.33 | 4 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | 1 | 2 | 0 | 0 |
| d40d5d18-6335-5877-9bec-22a4cb50b087 | G. Ríos | Gonzalo Alejandro Ríos | 1999-01-27 | Argentina | Florida | Argentina | Midfielder | 174 | 66 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 44 | 220 | 6.5 | 1 | 1 | null | null | 0.33 | 1 | 0 | 0 | null | null | 10.4 | 52 | 1.67 | 5 | null | null | null | null | 2 | 2 | 7 | 35 | 2.67 | 8 | 2.5 | 10 | 1 | 1 | 1.5 | 3 | 1.67 | 5 | 1.33 | 4 | 1 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 3 |
| b697cd93-7e34-57d0-9a05-4596178d63db | G. Santilli | Gino Santilli Rusconi | 2001-10-26 | Argentina | Villa Constitución | Argentina | Goalkeeper | 191 | 71 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 5 |
| 0b1d0894-0696-597b-820c-c013e57d339c | G. Siri | Gonzalo Siri Payer | 2003-08-27 | Argentina | Argentina | Goalkeeper | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 5 | |
| 0b1d0894-0696-597b-820c-c013e57d339c | G. Siri | Gonzalo Siri Payer | 2003-08-27 | Argentina | None | Argentina | Goalkeeper | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 5 |
| 8b3499ae-74fc-5930-8877-9f99e446c635 | G. Sosa | Gonzalo Sebastián Sosa | 2005-03-05 | Argentina | Buenos Aires | Argentina | Midfielder | 176 | 69 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 3 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 3 |
| 85045d77-cd42-50fc-9747-7ac5e45852ed | G. Soto | Guillermo Tomás Soto Arredondo | 1994-01-19 | Chile | Santiago de Chile | Chile | Defender | 177 | 69 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 2 | 1 | 101 | 101 | 6 | null | null | null | null | null | null | 0 | 0 | null | null | 25 | 25 | null | null | null | null | null | null | 1 | 1 | 3 | 3 | null | null | null | null | null | null | null | null | null | null | 1 | 1 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 1 |
| 8aebc717-00cd-561a-96d6-a7932fa82402 | G. Suso | Gastón Suso | 1991-03-12 | Argentina | Arrufó | Argentina | Defender | 190 | 82 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 92.2 | 461 | 6.58 | 2 | 1 | null | null | 0 | 0 | 0 | 0 | null | null | 30.6 | 153 | null | null | 1.5 | 3 | 1 | 1 | 2.67 | 8 | 7.2 | 36 | 4.6 | 23 | 1 | 1 | 1 | 1 | 1 | 2 | 1 | 1 | 1 | 4 | 1 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 |
| 9a192ea3-7df8-50c3-bafb-bc99225da157 | G. Zelarayán | Gonzalo Nicolas Zelarayán | 2004-04-28 | Argentina | None | Argentina | Attacker | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 1 | 3 | 3 | null | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 2 | 2 | null | null | null | null | null | null | null | null | 4 | 4 | 1 | 1 | null | null | null | null | 1 | 1 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 5 |
| 29c8b6ef-2b51-5ee5-b519-e715941d922c | G. Ávalos | Gabriel Ávalos Stumpfs | 1990-07-09 | Paraguay | Edelira | Paraguay | Attacker | 188 | 91 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 10 | 89 | 890 | 6.92 | 2 | 1 | 1 | 4 | 0.5 | 4 | 0 | 0 | null | null | 19.4 | 194 | 1.5 | 12 | 1.5 | 6 | null | null | 1 | 2 | 14 | 140 | 6.6 | 66 | 1.33 | 8 | 1 | 4 | 1 | 4 | 1 | 4 | 1.75 | 14 | 2 | 0 | null | null | null | null | 0 | 0 | null | null | 1.33 | 8 | 0 | 0 |
| 31211a4c-9cfc-54f0-8d0f-97c2da4db0ce | G. Ávila | Gastón Luciano Ávila | 2001-09-30 | Argentina | Rosario | Argentina | Defender | 182 | 80 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 1 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 1 |
| 8094d63c-017e-5f7b-bf8a-209ad66c0252 | H. De La Fuente | Hernán De La Fuente | 1997-01-07 | Argentina | Buenos Aires | Argentina | Defender | 177 | 73 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 3 | 1 | 52 | 52 | 6.5 | 1 | 1 | null | null | null | null | 0 | 0 | null | null | 12 | 12 | null | null | 2 | 2 | null | null | null | null | 5 | 5 | 3 | 3 | null | null | null | null | null | null | 1 | 1 | 1 | 1 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 3 |
| 32bbeaf7-16d0-57e7-ad58-f73fca11070b | H. Galíndez | Hernán Ismael Galíndez | 1987-03-30 | Argentina | Rosario | Ecuador | Goalkeeper | 189 | 84 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 93.6 | 468 | 6.84 | null | null | null | null | 0 | 0 | 0.8 | 4 | 3.33 | 10 | 30.2 | 151 | null | null | null | null | null | null | null | null | 2 | 4 | 3 | 3 | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 5 | 0 |
| 5e3e2e8a-5072-5b1b-b711-5a0b94f3c228 | H. López | Hernán Darío López Muñoz | 2000-09-07 | Argentina | Buenos Aires | Argentina | Attacker, Midfielder | 169 | 67 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 3 | 3 | 77.67 | 233 | 7.23 | 2.33 | 1.67 | 1 | 1 | null | null | 0 | 0 | null | null | 23.33 | 70 | 2.67 | 8 | 1 | 2 | null | null | null | null | 8.33 | 25 | 3 | 9 | 3 | 9 | 1 | 2 | null | null | 2 | 4 | 1 | 1 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | 1 | 1 | 0 | 0 |
| 2409f1a3-9789-5490-b41e-51d12eb31a56 | H. Tijanovich | Horacio Gabriel Tijanovich | 1996-02-28 | Argentina | Villa San Justo | Argentina | Attacker | 176 | 70 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 3 | 3 | 71.33 | 214 | 6.7 | 1.67 | 1.33 | null | null | 0 | 0 | 0 | 0 | null | null | 8.33 | 25 | 1.5 | 3 | 1.67 | 5 | null | null | null | null | 9 | 27 | 4.33 | 13 | 1.5 | 3 | 1 | 1 | 2 | 2 | 2 | 4 | 1.5 | 3 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 |
| 136700c8-7a0a-56c5-882b-9c04651e9b06 | I. Abraham | Luis Ignacio Abraham | 1998-01-12 | Argentina | Arroyito | Argentina | Defender | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 92.8 | 464 | 7.16 | 1.67 | 1 | null | null | 0.5 | 2 | 0 | 0 | null | null | 21.4 | 107 | 1.75 | 7 | 1.33 | 4 | 1 | 2 | 1 | 2 | 5 | 25 | 3 | 15 | 1.67 | 5 | 1 | 2 | 1 | 1 | 1.67 | 5 | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 |
| 0e896e01-8719-5e5b-948f-ba847562b978 | I. Arce | Ignacio Mauricio Jesús Arce | 1992-04-08 | Argentina | Paraná | Argentina | Goalkeeper | 185 | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 4 | 97 | 388 | 7.13 | null | null | null | null | 0 | 0 | 1 | 4 | 3 | 12 | 35.75 | 143 | 1 | 1 | null | null | null | null | null | null | 2.5 | 5 | 1.5 | 3 | 1 | 2 | 1 | 2 | 1 | 1 | 1 | 1 | 1 | 1 | 2 | 0 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 1 | 0 |
| 0e2665b4-776c-5657-895d-97989465a6d4 | I. Chicco | Ignacio Francisco Chicco | 1996-06-30 | Argentina | Brinkmann | Argentina | Goalkeeper | 185 | 80 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 5 |
| 0bf5d6af-facc-55d2-8c25-b7b201f7e4f3 | I. Cortez | Sebastián Ismael Cortez Díaz | 2000-06-26 | Argentina | None | Argentina | Defender | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 1 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 1 |
| 38a1a04e-8e46-59b8-b420-35269fd42ade | I. Erquiaga | Iván Erquiaga | 1999-03-26 | Argentina | Vivorata | Argentina | Defender | 176 | 72 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 2 | 30.5 | 61 | 6.6 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 15 | 30 | 1 | 1 | null | null | null | null | null | null | 2.5 | 5 | 3 | 3 | 1 | 1 | 1 | 1 | 1 | 1 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 4 |
| 2d596079-c109-5817-bf6a-199c1906250d | I. Fernández | Ignacio Martín Fernández | 1990-01-12 | Argentina | Castelli | Argentina | Midfielder | 182 | 67 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 4 | 73 | 292 | 6.5 | 1 | 1 | null | null | 0 | 0 | 0 | 0 | null | null | 32.25 | 129 | null | null | 1.33 | 4 | null | null | 1 | 2 | 10.5 | 42 | 4 | 16 | 2.33 | 7 | 1 | 2 | 2.5 | 5 | 2.25 | 9 | 2.67 | 8 | 1 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 4 | 0 |
| e6dee33f-1900-5c21-83a6-c4db10dac2d1 | I. Galván | Ignacio Galván | 2002-09-06 | Argentina | Buenos Aires | Argentina | Defender | 177 | 65 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 3 | 3 | 93.67 | 281 | 6.67 | 2 | 1 | null | null | 0 | 0 | 0 | 0 | null | null | 29.33 | 88 | 1.33 | 4 | 2.33 | 7 | null | null | 1 | 2 | 10.67 | 32 | 6.33 | 19 | 2.33 | 7 | 1.5 | 3 | 1 | 2 | 1.5 | 3 | 2 | 4 | 1 | 0 | null | null | 1 | 1 | 0 | 0 | null | null | null | null | 0 | 0 |
| e672bca6-cf9f-56d0-ba7b-a879c15765e1 | I. González | Imanol González Benac | 1998-01-06 | Argentina | Río Tercero | Argentina | Defender | 182 | 84 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 2 | 2 | 93.5 | 187 | 7.05 | 1 | null | null | null | 0 | 0 | 0 | 0 | null | null | 40 | 80 | 1 | 1 | 1.5 | 3 | null | null | 2 | 2 | 9 | 18 | 6.5 | 13 | null | null | null | null | 1 | 1 | 1 | 2 | 1 | 1 | 0 | 0 | null | null | 1 | 1 | 0 | 0 | null | null | 1 | 1 | 0 | 0 |
| 0c758786-5bf5-581f-b5e8-053288cf7748 | I. Lopez | None None | None | None | None | None | Goalkeeper | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 4 |
| b6899222-38e9-590b-af74-9e77ca8dffbc | I. Machuca | Javier Imanol Machuca | 2000-01-15 | Argentina | Roldán | Argentina | Attacker | 170 | 72 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 3 | 1 | 8 | 8 | 6.2 | null | null | null | null | null | null | 0 | 0 | null | null | 1 | 1 | null | null | null | null | null | null | null | null | 3 | 3 | null | null | 2 | 2 | null | null | null | null | null | null | 1 | 1 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 3 |
| 0a8f2580-5e37-5684-859c-a8b10a5df027 | I. Marcone | Iván José Marcone | 1990-06-03 | Argentina | Buenos Aires | Argentina | Midfielder | 184 | 90 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 3 | 69.33 | 208 | 6.93 | 1 | 1 | null | null | 0 | 0 | 0 | 0 | null | null | 26.33 | 79 | null | null | 2 | 6 | null | null | 1 | 1 | 9 | 27 | 4.67 | 14 | 1.5 | 3 | 1 | 1 | 1.5 | 3 | 1.5 | 3 | 1.33 | 4 | 1 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 3 |
| 69badcf7-35f5-550e-b8e8-59252009097d | I. Miramón | Juan Ignacio Miramón | 2003-06-12 | Argentina | Bolívar | Argentina | Midfielder | 173 | 69 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 3 | 3 | 40 | 120 | 7.13 | 1 | null | null | null | 0 | 0 | 0 | 0 | null | null | 24 | 72 | null | null | 2 | 6 | 1 | 1 | 1 | 1 | 6.67 | 20 | 4.67 | 14 | null | null | null | null | 1 | 1 | 2.33 | 7 | 2 | 2 | 1 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 2 |
| 69badcf7-35f5-550e-b8e8-59252009097d | I. Miramón | Juan Ignacio Miramón | 2003-06-12 | Argentina | Bolívar | Argentina | Midfielder | 173 | 74 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 3 | 3 | 40 | 120 | 7.13 | 1 | null | null | null | 0 | 0 | 0 | 0 | null | null | 24 | 72 | null | null | 2 | 6 | 1 | 1 | 1 | 1 | 6.67 | 20 | 4.67 | 14 | null | null | null | null | 1 | 1 | 2.33 | 7 | 2 | 2 | 1 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 2 |
| 72453b70-aa05-5e66-8b43-bfa4514c651c | I. Morales | Iván Andrés Morales Bravo | 1999-07-29 | Chile | Linares | Chile | Attacker | 178 | 69 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 1 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 1 |
| 25d48cff-1a21-57ad-b719-ea041edfc532 | I. Méndez | Juan Ignacio Méndez Aveiro | 1997-04-28 | Argentina | Luján de Cuyo | Argentina | Midfielder | 175 | 69 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 4 | 72.25 | 289 | 6.85 | 1 | null | null | null | 0 | 0 | 0 | 0 | null | null | 38 | 152 | 1 | 1 | 2 | 2 | 1 | 1 | 1.33 | 4 | 4.5 | 18 | 2.75 | 11 | 1 | 3 | 1 | 1 | 1 | 1 | 1.5 | 3 | 1 | 1 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | 1 | 1 | 0 | 1 |
| d09c66b7-cb8d-5c81-ae21-7e9da03140ac | I. Pais | Ignacio Pais Mayán | 2000-05-30 | Argentina | Quilmes | Argentina | Midfielder | 175 | 61 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 1 | 1 | 96 | 96 | 6.7 | 1 | null | null | null | null | null | 0 | 0 | null | null | 47 | 47 | 3 | 3 | null | null | null | null | 3 | 3 | 5 | 5 | 1 | 1 | null | null | null | null | null | null | null | null | 1 | 1 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 |
| a197378b-f30b-5973-b3bf-64ac883e2422 | I. Peluffo | None None | None | None | None | None | Attacker | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 3 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 3 |
| 09382d57-eac6-5a54-8d93-a6eae2373747 | I. Perruzzi | Ignacio Perruzzi Ambrosini | 2005-04-05 | Argentina | Mendoza | Argentina | Midfielder | 177 | 80 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 89.6 | 448 | 6.7 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 31.6 | 158 | 2 | 2 | 1.6 | 8 | null | null | 2 | 8 | 10 | 50 | 5.2 | 26 | 1 | 2 | null | null | 1 | 3 | 3.25 | 13 | 3 | 12 | 2 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 |
| 01f88ede-6b60-5c8c-ab04-6db973984653 | I. Pussetto | Ignacio Pussetto | 1995-12-21 | Argentina | Cañada Rosquín | Argentina | Attacker | 180 | 74 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 22.6 | 113 | 6.66 | 1 | null | null | null | 0 | 0 | 0 | 0 | null | null | 5 | 25 | 1 | 1 | 1 | 3 | null | null | 1 | 1 | 4.6 | 23 | 2.4 | 12 | 1 | 2 | 1 | 1 | null | null | 1 | 1 | 4 | 4 | 1 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 5 |
| fddf6932-47a2-5e54-a21e-2517020f4003 | I. Ramírez | Juan Ignacio Ramírez Polero | 1997-02-01 | Uruguay | Mercedes | Uruguay | Attacker | 180 | 76 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 2 | 2 | 18 | 36 | 6.6 | 1 | null | null | null | null | null | 0 | 0 | null | null | 2.5 | 5 | null | null | null | null | null | null | null | null | 2.5 | 5 | 1 | 2 | null | null | null | null | null | null | 1 | 2 | 1 | 1 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 2 |
| 3726a5f5-6db9-5e33-b490-59e2d8c9f258 | I. Rodríguez | Ignacio Agustín Rodríguez | 2002-02-22 | Argentina | None | Argentina | Midfielder | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 3 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 3 |
| 4b0c596c-2c2d-54be-85ae-be48331badc5 | I. Russo | Ignacio Russo Cordero | 2000-12-13 | Argentina | Rosario | Argentina | Attacker | 175 | 77 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 4 | 88.25 | 353 | 7.75 | 2.67 | 2 | 1.5 | 3 | 0.67 | 2 | 0 | 0 | null | null | 16.5 | 66 | 2 | 8 | 1.25 | 5 | 1 | 1 | 1 | 2 | 12 | 48 | 7.25 | 29 | 2 | 6 | 1.5 | 3 | 1 | 2 | 2.75 | 11 | 1.25 | 5 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | 1 | 1 | 0 | 0 |
| 4a76a244-9526-5a2e-b558-8c2b08fd887f | I. Tapia | Iván Alejo Tapia | 1998-11-23 | Argentina | Buenos Aires | Argentina | Attacker, Midfielder | 176 | 73 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 4 | 82.75 | 331 | 7 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | null | null | 29.25 | 117 | 1.75 | 7 | 1.33 | 4 | null | null | 1.5 | 3 | 6.5 | 26 | 3.25 | 13 | 1 | 2 | 1 | 1 | 2.33 | 7 | 2.33 | 7 | 1 | 1 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 4 | 0 |
| 1061a7cd-5bf5-5de4-93c0-4023948b2eb9 | I. Villalba | Iván Emilio Villalba Chamorro | 1995-01-19 | Paraguay | Asunción | Paraguay | Defender | 182 | 84 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 87 | 435 | 6.74 | 1 | 1 | null | null | 0 | 0 | 0 | 0 | null | null | 23 | 115 | null | null | 3.2 | 16 | null | null | 1 | 4 | 11.6 | 58 | 7.2 | 36 | 1 | 1 | null | null | 1.6 | 8 | 1.75 | 7 | 1.67 | 5 | 1 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 |
| 26bd89b1-0877-5f4f-ad4e-925304bdf4b2 | I. Vázquez | Ignacio José Luis Vázquez | 1997-05-15 | Argentina | Hurlingham | Argentina | Defender | 188 | 84 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 94.2 | 471 | 7.1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | null | null | 36.8 | 184 | null | null | 1.75 | 7 | 2 | 4 | 1.67 | 5 | 10 | 50 | 6 | 30 | 1 | 1 | null | null | 2 | 4 | 1.5 | 6 | 2 | 4 | 1 | 0 | null | null | null | null | 1 | 0 | null | null | null | null | 5 | 0 |
| 27d99533-2480-506f-b29b-b6bc605e6e77 | I. Zufiaurre | Iker Zufiaurre | 2005-08-07 | Argentina | Córdoba | Argentina | Attacker | 178 | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 4 | 52.25 | 209 | 6.55 | 3 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | null | null | 9.25 | 37 | null | null | 1.5 | 3 | null | null | null | null | 5.75 | 23 | 1.25 | 5 | 1.67 | 5 | null | null | null | null | null | null | 1.25 | 5 | 1 | 0 | null | null | null | null | 0 | 0 | null | null | 2 | 2 | 0 | 3 |
| 70156e84-09a5-5fb0-9d97-a801f4657597 | Ian Martin Subiabre | Ian Martín Subiabre | 2007-01-01 | Argentina | Comodoro Rivadavia | Argentina | Attacker | 172 | 71 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 28 | 140 | 6.3 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 5.6 | 28 | 1 | 1 | null | null | null | null | null | null | 4.8 | 24 | 1.67 | 5 | 2.33 | 7 | 1 | 3 | 1 | 2 | 2 | 2 | 2.33 | 7 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 5 |
| a719b442-0191-59ab-9d5a-9cb9fc902d4b | Ignacio Campo | Ignacio Nicolás Campo | 2005-03-30 | Argentina | José C. Paz | Argentina | Defender | 179 | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 5 |
| dff8413c-cff1-5817-9a6a-49dd9ee7473d | Ignacio Ovando | Ignacio Ovando | 2007-06-29 | Argentina | None | Argentina | Defender | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 4 | 91.5 | 366 | 7.08 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | null | null | 31.5 | 126 | null | null | 1.5 | 3 | 1 | 2 | 2 | 6 | 9 | 36 | 6.25 | 25 | 2 | 4 | 1.5 | 3 | 1 | 4 | 2 | 8 | 2 | 2 | 1 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 |
| 96ed7a42-14da-5749-9789-3bdd4dab0054 | Ivan Guaraz | Iván Alexander Guaraz | 2005-03-11 | Argentina | Buenos Aires | Argentina | Attacker | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 4 | 69.5 | 278 | 6.93 | 1 | null | null | null | 0 | 0 | 0 | 0 | null | null | 28.25 | 113 | 1 | 1 | 2.67 | 8 | null | null | 2 | 4 | 6.25 | 25 | 5.67 | 17 | 1.33 | 4 | 1.5 | 3 | 1 | 2 | 1 | 3 | 1 | 1 | 1 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 1 |
| 9022ff14-b312-59cb-9023-3f38a8cbc6f1 | J. Acevedo | Héctor Jonás Acevedo | 1997-02-06 | Argentina | Concarán | Argentina | Midfielder | 172 | 70 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 2 | 63 | 126 | 6.55 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 22 | 44 | 1 | 2 | 1 | 1 | null | null | null | null | 4 | 8 | 1.5 | 3 | 1 | 1 | null | null | 1 | 1 | 1 | 2 | 1 | 1 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 3 |
| 999a3b4d-1c89-57c5-b5e8-305181f46b41 | J. Alfaro | Juan Luis Alfaro | 1999-10-16 | Argentina | Gualeguaychú | Argentina | Midfielder | 175 | 70 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 3 | 57.33 | 172 | 7.27 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 19 | 57 | 1 | 2 | 4.5 | 9 | 3 | 3 | 1 | 2 | 10 | 30 | 7 | 21 | 1.5 | 3 | 1.5 | 3 | null | null | null | null | 2 | 4 | 1 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 2 |
| 8da8ccce-3b34-5c25-ac92-f98fa2ebebdc | J. Antonini | None None | None | None | None | None | Defender | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 3 | 94.33 | 283 | 5.9 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 26.33 | 79 | 1 | 1 | 2.5 | 5 | 1 | 1 | 6 | 12 | 9 | 27 | 5.33 | 16 | null | null | null | null | null | null | 1 | 2 | 1 | 2 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 1 |
| b967620d-7c1c-502e-a132-73b0cbfb68e2 | J. Arias | Junior Gabriel Arias Cácerers | 1993-05-17 | Uruguay | Montevideo | Uruguay | Attacker | 176 | 81 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 4 | 92.75 | 371 | 5.93 | 3.33 | 1 | null | null | 0 | 0 | 0 | 0 | null | null | 19 | 76 | 1 | 2 | 2 | 2 | null | null | 2 | 2 | 11 | 44 | 3.75 | 15 | 2.5 | 10 | null | null | 1 | 1 | 2 | 4 | 1.33 | 4 | 1 | 0 | null | null | null | null | 0 | 0 | null | null | 1 | 2 | 0 | 0 |
| 83bd448d-0fe4-5483-b893-4f25b775d82a | J. Barinaga | Juan Ignacio Barinaga | 2000-10-10 | Argentina | Rosario | Argentina | Defender | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 85 | 425 | 6.84 | 1 | 1 | null | null | 0 | 0 | 0 | 0 | null | null | 38.2 | 191 | 1.5 | 3 | 1.25 | 5 | 1 | 2 | 1.25 | 5 | 10.4 | 52 | 5.8 | 29 | 2.8 | 14 | 1.75 | 7 | 1.6 | 8 | 2 | 8 | 1 | 3 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 |
| 83bd448d-0fe4-5483-b893-4f25b775d82a | J. Barinaga | Juan Ignacio Barinaga | 2000-10-10 | Argentina | Rosario | Argentina | Defender | 176 | 71 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 85 | 425 | 6.84 | 1 | 1 | null | null | 0 | 0 | 0 | 0 | null | null | 38.2 | 191 | 1.5 | 3 | 1.25 | 5 | 1 | 2 | 1.25 | 5 | 10.4 | 52 | 5.8 | 29 | 2.8 | 14 | 1.75 | 7 | 1.6 | 8 | 2 | 8 | 1 | 3 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 |
| b44aeec8-8eb3-5769-9dec-82e09b9f6b3e | J. Blázquez | Joaquín Blázquez | 2001-01-28 | Argentina | Luque | Argentina | Goalkeeper | 193 | 91 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 5 |
| e0333e4e-e113-5ae1-a272-4c15fdd57d05 | J. Broun | Jorge Emanuel Broun | 1986-05-26 | Argentina | Rosario | Argentina | Goalkeeper | 190 | 90 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 4 |
| 91f50d7b-4732-56fe-8cd9-dcdeb1108aeb | J. Burgos | Joaquín Tobio Burgos | 2004-12-14 | Argentina | None | Argentina | Attacker, Midfielder | 177 | 72 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 3 | 55.33 | 166 | 6.63 | null | null | null | null | 0.5 | 1 | 0 | 0 | null | null | 12.67 | 38 | 2 | 2 | 1 | 1 | null | null | 1 | 2 | 5.5 | 11 | 3.5 | 7 | 2.5 | 5 | 2 | 4 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 2 |
| 70459245-4373-5132-a779-3eb7c3392b47 | J. Burrai | Javier Nicolás Burrai | 1990-10-09 | Argentina | San Nicolás de los Arroyos | Argentina | Goalkeeper | 188 | 82 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 93.2 | 466 | 7.38 | null | null | null | null | 0 | 0 | 1 | 5 | 4.6 | 23 | 24 | 120 | null | null | 1 | 1 | null | null | null | null | 1 | 3 | 1 | 3 | null | null | null | null | null | null | 1 | 1 | null | null | 0 | 0 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 0 | 0 |
| ddd9f621-a68f-516e-95a0-58061229f2ad | J. Cabrera | Juan Manuel Cabrera | 2000-03-10 | Argentina | Jaúregui | Argentina | Defender | 180 | 74 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 1 | 1 | 45 | 45 | 6.3 | null | null | null | null | null | null | 0 | 0 | null | null | 14 | 14 | null | null | null | null | null | null | 1 | 1 | 6 | 6 | null | null | 1 | 1 | null | null | null | null | null | null | 5 | 5 | 1 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 |
| 8ec7e3c3-c8c4-55b2-99fb-f53b1dbc08b8 | J. Caicedo | Jordy Josué Caicedo Medina | 1997-11-18 | Ecuador | Machala | Ecuador | Attacker | 185 | 82 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 92 | 460 | 7 | 1.2 | 1.2 | 1 | 4 | 0 | 0 | 0 | 0 | null | null | 14.2 | 71 | 1.33 | 4 | 1 | 2 | null | null | null | null | 12.6 | 63 | 4.6 | 23 | 2.75 | 11 | 1.5 | 3 | 1 | 2 | 1.5 | 6 | 4.67 | 14 | 2 | 0 | null | null | null | null | 1 | 0 | null | null | 1.67 | 5 | 0 | 0 |
| ecc0b48f-2086-5e79-bfb6-dd466e5b1bbb | J. Campaz | Jaminton Leandro Campaz | 2000-05-24 | Colombia | Ibagué | Colombia | Midfielder | 165 | 69 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 2 | 2 | 75.5 | 151 | 7.2 | 3 | 2 | null | null | 0.5 | 1 | 0 | 0 | null | null | 17.5 | 35 | 2 | 4 | 2 | 2 | null | null | 1 | 1 | 13 | 26 | 7 | 14 | 5.5 | 11 | 3 | 6 | 1 | 2 | 2.5 | 5 | 1 | 2 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 |
| 6747f956-ee05-5390-b0f3-5679674c2713 | J. Canale | José María Canale Domínguez | 1996-07-20 | Paraguay | Itauguá | Paraguay | Defender | 183 | 82 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 95 | 475 | 6.48 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 38 | 190 | 1 | 1 | 1.6 | 8 | 2 | 6 | 2 | 4 | 5.8 | 29 | 3.2 | 16 | null | null | null | null | 1 | 2 | 1.67 | 5 | 1 | 2 | 0 | 0 | null | null | 1 | 1 | 0 | 0 | null | null | 1 | 1 | 0 | 0 |
| 43aa2ec3-5bfd-5ea5-9fb7-83802ad8b4ee | J. Candia | Jhonatan Marcelo Candia Hernández | 1995-03-15 | Uruguay | Montevideo | Uruguay | Attacker | 171 | 63 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 3 | 2 | 71 | 142 | 6.5 | 1 | 1 | null | null | 0 | 0 | 0 | 0 | null | null | 16.5 | 33 | null | null | null | null | null | null | 1 | 1 | 14.5 | 29 | 6.5 | 13 | 1 | 1 | null | null | 1 | 1 | 2 | 4 | 1 | 1 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 1 |
| 2ad2f39d-3944-59f9-9401-341252e0495d | J. Carabalí | John David Carabalí Carabalí | 2000-04-16 | Ecuador | None | Ecuador | Midfielder | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 4 | 68.75 | 275 | 6.57 | 1.33 | 1 | null | null | 0 | 0 | 0 | 0 | null | null | 20.25 | 81 | 3 | 3 | 1 | 2 | null | null | 1 | 1 | 6.5 | 26 | 2.25 | 9 | 3 | 12 | 1.5 | 6 | 1 | 2 | null | null | 1.33 | 4 | 1 | 0 | null | null | null | null | 0 | 0 | null | null | 1 | 1 | 0 | 1 |
| f5c7dace-c8d0-5d6e-8b2f-8ae3832ddd7f | J. Ceballos | Julián Darío Ceballos | 2004-09-13 | Argentina | None | Argentina | Midfielder | 161 | 61 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 4 | 54.5 | 218 | 6.6 | 2 | 2 | null | null | 0 | 0 | 0 | 0 | null | null | 13 | 52 | 2 | 2 | 1.5 | 3 | null | null | 1 | 3 | 5.75 | 23 | 2.67 | 8 | 3.67 | 11 | 2 | 4 | 1 | 2 | 1 | 1 | 1.25 | 5 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 1 |
| 80cb33a4-52c0-5154-82bc-ff2d635ff52b | J. Contrera | Julián Contrera | 2003-05-10 | Argentina | Rufino | Argentina | Midfielder | 167 | 68 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 56.4 | 282 | 6.34 | 1 | 1 | null | null | 0.33 | 1 | 0 | 0 | null | null | 10.8 | 54 | 2 | 4 | null | null | 1 | 1 | 1 | 1 | 8.4 | 42 | 2.2 | 11 | 2.2 | 11 | 1.33 | 4 | 1.5 | 3 | 2 | 4 | 3 | 9 | 2 | 0 | null | null | null | null | 0 | 0 | null | null | 1 | 1 | 0 | 3 |
| 7043ef89-6c50-536d-95db-aa8fb8a83613 | J. Cortazzo | Juan Cruz Cortazzo | 2005-10-18 | Argentina | La Plata | Argentina | Defender | 186 | 79 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 2 | 10 | 20 | 6.75 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 3.5 | 7 | null | null | 1 | 1 | null | null | null | null | 1 | 1 | 1 | 1 | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 5 |
| f827720c-21dd-5d3a-9ff2-0cd4c8b4081e | J. Córdoba | Jhon Emerson Córdoba Mosquera | 2000-07-15 | Colombia | Risaralda | Colombia | Midfielder | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 1 | 1 | 89 | 89 | 6.7 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 9 | 9 | 2 | 2 | 2 | 2 | null | null | null | null | 11 | 11 | 4 | 4 | 2 | 2 | null | null | 1 | 1 | 2 | 2 | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | 1 | 1 | 0 | 0 |
| 7a1ebe02-d77b-563a-bc02-8ed59459fce0 | J. Devecchi | José Antonio Devecchi | 1995-07-09 | Argentina | Corrientes | Argentina | Goalkeeper | 188 | 83 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 1 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 5 |
| d2cc3d3c-5f38-5fa4-9f35-860fa85d9c2b | J. Dominguez | Javier Dominguez | 2000-05-26 | Paraguay | Tomás Romero Pereira | Paraguay | Midfielder | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 3 | 45.67 | 137 | 6.7 | 1 | 1 | null | null | 0 | 0 | 0 | 0 | null | null | 25 | 75 | 1 | 1 | 2 | 4 | null | null | 2 | 2 | 5 | 15 | 3.5 | 7 | 2 | 2 | 1 | 1 | 2 | 2 | null | null | 1.67 | 5 | 1 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 3 |
| 448120f0-df6b-561b-91d9-73bcfa629da8 | J. Elordi | Juan Manuel Elordi | 1994-08-21 | Argentina | Saladillo | Argentina | Defender | 176 | 70 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 93 | 465 | 6.98 | 2.33 | 1 | null | null | 0 | 0 | 0 | 0 | null | null | 24.4 | 122 | 1.25 | 5 | 2.2 | 11 | 1 | 3 | 1 | 3 | 8.4 | 42 | 5.2 | 26 | 1.33 | 4 | null | null | 1.2 | 6 | 1.67 | 5 | 1.33 | 4 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 |
| 4928ed00-985f-5d96-b26a-ddc197062f25 | J. Elías | Jalil Juan José Elías | 1996-04-25 | Argentina | Rosario | Argentina | Midfielder | 173 | 73 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 4 | 94 | 376 | 6.88 | 1 | 1 | null | null | 0 | 0 | 0 | 0 | null | null | 37.25 | 149 | null | null | 1.75 | 7 | 3 | 3 | 1.33 | 4 | 7.75 | 31 | 3.75 | 15 | null | null | null | null | 1.5 | 3 | 1 | 2 | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 |
| 6b7db94b-dd95-53b3-8936-dd00baf1d366 | J. Espínola | Juan Ángel Espínola González | 1994-11-02 | Paraguay | Ciudad del Este | Paraguay | Goalkeeper | 186 | 100 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 4 |
| f482693a-a854-5d62-8aae-a611ca5b8ca8 | J. Fedorco | Juan Manuel Fedorco | 2000-11-28 | Argentina | Carmen de Patagones | Argentina | Defender | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 3 | 70 | 210 | 6.9 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 21.33 | 64 | null | null | 3 | 6 | 1 | 1 | 1 | 2 | 8.67 | 26 | 7.5 | 15 | null | null | null | null | null | null | 1 | 1 | 1 | 1 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 3 |
| bff022ae-499c-5d4a-8812-6e06559f4071 | J. Fernández | Julián Fernández | 2004-01-30 | Argentina | Buenos Aires | Argentina | Attacker | 183 | 74 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 2 | 1 | 51 | 51 | 6.5 | 1 | null | null | null | null | null | 0 | 0 | null | null | 24 | 24 | null | null | 1 | 1 | 1 | 1 | null | null | 4 | 4 | 1 | 1 | 2 | 2 | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 2 |
| e3d91126-51dd-571a-8db3-e8f8590b3489 | J. Ferreira | Javier Ferreira | 1992-02-15 | Paraguay | San Pedro De Ycuamandiyú | Paraguay | Attacker | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 3 | 1 | 45 | 45 | 6.3 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 7 | 7 | null | null | null | null | null | null | null | null | 10 | 10 | 6 | 6 | 2 | 2 | 1 | 1 | null | null | 3 | 3 | 2 | 2 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 2 |
| 2962a16e-b4f3-5942-84e1-31d3c2c31614 | J. Florentín | José Ignacio Florentín Bobadilla | 1996-07-05 | Paraguay | Juan Emiliano O'Leary | Paraguay | Midfielder | 181 | 80 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 88.2 | 441 | 6.9 | 1.6 | 1 | null | null | 0 | 0 | 0 | 0 | null | null | 28 | 140 | 1.5 | 3 | 2.6 | 13 | 1.5 | 3 | 2.25 | 9 | 12.2 | 61 | 6.8 | 34 | 1 | 1 | null | null | 1.67 | 5 | 1 | 2 | 2 | 8 | 0 | 0 | null | null | 1 | 1 | 0 | 0 | null | null | 1 | 2 | 0 | 0 |
| 6a842aa2-dc03-5f9d-abf3-94b1b3ae0835 | J. Florentín | Jeremías Nisael Florentín | 2006-09-01 | Argentina | San Justo | Argentina | Goalkeeper | 190 | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 2 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 2 |
| 646f3070-219f-53f1-b223-75f8309e39f4 | J. Franco | Juan José Franco Arrellaga | 1992-02-10 | Paraguay | Asunción | Paraguay | Defender, Midfielder | 176 | 71 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 2 | 67.5 | 135 | 6.7 | 1 | null | null | null | null | null | 0 | 0 | null | null | 12.5 | 25 | null | null | 2 | 2 | null | null | 1 | 1 | 3.5 | 7 | 3 | 6 | 1 | 2 | 1 | 1 | null | null | 2 | 2 | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 2 |
| 2245ba18-c3b6-550a-a98c-124ef489b698 | J. Freitas | None None | None | None | None | None | Attacker | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 1 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 1 |
| a48dea5f-f946-52c0-b8cc-dafb79587c83 | J. Galván | Jonathan Sebastián Galván | 1992-06-25 | Argentina | Mar del Plata | Argentina | Defender | 179 | 74 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 4 | 93.5 | 374 | 6.7 | 1.5 | 2 | null | null | 0 | 0 | 0 | 0 | null | null | 38.25 | 153 | 1 | 2 | 1.5 | 6 | null | null | 2.5 | 5 | 9.25 | 37 | 5.5 | 22 | null | null | null | null | 1.67 | 5 | 2 | 2 | 1.33 | 4 | 1 | 0 | null | null | null | null | 0 | 0 | null | null | 1 | 1 | 0 | 0 |
| 6173471e-48e4-5893-bdbe-da0f7557df79 | J. García | Roberto Joaquín García | 2001-08-20 | Argentina | Buenos Aires | Argentina | Defender | 181 | 73 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 3 | 68 | 204 | 6.93 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | null | null | 30 | 90 | 2 | 6 | 1 | 1 | 1 | 1 | null | null | 4 | 12 | 2 | 4 | 1.5 | 3 | null | null | 1.5 | 3 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 3 |
| d6fcf1e2-7d70-5c62-a285-e0afe992807c | J. Gauto | Juan Carlos Gauto | 2004-06-02 | Argentina | Perito Moreno | Argentina | Midfielder, Attacker | 172 | 64 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 84.6 | 423 | 6.28 | 1 | 1 | null | null | 1 | 1 | 0 | 0 | null | null | 22 | 110 | 1.75 | 7 | 1.5 | 3 | null | null | 2 | 4 | 9.8 | 49 | 3 | 9 | 4 | 16 | 1.5 | 3 | 2 | 2 | 1.5 | 3 | 2 | 6 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | 1 | 1 | 0 | 0 |
| 234b0a55-15f9-5fc0-8c06-9bd025e6f7f8 | J. Goitía | Jonatan Esteban Goitía | 1994-08-02 | Argentina | Mariano Moreno | Argentina | Defender | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 4 | 76.25 | 305 | 6.55 | 1 | null | null | null | 0 | 0 | 0 | 0 | null | null | 18 | 72 | null | null | 3.33 | 10 | null | null | 2 | 2 | 9 | 36 | 4.25 | 17 | 1 | 1 | null | null | 1 | 1 | 1.5 | 3 | 2.25 | 9 | 2 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 |
| 53ab28ea-ccfc-574b-8b09-12ddf8cdb39d | J. Gutiérrez | Juan Manuel Gutiérrez Freire | 2002-02-04 | Uruguay | Atlántida | Uruguay | Attacker | 178 | 68 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 65.8 | 329 | 7.06 | 2.5 | 2 | 1 | 1 | 2 | 2 | 0 | 0 | null | null | 9.8 | 49 | 1.5 | 3 | 2 | 8 | null | null | 1 | 2 | 7.6 | 38 | 4 | 20 | 2 | 8 | 2 | 4 | 1 | 3 | 2.33 | 7 | 1.5 | 6 | 1 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 1 |
| 37733f1b-3400-50ef-ae59-4abebe91347e | J. Gómez | Jonatan David Gómez | 1989-12-21 | Argentina | Capitán Bermúdez | Argentina | Midfielder | 171 | 71 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 2 | 63.5 | 127 | 6.5 | 1 | 1 | null | null | 0 | 0 | 0 | 0 | null | null | 27.5 | 55 | 2 | 4 | null | null | null | null | 1 | 1 | 4.5 | 9 | 1 | 1 | 1 | 1 | null | null | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 3 |
| 4a1ee6ae-1826-58f6-a93f-7b8b15f11659 | J. Gómez | José Amado Gómez | 2000-03-06 | Argentina | Santiago del Estero | Argentina | Defender | 173 | 66 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 3 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 3 |
| 81201bbd-a1c6-5a75-9a60-793a6b7ec872 | J. Herrera | Jonathan Carlos Herrera | 1991-09-16 | Argentina | Buenos Aires | Argentina | Attacker | 175 | 74 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 4 | 69 | 276 | 6.07 | 1.67 | 1 | null | null | 0 | 0 | 0 | 0 | null | null | 12.67 | 38 | null | null | 1.5 | 3 | null | null | 1 | 1 | 10 | 30 | 3 | 9 | 1 | 1 | 1 | 1 | 1 | 3 | 1 | 1 | 4 | 12 | 2 | 0 | null | null | null | null | 0 | 0 | null | null | 1 | 1 | 3 | 1 |
| cef80f8e-f145-58cf-bc90-79f82be027f7 | J. Ingratti | José María Ingratti | 2000-07-28 | Argentina | Santiago del Estero | Argentina | Attacker | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 3 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 3 |
| 7199c86e-4a61-5ee7-a267-bd334495abaa | J. Insaurralde | Juan Manuel Insaurralde | 1984-10-03 | Argentina | Resistencia | Argentina | Defender | 187 | 87 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 3 | 3 | 82 | 246 | 6.67 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 23.67 | 71 | null | null | 1.5 | 3 | 1 | 2 | 2 | 4 | 8 | 24 | 3.67 | 11 | null | null | null | null | 1 | 1 | 1 | 1 | 2.5 | 5 | 2 | 1 | null | null | null | null | 0 | 0 | null | null | null | null | 3 | 0 |
| 4c6992b9-ad05-5006-a1e6-502382b55e3e | J. Iribarren | Juan Martín Iribarren | 2003-01-22 | Argentina | Argentina | Defender | 175 | 73 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 2 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 2 | |
| 4c6992b9-ad05-5006-a1e6-502382b55e3e | J. Iribarren | Juan Martín Iribarren | 2003-01-22 | Argentina | None | Argentina | Defender | 175 | 73 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 2 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 2 |
| 82cc4a58-9d7b-59d1-bd95-d966ebae1ef5 | J. Kadijevic | Julián Kadijevic | 2004-01-27 | Argentina | None | Argentina | Goalkeeper | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 1 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 1 |
| 9cc2f730-cbd3-52ea-8f6d-c19e845323cb | J. Kadijevic | None None | None | None | None | None | Goalkeeper | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 4 |
| 1ee8c409-0164-5eb7-97b6-ac38106adb44 | J. Laso | Joaquín Marcelo Laso | 1990-07-04 | Argentina | Buenos Aires | Argentina | Defender | 185 | 80 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 4 | 83.75 | 335 | 7.08 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 28 | 112 | null | null | 2.25 | 9 | 1 | 2 | 1 | 3 | 4.5 | 18 | 4 | 16 | null | null | null | null | null | null | 1 | 2 | 1 | 1 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 4 | 0 |
| 62d4e66e-fac5-5c07-8b9a-dbfa9d4a5a63 | J. Ledesma | Jeremías Conan Ledesma | 1993-02-13 | Argentina | Pergamino | Argentina | Goalkeeper | 187 | 70 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 4 | 91.5 | 366 | 7.3 | null | null | null | null | 0 | 0 | 1 | 4 | 4.5 | 18 | 25 | 100 | null | null | null | null | null | null | null | null | 1 | 2 | 1 | 2 | null | null | null | null | null | null | 1 | 1 | null | null | 0 | 0 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 0 | 0 |
| d045c60d-395b-5feb-9a80-e794dacb623f | J. Lucco | Jeremías Lucco | 2005-12-10 | Argentina | None | Argentina | Attacker | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 1 | 8 | 8 | 6.6 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | null | null | null | null | 1 | 1 | null | null | null | null | 3 | 3 | 2 | 2 | null | null | null | null | null | null | 1 | 1 | 1 | 1 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 5 |
| 0e5da1ab-4bd4-54dc-a307-73ad9fa4d739 | J. Ludueña | Juan Pablo Ludueña | 2003-02-11 | Argentina | Río Primero | Argentina | Defender | 176 | 75 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 4 | 62.5 | 250 | 6.95 | 1 | null | null | null | 0.33 | 1 | 0 | 0 | null | null | 26 | 104 | 2 | 4 | 2 | 6 | null | null | 2 | 6 | 5.5 | 22 | 4.25 | 17 | 1 | 1 | null | null | null | null | null | null | 1 | 1 | 1 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 3 |
| a05edbb9-48e5-5f61-adcc-3edb7fc9e114 | J. Lázaro | Jeremías Ezequiel Lázaro | 2004-06-28 | Argentina | Rio Segundo | Argentina | Midfielder | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 2 | 2 | 28 | 56 | 6.45 | null | null | null | null | null | null | 0 | 0 | null | null | 7 | 14 | 1 | 1 | 1 | 1 | null | null | null | null | 4 | 8 | 2 | 4 | 1 | 1 | null | null | null | null | 1 | 2 | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 2 |
| c1d97e22-65d9-5898-b9a6-3ae2839e7fd0 | J. López | Julián Alejo López | 2000-01-08 | Argentina | Avellaneda | Argentina | Midfielder | 186 | 75 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 4 | 46.25 | 185 | 6.63 | null | null | null | null | null | null | 0 | 0 | null | null | 12.67 | 38 | null | null | 3 | 6 | null | null | 1 | 2 | 5.33 | 16 | 2.67 | 8 | null | null | null | null | 1 | 2 | null | null | 1 | 2 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 4 |
| 0f94f1f6-fb88-5d58-9117-394ab74f5519 | J. M. Cabrera | None None | None | None | None | None | Defender | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 2 | 45 | 90 | 6.6 | 1 | null | null | null | 0 | 0 | 0 | 0 | null | null | 14 | 28 | 1 | 1 | 1.5 | 3 | null | null | 1 | 1 | 5 | 10 | 2 | 4 | 1 | 1 | null | null | 2 | 2 | null | null | 2 | 2 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 4 |
| 4a405edb-c8bb-5ca8-9323-9b85ea6e5158 | J. Marabel | Junior Osvaldo Marabel Jara | 1998-03-26 | Paraguay | None | Paraguay | Attacker | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 59.4 | 297 | 6.9 | 2.33 | 1.67 | 1 | 2 | 0.33 | 1 | 0 | 0 | null | null | 14.6 | 73 | 1 | 2 | 1 | 1 | null | null | null | null | 7 | 35 | 3.5 | 14 | 1 | 2 | null | null | 1 | 2 | 1 | 2 | 1 | 1 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | 1 | 1 | 0 | 2 |
| e38b22b5-dc1a-5874-b536-10812aa0217a | J. Mattar | Jerónimo Gómez Mattar | 2008-08-07 | Argentina | Rosario | Argentina | Midfielder | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 3 | 60 | 180 | 6.87 | 2 | null | null | null | 0 | 0 | 0 | 0 | null | null | 24 | 72 | 1 | 1 | 4 | 4 | 1 | 1 | 1 | 1 | 6 | 18 | 4.5 | 9 | 1 | 1 | null | null | 2 | 2 | 2.5 | 5 | 1 | 3 | 2 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 1 |
| a00335bd-fa08-52d1-8372-a9cd48c7c3eb | J. Mavilla | Julián Mavilla | 2000-04-27 | Argentina | None | Argentina | Midfielder | 179 | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 1 | 8 | 8 | 6.9 | null | null | null | null | null | null | 0 | 0 | null | null | 3 | 3 | 1 | 1 | null | null | null | null | null | null | 1 | 1 | 1 | 1 | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 5 |
| fc6a14ef-51e7-59d8-ba22-3127634337c3 | J. Miritello | Juan Bautista Miritello | 1999-02-08 | Argentina | Luján | Argentina | Attacker | 183 | 78 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 64 | 320 | 7.06 | 1.5 | 2 | 2 | 2 | null | null | 0 | 0 | null | null | 10.8 | 54 | 1 | 2 | 1 | 2 | null | null | null | null | 6.2 | 31 | 4 | 16 | 1.67 | 5 | 1.5 | 3 | null | null | 1.5 | 3 | 1 | 3 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | 3 | 3 | 0 | 1 |
| 20e82867-8aed-5249-8dd8-43881426f997 | J. Morales | Gonzalo Javier Morales | 2003-04-03 | Argentina | Córdoba | Argentina | Attacker | 178 | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 3 | 89.67 | 269 | 6.4 | 1 | 1 | null | null | 0 | 0 | 0 | 0 | null | null | 16 | 48 | 1.5 | 3 | null | null | 1 | 1 | null | null | 8 | 24 | 3 | 6 | 1.5 | 3 | 1 | 1 | null | null | 2 | 4 | 1 | 3 | 1 | 0 | null | null | null | null | 0 | 0 | null | null | 1 | 1 | 0 | 1 |
| 13e5dc75-c4f1-579a-8fca-b6e5d296094b | J. Mosqueira | Joaquín Elías Mosqueira | 2004-01-11 | Argentina | Rosario | Argentina | Midfielder | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 3 | 18 | 54 | 6.43 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 4 | 12 | null | null | null | null | null | null | 1 | 1 | 2 | 2 | null | null | null | null | null | null | 1 | 1 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 4 |
| 09b210fb-6923-5a45-a373-8342478befb4 | J. Mosquera | Jherson Steven Mosquera Castro | 1999-09-18 | Colombia | Pereira | Colombia | Defender | 173 | 67 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 4 |
| 71cd071d-cbfa-5cd9-913e-30d7021981f3 | J. Nardoni | Juan Ignacio Martín Nardoni | 2002-07-14 | Argentina | Nelson | Argentina | Midfielder | 179 | 80 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 3 | 2 | 64 | 128 | 6.4 | 1 | null | null | null | 0 | 0 | 0 | 0 | null | null | 14.5 | 29 | 1 | 2 | 1 | 1 | null | null | null | null | 5 | 10 | 2.5 | 5 | 1 | 1 | 1 | 1 | null | null | 1 | 1 | 1.5 | 3 | 1 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 1 |
| e922036c-22e2-59b7-ad9a-035dbba0642a | J. Novillo | Joaquín Ariel Novillo | 1998-02-19 | Argentina | Córdoba | Argentina | Defender | 190 | 86 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 4 | 75 | 300 | 6.45 | 2 | 2 | null | null | 0 | 0 | 0 | 0 | null | null | 25 | 100 | 1 | 1 | 1.5 | 3 | 1.5 | 3 | 1 | 2 | 6.25 | 25 | 3 | 12 | null | null | null | null | 1 | 1 | 1 | 1 | 1.75 | 7 | 0 | 0 | null | null | 1 | 1 | 0 | 0 | null | null | null | null | 0 | 1 |
| 24af81d2-09e7-5d5e-b82d-fb11f7189fbe | J. Palacios | Julián Eduardo Palacios | 1999-02-04 | Argentina | General Pico | Argentina | Midfielder | 167 | 65 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 77.2 | 386 | 6.78 | 1 | 1 | null | null | 0.33 | 1 | 0 | 0 | null | null | 30 | 150 | 2.8 | 14 | 1.8 | 9 | 1 | 1 | 1 | 2 | 9.6 | 48 | 4.2 | 21 | 2.75 | 11 | 1 | 3 | 2 | 6 | 1.8 | 9 | 2 | 6 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | 1 | 1 | 0 | 0 |
| b309ea46-b43b-54b2-b7f4-423a373115cb | J. Palais | None None | None | None | None | None | Midfielder | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 3 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 3 |
| b0f1caa1-df51-5319-8aa0-23aec4618369 | J. Palomino | José Luis Palomino | 1990-01-05 | Argentina | Esquina | Argentina | Defender | 188 | 87 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 3 | 94.67 | 284 | 7.03 | 1.5 | null | null | null | 0 | 0 | 0 | 0 | null | null | 62 | 186 | null | null | 2.5 | 5 | 1 | 1 | 2 | 2 | 6.67 | 20 | 5.67 | 17 | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 2 |
| 3a6347e4-e859-5487-95a0-14da6458b645 | J. Pignani | Juan Pablo Pignani | 2001-07-02 | Argentina | None | Argentina | Defender | 190 | 81 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 3 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 3 |
| 3a6347e4-e859-5487-95a0-14da6458b645 | J. Pignani | Juan Pablo Pignani | 2001-07-02 | Argentina | None | Argentina | Defender | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 3 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 3 |
| c4edc7de-7a8f-5a95-b7f9-4cdfb4964eb2 | J. Portillo | Juan Carlos Portillo | 2000-05-18 | Argentina | Puerto Rico | Argentina | Midfielder, Defender | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 1 | 7 | 7 | null | null | null | null | null | null | null | 0 | 0 | null | null | 4 | 4 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 5 |
| 219fa0cb-3f92-5d93-a18d-3f0d2b8dc955 | J. Posse | None None | None | None | None | None | Defender | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 1 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 1 |
| 5d0f5b41-7e98-5708-8061-d7dad44bd3f9 | J. Pérez | Juan José Pérez Suaza | 2004-07-25 | Colombia | None | Colombia | Midfielder | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 1 | 1 | 25 | 25 | 6.3 | null | null | null | null | null | null | 0 | 0 | null | null | 5 | 5 | null | null | 1 | 1 | null | null | 1 | 1 | 4 | 4 | 1 | 1 | 1 | 1 | null | null | null | null | null | null | 1 | 1 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 1 |
| c9f23c31-3f00-51d4-a855-3adca1891633 | J. Quintero | Juan Fernando Quintero Paniagua | 1993-01-18 | Colombia | Medellín | Colombia | Midfielder | 168 | 63 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 77.8 | 389 | 8.02 | 3.25 | 2 | 2 | 2 | 0.25 | 1 | 0 | 0 | null | null | 57.4 | 287 | 2.8 | 14 | 1 | 1 | null | null | null | null | 4 | 20 | 2.4 | 12 | 2.4 | 12 | 1.25 | 5 | null | null | 1 | 5 | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | 1 | 1 | 5 | 0 |
| 06da0bcc-8b6f-51fe-84b1-7d5f4d80d9a3 | J. Randazzo | Juan Cruz Randazzo | 1994-10-11 | Argentina | Luján | Argentina | Defender | 184 | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 1 | 40 | 40 | 6.7 | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | 1 | 1 | null | null | 1 | 1 | 3 | 3 | 3 | 3 | null | null | null | null | null | null | 1 | 1 | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 4 |
| 5ca1c032-0757-5650-b9c3-36ac08ff74fd | J. Romaña | Jhohan Sebastián Romaña Espitia | 1998-09-13 | Colombia | Apartadó | Colombia | Defender | 185 | 79 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 3 | 3 | 77.67 | 233 | 7.1 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 34 | 102 | null | null | 3.5 | 7 | 2 | 2 | 2 | 4 | 10 | 30 | 7 | 21 | 1 | 1 | 1 | 1 | null | null | 1.5 | 3 | 1 | 1 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 |
| 1e34869f-66cc-5940-aa80-2ff06958dff4 | J. Romero | Juan Manuel Romero Báez | 2001-05-05 | Paraguay | None | Paraguay | Attacker | 179 | 67 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 1 | 1 | 14 | 14 | 6.7 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 5 | 5 | null | null | null | null | null | null | null | null | 1 | 1 | 1 | 1 | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 1 |
| 94c72bef-26ff-5920-99ab-7937a9120c5c | J. Russo | Jerónimo Russo | 2005-05-30 | Argentina | Rosario | Argentina | Midfielder, Attacker | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 3 | 38 | 114 | 6.8 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 11.33 | 34 | 1 | 1 | 2 | 4 | null | null | 1.5 | 3 | 5.33 | 16 | 3.67 | 11 | 1.5 | 3 | 2 | 2 | 1 | 2 | 1.5 | 3 | 1 | 1 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 4 |
| 825bd02a-d34d-583a-aa4e-2cdf8c3b856d | J. Saborido | Juan Ignacio Saborido | 1998-04-25 | Argentina | La Plata | Argentina | Defender | 178 | 74 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 91.8 | 459 | 6.72 | 1 | null | null | null | 0 | 0 | 0 | 0 | null | null | 22.8 | 114 | 1 | 3 | 2.4 | 12 | 1 | 1 | 2.25 | 9 | 11 | 55 | 5.4 | 27 | 2.4 | 12 | 1.75 | 7 | 1.6 | 8 | 1.5 | 3 | 1.33 | 4 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 |
| 9e11cb1f-2380-5a3b-89a1-05b5514bee81 | J. Saralegui | Jabes Esteban Saralegui | 2003-04-12 | Argentina | None | Argentina | Midfielder | 181 | 75 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 2 | 2 | 61.5 | 123 | 6.65 | 1.5 | 1 | null | null | null | null | 0 | 0 | null | null | 17 | 34 | null | null | 1 | 1 | null | null | null | null | 5 | 10 | 3 | 3 | 3 | 3 | 2 | 2 | 1 | 2 | null | null | 1 | 1 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 |
| ed42c3b0-bad5-5d8f-b16c-98a2d9fa34a8 | J. Sforza | Juan Sebastián Sforza | 2002-02-14 | Argentina | Rosario | Argentina | Midfielder | 180 | 77 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 73.6 | 368 | 6.88 | 1 | null | null | null | 0 | 0 | 0 | 0 | null | null | 55.8 | 279 | 1 | 1 | 2.25 | 9 | null | null | 2 | 8 | 6 | 30 | 3.6 | 18 | 1 | 1 | 1 | 1 | 1.5 | 3 | 1 | 2 | 1.33 | 4 | 2 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 1 |
| 2769eb9c-21a6-5c46-916a-bd9998cdfd48 | J. Sosa | José Ernesto Sosa | 1985-06-19 | Argentina | Carcarañá | Argentina | Midfielder | 179 | 72 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 1 | 67 | 67 | 8 | 1 | null | null | null | 0 | 0 | 0 | 0 | null | null | 60 | 60 | 2 | 2 | null | null | null | null | null | null | 8 | 8 | 7 | 7 | 1 | 1 | 1 | 1 | null | null | 3 | 3 | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 1 | 3 |
| ffff88ed-0205-5dd7-8679-fba5c9ebe86a | J. Vallejos | Javier Vallejos | 2003-01-03 | Argentina | None | Argentina | Goalkeeper | 188 | 83 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 3 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 3 |
| ffff88ed-0205-5dd7-8679-fba5c9ebe86a | J. Vallejos | Javier Vallejos | 2003-01-03 | Argentina | None | Argentina | Goalkeeper | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 3 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 3 |
| a8960386-8a26-5510-96b7-7a4e73fdaf5d | J. Velazquez | Juan Martin Velazquez | 2004-11-19 | Argentina | None | Argentina | Defender, Attacker | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 2 | 2 | 77.5 | 155 | 6.1 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 29 | 58 | 1 | 2 | 2 | 4 | null | null | 1 | 2 | 9 | 18 | 4 | 8 | 3 | 3 | null | null | 1 | 1 | 1 | 2 | 2 | 2 | 0 | 0 | null | null | 1 | 1 | 0 | 0 | null | null | null | null | 0 | 0 |
| 7806678c-0a81-5a2a-ac4a-55ceeb9eece1 | J. Villalba | Juan Manuel Villalba | 2006-03-15 | Argentina | Moreno | Argentina | Defender | 173 | 72 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 4 |
| ae870e52-0bfb-5e58-a4d3-654e132d46d2 | J. de Asís | Jorge Salustiano de Asís | 2006-01-29 | Argentina | None | Argentina | Attacker | 191 | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 3 | 1 | 17 | 17 | 5.9 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 1 | 1 | null | null | null | null | null | null | null | null | 5 | 5 | 1 | 1 | 2 | 2 | null | null | null | null | null | null | 1 | 1 | 0 | 1 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 3 |
| 73d4e9b2-84c4-5344-8729-4adeddf4ca09 | J. Álvarez | Juan Pablo Álvarez | 1996-02-10 | Argentina | Tandil | Argentina | Midfielder | 175 | 71 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 1 | 28 | 28 | 6.5 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 10 | 10 | null | null | null | null | null | null | null | null | 5 | 5 | null | null | 2 | 2 | null | null | 2 | 2 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 4 |
| af70255c-d6cf-5aec-9ed0-d470075a618f | Jano Gordon | Jano Gordon | 2004-06-16 | Argentina | None | Argentina | Defender | 182 | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 3 | 3 | 86.33 | 259 | 6.9 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | null | null | 31 | 93 | 3 | 3 | 3.33 | 10 | 1.5 | 3 | 2.67 | 8 | 11 | 33 | 5.33 | 16 | 1 | 1 | null | null | 1 | 1 | null | null | 2 | 6 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | 1 | 1 | 0 | 0 |
| 77c619bb-99be-5772-90b9-7809bed03913 | Jeremias Merlo | Jeremías Daniel Merlo | 2006-06-20 | Argentina | La Plata | Argentina | Midfielder | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 2 | 54.5 | 109 | 6.15 | 2 | null | null | null | 0 | 0 | 0 | 0 | null | null | 14 | 28 | 2 | 2 | null | null | null | null | null | null | 6 | 12 | 1.5 | 3 | 1.5 | 3 | 1 | 1 | null | null | 2 | 2 | 1 | 1 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | 2 | 2 | 0 | 3 |
| f89d3123-a7b0-5c06-998b-4e804bf46019 | Jhon Rentería | Jhon Alexander Rentería Arias | 2005-10-24 | Colombia | Juradó | Colombia | Midfielder | 175 | 66 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 4 | 64 | 256 | 6.93 | 3.5 | 2.5 | null | null | 0.5 | 1 | 0 | 0 | null | null | 16.75 | 67 | 2 | 4 | 1.25 | 5 | null | null | null | null | 11 | 44 | 5.75 | 23 | 4.75 | 19 | 2.25 | 9 | 1.33 | 4 | 3 | 6 | 1 | 2 | 2 | 0 | null | null | null | null | 0 | 0 | null | null | 1 | 1 | 0 | 2 |
| 0b7a87a1-c3be-5816-a02f-10c6b3fba723 | Joaquin Flores | None None | None | None | None | None | Attacker | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 3 | 1 | 16 | 16 | 6.9 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 6 | 6 | 1 | 1 | 1 | 1 | null | null | null | null | 3 | 3 | 3 | 3 | null | null | null | null | null | null | 1 | 1 | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 3 |
| f9919b77-3392-5198-878f-9024afd073b7 | Juan Bizans | None None | None | None | None | None | Attacker | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 4 | 39.25 | 157 | 6.85 | 1.67 | 2 | 1 | 1 | 0 | 0 | 0 | 0 | null | null | 6.5 | 26 | 1 | 1 | 1 | 1 | null | null | null | null | 5 | 20 | 2.25 | 9 | 2 | 4 | 2 | 2 | 1 | 1 | 1 | 3 | 1.33 | 4 | 0 | 0 | 1 | 1 | null | null | 0 | 0 | null | null | null | null | 0 | 4 |
| b9010023-c230-5b05-ae43-b386808075cb | Juan Gabriel Rivas Rivera | Juan Gabriel Rivas Rivera | 2005-11-10 | Bolivia | Bolivia | Attacker | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 3 | 3 | 27 | 81 | 6.43 | 1 | null | null | null | null | null | 0 | 0 | null | null | 2 | 6 | 1 | 1 | null | null | null | null | 1 | 1 | 3 | 9 | 1 | 2 | null | null | null | null | 1 | 2 | 1 | 1 | 1 | 1 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 2 | |
| 8a1f37dd-5d6b-52ff-9242-f53b2c7fc013 | Juan Rattalino | Juan Rattalino | 2004-06-23 | Argentina | None | Argentina | Midfielder | 168 | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 3 | 1 | 28 | 28 | 6.3 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 9 | 9 | null | null | 2 | 2 | null | null | null | null | 5 | 5 | 2 | 2 | null | null | null | null | 1 | 1 | null | null | 2 | 2 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 3 |
| dc6b4838-6d61-5bc0-8059-1b1b11907c58 | K. Castaño | Kevin Duvan Castaño Gil | 2000-09-29 | Colombia | Itagüí | Colombia | Midfielder | 177 | 73 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 2 | 31.5 | 63 | 6.55 | 1 | null | null | null | 0 | 0 | 0 | 0 | null | null | 14.5 | 29 | 3 | 3 | 1 | 2 | null | null | 2 | 2 | 6 | 12 | 3 | 6 | 2 | 4 | 1 | 1 | 1 | 2 | 1 | 2 | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 3 |
| 22e291f9-7447-5b51-9bc2-f3bcb19ac268 | K. Coronel | Kevin Agustín Coronel Alarcón | 2004-08-11 | Argentina | None | Argentina | Defender | 168 | 66 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 1 | 62 | 62 | 7.3 | 3 | null | null | null | null | null | 0 | 0 | null | null | 29 | 29 | 1 | 1 | 1 | 1 | null | null | 1 | 1 | 4 | 4 | 3 | 3 | 1 | 1 | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 4 |
| 643a9800-dc8d-5527-9b5f-499743038082 | K. Jappert | Kevin Jappert | 2004-02-25 | Argentina | Argentina | Defender | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 3 | 95.33 | 286 | 7.53 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | null | null | 33 | 99 | null | null | 3 | 6 | 1 | 1 | 2.67 | 8 | 7.67 | 23 | 6 | 18 | 1 | 1 | 1 | 1 | null | null | 1.67 | 5 | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 1 | |
| 34585f77-47b7-52d6-997d-8d63b139f31d | K. Lomónaco | Kevin Joel Lomónaco | 2002-01-08 | Argentina | La Plata | Argentina | Defender | 192 | 80 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 87.8 | 439 | 7.16 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 40.4 | 202 | 1.5 | 3 | 2 | 6 | 1 | 2 | 1.8 | 9 | 9 | 45 | 5 | 25 | 1 | 1 | 1 | 1 | 1 | 2 | 1.67 | 5 | 1 | 4 | 2 | 0 | null | null | null | null | 0 | 0 | null | null | 1 | 1 | 0 | 0 |
| 0ada5611-4846-5e4d-b3bf-d90bff406aab | K. Ortíz | Kevin Daniel Ortíz | 2000-09-18 | Argentina | None | Argentina | Midfielder | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 91.6 | 458 | 7.04 | 1 | 1 | null | null | 0.33 | 1 | 0 | 0 | null | null | 40.6 | 203 | 1.25 | 5 | 3.2 | 16 | null | null | 2.8 | 14 | 11.6 | 58 | 7.4 | 37 | 1.33 | 4 | 1 | 2 | 2 | 6 | 1.8 | 9 | 1.5 | 6 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 |
| 65dada2c-29be-50b6-b92f-d550ad7b7ea4 | K. Páez | Ray Kendry Páez Andrade | 2007-05-04 | Ecuador | Guayaquil | Ecuador | Midfielder | 178 | 71 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 1 | 1 | 25 | 25 | 6.7 | null | null | null | null | null | null | 0 | 0 | null | null | 8 | 8 | null | null | null | null | null | null | null | null | 2 | 2 | 1 | 1 | 2 | 2 | 1 | 1 | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 1 |
| 10b831ff-2cd1-58e7-b56f-9567d7985605 | K. Ryouga | None None | None | None | None | None | Attacker | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 2 | 2 | 23 | 46 | 6.25 | null | null | null | null | null | null | 0 | 0 | null | null | 6.5 | 13 | null | null | null | null | null | null | null | null | 3 | 6 | null | null | 1.5 | 3 | null | null | null | null | null | null | 1.5 | 3 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 2 |
| 9a3b89f1-1e41-5abd-9cf8-3f6f7c566184 | K. Vázquez | Kevin Alejandro Vázquez | 2001-03-19 | Argentina | Haedo | Argentina | Midfielder | 175 | 72 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 2 | 6 | 12 | null | null | null | null | null | null | null | 0 | 0 | null | null | 2 | 2 | null | null | null | null | null | null | null | null | 2 | 4 | 1 | 1 | null | null | null | null | null | null | 1 | 1 | 1 | 1 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 5 |
| 5bce5f37-d8b7-5c6c-a5b7-77ee7f6f8c57 | K. Zenón | Kevin Andrés Zenón | 2001-07-30 | Argentina | Goya | Argentina | Midfielder | 181 | 72 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 3 | 61.33 | 184 | 6.83 | 2 | 1 | null | null | 0 | 0 | 0 | 0 | null | null | 19 | 57 | 1 | 2 | 1.5 | 3 | null | null | 1 | 1 | 6.67 | 20 | 3.67 | 11 | 2 | 2 | 1 | 1 | 1 | 1 | 3.5 | 7 | 1 | 1 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 3 |
| ec8ba12b-722d-5d11-b8a1-a690035fefce | L. Alario | Lucas Nicolás Alario | 1992-10-08 | Argentina | Tostado | Argentina | Attacker | 184 | 78 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 3 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 3 |
| 09422fb9-8735-5a92-bcc7-49230f95d336 | L. Amade | None None | None | None | None | None | Goalkeeper | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 4 |
| 539790a8-185c-573f-a51f-8308e20ebf3e | L. Amadé | Lautaro Amadé | 1999-12-21 | Argentina | None | Argentina | Goalkeeper | 192 | 88 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 1 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 1 |
| 431b3bac-cdfe-538a-b701-7d06d536e1e2 | L. Angulo | Luis Miguel Angulo Sevillano | 2004-03-23 | Colombia | Magüí Payán | Colombia | Attacker, Midfielder | 174 | 65 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 3 | 1 | 21 | 21 | 6.9 | null | null | null | null | null | null | 0 | 0 | null | null | 2 | 2 | null | null | 1 | 1 | null | null | null | null | 3 | 3 | 3 | 3 | 2 | 2 | 2 | 2 | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 3 |
| 70a2fb69-65e9-5a0a-84fc-51bd96d236bd | L. Barros | None None | None | None | None | None | Defender | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 1 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 1 |
| 64e3db27-e427-5e19-8ef4-620e5b2d7d4b | L. Besozzi | Lucas Agustín Besozzi | 2003-01-22 | Argentina | Lanús | Argentina | Attacker | 176 | 74 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 2 | 16 | 32 | 6.5 | null | null | null | null | 1 | 1 | 0 | 0 | null | null | 6.5 | 13 | 1 | 2 | null | null | null | null | null | null | 3 | 6 | 1 | 1 | 1 | 2 | null | null | null | null | 1 | 1 | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 5 |
| 383a37ae-595b-5c1a-8570-0e301ad05f4b | L. Blanco | Lautaro Emanuel Blanco | 1999-02-19 | Argentina | Rosario | Argentina | Defender | 176 | 81 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 94.2 | 471 | 7.12 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | null | null | 38.8 | 194 | 1.25 | 5 | 2.8 | 14 | null | null | 1.33 | 4 | 7.6 | 38 | 3.2 | 16 | 2.25 | 9 | 1 | 2 | 1 | 5 | null | null | 1 | 3 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | 1 | 1 | 0 | 0 |
| 5c2d75be-690f-5d6c-a14f-d26af359850f | L. Blondel | Lucas Blondel | 1996-09-14 | Argentina | Buenos Aires | Argentina | Defender | 178 | 75 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 2 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 2 |
| b1fd60f8-ddc3-5d12-9b5f-b63468f42f2b | L. Brey | Leandro Leonel Brey | 2002-09-21 | Argentina | Lomas de Zamora | Argentina | Goalkeeper | 193 | 89 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 5 |
| 838b130e-fdbb-5bcd-b848-f5701a3522cb | L. Bucca | Leonel Bucca | 1999-03-20 | Argentina | Esperanza | Argentina | Midfielder | 190 | 82 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 5 |
| c0fbbecb-4cda-5753-9f57-87991b6c94fd | L. Cabral | Luciano Javier Cabral | 1995-04-26 | Argentina | General Alvear | Chile | Midfielder | 172 | 71 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 4 | 35 | 140 | 6.4 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | null | null | 9.75 | 39 | 2 | 2 | 1 | 1 | null | null | 1 | 1 | 3.75 | 15 | 1 | 1 | 1 | 1 | null | null | 1 | 1 | null | null | 1.5 | 3 | 1 | 1 | null | null | null | null | 0 | 0 | null | null | 1 | 1 | 0 | 3 |
| 32dcaeef-7d87-5cc6-ac0b-a0e5e1a7ad5f | L. Carrera | Lautaro Carrera | 2003-05-30 | Argentina | Córdoba | Argentina | Defender, Midfielder | 188 | 78 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 3 | 76.67 | 230 | 6.7 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 25 | 75 | null | null | 2.33 | 7 | 1 | 1 | 2 | 4 | 7.67 | 23 | 5 | 15 | null | null | null | null | 1 | 2 | 1 | 2 | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 2 |
| 6c90e960-b0b1-5df8-adcb-091e62a18b55 | L. Carrizo | Lucas Eduardo Carrizo | 1997-05-20 | Argentina | San Miguel de Tucumán | Argentina | Defender | 180 | 71 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 4 | 84.25 | 337 | 6.83 | 1 | null | null | null | 0 | 0 | 0 | 0 | null | null | 40.5 | 162 | null | null | 2.33 | 7 | null | null | 1.67 | 5 | 8.25 | 33 | 5.75 | 23 | 2 | 2 | 1 | 1 | 3 | 3 | 3 | 9 | 1 | 2 | 2 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 2 |
| ed1fb399-55ad-5141-b573-e409c5d74a2f | L. Castro | Lucas Nahuel Castro | 1989-04-09 | Argentina | La Plata | Argentina | Midfielder | 182 | 75 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 22.4 | 112 | 6.62 | 2 | null | null | null | 0 | 0 | 0 | 0 | null | null | 8 | 40 | null | null | 1.33 | 4 | 1 | 1 | null | null | 5 | 20 | 4 | 12 | 1 | 4 | 1 | 3 | 1 | 3 | 1 | 3 | 1 | 2 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 4 |
| 3374fe08-eb9b-5c47-a3fc-ad759ccb69ae | L. Cingolani | Luciano César Cingolani | 2001-04-06 | Argentina | Rosario | Argentina | Attacker | 172 | 68 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 3 | 2 | 15 | 30 | 6.5 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 2.5 | 5 | null | null | 2 | 2 | null | null | null | null | 4 | 8 | 2 | 4 | 2 | 2 | null | null | 1 | 1 | 2 | 2 | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 3 |
| 0caa0f38-0fb1-5521-9ff4-3bd515c08976 | L. Cornejo | Lucas Dante Cornejo | 2005-03-01 | Argentina | None | Argentina | Midfielder | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 2 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 2 |
| cdd06ed6-1732-56db-9207-bc0b47541ae5 | L. Costa | Leonard Richard Costa Martínez | 1998-08-24 | Uruguay | Artigas | Uruguay | Defender | 182 | 82 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 88.2 | 441 | 6.58 | 1 | null | null | null | 0 | 0 | 0 | 0 | null | null | 24.6 | 123 | null | null | 1.67 | 5 | 2 | 2 | 2 | 6 | 8 | 40 | 5 | 20 | null | null | null | null | 1.25 | 5 | 1.5 | 3 | 1.25 | 5 | 1 | 0 | null | null | null | null | 0 | 0 | null | null | 1 | 1 | 0 | 0 |
| 408a1ecf-12a7-5f94-acfc-55a72ab56e07 | L. Cristaldo | Leo Ariel Cristaldo Florentín | 2009-01-12 | Argentina | Lomas de Zamora | Paraguay | Defender | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 1 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 1 |
| 0878ee58-20a2-52c0-aa70-2bbdf06cadb1 | L. Di Lollo | Lautaro Federico Di Lollo | 2004-03-10 | Argentina | Buenos Aires | Argentina | Defender | 188 | 86 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 94.2 | 471 | 7.16 | 4 | 2 | 1 | 1 | 0 | 0 | 0 | 0 | null | null | 70.2 | 351 | 1 | 1 | 2.4 | 12 | 1 | 3 | 2.33 | 7 | 10.8 | 54 | 7.6 | 38 | null | null | null | null | 1.75 | 7 | 1 | 2 | 1.25 | 5 | 2 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 |
| 0878ee58-20a2-52c0-aa70-2bbdf06cadb1 | L. Di Lollo | Lautaro Federico Di Lollo | 2004-03-10 | Argentina | Buenos Aires | Argentina | Defender | 187 | 86 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 94.2 | 471 | 7.16 | 4 | 2 | 1 | 1 | 0 | 0 | 0 | 0 | null | null | 70.2 | 351 | 1 | 1 | 2.4 | 12 | 1 | 3 | 2.33 | 7 | 10.8 | 54 | 7.6 | 38 | null | null | null | null | 1.75 | 7 | 1 | 2 | 1.25 | 5 | 2 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 |
| c8b12ff1-f09d-5632-8bde-9793b1fd09ee | L. Di Plácido | Leonel Di Plácido | 1994-01-28 | Argentina | Buenos Aires | Argentina | Defender | 176 | 72 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 4 | 90 | 360 | 7.38 | 1 | null | null | null | 0 | 0 | 0 | 0 | null | null | 34.25 | 137 | 2.5 | 5 | 2.67 | 8 | null | null | 2.33 | 7 | 15.25 | 61 | 9.75 | 39 | 2 | 6 | 1.5 | 3 | 2.33 | 7 | 1 | 3 | 1.5 | 3 | 1 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 4 | 0 |
| 70cc48de-e492-5d50-a517-a08a753bfb8d | L. Díaz | Leandro Nicolás Díaz | 1992-06-06 | Argentina | San Miguel de Tucumán | Argentina | Attacker | 182 | 80 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 91.6 | 458 | 7.28 | 3 | 1.5 | 1.33 | 4 | 0.33 | 1 | 0 | 0 | null | null | 19.8 | 99 | 2 | 6 | 1 | 1 | 1 | 1 | null | null | 12.8 | 64 | 6.2 | 31 | 2 | 2 | 1 | 1 | null | null | 1.8 | 9 | 2.5 | 10 | 0 | 0 | 1 | 1 | null | null | 3 | 0 | null | null | 2.25 | 9 | 0 | 0 |
| c91fb6c4-fbfe-5a64-beee-d553eea04919 | L. Fernández | Leandro Miguel Fernández | 1991-03-12 | Argentina | Santa Fe | Argentina | Attacker | 178 | 70 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 3 | 27.33 | 82 | 6.47 | 1 | 1 | null | null | null | null | 0 | 0 | null | null | 5 | 10 | 1 | 2 | 2 | 2 | null | null | null | null | 5.5 | 11 | 3 | 6 | 1 | 2 | 1 | 1 | 1 | 1 | 1.5 | 3 | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 5 |
| 9a3247f1-9880-50f8-9b40-a7433bdbf345 | L. Ferrari | None None | None | None | None | None | Defender | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 4 |
| 891e2e00-8156-580b-902c-0338c12a8fb8 | L. Flores | Leonel Benjamín Flores | 2007-02-06 | Argentina | Buenos Aires | Argentina | Attacker | 175 | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 2 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 2 |
| 9070a893-fdfe-5e59-b75c-889aec35f998 | L. Gamba | Lucas Emanuel Gamba | 1987-06-24 | Argentina | San Rafael | Argentina | Attacker | 165 | 65 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 3 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 3 |
| ad13a775-711b-5cce-9f75-3caf0f3b1a8d | L. Giaccone | Lautaro Darío Giaccone | 2001-02-01 | Argentina | San Francisco | Argentina | Midfielder | 172 | 70 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 4 | 63.75 | 255 | 6.78 | 2.5 | 1.5 | null | null | null | null | 0 | 0 | null | null | 17.25 | 69 | 1.5 | 6 | 1.33 | 4 | null | null | 1.5 | 6 | 7 | 21 | 3 | 9 | 3.5 | 7 | 2 | 4 | 1 | 3 | 1 | 1 | 1 | 2 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 2 |
| 78288d5f-5b5b-5b0d-a1aa-0169d5f478b1 | L. Gil | Leonardo Roque Albano Gil Chiguay | 1991-05-31 | Argentina | Río Gallegos | Argentina | Midfielder, Attacker | 176 | 66 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 85 | 425 | 6.8 | 1.33 | 1 | null | null | 0 | 0 | 0 | 0 | null | null | 42.4 | 212 | 2.2 | 11 | 1.6 | 8 | null | null | 1.33 | 4 | 10.6 | 53 | 4.8 | 24 | 1.5 | 6 | 2 | 2 | 1.5 | 6 | 2.5 | 10 | 1.5 | 6 | 2 | 0 | null | null | 1 | 1 | 0 | 0 | null | null | 1 | 1 | 0 | 0 |
| 9ce7b770-cd24-585a-b432-695a74ac7054 | L. Giménez | Luciano Giménez Alanda | 2000-02-18 | Argentina | Salta | Argentina | Attacker | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 3 | 7 | 21 | 6.6 | 1 | 1 | null | null | null | null | 0 | 0 | null | null | 2.67 | 8 | 1 | 1 | 1 | 1 | null | null | null | null | 4.67 | 14 | 3 | 9 | 1 | 1 | null | null | null | null | 1 | 2 | 1 | 1 | 1 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 5 |
| 06f4aa71-a183-5768-bfbc-cb577141cd0a | L. Godoy | Lautaro Godoy | 2003-03-15 | Argentina | None | Argentina | Midfielder | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 4 | 13 | 52 | 6.9 | 1 | 1 | null | null | 0 | 0 | 0 | 0 | null | null | 5.25 | 21 | 1 | 2 | 1.5 | 3 | null | null | 1 | 1 | 4 | 12 | 2.67 | 8 | 3.5 | 7 | 2.5 | 5 | 1 | 1 | null | null | 1 | 1 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 5 |
| cfaae6f2-266d-5b6c-95c4-e98359c96b63 | L. Godoy | Leonardo Ezequiel Godoy | 1995-04-28 | Argentina | Concordia | Argentina | Defender | 173 | 66 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 91.2 | 456 | 6.86 | 1 | 1 | null | null | 0 | 0 | 0 | 0 | null | null | 20.4 | 102 | 1.67 | 5 | 1.33 | 4 | 1 | 3 | 1 | 1 | 7.4 | 37 | 3 | 15 | 1.6 | 8 | 1 | 1 | 1 | 1 | 1.75 | 7 | 1.75 | 7 | 1 | 0 | null | null | null | null | 0 | 0 | null | null | 2 | 2 | 0 | 0 |
| c56d282d-e94b-5aca-be2f-1b51ddd17074 | L. Gonzalez | None None | None | None | None | None | Attacker | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 4 | 3 | 32 | 96 | 6.53 | 2 | 1 | null | null | null | null | 0 | 0 | null | null | 6.67 | 20 | 1 | 1 | null | null | null | null | 1 | 1 | 4.33 | 13 | 2.5 | 5 | null | null | null | null | 1 | 1 | 1 | 2 | 1.5 | 3 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 4 |
| 7d9e00e2-af28-5fd3-9364-e327ee8551b2 | L. González | Lucas Nahuel Gonz ález Martínez | 2000-06-03 | Argentina | San Salvador de Jujuy | Argentina | Midfielder | 169 | 68 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 3 | 3 | 51.33 | 154 | 6.63 | 1 | null | null | null | 0 | 0 | 0 | 0 | null | null | 19.67 | 59 | 1 | 1 | 2 | 4 | null | null | null | null | 6.67 | 20 | 3 | 9 | 1.33 | 4 | 1 | 3 | 2 | 2 | 1 | 1 | 2 | 2 | 1 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 2 |
| e369c322-c8fc-58a0-ab55-a51a10091ed7 | L. González | Leandro Martín González Pírez | 1992-02-26 | Argentina | Buenos Aires | Argentina | Defender | 188 | 87 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 92.8 | 464 | 7.52 | 1.67 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | null | null | 46 | 230 | 1 | 1 | 2.2 | 11 | 1.5 | 3 | 1.67 | 5 | 10 | 50 | 6.6 | 33 | 1.5 | 6 | 1.33 | 4 | 1 | 2 | 1 | 5 | 1.2 | 6 | 2 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 1 | 0 |
| 07c848db-d349-5433-a03d-5d3650a994ab | L. Gutierrez | Lautaro Ismael Gutierrez | 2006-02-05 | Argentina | None | Argentina | Attacker | <NA> | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 4 | 25.75 | 103 | 6.73 | 1.5 | 1 | 1 | 2 | 0 | 0 | 0 | 0 | null | null | 5 | 20 | 1 | 2 | 1 | 1 | null | null | null | null | 3.5 | 14 | 2 | 6 | 2.5 | 5 | 1 | 2 | 1 | 1 | 1 | 1 | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 5 |
| 6bc98aa0-c73c-5c46-8ce5-2547fd329b8f | L. Gómez | Luciano Luis Rómulo Gómez | 1996-03-22 | Argentina | Corrientes | Argentina | Defender | 163 | 66 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 2 | 2 | 24.5 | 49 | 6.6 | null | null | null | null | 0 | 0 | 0 | 0 | null | null | 8 | 16 | null | null | 1 | 1 | null | null | null | null | 1.5 | 3 | 2 | 2 | null | null | null | null | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 2 |
| e66ea2da-79be-5d25-9d7f-acb507bea875 | L. Gómez | Lautaro Martín Gómez | 2003-08-08 | Argentina | None | Argentina | Midfielder | 170 | <NA> | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 5 | 47.4 | 237 | 6.8 | 2 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | null | null | 10.4 | 52 | 1.5 | 3 | 1.75 | 7 | null | null | 1 | 2 | 7.2 | 36 | 3.2 | 16 | 2.75 | 11 | 2 | 2 | 4 | 4 | 1.4 | 7 | 1 | 1 | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 3 |
| d823297a-2e02-5c08-8c58-2914ecf53e45 | L. Gómez | Lucas Nicolás Gómez | 2004-06-17 | Argentina | None | Argentina | Midfielder | 181 | 78 | f34809e2-b5e5-5dcd-acc4-287db17b83ce | Liga Profesional Argentina | Argentina | League | 319bc762-ecd8-5b58-97ad-7d7c372af90a | 2026/2027 | 5 | 0 | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 0 | null | null | null | null | 0 | 5 |