Skip to content

Instantly share code, notes, and snippets.

@dianaow
Last active February 13, 2020 05:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dianaow/1024c549a378c82dad9045083d762ad7 to your computer and use it in GitHub Desktop.
Save dianaow/1024c549a378c82dad9045083d762ad7 to your computer and use it in GitHub Desktop.
D3 V4: Dynamically Update Force Layout (Smooth transition)
license: mit

Move the slider to filter the data and update network.

The elements in the graph jumps less to their new locations because the coordinates of the parent node is fixed and the initial coordinates of the children nodes have been set to the same location as parent node.

Futhermore, only nodes and edges from that are different from the previous filter appear/disappear, instead of the entire graph being updated.

Built with blockbuilder.org

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8"/ >
<script src="https://d3js.org/d3.v4.min.js"></script>
<script type="text/javascript" src="helper.js"></script>
<style>
body {
font-family: 'Karla', sans-serif;
position: relative;
background-color: #011C54;
color: white;
}
.wrapper {
width: 100vw;
height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
}
#chart {
display: flex;
flex-direction: row;
flex-wrap: wrap;
width: 90%;
justify-content: center;
}
</style>
</head>
<body>
<div class='wrapper'>
<input type="range" min="15" max="20" value="15" id="timeRange">
<div id="chart"></div>
</div>
<script>
var simulation, circle, path, g, pathG, circle, nodes1, links1
var margin = {top: 20, right: 20, bottom: 20, left: 20},
width = screen.width*0.9 - margin.left - margin.right,
height = screen.height*0.9 - margin.top - margin.bottom
var svg = d3.select("#chart").append('svg')
.attr("width", width + margin.left + margin.right)
.attr("height", height + margin.top + margin.bottom)
g = svg.append("g")
.attr('transform', 'translate(' + width/2 + ',' + height/2 + ')')
path = g.append("g")
.attr("class", "pathG")
.selectAll(".link")
circle = g.append("g")
.attr("class", "circleG")
.selectAll(".node")
// set node, link and text colors
var nodeFillColor = 'mediumblue'
var nodeStrokeColor = 'mediumblue'
var linkStrokeColor = 'mediumblue'
// set node, link and text dimenstions
var nodeRadius = 6
var nodeStrokeWidth = 1
var linkStrokeWidth = 0.6
var linkStrokeFill = 'white'
var linkOpacity = 1
var prevTime = 15
var direction = 1
//////////////////////////////////////////////////////////////
////////////////////////// Data //////////////////////////////
//////////////////////////////////////////////////////////////
init()
function init() {
d3.queue()
.defer(d3.csv, "test_entities.csv")
.defer(d3.csv, "test_connections.csv")
.await(render)
}
///////////////////////////////////////////////////////////////////////////
///////////////////////// Render vertical tree ////////////////////////////
///////////////////////////////////////////////////////////////////////////
function render(error, entities, connections) {
if (error) throw error;
var nodes = entities.map((d,i) => {
return {
id: +d["ID"],
name: d['Name'],
time: +d['time'],
category: d['Region'],
score: +d['Overall']
}
})
var links = connections.map((d,i) => {
let objS = nodes.find(el=>(el.id == +d['Source_ID']) & (el.time == +d['time']))
let objT = nodes.find(el=>el.id == +d['Target_ID'] & (el.time == +d['time']))
return {
source: objS,
target: objT,
time: +d['time']
}
})
// create custom link strength scale based on number of connected nodes to each source
var links_nested = d3.nest()
.key(function(d) { return d.source; })
.rollup(function(leaves) { return leaves.length; })
.entries(links)
var linkStrengths = []
links_nested.map(function(d,i) {
linkStrengths.push(d.value)
})
var strengthScale = d3.scaleLinear()
.domain([d3.min(linkStrengths), d3.max(linkStrengths)])
.range([0.2, 0.7])
// node radius size is scaled based on score value
var nodeRadiusScale = d3.scaleSqrt()
.domain([0, 1])
.range([0, nodeRadius*2])
// node color is based on entity type
var region = ['Europe & Central Asia', 'Latin America & Caribbean', 'Middle East & North Africa', 'North America', 'Sub-Saharan Africa', 'East Asia & Pacific']
var colorScale = d3.scaleOrdinal()
.range(['aqua', 'fuchsia', 'gold', 'white', 'white', 'white'])
.domain(region)
var parentIDs = [1,2]
nodes.forEach((d,i) => {
let edge = links.find(el=>el.target.id == d.id)
d.color = colorScale(d.category)
d.strokeColor = colorScale(d.category)
d.strokeWidth = nodeStrokeWidth
d.radius = nodeRadiusScale(d.score)
d.opacity = 0.8
d.parent_id = edge ? edge.source.id : d.id
d.type = findType(d.id, 20801, parentIDs)
})
links.forEach((d,i) => {
var conn = links_nested.find(l=>l.key==d.source).value
d.strength = strengthScale(conn)
d.strokeColor = linkStrokeFill
d.strokeWidth = linkStrokeWidth
d.opacity = 1
d.type = findType(d.source.id, 20801, parentIDs)
})
simulation = d3.forceSimulation()
.velocityDecay(0.5)
.force("link", d3.forceLink()
.distance(function(d) { return d.source.radius*2 + d.target.radius })
.strength(function(d) { return d.strength })
)
.force("charge", d3.forceManyBody().strength(-20))
.force("collide", d3.forceCollide(function(d){ return d.radius }))
//.force('center', d3.forceCenter(width/2, height/2))
.alphaTarget(1)
.on("tick", ticked)
nodes1 = nodes.filter(d=>d.time == 15)
links1 = links.filter(d=>d.time == 15)
updateSlider(nodes, links, 15)
d3.select("#timeRange")
.on("change", function(){
let value = d3.select(this).property("value")
updateSlider(nodes, links, value)
})
function updateSlider(nodes, links, selectedTime) {
//console.log(prevTime, selectedTime)
var nodesRemove = nodes.filter(d=>d.time == prevTime)
var linksRemove = links.filter(d=>d.time == prevTime)
var nodesAdd = nodes.filter(d=>d.time == selectedTime)
var linksAdd = links.filter(d=>d.time == selectedTime)
var onlyInR_N = nodesRemove.filter(comparerNodes(nodesAdd))
var onlyInA_N = nodesAdd.filter(comparerNodes(nodesRemove))
nodes1 = nodes1.filter(d=>onlyInR_N.map(el=>el.id).indexOf(d.id) == -1)
nodes1.push(...onlyInA_N)
var onlyInR_L = linksRemove.filter(comparerLinks(linksAdd))
var onlyInA_L = linksAdd.filter(comparerLinks(linksRemove))
links1 = links1.filter(d=>onlyInR_L.map(el=>el.target.id).indexOf(d.target.id) == -1)
links1.push(...onlyInA_L)
links1.forEach((d,i)=>{
d.source = nodes1.find(el=>el.id == d.source.id)
d.target = nodes1.find(el=>el.id == d.target.id)
})
nodes1.forEach((d,i) => {
let fixed_coords = parentNodesPos(d)
let coords = childNodesPos(d)
d.x = d.x ? d.x : coords.x
d.y = d.y ? d.y : coords.y
d.fx = fixed_coords.x
d.fy = fixed_coords.y
})
restart(nodes1, links1)
prevTime = selectedTime
}
}
function findType(d, rootID, parentIDs){
if(parentIDs.indexOf(d) != -1) {
return 'parent'
} else if(d==rootID){
return 'root'
} else {
return 'children'
}
}
function parentNodesPos(d) {
if(d.type=='root'){
return {x: 0, y: 0}
} else if(d.type=='parent'){
if(d.id==1){
//return {x: undefined, y: undefined}
return {x: 200, y: 0}
} else if (d.id==2){
//return {x: undefined, y: undefined}
return {x: -120, y: -120}
}
} else if(d.type=='children'){
return {x: undefined, y: undefined}
}
}
function childNodesPos(d) {
if(d.parent_id==1){
//return {x: undefined, y: undefined }
return {x: 200 + Math.random(), y: 0 + Math.random()}
} else if(d.parent_id==2){
//return {x: undefined, y: undefined }
return {x: -120 + Math.random(), y: -120 + Math.random()}
} else {
return {x: 0, y: 0}
}
}
function ticked() {
circle.attr("transform", function(d) { return "translate(" + d.x + "," + d.y + ")"; })
path.attr("x1", function(d) { return d.source.x })
.attr("y1", function(d) { return d.source.y })
.attr("x2", function(d) { return d.target.x })
.attr("y2", function(d) { return d.target.y });
}
///////////////////////////////////////////////////////////////////////////
//////////////////////////// Graph Network plot ///////////////////////////
///////////////////////////////////////////////////////////////////////////
function restart(nodes, links) {
//console.log(nodes, links)
drawNodes(nodes)
drawLinks(links)
// Update and restart the simulation.
simulation.nodes(nodes);
simulation.force("link").links(links);
simulation.alpha(0.1).restart();
}
//////////////////////// Create node and link elements ////////////////////
function drawNodes(nodes) {
circle = circle.data(nodes, d=>d.id)
circle.exit().transition()
.attr("r", 0)
.remove()
circle = circle.enter().append('circle')
.attr('class', 'node')
.attr('id', function(d) {return d.id})
.attr('stroke-width', function(d) {return d.strokeWidth})
.attr('stroke', function(d) {return d.strokeColor})
.attr('stroke-opacity', function(d) { return d.opacity})
.attr('fill-opacity', function(d) { return d.opacity})
.attr('fill', function(d) {return d.color})
.call(function(node) { node.transition().attr('r', function(d) {return d.radius}) })
.merge(circle)
}
function drawLinks(links) {
path = path.data(links, d=>d.source.id.toString() + "-" + d.target.id.toString())
// Keep the exiting links connected to the moving remaining nodes.
path.exit().transition()
.attr("stroke-opacity", 0)
.attrTween("x1", function(d) { return function() { return d.source.x; }; })
.attrTween("x2", function(d) { return function() { return d.target.x; }; })
.attrTween("y1", function(d) { return function() { return d.source.y; }; })
.attrTween("y2", function(d) { return function() { return d.target.y; }; })
.remove()
path = path.enter().append('line')
.attr('class', 'link')
.attr('id', function(d) { return d.source.toString() + "-" + d.target.toString()})
.attr('stroke-width', function(d) {return d.strokeWidth})
.attr('stroke', function(d) {return d.strokeColor})
.attr('stroke-opacity', function(d) {return d.opacity})
.call(function(path) { path.transition().attr("stroke-opacity", 1); })
.merge(path)
}
function comparerLinks(otherArray){
return function(current){
return otherArray.filter(function(other){
return other.source.id == current.source.id && other.target.id == current.target.id
}).length == 0;
}
}
function comparerNodes(otherArray){
return function(current){
return otherArray.filter(function(other){
return other.id == current.id
}).length == 0;
}
}
</script>
</body>
</html>
Season Source_ID Source_Name Target_ID Target_Name time
1 15 1 Real Madrid 173731 G. Bale 15
2 15 1 Real Madrid 155862 Sergio Ramos 15
3 15 1 Real Madrid 177003 L. Modrić 15
4 15 1 Real Madrid 198710 J. Rodríguez 15
5 15 1 Real Madrid 182521 T. Kroos 15
6 15 1 Real Madrid 165153 K. Benzema 15
7 15 1 Real Madrid 179846 S. Khedira 15
8 15 1 Real Madrid 5479 Casillas 15
9 15 1 Real Madrid 197781 Isco 15
10 15 1 Real Madrid 120533 Pepe 15
11 15 1 Real Madrid 176676 Marcelo 15
12 15 1 Real Madrid 201535 R. Varane 15
13 15 1 Real Madrid 178224 J. Hernández 15
14 15 1 Real Madrid 190584 Illarramendi 15
15 15 1 Real Madrid 204963 Carvajal 15
16 15 1 Real Madrid 171688 Fábio Coentrão 15
17 15 1 Real Madrid 193041 K. Navas 15
18 15 1 Real Madrid 146741 Arbeloa 15
19 15 1 Real Madrid 202515 Jesé Rodríguez 15
20 15 1 Real Madrid 200724 Nacho Fernández 15
21 15 1 Real Madrid 212602 Llorente 15
22 15 1 Real Madrid 210110 Derik 15
23 15 1 Real Madrid 215644 Burgui 15
24 15 1 Real Madrid 210315 De Tomás 15
25 15 1 Real Madrid 221511 E. Markkanen 15
26 15 1 Real Madrid 212476 Medrán 15
27 15 1 Real Madrid 219836 Rubén Yáñez 15
28 15 1 Real Madrid 219837 Aguza 15
29 15 1 Real Madrid 209960 Pacheco 15
30 15 1 Real Madrid 211234 Enzo Fernández 15
31 15 1 Real Madrid 219914 G. Varela 15
32 15 1 Real Madrid 216755 Abner 15
0 15 20801 Cristiano Ronaldo 1 Real Madrid 15
1 16 1 Real Madrid 198710 J. Rodríguez 16
2 16 1 Real Madrid 173731 G. Bale 16
3 16 1 Real Madrid 182521 T. Kroos 16
4 16 1 Real Madrid 155862 Sergio Ramos 16
5 16 1 Real Madrid 177003 L. Modrić 16
6 16 1 Real Madrid 165153 K. Benzema 16
7 16 1 Real Madrid 197781 Isco 16
8 16 1 Real Madrid 120533 Pepe 16
9 16 1 Real Madrid 176676 Marcelo 16
10 16 1 Real Madrid 201535 R. Varane 16
11 16 1 Real Madrid 204963 Carvajal 16
12 16 1 Real Madrid 177644 Kiko Casilla 16
13 16 1 Real Madrid 199304 Danilo 16
14 16 1 Real Madrid 193041 K. Navas 16
15 16 1 Real Madrid 146741 Arbeloa 16
16 16 1 Real Madrid 207410 M. Kovačić 16
17 16 1 Real Madrid 202515 Jesé 16
18 16 1 Real Madrid 206225 D. Cheryshev 16
19 16 1 Real Madrid 200145 Casemiro 16
20 16 1 Real Madrid 208618 Lucas Vázquez 16
21 16 1 Real Madrid 200724 Nacho Fernández 16
22 16 1 Real Madrid 222665 M. Ødegaard 16
23 16 1 Real Madrid 208137 Lucas Torró 16
24 16 1 Real Madrid 226161 Marcos Llorente 16
25 16 1 Real Madrid 228635 Borja Mayoral 16
26 16 1 Real Madrid 216755 Abner 16
27 16 1 Real Madrid 226157 Javi Muñoz 16
28 16 1 Real Madrid 211234 Enzo Fernández 16
29 16 1 Real Madrid 219836 Rubén Yáñez 16
30 16 1 Real Madrid 229631 Lazo 16
0 16 20801 Cristiano Ronaldo 1 Real Madrid 16
1 17 1 Real Madrid 173731 G. Bale 17
2 17 1 Real Madrid 155862 Sergio Ramos 17
3 17 1 Real Madrid 177003 L. Modrić 17
4 17 1 Real Madrid 182521 T. Kroos 17
5 17 1 Real Madrid 120533 Pepe 17
6 17 1 Real Madrid 198710 J. Rodríguez 17
7 17 1 Real Madrid 165153 K. Benzema 17
8 17 1 Real Madrid 176676 Marcelo 17
9 17 1 Real Madrid 193041 K. Navas 17
10 17 1 Real Madrid 201535 R. Varane 17
11 17 1 Real Madrid 197781 Isco 17
12 17 1 Real Madrid 204963 Carvajal 17
13 17 1 Real Madrid 200145 Casemiro 17
14 17 1 Real Madrid 201153 Morata 17
15 17 1 Real Madrid 220834 Marco Asensio 17
16 17 1 Real Madrid 208618 Lucas Vázquez 17
17 17 1 Real Madrid 199304 Danilo 17
18 17 1 Real Madrid 171688 Fábio Coentrão 17
19 17 1 Real Madrid 207410 M. Kovačić 17
20 17 1 Real Madrid 177644 Kiko Casilla 17
21 17 1 Real Madrid 200724 Nacho Fernández 17
22 17 1 Real Madrid 209749 Lucas Silva 17
23 17 1 Real Madrid 221639 Mariano 17
24 17 1 Real Madrid 222665 M. Ødegaard 17
25 17 1 Real Madrid 235522 Aleix Febas 17
26 17 1 Real Madrid 235024 S. Díaz 17
27 17 1 Real Madrid 211234 E. Fernández 17
28 17 1 Real Madrid 231366 P. Lienhart 17
29 17 1 Real Madrid 222540 N. Vergos 17
30 17 1 Real Madrid 219836 Rubén Yáñez 17
31 17 1 Real Madrid 235212 A. Hakimi 17
32 17 1 Real Madrid 231856 Álvaro Tejero 17
0 17 20801 Cristiano Ronaldo 1 Real Madrid 17
1 18 1 Real Madrid 155862 Sergio Ramos 18
2 18 1 Real Madrid 182521 T. Kroos 18
3 18 1 Real Madrid 173731 G. Bale 18
4 18 1 Real Madrid 177003 L. Modrić 18
5 18 1 Real Madrid 176676 Marcelo 18
6 18 1 Real Madrid 197781 Isco 18
7 18 1 Real Madrid 165153 K. Benzema 18
8 18 1 Real Madrid 201535 R. Varane 18
9 18 1 Real Madrid 200145 Casemiro 18
10 18 1 Real Madrid 193041 K. Navas 18
11 18 1 Real Madrid 220834 Marco Asensio 18
12 18 1 Real Madrid 204963 Carvajal 18
13 18 1 Real Madrid 207410 M. Kovačić 18
14 18 1 Real Madrid 208618 Lucas Vázquez 18
15 18 1 Real Madrid 200724 Nacho Fernández 18
16 18 1 Real Madrid 177644 Kiko Casilla 18
17 18 1 Real Madrid 222509 Dani Ceballos 18
18 18 1 Real Madrid 226161 Marcos Llorente 18
19 18 1 Real Madrid 225161 Vallejo 18
20 18 1 Real Madrid 232656 T. Hernández 18
21 18 1 Real Madrid 228635 Borja Mayoral 18
22 18 1 Real Madrid 235212 A. Hakimi 18
23 18 1 Real Madrid 239335 Óscar 18
24 18 1 Real Madrid 231856 Álvaro Tejero 18
25 18 1 Real Madrid 240311 L. Zidane 18
0 18 20801 Cristiano Ronaldo 1 Real Madrid 18
1 18 1 Real Madrid 155862 Sergio Ramos 19
2 18 1 Real Madrid 182521 T. Kroos 19
3 18 1 Real Madrid 173731 G. Bale 19
4 18 1 Real Madrid 177003 L. Modrić 19
5 18 1 Real Madrid 176676 Marcelo 19
6 18 1 Real Madrid 197781 Isco 19
7 18 1 Real Madrid 165153 K. Benzema 19
8 18 1 Real Madrid 201535 R. Varane 19
9 18 1 Real Madrid 200145 Casemiro 19
10 18 1 Real Madrid 193041 K. Navas 19
11 18 1 Real Madrid 220834 Marco Asensio 19
12 18 1 Real Madrid 204963 Carvajal 19
13 18 1 Real Madrid 207410 M. Kovačić 19
14 18 1 Real Madrid 208618 Lucas Vázquez 19
15 18 1 Real Madrid 200724 Nacho Fernández 19
16 18 1 Real Madrid 177644 Kiko Casilla 19
17 18 1 Real Madrid 222509 Dani Ceballos 19
18 18 1 Real Madrid 226161 Marcos Llorente 19
19 18 1 Real Madrid 225161 Vallejo 19
20 18 1 Real Madrid 232656 T. Hernández 19
21 18 1 Real Madrid 228635 Borja Mayoral 19
22 18 1 Real Madrid 235212 A. Hakimi 19
23 18 1 Real Madrid 239335 Óscar 19
24 18 1 Real Madrid 231856 Álvaro Tejero 19
25 18 1 Real Madrid 240311 L. Zidane 19
27 19 2 Juventus 211110 P. Dybala 19
28 19 2 Juventus 138956 G. Chiellini 19
29 19 2 Juventus 177509 M. Benatia 19
30 19 2 Juventus 180206 M. Pjanić 19
31 19 2 Juventus 184344 L. Bonucci 19
32 19 2 Juventus 190483 Douglas Costa 19
33 19 2 Juventus 191043 Alex Sandro 19
34 19 2 Juventus 170890 B. Matuidi 19
35 19 2 Juventus 179846 S. Khedira 19
36 19 2 Juventus 198009 M. Perin 19
37 19 2 Juventus 186153 W. Szczęsny 19
38 19 2 Juventus 137186 A. Barzagli 19
39 19 2 Juventus 181783 M. Mandžukić 19
40 19 2 Juventus 193082 J. Cuadrado 19
41 19 2 Juventus 212404 F. Bernardeschi 19
42 19 2 Juventus 211320 D. Rugani 19
43 19 2 Juventus 210514 João Cancelo 19
44 19 2 Juventus 208333 E. Can 19
45 19 2 Juventus 206058 M. De Sciglio 19
46 19 2 Juventus 202884 L. Spinazzola 19
47 19 2 Juventus 227535 R. Bentancur 19
48 19 2 Juventus 236610 M. Kean 19
49 19 2 Juventus 189342 C. Pinsoglio 19
50 19 2 Juventus 245491 P. Beruatto 19
0 18 20801 Cristiano Ronaldo 1 Real Madrid 19
26 19 20801 Cristiano Ronaldo 2 Juventus 19
1 18 1 Real Madrid 155862 Sergio Ramos 20
2 18 1 Real Madrid 182521 T. Kroos 20
3 18 1 Real Madrid 173731 G. Bale 20
4 18 1 Real Madrid 177003 L. Modrić 20
5 18 1 Real Madrid 176676 Marcelo 20
6 18 1 Real Madrid 197781 Isco 20
7 18 1 Real Madrid 165153 K. Benzema 20
8 18 1 Real Madrid 201535 R. Varane 20
9 18 1 Real Madrid 200145 Casemiro 20
10 18 1 Real Madrid 193041 K. Navas 20
11 18 1 Real Madrid 220834 Marco Asensio 20
12 18 1 Real Madrid 204963 Carvajal 20
13 18 1 Real Madrid 207410 M. Kovačić 20
14 18 1 Real Madrid 208618 Lucas Vázquez 20
15 18 1 Real Madrid 200724 Nacho Fernández 20
16 18 1 Real Madrid 177644 Kiko Casilla 20
17 18 1 Real Madrid 222509 Dani Ceballos 20
18 18 1 Real Madrid 226161 Marcos Llorente 20
19 18 1 Real Madrid 225161 Vallejo 20
20 18 1 Real Madrid 232656 T. Hernández 20
21 18 1 Real Madrid 228635 Borja Mayoral 20
22 18 1 Real Madrid 235212 A. Hakimi 20
23 18 1 Real Madrid 239335 Óscar 20
24 18 1 Real Madrid 231856 Álvaro Tejero 20
25 18 1 Real Madrid 240311 L. Zidane 20
27 20 2 Juventus 138956 G. Chiellini 20
28 20 2 Juventus 211110 P. Dybala 20
29 20 2 Juventus 186153 W. Szczęsny 20
30 20 2 Juventus 180206 M. Pjanić 20
31 20 2 Juventus 184344 L. Bonucci 20
32 20 2 Juventus 235243 M. de Ligt 20
33 20 2 Juventus 167664 G. Higuaín 20
34 20 2 Juventus 170890 B. Matuidi 20
35 20 2 Juventus 191043 Alex Sandro 20
36 20 2 Juventus 181783 M. Mandžukić 20
37 20 2 Juventus 190483 Douglas Costa 20
38 20 2 Juventus 210008 A. Rabiot 20
39 20 2 Juventus 212404 F. Bernardeschi 20
40 20 2 Juventus 1179 G. Buffon 20
41 20 2 Juventus 179846 S. Khedira 20
42 20 2 Juventus 186561 A. Ramsey 20
43 20 2 Juventus 193082 J. Cuadrado 20
44 20 2 Juventus 198009 M. Perin 20
45 20 2 Juventus 211320 D. Rugani 20
46 20 2 Juventus 208333 E. Can 20
47 20 2 Juventus 227535 R. Bentancur 20
48 20 2 Juventus 199304 Danilo 20
49 20 2 Juventus 206058 M. De Sciglio 20
50 20 2 Juventus 229593 M. Pjaca 20
51 20 2 Juventus 238160 M. Demiral 20
52 20 2 Juventus 189342 C. Pinsoglio 20
53 20 2 Juventus 229337 Matheus Pereira 20
54 20 2 Juventus 243237 L. Pellegrini 20
55 20 2 Juventus 208523 S. Beltrame 20
56 20 2 Juventus 230768 L. Clemenza 20
57 20 2 Juventus 251790 H. Rafia 20
58 20 2 Juventus 211067 D. Del Fabro 20
0 18 20801 Cristiano Ronaldo 1 Real Madrid 20
26 20 20801 Cristiano Ronaldo 2 Juventus 20
Club Code ID Name Nationality Overall Photo Region Season Total Attacking Total Defending Total Mentality Total Movement Total Power Total Skill ZScore_Overall ZScore_Total Attacking ZScore_Total Defending ZScore_Total Mentality ZScore_Total Movement ZScore_Total Power ZScore_Total Skill time
1 Real Madrid PRT 20801.0 Cristiano Ronaldo Portugal 0.981132075471698 https://sofifa.com/player/20801/c-ronaldo-dos-santos-aveiro/15/157759 Europe & Central Asia 15 0.59478672985782 0.2992125984251969 0.6216216216216216 0.8214285714285714 1.0 0.5623529411764705 0.9622641509433965 0.18957345971564 -0.40157480314960636 0.2432432432432432 0.6428571428571428 1.0 0.124705882352941 15.0
11 Real Madrid GBR 173731.0 G. Bale United Kingdom 0.8867924528301886 https://sofifa.com/player/173731/gareth-bale/15/157759 Europe & Central Asia 15 0.5545023696682465 0.0 0.5798525798525799 0.5044642857142857 0.7661469933184855 0.6047058823529411 0.7735849056603776 0.10900473933649302 -1.0 0.15970515970515975 0.008928571428571397 0.5322939866369709 0.2094117647058824 15.0
14 Real Madrid ESP 155862.0 Sergio Ramos Spain 0.8867924528301886 https://sofifa.com/player/155862/sergio-ramos-garcia/15/157759 Europe & Central Asia 15 0.8293838862559242 0.0 0.7002457002457002 0.6808035714285714 0.844097995545657 0.3364705882352941 0.7735849056603776 0.6587677725118484 -1.0 0.4004914004914004 0.3616071428571428 0.688195991091314 -0.32705882352941185 15.0
17 Real Madrid HRV 177003.0 L. Modrić Croatia 0.8867924528301886 https://sofifa.com/player/177003/luka-modric/15/157759 Europe & Central Asia 15 0.0 0.0 0.19656019656019655 0.5825892857142857 0.34075723830734966 0.18588235294117644 0.7735849056603776 -1.0 -1.0 -0.6068796068796071 0.1651785714285714 -0.3184855233853007 -0.6282352941176471 15.0
18 Real Madrid COL 198710.0 J. Rodríguez Colombia 0.8679245283018867 https://sofifa.com/player/198710/james-rodriguez/15/157759 Latin America & Caribbean 15 0.5497630331753555 0.35826771653543305 0.7199017199017199 0.0 0.623608017817372 0.7976470588235294 0.7358490566037739 0.09952606635071093 -0.283464566929134 0.43980343980343983 -1.0 0.24721603563474392 0.5952941176470588 15.0
33 Real Madrid DEU 182521.0 T. Kroos Germany 0.8490566037735848 https://sofifa.com/player/182521/toni-kroos/15/157759 Europe & Central Asia 15 0.38388625592417064 0.0 0.36363636363636365 0.34151785714285715 0.12026726057906459 0.3929411764705882 0.6981132075471699 -0.23222748815165872 -1.0 -0.2727272727272728 -0.3169642857142857 -0.7594654788418709 -0.21411764705882352 15.0
34 Real Madrid FRA 165153.0 K. Benzema France 0.8490566037735848 https://sofifa.com/player/165153/karim-benzema/15/157759 Europe & Central Asia 15 0.9526066350710901 0.2952755905511811 0.828009828009828 0.8928571428571428 0.6815144766146993 0.8635294117647058 0.6981132075471699 0.9052132701421802 -0.40944881889763785 0.6560196560196561 0.7857142857142856 0.36302895322939865 0.7270588235294115 15.0
50 Real Madrid DEU 179846.0 S. Khedira Germany 0.830188679245283 https://sofifa.com/player/179846/sami-khedira/15/157759 Europe & Central Asia 15 0.8530805687203792 0.952755905511811 0.9213759213759214 0.43303571428571425 0.8797327394209353 0.7929411764705881 0.6603773584905663 0.7061611374407581 0.905511811023622 0.8427518427518428 -0.1339285714285715 0.7594654788418707 0.5858823529411765 15.0
53 Real Madrid ESP 5479.0 Casillas Spain 0.830188679245283 https://sofifa.com/player/5479/iker-casillas-fernandez/15/157759 Europe & Central Asia 15 0.28672985781990523 0.2952755905511811 0.29975429975429974 0.5267857142857143 0.44097995545657015 0.2894117647058823 0.6603773584905663 -0.42654028436018954 -0.40944881889763785 -0.40049140049140053 0.0535714285714286 -0.1180400890868597 -0.4211764705882354 15.0
64 Real Madrid ESP 197781.0 Isco Spain 0.8113207547169811 https://sofifa.com/player/197781/francisco-roman-alarcon-suarez/15/157759 Europe & Central Asia 15 0.490521327014218 0.29133858267716534 0.6437346437346437 0.8950892857142857 0.7750556792873051 0.5811764705882353 0.6226415094339623 -0.018957345971563844 -0.41732283464566944 0.28746928746928746 0.7901785714285714 0.5501113585746102 0.1623529411764706 15.0
81 Real Madrid PRT 120533.0 Pepe Portugal 0.8113207547169811 https://sofifa.com/player/120533/kepler-laveran-lima-ferreira/15/157759 Europe & Central Asia 15 0.6208530805687205 0.6614173228346456 0.23832923832923833 0.7678571428571428 0.7906458797327394 0.6258823529411764 0.6226415094339623 0.24170616113744092 0.3228346456692912 -0.5233415233415234 0.5357142857142856 0.5812917594654787 0.2517647058823529 15.0
109 Real Madrid BRA 176676.0 Marcelo Brazil 0.7924528301886792 https://sofifa.com/player/176676/marcelo-vieira-da-silva/15/157759 Latin America & Caribbean 15 0.4289099526066351 0.0 0.7321867321867321 0.7388392857142857 0.6726057906458797 0.9223529411764705 0.5849056603773586 -0.14218009478672977 -1.0 0.46437346437346405 0.4776785714285714 0.34521158129175933 0.8447058823529412 15.0
152 Real Madrid FRA 201535.0 R. Varane France 0.7735849056603773 https://sofifa.com/player/201535/raphael-varane/15/157759 Europe & Central Asia 15 0.45260663507109006 0.3307086614173228 0.7395577395577395 0.27901785714285715 0.5812917594654788 0.7129411764705882 0.5471698113207548 -0.09478672985781977 -0.3385826771653544 0.479115479115479 -0.4419642857142857 0.16258351893095768 0.4258823529411766 15.0
173 Real Madrid MEX 178224.0 J. Hernández Mexico 0.7735849056603773 https://sofifa.com/player/178224/javier-hernandez/15/157759 Latin America & Caribbean 15 0.6895734597156399 0.2992125984251969 0.5823095823095823 0.1875 0.35634743875278396 0.5835294117647059 0.5471698113207548 0.37914691943127976 -0.40157480314960636 0.1646191646191646 -0.6249999999999999 -0.2873051224944321 0.16705882352941193 15.0
302 Real Madrid ESP 190584.0 Illarramendi Spain 0.7358490566037735 https://sofifa.com/player/190584/asier-illarramendi/15/157759 Europe & Central Asia 15 0.7654028436018958 0.2952755905511811 0.28746928746928746 0.6339285714285714 0.6080178173719376 0.16705882352941176 0.4716981132075473 0.5308056872037916 -0.40944881889763785 -0.4250614250614251 0.2678571428571428 0.21603563474387522 -0.6658823529411765 15.0
326 Real Madrid ESP 204963.0 Carvajal Spain 0.7358490566037735 https://sofifa.com/player/204963/daniel-carvajal-ramos/15/157759 Europe & Central Asia 15 0.3459715639810427 0.0 0.597051597051597 0.7410714285714285 0.33184855233853006 0.6517647058823529 0.4716981132075473 -0.30805687203791465 -1.0 0.1941031941031941 0.48214285714285676 -0.33630289532294 0.3035294117647058 15.0
329 Real Madrid PRT 171688.0 Fábio Coentrão Portugal 0.7358490566037735 https://sofifa.com/player/171688/fabio-alexandre-silva-coentrao/15/157759 Europe & Central Asia 15 0.6516587677725119 0.8976377952755905 0.85995085995086 0.7053571428571428 0.8151447661469933 0.8611764705882352 0.4716981132075473 0.3033175355450237 0.795275590551181 0.7199017199017197 0.4107142857142856 0.6302895322939865 0.7223529411764706 15.0
336 Real Madrid CRI 193041.0 K. Navas Costa Rica 0.7358490566037735 https://sofifa.com/player/193041/keylor-navas/15/157759 Latin America & Caribbean 15 0.30568720379146924 0.2952755905511811 0.33169533169533166 0.42410714285714285 0.5701559020044543 0.32705882352941174 0.4716981132075473 -0.3886255924170616 -0.40944881889763785 -0.3366093366093368 -0.1517857142857143 0.14031180400890864 -0.34588235294117653 15.0
371 Real Madrid ESP 146741.0 Arbeloa Spain 0.7358490566037735 https://sofifa.com/player/146741/alvaro-arbeloa-coca/15/157759 Europe & Central Asia 15 0.6255924170616114 0.952755905511811 0.828009828009828 0.7611607142857142 0.7928730512249443 0.6917647058823528 0.4716981132075473 0.2511848341232228 0.905511811023622 0.6560196560196561 0.5223214285714282 0.5857461024498885 0.3835294117647057 15.0
694 Real Madrid ESP 202515.0 Jesé Rodríguez Spain 0.6792452830188679 https://sofifa.com/player/202515/jese-rodriguez-ruiz/15/157759 Europe & Central Asia 15 0.571090047393365 0.28346456692913385 0.6584766584766585 0.6986607142857143 0.6169265033407572 0.896470588235294 0.358490566037736 0.14218009478673 -0.4330708661417323 0.31695331695331697 0.3973214285714286 0.23385300668151432 0.792941176470588 15.0
2111 Real Madrid ESP 200724.0 Nacho Fernández Spain 0.6037735849056604 https://sofifa.com/player/200724/jose-ignacio-fernandez-iglesias/15/157759 Europe & Central Asia 15 0.25829383886255924 0.3031496062992126 0.3882063882063882 0.13169642857142858 0.6748329621380846 0.6023529411764705 0.20754716981132093 -0.4834123222748816 -0.39370078740157477 -0.22358722358722372 -0.7366071428571427 0.34966592427616927 0.2047058823529413 15.0
5530 Real Madrid ESP 212602.0 Llorente Spain 0.49056603773584906 https://sofifa.com/player/212602/diego-javier-llorente-rios/15/157759 Europe & Central Asia 15 0.13744075829383887 0.0 0.2334152334152334 0.10491071428571427 0.30512249443207123 0.14823529411764705 -0.01886792452830166 -0.7251184834123222 -1.0 -0.5331695331695332 -0.7901785714285713 -0.38975501113585764 -0.703529411764706 15.0
6315 Real Madrid ESP 210110.0 Derik Spain 0.4716981132075472 https://sofifa.com/player/210110/derik-osede-prieto/15/157759 Europe & Central Asia 15 0.4265402843601896 0.7795275590551181 0.6068796068796068 0.7321428571428571 0.6993318485523385 0.5317647058823529 -0.056603773584905426 -0.14691943127962082 0.5590551181102361 0.21375921375921347 0.46428571428571397 0.3986636971046771 0.06352941176470583 15.0
6323 Real Madrid ESP 215644.0 Burgui Spain 0.4716981132075472 https://sofifa.com/player/215644/jorge-franco-alviz/15/157759 Europe & Central Asia 15 0.533175355450237 0.2755905511811024 0.6142506142506142 0.6651785714285714 0.5968819599109131 0.7505882352941176 -0.056603773584905426 0.06635071090047395 -0.44881889763779526 0.22850122850122845 0.3303571428571428 0.19376391982182595 0.5011764705882351 15.0
7129 Real Madrid ESP 210315.0 De Tomás Spain 0.4528301886792453 https://sofifa.com/player/210315/raul-de-tomas-gomez/15/157759 Europe & Central Asia 15 0.5592417061611374 0.2952755905511811 0.5872235872235873 0.46428571428571425 0.6971046770601336 0.6423529411764706 -0.09433962264150919 0.11848341232227488 -0.40944881889763785 0.17444717444717428 -0.07142857142857162 0.3942093541202669 0.28470588235294114 15.0
7674 Real Madrid FIN 221511.0 E. Markkanen Finland 0.4528301886792453 https://sofifa.com/player/221511/eero-markkanen/15/157759 Europe & Central Asia 15 0.4004739336492891 0.2952755905511811 0.45945945945945943 0.32366071428571425 0.4365256124721603 0.24235294117647058 -0.09433962264150919 -0.19905213270142175 -0.40944881889763785 -0.08108108108108136 -0.3526785714285715 -0.12694877505567936 -0.5152941176470589 15.0
8128 Real Madrid ESP 212476.0 Medrán Spain 0.4339622641509434 https://sofifa.com/player/212476/alvaro-medran-just/15/157759 Europe & Central Asia 15 0.24170616113744078 0.0 0.32186732186732187 0.609375 0.0 0.6141176470588234 -0.13207547169811296 -0.5165876777251185 -1.0 -0.3562653562653564 0.21875 -1.0 0.22823529411764687 15.0
8139 Real Madrid ESP 219836.0 Rubén Yáñez Spain 0.4339622641509434 https://sofifa.com/player/219836/orlando-ruben-yanez-alabart/15/157759 Europe & Central Asia 15 0.29857819905213273 0.2952755905511811 0.312039312039312 0.4933035714285714 0.4832962138084632 0.27999999999999997 -0.13207547169811296 -0.40284360189573454 -0.40944881889763785 -0.3759213759213761 -0.013392857142857206 -0.03340757238307368 -0.44000000000000006 15.0
8242 Real Madrid ESP 219837.0 Aguza Spain 0.4339622641509434 https://sofifa.com/player/219837/sergio-aguza-santiago/15/157759 Europe & Central Asia 15 0.4431279620853081 0.6850393700787402 0.6855036855036855 0.7053571428571428 0.6146993318485523 0.7035294117647058 -0.13207547169811296 -0.11374407582938384 0.3700787401574803 0.3710073710073709 0.4107142857142856 0.2293986636971046 0.4070588235294119 15.0
9350 Real Madrid ESP 209960.0 Pacheco Spain 0.41509433962264153 https://sofifa.com/player/209960/fernando-pacheco-flores/15/157759 Europe & Central Asia 15 0.28909952606635075 0.2952755905511811 0.3194103194103194 0.5714285714285714 0.45657015590200445 0.28705882352941176 -0.16981132075471683 -0.4218009478672985 -0.40944881889763785 -0.36117936117936134 0.1428571428571428 -0.0868596881959911 -0.4258823529411765 15.0
10655 Real Madrid ESP 211234.0 Enzo Fernández Spain 0.37735849056603776 https://sofifa.com/player/211234/enzo-alan-zidane-fernandez/15/157759 Europe & Central Asia 15 0.59478672985782 0.29133858267716534 0.5282555282555282 0.6830357142857143 0.4922048997772828 0.8117647058823528 -0.24528301886792436 0.18957345971564 -0.41732283464566944 0.05651105651105626 0.3660714285714286 -0.015590200445434355 0.6235294117647059 15.0
11084 Real Madrid URY 219914.0 G. Varela Uruguay 0.37735849056603776 https://sofifa.com/player/219914/guillermo-varela/15/157759 Latin America & Caribbean 15 0.49289099526066354 0.8464566929133858 0.6167076167076166 0.3794642857142857 0.43875278396436523 0.536470588235294 -0.24528301886792436 -0.01421800947867291 0.6929133858267715 0.2334152334152333 -0.2410714285714286 -0.12249443207126964 0.07294117647058806 15.0
12609 Real Madrid BRA 216755.0 Abner Brazil 0.3207547169811321 https://sofifa.com/player/216755/abner-felipe-souza-de-almeida/15/157759 Latin America & Caribbean 15 0.41943127962085314 0.7362204724409449 0.6191646191646192 0.8147321428571428 0.576837416481069 0.49647058823529405 -0.35849056603773566 -0.16113744075829373 0.4724409448818898 0.23832923832923836 0.6294642857142854 0.15367483296213802 -0.007058823529411895 15.0
0 1.0 Real Madrid 0.8 15 15.0
1 Real Madrid PRT 20801.0 Cristiano Ronaldo Portugal 0.9800000000000001 https://sofifa.com/player/20801/c-ronaldo-dos-santos-aveiro/16/158127 Europe & Central Asia 16 0.6411483253588517 0.2878787878787879 0.40786240786240785 0.203125 0.8372093023255813 0.5938967136150235 0.9600000000000004 0.28229665071770316 -0.4242424242424242 -0.18427518427518408 -0.59375 0.6744186046511627 0.187793427230047 16.0
10 Real Madrid COL 198710.0 J. Rodríguez Colombia 0.86 https://sofifa.com/player/198710/james-rodriguez/16/158127 Latin America & Caribbean 16 0.16267942583732056 0.20833333333333334 0.7371007371007371 0.35491071428571425 0.12790697674418605 0.19953051643192488 0.72 -0.6746411483253589 -0.5833333333333333 0.4742014742014744 -0.2901785714285714 -0.7441860465116279 -0.6009389671361502 16.0
11 Real Madrid GBR 173731.0 G. Bale United Kingdom 0.86 https://sofifa.com/player/173731/gareth-bale/16/158127 Europe & Central Asia 16 0.9545454545454545 0.7083333333333334 0.7248157248157248 0.7522321428571428 0.7465116279069768 0.9953051643192489 0.72 0.9090909090909087 0.41666666666666674 0.4496314496314495 0.5044642857142858 0.49302325581395356 0.9906103286384975 16.0
12 Real Madrid DEU 182521.0 T. Kroos Germany 0.86 https://sofifa.com/player/182521/toni-kroos/16/158127 Europe & Central Asia 16 0.31100478468899523 0.45075757575757575 0.5282555282555282 0.18973214285714285 0.32790697674418606 0.19483568075117372 0.72 -0.37799043062200965 -0.0984848484848484 0.05651105651105648 -0.6205357142857142 -0.3441860465116279 -0.6103286384976526 16.0
19 Real Madrid ESP 155862.0 Sergio Ramos Spain 0.86 https://sofifa.com/player/155862/sergio-ramos-garcia/16/158127 Europe & Central Asia 16 0.5645933014354066 1.0 0.6535626535626535 0.4933035714285714 0.5255813953488372 0.5305164319248826 0.72 0.1291866028708133 1.0 0.30712530712530706 -0.013392857142857095 0.051162790697674376 0.06103286384976525 16.0
22 Real Madrid HRV 177003.0 L. Modrić Croatia 0.86 https://sofifa.com/player/177003/luka-modric/16/158127 Europe & Central Asia 16 0.6674641148325359 0.821969696969697 0.941031941031941 0.953125 0.5465116279069767 0.4178403755868545 0.72 0.3349282296650715 0.6439393939393943 0.882063882063882 0.90625 0.09302325581395343 -0.164319248826291 16.0
27 Real Madrid FRA 165153.0 K. Benzema France 0.84 https://sofifa.com/player/165153/karim-benzema/16/158127 Europe & Central Asia 16 0.7607655502392344 0.0 0.628992628992629 0.3727678571428571 0.555813953488372 0.8615023474178404 0.6800000000000002 0.5215311004784686 -1.0 0.2579852579852582 -0.2544642857142857 0.11162790697674407 0.7230046948356808 16.0
50 Real Madrid ESP 197781.0 Isco Spain 0.7999999999999999 https://sofifa.com/player/197781/francisco-roman-alarcon-suarez/16/158127 Europe & Central Asia 16 0.354066985645933 0.0946969696969697 0.32923832923832924 0.3638392857142857 0.28604651162790695 0.5868544600938967 0.5999999999999999 -0.29186602870813416 -0.8106060606060606 -0.3415233415233415 -0.2723214285714286 -0.4279069767441861 0.1737089201877935 16.0
71 Real Madrid PRT 120533.0 Pepe Portugal 0.7999999999999999 https://sofifa.com/player/120533/kepler-laveran-lima-ferreira/16/158127 Europe & Central Asia 16 0.6267942583732057 0.34090909090909094 0.6117936117936118 0.3013392857142857 0.4697674418604651 0.6244131455399061 0.5999999999999999 0.25358851674641114 -0.3181818181818181 0.2235872235872236 -0.3973214285714286 -0.06046511627906992 0.24882629107981202 16.0
90 Real Madrid BRA 176676.0 Marcelo Brazil 0.7800000000000001 https://sofifa.com/player/176676/marcelo-vieira-da-silva/16/158127 Latin America & Caribbean 16 0.33253588516746413 0.0 0.8968058968058967 0.7388392857142857 0.5186046511627906 0.9201877934272301 0.5600000000000003 -0.33492822966507185 -1.0 0.7936117936117935 0.4776785714285714 0.037209302325581284 0.84037558685446 16.0
122 Real Madrid FRA 201535.0 R. Varane France 0.7600000000000001 https://sofifa.com/player/201535/raphael-varane/16/158127 Europe & Central Asia 16 0.2822966507177033 0.0 0.7395577395577395 0.27901785714285715 0.2441860465116279 0.5422535211267606 0.5200000000000002 -0.43540669856459335 -1.0 0.479115479115479 -0.4419642857142856 -0.5116279069767442 0.08450704225352124 16.0
194 Real Madrid ESP 204963.0 Carvajal Spain 0.7400000000000001 https://sofifa.com/player/204963/daniel-carvajal-ramos/16/158127 Europe & Central Asia 16 0.08133971291866028 0.0 0.656019656019656 0.18303571428571427 0.22790697674418603 0.45539906103286387 0.4800000000000004 -0.8373205741626795 -1.0 0.3120393120393119 -0.6339285714285714 -0.5441860465116279 -0.08920187793427226 16.0
257 Real Madrid ESP 177644.0 Kiko Casilla Spain 0.7400000000000001 https://sofifa.com/player/177644/francisco-casilla-cortes/16/158127 Europe & Central Asia 16 0.0 0.0 0.11056511056511056 0.31026785714285715 0.44651162790697674 0.0 0.4800000000000004 -1.0 -1.0 -0.7788697788697789 -0.3794642857142857 -0.10697674418604664 -1.0 16.0
276 Real Madrid BRA 199304.0 Danilo Brazil 0.7200000000000001 https://sofifa.com/player/199304/danilo-luiz-da-silva/16/158127 Latin America & Caribbean 16 0.35167464114832536 0.0 0.7469287469287469 0.14732142857142858 0.2 0.3732394366197183 0.44000000000000017 -0.2966507177033494 -1.0 0.4938574938574938 -0.7053571428571428 -0.6000000000000001 -0.2535211267605634 16.0
474 Real Madrid CRI 193041.0 K. Navas Costa Rica 0.7000000000000001 https://sofifa.com/player/193041/keylor-navas/16/158127 Latin America & Caribbean 16 0.0 0.0 0.0 0.7120535714285714 0.43953488372093025 0.0 0.40000000000000013 -1.0 -1.0 -1.0 0.4241071428571428 -0.1209302325581395 -1.0 16.0
504 Real Madrid ESP 146741.0 Arbeloa Spain 0.7000000000000001 https://sofifa.com/player/146741/alvaro-arbeloa-coca/16/158127 Europe & Central Asia 16 0.16507177033492823 0.0 0.0 0.13392857142857142 0.3372093023255814 0.0 0.40000000000000013 -0.6698564593301436 -1.0 -1.0 -0.7321428571428572 -0.32558139534883723 -1.0 16.0
551 Real Madrid HRV 207410.0 M. Kovačić Croatia 0.68 https://sofifa.com/player/207410/mateo-kovacic/16/158127 Europe & Central Asia 16 0.13875598086124402 0.0 0.0 0.36160714285714285 0.0 0.20422535211267606 0.3600000000000001 -0.7224880382775121 -1.0 -1.0 -0.2767857142857143 -1.0 -0.591549295774648 16.0
557 Real Madrid ESP 202515.0 Jesé Spain 0.68 https://sofifa.com/player/202515/jese-rodriguez-ruiz/16/158127 Europe & Central Asia 16 0.0 0.0 0.0 0.3883928571428571 0.29534883720930233 0.0 0.3600000000000001 -1.0 -1.0 -1.0 -0.2232142857142857 -0.40930232558139534 -1.0 16.0
573 Real Madrid RUS 206225.0 D. Cheryshev Russian Federation 0.68 https://sofifa.com/player/206225/denis-cheryshev/16/158127 Europe & Central Asia 16 0.0 0.0 0.0 0.15625 0.0 0.0 0.3600000000000001 -1.0 -1.0 -1.0 -0.6875 -1.0 -1.0 16.0
783 Real Madrid BRA 200145.0 Casemiro Brazil 0.66 https://sofifa.com/player/200145/carlos-henrique-venancio-casimiro/16/158127 Latin America & Caribbean 16 0.18660287081339713 0.0 0.0 0.0 0.19767441860465115 0.0 0.3200000000000003 -0.6267942583732058 -1.0 -1.0 -1.0 -0.6046511627906976 -1.0 16.0
1014 Real Madrid ESP 208618.0 Lucas Vázquez Spain 0.64 https://sofifa.com/player/208618/lucas-vazquez-iglesias/16/158127 Europe & Central Asia 16 0.0 0.0 0.0 0.1875 0.1558139534883721 0.0 0.28 -1.0 -1.0 -1.0 -0.625 -0.6883720930232557 -1.0 16.0
1426 Real Madrid ESP 200724.0 Nacho Fernández Spain 0.62 https://sofifa.com/player/200724/jose-ignacio-fernandez-iglesias/16/158127 Europe & Central Asia 16 0.0 0.0 0.0 0.29910714285714285 0.17674418604651163 0.0 0.24 -1.0 -1.0 -1.0 -0.4017857142857143 -0.6465116279069768 -1.0 16.0
4277 Real Madrid NOR 222665.0 M. Ødegaard Norway 0.5000000000000001 https://sofifa.com/player/222665/martin-odegaard/16/158127 Europe & Central Asia 16 0.0 0.0 0.0 0.17410714285714285 0.12093023255813953 0.0 2.220446049250313e-16 -1.0 -1.0 -1.0 -0.6517857142857142 -0.758139534883721 -1.0 16.0
5860 Real Madrid ESP 208137.0 Lucas Torró Spain 0.4600000000000001 https://sofifa.com/player/208137/lucas-torro-marset/16/158127 Europe & Central Asia 16 0.6866028708133971 0.6780303030303031 0.7272727272727273 0.6450892857142857 0.6325581395348837 0.7112676056338029 -0.07999999999999985 0.3732057416267942 0.3560606060606062 0.4545454545454546 0.2901785714285714 0.2651162790697674 0.42253521126760596 16.0
6683 Real Madrid ESP 226161.0 Marcos Llorente Spain 0.44000000000000006 https://sofifa.com/player/226161/marcos-llorente-moreno/16/158127 Europe & Central Asia 16 0.0 0.0 0.0 0.41294642857142855 0.1372093023255814 0.0 -0.11999999999999977 -1.0 -1.0 -1.0 -0.1741071428571428 -0.7255813953488373 -1.0 16.0
8477 Real Madrid ESP 228635.0 Borja Mayoral Spain 0.4 https://sofifa.com/player/228635/borja-mayoral-moya/16/158127 Europe & Central Asia 16 0.0 0.0 0.0 0.0 0.26046511627906976 0.0 -0.19999999999999984 -1.0 -1.0 -1.0 -1.0 -0.4790697674418605 -1.0 16.0
8507 Real Madrid BRA 216755.0 Abner Brazil 0.4 https://sofifa.com/player/216755/abner-felipe-souza-de-almeida/16/158127 Latin America & Caribbean 16 0.5789473684210527 0.6742424242424243 0.683046683046683 0.828125 0.7534883720930232 0.6173708920187794 -0.19999999999999984 0.1578947368421051 0.3484848484848486 0.36609336609336607 0.6562500000000002 0.5069767441860464 0.23474178403755852 16.0
9475 Real Madrid ESP 226157.0 Javi Muñoz Spain 0.38 https://sofifa.com/player/226157/javier-munoz-jimenez/16/158127 Europe & Central Asia 16 0.6100478468899522 0.49242424242424243 0.5749385749385749 0.7276785714285714 0.6 0.6408450704225352 -0.24 0.22009569377990412 -0.015151515151515027 0.14987714987714984 0.4553571428571428 0.19999999999999996 0.2816901408450705 16.0
9496 Real Madrid FRA 211234.0 Enzo Fernández France 0.38 https://sofifa.com/player/211234/enzo-alan-zidane-fernandez/16/158127 Europe & Central Asia 16 0.0 0.0 0.0 0.15848214285714285 0.0 0.0 -0.24 -1.0 -1.0 -1.0 -0.6830357142857143 -1.0 -1.0 16.0
9568 Real Madrid ESP 219836.0 Rubén Yáñez Spain 0.38 https://sofifa.com/player/219836/orlando-ruben-yanez-alabart/16/158127 Europe & Central Asia 16 0.2248803827751196 0.17803030303030304 0.2751842751842752 0.49553571428571425 0.48604651162790696 0.20422535211267606 -0.24 -0.5502392344497609 -0.6439393939393939 -0.44963144963144963 -0.008928571428571397 -0.027906976744186074 -0.591549295774648 16.0
9591 Real Madrid ESP 229631.0 Lazo Spain 0.38 https://sofifa.com/player/229631/jose-carlos-lazo-romero/16/158127 Europe & Central Asia 16 0.6052631578947368 0.3522727272727273 0.538083538083538 0.7366071428571428 0.6767441860465117 0.7535211267605634 -0.24 0.21052631578947345 -0.2954545454545453 0.07616707616707608 0.4732142857142858 0.3534883720930231 0.5070422535211268 16.0
1 1.0 Real Madrid 0.8 16 16.0
0 Real Madrid PRT 20801.0 Cristiano Ronaldo Portugal 1.0 https://sofifa.com/player/20801/c-ronaldo-dos-santos-aveiro/17/158492 Europe & Central Asia 17 0.0 0.2814814814814815 0.37915742793791574 0.4040178571428571 0.2222222222222222 0.5525114155251141 1.0 -1.0 -0.4370370370370369 -0.2416851441241683 -0.19196428571428592 -0.5555555555555556 0.10502283105022814 17.0
7 Real Madrid GBR 173731.0 G. Bale United Kingdom 0.9183673469387754 https://sofifa.com/player/173731/gareth-bale/17/158492 Europe & Central Asia 17 0.18581907090464547 0.0 0.4235033259423503 0.5647321428571428 0.0 0.37671232876712324 0.8367346938775508 -0.6283618581907091 -1.0 -0.1529933481152992 0.1294642857142856 -1.0 -0.24657534246575363 17.0
13 Real Madrid ESP 155862.0 Sergio Ramos Spain 0.8979591836734693 https://sofifa.com/player/155862/sergio-ramos-garcia/17/158492 Europe & Central Asia 17 0.7041564792176039 0.9777777777777779 0.70509977827051 0.3169642857142857 0.13002364066193853 0.5159817351598173 0.7959183673469385 0.4083129584352081 0.9555555555555557 0.41019955654102014 -0.3660714285714287 -0.739952718676123 0.031963470319634535 17.0
15 Real Madrid HRV 177003.0 L. Modrić Croatia 0.8979591836734693 https://sofifa.com/player/177003/luka-modric/17/158492 Europe & Central Asia 17 0.49877750611246946 0.27037037037037037 0.5942350332594235 0.6138392857142857 0.524822695035461 0.9520547945205479 0.7959183673469385 -0.0024449877750609694 -0.45925925925925914 0.18847006651884723 0.2276785714285714 0.049645390070921946 0.9041095890410955 17.0
19 Real Madrid DEU 182521.0 T. Kroos Germany 0.8775510204081631 https://sofifa.com/player/182521/toni-kroos/17/158492 Europe & Central Asia 17 0.5501222493887531 0.0 0.6496674057649667 0.328125 0.20567375886524822 0.3812785388127854 0.755102040816326 0.10024449877750641 -1.0 0.2993348115299339 -0.3437500000000001 -0.5886524822695036 -0.23744292237442943 17.0
23 Real Madrid PRT 120533.0 Pepe Portugal 0.8775510204081631 https://sofifa.com/player/120533/kepler-laveran-lima-ferreira/17/158492 Europe & Central Asia 17 0.4449877750611247 0.33333333333333337 0.5099778270509977 0.0 0.46099290780141844 0.34018264840182644 0.755102040816326 -0.1100244498777504 -0.33333333333333326 0.019955654101995624 -1.0 -0.07801418439716323 -0.31963470319634724 17.0
30 Real Madrid COL 198710.0 J. Rodríguez Colombia 0.857142857142857 https://sofifa.com/player/198710/james-rodriguez/17/158492 Latin America & Caribbean 17 0.6430317848410758 0.20370370370370372 0.4789356984478935 0.0 0.2033096926713948 0.7716894977168949 0.7142857142857137 0.28606356968215163 -0.5925925925925926 -0.042128603104212736 -1.0 -0.5933806146572105 0.5433789954337895 17.0
37 Real Madrid FRA 165153.0 K. Benzema France 0.857142857142857 https://sofifa.com/player/165153/karim-benzema/17/158492 Europe & Central Asia 17 0.7995110024449877 0.14814814814814814 0.6851441241685143 0.31919642857142855 0.7304964539007092 0.454337899543379 0.7142857142857137 0.5990220048899755 -0.7037037037037037 0.3702882483370289 -0.361607142857143 0.46099290780141833 -0.09132420091324212 17.0
57 Real Madrid BRA 176676.0 Marcelo Brazil 0.8367346938775511 https://sofifa.com/player/176676/marcelo-vieira-da-silva/17/158492 Latin America & Caribbean 17 0.13202933985330073 0.0 0.4190687361419069 0.18973214285714285 0.37825059101654845 0.6986301369863013 0.6734693877551021 -0.7359413202933984 -1.0 -0.16186252771618603 -0.6205357142857143 -0.2434988179669032 0.39726027397260233 17.0
82 Real Madrid CRI 193041.0 K. Navas Costa Rica 0.8163265306122449 https://sofifa.com/player/193041/keylor-navas/17/158492 Latin America & Caribbean 17 0.19070904645476772 0.14814814814814814 0.3702882483370288 0.38616071428571425 0.3309692671394799 0.2237442922374429 0.6326530612244898 -0.6185819070904646 -0.7037037037037037 -0.2594235033259422 -0.22767857142857162 -0.33806146572104023 -0.5525114155251143 17.0
83 Real Madrid FRA 201535.0 R. Varane France 0.7959183673469388 https://sofifa.com/player/201535/raphael-varane/17/158492 Europe & Central Asia 17 0.6674816625916871 0.0 0.7494456762749445 0.234375 0.4231678486997636 0.6986301369863013 0.5918367346938778 0.33496332518337435 -1.0 0.49889135254988926 -0.53125 -0.15366430260047292 0.39726027397260233 17.0
89 Real Madrid ESP 197781.0 Isco Spain 0.7959183673469388 https://sofifa.com/player/197781/francisco-roman-alarcon-suarez/17/158492 Europe & Central Asia 17 0.5183374083129584 0.3888888888888889 0.8647450110864745 0.0 0.46099290780141844 0.7671232876712328 0.5918367346938778 0.036674816625916984 -0.2222222222222222 0.7294900221729494 -1.0 -0.07801418439716323 0.5342465753424654 17.0
140 Real Madrid ESP 204963.0 Carvajal Spain 0.7755102040816326 https://sofifa.com/player/204963/daniel-carvajal-ramos/17/158492 Europe & Central Asia 17 0.530562347188264 0.0 0.6319290465631929 0.18080357142857142 0.442080378250591 0.6073059360730593 0.5510204081632653 0.06112469437652801 -1.0 0.2638580931263861 -0.6383928571428573 -0.11583924349881802 0.21461187214611832 17.0
199 Real Madrid BRA 200145.0 Casemiro Brazil 0.7551020408163265 https://sofifa.com/player/200145/carlos-henrique-venancio-casimiro/17/158492 Latin America & Caribbean 17 0.5819070904645477 0.0 0.7339246119733924 0.2745535714285714 0.5862884160756501 0.6438356164383561 0.510204081632653 0.1638141809290954 -1.0 0.4678492239467851 -0.4508928571428573 0.17257683215130015 0.2876712328767119 17.0
205 Real Madrid ESP 201153.0 Morata Spain 0.7551020408163265 https://sofifa.com/player/201153/alvaro-borja-morata-martin/17/158492 Europe & Central Asia 17 0.0 0.0 0.10864745011086474 0.0 0.0 0.11643835616438356 0.510204081632653 -1.0 -1.0 -0.7827050997782704 -1.0 -1.0 -0.7671232876712328 17.0
271 Real Madrid ESP 220834.0 Marco Asensio Spain 0.7346938775510203 https://sofifa.com/player/220834/marco-asensio-willemsen/17/158492 Europe & Central Asia 17 0.11491442542787286 0.41481481481481486 0.2838137472283814 0.0 0.1276595744680851 0.36757990867579904 0.46938775510204067 -0.7701711491442541 -0.17037037037037028 -0.43237250554323703 -1.0 -0.7446808510638299 -0.26484018264840214 17.0
302 Real Madrid ESP 208618.0 Lucas Vázquez Spain 0.7346938775510203 https://sofifa.com/player/208618/lucas-vazquez-iglesias/17/158492 Europe & Central Asia 17 0.6063569682151589 0.41111111111111115 0.6097560975609756 0.18973214285714285 0.6501182033096926 0.7237442922374429 0.46938775510204067 0.2127139364303181 -0.1777777777777777 0.21951219512195141 -0.6205357142857143 0.3002364066193852 0.4474885844748855 17.0
422 Real Madrid BRA 199304.0 Danilo Brazil 0.7142857142857142 https://sofifa.com/player/199304/danilo-luiz-da-silva/17/158492 Latin America & Caribbean 17 0.5476772616136919 0.8814814814814815 0.42793791574279383 0.14732142857142858 0.5650118203309693 0.5228310502283104 0.42857142857142816 0.09535452322738402 0.7629629629629631 -0.14412416851441212 -0.7053571428571429 0.1300236406619386 0.04566210045662067 17.0
484 Real Madrid PRT 171688.0 Fábio Coentrão Portugal 0.7142857142857142 https://sofifa.com/player/171688/fabio-alexandre-silva-coentrao/17/158492 Europe & Central Asia 17 0.6723716381418093 0.5703703703703704 0.8913525498891353 0.0 0.5011820330969267 0.6575342465753424 0.42857142857142816 0.34474327628361867 0.14074074074074105 0.782705099778271 -1.0 0.0023640661938533203 0.31506849315068464 17.0
548 Real Madrid HRV 207410.0 M. Kovačić Croatia 0.693877551020408 https://sofifa.com/player/207410/mateo-kovacic/17/158492 Europe & Central Asia 17 0.8264058679706602 0.5740740740740741 0.8292682926829268 0.33928571428571425 0.640661938534279 0.9063926940639269 0.38775510204081587 0.6528117359413206 0.14814814814814814 0.658536585365854 -0.3214285714285716 0.281323877068558 0.8127853881278535 17.0
679 Real Madrid ESP 177644.0 Kiko Casilla Spain 0.693877551020408 https://sofifa.com/player/177644/francisco-casilla-cortes/17/158492 Europe & Central Asia 17 0.254278728606357 0.14074074074074075 0.385809312638581 0.40625 0.5390070921985816 0.2420091324200913 0.38775510204081587 -0.49144254278728594 -0.7185185185185184 -0.22838137472283782 -0.1875 0.07801418439716312 -0.5159817351598175 17.0
792 Real Madrid ESP 200724.0 Nacho Fernández Spain 0.6734693877551019 https://sofifa.com/player/200724/jose-ignacio-fernandez-iglesias/17/158492 Europe & Central Asia 17 0.6479217603911981 0.8777777777777778 0.7139689578713969 0.31026785714285715 0.7399527186761229 0.6301369863013698 0.3469387755102038 0.2958435207823962 0.7555555555555555 0.4279379157427943 -0.3794642857142858 0.4799054373522458 0.26027397260273943 17.0
2279 Real Madrid BRA 209749.0 Lucas Silva Brazil 0.5918367346938775 https://sofifa.com/player/209749/lucas-silva-borges/17/158492 Latin America & Caribbean 17 0.7310513447432763 0.8111111111111111 0.8536585365853658 0.4419642857142857 0.7092198581560284 0.7465753424657534 0.18367346938775508 0.46210268948655253 0.6222222222222222 0.7073170731707321 -0.11607142857142871 0.4184397163120568 0.4931506849315068 17.0
3950 Real Madrid DOM 221639.0 Mariano Dominican Republic 0.5306122448979591 https://sofifa.com/player/221639/mariano-diaz-mejia/17/158492 Latin America & Caribbean 17 0.0 0.32962962962962966 0.516629711751663 0.0 0.3735224586288416 0.0730593607305936 0.06122448979591821 -1.0 -0.3407407407407407 0.03325942350332611 -1.0 -0.25295508274231693 -0.853881278538813 17.0
4626 Real Madrid NOR 222665.0 M. Ødegaard Norway 0.510204081632653 https://sofifa.com/player/222665/martin-odegaard/17/158492 Europe & Central Asia 17 0.6405867970660146 0.337037037037037 0.6563192904656319 0.11607142857142856 0.2127659574468085 0.7534246575342465 0.020408163265305923 0.28117359413202925 -0.32592592592592595 0.3126385809312642 -0.767857142857143 -0.574468085106383 0.506849315068493 17.0
7307 Real Madrid ESP 235522.0 Aleix Febas Spain 0.44897959183673475 https://sofifa.com/player/235522/aleix-febas-perez/17/158492 Europe & Central Asia 17 0.6894865525672371 0.5333333333333333 0.7472283813747228 0.7901785714285714 0.7210401891252954 0.773972602739726 -0.1020408163265305 0.37897310513447424 0.06666666666666687 0.49445676274944605 0.5803571428571428 0.4420803782505909 0.5479452054794518 17.0
7316 Real Madrid PRY 235024.0 S. Díaz Paraguay 0.44897959183673475 https://sofifa.com/player/235024/sergio-diaz/17/158492 Latin America & Caribbean 17 0.687041564792176 0.362962962962963 0.6164079822616407 0.7544642857142857 0.5981087470449172 0.7968036529680365 -0.1020408163265305 0.3740831295843523 -0.274074074074074 0.23281596452328168 0.5089285714285712 0.19621749408983447 0.5936073059360727 17.0
8478 Real Madrid FRA 211234.0 E. Fernández France 0.4285714285714286 https://sofifa.com/player/211234/enzo-fernandez/17/158492 Europe & Central Asia 17 0.6479217603911981 0.24814814814814815 0.4190687361419069 0.28348214285714285 0.5059101654846335 0.7990867579908676 -0.1428571428571428 0.2958435207823962 -0.5037037037037038 -0.16186252771618603 -0.4330357142857144 0.011820330969267046 0.598173515981735 17.0
9358 Real Madrid AUT 231366.0 P. Lienhart Austria 0.40816326530612246 https://sofifa.com/player/231366/philipp-lienhart/17/158492 Europe & Central Asia 17 0.49877750611246946 0.7000000000000001 0.516629711751663 0.3683035714285714 0.47990543735224583 0.4246575342465753 -0.18367346938775508 -0.0024449877750609694 0.40000000000000013 0.03325942350332611 -0.2633928571428572 -0.04018912529550833 -0.15068493150684947 17.0
9511 Real Madrid GRC 222540.0 N. Vergos Greece 0.40816326530612246 https://sofifa.com/player/222540/nikos-vergos/17/158492 Europe & Central Asia 17 0.2665036674816626 0.26666666666666666 0.5188470066518847 0.26116071428571425 0.2836879432624113 0.2100456621004566 -0.18367346938775508 -0.4669926650366747 -0.46666666666666656 0.037694013303769536 -0.4776785714285716 -0.4326241134751774 -0.5799086757990868 17.0
9564 Real Madrid ESP 219836.0 Rubén Yáñez Spain 0.40816326530612246 https://sofifa.com/player/219836/ruben-yanez-alabart/17/158492 Europe & Central Asia 17 0.22982885085574573 0.17407407407407408 0.18847006651884698 0.5178571428571428 0.4940898345153664 0.19863013698630136 -0.18367346938775508 -0.5403422982885084 -0.6518518518518519 -0.6230598669623058 0.03571428571428559 -0.011820330969267268 -0.6027397260273972 17.0
10425 Real Madrid MAR 235212.0 A. Hakimi Morocco 0.3877551020408163 https://sofifa.com/player/235212/achraf-hakimi/17/158492 Middle East & North Africa 17 0.6577017114914425 0.6666666666666667 0.6784922394678492 0.7723214285714285 0.7494089834515366 0.639269406392694 -0.22448979591836737 0.31540342298288526 0.3333333333333335 0.3569844789356986 0.5446428571428568 0.49881796690307323 0.27853881278538806 17.0
12171 Real Madrid ESP 231856.0 Álvaro Tejero Spain 0.346938775510204 https://sofifa.com/player/231856/alvaro-tejero-sacristan/17/158492 Europe & Central Asia 17 0.4767726161369193 0.6592592592592593 0.6008869179600886 0.125 0.524822695035461 0.591324200913242 -0.30612244897959207 -0.046454767726161306 0.31851851851851865 0.2017738359201775 -0.7500000000000001 0.049645390070921946 0.182648401826484 17.0
2 1.0 Real Madrid 0.8 17 17.0
0 Real Madrid PRT 20801.0 Cristiano Ronaldo Portugal 1.0 https://sofifa.com/player/20801/c-ronaldo-dos-santos-aveiro/18/158855 Europe & Central Asia 18 0.4052132701421801 0.2773722627737226 0.5292929292929293 0.34640522875817 0.6464891041162228 0.7139737991266375 1.0 -0.18957345971563977 -0.44525547445255476 0.05858585858585852 -0.30718954248366004 0.29297820823244547 0.4279475982532748 18.0
8 Real Madrid ESP 155862.0 Sergio Ramos Spain 0.9166666666666667 https://sofifa.com/player/155862/sergio-ramos-garcia/18/158855 Europe & Central Asia 18 0.4549763033175356 0.3248175182481752 0.7171717171717171 0.13071895424836602 0.7239709443099274 0.43886462882096067 0.8333333333333337 -0.09004739336492895 -0.35036496350364965 0.43434343434343425 -0.738562091503268 0.4479418886198545 -0.12227074235807878 18.0
10 Real Madrid DEU 182521.0 T. Kroos Germany 0.9166666666666667 https://sofifa.com/player/182521/toni-kroos/18/158855 Europe & Central Asia 18 0.523696682464455 0.22992700729927007 0.6181818181818182 0.0 0.3898305084745763 0.5720524017467249 0.8333333333333337 0.04739336492891 -0.5401459854014599 0.23636363636363633 -1.0 -0.22033898305084754 0.14410480349344956 18.0
16 Real Madrid GBR 173731.0 G. Bale United Kingdom 0.8958333333333333 https://sofifa.com/player/173731/gareth-bale/18/158855 Europe & Central Asia 18 1.0 0.5766423357664233 0.9090909090909091 0.9084967320261439 0.8377723970944311 0.74235807860262 0.7916666666666667 1.0 0.15328467153284664 0.8181818181818181 0.8169934640522878 0.6755447941888619 0.48471615720523986 18.0
17 Real Madrid HRV 177003.0 L. Modrić Croatia 0.8958333333333333 https://sofifa.com/player/177003/luka-modric/18/158855 Europe & Central Asia 18 0.8767772511848342 0.7992700729927007 0.7818181818181819 0.7538126361655774 0.6779661016949153 0.9104803493449781 0.7916666666666667 0.7535545023696681 0.5985401459854014 0.5636363636363635 0.5076252723311547 0.35593220338983067 0.8209606986899562 18.0
42 Real Madrid BRA 176676.0 Marcelo Brazil 0.8541666666666667 https://sofifa.com/player/176676/marcelo-vieira-da-silva/18/158855 Latin America & Caribbean 18 0.28672985781990523 0.6094890510948905 0.7595959595959596 0.514161220043573 0.7336561743341404 0.48689956331877726 0.7083333333333335 -0.42654028436018954 0.21897810218978098 0.519191919191919 0.028322440087146017 0.46731234866828086 -0.026200873362445587 18.0
46 Real Madrid ESP 197781.0 Isco Spain 0.8333333333333333 https://sofifa.com/player/197781/francisco-roman-alarcon-suarez/18/158855 Europe & Central Asia 18 0.6563981042654029 0.2773722627737226 0.6080808080808081 0.5032679738562092 0.6440677966101696 0.7445414847161572 0.6666666666666665 0.3127962085308058 -0.44525547445255476 0.21616161616161622 0.006535947712418277 0.2881355932203391 0.4890829694323142 18.0
57 Real Madrid FRA 165153.0 K. Benzema France 0.8333333333333333 https://sofifa.com/player/165153/karim-benzema/18/158855 Europe & Central Asia 18 0.9597156398104266 0.145985401459854 0.8545454545454545 0.47930283224400877 0.7457627118644068 0.8013100436681222 0.6666666666666665 0.9194312796208532 -0.708029197080292 0.709090909090909 -0.04139433551198257 0.49152542372881336 0.6026200873362442 18.0
68 Real Madrid FRA 201535.0 R. Varane France 0.8125 https://sofifa.com/player/201535/raphael-varane/18/158855 Europe & Central Asia 18 0.47630331753554506 0.9306569343065693 0.45454545454545453 0.22875816993464054 0.2542372881355932 0.3427947598253275 0.6250000000000002 -0.04739336492890989 0.8613138686131387 -0.09090909090909094 -0.542483660130719 -0.4915254237288137 -0.31441048034934516 18.0
71 Real Madrid BRA 200145.0 Casemiro Brazil 0.8125 https://sofifa.com/player/200145/carlos-henrique-venancio-casimiro/18/158855 Latin America & Caribbean 18 0.5639810426540285 0.6313868613138686 0.6161616161616161 0.5860566448801744 0.6246973365617434 0.6244541484716157 0.6250000000000002 0.12796208530805697 0.2627737226277371 0.23232323232323226 0.1721132897603488 0.24939467312348662 0.24890829694323124 18.0
90 Real Madrid CRI 193041.0 K. Navas Costa Rica 0.8125 https://sofifa.com/player/193041/keylor-navas/18/158855 Latin America & Caribbean 18 0.18483412322274884 0.145985401459854 0.39595959595959596 0.6753812636165578 0.5375302663438257 0.21397379912663755 0.6250000000000002 -0.6303317535545023 -0.708029197080292 -0.2080808080808081 0.3507625272331154 0.07506053268765145 -0.572052401746725 18.0
91 Real Madrid ESP 220834.0 Marco Asensio Spain 0.7916666666666667 https://sofifa.com/player/220834/marco-asensio-willemsen/18/158855 Europe & Central Asia 18 0.3222748815165877 0.0 0.6202020202020202 0.3355119825708061 0.0 0.3427947598253275 0.5833333333333337 -0.35545023696682476 -1.0 0.2404040404040404 -0.3289760348583878 -1.0 -0.31441048034934516 18.0
102 Real Madrid ESP 204963.0 Carvajal Spain 0.7916666666666667 https://sofifa.com/player/204963/daniel-carvajal-ramos/18/158855 Europe & Central Asia 18 0.7203791469194314 0.9343065693430657 0.6585858585858586 0.5272331154684097 0.8111380145278451 0.7620087336244541 0.5833333333333337 0.44075829383886256 0.8686131386861313 0.3171717171717172 0.05446623093681913 0.6222760290556899 0.5240174672489082 18.0
203 Real Madrid HRV 207410.0 M. Kovačić Croatia 0.75 https://sofifa.com/player/207410/mateo-kovacic/18/158855 Europe & Central Asia 18 0.6587677725118484 0.1897810218978102 0.4404040404040404 0.4684095860566449 0.34866828087167073 0.7008733624454148 0.5 0.3175355450236965 -0.6204379562043796 -0.11919191919191907 -0.06318082788671031 -0.30266343825665853 0.4017467248908295 18.0
241 Real Madrid ESP 208618.0 Lucas Vázquez Spain 0.75 https://sofifa.com/player/208618/lucas-vazquez-iglesias/18/158855 Europe & Central Asia 18 0.45260663507109006 0.38321167883211676 0.6626262626262627 0.533769063180828 0.675544794188862 0.8668122270742358 0.5 -0.09478672985781988 -0.23357664233576647 0.32525252525252535 0.0675381263616559 0.3510895883777241 0.7336244541484711 18.0
342 Real Madrid ESP 200724.0 Nacho Fernández Spain 0.7291666666666667 https://sofifa.com/player/200724/jose-ignacio-fernandez-iglesias/18/158855 Europe & Central Asia 18 0.3317535545023697 0.6021897810218978 0.43636363636363634 0.28758169934640526 0.3946731234866828 0.4541484716157205 0.4583333333333335 -0.3364928909952607 0.2043795620437956 -0.12727272727272732 -0.4248366013071896 -0.21065375302663447 -0.09170305676855928 18.0
498 Real Madrid ESP 177644.0 Kiko Casilla Spain 0.7083333333333333 https://sofifa.com/player/177644/francisco-casilla-cortes/18/158855 Europe & Central Asia 18 0.24644549763033177 0.1386861313868613 0.4101010101010101 0.5577342047930284 0.5520581113801453 0.23144104803493448 0.4166666666666665 -0.5071090047393365 -0.7226277372262774 -0.17979797979797985 0.11546840958605675 0.10411622276029031 -0.537117903930131 18.0
691 Real Madrid ESP 222509.0 Dani Ceballos Spain 0.6666666666666667 https://sofifa.com/player/222509/daniel-ceballos-fernandez/18/158855 Europe & Central Asia 18 0.5758293838862559 0.8065693430656934 0.8707070707070707 0.48583877995642705 0.13801452784503632 0.4541484716157205 0.3333333333333335 0.15165876777251164 0.613138686131387 0.7414141414141413 -0.028322440087145906 -0.7239709443099274 -0.09170305676855928 18.0
927 Real Madrid ESP 226161.0 Marcos Llorente Spain 0.6458333333333333 https://sofifa.com/player/226161/marcos-llorente-moreno/18/158855 Europe & Central Asia 18 0.6729857819905214 0.7627737226277372 0.5171717171717172 0.4248366013071896 0.7917675544794189 0.7030567685589519 0.29166666666666674 0.3459715639810428 0.5255474452554745 0.03434343434343434 -0.15032679738562094 0.5835351089588376 0.4061135371179039 18.0
938 Real Madrid ESP 225161.0 Vallejo Spain 0.6458333333333333 https://sofifa.com/player/225161/jesus-vallejo-lazaro/18/158855 Europe & Central Asia 18 0.35545023696682465 0.2846715328467153 0.09090909090909091 0.7821350762527234 0.47215496368038745 0.0 0.29166666666666674 -0.2890995260663507 -0.43065693430656937 -0.8181818181818181 0.5642701525054468 -0.05569007263922521 -1.0 18.0
1591 Real Madrid FRA 232656.0 T. Hernández France 0.6041666666666667 https://sofifa.com/player/232656/theo-hernandez/18/158855 Europe & Central Asia 18 0.0 0.5547445255474452 0.25252525252525254 0.6209150326797386 0.3365617433414044 0.2838427947598253 0.20833333333333348 -1.0 0.10948905109489071 -0.4949494949494949 0.24183006535947693 -0.32687651331719125 -0.43231441048034946 18.0
3279 Real Madrid ESP 228635.0 Borja Mayoral Spain 0.5416666666666667 https://sofifa.com/player/228635/borja-mayoral-moya/18/158855 Europe & Central Asia 18 0.7867298578199052 0.16423357664233576 0.4868686868686869 0.4705882352941177 0.6271186440677966 0.5960698689956332 0.08333333333333348 0.5734597156398102 -0.6715328467153284 -0.0262626262626261 -0.05882352941176472 0.254237288135593 0.19213973799126616 18.0
4023 Real Madrid MAR 235212.0 A. Hakimi Morocco 0.5208333333333333 https://sofifa.com/player/235212/achraf-hakimi/18/158855 Middle East & North Africa 18 0.38388625592417064 0.2591240875912409 0.7111111111111111 0.4618736383442266 0.6440677966101696 0.5152838427947598 0.04166666666666674 -0.23222748815165872 -0.4817518248175182 0.4222222222222223 -0.07625272331154676 0.2881355932203391 0.03056768558951961 18.0
6611 Real Madrid ESP 239335.0 Óscar Spain 0.45833333333333326 https://sofifa.com/player/239335/oscar-rodriguez-arnaiz/18/158855 Europe & Central Asia 18 0.6208530805687205 0.40875912408759124 0.6747474747474748 0.7124183006535948 0.6585956416464891 0.8209606986899562 -0.08333333333333337 0.2417061611374407 -0.18248175182481752 0.34949494949494975 0.4248366013071896 0.3171912832929782 0.6419213973799125 18.0
8700 Real Madrid ESP 231856.0 Álvaro Tejero Spain 0.41666666666666674 https://sofifa.com/player/231856/alvaro-tejero-sacristan/18/158855 Europe & Central Asia 18 0.4218009478672986 0.0 0.5555555555555556 0.30936819172113295 0.7191283292978209 0.6419213973799126 -0.1666666666666664 -0.1563981042654029 -1.0 0.11111111111111116 -0.3812636165577341 0.4382566585956418 0.2838427947598252 18.0
10949 Real Madrid FRA 240311.0 L. Zidane France 0.375 https://sofifa.com/player/240311/luca-zidane/18/158855 Europe & Central Asia 18 0.14218009478672988 0.10583941605839416 0.22424242424242424 0.4183006535947713 0.4213075060532688 0.13973799126637554 -0.25 -0.7156398104265402 -0.7883211678832117 -0.5515151515151515 -0.1633986928104575 -0.15738498789346245 -0.7205240174672489 18.0
3 1.0 Real Madrid 0.8 18 18.0
0 Juventus PRT 20801.0 Cristiano Ronaldo Portugal 1.0 https://sofifa.com/player/20801/c-ronaldo-dos-santos-aveiro/19/159222 Europe & Central Asia 19 1.0 0.2971014492753623 0.907070707070707 0.9392624728850326 1.0 0.8907922912205568 1.0 1.0 -0.4057971014492753 0.814141414141414 0.8785249457700652 1.0 0.7815845824411136 19.0
5 Real Madrid ESP 155862.0 Sergio Ramos Spain 0.9361702127659575 https://sofifa.com/player/155862/sergio-ramos-garcia/19/159222 Europe & Central Asia 19 0.8298850574712644 0.9855072463768116 0.8828282828282829 0.824295010845987 0.8755555555555555 0.7644539614561028 0.8723404255319149 0.6597701149425286 0.9710144927536235 0.7656565656565655 0.648590021691974 0.7511111111111111 0.5289079229122053 19.0
7 Real Madrid HRV 177003.0 L. Modrić Croatia 0.9361702127659575 https://sofifa.com/player/177003/luka-modric/19/159222 Europe & Central Asia 19 0.8781609195402299 0.7572463768115942 0.9737373737373738 0.93058568329718 0.8355555555555556 0.9293361884368309 0.8723404255319149 0.7563218390804594 0.5144927536231887 0.9474747474747474 0.8611713665943601 0.6711111111111112 0.8586723768736617 19.0
13 Real Madrid DEU 182521.0 T. Kroos Germany 0.9148936170212765 https://sofifa.com/player/182521/toni-kroos/19/159222 Europe & Central Asia 19 0.9011494252873563 0.7934782608695652 0.9373737373737374 0.7895878524945771 0.7933333333333333 0.9250535331905783 0.829787234042553 0.8022988505747124 0.5869565217391306 0.874747474747475 0.5791757049891542 0.5866666666666664 0.8501070663811565 19.0
15 Juventus ARG 211110.0 P. Dybala Argentina 0.8936170212765957 https://sofifa.com/player/211110/paulo-dybala/19/159222 Latin America & Caribbean 19 0.9402298850574713 0.2282608695652174 0.8505050505050505 0.9370932754880694 0.8666666666666667 0.9314775160599572 0.7872340425531914 0.8804597701149421 -0.5434782608695652 0.7010101010101009 0.8741865509761388 0.7333333333333334 0.8629550321199144 19.0
17 Real Madrid ESP 197781.0 Isco Spain 0.8936170212765957 https://sofifa.com/player/197781/francisco-roman-alarcon-suarez/19/159222 Europe & Central Asia 19 0.8482758620689655 0.6340579710144928 0.9212121212121213 0.8676789587852495 0.78 0.9314775160599572 0.7872340425531914 0.6965517241379309 0.2681159420289856 0.8424242424242423 0.735357917570499 0.5599999999999998 0.8629550321199144 19.0
21 Juventus ITA 138956.0 G. Chiellini Italy 0.8936170212765957 https://sofifa.com/player/138956/giorgio-chiellini/19/159222 Europe & Central Asia 19 0.6413793103448275 1.0 0.7919191919191919 0.7114967462039046 0.8088888888888889 0.5674518201284797 0.7872340425531914 0.28275862068965485 1.0 0.5838383838383838 0.42299349240780915 0.6177777777777778 0.13490364025695945 19.0
28 Real Madrid BRA 200145.0 Casemiro Brazil 0.8723404255319149 https://sofifa.com/player/200145/carlos-henrique-venancio-casimiro/19/159222 Latin America & Caribbean 19 0.7471264367816092 0.9601449275362319 0.9494949494949495 0.7288503253796096 0.9533333333333334 0.7751605995717346 0.7446808510638299 0.4942528735632181 0.9202898550724639 0.898989898989899 0.4577006507592192 0.9066666666666667 0.5503211991434691 19.0
37 Real Madrid GBR 173731.0 G. Bale United Kingdom 0.8723404255319149 https://sofifa.com/player/173731/gareth-bale/19/159222 Europe & Central Asia 19 0.9816091954022989 0.5833333333333334 0.9090909090909091 0.913232104121475 0.9444444444444444 0.9186295503211992 0.7446808510638299 0.9632183908045977 0.16666666666666696 0.8181818181818181 0.8264642082429503 0.8888888888888888 0.8372591006423984 19.0
38 Real Madrid BRA 176676.0 Marcelo Brazil 0.8723404255319149 https://sofifa.com/player/176676/marcelo-vieira-da-silva/19/159222 Latin America & Caribbean 19 0.8505747126436781 0.8913043478260869 0.9717171717171718 0.9219088937093276 0.8844444444444445 0.8779443254817988 0.7446808510638299 0.701149425287356 0.7826086956521738 0.9434343434343435 0.8438177874186552 0.768888888888889 0.7558886509635976 19.0
55 Real Madrid CRI 193041.0 K. Navas Costa Rica 0.8510638297872339 https://sofifa.com/player/193041/keylor-navas/19/159222 Latin America & Caribbean 19 0.1793103448275862 0.2028985507246377 0.46060606060606063 0.6767895878524945 0.49333333333333335 0.20985010706638116 0.7021276595744679 -0.6413793103448275 -0.5942028985507246 -0.07878787878787863 0.3535791757049893 -0.01333333333333342 -0.5802997858672376 19.0
57 Real Madrid FRA 201535.0 R. Varane France 0.8297872340425532 https://sofifa.com/player/201535/raphael-varane/19/159222 Europe & Central Asia 19 0.6344827586206896 0.9492753623188406 0.7757575757575758 0.7678958785249458 0.7577777777777778 0.6638115631691649 0.6595744680851061 0.26896551724137896 0.8985507246376814 0.5515151515151515 0.5357917570498916 0.5155555555555555 0.3276231263383298 19.0
66 Juventus MAR 177509.0 M. Benatia Morocco 0.8297872340425532 https://sofifa.com/player/177509/medhi-benatia/19/159222 Middle East & North Africa 19 0.6528735632183909 0.9456521739130435 0.7676767676767676 0.7245119305856833 0.7488888888888889 0.5438972162740899 0.6595744680851061 0.3057471264367815 0.8913043478260871 0.5353535353535352 0.4490238611713666 0.4977777777777779 0.08779443254817987 19.0
67 Juventus BIH 180206.0 M. Pjanić Bosnia and Herzegovina 0.8297872340425532 https://sofifa.com/player/180206/miralem-pjanic/19/159222 Europe & Central Asia 19 0.8298850574712644 0.7934782608695652 0.9515151515151515 0.806941431670282 0.8088888888888889 0.9379014989293363 0.6595744680851061 0.6597701149425286 0.5869565217391306 0.9030303030303031 0.613882863340564 0.6177777777777778 0.8758029978586723 19.0
70 Juventus ITA 184344.0 L. Bonucci Italy 0.8297872340425532 https://sofifa.com/player/184344/leonardo-bonucci/19/159222 Europe & Central Asia 19 0.7195402298850575 0.927536231884058 0.8888888888888888 0.6898047722342734 0.8377777777777777 0.7408993576017131 0.6595744680851061 0.439080459770115 0.855072463768116 0.7777777777777775 0.3796095444685468 0.6755555555555555 0.481798715203426 19.0
74 Juventus BRA 190483.0 Douglas Costa Brazil 0.8297872340425532 https://sofifa.com/player/190483/douglas-costa-de-souza/19/159222 Latin America & Caribbean 19 0.8298850574712644 0.42391304347826086 0.8565656565656565 0.9934924078091106 0.8177777777777778 0.8843683083511777 0.6595744680851061 0.6597701149425286 -0.15217391304347827 0.7131313131313128 0.9869848156182213 0.6355555555555557 0.7687366167023555 19.0
75 Juventus BRA 191043.0 Alex Sandro Brazil 0.8297872340425532 https://sofifa.com/player/191043/alex-sandro-lobo-silva/19/159222 Latin America & Caribbean 19 0.8367816091954023 0.9021739130434783 0.901010101010101 0.8893709327548808 0.8933333333333333 0.7944325481798715 0.6595744680851061 0.6735632183908045 0.8043478260869568 0.8020202020202021 0.7787418655097615 0.7866666666666666 0.5888650963597428 19.0
78 Real Madrid ESP 220834.0 Marco Asensio Spain 0.8085106382978724 https://sofifa.com/player/220834/marco-asensio-willemsen/19/159222 Europe & Central Asia 19 0.8735632183908046 0.4384057971014493 0.806060606060606 0.8568329718004338 0.8111111111111111 0.8865096359743041 0.6170212765957448 0.7471264367816091 -0.12318840579710133 0.6121212121212121 0.7136659436008677 0.6222222222222222 0.7730192719486082 19.0
100 Juventus FRA 170890.0 B. Matuidi France 0.8085106382978724 https://sofifa.com/player/170890/blaise-matuidi/19/159222 Europe & Central Asia 19 0.832183908045977 0.9239130434782609 0.9252525252525252 0.8720173535791758 0.8933333333333333 0.7516059957173448 0.6170212765957448 0.6643678160919537 0.8478260869565217 0.8505050505050504 0.7440347071583515 0.7866666666666666 0.5032119914346893 19.0
103 Juventus DEU 179846.0 S. Khedira Germany 0.8085106382978724 https://sofifa.com/player/179846/sami-khedira/19/159222 Europe & Central Asia 19 0.8804597701149425 0.8659420289855072 0.9737373737373738 0.6724511930585684 0.8733333333333333 0.8201284796573877 0.6170212765957448 0.760919540229885 0.7318840579710146 0.9474747474747474 0.34490238611713675 0.7466666666666666 0.6402569593147753 19.0
114 Juventus ITA 198009.0 M. Perin Italy 0.7872340425531914 https://sofifa.com/player/198009/mattia-perin/19/159222 Europe & Central Asia 19 0.19770114942528735 0.1847826086956522 0.37575757575757573 0.6334056399132322 0.43777777777777777 0.2162740899357602 0.5744680851063828 -0.6045977011494252 -0.6304347826086957 -0.24848484848484853 0.26681127982646435 -0.12444444444444458 -0.5674518201284796 19.0
120 Real Madrid ESP 204963.0 Carvajal Spain 0.7872340425531914 https://sofifa.com/player/204963/daniel-carvajal-ramos/19/159222 Europe & Central Asia 19 0.7103448275862069 0.9094202898550725 0.8161616161616162 0.8785249457700651 0.7422222222222222 0.7473233404710922 0.5744680851063828 0.4206896551724135 0.8188405797101452 0.6323232323232324 0.7570498915401302 0.48444444444444446 0.49464668094218434 19.0
124 Juventus POL 186153.0 W. Szczęsny Poland 0.7872340425531914 https://sofifa.com/player/186153/wojciech-szczesny/19/159222 Europe & Central Asia 19 0.19770114942528735 0.16304347826086957 0.40404040404040403 0.6203904555314533 0.4666666666666667 0.2119914346895075 0.5744680851063828 -0.6045977011494252 -0.6739130434782609 -0.19191919191919193 0.24078091106290667 -0.06666666666666676 -0.5760171306209849 19.0
135 Juventus ITA 137186.0 A. Barzagli Italy 0.7872340425531914 https://sofifa.com/player/137186/andrea-barzagli/19/159222 Europe & Central Asia 19 0.535632183908046 0.963768115942029 0.795959595959596 0.7158351409978309 0.6888888888888889 0.588865096359743 0.5744680851063828 0.07126436781609202 0.9275362318840583 0.5919191919191922 0.4316702819956617 0.37777777777777777 0.1777301927194861 19.0
141 Real Madrid FRA 165153.0 K. Benzema France 0.7872340425531914 https://sofifa.com/player/165153/karim-benzema/19/159222 Europe & Central Asia 19 0.8988505747126436 0.26811594202898553 0.8424242424242424 0.806941431670282 0.84 0.7987152034261242 0.5744680851063828 0.7977011494252872 -0.46376811594202894 0.6848484848484848 0.613882863340564 0.6799999999999997 0.5974304068522485 19.0
148 Juventus HRV 181783.0 M. Mandžukić Croatia 0.7872340425531914 https://sofifa.com/player/181783/mario-mandzukic/19/159222 Europe & Central Asia 19 0.9356321839080459 0.677536231884058 0.9575757575757575 0.7505422993492408 0.8733333333333333 0.7130620985010707 0.5744680851063828 0.8712643678160918 0.35507246376811596 0.915151515151515 0.5010845986984815 0.7466666666666666 0.4261241970021412 19.0
155 Juventus COL 193082.0 J. Cuadrado Colombia 0.7872340425531914 https://sofifa.com/player/193082/juan-cuadrado/19/159222 Latin America & Caribbean 19 0.8160919540229885 0.75 0.8868686868686869 0.9436008676789588 0.84 0.8372591006423983 0.5744680851063828 0.6321839080459768 0.5000000000000002 0.7737373737373738 0.8872017353579176 0.6799999999999997 0.6745182012847966 19.0
159 Chelsea HRV 207410.0 M. Kovačić Croatia 0.7659574468085106 https://sofifa.com/player/207410/mateo-kovacic/19/159222 Europe & Central Asia 19 0.7816091954022988 0.75 0.8949494949494949 0.8481561822125814 0.8088888888888889 0.867237687366167 0.5319148936170213 0.5632183908045973 0.5000000000000002 0.7898989898989899 0.6963123644251628 0.6177777777777778 0.734475374732334 19.0
184 Real Madrid ESP 200724.0 Nacho Fernández Spain 0.7659574468085106 https://sofifa.com/player/200724/jose-ignacio-fernandez-iglesias/19/159222 Europe & Central Asia 19 0.6942528735632184 0.8913043478260869 0.7414141414141414 0.7700650759219089 0.7111111111111111 0.6124197002141328 0.5319148936170213 0.3885057471264366 0.7826086956521738 0.4828282828282826 0.5401301518438177 0.4222222222222223 0.22483940042826567 19.0
210 Real Madrid ESP 208618.0 Lucas Vázquez Spain 0.7659574468085106 https://sofifa.com/player/208618/lucas-vazquez-iglesias/19/159222 Europe & Central Asia 19 0.8 0.4927536231884058 0.8 0.8915401301518439 0.8377777777777777 0.8501070663811564 0.5319148936170213 0.6000000000000001 -0.014492753623188248 0.6000000000000001 0.7830802603036877 0.6755555555555555 0.7002141327623128 19.0
231 Juventus ITA 212404.0 F. Bernardeschi Italy 0.7446808510638296 https://sofifa.com/player/212404/federico-bernardeschi/19/159222 Europe & Central Asia 19 0.8160919540229885 0.5543478260869565 0.8707070707070707 0.8893709327548808 0.7866666666666666 0.867237687366167 0.48936170212765906 0.6321839080459768 0.10869565217391308 0.7414141414141413 0.7787418655097615 0.573333333333333 0.734475374732334 19.0
237 Juventus ITA 211320.0 D. Rugani Italy 0.7446808510638296 https://sofifa.com/player/211320/daniele-rugani/19/159222 Europe & Central Asia 19 0.5816091954022988 0.9239130434782609 0.6909090909090909 0.6789587852494577 0.72 0.5524625267665954 0.48936170212765906 0.16321839080459766 0.8478260869565217 0.38181818181818183 0.35791757049891526 0.4399999999999997 0.1049250535331907 19.0
322 Juventus PRT 210514.0 João Cancelo Portugal 0.7234042553191489 https://sofifa.com/player/210514/joao-pedro-cavaco-cancelo/19/159222 Europe & Central Asia 19 0.7770114942528735 0.8514492753623188 0.8424242424242424 0.8850325379609545 0.8133333333333334 0.828693790149893 0.44680851063829774 0.554022988505747 0.7028985507246377 0.6848484848484848 0.770065075921909 0.6266666666666667 0.657387580299786 19.0
423 Juventus DEU 208333.0 E. Can Germany 0.7021276595744681 https://sofifa.com/player/208333/emre-can/19/159222 Europe & Central Asia 19 0.7862068965517242 0.8768115942028986 0.907070707070707 0.7895878524945771 0.8888888888888888 0.7901498929336189 0.4042553191489362 0.5724137931034481 0.7536231884057973 0.814141414141414 0.5791757049891542 0.7777777777777777 0.5802997858672378 19.0
512 Real Madrid ESP 177644.0 Kiko Casilla Spain 0.7021276595744681 https://sofifa.com/player/177644/francisco-casilla-cortes/19/159222 Europe & Central Asia 19 0.21379310344827585 0.18840579710144928 0.42828282828282827 0.5553145336225597 0.5066666666666667 0.22698072805139188 0.4042553191489362 -0.5724137931034483 -0.6231884057971016 -0.14343434343434358 0.11062906724511934 0.01333333333333342 -0.5460385438972162 19.0
554 Real Madrid ESP 226161.0 Marcos Llorente Spain 0.6808510638297871 https://sofifa.com/player/226161/marcos-llorente-moreno/19/159222 Europe & Central Asia 19 0.6528735632183909 0.822463768115942 0.8222222222222222 0.6529284164859003 0.7266666666666667 0.6895074946466809 0.3617021276595742 0.3057471264367815 0.6449275362318843 0.6444444444444444 0.30585683297180055 0.45333333333333314 0.37901498929336186 19.0
714 Real Madrid ESP 222509.0 Dani Ceballos Spain 0.6595744680851063 https://sofifa.com/player/222509/daniel-ceballos-fernandez/19/159222 Europe & Central Asia 19 0.7034482758620689 0.7717391304347826 0.8707070707070707 0.7592190889370933 0.6488888888888888 0.7987152034261242 0.31914893617021267 0.40689655172413763 0.5434782608695652 0.7414141414141413 0.5184381778741867 0.2977777777777777 0.5974304068522485 19.0
722 Real Madrid ESP 225161.0 Vallejo Spain 0.6595744680851063 https://sofifa.com/player/225161/jesus-vallejo-lazaro/19/159222 Europe & Central Asia 19 0.6229885057471264 0.8623188405797102 0.6909090909090909 0.7722342733188721 0.6488888888888888 0.5524625267665954 0.31914893617021267 0.24597701149425277 0.7246376811594206 0.38181818181818183 0.5444685466377441 0.2977777777777777 0.1049250535331907 19.0
772 Juventus ITA 206058.0 M. De Sciglio Italy 0.6595744680851063 https://sofifa.com/player/206058/mattia-de-sciglio/19/159222 Europe & Central Asia 19 0.6758620689655173 0.8514492753623188 0.797979797979798 0.8286334056399133 0.7777777777777778 0.708779443254818 0.31914893617021267 0.3517241379310345 0.7028985507246377 0.595959595959596 0.6572668112798266 0.5555555555555556 0.417558886509636 19.0
1026 Juventus ITA 202884.0 L. Spinazzola Italy 0.6382978723404256 https://sofifa.com/player/202884/leonardo-spinazzola/19/159222 Europe & Central Asia 19 0.7609195402298851 0.8297101449275363 0.8343434343434344 0.8004338394793926 0.8288888888888889 0.7152034261241971 0.2765957446808509 0.5218390804597699 0.6594202898550727 0.6686868686868686 0.6008676789587852 0.6577777777777778 0.4304068522483939 19.0
1235 Juventus URY 227535.0 R. Bentancur Uruguay 0.6170212765957446 https://sofifa.com/player/227535/rodrigo-bentancur/19/159222 Latin America & Caribbean 19 0.6735632183908046 0.7644927536231885 0.797979797979798 0.754880694143167 0.7755555555555556 0.7130620985010707 0.23404255319148914 0.34712643678160915 0.5289855072463769 0.595959595959596 0.5097613882863341 0.5511111111111111 0.4261241970021412 19.0
1262 Real Sociedad FRA 232656.0 T. Hernández France 0.6170212765957446 https://sofifa.com/player/232656/theo-hernandez/19/159222 Europe & Central Asia 19 0.7655172413793103 0.822463768115942 0.7171717171717171 0.8329718004338396 0.7666666666666667 0.7023554603854391 0.23404255319148914 0.5310344827586204 0.6449275362318843 0.43434343434343425 0.6659436008676791 0.5333333333333334 0.4047109207708779 19.0
1621 Borussia Dortmund MAR 235212.0 A. Hakimi Morocco 0.5957446808510638 https://sofifa.com/player/235212/achraf-hakimi/19/159222 Middle East & North Africa 19 0.6873563218390805 0.7898550724637681 0.7151515151515152 0.8286334056399133 0.7644444444444445 0.6723768736616703 0.19148936170212782 0.37471264367816093 0.5797101449275364 0.4303030303030304 0.6572668112798266 0.528888888888889 0.34475374732334063 19.0
1645 Levante UD ESP 228635.0 Borja Mayoral Spain 0.5957446808510638 https://sofifa.com/player/228635/borja-mayoral-moya/19/159222 Europe & Central Asia 19 0.7908045977011494 0.2753623188405797 0.6121212121212121 0.7678958785249458 0.7044444444444444 0.6059957173447538 0.19148936170212782 0.5816091954022986 -0.44927536231884047 0.22424242424242413 0.5357917570498916 0.40888888888888886 0.21199143468950754 19.0
3204 Juventus ITA 236610.0 M. Kean Italy 0.5319148936170213 https://sofifa.com/player/236610/moise-kean/19/159222 Europe & Central Asia 19 0.7011494252873564 0.15579710144927536 0.6505050505050505 0.7939262472885033 0.5911111111111111 0.6209850107066381 0.06382978723404253 0.4022988505747127 -0.6884057971014494 0.30101010101010095 0.5878524945770063 0.18222222222222229 0.24197002141327628 19.0
3712 Juventus ITA 189342.0 C. Pinsoglio Italy 0.5319148936170213 https://sofifa.com/player/189342/carlo-pinsoglio/19/159222 Europe & Central Asia 19 0.1586206896551724 0.16304347826086957 0.36767676767676766 0.48156182212581344 0.42 0.20770877944325483 0.06382978723404253 -0.6827586206896552 -0.6739130434782609 -0.2646464646464647 -0.03687635574837311 -0.16000000000000014 -0.5845824411134903 19.0
6527 CD Leganés ESP 239335.0 Óscar Spain 0.44680851063829774 https://sofifa.com/player/239335/oscar-rodriguez-arnaiz/19/159222 Europe & Central Asia 19 0.6091954022988506 0.4601449275362319 0.6747474747474748 0.6919739696312365 0.5911111111111111 0.8051391862955033 -0.10638297872340452 0.21839080459770122 -0.07971014492753625 0.3494949494949495 0.38394793926247295 0.18222222222222229 0.6102783725910066 19.0
7613 Albacete BP ESP 231856.0 Álvaro Tejero Spain 0.42553191489361697 https://sofifa.com/player/231856/alvaro-tejero-sacristan/19/159222 Europe & Central Asia 19 0.5379310344827586 0.7028985507246377 0.6727272727272727 0.8026030368763558 0.7777777777777778 0.6338329764453962 -0.14893617021276606 0.07586206896551717 0.4057971014492756 0.34545454545454546 0.6052060737527116 0.5555555555555556 0.2676659528907923 19.0
11996 Real Madrid FRA 240311.0 L. Zidane France 0.34042553191489366 https://sofifa.com/player/240311/luca-zidane/19/159222 Europe & Central Asia 19 0.13793103448275862 0.13405797101449277 0.2727272727272727 0.44251626898047725 0.38 0.13704496788008566 -0.31914893617021256 -0.7241379310344827 -0.7318840579710146 -0.4545454545454546 -0.11496746203904551 -0.24 -0.7259100642398286 19.0
12733 Juventus ITA 245491.0 P. Beruatto Italy 0.31914893617021267 https://sofifa.com/player/245491/pietro-beruatto/19/159222 Europe & Central Asia 19 0.496551724137931 0.717391304347826 0.5676767676767677 0.36225596529284165 0.5 0.5182012847965739 -0.36170212765957466 -0.006896551724137945 0.43478260869565233 0.13535353535353534 -0.2754880694143167 0.0 0.036402569593147804 19.0
4 1.0 Real Madrid 0.8 19 19.0
10 2.0 Juventus 0.8 19 19.0
1 Juventus PRT 20801.0 Cristiano Ronaldo Portugal 0.9782608695652175 https://sofifa.com/player/20801/c-ronaldo-dos-santos-aveiro/20/159586 Europe & Central Asia 20 0.9999999999999999 0.24901185770750986 0.8693693693693694 0.9145299145299145 1.0 0.8671328671328671 0.9565217391304355 1.0 -0.5019762845849802 0.7387387387387385 0.829059829059829 1.0 0.7342657342657339 20.0
8 Real Madrid HRV 177003.0 L. Modrić Croatia 0.9130434782608696 https://sofifa.com/player/177003/luka-modric/20/159586 Europe & Central Asia 20 0.8596491228070174 0.766798418972332 0.9572072072072073 0.8803418803418804 0.765079365079365 0.9020979020979021 0.8260869565217397 0.7192982456140353 0.5335968379446641 0.9144144144144146 0.7606837606837609 0.53015873015873 0.8041958041958039 20.0
16 Juventus ITA 138956.0 G. Chiellini Italy 0.8913043478260869 https://sofifa.com/player/138956/giorgio-chiellini/20/159586 Europe & Central Asia 20 0.606516290726817 1.0 0.7387387387387387 0.6182336182336183 0.7396825396825395 0.543123543123543 0.7826086956521741 0.21303258145363424 1.0 0.47747747747747726 0.23646723646723666 0.479365079365079 0.08624708624708588 20.0
18 Real Madrid ESP 155862.0 Sergio Ramos Spain 0.8913043478260869 https://sofifa.com/player/155862/sergio-ramos-garcia/20/159586 Europe & Central Asia 20 0.8320802005012531 0.9525691699604744 0.9527027027027026 0.7492877492877493 0.8507936507936507 0.7785547785547785 0.7826086956521741 0.6641604010025064 0.9051383399209487 0.9054054054054053 0.49857549857549843 0.7015873015873011 0.5571095571095566 20.0
23 Juventus ARG 211110.0 P. Dybala Argentina 0.8695652173913044 https://sofifa.com/player/211110/paulo-dybala/20/159586 Latin America & Caribbean 20 0.9097744360902255 0.3913043478260869 0.8198198198198198 0.8945868945868946 0.7936507936507935 0.9114219114219113 0.7391304347826091 0.8195488721804514 -0.21739130434782616 0.6396396396396393 0.7891737891737889 0.587301587301587 0.8228438228438224 20.0
36 Real Madrid DEU 182521.0 T. Kroos Germany 0.8695652173913044 https://sofifa.com/player/182521/toni-kroos/20/159586 Europe & Central Asia 20 0.8922305764411027 0.7233201581027667 0.8963963963963963 0.5584045584045585 0.6952380952380952 0.9044289044289044 0.7391304347826091 0.7844611528822059 0.44664031620553346 0.7927927927927927 0.11680911680911699 0.3904761904761902 0.8088578088578087 20.0
42 Real Madrid BRA 200145.0 Casemiro Brazil 0.8478260869565217 https://sofifa.com/player/200145/carlos-henrique-venancio-casimiro/20/159586 Latin America & Caribbean 20 0.7619047619047619 0.9328063241106719 0.9189189189189189 0.6410256410256411 0.9555555555555555 0.7529137529137528 0.6956521739130437 0.5238095238095242 0.8656126482213438 0.8378378378378375 0.28205128205128216 0.911111111111111 0.5058275058275055 20.0
46 Real Madrid FRA 165153.0 K. Benzema France 0.8478260869565217 https://sofifa.com/player/165153/karim-benzema/20/159586 Europe & Central Asia 20 0.932330827067669 0.26877470355731226 0.8648648648648649 0.7720797720797722 0.8349206349206348 0.8368298368298368 0.6956521739130437 0.8646616541353385 -0.4624505928853755 0.7297297297297298 0.5441595441595446 0.6698412698412697 0.6736596736596734 20.0
53 Real Madrid CRI 193041.0 K. Navas Costa Rica 0.8478260869565217 https://sofifa.com/player/193041/keylor-navas/20/159586 Latin America & Caribbean 20 0.10025062656641603 0.1383399209486166 0.3716216216216216 0.566951566951567 0.39999999999999997 0.1282051282051282 0.6956521739130437 -0.7994987468671677 -0.7233201581027668 -0.2567567567567568 0.13390313390313402 -0.19999999999999996 -0.7435897435897436 20.0
60 Juventus POL 186153.0 W. Szczęsny Poland 0.826086956521739 https://sofifa.com/player/186153/wojciech-szczesny/20/159586 Europe & Central Asia 20 0.12030075187969924 0.09486166007905139 0.30855855855855857 0.49287749287749294 0.3777777777777777 0.13053613053613056 0.6521739130434783 -0.7593984962406015 -0.8102766798418972 -0.38288288288288286 -0.01424501424501412 -0.24444444444444458 -0.7389277389277389 20.0
62 Real Madrid ESP 197781.0 Isco Spain 0.826086956521739 https://sofifa.com/player/197781/francisco-roman-alarcon-suarez/20/159586 Europe & Central Asia 20 0.8145363408521303 0.6007905138339921 0.8648648648648649 0.7977207977207977 0.6476190476190475 0.8997668997668997 0.6521739130434783 0.6290726817042611 0.20158102766798391 0.7297297297297298 0.5954415954415953 0.2952380952380951 0.799533799533799 20.0
65 Juventus BIH 180206.0 M. Pjanić Bosnia and Herzegovina 0.826086956521739 https://sofifa.com/player/180206/miralem-pjanic/20/159586 Europe & Central Asia 20 0.8045112781954887 0.8023715415019763 0.9144144144144144 0.7492877492877493 0.7269841269841268 0.9254079254079253 0.6521739130434783 0.6090225563909777 0.6047430830039524 0.8288288288288288 0.49857549857549843 0.4539682539682537 0.8508158508158503 20.0
67 Juventus ITA 184344.0 L. Bonucci Italy 0.826086956521739 https://sofifa.com/player/184344/leonardo-bonucci/20/159586 Europe & Central Asia 20 0.6842105263157895 0.9288537549407114 0.8490990990990991 0.5754985754985755 0.7714285714285714 0.7062937062937062 0.6521739130434783 0.3684210526315792 0.8577075098814229 0.698198198198198 0.15099715099715105 0.5428571428571427 0.41258741258741227 20.0
73 Juventus NLD 235243.0 M. de Ligt Netherlands 0.8043478260869565 https://sofifa.com/player/235243/matthijs-de-ligt/20/159586 Europe & Central Asia 20 0.6641604010025063 0.8972332015810276 0.7432432432432432 0.6239316239316239 0.838095238095238 0.6386946386946386 0.6086956521739133 0.3283208020050128 0.7944664031620552 0.4864864864864864 0.24786324786324787 0.676190476190476 0.277389277389277 20.0
76 Real Madrid FRA 201535.0 R. Varane France 0.8043478260869565 https://sofifa.com/player/201535/raphael-varane/20/159586 Europe & Central Asia 20 0.5964912280701754 0.9367588932806323 0.7342342342342343 0.6723646723646725 0.6698412698412697 0.6130536130536131 0.6086956521739133 0.19298245614035126 0.8735177865612647 0.46846846846846835 0.3447293447293449 0.33968253968253914 0.2261072261072259 20.0
94 Real Madrid ESP 204963.0 Carvajal Spain 0.8043478260869565 https://sofifa.com/player/204963/daniel-carvajal-ramos/20/159586 Europe & Central Asia 20 0.6867167919799498 0.9090909090909091 0.8558558558558559 0.8404558404558405 0.6793650793650794 0.7319347319347319 0.6086956521739133 0.3734335839598999 0.8181818181818183 0.7117117117117118 0.6809116809116809 0.3587301587301588 0.4638694638694636 20.0
98 Juventus ARG 167664.0 G. Higuaín Argentina 0.8043478260869565 https://sofifa.com/player/167664/gonzalo-higuain/20/159586 Latin America & Caribbean 20 0.8972431077694235 0.21343873517786557 0.7364864864864865 0.6837606837606839 0.8158730158730159 0.7389277389277389 0.6086956521739133 0.7944862155388472 -0.5731225296442688 0.4729729729729728 0.36752136752136777 0.6317460317460315 0.47785547785547755 20.0
99 Juventus FRA 170890.0 B. Matuidi France 0.8043478260869565 https://sofifa.com/player/170890/blaise-matuidi/20/159586 Europe & Central Asia 20 0.7994987468671678 0.924901185770751 0.8851351351351351 0.8062678062678063 0.8317460317460317 0.7016317016317016 0.6086956521739133 0.5989974937343359 0.849802371541502 0.77027027027027 0.6125356125356125 0.6634920634920631 0.40326340326340304 20.0
100 Real Madrid GBR 173731.0 G. Bale United Kingdom 0.8043478260869565 https://sofifa.com/player/173731/gareth-bale/20/159586 Europe & Central Asia 20 0.9573934837092731 0.5533596837944664 0.8693693693693694 0.831908831908832 0.9206349206349205 0.888111888111888 0.6086956521739133 0.9147869674185465 0.10671936758893286 0.7387387387387385 0.663817663817664 0.8412698412698407 0.7762237762237758 20.0
101 Real Madrid BRA 176676.0 Marcelo Brazil 0.8043478260869565 https://sofifa.com/player/176676/marcelo-vieira-da-silva/20/159586 Latin America & Caribbean 20 0.869674185463659 0.83399209486166 0.9144144144144144 0.868945868945869 0.8095238095238095 0.8531468531468531 0.6086956521739133 0.7393483709273183 0.6679841897233201 0.8288288288288288 0.7378917378917382 0.6190476190476188 0.706293706293706 20.0
103 Juventus BRA 191043.0 Alex Sandro Brazil 0.8043478260869565 https://sofifa.com/player/191043/alex-sandro-lobo-silva/20/159586 Latin America & Caribbean 20 0.8170426065162907 0.9011857707509882 0.8626126126126126 0.831908831908832 0.8539682539682538 0.7599067599067598 0.6086956521739133 0.6340852130325818 0.8023715415019765 0.7252252252252251 0.663817663817664 0.7079365079365074 0.5198135198135194 20.0
141 Juventus HRV 181783.0 M. Mandžukić Croatia 0.7826086956521738 https://sofifa.com/player/181783/mario-mandzukic/20/159586 Europe & Central Asia 20 0.9273182957393483 0.6403162055335968 0.9256756756756757 0.6524216524216525 0.8444444444444443 0.6806526806526806 0.5652173913043479 0.8546365914786973 0.2806324110671936 0.8513513513513511 0.304843304843305 0.6888888888888884 0.36130536130536095 20.0
150 Juventus BRA 190483.0 Douglas Costa Brazil 0.7826086956521738 https://sofifa.com/player/190483/douglas-costa-de-souza/20/159586 Latin America & Caribbean 20 0.7944862155388471 0.37944664031620556 0.7905405405405406 0.9658119658119658 0.711111111111111 0.8554778554778554 0.5652173913043479 0.5889724310776947 -0.24110671936758887 0.5810810810810809 0.9316239316239319 0.42222222222222183 0.7109557109557105 20.0
173 Juventus FRA 210008.0 A. Rabiot France 0.7608695652173914 https://sofifa.com/player/210008/adrien-rabiot/20/159586 Europe & Central Asia 20 0.8395989974937342 0.8102766798418972 0.9009009009009008 0.7578347578347578 0.838095238095238 0.7808857808857809 0.5217391304347831 0.6791979949874689 0.6205533596837942 0.8018018018018016 0.5156695156695155 0.676190476190476 0.5617715617715615 20.0
178 Real Madrid ESP 220834.0 Marco Asensio Spain 0.7608695652173914 https://sofifa.com/player/220834/marco-asensio-willemsen/20/159586 Europe & Central Asia 20 0.8521303258145363 0.39525691699604737 0.7545045045045045 0.8062678062678063 0.7523809523809524 0.8601398601398601 0.5217391304347831 0.7042606516290728 -0.20948616600790526 0.5090090090090089 0.6125356125356125 0.5047619047619047 0.72027972027972 20.0
190 Juventus ITA 212404.0 F. Bernardeschi Italy 0.7608695652173914 https://sofifa.com/player/212404/federico-bernardeschi/20/159586 Europe & Central Asia 20 0.8145363408521303 0.5889328063241107 0.831081081081081 0.8376068376068376 0.7238095238095237 0.8531468531468531 0.5217391304347831 0.6290726817042611 0.17786561264822143 0.6621621621621618 0.6752136752136753 0.44761904761904714 0.706293706293706 20.0
200 Juventus ITA 1179.0 G. Buffon Italy 0.7608695652173914 https://sofifa.com/player/1179/gianluigi-buffon/20/159586 Europe & Central Asia 20 0.14285714285714285 0.055335968379446626 0.3536036036036036 0.3931623931623932 0.35555555555555557 0.18414918414918413 0.5217391304347831 -0.7142857142857142 -0.8893280632411067 -0.2927927927927928 -0.21367521367521358 -0.28888888888888875 -0.631701631701632 20.0
215 Juventus DEU 179846.0 S. Khedira Germany 0.7608695652173914 https://sofifa.com/player/179846/sami-khedira/20/159586 Europe & Central Asia 20 0.8546365914786967 0.849802371541502 0.9256756756756757 0.5156695156695157 0.7936507936507935 0.7575757575757576 0.5217391304347831 0.7092731829573937 0.6996047430830037 0.8513513513513511 0.031339031339031376 0.587301587301587 0.5151515151515151 20.0
220 Juventus GBR 186561.0 A. Ramsey United Kingdom 0.7608695652173914 https://sofifa.com/player/186561/aaron-ramsey/20/159586 Europe & Central Asia 20 0.8345864661654135 0.7391304347826086 0.9031531531531531 0.7122507122507123 0.7809523809523808 0.7855477855477855 0.5217391304347831 0.6691729323308275 0.4782608695652173 0.8063063063063061 0.4245014245014247 0.5619047619047617 0.5710955710955707 20.0
225 Juventus COL 193082.0 J. Cuadrado Colombia 0.7608695652173914 https://sofifa.com/player/193082/juan-cuadrado/20/159586 Latin America & Caribbean 20 0.7844611528822055 0.7351778656126482 0.8468468468468469 0.9088319088319089 0.7587301587301587 0.8111888111888111 0.5217391304347831 0.5689223057644115 0.4703557312252964 0.6936936936936935 0.8176638176638178 0.5174603174603174 0.6223776223776223 20.0
240 Chelsea HRV 207410.0 M. Kovačić Croatia 0.7391304347826086 https://sofifa.com/player/207410/mateo-kovacic/20/159586 Europe & Central Asia 20 0.7568922305764411 0.7272727272727273 0.8490990990990991 0.8034188034188036 0.7206349206349205 0.8368298368298368 0.4782608695652175 0.5137844611528823 0.4545454545454546 0.698198198198198 0.6068376068376071 0.44126984126984103 0.6736596736596734 20.0
251 Juventus ITA 198009.0 M. Perin Italy 0.7391304347826086 https://sofifa.com/player/198009/mattia-perin/20/159586 Europe & Central Asia 20 0.12030075187969924 0.11857707509881421 0.27702702702702703 0.5042735042735043 0.30476190476190473 0.13519813519813517 0.4782608695652175 -0.7593984962406015 -0.7628458498023716 -0.44594594594594594 0.008547008547008517 -0.39047619047619053 -0.7296037296037298 20.0
252 Juventus ITA 211320.0 D. Rugani Italy 0.7391304347826086 https://sofifa.com/player/211320/daniele-rugani/20/159586 Europe & Central Asia 20 0.5588972431077693 0.9209486166007905 0.6283783783783784 0.5925925925925927 0.6158730158730159 0.5151515151515151 0.4782608695652175 0.1177944862155389 0.841897233201581 0.2567567567567566 0.18518518518518534 0.2317460317460318 0.030303030303030054 20.0
277 Real Madrid ESP 200724.0 Nacho Fernández Spain 0.7391304347826086 https://sofifa.com/player/200724/jose-ignacio-fernandez-iglesias/20/159586 Europe & Central Asia 20 0.6516290726817042 0.8893280632411067 0.6846846846846847 0.680911680911681 0.5999999999999999 0.5664335664335663 0.4782608695652175 0.30325814536340867 0.7786561264822134 0.36936936936936915 0.36182336182336217 0.19999999999999973 0.1328671328671327 20.0
336 Arsenal ESP 222509.0 Dani Ceballos Spain 0.7173913043478262 https://sofifa.com/player/222509/daniel-ceballos-fernandez/20/159586 Europe & Central Asia 20 0.7268170426065163 0.7509881422924901 0.8626126126126126 0.7549857549857549 0.6095238095238094 0.7995337995337994 0.43478260869565233 0.4536340852130327 0.5019762845849802 0.7252252252252251 0.5099715099715096 0.2190476190476187 0.5990675990675989 20.0
338 Juventus DEU 208333.0 E. Can Germany 0.7173913043478262 https://sofifa.com/player/208333/emre-can/20/159586 Europe & Central Asia 20 0.7819548872180451 0.8814229249011858 0.8986486486486487 0.698005698005698 0.8603174603174601 0.7668997668997668 0.43478260869565233 0.5639097744360904 0.7628458498023716 0.7972972972972971 0.396011396011396 0.7206349206349203 0.5337995337995336 20.0
403 Real Madrid ESP 208618.0 Lucas Vázquez Spain 0.7173913043478262 https://sofifa.com/player/208618/lucas-vazquez-iglesias/20/159586 Europe & Central Asia 20 0.769423558897243 0.6047430830039525 0.8130630630630631 0.8575498575498576 0.765079365079365 0.8111888111888111 0.43478260869565233 0.5388471177944862 0.20948616600790482 0.6261261261261262 0.7150997150997151 0.53015873015873 0.6223776223776223 20.0
423 Atlético Madrid ESP 226161.0 Marcos Llorente Spain 0.6956521739130435 https://sofifa.com/player/226161/marcos-llorente-moreno/20/159586 Europe & Central Asia 20 0.6165413533834586 0.8300395256916996 0.8153153153153153 0.6068376068376069 0.6444444444444444 0.6783216783216782 0.39130434782608714 0.23308270676691745 0.6600790513833992 0.6306306306306306 0.2136752136752138 0.28888888888888875 0.35664335664335645 20.0
569 Juventus URY 227535.0 R. Bentancur Uruguay 0.6739130434782608 https://sofifa.com/player/227535/rodrigo-bentancur/20/159586 Latin America & Caribbean 20 0.7293233082706766 0.7470355731225297 0.8265765765765766 0.6723646723646725 0.7047619047619047 0.7948717948717948 0.34782608695652173 0.45864661654135364 0.4940711462450593 0.6531531531531529 0.3447293447293449 0.4095238095238094 0.5897435897435892 20.0
585 Borussia Dortmund MAR 235212.0 A. Hakimi Morocco 0.6739130434782608 https://sofifa.com/player/235212/achraf-hakimi/20/159586 Middle East & North Africa 20 0.7218045112781954 0.7944664031620553 0.7477477477477478 0.8461538461538461 0.7396825396825395 0.7156177156177156 0.34782608695652173 0.44360902255639134 0.5889328063241106 0.49549549549549554 0.6923076923076921 0.479365079365079 0.43123543123543095 20.0
721 Juventus BRA 199304.0 Danilo Brazil 0.6739130434782608 https://sofifa.com/player/199304/danilo-luiz-da-silva/20/159586 Latin America & Caribbean 20 0.8070175438596491 0.8537549407114624 0.8220720720720721 0.680911680911681 0.8063492063492064 0.7692307692307692 0.34782608695652173 0.6140350877192984 0.7075098814229246 0.6441441441441442 0.36182336182336217 0.6126984126984127 0.5384615384615381 20.0
1037 Wolverhampton Wanderers ESP 225161.0 Vallejo Spain 0.6304347826086956 https://sofifa.com/player/225161/jesus-vallejo-lazaro/20/159586 Europe & Central Asia 20 0.5764411027568922 0.83399209486166 0.6261261261261262 0.6923076923076924 0.4761904761904762 0.4965034965034965 0.26086956521739135 0.15288220551378462 0.6679841897233201 0.2522522522522521 0.3846153846153848 -0.04761904761904745 -0.0069930069930072 20.0
1039 Levante UD ESP 228635.0 Borja Mayoral Spain 0.6304347826086956 https://sofifa.com/player/228635/borja-mayoral-moya/20/159586 Europe & Central Asia 20 0.8120300751879699 0.2845849802371542 0.722972972972973 0.6923076923076924 0.7714285714285714 0.6806526806526806 0.26086956521739135 0.6240601503759402 -0.43083003952569165 0.44594594594594605 0.3846153846153848 0.5428571428571427 0.36130536130536095 20.0
1122 Juventus ITA 206058.0 M. De Sciglio Italy 0.6304347826086956 https://sofifa.com/player/206058/mattia-de-sciglio/20/159586 Europe & Central Asia 20 0.6416040100250626 0.8458498023715415 0.7477477477477478 0.7521367521367522 0.6698412698412697 0.6713286713286712 0.26086956521739135 0.28320802005012546 0.6916996047430828 0.49549549549549554 0.5042735042735043 0.33968253968253914 0.34265734265734227 20.0
1324 Milan FRA 232656.0 T. Hernández France 0.6086956521739131 https://sofifa.com/player/232656/theo-hernandez/20/159586 Europe & Central Asia 20 0.7443609022556391 0.766798418972332 0.6576576576576576 0.7749287749287749 0.6825396825396826 0.6620046620046619 0.2173913043478264 0.48872180451127867 0.5335968379446641 0.3153153153153152 0.5498575498575498 0.3650793650793651 0.3240093240093236 20.0
1770 Juventus HRV 229593.0 M. Pjaca Croatia 0.5869565217391304 https://sofifa.com/player/229593/marko-pjaca/20/159586 Europe & Central Asia 20 0.7919799498746867 0.37944664031620556 0.6509009009009009 0.7464387464387464 0.7142857142857142 0.8181818181818181 0.17391304347826075 0.5839598997493738 -0.24110671936758887 0.30180180180180183 0.49287749287749283 0.4285714285714284 0.636363636363636 20.0
1935 Leeds United ESP 177644.0 Kiko Casilla Spain 0.5869565217391304 https://sofifa.com/player/177644/francisco-casilla-cortes/20/159586 Europe & Central Asia 20 0.14786967418546365 0.12252964426877469 0.36036036036036034 0.4301994301994302 0.3873015873015873 0.19580419580419584 0.17391304347826075 -0.7042606516290727 -0.7549407114624507 -0.2792792792792794 -0.13960113960113962 -0.22539682539682537 -0.6083916083916084 20.0
2133 Juventus TUR 238160.0 M. Demiral Turkey 0.5652173913043479 https://sofifa.com/player/238160/merih-demiral/20/159586 Europe & Central Asia 20 0.4736842105263158 0.8181818181818181 0.5945945945945946 0.6068376068376069 0.5809523809523809 0.46386946386946387 0.130434782608696 -0.05263157894736814 0.636363636363636 0.18918918918918926 0.2136752136752138 0.16190476190476177 -0.07226107226107248 20.0
2666 CD Leganés ESP 239335.0 Óscar Spain 0.5434782608695652 https://sofifa.com/player/239335/oscar-rodriguez-arnaiz/20/159586 Europe & Central Asia 20 0.6741854636591479 0.45849802371541504 0.6981981981981982 0.6552706552706553 0.5809523809523809 0.7925407925407925 0.0869565217391306 0.3483709273182962 -0.08300395256916993 0.39639639639639634 0.3105413105413106 0.16190476190476177 0.5850815850815847 20.0
2682 SD Eibar ESP 231856.0 Álvaro Tejero Spain 0.5434782608695652 https://sofifa.com/player/231856/alvaro-tejero-sacristan/20/159586 Europe & Central Asia 20 0.6441102756892231 0.7114624505928854 0.75 0.831908831908832 0.7206349206349205 0.7156177156177156 0.0869565217391306 0.2882205513784464 0.42292490118577075 0.5 0.663817663817664 0.44126984126984103 0.43123543123543095 20.0
3814 Juventus ITA 189342.0 C. Pinsoglio Italy 0.5217391304347825 https://sofifa.com/player/189342/carlo-pinsoglio/20/159586 Europe & Central Asia 20 0.07769423558897243 0.09486166007905139 0.268018018018018 0.3105413105413106 0.26666666666666666 0.1258741258741259 0.043478260869564966 -0.844611528822055 -0.8102766798418972 -0.463963963963964 -0.37891737891737876 -0.4666666666666667 -0.7482517482517483 20.0
4106 Juventus BRA 229337.0 Matheus Pereira Brazil 0.5 https://sofifa.com/player/229337/matheus-pereira-da-silva/20/159586 Latin America & Caribbean 20 0.6766917293233082 0.3241106719367589 0.6373873873873874 0.7293447293447294 0.5206349206349206 0.7342657342657343 2.220446049250313e-16 0.3533834586466167 -0.35177865612648207 0.27477477477477485 0.458689458689459 0.04126984126984112 0.4685314685314683 20.0
5675 Juventus ITA 243237.0 L. Pellegrini Italy 0.4565217391304348 https://sofifa.com/player/243237/luca-pellegrini/20/159586 Europe & Central Asia 20 0.5588972431077693 0.7193675889328063 0.6126126126126126 0.6695156695156695 0.37460317460317455 0.5221445221445221 -0.08695652173913027 0.1177944862155389 0.43873517786561256 0.22522522522522515 0.3390313390313391 -0.2507936507936509 0.04428904428904423 20.0
7160 Juventus ITA 208523.0 S. Beltrame Italy 0.4347826086956521 https://sofifa.com/player/208523/stefano-beltrame/20/159586 Europe & Central Asia 20 0.6616541353383458 0.1818181818181818 0.5292792792792793 0.7065527065527065 0.6730158730158728 0.7202797202797202 -0.13043478260869568 0.3233082706766919 -0.6363636363636365 0.05855855855855863 0.41310541310541304 0.3460317460317457 0.4405594405594402 20.0
7854 Juventus ITA 230768.0 L. Clemenza Italy 0.4130434782608696 https://sofifa.com/player/230768/luca-clemenza/20/159586 Europe & Central Asia 20 0.6441102756892231 0.31225296442687744 0.5292792792792793 0.6011396011396012 0.3809523809523809 0.7529137529137528 -0.17391304347826053 0.2882205513784464 -0.3754940711462451 0.05855855855855863 0.20227920227920237 -0.23809523809523825 0.5058275058275055 20.0
8966 Juventus FRA 251790.0 H. Rafia France 0.3913043478260869 https://sofifa.com/player/251790/hamza-rafia/20/159586 Europe & Central Asia 20 0.5989974937343358 0.22529644268774704 0.6193693693693694 0.6495726495726496 0.5587301587301587 0.7086247086247086 -0.21739130434782605 0.19799498746867172 -0.5494071146245059 0.23873873873873852 0.2991452991452992 0.11746031746031749 0.4172494172494172 20.0
9152 Juventus ITA 211067.0 D. Del Fabro Italy 0.3913043478260869 https://sofifa.com/player/211067/dario-del-fabro/20/159586 Europe & Central Asia 20 0.40350877192982454 0.7075098814229249 0.4932432432432432 0.5213675213675214 0.603174603174603 0.31934731934731936 -0.21739130434782605 -0.1929824561403507 0.41501976284584985 -0.013513513513513598 0.042735042735042805 0.20634920634920606 -0.3613053613053614 20.0
12445 Racing Santander FRA 240311.0 L. Zidane France 0.326086956521739 https://sofifa.com/player/240311/luca-zidane/20/159586 Europe & Central Asia 20 0.05513784461152882 0.06324110671936758 0.16216216216216217 0.27350427350427353 0.22539682539682543 0.048951048951048945 -0.34782608695652184 -0.8897243107769423 -0.8735177865612649 -0.6756756756756757 -0.45299145299145294 -0.5492063492063491 -0.9020979020979021 20.0
5 1.0 Real Madrid 0.8 20 20.0
11 2.0 Juventus 0.8 20 20.0
1 Real Madrid 15
1 Real Madrid 16
0 Real Madrid 17
0 Real Madrid 18
0 Juventus 19
1 Juventus 20
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment