├── Clase II ├── Enums │ ├── defecto.ts │ ├── unionDeTipos.ts │ ├── inicializacion.ts │ ├── inicializacion1.ts │ ├── declaradosComoConstante.ts │ └── inicializacionCompleta.ts ├── Clase II.pdf ├── Clases │ ├── package.json │ └── Perro.ts ├── Guia de Ejercicios Clase II.pdf ├── Tipos de Datos Especiales │ ├── null.ts │ ├── undefined.ts │ ├── any.ts │ └── unknown.ts ├── Funciones │ └── sumaArreglo.ts ├── Interfaces │ ├── primerInterfaz.ts │ ├── interfazAmpliada.ts │ └── agregarMetodos.ts ├── Arreglos │ └── diasDeSemana.ts └── JSON │ └── ejemploInferenciaLimitaciones.ts ├── Clase I ├── Primer Programa │ ├── holaMundo1.ts │ ├── holaMundo3.ts │ ├── holaMundo2.ts │ └── package.json ├── Ciclos │ ├── for.ts │ ├── doWhile.ts │ ├── manual.ts │ ├── while.ts │ └── package.json ├── Clase I.pdf ├── Guia de Ejercicios Clase I.pdf ├── Variables y Tipos │ ├── const.ts │ ├── var.ts │ ├── let.ts │ └── package.json ├── Condicionales │ ├── ifCiclo.ts │ ├── ifElseIf.ts │ ├── ifSimple.ts │ ├── switchCaseSimple.ts │ ├── ifElseIfElse.ts │ ├── switchCaseCiclo.ts │ └── package.json └── Tipos de Comparacion │ ├── relacionales.ts │ ├── igualdadAbstracta.ts │ ├── igualdadEstricta.ts │ ├── negacion.ts │ ├── desigualdad.ts │ └── package.json ├── .gitignore ├── Clase IV ├── Clase IV.pdf ├── Guia de Ejercicios Clase IV.pdf ├── Funcional │ ├── Interfaces │ │ ├── IAlumno.ts │ │ └── IAlumnoModificado.ts │ ├── Ejemplos │ │ ├── reduce │ │ │ └── ejemploReduce.ts │ │ ├── filter │ │ │ └── ejemploFilter.ts │ │ ├── for │ │ │ ├── forEach.ts │ │ │ ├── forOf.ts │ │ │ └── forComun.ts │ │ └── map │ │ │ ├── conMap.ts │ │ │ └── sinMap.ts │ └── Datos │ │ └── alumnos.ts ├── API │ ├── Interfaces │ │ └── IEquipo.ts │ ├── tsconfig.json │ ├── package.json │ ├── index.ts │ ├── Clases │ │ ├── EquiposHandler.ts │ │ ├── Equipo.ts │ │ └── Equipos.ts │ └── Rankings Football June 2022.csv └── Archivos Guia de Ejercicios Clase IV │ ├── Coordenada.ts │ └── Particula.ts ├── sales_data_sample.csv ├── Clase III ├── Clase III.pdf ├── LecturaArchivos │ ├── Danfo │ │ ├── package.json │ │ ├── sales_data_sample.csv │ │ └── testeoLectura.ts │ ├── asyncNoEsperar.ts │ └── asyncEsperar.ts ├── Funciones │ ├── Interfaces │ │ └── IFuncion.ts │ ├── Clases │ │ ├── Composicion.ts │ │ ├── Producto.ts │ │ ├── Suma.ts │ │ ├── Combinacion.ts │ │ ├── Polinomica.ts │ │ └── Trigonometrica.ts │ └── testeo.ts ├── Generics │ ├── Interfaces │ │ ├── INodo.ts │ │ └── ICola.ts │ ├── Funciones │ │ └── primerElemento.ts │ ├── testeoClases.ts │ ├── testeoFunciones.ts │ └── Clases │ │ └── Cola.ts ├── Guia de Ejercicios Clase III.pdf ├── Excepciones │ ├── testeoFalla.ts │ ├── package.json │ ├── testeoNoFalla.ts │ ├── Prompt │ │ └── Clases │ │ │ ├── NumeroEsNegativoError.ts │ │ │ └── ArgumentoNoEsNumeroError.ts │ └── promptTest.ts └── Recursividad │ ├── ejemploSuma.ts │ └── ejemploHanoi.ts ├── Anexo ├── Tabla algunos tipos de dato.pdf ├── Listado de Webgrafía adicional.pdf └── Guía de Instalación de Herramientas.pdf ├── LICENSE └── README.md /Clase II/Enums/defecto.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Clase I/Primer Programa/holaMundo1.ts: -------------------------------------------------------------------------------- 1 | console.log("Hola Mundo!") -------------------------------------------------------------------------------- /Clase II/Enums/unionDeTipos.ts: -------------------------------------------------------------------------------- 1 | type Estados = "Prendido" | "Apagado"; -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .idea 3 | dist 4 | package-lock.json 5 | */node_modules -------------------------------------------------------------------------------- /Clase I/Ciclos/for.ts: -------------------------------------------------------------------------------- 1 | for(let i = 1; i <= 10; i++){ 2 | console.log(i); 3 | } -------------------------------------------------------------------------------- /Clase I/Primer Programa/holaMundo3.ts: -------------------------------------------------------------------------------- 1 | let mensaje: string = "¡Hola Mundo!" 2 | console.log(mensaje) -------------------------------------------------------------------------------- /Clase I/Clase I.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEESBITBA/curso-typescript/HEAD/Clase I/Clase I.pdf -------------------------------------------------------------------------------- /Clase I/Primer Programa/holaMundo2.ts: -------------------------------------------------------------------------------- 1 | let mensaje: string = "¡Hola Mundo!"; 2 | console.log(mensaje); -------------------------------------------------------------------------------- /Clase II/Clase II.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEESBITBA/curso-typescript/HEAD/Clase II/Clase II.pdf -------------------------------------------------------------------------------- /Clase IV/Clase IV.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEESBITBA/curso-typescript/HEAD/Clase IV/Clase IV.pdf -------------------------------------------------------------------------------- /sales_data_sample.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEESBITBA/curso-typescript/HEAD/sales_data_sample.csv -------------------------------------------------------------------------------- /Clase III/Clase III.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEESBITBA/curso-typescript/HEAD/Clase III/Clase III.pdf -------------------------------------------------------------------------------- /Clase II/Clases/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Clases", 3 | "version": "1.0.0", 4 | "dependencies": { 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Clase III/LecturaArchivos/Danfo/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "danfojs-node": "^1.1.2" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /Clase III/Funciones/Interfaces/IFuncion.ts: -------------------------------------------------------------------------------- 1 | export default interface IFuncion { 2 | evaluar: (x: number) => number; 3 | } 4 | -------------------------------------------------------------------------------- /Anexo/Tabla algunos tipos de dato.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEESBITBA/curso-typescript/HEAD/Anexo/Tabla algunos tipos de dato.pdf -------------------------------------------------------------------------------- /Clase III/Generics/Interfaces/INodo.ts: -------------------------------------------------------------------------------- 1 | export default interface INodo { 2 | elemento: T; 3 | siguiente?: INodo; 4 | } 5 | -------------------------------------------------------------------------------- /Anexo/Listado de Webgrafía adicional.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEESBITBA/curso-typescript/HEAD/Anexo/Listado de Webgrafía adicional.pdf -------------------------------------------------------------------------------- /Clase I/Guia de Ejercicios Clase I.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEESBITBA/curso-typescript/HEAD/Clase I/Guia de Ejercicios Clase I.pdf -------------------------------------------------------------------------------- /Clase I/Variables y Tipos/const.ts: -------------------------------------------------------------------------------- 1 | const mensaje: string = "¡Hola mundo!"; 2 | mensaje = "pepito"; // ¡Las constantes no se pueden modificar! -------------------------------------------------------------------------------- /Clase II/Guia de Ejercicios Clase II.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEESBITBA/curso-typescript/HEAD/Clase II/Guia de Ejercicios Clase II.pdf -------------------------------------------------------------------------------- /Clase IV/Guia de Ejercicios Clase IV.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEESBITBA/curso-typescript/HEAD/Clase IV/Guia de Ejercicios Clase IV.pdf -------------------------------------------------------------------------------- /Clase I/Condicionales/ifCiclo.ts: -------------------------------------------------------------------------------- 1 | for (let i = 1; i <= 10; i++) { 2 | if (i % 2 === 0) { 3 | console.log(i); 4 | } 5 | } 6 | 7 | -------------------------------------------------------------------------------- /Clase III/Guia de Ejercicios Clase III.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEESBITBA/curso-typescript/HEAD/Clase III/Guia de Ejercicios Clase III.pdf -------------------------------------------------------------------------------- /Anexo/Guía de Instalación de Herramientas.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEESBITBA/curso-typescript/HEAD/Anexo/Guía de Instalación de Herramientas.pdf -------------------------------------------------------------------------------- /Clase III/Excepciones/testeoFalla.ts: -------------------------------------------------------------------------------- 1 | let numeros: number[] = []; 2 | numeros[5].toFixed(); 3 | console.log("El programa terminó de ejecutarse."); 4 | -------------------------------------------------------------------------------- /Clase IV/Funcional/Interfaces/IAlumno.ts: -------------------------------------------------------------------------------- 1 | export default interface IAlumno { 2 | id: number; 3 | nombre: string; 4 | notaCursada: number; 5 | } 6 | -------------------------------------------------------------------------------- /Clase II/Enums/inicializacion.ts: -------------------------------------------------------------------------------- 1 | enum Numeros { 2 | Diez = 10, 3 | Once, // 11 4 | Doce, // 12 5 | Trece, // 13 6 | Catorce // 14 7 | } -------------------------------------------------------------------------------- /Clase II/Enums/inicializacion1.ts: -------------------------------------------------------------------------------- 1 | enum Frutas { 2 | Manzana, // 0 3 | Naranja, // 1 4 | Banano, // 2 5 | Mango, // 3 6 | Uva // 4 7 | } -------------------------------------------------------------------------------- /Clase I/Tipos de Comparacion/relacionales.ts: -------------------------------------------------------------------------------- 1 | console.log(1<2, 1<=2, 1>2, 1>=2) // true true false false 2 | console.log(1<1, 1<=1, 1>1, 1>=1) // false true false true -------------------------------------------------------------------------------- /Clase III/LecturaArchivos/Danfo/sales_data_sample.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEESBITBA/curso-typescript/HEAD/Clase III/LecturaArchivos/Danfo/sales_data_sample.csv -------------------------------------------------------------------------------- /Clase IV/Funcional/Interfaces/IAlumnoModificado.ts: -------------------------------------------------------------------------------- 1 | import IAlumno from "./IAlumno"; 2 | 3 | export default interface IAlumnoModificado extends IAlumno { 4 | aprobado: boolean; 5 | } 6 | -------------------------------------------------------------------------------- /Clase I/Condicionales/ifElseIf.ts: -------------------------------------------------------------------------------- 1 | for(let i = 1; i <= 10; i++){ 2 | if(i <= 6){ 3 | console.log('El número no es mayor que 6'); 4 | }else if(i % 2 === 0){ 5 | console.log(i); 6 | } 7 | } -------------------------------------------------------------------------------- /Clase III/Excepciones/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "devDependencies": { 3 | "@types/node": "^18.15.13", 4 | "@types/prompt": "^1.1.5", 5 | "prompt": "^1.3.0", 6 | "prompt-sync": "^4.2.0" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /Clase II/Tipos de Datos Especiales/null.ts: -------------------------------------------------------------------------------- 1 | let queNumeroEsEste?: number = undefined; // Esto devuelve error y no tendria sentido 2 | 3 | let queNumeroEsEste1: number | null = null; // Esto es normal y tiene sentido -------------------------------------------------------------------------------- /Clase I/Condicionales/ifSimple.ts: -------------------------------------------------------------------------------- 1 | const numero1 = 5; 2 | if(numero1 % 2 === 0) { 3 | console.log(numero1); 4 | } 5 | 6 | const numero2 = 7; 7 | if(numero2 % 2 === 1) { 8 | console.log(numero2); 9 | } 10 | -------------------------------------------------------------------------------- /Clase I/Ciclos/doWhile.ts: -------------------------------------------------------------------------------- 1 | let i = 1; 2 | // primera version 3 | do{ 4 | console.log(i); 5 | }while(i++ <= 10); 6 | i = 1; 7 | // segunda version 8 | do{ 9 | console.log(i); 10 | i++; 11 | }while(i <= 10); -------------------------------------------------------------------------------- /Clase I/Ciclos/manual.ts: -------------------------------------------------------------------------------- 1 | console.log(1); 2 | console.log(2); 3 | console.log(3); 4 | console.log(4); 5 | console.log(5); 6 | console.log(6); 7 | console.log(7); 8 | console.log(8); 9 | console.log(9); 10 | console.log(10); -------------------------------------------------------------------------------- /Clase I/Tipos de Comparacion/igualdadAbstracta.ts: -------------------------------------------------------------------------------- 1 | let a = 1, b = '01'; 2 | 3 | console.log(a == b) // true 4 | console.log(undefined == null) // true 5 | console.log(NaN == NaN) // false 6 | console.log(Infinity == Infinity) // true -------------------------------------------------------------------------------- /Clase III/Generics/Funciones/primerElemento.ts: -------------------------------------------------------------------------------- 1 | export default function primerElemento(arr: T[]): T { 2 | if (arr.length === 0) { 3 | throw new Error("La lista está vacía"); 4 | } 5 | return arr[0]; 6 | } 7 | -------------------------------------------------------------------------------- /Clase I/Tipos de Comparacion/igualdadEstricta.ts: -------------------------------------------------------------------------------- 1 | let a = 1, b = '01'; 2 | 3 | console.log(a === b) // false 4 | console.log(undefined === null) // false 5 | console.log(NaN === NaN) // false 6 | console.log(Infinity === Infinity) // true -------------------------------------------------------------------------------- /Clase II/Enums/declaradosComoConstante.ts: -------------------------------------------------------------------------------- 1 | const enum Color { 2 | Rojo = "ROJO", // "ROJO" 3 | Verde = "VERDE", // "VERDE" 4 | Azul = "AZUL" // "AZUL" 5 | } 6 | // Serán esos valores y no se podrán cambiar durante su ejecución 7 | -------------------------------------------------------------------------------- /Clase III/Generics/Interfaces/ICola.ts: -------------------------------------------------------------------------------- 1 | import INodo from "./INodo"; 2 | 3 | export default interface ICola { 4 | primerElemento?: INodo; 5 | adicionarElemento: (elemento: T) => ICola; 6 | imprimirCola: () => void; 7 | } 8 | -------------------------------------------------------------------------------- /Clase I/Ciclos/while.ts: -------------------------------------------------------------------------------- 1 | let i = 1; 2 | // primera version 3 | while(i <= 10){ 4 | console.log(i); 5 | } 6 | i = 1; 7 | // segunda version 8 | while(i <= 10){ 9 | console.log(i); 10 | i = i + 1; 11 | // o i += 1; 12 | // o i++; 13 | } -------------------------------------------------------------------------------- /Clase II/Tipos de Datos Especiales/undefined.ts: -------------------------------------------------------------------------------- 1 | let queNumeroEsEste: number; 2 | console.log(queNumeroEsEste); // Error 3 | 4 | let queNumeroEsEste1: number | undefined; // let queNumeroEsEste?: number es su equivalente 5 | console.log(queNumeroEsEste1); // undefined -------------------------------------------------------------------------------- /Clase III/Funciones/Clases/Composicion.ts: -------------------------------------------------------------------------------- 1 | import Combinacion from "./Combinacion"; 2 | 3 | export default class Composicion extends Combinacion { 4 | evaluar(x: number): number { 5 | return this.f.evaluar(this.g.evaluar(x)); // f(g(x)) 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /Clase III/Funciones/Clases/Producto.ts: -------------------------------------------------------------------------------- 1 | import Combinacion from "./Combinacion"; 2 | 3 | export default class Producto extends Combinacion { 4 | evaluar(x: number): number { 5 | return this.f.evaluar(x)*this.g.evaluar(x); // f(x)*g(x) 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /Clase III/Funciones/Clases/Suma.ts: -------------------------------------------------------------------------------- 1 | import Combinacion from "./Combinacion"; 2 | 3 | export default class Suma extends Combinacion { 4 | evaluar(x: number): number { 5 | return this.f.evaluar(x) + this.g.evaluar(x); // f(x) + g(x) 6 | } 7 | 8 | } 9 | -------------------------------------------------------------------------------- /Clase III/Recursividad/ejemploSuma.ts: -------------------------------------------------------------------------------- 1 | function sumaPrimerosN(n: number): number { 2 | if (n === 0) { 3 | return 0; 4 | } else { 5 | return n + sumaPrimerosN(n - 1); 6 | } 7 | } 8 | 9 | console.log(sumaPrimerosN(5)); // 15 10 | -------------------------------------------------------------------------------- /Clase IV/Funcional/Ejemplos/reduce/ejemploReduce.ts: -------------------------------------------------------------------------------- 1 | import alumnos from "../../Datos/alumnos"; 2 | 3 | const notas: number[] = alumnos.map((alumno) => alumno.notaCursada); 4 | const promedio: number = notas.reduce((promedio, nota) => promedio + nota / notas.length, 0); 5 | 6 | console.log(promedio); 7 | -------------------------------------------------------------------------------- /Clase IV/API/Interfaces/IEquipo.ts: -------------------------------------------------------------------------------- 1 | export default interface IEquipo { 2 | club: string; 3 | ranking: number; 4 | pais: string; 5 | puntajeActual: number 6 | puntajeAnterior: number; 7 | cambioPuntaje: number; 8 | cambioPuntajeSigno: string; 9 | toJson: () => Partial; 10 | } 11 | -------------------------------------------------------------------------------- /Clase III/Excepciones/testeoNoFalla.ts: -------------------------------------------------------------------------------- 1 | let numeros: number[] = []; 2 | 3 | try{ 4 | numeros[5].toFixed(); 5 | } catch( e: any ) { // Solo puede ser del tipo any o unknown. Si no se conoce a qué clase pertenece el error, dejar en any 6 | console.log("Se produjo un error: " + e.message); 7 | } 8 | 9 | console.log("El programa terminó de ejecutarse."); 10 | -------------------------------------------------------------------------------- /Clase IV/Funcional/Ejemplos/filter/ejemploFilter.ts: -------------------------------------------------------------------------------- 1 | import IAlumnoModificado from "../../Interfaces/IAlumnoModificado"; 2 | import alumnosModificados from "../map/conMap"; 3 | 4 | let alumnosModificadosAprobados: readonly IAlumnoModificado[] = alumnosModificados.filter( (alumno: IAlumnoModificado) => alumno.aprobado); 5 | 6 | console.log(alumnosModificadosAprobados); 7 | -------------------------------------------------------------------------------- /Clase IV/Funcional/Ejemplos/for/forEach.ts: -------------------------------------------------------------------------------- 1 | import IAlumno from "../../Interfaces/IAlumno"; 2 | import alumnos from "../../Datos/alumnos"; 3 | 4 | let alumnosAprobados: IAlumno[] = []; 5 | 6 | alumnos.forEach(alumno => { 7 | if (alumno.notaCursada >= 6) { 8 | alumnosAprobados.push(alumno); 9 | } 10 | }); 11 | 12 | console.log(alumnosAprobados); 13 | -------------------------------------------------------------------------------- /Clase IV/Funcional/Ejemplos/for/forOf.ts: -------------------------------------------------------------------------------- 1 | import IAlumno from "../../Interfaces/IAlumno"; 2 | import alumnos from "../../Datos/alumnos"; 3 | 4 | let alumnosAprobados: IAlumno[] = []; 5 | 6 | for (const alumno of alumnos) { 7 | if (alumno.notaCursada >= 6) { 8 | alumnosAprobados.push(alumno); 9 | } 10 | } 11 | 12 | console.log(alumnosAprobados); 13 | -------------------------------------------------------------------------------- /Clase II/Enums/inicializacionCompleta.ts: -------------------------------------------------------------------------------- 1 | enum Color { 2 | Rojo = "ROJO", // "ROJO" 3 | Verde = "VERDE", // "VERDE" 4 | Azul = "AZUL" // "AZUL" 5 | } 6 | 7 | console.log(Color.Rojo) // "ROJO" 8 | 9 | const miColorFavorito = Color.Rojo; 10 | console.log(Color.Rojo === miColorFavorito ); // true siempre y cuando no se modifique la constante miColorFavorito -------------------------------------------------------------------------------- /Clase I/Variables y Tipos/var.ts: -------------------------------------------------------------------------------- 1 | var mensaje: string = "¡Hola Mundo!"; // Declaro por primera vez la 2 | // variable mensaje 3 | 4 | var mensaje: string = "Otro String"; // Redeclaro mensaje. No hay error. 5 | 6 | mensaje = "pepito"; // Si modificamos el contenido de una variable con 7 | // el mismo tipo de datos, nunca hay error. -------------------------------------------------------------------------------- /Clase IV/Funcional/Ejemplos/for/forComun.ts: -------------------------------------------------------------------------------- 1 | import IAlumno from "../../Interfaces/IAlumno"; 2 | import alumnos from "../../Datos/alumnos"; 3 | 4 | let alumnosAprobados: IAlumno[] = []; 5 | for( let i: number = 0; i < alumnos.length; i++ ) { 6 | if (alumnos[i].notaCursada >= 6) { 7 | alumnosAprobados.push(alumnos[i]); 8 | } 9 | } 10 | 11 | console.log(alumnosAprobados); 12 | -------------------------------------------------------------------------------- /Clase III/Funciones/Clases/Combinacion.ts: -------------------------------------------------------------------------------- 1 | import IFuncion from "../Interfaces/IFuncion"; 2 | 3 | export default abstract class Combinacion implements IFuncion { 4 | protected f: IFuncion; 5 | protected g: IFuncion; 6 | 7 | constructor(f: IFuncion, g: IFuncion) { 8 | this.f = f; 9 | this.g = g; 10 | } 11 | 12 | abstract evaluar(x: number): number; 13 | } 14 | -------------------------------------------------------------------------------- /Clase II/Funciones/sumaArreglo.ts: -------------------------------------------------------------------------------- 1 | function sumaArreglo(arregloNumeros: number[]): number{ 2 | let suma = 0; 3 | for(let i = 0; i < arregloNumeros.length; i++){ 4 | suma += arregloNumeros[i] 5 | } 6 | return suma; 7 | } 8 | 9 | function main(): void{ 10 | let numeros= [1, 5, 1, 5, 1, 5, 1, 5, 1, 5]; 11 | console.log(sumaArreglo(numeros)); // 30 12 | } 13 | 14 | main(); -------------------------------------------------------------------------------- /Clase I/Tipos de Comparacion/negacion.ts: -------------------------------------------------------------------------------- 1 | console.log(0, !0, !!0); // 0, true, false 2 | console.log(1, !1, !!1); // 1, false, true 3 | console.log(null, !null, !!null); // null, true, false 4 | console.log(undefined, !undefined !!undefined); // undefined, true, false 5 | console.log("", !"", !!""); // "", true, false ("" es la representación del string vacío) 6 | console.log("hola", !"hola", !!"hola") // hola, false, true -------------------------------------------------------------------------------- /Clase II/Interfaces/primerInterfaz.ts: -------------------------------------------------------------------------------- 1 | interface IPerro { // Estamos definiendo al tipo de objeto Perro 2 | nombre: string; 3 | raza: string; 4 | edad: number; 5 | peso: number; 6 | color: string; 7 | comidasFavoritas: string[]; 8 | gustaJugar: boolean; 9 | vacunas?: { 10 | rabia: boolean; 11 | moquilloCanino: boolean; 12 | parvo: boolean; 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /Clase III/Excepciones/Prompt/Clases/NumeroEsNegativoError.ts: -------------------------------------------------------------------------------- 1 | export default class NumeroEsNegativoError extends Error { 2 | constructor( ) { 3 | super('El argumento ingresado debe ser un número positivo'); 4 | Object.setPrototypeOf(this, NumeroEsNegativoError.prototype); // Le indicamos a la instancia que es del tipo error 5 | // Esto pasa debido a cómo Typescript maneja el constructor 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /Clase IV/API/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "module": "commonjs", 4 | "esModuleInterop": true, 5 | "target": "es2022", 6 | "moduleResolution": "node", 7 | "sourceMap": true, 8 | "outDir": "dist", 9 | "baseUrl": ".", 10 | "paths": { 11 | "*": [ 12 | "node_modules/*" 13 | ] 14 | } 15 | }, 16 | "include": [ 17 | "src/**/*" 18 | ] 19 | } 20 | -------------------------------------------------------------------------------- /Clase I/Variables y Tipos/let.ts: -------------------------------------------------------------------------------- 1 | let mensaje: string = "¡Hola Mundo!"; // Declaro por primera vez la 2 | // variable mensaje 3 | 4 | let mensaje: string = "Otro String"; // Redeclaro mensaje. Ocurre un 5 | // error. 6 | 7 | mensaje = "pepito"; // Si modificamos el contenido de una variable con 8 | // el mismo tipo de datos, nunca hay error. -------------------------------------------------------------------------------- /Clase III/Excepciones/Prompt/Clases/ArgumentoNoEsNumeroError.ts: -------------------------------------------------------------------------------- 1 | export default class ArgumentoNoEsNumeroError extends Error { 2 | constructor( ) { 3 | super('El argumento ingresado debe ser un número'); 4 | Object.setPrototypeOf(this, ArgumentoNoEsNumeroError.prototype); // Le indicamos a la instancia que es del tipo error 5 | // Esto pasa debido a cómo Typescript maneja el constructor 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /Clase I/Tipos de Comparacion/desigualdad.ts: -------------------------------------------------------------------------------- 1 | let a = 1, b = '01'; 2 | // Desigualdad estricta 3 | console.log(a !== b) // true 4 | console.log(undefined !== null) // true 5 | console.log(NaN !== NaN) // true 6 | console.log(Infinity !== Infinity) // false 7 | // Desigualdad abstracta 8 | console.log(a == b) // false 9 | console.log(undefined == null) // false 10 | console.log(NaN == NaN) // true 11 | console.log(Infinity == Infinity) // false -------------------------------------------------------------------------------- /Clase II/Arreglos/diasDeSemana.ts: -------------------------------------------------------------------------------- 1 | let diasDeSemana = ['Lunes', 'Martes', 'Miércoles', 'Jueves', 'Viernes', 'Sábado', 'Domingo']; 2 | // Primera forma 3 | for(let i = 0; i < diasDeSemana.length; i++){ 4 | console.log(diasDeSemana[i]); 5 | } 6 | // Segunda forma 7 | for(let diaDeSemana of diasDeSemana){ 8 | console.log(diaDeSemana); 9 | } 10 | // Tercera forma 11 | for(let i in diasDeSemana){ 12 | console.log(diasDeSemana[i]); 13 | } -------------------------------------------------------------------------------- /Clase II/Tipos de Datos Especiales/any.ts: -------------------------------------------------------------------------------- 1 | let value: any; 2 | 3 | value = true; //Ok 4 | value = 35; // Ok 5 | value = "Heisenberg"; // Ok 6 | value = []; // Ok 7 | value = {}; // Ok 8 | value = Math.random; // Ok 9 | value = null; // Ok 10 | value = undefined; // Ok 11 | value = new TypeError() // Ok 12 | value = Symbol("type") // Ok 13 | 14 | value.foo.bar // Ok 15 | value.trim() // Ok 16 | value() // Ok 17 | new value() // Ok 18 | value[0][1] // Ok -------------------------------------------------------------------------------- /Clase II/JSON/ejemploInferenciaLimitaciones.ts: -------------------------------------------------------------------------------- 1 | let perro = { 2 | "nombre": "Rufo", 3 | "raza": "Golden Retriever", 4 | "edad": 5, 5 | "peso": 20, 6 | "color": "Dorado", 7 | "comidas_favoritas": ["Solomillo", "Atún"], 8 | "gusta_jugar": true, 9 | "vacunas": { 10 | "rabia": true, 11 | "moquillo_canino": true, 12 | "parvo": true 13 | } 14 | } 15 | 16 | perro.edad = 27; // Ok 17 | perro.hora = 5; // Error -------------------------------------------------------------------------------- /Clase IV/Funcional/Ejemplos/map/conMap.ts: -------------------------------------------------------------------------------- 1 | import IAlumnoModificado from "../../Interfaces/IAlumnoModificado"; 2 | import alumnos from "../../Datos/alumnos"; 3 | import IAlumno from "../../Interfaces/IAlumno"; 4 | 5 | const alumnosModificados: readonly IAlumnoModificado[] = alumnos.map((alumno: IAlumno) => 6 | ({...alumno, ...{aprobado: alumno.notaCursada >= 6}}) 7 | ); 8 | 9 | console.log(alumnosModificados); 10 | 11 | export default alumnosModificados; 12 | -------------------------------------------------------------------------------- /Clase III/LecturaArchivos/asyncNoEsperar.ts: -------------------------------------------------------------------------------- 1 | function esperar(ms: number): Promise { 2 | // @ts-ignore 3 | return new Promise(resolve => setTimeout(resolve, ms)); 4 | } 5 | 6 | // @ts-ignore 7 | async function ejemploAsincronico(): Promise { 8 | console.log("Inicio de la función"); 9 | 10 | // Esperamos 1 segundo antes de continuar con la ejecución 11 | esperar(10000); 12 | 13 | console.log("Fin de la función"); 14 | } 15 | 16 | ejemploAsincronico(); 17 | -------------------------------------------------------------------------------- /Clase III/LecturaArchivos/asyncEsperar.ts: -------------------------------------------------------------------------------- 1 | function esperar(ms: number): Promise { 2 | // @ts-ignore 3 | return new Promise(resolve => setTimeout(resolve, ms)); 4 | } 5 | 6 | // @ts-ignore 7 | async function ejemploAsincronico(): Promise { 8 | console.log("Inicio de la función"); 9 | 10 | // Esperamos 1 segundo antes de continuar con la ejecución 11 | await esperar(10000); 12 | 13 | console.log("Fin de la función"); 14 | } 15 | 16 | ejemploAsincronico(); 17 | -------------------------------------------------------------------------------- /Clase III/Funciones/Clases/Polinomica.ts: -------------------------------------------------------------------------------- 1 | import IFuncion from "../Interfaces/IFuncion"; 2 | 3 | export default class Polinomica implements IFuncion { 4 | private pol: number[]; // pol[n-1]*x^n + … + pol[1]*x + pol[0] 5 | 6 | constructor( pol: number []) { 7 | this.pol = pol; 8 | } 9 | 10 | evaluar(x: number): number { 11 | let res = 0; 12 | for( let i = 0; i < this.pol.length; i++ ) { 13 | res += Math.pow(x, i) * this.pol[i]; 14 | } 15 | return res; 16 | } 17 | 18 | } 19 | -------------------------------------------------------------------------------- /Clase III/Recursividad/ejemploHanoi.ts: -------------------------------------------------------------------------------- 1 | function torresDeHanoi( 2 | n: number, 3 | desde: string, 4 | hacia: string, 5 | auxiliar: string 6 | ) { 7 | if (n === 1) { 8 | console.log(`Mover disco 1 desde ${desde} hacia ${hacia}`); 9 | } else { 10 | torresDeHanoi(n - 1, desde, auxiliar, hacia); 11 | console.log(`Mover disco ${n} desde ${desde} hacia ${hacia}`); 12 | torresDeHanoi(n - 1, auxiliar, hacia, desde); 13 | } 14 | } 15 | 16 | // Ejemplo de uso: 17 | torresDeHanoi(3, "A", "B", "C"); 18 | -------------------------------------------------------------------------------- /Clase IV/API/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "futbol", 3 | "version": "1.0.0", 4 | "description": "", 5 | "main": "index.ts", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1", 8 | "start": "ts-node index.ts" 9 | }, 10 | "author": "IEEE ITBA SB", 11 | "license": "ISC", 12 | "devDependencies": { 13 | "@types/express": "^4.17.15" 14 | }, 15 | "dependencies": { 16 | "danfojs-node": "^1.1.2", 17 | "express": "^4.18.2", 18 | "http-status-codes": "^2.2.0", 19 | "nodemon": "^2.0.20" 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Clase IV/Funcional/Ejemplos/map/sinMap.ts: -------------------------------------------------------------------------------- 1 | import IAlumno from "../../Interfaces/IAlumno"; 2 | import alumnos from "../../Datos/alumnos"; 3 | import IAlumnoModificado from "../../Interfaces/IAlumnoModificado"; 4 | 5 | let alumnosModificadosDificil: IAlumnoModificado[] = []; 6 | for( let alumno of alumnos ) { 7 | alumnosModificadosDificil.push({ ...alumno, ...{aprobado: alumno.notaCursada > 6}}); 8 | } 9 | let alumnosModificadosDificilSoloLectura: readonly IAlumnoModificado[] = alumnosModificadosDificil; 10 | 11 | 12 | console.log(alumnosModificadosDificilSoloLectura); 13 | -------------------------------------------------------------------------------- /Clase II/Interfaces/interfazAmpliada.ts: -------------------------------------------------------------------------------- 1 | interface HistorialClinico { 2 | operaciones: string[]; 3 | enfermedades: string[]; 4 | } 5 | 6 | interface Vacunas{ 7 | rabia: boolean; 8 | moquilloCanino: boolean; 9 | parvo: boolean; 10 | } 11 | 12 | interface IPerro { 13 | readonly nombre: string; 14 | raza: string; 15 | edad: number; 16 | peso: number; 17 | color: string; 18 | comidasFavoritas: string[]; 19 | gustaJugar: boolean; 20 | vacunas?: Vacunas; 21 | historialClinico?: HistorialClinico; 22 | madre?: IPerro; 23 | padre?: IPerro; 24 | } -------------------------------------------------------------------------------- /Clase III/Generics/testeoClases.ts: -------------------------------------------------------------------------------- 1 | import Cola from "./Clases/Cola"; 2 | 3 | const testCola = () => { 4 | const colaDeNumeros = new Cola(); 5 | colaDeNumeros.adicionarElemento(1).adicionarElemento(2) 6 | .adicionarElemento(27).adicionarElemento(40); 7 | colaDeNumeros.imprimirCola(); // 1 2 27 40 8 | 9 | const colaDeStrings = new Cola(); 10 | colaDeStrings.adicionarElemento('hola'). 11 | adicionarElemento('este es un testeo') 12 | .adicionarElemento('string'); 13 | colaDeStrings.imprimirCola(); 14 | } 15 | 16 | testCola(); 17 | -------------------------------------------------------------------------------- /Clase I/Condicionales/switchCaseSimple.ts: -------------------------------------------------------------------------------- 1 | const diaDeSemana: number = 3; 2 | switch(diaDeSemana){ 3 | case 1: 4 | console.log("Hoy es Lunes."); 5 | break; 6 | case 2: 7 | console.log("Hoy es Martes."); 8 | break; 9 | case 3: 10 | console.log("Hoy es Miércoles."); 11 | break; 12 | case 4: 13 | console.log("Hoy es Jueves."); 14 | break; 15 | case 5: 16 | console.log("Hoy es Viernes."); 17 | break; 18 | case 6: 19 | console.log("Hoy es Sábado."); 20 | break; 21 | case 7: 22 | console.log("Hoy es Domingo."); 23 | break; 24 | } 25 | -------------------------------------------------------------------------------- /Clase I/Condicionales/ifElseIfElse.ts: -------------------------------------------------------------------------------- 1 | for(let diaDeSemana = 1; diaDeSemana <= 7; diaDeSemana++) { 2 | if(diaDeSemana === 1) { 3 | console.log("Hoy es Lunes"); 4 | } else if(diaDeSemana === 2) { 5 | console.log("Hoy es Martes"); 6 | } else if(diaDeSemana === 3) { 7 | console.log("Hoy es Miércoles"); 8 | } else if(diaDeSemana === 4) { 9 | console.log("Hoy es Jueves"); 10 | } else if(diaDeSemana === 5) { 11 | console.log("Hoy es Viernes"); 12 | } else if(diaDeSemana === 6) { 13 | console.log("Hoy es Sábado"); 14 | } else { // diaDeSemana === 7 15 | console.log("Hoy es Domingo"); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /Clase IV/Funcional/Datos/alumnos.ts: -------------------------------------------------------------------------------- 1 | import IAlumno from "../Interfaces/IAlumno"; 2 | 3 | const juan: IAlumno = {id: 1, nombre: 'Juan', notaCursada: 7}, 4 | pedro: IAlumno = {id: 2, nombre: 'Pedro', notaCursada: 5}, 5 | ariel: IAlumno = {id: 3, nombre: 'Ariel', notaCursada: 6}, 6 | micaela: IAlumno = {id: 4, nombre: 'Micaela', notaCursada: 8}, 7 | martina: IAlumno = {id: 5, nombre: 'Martina', notaCursada: 3}, 8 | camila: IAlumno = {id: 6, nombre: 'Camila', notaCursada: 9}, 9 | diana: IAlumno = {id: 7, nombre: 'Diana', notaCursada: 7}; 10 | 11 | 12 | 13 | const alumnos: readonly IAlumno[] = [juan, pedro, ariel, micaela, martina, camila, diana]; 14 | 15 | export default alumnos; 16 | -------------------------------------------------------------------------------- /Clase III/Generics/testeoFunciones.ts: -------------------------------------------------------------------------------- 1 | import primerElemento from "./Funciones/primerElemento"; 2 | 3 | const numeros = [1, 2, 3, 4]; 4 | const primerNumero = primerElemento(numeros ); 5 | console.log(primerNumero) // devuelve 1 6 | 7 | const cadenas = ["hola", "mundo"]; 8 | const primerCadena = primerElemento(cadenas ); 9 | console.log(primerCadena) // devuelve "hola" 10 | 11 | interface Persona { 12 | nombre: string; 13 | edad: number; 14 | } 15 | 16 | const personas: Persona[] = [ 17 | { nombre: "Juan", edad: 25 }, 18 | { nombre: "María", edad: 30 }, 19 | ]; 20 | 21 | 22 | const primerPersona = primerElemento(personas); 23 | console.log(primerPersona) // devuelve { nombre: "Juan", edad: 25 } 24 | -------------------------------------------------------------------------------- /Clase I/Condicionales/switchCaseCiclo.ts: -------------------------------------------------------------------------------- 1 | for(let diaDeSemana = 1; diaDeSemana <= 7; diaDeSemana++){ 2 | switch(diaDeSemana){ 3 | case 1: 4 | console.log("Hoy es Lunes."); 5 | break; 6 | case 2: 7 | console.log("Hoy es Martes."); 8 | break; 9 | case 3: 10 | console.log("Hoy es Miércoles."); 11 | break; 12 | case 4: 13 | console.log("Hoy es Jueves."); 14 | break; 15 | case 5: 16 | console.log("Hoy es Viernes."); 17 | break; 18 | case 6: 19 | console.log("Hoy es Sábado."); 20 | break; 21 | case 7: 22 | console.log("Hoy es Domingo."); 23 | break; 24 | } 25 | } -------------------------------------------------------------------------------- /Clase III/Funciones/Clases/Trigonometrica.ts: -------------------------------------------------------------------------------- 1 | import IFuncion from "../Interfaces/IFuncion"; 2 | 3 | export enum FuncionesTrigonometricas { 4 | Sin, Cos, Tan 5 | } 6 | 7 | export default class Trigonometrica implements IFuncion { 8 | private funcionTrigonometrica: FuncionesTrigonometricas ; 9 | 10 | constructor( funcionTrigonometrica: FuncionesTrigonometricas ) { 11 | this.funcionTrigonometrica = funcionTrigonometrica; 12 | } 13 | 14 | evaluar(x: number): number { 15 | switch(this.funcionTrigonometrica) { 16 | case FuncionesTrigonometricas.Sin: return Math.sin(x); 17 | case FuncionesTrigonometricas.Cos: return Math.cos(x); 18 | case FuncionesTrigonometricas.Tan: return Math.tan(x); 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Clase I/Ciclos/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ciclos", 3 | "description": "En este paquete se ve el funcionamiento de las distintas formas de ciclar en TypeScript", 4 | "version": "1.0.0", 5 | "scripts": { 6 | "ejecutarfor": "ts-node for.ts", 7 | "ejecutarmanual": "ts-node manual.ts", 8 | "ejecutarwhile": "ts-node while.ts", 9 | "ejecutardoWhile": "ts-node doWhile.ts", 10 | "test": "echo \"Error: no test specified\" && exit 1" 11 | }, 12 | "repository": { 13 | "type": "git", 14 | "url": "https://github.com/IEEESBITBA/curso-typescript.git" 15 | }, 16 | "author": "IEEESITBA", 17 | "homepage": "https://github.com/IEEESBITBA/curso-typescript", 18 | "dependencies": { 19 | "ts-node": "^10.9.2", 20 | "typescript": "^5.3.3" 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /Clase I/Variables y Tipos/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "variables-y-tipos", 3 | "description": "En este paquete se ven las distintas formas de declarar variables y se introducen tipos. Ejercicio: modificar los archivos, para que no arrojen error.", 4 | "version": "1.0.0", 5 | "scripts": { 6 | "ejecutarconst": "ts-node const.ts", 7 | "ejecutarlet": "ts-node let.ts", 8 | "ejecutarvar": "ts-node var.ts", 9 | "test": "echo \"Error: no test specified\" && exit 1" 10 | }, 11 | "repository": { 12 | "type": "git", 13 | "url": "https://github.com/IEEESBITBA/curso-typescript.git" 14 | }, 15 | "author": "IEEESITBA", 16 | "homepage": "https://github.com/IEEESBITBA/curso-typescript", 17 | "dependencies": { 18 | "ts-node": "^10.9.2", 19 | "typescript": "^5.3.3" 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Clase II/Interfaces/agregarMetodos.ts: -------------------------------------------------------------------------------- 1 | interface HistorialClinico { 2 | operaciones: string[]; 3 | enfermedades: string[]; 4 | } 5 | 6 | interface Vacunas{ 7 | rabia: boolean; 8 | moquilloCanino: boolean; 9 | parvo: boolean; 10 | } 11 | 12 | interface IPerro { 13 | readonly nombre: string; 14 | raza: string; 15 | edad: number; 16 | peso: number; 17 | color: string; 18 | comidas_favoritas: string[]; 19 | gusta_jugar: boolean; 20 | vacunas?: Vacunas; 21 | historial_clinico: HistorialClinico; 22 | madre?: IPerro; 23 | padre?: IPerro; 24 | 25 | crecer: () => void; 26 | agregarOperacion: (operacion: string) => void; 27 | agregarEnfermedad: (enfermedad: string) => void; 28 | agregarInformacionPadre: (padre: IPerro) => void; 29 | agregarInformacionMadre: (madre: IPerro) => void; 30 | agregarVacunas: (vacunas: Vacunas) => void; 31 | } 32 | -------------------------------------------------------------------------------- /Clase I/Condicionales/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "condicionales", 3 | "description": "En este paquete se ve el funcionamiento de los condicionales con distintos casos de uso", 4 | "version": "1.0.0", 5 | "scripts": { 6 | "ejecutaric": "ts-node ifCiclo.ts", 7 | "ejecutariei": "ts-node ifElseIf.ts", 8 | "ejecutaris": "ts-node ifSimple.ts", 9 | "ejecutarscc": "ts-node switchCaseCiclo.ts", 10 | "ejecutarscs": "ts-node switchCaseSimple.ts", 11 | "test": "echo \"Error: no test specified\" && exit 1" 12 | }, 13 | "repository": { 14 | "type": "git", 15 | "url": "https://github.com/IEEESBITBA/curso-typescript.git" 16 | }, 17 | "author": "IEEESITBA", 18 | "homepage": "https://github.com/IEEESBITBA/curso-typescript", 19 | "dependencies": { 20 | "ts-node": "^10.9.2", 21 | "typescript": "^5.3.3" 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Clase I/Tipos de Comparacion/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "comparaciones", 3 | "description": "En este paquete se ve el funcionamiento de las distintas formas de comparacion", 4 | "version": "1.0.0", 5 | "scripts": { 6 | "ejecutardes": "ts-node desigualdad.ts", 7 | "ejecutaria": "ts-node igualdadAbstracta.ts", 8 | "ejecutarie": "ts-node igualdadEstricta.ts", 9 | "ejecutardorel": "ts-node relacionales.ts", 10 | "ejecutarneg": "ts-node negacion.ts", 11 | "test": "echo \"Error: no test specified\" && exit 1" 12 | }, 13 | "repository": { 14 | "type": "git", 15 | "url": "https://github.com/IEEESBITBA/curso-typescript.git" 16 | }, 17 | "author": "IEEESITBA", 18 | "homepage": "https://github.com/IEEESBITBA/curso-typescript", 19 | "dependencies": { 20 | "ts-node": "^10.9.2", 21 | "typescript": "^5.3.3" 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Clase IV/Archivos Guia de Ejercicios Clase IV/Coordenada.ts: -------------------------------------------------------------------------------- 1 | class Coordenada { 2 | private x: number; 3 | private y: number; 4 | private z: number; 5 | 6 | constructor( x: number, y: number, z: number) { 7 | this.x = x; 8 | this.y = y; 9 | this.z = z; 10 | } 11 | 12 | modulo(): number { 13 | return Math.sqrt(this.x ** 2 + this.y ** 2 + this.z ** 2); 14 | } 15 | 16 | distanciaManhattan() { 17 | return this.x + this.y + this.z; 18 | } 19 | 20 | diferencia(coordenada: Coordenada): Coordenada { 21 | return new Coordenada( this.x - coordenada.x, this.y - coordenada.y, this.z - coordenada.z); 22 | } 23 | 24 | divisionPorMagnitud( cantidad: number): Coordenada { 25 | return new Coordenada(this.x/cantidad, this.y/cantidad, this.z/cantidad); 26 | } 27 | 28 | divisionPuntoAPunto( coordenada: Coordenada ): Coordenada { 29 | return new Coordenada(this.x/coordenada.x, this.y/coordenada.y, this.z/coordenada.z); 30 | } 31 | } 32 | 33 | export default Coordenada; 34 | -------------------------------------------------------------------------------- /Clase III/LecturaArchivos/Danfo/testeoLectura.ts: -------------------------------------------------------------------------------- 1 | import {readCSV} from 'danfojs-node'; 2 | import { DataFrame } from 'danfojs-node/dist/danfojs-base'; 3 | 4 | async function main() { 5 | let df: DataFrame; 6 | try { 7 | df = await readCSV('sales_data_sample.csv') 8 | } catch (e) { 9 | console.log('Ocurrió un error leyendo el archivo. Saliendo') 10 | return; 11 | } 12 | if (!!df) { 13 | df.head().print(); 14 | // Imprime los primeros valores del archivo en formato de tabla. 15 | console.log('Media:', df.PRICEEACH.mean()); 16 | // Accede a la columna PRICEEACH y encuentra la media. 17 | console.log('Mínimo:', df.PRICEEACH.min(), 'Máximo:', df.PRICEEACH.max()); 18 | // Accede a la columna PRICEEACH y encuentra el mínimo y el máximo. 19 | let groupbyDealSize = df.groupby(['DEALSIZE']); 20 | // Agrupa por DEALSIZE 21 | groupbyDealSize.agg({'PRICEEACH': 'mean'}).print(); 22 | // Imprime la media del PRICEEACH, agrupando por DEALSIZE 23 | } 24 | } 25 | 26 | main(); 27 | -------------------------------------------------------------------------------- /Clase I/Primer Programa/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "primer_programa", 3 | "description": "Este es el primer programa del curso de TypeScript, donde se ve la funcionalidad de imprimir en pantalla", 4 | "version": "1.0.0", 5 | "scripts": { 6 | "compilar1": "tsc holaMundo1.ts", 7 | "correr1": "node holaMundo1.js", 8 | "compilarcorrer1": "ts-node holaMundo1.ts", 9 | "compilar2": "tsc holaMundo2.ts", 10 | "correr2": "node holaMundo2.js", 11 | "compilarcorrer2": "ts-node holaMundo2.ts", 12 | "compilar3": "tsc holaMundo3.ts", 13 | "correr3": "node holaMundo3.js", 14 | "compilarcorrer3": "ts-node holaMundo3.ts", 15 | "test": "echo \"Error: no test specified\" && exit 1" 16 | }, 17 | "repository": { 18 | "type": "git", 19 | "url": "https://github.com/IEEESBITBA/curso-typescript.git" 20 | }, 21 | "author": "IEEESITBA", 22 | "homepage": "https://github.com/IEEESBITBA/curso-typescript", 23 | "dependencies": { 24 | "ts-node": "^10.9.2", 25 | "typescript": "^5.3.3" 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /Clase II/Tipos de Datos Especiales/unknown.ts: -------------------------------------------------------------------------------- 1 | let value: unknown; 2 | 3 | let value1: unknown = value; // Ok 4 | let value2: any = value; // Ok 5 | let value3: boolean = value; // Error 6 | let value4: number = value; // Error 7 | let value5: string = value; // Error 8 | let value6: object = value; // Error 9 | let value7: any[] = value; // Error 10 | let value8: Function = value; // Error 11 | 12 | value.foo.bar // Error 13 | value.trim() // Error 14 | value() // Error 15 | new value() // Error 16 | value[0][1] // Error 17 | 18 | function manejarUnknown(valor: unknown) { 19 | if (typeof valor=== "string") { 20 | // valor está ahora acotado al tipo 'string' 21 | console.log(valor.toUpperCase()); 22 | } else if (valor instanceof Date) { 23 | // valor está ahora acotado al tipo 'Date' 24 | console.log(valor.getFullYear()); 25 | } else { 26 | // valor es todavía del tipo 'unknown' 27 | console.log("Tipo desconocido:", valor); 28 | } 29 | } // Esta función valida el tipo de datos antes de hacer uso de las propiedades y métodos específicos para cada tipo de datos. Ese sería el uso correcto de unknown -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2023 IEEE ITBA Student Branch 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /Clase IV/API/index.ts: -------------------------------------------------------------------------------- 1 | // @ts-ignore 2 | import express from "express"; 3 | import {Request, Response} from 'express'; 4 | import {StatusCodes} from "http-status-codes"; 5 | import EquiposHandler from "./Clases/EquiposHandler"; 6 | 7 | // localhost:3000 8 | const PORT = 3000; 9 | 10 | function main() { 11 | const equiposHandler = new EquiposHandler(); 12 | const app = express(); 13 | 14 | app.listen(PORT, () => console.log("El servidor está corriendo en el puerto " + PORT)); 15 | 16 | // POST falso 17 | // POST localhost:3000/equipos 18 | app.post('/equipos', async (req: Request, res: Response) => await equiposHandler.leerEquipos(req,res)); 19 | 20 | // GET 21 | // GET localhost:3000/equipos 22 | app.get('/equipos', (req: Request, res: Response) => equiposHandler.obtenerPrimerosN(req, res)); 23 | 24 | // GET localhost:3000/equipos/Bayern%20Munich 25 | app.get('/equipos/:equipo', (req: Request, res: Response) => equiposHandler.obtenerEquipo(req, res)); 26 | 27 | // PARA TODO GET QUE NO SEA LOS DE ARRIBA, LOS VA A IGNORAR 28 | app.get('*', (req, res) => res.status(StatusCodes.NOT_FOUND).send('URL inválida')); 29 | } 30 | 31 | main(); 32 | -------------------------------------------------------------------------------- /Clase III/Generics/Clases/Cola.ts: -------------------------------------------------------------------------------- 1 | import INodo from "../Interfaces/INodo"; 2 | import ICola from "../Interfaces/ICola"; 3 | 4 | export default class Cola implements ICola { 5 | primerElemento?: INodo; 6 | 7 | adicionarElemento(elemento: T): Cola { 8 | let nodoActual = this.primerElemento; 9 | 10 | if( !nodoActual ) { 11 | this.primerElemento = { 12 | elemento: elemento, 13 | siguiente: this.primerElemento 14 | }; 15 | } else { 16 | while( !!nodoActual ) { 17 | if( !nodoActual.siguiente) { 18 | nodoActual.siguiente = { 19 | elemento: elemento, 20 | siguiente: nodoActual.siguiente 21 | }; 22 | nodoActual = nodoActual.siguiente.siguiente; 23 | } else { 24 | nodoActual = nodoActual.siguiente; 25 | } 26 | } 27 | } 28 | return this; 29 | } 30 | 31 | imprimirCola(): void { 32 | let nodoActual = this.primerElemento; 33 | while( !!nodoActual ) { 34 | console.log(nodoActual.elemento) 35 | nodoActual = nodoActual.siguiente; 36 | } 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /Clase IV/Archivos Guia de Ejercicios Clase IV/Particula.ts: -------------------------------------------------------------------------------- 1 | import Coordenada from "./Coordenada"; 2 | 3 | class Particula{ 4 | private posicion: Coordenada; 5 | private velocidad: Coordenada; 6 | private masa: number; 7 | 8 | constructor( posicionInicial: Coordenada, velocidadInicial: Coordenada, masa: number) { 9 | this.posicion = posicionInicial; 10 | this.velocidad = velocidadInicial; 11 | this.masa = masa; 12 | } 13 | 14 | modificarVelocidad(nuevaVelocidad: Coordenada, tiempoDeAceleracion: number): Coordenada { 15 | const cambioVelocidad = nuevaVelocidad.diferencia(this.velocidad); 16 | this.velocidad = nuevaVelocidad; 17 | const aceleracion = cambioVelocidad.divisionPorMagnitud(tiempoDeAceleracion); 18 | return aceleracion; 19 | } 20 | 21 | calcularInercia() : number { 22 | return (this.posicion.modulo() ** 2) * this.masa; 23 | } 24 | 25 | calcularMomento(): number { 26 | return this.masa * this.posicion.modulo() * this.velocidad.modulo(); 27 | } 28 | 29 | moverHacia(nuevaPosicion: Coordenada): number { 30 | const distanciaARecorrer = nuevaPosicion.diferencia(this.posicion); 31 | this.posicion = nuevaPosicion; 32 | const tiempo = distanciaARecorrer.divisionPuntoAPunto(this.velocidad); 33 | return tiempo.distanciaManhattan(); 34 | } 35 | 36 | energiaCinetica(): number { 37 | return (1/2) * this.masa * this.velocidad.modulo() ** 2; 38 | } 39 | } 40 | 41 | export default Particula; 42 | 43 | -------------------------------------------------------------------------------- /Clase III/Excepciones/promptTest.ts: -------------------------------------------------------------------------------- 1 | import Polinomica from "../Funciones/Clases/Polinomica"; 2 | import IFuncion from "../Funciones/Interfaces/IFuncion"; 3 | import ArgumentoNoEsNumeroError from "./Prompt/Clases/ArgumentoNoEsNumeroError"; 4 | import NumeroEsNegativoError from "./Prompt/Clases/NumeroEsNegativoError"; 5 | 6 | const prompt = require("prompt-sync")({ sigint: true }); 7 | 8 | 9 | 10 | const leerNumero = (): number | never => { 11 | const nuevoNumero = parseFloat(prompt('Por favor, ingrese un número para evaluar la función: ')); 12 | if( isNaN(nuevoNumero) ) { 13 | throw new ArgumentoNoEsNumeroError; 14 | } 15 | if (nuevoNumero < 0) { 16 | throw new NumeroEsNegativoError; 17 | } 18 | return nuevoNumero; 19 | } 20 | 21 | const main = (): void => { 22 | let funcionPoderosa: IFuncion = new Polinomica([0,0,1]) // f(x) = x^2 23 | let numeros: number[] = []; 24 | let nuevoNumero: number; 25 | while( numeros.length < 5 ) { 26 | try { 27 | nuevoNumero = leerNumero(); 28 | numeros.push(nuevoNumero); 29 | } catch (e: unknown) { 30 | if( e instanceof ArgumentoNoEsNumeroError ) { 31 | console.log('Ha ingresado un valor incorrecto.'); 32 | } 33 | if(e instanceof NumeroEsNegativoError) { 34 | console.log('Ha ingresado un valor erróneo.'); 35 | } 36 | } 37 | } 38 | 39 | for( let numero of numeros) { 40 | console.log(funcionPoderosa.evaluar(numero)); 41 | } 42 | } 43 | 44 | main(); 45 | -------------------------------------------------------------------------------- /Clase III/Funciones/testeo.ts: -------------------------------------------------------------------------------- 1 | import Polinomica from "./Clases/Polinomica"; 2 | import Trigonometrica, {FuncionesTrigonometricas} from "./Clases/Trigonometrica"; 3 | import Composicion from "./Clases/Composicion"; 4 | import Suma from "./Clases/Suma"; 5 | import Producto from "./Clases/Producto"; 6 | 7 | function main() { 8 | // Definiendo funciones de formato aleatorio 9 | // f(x) = 3 10 | let constante3 = new Polinomica([3]); 11 | // f(x) = x^2 12 | let cuadrado= new Polinomica([0,0,1]); 13 | // f(x) = cos(x) 14 | let coseno = new Trigonometrica(FuncionesTrigonometricas.Cos); 15 | // f(x) = (cos(x))^2 16 | let cosenoCuadrado = new Producto(coseno, coseno); 17 | // f(x) = sin(x) 18 | let seno = new Trigonometrica(FuncionesTrigonometricas.Sin); 19 | // f(x) = (sin(x))^2 20 | let senoCuadrado = new Composicion(cuadrado, seno); 21 | // f(x) = 3sin(x) 22 | let constantePorSeno = new Producto(seno, constante3); 23 | // f(x) = 2x^3 + sin(x) 24 | let polinomicaYSeno = new Suma(new Polinomica([0, 0, 0, 2]), seno); 25 | // f(x) = sin(x^2) 26 | let senoDelCuadrado = new Composicion(seno, cuadrado); 27 | 28 | console.log(constantePorSeno.evaluar(Math.PI/2)); // 3 29 | console.log(senoCuadrado.evaluar(Math.PI/4)) // 0.5 30 | console.log(constante3.evaluar(5), constante3.evaluar(3), constante3.evaluar(16)) // 3 3 3 31 | console.log(cuadrado.evaluar(2)); // 4 32 | console.log(coseno.evaluar(Math.PI)); // -1 33 | console.log(cosenoCuadrado.evaluar(Math.PI/6)); // 0.25 34 | console.log(polinomicaYSeno.evaluar(1)); // 2.84147... 35 | console.log(senoDelCuadrado.evaluar(1)); // 0.7086... 36 | } 37 | 38 | main(); 39 | -------------------------------------------------------------------------------- /Clase IV/API/Clases/EquiposHandler.ts: -------------------------------------------------------------------------------- 1 | import Equipos from "./Equipos"; 2 | import {Request, Response} from 'express'; 3 | import {ReasonPhrases, StatusCodes} from "http-status-codes"; 4 | 5 | export default class EquiposHandler { 6 | private _equipos = new Equipos(); 7 | 8 | public leerEquipos = async (req: Request, res: Response): Promise => { 9 | try { 10 | await this._equipos.leerEquipos('./Rankings Football June 2022.csv'); 11 | res.status(StatusCodes.CREATED).send(); 12 | } catch (e) { 13 | res.status(StatusCodes.INTERNAL_SERVER_ERROR).send(); 14 | } 15 | } 16 | 17 | public obtenerEquipo = (req: Request, res: Response): void => { 18 | const equipo = req.params.equipo.toString(); 19 | try { 20 | const datosEquipo = this._equipos.obtenerEquipo(equipo); 21 | res.status(StatusCodes.OK).send(datosEquipo); 22 | } catch (e) { 23 | res.status(StatusCodes.INTERNAL_SERVER_ERROR).send(); 24 | } 25 | } 26 | 27 | public obtenerPrimerosN = (req: Request, res: Response): void => { 28 | if (!!req.query.N) { 29 | try { 30 | const N = parseInt(req.query.N); 31 | const datosEquipo = this._equipos.obtenerPrimerosN(N); 32 | if (datosEquipo == null) { 33 | res.status(StatusCodes.NOT_FOUND).send(ReasonPhrases.NOT_FOUND); 34 | } else { 35 | res.status(StatusCodes.OK).send(datosEquipo); 36 | } 37 | } catch (e) { 38 | res.status(StatusCodes.INTERNAL_SERVER_ERROR).send(); 39 | } 40 | } else { 41 | res.status(StatusCodes.BAD_REQUEST).send('Cantidad de equipos (N) faltante'); 42 | } 43 | } 44 | } 45 | -------------------------------------------------------------------------------- /Clase IV/API/Clases/Equipo.ts: -------------------------------------------------------------------------------- 1 | import IEquipo from "../Interfaces/IEquipo"; 2 | 3 | export default class Equipo implements IEquipo { 4 | private readonly _club: string; 5 | private readonly _pais: string; 6 | private readonly _puntajeActual: number; 7 | private readonly _puntajeAnterior: number; 8 | private readonly _ranking: number; 9 | 10 | constructor(club: string, pais: string, puntajeActual: number, puntajeAnterior: number, ranking: number) { 11 | this._club = club; 12 | this._pais = pais; 13 | this._puntajeActual = puntajeActual; 14 | this._puntajeAnterior = puntajeAnterior; 15 | this._ranking = ranking; 16 | } 17 | 18 | get club(): string { 19 | return this._club; 20 | } 21 | 22 | get pais(): string { 23 | return this._pais; 24 | } 25 | 26 | get puntajeActual(): number { 27 | return this._puntajeActual; 28 | } 29 | 30 | get ranking(): number { 31 | return this._ranking; 32 | } 33 | 34 | get puntajeAnterior(): number { 35 | return this._puntajeAnterior; 36 | } 37 | 38 | get cambioPuntaje(): number { 39 | return Math.abs(this.puntajeActual - this.puntajeAnterior); 40 | } 41 | 42 | get cambioPuntajeSigno(): string { 43 | const cambioPuntaje = this.cambioPuntaje; 44 | return cambioPuntaje > 0 ? '+': (cambioPuntaje < 0 ? '-' : ''); 45 | } 46 | 47 | toJson(): Partial { 48 | return { 49 | club: this._club, 50 | pais: this._pais, 51 | puntajeActual: this._puntajeActual, 52 | puntajeAnterior: this._puntajeAnterior, 53 | cambioPuntaje: this.cambioPuntaje, 54 | ranking: this._ranking, 55 | cambioPuntajeSigno: this.cambioPuntajeSigno, 56 | }; 57 | } 58 | 59 | } 60 | -------------------------------------------------------------------------------- /Clase IV/API/Clases/Equipos.ts: -------------------------------------------------------------------------------- 1 | import * as dfd from "danfojs-node"; 2 | import Equipo from "../Clases/Equipo"; 3 | 4 | // Los campos (columnas) de la tabla de equipos de futbol. No visualizaremos todos los campos en el ejemplo 5 | enum IndiceDato { 6 | Ranking, Team, Country, PointsScored, YearChange, 7 | PPS, SymbolChange 8 | } 9 | 10 | export default class Equipos { 11 | // Danfo tiene problemas con el tipo DataFrame en readExcel 12 | private _equipos: any; 13 | 14 | public leerEquipos = async (nombreArchivo: string): Promise => { 15 | try { 16 | this._equipos = await dfd.readExcel(nombreArchivo); 17 | } catch (e) { 18 | throw new Error("Ha fallado la lectura del archivo"); 19 | } 20 | }; 21 | 22 | private crearNuevoEquipo(equipoArreglo: any[]): Partial { 23 | return new Equipo(equipoArreglo[IndiceDato.Team], equipoArreglo[IndiceDato.Country], equipoArreglo[IndiceDato.PointsScored], 24 | equipoArreglo[IndiceDato.PPS], equipoArreglo[IndiceDato.Ranking]); 25 | } 26 | 27 | public obtenerEquipo = (equipo: string): Partial | null => { 28 | if (this._equipos.Team.str.includes(equipo)) { 29 | const equipoObtenido = this._equipos.query(this._equipos.Team.eq(equipo)); 30 | const equipoObtenidoDatos = equipoObtenido.values[0]; 31 | return this.crearNuevoEquipo(equipoObtenidoDatos).toJson(); 32 | } 33 | return null; 34 | }; 35 | 36 | public obtenerPrimerosN = (n: number): Partial[] => { 37 | const equiposOrdenados = this._equipos.sortValues("Ranking", {ascending: true}); 38 | const primerosNDatos = equiposOrdenados.values.slice(0, n); 39 | return primerosNDatos.map((equipoDatos: any[]) => this.crearNuevoEquipo(equipoDatos).toJson()); 40 | }; 41 | } 42 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Curso de TypeScript 2 | 3 | Este repositorio contiene los archivos y recursos para el curso de TypeScript, dividido en cuatro clases. 4 | 5 | ## Clases en Youtube 6 | 7 | ### [Clase I](https://www.youtube.com/watch?v=E5_OozgPquo) 8 | 9 | ### [Clase II](https://www.youtube.com/watch?v=QbVQR2ArTpk) 10 | 11 | ### [Clase III](https://www.youtube.com/watch?v=3iedkJcI4qA) 12 | 13 | ### [Clase IV](https://www.youtube.com/watch?v=AfSuAkcgHQw) 14 | 15 | ## Temario 16 | 17 | ### [Clase I: Introducción](https://github.com/IEEESBITBA/curso-typescript/blob/main/Clase%20I/Clase%20I.pdf) 18 | 19 | - ¿Qué es un lenguaje de Programación? 20 | - Ventajas y desventajas de TypeScript 21 | - Herramientas a utilizar 22 | - Nuestro primer programa 23 | - Variables y tipos 24 | - Ciclos y condicionales 25 | 26 | ### [Clase II: Objetos](https://github.com/IEEESBITBA/curso-typescript/blob/main/Clase%20II/Clase%20II.pdf) 27 | 28 | - Arreglos 29 | - Nuestra primera función 30 | - ¿Qué es un objeto? 31 | - Tipos especiales de datos 32 | - Enums 33 | - JSON 34 | - Interfaces 35 | - Clases 36 | - Organización y separación de archivos 37 | 38 | ### [Clase III: Otros recursos, excepciones y archivos](https://github.com/IEEESBITBA/curso-typescript/blob/main/Clase%20III/Clase%20III.pdf) 39 | 40 | - Extensión de clases 41 | - Generics 42 | - Recursividad 43 | - Excepciones 44 | - Lectura de archivos 45 | 46 | ### [Clase IV: Programas de Consultas](https://github.com/IEEESBITBA/curso-typescript/blob/main/Clase%20IV/Clase%20IV.pdf) 47 | - Una ojeada a la programación funcional 48 | - Métodos y Códigos de estado HTTP 49 | - Desarrollo de una API básica 50 | 51 | ## Recursos extra a las clases 52 | - [Webgrafia Adicional](https://github.com/IEEESBITBA/curso-typescript/blob/main/Anexo/Listado%20de%20Webgraf%C3%ADa%20adicional.pdf) 53 | - [Guía de Instalación de Herramientas](https://github.com/IEEESBITBA/curso-typescript/blob/main/Anexo/Gu%C3%ADa%20de%20Instalaci%C3%B3n%20de%20Herramientas.pdf) 54 | - [Algunos tipos básicos de datos que se utilizarán](https://github.com/IEEESBITBA/curso-typescript/blob/main/Anexo/Tabla%20algunos%20tipos%20de%20dato.pdf) 55 | 56 | ## Autor 57 | 58 | IEEE ITBA Student Branch 59 | -------------------------------------------------------------------------------- /Clase II/Clases/Perro.ts: -------------------------------------------------------------------------------- 1 | interface HistorialClinico { 2 | operaciones: string[]; 3 | enfermedades: string[]; 4 | } 5 | 6 | interface Vacunas { 7 | rabia: boolean; 8 | moquilloCanino: boolean; 9 | parvo: boolean; 10 | } 11 | 12 | interface IPerro { 13 | readonly nombre: string; 14 | raza: string; 15 | edad: number; 16 | peso: number; 17 | color: string; 18 | comidas_favoritas: string[]; 19 | gusta_jugar: boolean; 20 | vacunas?: Vacunas; 21 | historial_clinico: HistorialClinico; 22 | madre?: IPerro; 23 | padre?: IPerro; 24 | 25 | crecer: () => void; 26 | agregarOperacion: (operacion: string) => void; 27 | agregarEnfermedad: (enfermedad: string) => void; 28 | agregarInformacionPadre: (padre: IPerro) => void; 29 | agregarInformacionMadre: (madre: IPerro) => void; 30 | agregarVacunas: (vacunas: Vacunas) => void; 31 | } 32 | 33 | class Perro implements IPerro { 34 | private _nombre: string; 35 | private _raza: string; 36 | private _edad: number; 37 | private _peso: number; 38 | private _color: string; 39 | private _comidasFavoritas: string[]; 40 | private _gustaJugar: boolean; 41 | private _vacunas?: Vacunas; 42 | private _historialClinico: HistorialClinico; 43 | private _madre?: IPerro; 44 | private _padre?: IPerro; 45 | 46 | constructor( 47 | nombre: string, 48 | raza: string, 49 | edad: number, 50 | peso: number, 51 | color: string, 52 | comidasFavoritas: string[], 53 | gustaJugar: boolean, 54 | vacunas?: Vacunas, 55 | historialClinico?: HistorialClinico, 56 | madre?: IPerro, 57 | padre?: IPerro, 58 | ) { 59 | this._nombre = nombre; 60 | this._raza = raza; 61 | this._edad = edad; 62 | this._peso = peso; 63 | this._color = color; 64 | this._comidasFavoritas = comidasFavoritas; 65 | this._gustaJugar = gustaJugar; 66 | this._vacunas = vacunas; 67 | this._historialClinico = historialClinico || {operaciones: [], enfermedades: []}; 68 | this._madre = madre; 69 | this._padre = padre; 70 | } 71 | 72 | get nombre() { 73 | return this._nombre; 74 | } 75 | 76 | get raza() { 77 | return this._raza; 78 | } 79 | 80 | get edad() { 81 | return this._edad; 82 | } 83 | 84 | get peso() { 85 | return this._peso; 86 | } 87 | 88 | get color() { 89 | return this._color; 90 | } 91 | 92 | get comidas_favoritas() { 93 | return this._comidasFavoritas; 94 | } 95 | 96 | get gusta_jugar() { 97 | return this._gustaJugar; 98 | } 99 | 100 | get vacunas() { 101 | return this._vacunas; 102 | } 103 | 104 | get historial_clinico() { 105 | return this._historialClinico; 106 | } 107 | 108 | get madre() { 109 | return this._madre; 110 | } 111 | 112 | get padre() { 113 | return this._padre; 114 | } 115 | 116 | crecer() { 117 | this._edad++; 118 | this._peso += 2; 119 | } 120 | 121 | agregarOperacion(operacion: string) { 122 | if (!!operacion) { 123 | this._historialClinico.operaciones.push(operacion); 124 | } 125 | } 126 | 127 | agregarEnfermedad(enfermedad: string) { 128 | if (!!enfermedad) { 129 | this._historialClinico.enfermedades.push(enfermedad) 130 | } 131 | } 132 | 133 | agregarInformacionPadre(padre: IPerro) { 134 | this._padre = padre; 135 | } 136 | 137 | agregarInformacionMadre(madre: IPerro) { 138 | this._madre = madre; 139 | } 140 | 141 | agregarVacunas(vacunas: Vacunas) { 142 | this._vacunas = vacunas 143 | } 144 | } 145 | 146 | const miPerro = new Perro("Fido", "Golden Retriever", 5, 25, "Dorado", ["carne", "queso"], true, { 147 | rabia: true, 148 | moquilloCanino: true, 149 | parvo: true 150 | }, { 151 | operaciones: [], 152 | enfermedades: [], 153 | }); 154 | 155 | console.log(miPerro.nombre); // imprime "Fido". No hay que escribir get 156 | miPerro.crecer(); // hace que el perro crezca un año y aumente su peso 157 | console.log(miPerro.edad); // imprime 6 158 | miPerro.agregarEnfermedad("gripe canina"); // agrega una enfermedad al historial clínico del perro 159 | -------------------------------------------------------------------------------- /Clase IV/API/Rankings Football June 2022.csv: -------------------------------------------------------------------------------- 1 | Ranking,Team,Country,Points Scored,1 year change,previous point scored,symbol change,,,, 2 | 65,1. FC Köln,Germany,1668,160,1529,+,,,, 3 | 34,1. FC Union Berlin,Germany,1748,32,1665,+,,,, 4 | 967,12 de Octubre de Itaugua,Paraguay,1352,270,1390,-,,,, 5 | 265,1º de Agosto,Angola,1512,11,1518,-,,,, 6 | 2530,1º de Maio,Angola,1218,24,1218,-,,,, 7 | 1189,2 de Mayo,Paraguay,1326,8,1326,-,,,, 8 | 1213,3 de Febrero,Paraguay,1324,10,1324,-,,,, 9 | 727,AaB,Denmark,1388,12,1383,+,,,, 10 | 2141,Aalesund,Norway,1248,329,1225,+,,,, 11 | 1873,Aarau,Switzerland,1266,7,1266,-,,,, 12 | 888,Aberdeen,Scotland,1361,419,1441,-,,,, 13 | 1638,Aberystwyth,Wales,1286,145,1298,-,,,, 14 | 1323,Abha Club,Saudi Arabia,1312,41,1306,+,,,, 15 | 945,Abia Warriors,Nigeria,1354,151,1372,-,,,, 16 | 2020,ABM Galaxy FC,Vanuatu,1255,1,1255,-,,,, 17 | 1538,Aboomoslem,Iran,1292,32,1292,-,,,, 18 | 2014,AC Horsens,Denmark,1255,0,1255,-,,,,es 19 | 2139,AC Kuya Sport,Congo DR,1249,33,1250,-,,,, 20 | 2712,AC LALA FC,Venezuela,1180,174,1220,-,,,, 21 | 2267,AC Mamahira,Mali,1241,37,1241,-,,,, 22 | 6,AC Milan,Italy,1900,11,1831,+,,,, 23 | 1521,AC Oulu,Finland,1293,278,1270,+,,,, 24 | 2299,AC Rangers,Denmark,1238,90,1234,+,,,, 25 | 2259,Academia Cantolao,Peru,1241,729,1295,-,,,, 26 | 1128,Academia F. Amadou Diallo,Ivory Coast,1332,256,1362,-,,,, 27 | 1811,Academia Puerto Cabello,Venezuela,1270,9,1270,-,,,, 28 | 2639,Academia Quintana,Puerto Rico,1201,12,1201,-,,,, 29 | 1237,Académica,Portugal,1322,6,1322,-,,,, 30 | 1774,Académica do Soyo,Angola,1272,2,1272,-,,,, 31 | 1963,Académica Lobito,Angola,1259,421,1234,+,,,, 32 | 1591,Accra Great Olympics,Ghana,1288,114,1279,+,,,, 33 | 2070,Accra Lions FC,Ghana,1252,37,1250,+,,,, 34 | 2641,ACS FC Academica Clinceni,Romania,1200,1615,1344,-,,,, 35 | 1779,ACS Poli TimiÅŸoara,Romania,1272,4,1272,-,,,, 36 | 1139,AD Grecia FC,Costa Rica,1331,112,1319,+,,,, 37 | 1643,AD Guanacasteca,Costa Rica,1285,202,1300,-,,,, 38 | 2541,AD Municipal Liberia,Costa Rica,1217,23,1217,-,,,, 39 | 1738,AD Unión Magdalena,Colombia,1276,483,1319,-,,,, 40 | 2538,Adamawa United,Nigeria,1217,154,1234,-,,,, 41 | 582,Adana Demirspor,Turkey,1417,379,1350,+,,,, 42 | 1581,Adanaspor,Turkey,1289,21,1289,-,,,, 43 | 955,Adelaide United,Australia,1353,60,1345,+,,,, 44 | 2004,Admira Wacker Mödling,Austria,1256,283,1242,+,,,, 45 | 1613,ADO Den Haag,Netherlands,1287,22,1287,-,,,, 46 | 929,Aduana Stars,Ghana,1356,72,1364,-,,,, 47 | 2215,Adzopé,Ivory Coast,1244,42,1244,-,,,, 48 | 2497,AE Kouklion,Cyprus,1221,29,1221,-,,,, 49 | 225,AEK,Greece,1530,42,1549,-,,,, 50 | 243,AEK Larnaca,Cyprus,1523,36,1505,+,,,, 51 | 1931,AEL Kalloni FC,Greece,1261,5,1261,-,,,, 52 | 361,AEL Limassol,Cyprus,1473,87,1506,-,,,, 53 | 2377,AEZ Zakakiou,Cyprus,1232,37,1232,-,,,, 54 | 2703,Afan Lido,Wales,1185,8,1185,-,,,, 55 | 267,AFC Bournemouth,England,1512,1,1512,-,,,, 56 | 2304,AFC Eskilstuna,Sweden,1237,45,1237,-,,,, 57 | 1380,AFC Herrmannstadt Sibiu,Romania,1305,5,1305,-,,,, 58 | 1100,AFC UTA Arad,Romania,1336,202,1315,+,,,, 59 | 1234,Africa Sports National,Ivory Coast,1322,7,1322,-,,,, 60 | 851,AGF,Denmark,1367,340,1431,-,,,, 61 | 732,Águila,El Salvador,1387,165,1359,+,,,, 62 | 1440,Águilas,Costa Rica,1300,3,1300,-,,,, 63 | 770,Águilas Doradas,Colombia,1380,49,1369,+,,,, 64 | 2115,Ahal FK,Turkmenistan,1250,8,1250,-,,,, 65 | 1450,Aigle Royal,Cameroon,1299,29,1299,-,,,, 66 | 209,AIK,Sweden,1538,72,1504,+,,,, 67 | 2117,Aïn Fakroun,Algeria,1250,47,1250,-,,,, 68 | 2694,Air Force Central FC,Thailand,1188,8,1188,-,,,, 69 | 2466,Air India,India,1224,26,1224,-,,,, 70 | 1461,Airbus UK Broughton FC,Wales,1299,27,1299,-,,,, 71 | 1714,Aizawl,India,1278,114,1289,-,,,, 72 | 832,Ajaccio,France,1369,17,1369,-,,,, 73 | 961,Ajax,Congo DR,1352,17,1352,-,,,, 74 | 7,Ajax Amsterdam,Netherlands,1899,3,1870,+,,,, 75 | 1117,Ajax Cape Town,South Africa,1334,9,1334,-,,,, 76 | 2730,Ajax Lasnamäe,Estonia,1173,6,1173,-,,,, 77 | 2360,Ajman Club,United Arab Emirates,1233,239,1212,+,,,, 78 | 1375,Akademija Pandev,Macedonia,1306,416,1271,+,,,, 79 | 2185,Akademik Sofia,Bulgaria,1246,43,1246,-,,,, 80 | 1008,Akhisar Belediye,Turkey,1345,4,1345,-,,,, 81 | 1843,Akokana,Niger,1268,10,1268,-,,,, 82 | 883,Aktobe,Kazakhstan,1362,20,1364,-,,,, 83 | 1394,Akwa Starlets,Nigeria,1303,77,1313,-,,,, 84 | 530,Akwa United,Nigeria,1428,49,1438,-,,,, 85 | 1914,Akzhaiyk Uralsk,Kazakhstan,1263,36,1265,-,,,, 86 | 2140,AL Adalh FC,Saudi Arabia,1248,41,1248,-,,,, 87 | 483,AL Ahed,Lebanon,1438,160,1403,+,,,, 88 | 345,Al Ahli,United Arab Emirates,1478,32,1492,-,,,, 89 | 1634,Al Ahli,Qatar,1286,5,1287,-,,,, 90 | 2015,Al Ahli Khartoum,Sudan,1255,0,1255,-,,,, 91 | 2672,Al Ahli SC Amman,Jordan,1193,8,1193,-,,,, 92 | 1509,Al Ahli Tripoli,Libya,1295,21,1295,-,,,, 93 | 2361,Al Ahli Wad Medani,Sudan,1233,38,1233,-,,,, 94 | 61,Al Ahly,Egypt,1683,15,1712,-,,,, 95 | 1878,Al Ahly Benghazi,Libya,1265,8,1265,-,,,, 96 | 2083,Al Ahly Merowe,Sudan,1252,0,1252,-,,,, 97 | 791,Al Ahly Shendi,Sudan,1376,19,1376,-,,,, 98 | 2144,Al Akhaa Al Ahli,Lebanon,1248,222,1262,-,,,, 99 | 2400,Al Amir,Sudan,1230,30,1230,-,,,, 100 | 2434,Al Ansar FC (Medina),Saudi Arabia,1226,29,1226,-,,,, 101 | 855,AL Ansar SC,Lebanon,1366,83,1353,+,,,, 102 | 2492,Al Asalah,Jordan,1221,30,1221,-,,,, 103 | 1537,Al Batin,Saudi Arabia,1292,24,1292,-,,,, 104 | 2717,Al Egtmaaey Tripoli,Lebanon,1179,4,1179,-,,,, 105 | 892,AL Ettifaq FC,Saudi Arabia,1361,108,1374,-,,,, 106 | 2112,Al Fallah Atbara FC,Sudan,1250,50,1250,-,,,, 107 | 780,Al Fateh FC,Saudi Arabia,1378,18,1372,+,,,, 108 | 1309,Al Feiha,Saudi Arabia,1313,212,1296,+,,,, 109 | 2688,Al Fujairah,United Arab Emirates,1189,7,1189,-,,,, 110 | 948,AL Gharafa,Qatar,1354,226,1385,-,,,, 111 | 2622,AL Hazem FC,Saudi Arabia,1204,113,1222,-,,,, 112 | 67,Al Hilal,Saudi Arabia,1663,19,1630,+,,,, 113 | 1920,Al Hilal Kadougli,Sudan,1262,6,1262,-,,,, 114 | 272,Al Hilal Omdurman,Sudan,1510,38,1525,-,,,, 115 | 2344,Al Hilal Port Sudan,Sudan,1234,41,1234,-,,,, 116 | 2592,Al Islah Bourg Shamaly,Lebanon,1209,18,1209,-,,,, 117 | 289,Al Ittihad,Saudi Arabia,1501,161,1446,+,,,, 118 | 2555,Al Ittihad,Sudan,1215,23,1215,-,,,, 119 | 2614,Al Ittihad Kalba,United Arab Emirates,1206,67,1193,+,,,, 120 | 835,Al Khartoum SC,Sudan,1369,14,1369,-,,,, 121 | 762,Al Masry,Egypt,1381,305,1445,-,,,, 122 | 2647,Al Mesaimeer,Qatar,1199,12,1199,-,,,, 123 | 1033,Al Mokawloon Al Arab,Egypt,1342,213,1369,-,,,, 124 | 2472,Al Mourada,Sudan,1223,26,1223,-,,,, 125 | 1898,Al Nahdha Dammam,Saudi Arabia,1264,4,1264,-,,,, 126 | 793,Al Nasr,United Arab Emirates,1376,110,1393,-,,,, 127 | 2419,Al Nasr FC,Egypt,1228,31,1228,-,,,, 128 | 195,Al Nassr,Saudi Arabia,1548,19,1535,+,,,, 129 | 1407,AL Qadisiyah FC,Saudi Arabia,1303,3,1303,-,,,, 130 | 2188,Al Qadsia,Kuwait,1245,44,1245,-,,,, 131 | 2146,Al Quwa Al Jawiya,Iraq,1248,131,1242,+,,,, 132 | 2579,Al Rabta Kosti,Sudan,1212,22,1212,-,,,, 133 | 1341,Al Raed,Saudi Arabia,1309,226,1333,-,,,, 134 | 1857,AL Safa,Lebanon,1267,149,1279,-,,,, 135 | 261,Al Shabab,Saudi Arabia,1514,130,1462,+,,,, 136 | 944,Al Shabab,United Arab Emirates,1354,15,1354,-,,,, 137 | 2465,Al Shabab Al Arabi Beirut,Lebanon,1224,26,1224,-,,,, 138 | 1991,Al Sharkeyah,Egypt,1257,3,1257,-,,,, 139 | 2611,Al Shimali,Sudan,1206,16,1206,-,,,, 140 | 1637,Al Shoalah,Saudi Arabia,1286,15,1286,-,,,, 141 | 2449,Al Shorta Al Qadarif,Sudan,1225,26,1225,-,,,, 142 | 2055,AL Shorta SC,Iraq,1253,0,1253,-,,,, 143 | 635,Al Taawon,Saudi Arabia,1403,50,1414,-,,,, 144 | 2461,AL Tadamon Sour,Lebanon,1224,103,1236,-,,,, 145 | 2414,Al Urooba Club,United Arab Emirates,1228,308,1250,-,,,, 146 | 433,Al Wahda,United Arab Emirates,1452,11,1453,-,,,, 147 | 1423,Al Wahda,Saudi Arabia,1301,1,1301,-,,,, 148 | 1337,Al Wasl,United Arab Emirates,1310,65,1303,+,,,, 149 | 638,Al-Ahli,Saudi Arabia,1402,140,1433,-,,,, 150 | 2206,Al-Ahli Atbara,Sudan,1244,39,1244,-,,,, 151 | 249,Al-Ain FC,United Arab Emirates,1520,62,1493,+,,,, 152 | 2037,Al-Ain FC,Saudi Arabia,1254,1,1254,-,,,, 153 | 1129,Al-Arabi Doha,Qatar,1332,138,1318,+,,,, 154 | 2754,Al-Baqa'a SC,Jordan,1156,66,1190,-,,,, 155 | 1751,Al-Bourj FC,Lebanon,1275,202,1260,+,,,, 156 | 2310,Al-Dhafra,United Arab Emirates,1237,46,1243,-,,,, 157 | 101,Al-Duhail SC,Qatar,1623,12,1602,+,,,, 158 | 822,Al-Faisaly FC Harmah,Saudi Arabia,1371,1,1369,+,,,, 159 | 1018,Al-Faisaly SC Amman,Jordan,1344,124,1331,+,,,, 160 | 2660,Al-Hikma,Lebanon,1195,10,1196,-,,,, 161 | 2159,Al-Hussein SC Irbid,Jordan,1247,387,1219,+,,,, 162 | 848,Al-Ittihad,Libya,1367,13,1367,-,,,, 163 | 1058,Al-Ittihad Al-Sakandary,Egypt,1340,66,1348,-,,,, 164 | 2396,Al-Jalil,Jordan,1230,143,1244,-,,,, 165 | 1135,Al-Jazeera Amman,Jordan,1331,240,1359,-,,,, 166 | 706,Al-Jazira,United Arab Emirates,1391,309,1459,-,,,, 167 | 1398,Al-Khaleej Club,Saudi Arabia,1303,4,1303,-,,,, 168 | 2561,Al-Kharitiyat,Qatar,1214,10,1216,-,,,, 169 | 2253,Al-Khor,Qatar,1241,244,1256,-,,,, 170 | 2212,Al-Markhiya Sports Club,Qatar,1244,42,1244,-,,,, 171 | 2598,Al-Mergheni,Sudan,1209,17,1209,-,,,, 172 | 329,Al-Merreikh,Sudan,1486,34,1500,-,,,, 173 | 2616,Al-Nil,Sudan,1206,13,1206,-,,,, 174 | 1771,Al-Orobah FC,Saudi Arabia,1273,2,1273,-,,,, 175 | 1276,Al-Ramtha SC,Jordan,1317,137,1302,+,,,, 176 | 601,Al-Rayyan,Qatar,1410,71,1395,+,,,, 177 | 149,Al-Sadd,Qatar,1578,19,1586,-,,,, 178 | 1652,Al-Sailiya,Qatar,1284,234,1302,-,,,, 179 | 1580,Al-Salt,Jordan,1289,124,1280,+,,,, 180 | 2674,Al-Sareeh SC,Jordan,1193,3,1196,-,,,, 181 | 2738,Al-Shaab,United Arab Emirates,1169,3,1169,-,,,, 182 | 2330,Al-Shahania S.C.,Qatar,1235,40,1235,-,,,, 183 | 2665,Al-Shamal SC,Qatar,1194,47,1185,+,,,, 184 | 1344,Al-Tai FC,Saudi Arabia,1309,97,1300,+,,,, 185 | 1595,Al-Wakra,Qatar,1288,332,1261,+,,,, 186 | 545,Al-Wehdat SC,Jordan,1425,47,1413,+,,,, 187 | 2562,Al-Yarmouk FC,Jordan,1214,23,1214,-,,,, 188 | 1619,Al-Zawraa SC,Iraq,1287,49,1284,+,,,, 189 | 2681,Ala'ab Damanhour,Egypt,1190,9,1190,-,,,, 190 | 2585,Alacranes del Norte,El Salvador,1210,20,1210,-,,,, 191 | 2002,Alamal Atbara,Sudan,1256,2,1256,-,,,, 192 | 1460,Alaniya,Russia,1299,27,1299,-,,,, 193 | 336,Alanyaspor,Turkey,1482,51,1463,+,,,, 194 | 1295,Albion F.C.,Uruguay,1315,334,1350,-,,,, 195 | 1481,Albirex Niigata,Japan,1298,23,1298,-,,,, 196 | 466,Aldosivi,Argentina,1443,53,1430,+,,,, 197 | 1501,Alianza,Panama,1296,507,1256,+,,,, 198 | 1313,Alianza Atlético,Peru,1312,423,1276,+,,,, 199 | 328,Alianza FC,El Salvador,1486,6,1483,+,,,, 200 | 495,Alianza Lima,Peru,1435,507,1347,+,,,, 201 | 691,Alianza Petrolera,Colombia,1394,964,1285,+,,,, 202 | 1658,Alianza Universidad Huanuco,Peru,1283,580,1337,-,,,, 203 | 2240,Alkali Nassara,Niger,1242,39,1242,-,,,, 204 | 2664,Alki,Cyprus,1194,10,1194,-,,,, 205 | 1503,Alki Oroklinis,Cyprus,1296,20,1296,-,,,, 206 | 555,All Boys,Argentina,1422,3,1422,-,,,, 207 | 411,Almería,Spain,1459,11,1459,-,,,, 208 | 2518,Alpha United,Guyana,1219,27,1219,-,,,, 209 | 1277,Altay S.K.,Turkey,1317,316,1350,-,,,, 210 | 1488,Aluminij,Slovenia,1297,722,1376,-,,,, 211 | 1118,Aluminium Arak,Iran,1334,8,1332,+,,,, 212 | 1462,Aluminium Hormozgan,Iran,1299,27,1299,-,,,, 213 | 457,Always Ready,Bolivia,1446,32,1436,+,,,, 214 | 839,AmaZulu FC,South Africa,1369,25,1363,+,,,, 215 | 132,América,Mexico,1590,29,1610,-,,,, 216 | 573,América de Cali,Colombia,1419,240,1484,-,,,, 217 | 212,América Mineiro,Brazil,1537,264,1440,+,,,, 218 | 1356,Amicale FC,Vanuatu,1308,4,1308,-,,,, 219 | 2012,Amidaus Professionals FC,Ghana,1255,1,1255,-,,,, 220 | 541,Amiens SC,France,1426,9,1426,-,,,, 221 | 599,Amkar Perm',Russia,1411,5,1411,-,,,, 222 | 2543,Anagennisi Deryneia,Cyprus,1216,24,1216,-,,,, 223 | 2747,Andijon,Uzbekistan,1163,2,1160,+,,,, 224 | 393,Angers,France,1464,6,1459,+,,,, 225 | 1355,Ankaragücü,Turkey,1308,4,1308,-,,,, 226 | 2039,Ankaran Hrvatini,Slovenia,1254,1,1254,-,,,, 227 | 1149,Annaba,Algeria,1330,4,1330,-,,,, 228 | 279,Anorthosis,Cyprus,1505,4,1503,+,,,, 229 | 570,Antigua Guatemala,Guatemala,1419,237,1371,+,,,, 230 | 1636,AOK Kerkyra,Greece,1286,15,1286,-,,,, 231 | 895,Apejes de Mfou,Cameroon,1360,55,1367,-,,,, 232 | 2179,APEP,Cyprus,1246,41,1246,-,,,, 233 | 227,APOEL Nicosia,Cyprus,1530,16,1537,-,,,, 234 | 134,Apollon Limassol,Cyprus,1587,28,1607,-,,,, 235 | 2444,Apollon Smyrnis,Greece,1225,516,1261,-,,,, 236 | 2064,APOP / Kinyras,Cyprus,1253,1,1253,-,,,, 237 | 1164,Árabe Unido,Panama,1328,282,1360,-,,,, 238 | 1482,Aragua FC,Venezuela,1298,86,1292,+,,,, 239 | 2130,Ararat-Armenia FC,Armenia,1249,46,1249,-,,,, 240 | 2224,Araz PFK,Azerbaijan,1243,40,1243,-,,,, 241 | 2031,Arcahaie FC,Haiti,1254,0,1254,-,,,, 242 | 2728,Ards,Northern Ireland,1174,6,1174,-,,,, 243 | 821,Arema,Indonesia,1371,184,1346,+,,,, 244 | 226,Argentinos Juniors,Argentina,1530,80,1572,-,,,, 245 | 1120,ArgeÈ™ PiteÈ™ti,Romania,1333,7,1333,-,,,, 246 | 881,Aris Limassol,Cyprus,1362,967,1267,+,,,, 247 | 236,Aris Thessaloniki FC,Greece,1526,94,1486,+,,,, 248 | 1014,Arles,France,1344,11,1344,-,,,, 249 | 2277,Armed Forces,Singapore,1240,38,1240,-,,,, 250 | 1828,Army United,Thailand,1269,12,1269,-,,,, 251 | 1353,Arnett Gardens,Jamaica,1308,16,1306,+,,,, 252 | 908,Arouca,Portugal,1359,165,1382,-,,,, 253 | 2734,Arrows,India,1171,5,1171,-,,,, 254 | 22,Arsenal,England,1793,3,1806,-,,,, 255 | 577,Arsenal de Sarandí,Argentina,1418,313,1514,-,,,, 256 | 804,Arsenal Tula,Russia,1374,52,1379,-,,,, 257 | 2602,Art Municipal Jalapa,Nicaragua,1208,28,1216,-,,,, 258 | 1346,AS Aïn M'lila,Algeria,1308,209,1331,-,,,, 259 | 2336,AS Avenir de Tombouctou,Mali,1235,39,1235,-,,,, 260 | 1992,AS Bamako,Mali,1257,3,1257,-,,,, 261 | 2491,AS Eliwidj FC,Mali,1221,30,1221,-,,,, 262 | 872,AS Fortuna,Cameroon,1364,33,1358,+,,,, 263 | 2135,AS Kasserine,Tunisia,1249,42,1249,-,,,, 264 | 1729,AS Korofina,Mali,1277,0,1277,-,,,, 265 | 2525,AS Lossi,New Caledonia,1218,27,1218,-,,,, 266 | 1119,AS Magenta,New Caledonia,1334,7,1334,-,,,, 267 | 1775,AS Matelots,Cameroon,1272,2,1272,-,,,, 268 | 2184,AS Nianan,Mali,1246,43,1246,-,,,, 269 | 740,AS Nika,Congo DR,1385,19,1385,-,,,, 270 | 2108,AS Nyuki de Butembo,Denmark,1250,0,1250,-,,,, 271 | 2087,AS Police,Mali,1251,2,1251,-,,,, 272 | 2042,AS Puma Generaleňa,Costa Rica,1254,1,1254,-,,,, 273 | 591,AS Réal Bamako,Mali,1415,7,1415,-,,,, 274 | 1109,AS Rejiche,Tunisia,1335,5,1333,+,,,, 275 | 1870,AS Salé,Morocco,1266,9,1266,-,,,, 276 | 1145,AS Slimane,Tunisia,1330,18,1332,-,,,, 277 | 1252,AS Tanda,Ivory Coast,1319,2,1319,-,,,, 278 | 1975,AS-FAN,Niger,1259,2,1259,-,,,, 279 | 493,Asante Kotoko,Ghana,1436,22,1430,+,,,, 280 | 287,ASD Spezia Calcio 2008,Italy,1502,69,1533,-,,,, 281 | 368,ASEC Mimosas,Ivory Coast,1471,95,1443,+,,,, 282 | 1290,ASGNN,Niger,1315,5,1315,-,,,, 283 | 856,Ashanti Gold FC,Ghana,1366,116,1382,-,,,, 284 | 1561,ASI D'Abengourou,Ivory Coast,1290,165,1303,-,,,, 285 | 2290,ASM Oran,Algeria,1239,44,1239,-,,,, 286 | 860,ASO Chlef,Algeria,1366,318,1327,+,,,, 287 | 1378,Asoc. Dep. y Rec. Jicaral Sercoba,Costa Rica,1305,339,1342,-,,,, 288 | 1066,Asociación Deportiva Tarma (ADT),Peru,1340,105,1350,-,,,, 289 | 1469,Assyriska,Sweden,1298,29,1298,-,,,, 290 | 639,Asteras Tripolis,Greece,1402,243,1460,-,,,, 291 | 77,Aston Villa,England,1652,2,1646,+,,,, 292 | 679,Astra PloieÅŸti,Romania,1395,8,1395,-,,,, 293 | 649,Astres FC de Douala,Cameroon,1401,452,1335,+,,,, 294 | 2355,Aswan FC,Egypt,1233,350,1256,-,,,, 295 | 2186,Asyut Petrol,Egypt,1246,44,1246,-,,,, 296 | 36,Atalanta,Italy,1726,22,1841,-,,,, 297 | 2608,Atar Club,Mali,1207,15,1207,-,,,, 298 | 1822,Atenas,Uruguay,1269,11,1269,-,,,, 299 | 1809,Atheltic Club Port of Spain,Trinidad and Tobago,1270,8,1270,-,,,, 300 | 52,Athletic Bilbao,Spain,1694,25,1645,+,,,, 301 | 1871,Athlone Town,Ireland,1266,9,1266,-,,,, 302 | 715,Atlanta United FC,United States,1390,118,1412,-,,,, 303 | 1198,Atlante,Mexico,1325,7,1325,-,,,, 304 | 240,Atlas,Mexico,1525,341,1415,+,,,, 305 | 1911,Atlético Balboa,El Salvador,1263,5,1263,-,,,, 306 | 2278,Atlético Chiriquí,Panama,1240,173,1228,+,,,, 307 | 1430,Atlético Choloma,Honduras,1301,2,1301,-,,,, 308 | 1808,Atlético de Kolkata,India,1270,8,1270,-,,,, 309 | 2201,Atlético do Namibe,Angola,1245,40,1245,-,,,, 310 | 2484,Atlético El Vigía,Venezuela,1222,31,1222,-,,,, 311 | 103,Atlético Goianiense,Brazil,1620,33,1580,+,,,, 312 | 1668,Atlético Huila,Colombia,1283,639,1344,-,,,, 313 | 10,Atlético Madrid,Spain,1852,1,1872,-,,,, 314 | 2581,Atlético Marte,El Salvador,1211,14,1212,-,,,, 315 | 33,Atlético Mineiro,Brazil,1750,26,1686,+,,,, 316 | 181,Atlético Nacional,Colombia,1556,118,1497,+,,,, 317 | 309,Atletico Petro Luanda,Angola,1492,247,1421,+,,,, 318 | 97,Atlético PR,Brazil,1626,28,1655,-,,,, 319 | 561,Atlético Rafaela,Argentina,1420,4,1420,-,,,, 320 | 634,Atlético San Luis,Mexico,1403,517,1329,+,,,, 321 | 2452,Atletico Socopo,Venezuela,1225,26,1225,-,,,, 322 | 1868,Atlético Sport Aviação,Angola,1266,9,1266,-,,,, 323 | 571,Atlético Tucumán,Argentina,1419,330,1522,-,,,, 324 | 1874,Atlético Venezuela,Venezuela,1265,150,1255,+,,,, 325 | 2559,Atlético Veragüense,Panama,1215,22,1215,-,,,, 326 | 884,Atromitos,Greece,1362,270,1408,-,,,, 327 | 1665,Ã…tvidaberg,Sweden,1283,11,1283,-,,,, 328 | 1518,Atyrau,Kazakhstan,1294,51,1292,+,,,, 329 | 383,Aucas,Ecuador,1468,165,1422,+,,,, 330 | 141,Auckland City,New Zealand,1582,6,1582,-,,,, 331 | 603,Audax Italiano La Florida,Chile,1409,38,1419,-,,,, 332 | 161,Augsburg,Germany,1569,101,1515,+,,,, 333 | 1756,Aurora,Bolivia,1274,30,1271,+,,,, 334 | 1210,Austin FC,Uruguay,1324,269,1353,-,,,, 335 | 2583,Austria Kärnten,Austria,1211,19,1211,-,,,, 336 | 550,Austria Wien,Austria,1424,181,1384,+,,,, 337 | 406,Auxerre,France,1461,11,1461,-,,,, 338 | 749,Avaí FC,Brazil,1383,194,1352,+,,,, 339 | 1316,Avenir de La Marsa,Tunisia,1312,5,1312,-,,,, 340 | 1402,Avion Fc Du Nkam,Cameroon,1303,247,1286,+,,,, 341 | 1202,Avispa Fukuoka,Japan,1325,604,1270,+,,,, 342 | 1023,Ayacucho FC,Peru,1343,579,1447,-,,,, 343 | 2724,Ayia Napa,Cyprus,1175,5,1175,-,,,, 344 | 91,AZ Alkmaar,Netherlands,1633,41,1707,-,,,, 345 | 1458,AZAL PFC Baku,Azerbaijan,1299,26,1299,-,,,, 346 | 2137,Azam,Tanzania,1249,42,1249,-,,,, 347 | 1787,Ba,Fiji,1272,8,1272,-,,,, 348 | 2343,Babeti ya Sika,Congo DR,1234,39,1234,-,,,, 349 | 192,Bahia,Brazil,1548,7,1548,-,,,, 350 | 1373,Bakaridjan de Barouéli,Mali,1306,6,1306,-,,,, 351 | 1153,Bakı,Azerbaijan,1330,6,1330,-,,,, 352 | 442,Bala Town FC,Wales,1451,49,1435,+,,,, 353 | 806,Bali United,Indonesia,1373,297,1334,+,,,, 354 | 1205,Balıkesirspor,Turkey,1325,7,1325,-,,,, 355 | 2696,Ballinamallard United,Northern Ireland,1187,8,1187,-,,,, 356 | 1909,Ballymena United,Northern Ireland,1263,85,1268,-,,,, 357 | 1282,Balmazújváros,Hungary,1316,6,1316,-,,,, 358 | 765,Bamboutos,Cameroon,1381,62,1368,+,,,, 359 | 455,Banfield,Argentina,1447,112,1480,-,,,, 360 | 2710,Banga Gargzdai,Lithuania,1181,14,1177,+,,,, 361 | 502,Bangkok United,Thailand,1434,24,1428,+,,,, 362 | 510,Bangor City,Wales,1432,5,1432,-,,,, 363 | 319,Baník Ostrava,Czech Republic,1488,118,1450,+,,,, 364 | 1093,Baniyas,United Arab Emirates,1337,207,1360,-,,,, 365 | 2431,Bantous,Congo DR,1227,29,1227,-,,,, 366 | 2393,Bantu Rovers,Zimbabwe,1230,32,1230,-,,,, 367 | 2633,Barbican FC,Jamaica,1203,10,1203,-,,,, 368 | 11,Barcelona,Spain,1851,4,1889,-,,,, 369 | 170,Barcelona SC,Ecuador,1565,98,1651,-,,,, 370 | 667,Bari,Italy,1398,4,1398,-,,,, 371 | 1872,Barito Putera,Indonesia,1266,67,1270,-,,,, 372 | 1861,Barnechea,Chile,1267,16,1267,-,,,, 373 | 1884,Baroka FC,South Africa,1265,318,1292,-,,,, 374 | 435,Barracas Central,Argentina,1452,1,1450,+,,,, 375 | 1533,Barrio México,Costa Rica,1292,30,1292,-,,,, 376 | 1546,Barry Town United FC,Wales,1292,233,1313,-,,,, 377 | 92,BATE Borisov,Belarus,1632,13,1608,+,,,, 378 | 1279,Bayamón FC,Puerto Rico,1316,4,1316,-,,,, 379 | 1497,Bayelsa United,Nigeria,1296,19,1296,-,,,, 380 | 18,Bayer Leverkusen,Germany,1802,37,1695,+,,,, 381 | 4,Bayern München,Germany,1955,3,2052,-,,,, 382 | 2683,BBCU FC,Thailand,1190,8,1190,-,,,, 383 | 1396,Bechem United,Ghana,1303,335,1277,+,,,, 384 | 480,Beijing Guoan,China PR,1439,259,1532,-,,,, 385 | 2316,Beijing Renhe,China PR,1237,40,1237,-,,,, 386 | 1021,Beira-Mar,Portugal,1343,10,1343,-,,,, 387 | 845,Beitar Jerusalem FC,Israel,1367,227,1408,-,,,, 388 | 2626,Bekaa SC,Lebanon,1203,10,1203,-,,,, 389 | 1733,Bekescsaba,Hungary,1276,1,1276,-,,,, 390 | 1762,BeÅ‚chatów,Poland,1274,0,1274,-,,,, 391 | 1611,Belén Siglo XXI,Costa Rica,1287,20,1287,-,,,, 392 | 932,Belenenses,Portugal,1356,373,1419,-,,,, 393 | 359,Belgrano,Argentina,1474,2,1474,-,,,, 394 | 1136,Bella Vista,Uruguay,1331,0,1331,-,,,, 395 | 2312,Bellinzona,Switzerland,1237,42,1237,-,,,, 396 | 1742,Belshina Bobruisk,Belarus,1275,83,1268,+,,,, 397 | 949,Ben Guerdane,Tunisia,1354,156,1373,-,,,, 398 | 1288,Bendel Insurance,Nigeria,1315,6,1315,-,,,, 399 | 607,Benevento,Italy,1408,10,1408,-,,,, 400 | 17,Benfica,Portugal,1803,5,1774,+,,,, 401 | 987,Benfica Luanda,Angola,1349,4,1349,-,,,, 402 | 959,Bengaluru FC,India,1353,19,1353,-,,,, 403 | 1894,Béni-Khalled,Tunisia,1264,3,1264,-,,,, 404 | 2726,Berane,Montenegro,1174,6,1174,-,,,, 405 | 1952,Berekum Arsenal,Ghana,1260,5,1260,-,,,, 406 | 1082,Berekum Chelsea FC,Ghana,1339,122,1350,-,,,, 407 | 474,Beroe,Bulgaria,1441,102,1467,-,,,, 408 | 253,BeÅŸiktaÅŸ,Turkey,1517,154,1616,-,,,, 409 | 2762,BFC Daugavpils,Latvia,1142,1,1143,-,,,, 410 | 350,BG Pathum United,Thailand,1477,136,1438,+,,,, 411 | 927,Bhayangkara FC,Indonesia,1357,184,1334,+,,,, 412 | 2027,Bibiani Gold Stars F.C.,Ghana,1255,80,1250,+,,,, 413 | 443,Bidvest Wits,South Africa,1451,12,1451,-,,,, 414 | 2210,Binh Duong,Vietnam,1244,41,1244,-,,,, 415 | 294,Birmingham City,England,1498,3,1498,-,,,, 416 | 404,BK Häcken,Sweden,1462,11,1462,-,,,, 417 | 2587,Black Leopards,South Africa,1209,13,1212,-,,,, 418 | 1806,Black Mambas,Zimbabwe,1270,9,1270,-,,,, 419 | 1840,Black Rhinos,Zimbabwe,1268,216,1253,+,,,, 420 | 413,Blackburn Rovers F.C.,England,1459,12,1459,-,,,, 421 | 378,Blackpool,England,1469,8,1469,-,,,, 422 | 1939,Blessing FC,Congo DR,1261,91,1255,+,,,, 423 | 1101,Bloemfontein Celtic,South Africa,1336,52,1341,-,,,, 424 | 1187,Blooming,Bolivia,1326,190,1347,-,,,, 425 | 1208,Bnei Sakhnin,Israel,1324,570,1272,+,,,, 426 | 1012,Bnei Yehuda Tel Aviv FC,Israel,1345,9,1345,-,,,, 427 | 485,Boavista,Portugal,1438,11,1440,-,,,, 428 | 83,Boca Juniors,Argentina,1649,41,1717,-,,,, 429 | 165,Bochum,Germany,1567,467,1405,+,,,, 430 | 151,Bodø / Glimt,Norway,1574,75,1529,+,,,, 431 | 553,Bohemian FC,Ireland,1423,89,1443,-,,,, 432 | 728,Bohemians 1905,Czech Republic,1388,238,1435,-,,,, 433 | 182,Bolívar,Bolivia,1555,119,1496,+,,,, 434 | 160,Bologna,Italy,1569,28,1548,+,,,, 435 | 1486,Bolognesi,Peru,1297,23,1297,-,,,, 436 | 356,Bolton Wanderers,England,1475,2,1475,-,,,, 437 | 2526,Bontang PKT,Indonesia,1218,27,1218,-,,,, 438 | 726,Borac Banja Luka,Bosnia and Herzegovina,1388,29,1379,+,,,, 439 | 2521,Borac ÄŒačak,Serbia,1218,27,1218,-,,,, 440 | 562,Bordeaux,France,1420,248,1492,-,,,, 441 | 23,Borussia Dortmund,Germany,1791,11,1856,-,,,, 442 | 71,Borussia Mönchengladbach,Germany,1658,22,1708,-,,,, 443 | 572,Boston River,Uruguay,1419,587,1328,+,,,, 444 | 1181,Botafogo FC,Cameroon,1327,6,1327,-,,,, 445 | 513,Botafogo FR,Brazil,1432,245,1379,+,,,, 446 | 499,Botev Plovdiv,Bulgaria,1434,211,1388,+,,,, 447 | 1507,Botev Vratsa,Bulgaria,1295,174,1310,-,,,, 448 | 618,BotoÅŸani,Romania,1407,51,1397,+,,,, 449 | 1926,Bouaké FC,Ivory Coast,1262,85,1267,-,,,, 450 | 683,Boulogne,France,1394,7,1394,-,,,, 451 | 1411,Boyacá Chicó FC,Colombia,1302,2,1302,-,,,, 452 | 2732,Boys' Town,Jamaica,1172,6,1172,-,,,, 453 | 68,Braga,Portugal,1662,27,1620,+,,,, 454 | 410,Brasilia,Brazil,1459,12,1459,-,,,, 455 | 1158,BraÅŸov,Romania,1329,5,1329,-,,,, 456 | 2313,Bray Wanderers,Ireland,1237,42,1237,-,,,, 457 | 99,Brentford FC,England,1624,192,1500,+,,,, 458 | 795,Brescia,Italy,1375,21,1375,-,,,, 459 | 322,Brest,France,1487,111,1450,+,,,, 460 | 58,Brighton & Hove Albion,England,1685,42,1615,+,,,, 461 | 1480,Brisbane Roar FC,Australia,1298,256,1322,-,,,, 462 | 2654,Brommapojkarna,Sweden,1197,10,1197,-,,,, 463 | 430,Brøndby,Denmark,1453,105,1488,-,,,, 464 | 2638,Brong Ahafo Stars,Ghana,1201,10,1201,-,,,, 465 | 1343,Brujas,Costa Rica,1309,0,1309,-,,,, 466 | 1949,BSK Borča,Serbia,1260,4,1260,-,,,, 467 | 1534,Bucaspor,Turkey,1292,30,1292,-,,,, 468 | 2097,Budafoki MTE,Hungary,1250,3,1250,-,,,, 469 | 374,Budućnost,Montenegro,1470,18,1474,-,,,, 470 | 1900,Buffaloes FC,Zimbabwe,1263,5,1263,-,,,, 471 | 1993,Buildcon,Zambia,1257,83,1263,-,,,, 472 | 2306,Bukavu Dawa,Congo DR,1237,45,1237,-,,,, 473 | 1206,Bukola Babes,Nigeria,1325,7,1325,-,,,, 474 | 1969,Bulawayo Chiefs,Zimbabwe,1259,138,1250,+,,,, 475 | 2309,Bulawayo City FC,Zimbabwe,1237,203,1250,-,,,, 476 | 681,Bunyodkor Tashkent,Uzbekistan,1395,59,1407,-,,,, 477 | 232,Buriram United,Thailand,1527,13,1521,+,,,, 478 | 164,Burnley,England,1567,27,1579,-,,,, 479 | 787,Bursaspor,Turkey,1376,19,1376,-,,,, 480 | 1350,Busan I'Park,South Korea,1308,2,1308,-,,,, 481 | 2490,Buxoro,Uzbekistan,1221,30,1221,-,,,, 482 | 1333,C.A. Cerro,Uruguay,1310,1,1310,-,,,, 483 | 1703,C.D. Hermanos Colmenarez,Venezuela,1279,271,1259,+,,,, 484 | 2152,C.D. Honduras Progreso,Honduras,1248,294,1228,+,,,, 485 | 2051,C.D. Lunda Sul,Angola,1253,56,1250,+,,,, 486 | 2025,CA Batna,Algeria,1255,1,1255,-,,,, 487 | 921,CA Bizertin,Tunisia,1357,89,1345,+,,,, 488 | 2493,CA Bordj Bou Arreridj,Algeria,1221,291,1247,-,,,, 489 | 354,CA Central Cordoba,Argentina,1476,15,1469,+,,,, 490 | 1086,CA Palmaflor,Bolivia,1338,12,1338,-,,,, 491 | 1943,Cabinda,Angola,1260,2,1260,-,,,, 492 | 112,Cádiz CF,Spain,1608,62,1554,+,,,, 493 | 687,Caen,France,1394,8,1394,-,,,, 494 | 1499,Caernarfon,Wales,1296,119,1288,+,,,, 495 | 2663,Caersws,Wales,1195,10,1195,-,,,, 496 | 327,Cagliari,Italy,1487,145,1550,-,,,, 497 | 2745,Caguas Huracán,Puerto Rico,1165,1,1165,-,,,, 498 | 1523,Caïman Douala,Cameroon,1293,31,1293,-,,,, 499 | 2505,Caledonia AIA,Trinidad and Tobago,1220,30,1220,-,,,, 500 | 982,Cambuur,Netherlands,1349,638,1288,+,,,, 501 | 2054,Canon Buromeca,Congo DR,1253,1,1253,-,,,, 502 | 942,Canon Sportif,Cameroon,1354,430,1306,+,,,, 503 | 1103,Canterbury United,New Zealand,1336,17,1336,-,,,, 504 | 1545,Capaco,Congo DR,1292,30,1292,-,,,, 505 | 671,Cape Town City FC,South Africa,1397,90,1377,+,,,, 506 | 840,CAPS United,Zimbabwe,1368,135,1388,-,,,, 507 | 1108,Carabobo FC,Venezuela,1335,86,1325,+,,,, 508 | 492,Caracas,Venezuela,1436,4,1433,+,,,, 509 | 364,Cardiff City,England,1472,4,1472,-,,,, 510 | 1177,Cardiff Met University,Wales,1328,49,1322,+,,,, 511 | 743,Carlos A. Mannucci,Peru,1385,142,1411,-,,,, 512 | 1731,Carmarthen,Wales,1277,1,1277,-,,,, 513 | 2640,Carolina Gigantes,Puerto Rico,1201,12,1201,-,,,, 514 | 2601,Caroní,Venezuela,1208,17,1208,-,,,, 515 | 231,Carpi,Italy,1528,3,1528,-,,,, 516 | 2760,Carrick Rangers,Northern Ireland,1144,1,1150,-,,,, 517 | 648,Cartaginés,Costa Rica,1401,39,1391,+,,,, 518 | 2487,CAS de Sévaré,Mali,1222,30,1222,-,,,, 519 | 307,Catania,Italy,1494,1,1494,-,,,, 520 | 1393,Cavaliers FC,Jamaica,1303,361,1274,+,,,, 521 | 2370,Cavaly,Haiti,1232,264,1250,-,,,, 522 | 1311,CD America de Quito,Ecuador,1313,5,1313,-,,,, 523 | 663,CD Antofagasta,Chile,1398,113,1422,-,,,, 524 | 2244,CD Audaz,El Salvador,1242,39,1242,-,,,, 525 | 1839,CD Chalatenango,El Salvador,1268,383,1246,+,,,, 526 | 1866,CD das Aves,Portugal,1266,11,1266,-,,,, 527 | 1735,CD EL Vencedor,El Salvador,1276,2,1276,-,,,, 528 | 1087,CD FAS,El Salvador,1338,51,1342,-,,,, 529 | 773,CD Jaguares,Colombia,1379,184,1351,+,,,, 530 | 2560,CD Junior Managua,Nicaragua,1215,22,1215,-,,,, 531 | 2621,CD Ocotal,Nicaragua,1204,27,1213,-,,,, 532 | 2438,CD Olmedo,Ecuador,1226,1231,1324,-,,,, 533 | 2590,CD Petapa,Guatemala,1209,19,1209,-,,,, 534 | 1719,CD Platense Municipal,El Salvador,1277,388,1250,+,,,, 535 | 863,CD Plaza Amador,Panama,1366,61,1355,+,,,, 536 | 2318,CD Real de Minas,Honduras,1236,41,1236,-,,,, 537 | 362,CD Santa Clara,Portugal,1473,21,1481,-,,,, 538 | 2565,CD Sonsonate,El Salvador,1214,23,1214,-,,,, 539 | 913,CD UT Cajamarca,Peru,1358,224,1391,-,,,, 540 | 834,CD Vida,Honduras,1369,350,1326,+,,,, 541 | 2040,Ceahlăul Piatra,Romania,1254,1,1254,-,,,, 542 | 79,Ceará SC,Brazil,1650,36,1600,+,,,, 543 | 2735,Cefn Druids AFC,Wales,1170,299,1229,-,,,, 544 | 1715,ÄŒelik NikÅ¡ić,Montenegro,1278,3,1278,-,,,, 545 | 1990,ÄŒelik Zenica,Bosnia and Herzegovina,1257,3,1257,-,,,, 546 | 66,Celta Vigo,Spain,1668,9,1691,-,,,, 547 | 47,Celtic,Scotland,1698,29,1645,+,,,, 548 | 1367,Central,Trinidad and Tobago,1307,4,1307,-,,,, 549 | 2075,Central Coast Mariners FC,Australia,1252,457,1220,+,,,, 550 | 977,Central Español,Uruguay,1350,0,1350,-,,,, 551 | 1989,Central Sport,Syria,1257,3,1257,-,,,, 552 | 1477,Centre Salif Kéita,Mali,1298,25,1298,-,,,, 553 | 2411,Centro Ítalo,Venezuela,1228,32,1228,-,,,, 554 | 1222,Ceramica Cleopatra,Egypt,1323,66,1329,-,,,, 555 | 708,Cercle Brugge,Belgium,1390,810,1296,+,,,, 556 | 397,Cerezo Osaka,Japan,1463,5,1458,+,,,, 557 | 1494,Cerrito,Uruguay,1296,53,1294,+,,,, 558 | 733,Cerro Largo,Uruguay,1387,180,1421,-,,,, 559 | 133,Cerro Porteño,Paraguay,1588,37,1556,+,,,, 560 | 1447,Cerro Porteño PF,Paraguay,1299,28,1299,-,,,, 561 | 907,Cesena,Italy,1359,11,1359,-,,,, 562 | 956,ÄŒeské BudÄ›jovice,Czech Republic,1353,112,1339,+,,,, 563 | 874,CF Montreal,Canada,1364,418,1315,+,,,, 564 | 140,CF Pachuca,Mexico,1583,59,1541,+,,,, 565 | 2568,CF Ungheni,Moldova,1213,23,1213,-,,,, 566 | 102,CFR Cluj,Romania,1622,8,1622,-,,,, 567 | 1489,Chabab Atlas Khénifra,Morocco,1297,22,1297,-,,,, 568 | 1754,Chabab Rif Al Hoceima,Morocco,1274,2,1274,-,,,, 569 | 1074,Chacarita Juniors,Argentina,1339,11,1339,-,,,, 570 | 1910,Chainat FC,Thailand,1263,5,1263,-,,,, 571 | 2311,Chambishi FC,Zambia,1237,205,1250,-,,,, 572 | 801,Changchun Yatai,China PR,1374,309,1334,+,,,, 573 | 1084,Chapecoense AF,Brazil,1338,611,1441,-,,,, 574 | 1763,Chapungu United,Zimbabwe,1273,0,1273,-,,,, 575 | 1015,Charlotte FC,Uruguay,1344,54,1350,-,,,, 576 | 718,Chaves,Portugal,1389,17,1389,-,,,, 577 | 8,Chelsea FC,England,1879,3,1925,-,,,, 578 | 1773,Chengdu Blades,China PR,1272,2,1272,-,,,, 579 | 1544,Chengdu Rongcheng F.C.,China PR,1292,103,1300,-,,,, 580 | 1936,Chennai City FC,India,1261,2,1261,-,,,, 581 | 1972,Chennaiyin FC,India,1259,3,1259,-,,,, 582 | 1555,Chepo FC,Panama,1291,26,1291,-,,,, 583 | 355,Cherno More Varna,Bulgaria,1475,68,1453,+,,,, 584 | 739,Chernomorets Burgas,Bulgaria,1386,19,1386,-,,,, 585 | 2321,Chiangmai FC,Thailand,1236,40,1236,-,,,, 586 | 875,Chiangrai United,Thailand,1363,202,1395,-,,,, 587 | 1659,Chicago Fire,United States,1283,32,1287,-,,,, 588 | 617,Chicken Inn FC,Zimbabwe,1407,45,1398,+,,,, 589 | 783,Chievo Verona,Italy,1377,19,1377,-,,,, 590 | 1642,Chikhura,Georgia,1285,16,1285,-,,,, 591 | 2644,Chinandega FC,Nicaragua,1200,12,1200,-,,,, 592 | 1667,Chippa United,South Africa,1283,33,1287,-,,,, 593 | 2391,Chirag Kerala,India,1230,32,1230,-,,,, 594 | 2436,Chiredzi FC,Zimbabwe,1226,29,1226,-,,,, 595 | 2617,Chivas USA,United States,1206,13,1206,-,,,, 596 | 889,Chonburi FC,Thailand,1361,41,1354,+,,,, 597 | 1527,Chongqing Liangjiang Athletic F.C.,China PR,1293,293,1321,-,,,, 598 | 1548,Chornomorets Odesa,Ukraine,1291,289,1318,-,,,, 599 | 980,Chorrillo,Panama,1350,0,1350,-,,,, 600 | 904,Churchill Brothers SC,India,1359,24,1361,-,,,, 601 | 2301,Cibalia,Croatia,1237,46,1237,-,,,, 602 | 2322,Cibao,Denmark,1236,40,1236,-,,,, 603 | 1529,Ciclon,Bolivia,1293,27,1293,-,,,, 604 | 451,Cienciano,Peru,1447,247,1390,+,,,, 605 | 1724,Clan Juvenil,Ecuador,1277,1,1277,-,,,, 606 | 533,Clermont Foot,France,1428,99,1450,-,,,, 607 | 886,Cliftonville,Northern Ireland,1361,417,1315,+,,,, 608 | 521,Club Africain,Tunisia,1430,17,1424,+,,,, 609 | 576,Club Atlético Bucaramanga,Colombia,1418,34,1410,+,,,, 610 | 1110,Club Atlético Grau,Peru,1335,19,1332,+,,,, 611 | 2416,Club Atletico Pantoja,Denmark,1228,32,1228,-,,,, 612 | 208,Club Atlético Platense,Argentina,1538,226,1450,+,,,, 613 | 800,Club Atletico Progreso,Uruguay,1374,54,1381,-,,,, 614 | 525,Club Atletico Torque,Uruguay,1429,47,1439,-,,,, 615 | 74,Club Brugge,Belgium,1657,0,1647,+,,,, 616 | 785,Club Deportivo Maldonado,Uruguay,1376,211,1347,+,,,, 617 | 2190,Club Olympique de Médenine,Tunisia,1245,44,1245,-,,,, 618 | 2440,Club Omnisports de Korhogo (CIV),Ivory Coast,1226,97,1238,-,,,, 619 | 1176,Club Petrolero,Bolivia,1328,4,1328,-,,,, 620 | 270,Club Puebla,Mexico,1510,38,1494,+,,,, 621 | 1165,Club River Plate,Paraguay,1328,73,1335,-,,,, 622 | 2367,Club Sando,Trinidad and Tobago,1232,38,1232,-,,,, 623 | 300,Club Sport Herediano,Costa Rica,1497,81,1465,+,,,, 624 | 737,Club Tijuana,Mexico,1386,97,1403,-,,,, 625 | 1363,CNI,Peru,1307,5,1307,-,,,, 626 | 2337,CO Bouafle,Ivory Coast,1235,40,1235,-,,,, 627 | 2282,Coatepeque,Guatemala,1240,38,1240,-,,,, 628 | 865,Coban Imperial,Guatemala,1365,153,1387,-,,,, 629 | 890,Cobreloa,Chile,1361,10,1361,-,,,, 630 | 586,Cobresal,Chile,1416,74,1398,+,,,, 631 | 2048,Cobresol,Peru,1254,0,1254,-,,,, 632 | 1705,CODM Meknès,Morocco,1279,4,1279,-,,,, 633 | 986,Coleraine,Northern Ireland,1349,207,1375,-,,,, 634 | 260,Colo Colo,Chile,1514,295,1421,+,,,, 635 | 798,Colombe du Dja et Lobo,Cameroon,1375,284,1336,+,,,, 636 | 2409,Colón C-3,Panama,1229,32,1229,-,,,, 637 | 305,Colón Santa Fe,Argentina,1494,439,1382,+,,,, 638 | 736,Colorado Rapids,United States,1386,277,1345,+,,,, 639 | 725,Columbus Crew,United States,1389,151,1418,-,,,, 640 | 1492,Comerciantes Unidos,Peru,1297,20,1297,-,,,, 641 | 2243,Concordia Chiajna,Romania,1242,39,1242,-,,,, 642 | 333,Connah's Quay,Wales,1484,24,1494,-,,,, 643 | 779,Consadole Sapporo,Japan,1378,50,1384,-,,,, 644 | 1069,Coquimbo Unido,Chile,1340,319,1381,-,,,, 645 | 880,Córdoba CF,Spain,1363,13,1363,-,,,, 646 | 80,Corinthians,Brazil,1649,91,1555,+,,,, 647 | 349,Coritiba,Brazil,1477,145,1434,+,,,, 648 | 707,Cork City,Ireland,1391,12,1391,-,,,, 649 | 2542,Corona BraÅŸov,Romania,1217,23,1217,-,,,, 650 | 1142,Cortuluá,Colombia,1331,44,1326,+,,,, 651 | 2082,Cosmos de Bafia,Cameroon,1252,0,1252,-,,,, 652 | 1726,Costuleni,Moldova,1277,0,1277,-,,,, 653 | 367,Coton Sport,Cameroon,1471,6,1471,-,,,, 654 | 217,CR Belouizdad,Algeria,1533,142,1474,+,,,, 655 | 813,Cracovia Kraków,Poland,1372,17,1372,-,,,, 656 | 2315,Cranborne Bullets FC,Zimbabwe,1237,209,1250,-,,,, 657 | 626,Criciúma,Brazil,1405,5,1405,-,,,, 658 | 2593,Croatia Sesvete,Croatia,1209,18,1209,-,,,, 659 | 585,Crotone,Italy,1416,6,1416,-,,,, 660 | 2034,Crown FC,Nigeria,1254,0,1254,-,,,, 661 | 1645,Crucero del Norte,Argentina,1285,15,1285,-,,,, 662 | 906,Crusaders,Northern Ireland,1359,124,1344,+,,,, 663 | 237,Cruz Azul,Mexico,1526,159,1643,-,,,, 664 | 304,Cruzeiro,Brazil,1495,1,1495,-,,,, 665 | 56,Crystal Palace,England,1685,110,1558,+,,,, 666 | 684,CS Alagoano AL,Brazil,1394,7,1394,-,,,, 667 | 520,CS Constantine,Algeria,1430,63,1415,+,,,, 668 | 782,CS Deportivo Pereira,Colombia,1377,244,1344,+,,,, 669 | 2162,CS Fola Esch,Luxembourg,1247,56,1250,-,,,, 670 | 2013,CS Hammam-Lif,Tunisia,1255,114,1263,-,,,, 671 | 2379,CS Makiso,Congo DR,1231,37,1231,-,,,, 672 | 590,CS Marítimo Madeira,Portugal,1415,113,1389,+,,,, 673 | 2218,CS Mioveni,Romania,1243,452,1197,+,,,, 674 | 465,CS Petrocub,Moldova,1443,194,1398,+,,,, 675 | 346,CS Sfaxien,Tunisia,1478,52,1500,-,,,, 676 | 239,CS Universitatea Craiova,Romania,1525,51,1500,+,,,, 677 | 1682,CS Uruguay,Costa Rica,1281,7,1281,-,,,, 678 | 302,CSD Comunicaciones,Guatemala,1496,35,1483,+,,,, 679 | 358,CSD Municipal,Guatemala,1474,26,1464,+,,,, 680 | 157,CSKA Moskva,Russia,1572,5,1562,+,,,, 681 | 2124,CSMS IaÅŸi,Romania,1249,46,1249,-,,,, 682 | 2180,CSyD Carchá,Guatemala,1246,42,1246,-,,,, 683 | 2580,CSyD Nueva Concepción,Guatemala,1211,1140,1300,-,,,, 684 | 1272,Cúcuta Deportivo,Colombia,1317,3,1317,-,,,, 685 | 263,Cuiaba,Brazil,1513,185,1447,+,,,, 686 | 331,ÄŒukarički,Serbia,1485,27,1474,+,,,, 687 | 1106,Cumbayá FC,Ecuador,1335,145,1350,-,,,, 688 | 2172,Cunupia FC,Trinidad and Tobago,1247,41,1247,-,,,, 689 | 547,Curicó Unido,Chile,1424,614,1328,+,,,, 690 | 996,Cusco FC,Peru,1347,264,1384,-,,,, 691 | 1804,Dacia Buiucani,Moldova,1270,9,1270,-,,,, 692 | 167,Dacia Chisinau,Moldova,1567,13,1567,-,,,, 693 | 407,Daegu FC,South Korea,1460,22,1452,+,,,, 694 | 2437,Daejeon Citizen,South Korea,1226,49,1224,+,,,, 695 | 2766,Dainava Alytus,Lithuania,1128,2,1114,+,,,, 696 | 1674,Dalian Professional FC,China PR,1282,149,1295,-,,,, 697 | 1609,Dalian Shide,China PR,1287,19,1287,-,,,, 698 | 1805,Dalkurd FF,Sweden,1270,9,1270,-,,,, 699 | 950,Damac FC,Saudi Arabia,1354,140,1336,+,,,, 700 | 1271,Damash,Iran,1317,4,1317,-,,,, 701 | 1765,Dan Kassawa,Niger,1273,0,1273,-,,,, 702 | 633,Danubio,Uruguay,1403,221,1365,+,,,, 703 | 386,Darmstadt,Germany,1467,11,1467,-,,,, 704 | 2388,Dauphins Noirs,Congo DR,1230,50,1229,+,,,, 705 | 1297,DC United,United States,1314,57,1308,+,,,, 706 | 1073,De Graafschap,Netherlands,1339,11,1339,-,,,, 707 | 2482,Debo Club,Mali,1222,31,1222,-,,,, 708 | 968,Debrecen,Hungary,1352,111,1365,-,,,, 709 | 1766,Dečić,Montenegro,1273,441,1247,+,,,, 710 | 799,Defence Force FC,Trinidad and Tobago,1375,18,1375,-,,,, 711 | 73,Defensa y Justicia,Argentina,1657,8,1666,-,,,, 712 | 1232,Defensor La Bocana,Peru,1322,9,1322,-,,,, 713 | 719,Defensor Sporting,Uruguay,1389,4,1386,+,,,, 714 | 1663,Degerfors IF,Sweden,1283,397,1318,-,,,, 715 | 440,Delfin SC,Ecuador,1451,33,1457,-,,,, 716 | 1916,Delhi Dynamos FC,India,1262,5,1262,-,,,, 717 | 1399,Delta Force FC,Nigeria,1303,5,1303,-,,,, 718 | 2283,Deltras Sidoarjo,Indonesia,1240,38,1240,-,,,, 719 | 523,Dempo SC,India,1430,2,1430,-,,,, 720 | 1563,Denguélé Sport,Ivory Coast,1290,23,1290,-,,,, 721 | 2010,Denizlispor,Turkey,1256,2,1256,-,,,, 722 | 1011,Deportes Iquique,Chile,1345,9,1345,-,,,, 723 | 1092,Deportes La Serena,Chile,1338,385,1388,-,,,, 724 | 1562,Deportes Quindío,Colombia,1290,158,1278,+,,,, 725 | 836,Deportes Temuco,Chile,1369,14,1369,-,,,, 726 | 2408,Deportiva Carmelita,Costa Rica,1229,31,1229,-,,,, 727 | 901,Deportiva San Carlos,Costa Rica,1359,41,1352,+,,,, 728 | 1608,Deportivo Achuapa,Guatemala,1287,46,1285,+,,,, 729 | 299,Deportivo Alaves,Spain,1497,146,1567,-,,,, 730 | 1530,Deportivo Anzoátegui,Venezuela,1293,27,1293,-,,,, 731 | 988,Deportivo Binacional,Peru,1349,241,1322,+,,,, 732 | 324,Deportivo Cali,Colombia,1487,1,1489,-,,,, 733 | 1125,Deportivo Capiatá,Paraguay,1333,7,1333,-,,,, 734 | 1255,Deportivo Carapeguá,Paraguay,1319,2,1319,-,,,, 735 | 1814,Deportivo Chiantla,Guatemala,1270,10,1270,-,,,, 736 | 673,Deportivo Cuenca,Ecuador,1397,160,1367,+,,,, 737 | 1607,Deportivo del Este,Panama,1287,4,1289,-,,,, 738 | 559,Deportivo Heredia,Guatemala,1421,5,1421,-,,,, 739 | 330,Deportivo La Coruña,Spain,1486,1,1486,-,,,, 740 | 1248,Deportivo La Guaira FC,Venezuela,1319,497,1380,-,,,, 741 | 981,Deportivo Lara,Venezuela,1350,214,1376,-,,,, 742 | 2331,Deportivo Las Sabanas,Nicaragua,1235,40,1235,-,,,, 743 | 1620,Deportivo Llacuabamba,Peru,1287,20,1287,-,,,, 744 | 1220,Deportivo Los Caimanes,Peru,1323,9,1323,-,,,, 745 | 647,Deportivo Malacateco,Guatemala,1401,566,1323,+,,,, 746 | 1958,Deportivo Marquense,Guatemala,1260,3,1260,-,,,, 747 | 1942,Deportivo Mixco,Guatemala,1260,2,1260,-,,,, 748 | 1050,Deportivo Municipal,Peru,1341,356,1303,+,,,, 749 | 823,Deportivo Pasto,Colombia,1370,364,1445,-,,,, 750 | 2421,Deportivo Petare,Venezuela,1228,32,1228,-,,,, 751 | 1051,Deportivo Quevedo,Ecuador,1341,0,1341,-,,,, 752 | 1305,Deportivo Quito,Ecuador,1314,6,1314,-,,,, 753 | 1269,Deportivo Sanarate,Guatemala,1318,2,1318,-,,,, 754 | 1493,Deportivo Santaní,Paraguay,1297,20,1297,-,,,, 755 | 476,Deportivo Saprissa,Costa Rica,1440,98,1466,-,,,, 756 | 2134,Deportivo Savio,Honduras,1249,43,1249,-,,,, 757 | 517,Deportivo Táchira,Venezuela,1431,5,1430,+,,,, 758 | 1197,Deportivo Walter Ferretti,Nicaragua,1325,61,1318,+,,,, 759 | 311,Deportivo Xerez,Spain,1491,5,1491,-,,,, 760 | 2175,Deportivo Zulia,Venezuela,1246,42,1246,-,,,, 761 | 519,Derry City,Ireland,1431,198,1386,+,,,, 762 | 1351,Desportivo Da Huíla,Angola,1308,56,1302,+,,,, 763 | 2567,Destroyers,Bolivia,1213,23,1213,-,,,, 764 | 2123,Diables Noirs,Congo,1250,46,1250,-,,,, 765 | 2204,Diaraf,Senegal,1244,39,1244,-,,,, 766 | 2550,Dibba Al-Fujairah Club,United Arab Emirates,1216,22,1216,-,,,, 767 | 928,Difaâ El Jadida,Morocco,1357,174,1379,-,,,, 768 | 2197,Differdange 03,Luxembourg,1245,41,1245,-,,,, 769 | 1081,Dijon,France,1339,15,1339,-,,,, 770 | 1046,Dila Gori,Georgia,1341,233,1317,+,,,, 771 | 2657,Dinamo Bender,Moldova,1197,11,1197,-,,,, 772 | 1583,Dinamo BucureÅŸti,Romania,1289,700,1360,-,,,, 773 | 215,Dinamo Minsk,Belarus,1536,89,1496,+,,,, 774 | 163,Dinamo Moskva,Russia,1567,98,1515,+,,,, 775 | 2635,Dinamo Samarkand,Uzbekistan,1202,11,1207,-,,,, 776 | 452,Dinamo Tbilisi,Georgia,1447,3,1445,+,,,, 777 | 2050,Dinamo Vranje,Serbia,1253,1,1253,-,,,, 778 | 54,Dinamo Zagreb,Croatia,1686,3,1705,-,,,, 779 | 1699,Dinamo-Auto,Moldova,1280,22,1278,+,,,, 780 | 1464,Diósgyör,Hungary,1299,28,1299,-,,,, 781 | 923,Diriangén FC,Nicaragua,1357,277,1325,+,,,, 782 | 1734,Diyarbakirspor,Turkey,1276,1,1276,-,,,, 783 | 396,Djoliba AC,Mali,1463,10,1463,-,,,, 784 | 268,DjurgÃ¥rden,Sweden,1512,30,1523,-,,,, 785 | 2709,Dnepr Mogilev,Belarus,1181,8,1181,-,,,, 786 | 214,Dnipro Dnipropetrovsk,Ukraine,1536,1,1536,-,,,, 787 | 376,Dolphins FC,Nigeria,1469,250,1406,+,,,, 788 | 2473,Domant FC,Angola,1223,27,1223,-,,,, 789 | 508,Domžale,Slovenia,1433,131,1466,-,,,, 790 | 1247,Don Bosco SC,Congo DR,1319,234,1299,+,,,, 791 | 2333,Dongo,Zimbabwe,1235,39,1235,-,,,, 792 | 1042,Dorados Sinaloa,Mexico,1342,0,1342,-,,,, 793 | 1744,Douanes Niamey,Niger,1275,2,1275,-,,,, 794 | 2459,Douglas Warriors,Zimbabwe,1224,26,1224,-,,,, 795 | 2046,Doxa Dramas,Greece,1254,0,1254,-,,,, 796 | 1257,Doxa Katokopia,Cyprus,1318,3,1318,-,,,, 797 | 1717,Dragon,Tahiti,1278,3,1278,-,,,, 798 | 2420,Dragón,El Salvador,1228,32,1228,-,,,, 799 | 1815,Dragon de Yaoundé,Cameroon,1270,236,1291,-,,,, 800 | 1629,Dragons,Congo DR,1286,18,1286,-,,,, 801 | 1790,Drava,Slovenia,1271,9,1271,-,,,, 802 | 1283,DRB Tadjenanet,Algeria,1316,6,1316,-,,,, 803 | 1701,Dreams FC,Ghana,1280,39,1276,+,,,, 804 | 1780,Drogheda United,Ireland,1272,126,1263,+,,,, 805 | 275,DSC Arminia Bielefeld,Germany,1508,97,1552,-,,,, 806 | 2195,DSK Shivajians,India,1245,42,1245,-,,,, 807 | 2656,Dubai Club,United Arab Emirates,1197,10,1197,-,,,, 808 | 1865,Dubnica,Slovakia,1266,11,1266,-,,,, 809 | 1483,Duguwolofila,Mali,1297,22,1297,-,,,, 810 | 1946,Dukla Banska Bystrica,Slovakia,1260,3,1260,-,,,, 811 | 1625,Dukla Praha,Czech Republic,1286,19,1286,-,,,, 812 | 415,Dunajska Streda,Slovakia,1458,95,1490,-,,,, 813 | 1882,Dunaújváros Pálhalma SE,Hungary,1265,5,1265,-,,,, 814 | 1824,Dunav Ruse,Bulgaria,1269,11,1269,-,,,, 815 | 1748,Dunbeholden FC,Jamaica,1275,336,1252,+,,,, 816 | 317,Dundalk FC,Ireland,1489,73,1521,-,,,, 817 | 2615,Dundee FC,Scotland,1206,39,1200,+,,,, 818 | 1045,Dundee United,Scotland,1341,312,1307,+,,,, 819 | 2274,Dunfermline Athletic,Scotland,1240,38,1240,-,,,, 820 | 2767,Dungannon Swifts,Northern Ireland,1122,0,1129,-,,,, 821 | 63,Dynamo Kyiv,Ukraine,1669,3,1679,-,,,, 822 | 278,Dynamos,Zimbabwe,1507,6,1506,+,,,, 823 | 2467,Džiugas TelÅ¡iai,Lithuania,1224,156,1240,-,,,, 824 | 1830,Eagles,Zimbabwe,1268,12,1268,-,,,, 825 | 552,East Bengal Club,India,1423,11,1423,-,,,, 826 | 2338,Eastern Sports Club,Hong Kong,1235,40,1235,-,,,, 827 | 931,Eastern Stars,Papua New Guinea,1356,12,1356,-,,,, 828 | 910,Eastern Suburbs,New Zealand,1359,9,1359,-,,,, 829 | 1436,Ebusua Dwarfs,Ghana,1301,103,1294,+,,,, 830 | 283,EC Juventude,Brazil,1504,138,1454,+,,,, 831 | 738,Eding Sport FC,Cameroon,1386,419,1328,+,,,, 832 | 2445,EFYM,Ivory Coast,1225,24,1225,-,,,, 833 | 2516,Eger,Hungary,1219,28,1219,-,,,, 834 | 1669,EGS Gafsa,Tunisia,1283,11,1283,-,,,, 835 | 254,Eibar,Spain,1517,2,1517,-,,,, 836 | 426,Eintracht Braunschweig,Germany,1454,7,1454,-,,,, 837 | 50,Eintracht Frankfurt,Germany,1695,21,1746,-,,,, 838 | 1532,Ekranas,Lithuania,1293,28,1293,-,,,, 839 | 1858,El Dakhleya,Egypt,1267,15,1267,-,,,, 840 | 2145,El Dorado,Denmark,1248,42,1248,-,,,, 841 | 1628,El Entag El Harby,Egypt,1286,142,1272,+,,,, 842 | 829,El Geish,Egypt,1370,117,1352,+,,,, 843 | 1508,El Gounah,Egypt,1295,226,1317,-,,,, 844 | 537,El Jaish (Doha),Qatar,1427,3,1426,+,,,, 845 | 1240,El Kanemi Warriors,Nigeria,1321,3,1321,-,,,, 846 | 2032,El Mansura,Egypt,1254,0,1254,-,,,, 847 | 2060,El Minya,Egypt,1253,1,1253,-,,,, 848 | 1111,El Nacional,Ecuador,1335,12,1335,-,,,, 849 | 2227,El Nasr Tadeen,Egypt,1243,40,1243,-,,,, 850 | 2558,El Nsoor,Sudan,1215,22,1215,-,,,, 851 | 1967,El Raja,Egypt,1259,2,1259,-,,,, 852 | 974,El Tanque Sisley,Uruguay,1350,15,1350,-,,,, 853 | 178,El Zamalek,Egypt,1557,38,1575,-,,,, 854 | 1982,El-Sharkia Lel Dokhan (Eastern Company SC),Egypt,1258,541,1300,-,,,, 855 | 934,Elazığspor,Turkey,1356,13,1356,-,,,, 856 | 155,Elche,Spain,1573,36,1545,+,,,, 857 | 2194,Eleven Wise,Ghana,1245,42,1245,-,,,, 858 | 2026,Eleven Wonders FC,Ghana,1255,166,1248,+,,,, 859 | 384,Elfsborg,Sweden,1468,99,1438,+,,,, 860 | 1672,Elima,Congo DR,1282,13,1282,-,,,, 861 | 2455,Elmina Sharks,Ghana,1225,499,1259,-,,,, 862 | 186,Emelec,Ecuador,1552,0,1548,+,,,, 863 | 2742,Emirates Club,United Arab Emirates,1166,60,1193,-,,,, 864 | 297,Empoli FC,Italy,1498,32,1513,-,,,, 865 | 1575,Enosis Paralimni,Cyprus,1289,23,1289,-,,,, 866 | 610,ENPPI,Egypt,1407,81,1391,+,,,, 867 | 1852,Entente Sportive du Bafing,Ivory Coast,1267,233,1252,+,,,, 868 | 565,Enugu Rangers,Nigeria,1420,19,1422,-,,,, 869 | 769,Envigado,Colombia,1380,139,1358,+,,,, 870 | 505,Enyimba,Nigeria,1433,44,1444,-,,,, 871 | 1727,EO Sidi Bouzid,Tunisia,1277,0,1277,-,,,, 872 | 2231,Erakor Golden Star,Vanuatu,1243,39,1243,-,,,, 873 | 1404,Ergotelis,Greece,1303,3,1303,-,,,, 874 | 1951,Ermis Aradippou,Cyprus,1260,5,1260,-,,,, 875 | 1038,Erzurum BB,Turkey,1342,3,1342,-,,,, 876 | 2469,ES Bingerville,Ivory Coast,1224,25,1224,-,,,, 877 | 418,ES Sétif,Algeria,1457,82,1483,-,,,, 878 | 1757,Esan United,Thailand,1274,1,1274,-,,,, 879 | 1823,Esbjerg fB,Denmark,1269,11,1269,-,,,, 880 | 1004,EskiÅŸehirspor,Turkey,1346,3,1346,-,,,, 881 | 146,Esperance de Tunis,Tunisia,1579,36,1605,-,,,, 882 | 2268,Espoir,Niger,1241,37,1241,-,,,, 883 | 1817,ESPOLI,Ecuador,1270,10,1270,-,,,, 884 | 168,Esteghlal,Iran,1566,56,1530,+,,,, 885 | 2606,Esteghlal Ahvaz,Iran,1208,16,1208,-,,,, 886 | 1564,Esteghlal Khuzestan FC,Iran,1290,23,1290,-,,,, 887 | 685,Estoril,Portugal,1394,158,1366,+,,,, 888 | 2619,Estudiantes de Caracas,Venezuela,1206,13,1206,-,,,, 889 | 87,Estudiantes de la Plata,Argentina,1638,153,1522,+,,,, 890 | 1541,Estudiantes de Mérida,Venezuela,1292,155,1281,+,,,, 891 | 1324,Estudiantes Tecos,Mexico,1311,3,1311,-,,,, 892 | 1320,Etar,Bulgaria,1312,6,1312,-,,,, 893 | 1573,Ethnikos Achnas,Cyprus,1290,242,1311,-,,,, 894 | 2171,Etoile du Kivu,Congo DR,1247,65,1250,-,,,, 895 | 285,Etoile du Sahel,Tunisia,1503,76,1538,-,,,, 896 | 1238,Etoile Metlaoui,Tunisia,1321,21,1323,-,,,, 897 | 1406,Eupen,Belgium,1303,519,1360,-,,,, 898 | 578,Everton CD,Chile,1418,141,1386,+,,,, 899 | 135,Everton FC,England,1587,67,1660,-,,,, 900 | 481,Evian TG,France,1439,1,1439,-,,,, 901 | 853,Excelsior,Netherlands,1366,11,1366,-,,,, 902 | 1838,F91 Dudelange,Luxembourg,1268,8,1268,-,,,, 903 | 2047,FA Å iauliai,Lithuania,1254,60,1250,+,,,, 904 | 2697,Fajardo,Puerto Rico,1187,8,1187,-,,,, 905 | 1758,Fajr Sepasi,Iran,1274,543,1323,-,,,, 906 | 2609,Falkenbergs FF,Sweden,1206,16,1206,-,,,, 907 | 1695,Falkirk,Scotland,1280,5,1280,-,,,, 908 | 546,FAR Rabat,Morocco,1425,62,1410,+,,,, 909 | 936,Farul ConstanÈ›a,Romania,1355,505,1300,+,,,, 910 | 486,Fatih Karagümrük,Turkey,1437,53,1424,+,,,, 911 | 1370,Fauve Azur Elite FC,Cameroon,1306,71,1300,+,,,, 912 | 2483,FB Gulbene,Latvia,1222,31,1222,-,,,, 913 | 245,FBC Melgar,Peru,1522,357,1411,+,,,, 914 | 2443,FC Academia Chisinau,Moldova,1225,25,1225,-,,,, 915 | 2138,FC Alashkert,Armenia,1249,32,1250,-,,,, 916 | 1514,FC Anzhi Makhachkala,Russia,1294,28,1294,-,,,, 917 | 858,FC Arda Kardzhali,Bulgaria,1366,134,1385,-,,,, 918 | 1795,FC Arsenal Dzerzhinsk,Belarus,1271,354,1300,-,,,, 919 | 1162,FC Arsenal Kiev,Ukraine,1328,4,1328,-,,,, 920 | 1124,FC Ashdod,Israel,1333,318,1371,-,,,, 921 | 172,FC Basel,Switzerland,1563,21,1569,-,,,, 922 | 1079,FC Bravos DO Maquis,Angola,1339,46,1332,+,,,, 923 | 632,FC Brest,Belarus,1404,347,1503,-,,,, 924 | 1627,FC Carlos Stein,Peru,1286,286,1309,-,,,, 925 | 1227,FC Chindia TârgoviÅŸte,Romania,1323,87,1331,-,,,, 926 | 2624,FC Cincinnati,United States,1204,20,1202,+,,,, 927 | 2763,FC Codru Lozova,Moldova,1138,1,1138,-,,,, 928 | 812,FC CSKA 1948 Sofia,Bulgaria,1373,410,1323,+,,,, 929 | 759,FC Dallas,United States,1382,55,1369,+,,,, 930 | 1421,FC Daugava,Latvia,1302,1,1302,-,,,, 931 | 652,FC Dinamo Batumi,Georgia,1400,333,1349,+,,,, 932 | 1685,FC Dnyapro Mogilev,Belarus,1281,142,1294,-,,,, 933 | 1517,FC Dordrecht,Netherlands,1294,32,1294,-,,,, 934 | 1706,FC Dunărea CălăraÅŸi,Romania,1279,4,1279,-,,,, 935 | 2354,FC Edmonton,Canada,1233,41,1233,-,,,, 936 | 674,FC Emmen,Netherlands,1397,8,1397,-,,,, 937 | 962,FC Energetik-BGU Minsk,Belarus,1352,393,1307,+,,,, 938 | 379,FC Famalicão,Portugal,1469,11,1469,-,,,, 939 | 1278,FC Fastav Zlin,Czech Republic,1316,153,1301,+,,,, 940 | 2739,FC FloreÅŸti,Moldova,1168,295,1228,-,,,, 941 | 2232,FC Gagra,Georgia,1243,126,1250,-,,,, 942 | 2090,FC Goa,India,1251,1,1251,-,,,, 943 | 587,FC Groningen,Netherlands,1416,241,1478,-,,,, 944 | 2677,FC Guria Lanchkhuti,Georgia,1192,9,1192,-,,,, 945 | 2350,FC Helsingør,Denmark,1234,40,1234,-,,,, 946 | 351,FC Infonet Tallinn,Estonia,1476,2,1476,-,,,, 947 | 507,FC Inter Turku (FIN),Finland,1433,69,1450,-,,,, 948 | 1134,FC Juárez,Mexico,1331,371,1377,-,,,, 949 | 2758,FC Jurmala,Latvia,1149,3,1149,-,,,, 950 | 1889,FC Kapaz,Azerbaijan,1264,2,1264,-,,,, 951 | 2757,FC Kolkheti-1913 Poti,Georgia,1152,0,1152,-,,,, 952 | 606,FC Kolos Kovalivka,Ukraine,1408,135,1441,-,,,, 953 | 201,FC Krasnodar,Russia,1541,59,1515,+,,,, 954 | 2540,FC KTP,Finland,1217,860,1282,-,,,, 955 | 2652,FC Kuressaare,Estonia,1198,107,1150,+,,,, 956 | 885,FC Lahti,Finland,1362,167,1386,-,,,, 957 | 2149,FC Lubumbashi sport,Congo DR,1248,155,1257,-,,,, 958 | 1802,FC Luch Minsk,Belarus,1270,9,1270,-,,,, 959 | 1441,FC Lviv,Ukraine,1300,44,1299,+,,,, 960 | 2381,FC Ma'an,Jordan,1231,156,1246,-,,,, 961 | 2199,FC Maktaaral,Kazakhstan,1245,93,1250,-,,,, 962 | 2348,FC Masr,Egypt,1234,39,1234,-,,,, 963 | 2512,FC Merani Tbilisi,Georgia,1220,29,1220,-,,,, 964 | 148,FC Midtjylland,Denmark,1578,32,1552,+,,,, 965 | 388,FC Milsami Orhei,Moldova,1466,14,1467,-,,,, 966 | 1896,FC Minaj,Ukraine,1264,381,1296,-,,,, 967 | 1190,FC Minsk,Belarus,1326,27,1328,-,,,, 968 | 2205,FC MK,Congo DR,1244,39,1244,-,,,, 969 | 920,FC Nizhny Novgorod,Russia,1357,41,1350,+,,,, 970 | 709,FC Orenburg,Russia,1390,12,1390,-,,,, 971 | 2187,FC Pasching,Austria,1246,44,1246,-,,,, 972 | 695,FC Platinum,Zimbabwe,1393,61,1379,+,,,, 973 | 13,FC Porto,Portugal,1841,3,1835,+,,,, 974 | 2376,FC Pune City,India,1232,37,1232,-,,,, 975 | 1794,FC Rapid Ghidighici,Moldova,1271,10,1271,-,,,, 976 | 2247,FC Renaissance du Congo,Denmark,1242,53,1248,-,,,, 977 | 584,FC Ruh Brest,Belarus,1416,198,1374,+,,,, 978 | 2628,FC Rustavi,Georgia,1203,11,1203,-,,,, 979 | 1755,FC Samgurali Tskhaltubo,Georgia,1274,229,1258,+,,,, 980 | 2544,FC Samtredia,Georgia,1216,297,1244,-,,,, 981 | 2589,FC Saxan,Moldova,1209,19,1209,-,,,, 982 | 664,FC Seoul,South Korea,1398,196,1364,+,,,, 983 | 60,FC Sheriff,Moldova,1683,13,1649,+,,,, 984 | 2708,FC Shukura Kobuleti,Georgia,1181,7,1188,-,,,, 985 | 2235,FC Simba,Denmark,1243,159,1252,-,,,, 986 | 2591,FC Sioni Bolnisi,Georgia,1209,12,1211,-,,,, 987 | 925,FC Skonto Riga,Latvia,1357,11,1357,-,,,, 988 | 2576,FC Smorgon,Belarus,1212,10,1216,-,,,, 989 | 2270,FC Spicul ChiÈ™căreni,Moldova,1241,37,1241,-,,,, 990 | 489,FC St. Gallen 1879,Switzerland,1436,98,1414,+,,,, 991 | 1362,FC Struga Trim-Lum,Nigeria,1307,26,1310,-,,,, 992 | 2572,FC Stumbras,Lithuania,1212,24,1212,-,,,, 993 | 1957,FC Telavi,Georgia,1260,370,1239,+,,,, 994 | 491,FC Tokyo,Japan,1436,13,1432,+,,,, 995 | 2753,FC Torpedo Minsk,Belarus,1156,1,1156,-,,,, 996 | 825,FC Torpedo Moscow,Russia,1370,14,1370,-,,,, 997 | 1359,FC Tsarsko Selo Sofia 2015,Bulgaria,1308,129,1322,-,,,, 998 | 1954,FC Tskhinvali,Georgia,1260,4,1260,-,,,, 999 | 150,FC Twente,Netherlands,1576,497,1402,+,,,, 1000 | 1180,FC U Craiova 1948,Romania,1327,261,1300,+,,,, 1001 | 721,FC Ufa,Russia,1389,87,1405,-,,,, 1002 | 543,FC Ural,Russia,1425,1,1423,+,,,, 1003 | 282,FC Utrecht,Netherlands,1504,127,1566,-,,,, 1004 | 1567,FC Vaduz,Switzerland,1290,23,1290,-,,,, 1005 | 423,FC Vaslui,Romania,1456,10,1456,-,,,, 1006 | 857,FC Veris,Moldova,1366,12,1366,-,,,, 1007 | 756,FC Vizela,Portugal,1382,103,1400,-,,,, 1008 | 973,FC Voluntari,Romania,1351,423,1303,+,,,, 1009 | 1932,FC Wacker Innsbruck,Austria,1261,4,1261,-,,,, 1010 | 1365,FC Zbrojovka Brno,Czech Republic,1307,5,1307,-,,,, 1011 | 2746,FC Zugdidi,Georgia,1164,2,1164,-,,,, 1012 | 64,FCI Levadia Tallinn,Estonia,1669,6,1654,+,,,, 1013 | 1515,Feirense,Portugal,1294,30,1294,-,,,, 1014 | 113,Fenerbahçe,Turkey,1608,35,1571,+,,,, 1015 | 628,Fénix,Uruguay,1405,32,1412,-,,,, 1016 | 174,Ferencváros,Hungary,1562,48,1590,-,,,, 1017 | 1778,Ferroviário da Beira,Mozambique,1272,4,1272,-,,,, 1018 | 2339,Ferroviário Do Huambo,Angola,1235,100,1245,-,,,, 1019 | 947,Feutcheu FC,Cameroon,1354,116,1367,-,,,, 1020 | 49,Feyenoord,Netherlands,1697,53,1612,+,,,, 1021 | 1655,FF Jaro,Finland,1284,14,1284,-,,,, 1022 | 2257,FH Hafnarfjordur,Iceland,1241,39,1241,-,,,, 1023 | 503,Figueirense,Brazil,1434,8,1434,-,,,, 1024 | 1917,Finn Harps,Ireland,1262,71,1267,-,,,, 1025 | 94,Fiorentina,Italy,1630,14,1606,+,,,, 1026 | 1115,FK AGMK,Uzbekistan,1334,222,1310,+,,,, 1027 | 400,FK Akhmat Grozny,Russia,1463,20,1454,+,,,, 1028 | 2044,FK Aksu,Kazakhstan,1254,63,1250,+,,,, 1029 | 2058,FK Arys,Kazakhstan,1253,142,1248,+,,,, 1030 | 2281,FK Atlantas,Lithuania,1240,38,1240,-,,,, 1031 | 2100,FK Auda,Latvia,1250,7,1250,-,,,, 1032 | 2752,FK Bačka Palanka,Serbia,1158,0,1158,-,,,, 1033 | 2673,FK Belasica Strumica,Macedonia,1193,10,1193,-,,,, 1034 | 2021,FK Bokelj,Montenegro,1255,1,1255,-,,,, 1035 | 2401,FK Borec Veles,Nigeria,1230,715,1281,-,,,, 1036 | 2332,FK Bregalnica Stip,Macedonia,1235,180,1222,+,,,, 1037 | 446,FK Desna Chernihiv,Ukraine,1449,79,1469,-,,,, 1038 | 1904,FK Donji Srem,Serbia,1263,6,1263,-,,,, 1039 | 2643,FK Drina Zvornik,Bosnia and Herzegovina,1200,12,1200,-,,,, 1040 | 2242,FK Gorno Lisice,Macedonia,1242,39,1242,-,,,, 1041 | 1214,FK Gorodeya,Belarus,1324,9,1324,-,,,, 1042 | 2702,FK Gostivar,Macedonia,1185,8,1185,-,,,, 1043 | 2549,FK Guliston,Uzbekistan,1216,21,1216,-,,,, 1044 | 1077,FK Haugesund,Norway,1339,291,1374,-,,,, 1045 | 1994,FK Horizont Turnovo,Macedonia,1257,4,1257,-,,,, 1046 | 2494,FK InÄ‘ija,Serbia,1221,29,1221,-,,,, 1047 | 1170,FK Inhulets' Petrove,Ukraine,1328,249,1356,-,,,, 1048 | 1289,FK Iskra,Montenegro,1315,28,1318,-,,,, 1049 | 1728,FK Istiqlol Dushanbe,Tajikistan,1277,102,1288,-,,,, 1050 | 2620,FK Jelgava,Latvia,1205,13,1205,-,,,, 1051 | 1739,FK Jerv,Norway,1276,298,1300,-,,,, 1052 | 1881,FK Jezero Plav,Montenegro,1265,94,1259,+,,,, 1053 | 1777,FK Kaspiy Aktau,Kazakhstan,1272,219,1257,+,,,, 1054 | 1424,FK Kauno Zalgiris,Lithuania,1301,48,1305,-,,,, 1055 | 1435,FK Kolubara,Serbia,1301,6,1300,+,,,, 1056 | 2147,FK Kom Podgorica,Montenegro,1248,41,1248,-,,,, 1057 | 1944,FK Krupa,Bosnia and Herzegovina,1260,2,1260,-,,,, 1058 | 2699,FK Leotar,Bosnia and Herzegovina,1186,28,1177,+,,,, 1059 | 989,FK Liepājas Metalurgs,Latvia,1349,261,1319,+,,,, 1060 | 1364,FK Mariupol Illichivets',Ukraine,1307,547,1369,-,,,, 1061 | 1977,FK Metalac,Serbia,1258,365,1288,-,,,, 1062 | 2627,Fk Metalurg Skopje,Macedonia,1203,11,1203,-,,,, 1063 | 2769,FK Metta,Latvia,1090,0,1099,-,,,, 1064 | 2238,FK Mladost Doboj Kakanj,Bosnia and Herzegovina,1242,37,1242,-,,,, 1065 | 1003,FK Mladost Lučani,Serbia,1346,68,1353,-,,,, 1066 | 2113,FK Olympic Tashkent,Uzbekistan,1250,6,1250,-,,,, 1067 | 2653,FK Palanga,Lithuania,1198,11,1198,-,,,, 1068 | 1473,FK Panevėžys,Lithuania,1298,497,1259,+,,,, 1069 | 784,FK Pardubice,Czech Republic,1377,175,1410,-,,,, 1070 | 2427,FK Podgorica,Montenegro,1227,171,1244,-,,,, 1071 | 2435,FK Pohronie,Slovakia,1226,857,1291,-,,,, 1072 | 1720,FK Proleter Novi Sad,Serbia,1277,487,1321,-,,,, 1073 | 912,FK Radnik Surdulica,Serbia,1358,236,1330,+,,,, 1074 | 26,FK Red Star Belgrade,Serbia,1767,9,1731,+,,,, 1075 | 924,FK Riteriai,Lithuania,1357,13,1353,+,,,, 1076 | 477,FK Rostov,Russia,1440,126,1476,-,,,, 1077 | 1243,FK Rotor Volgograd,Russia,1320,1,1320,-,,,, 1078 | 454,FK Sarajevo,Bosnia and Herzegovina,1447,119,1483,-,,,, 1079 | 2389,FK Senica,Slovakia,1230,193,1248,-,,,, 1080 | 1287,FK Septemvri Sofia,Bulgaria,1315,6,1315,-,,,, 1081 | 2107,FK Å ilas,Lithuania,1250,0,1250,-,,,, 1082 | 1922,FK Sileks,Macedonia,1262,6,1262,-,,,, 1083 | 2423,FK Skopje,Macedonia,1227,77,1238,-,,,, 1084 | 1433,FK Slutsk,Belarus,1301,427,1266,+,,,, 1085 | 1228,FK Spartak Subotica,Serbia,1323,212,1345,-,,,, 1086 | 2347,FK Spartaks,Latvia,1234,447,1263,-,,,, 1087 | 2714,FK Sputnik Rechytsa,Belarus,1180,739,1258,-,,,, 1088 | 1713,FK Tambov,Russia,1278,4,1278,-,,,, 1089 | 2725,FK Tauras Taurage,Lithuania,1174,6,1174,-,,,, 1090 | 2692,FK Teteks,Macedonia,1189,7,1189,-,,,, 1091 | 1280,FK Tosno,Russia,1316,4,1316,-,,,, 1092 | 2713,FK Tukums 2000,Latvia,1180,46,1197,-,,,, 1093 | 2405,FK Turan,Uzbekistan,1229,66,1238,-,,,, 1094 | 1078,FK Tuzla City,Bosnia and Herzegovina,1339,220,1315,+,,,, 1095 | 2570,FK Utenis Utena,Lithuania,1213,23,1213,-,,,, 1096 | 1268,FK Vitebsk,Belarus,1318,395,1362,-,,,, 1097 | 1846,FK Zemun,Serbia,1267,8,1267,-,,,, 1098 | 869,FK Zirka Kirovohrad,Ukraine,1364,145,1345,+,,,, 1099 | 2292,FK Zlatibor ÄŒajetina,Serbia,1238,44,1238,-,,,, 1100 | 2000,FK Zvijezda 09,Bosnia and Herzegovina,1257,3,1257,-,,,, 1101 | 1621,FKS Stal Mielec,Poland,1287,26,1290,-,,,, 1102 | 2191,Flame Lilly,Zimbabwe,1245,44,1245,-,,,, 1103 | 40,Flamengo,Brazil,1721,16,1763,-,,,, 1104 | 1959,Flint Town United,Wales,1260,266,1246,+,,,, 1105 | 38,Flora Tallinn,Estonia,1722,7,1715,+,,,, 1106 | 106,Fluminense FC,Brazil,1613,48,1689,-,,,, 1107 | 437,Foolad Khuzestan,Iran,1451,179,1408,+,,,, 1108 | 2302,Forest Rangers,Zambia,1237,120,1231,+,,,, 1109 | 2225,Forge FC,Canada,1243,118,1250,-,,,, 1110 | 216,Fortaleza,Colombia,1535,41,1517,+,,,, 1111 | 203,Fortuna Düsseldorf,Germany,1541,2,1541,-,,,, 1112 | 750,Fortuna Sittard,Netherlands,1383,135,1408,-,,,, 1113 | 854,Fovu de Baham,Cameroon,1366,24,1367,-,,,, 1114 | 2756,FOX Villa FC,Nicaragua,1153,0,1153,-,,,, 1115 | 1511,Fredrikstad,Norway,1295,25,1295,-,,,, 1116 | 1571,Free State Stars,South Africa,1290,22,1290,-,,,, 1117 | 53,Freiburg,Germany,1688,34,1628,+,,,, 1118 | 631,Frosinone,Italy,1404,8,1404,-,,,, 1119 | 2634,Fuerza Amarilla SC,Ecuador,1202,11,1202,-,,,, 1120 | 416,Fulham,England,1457,8,1457,-,,,, 1121 | 692,FUS Rabat,Morocco,1393,89,1411,-,,,, 1122 | 896,Future FC,Egypt,1360,545,1300,+,,,, 1123 | 1987,Gabès,Tunisia,1258,6,1258,-,,,, 1124 | 2019,Gaborone United,Botswana,1255,1,1255,-,,,, 1125 | 2577,Gagauziya,Moldova,1212,21,1212,-,,,, 1126 | 2276,Gahar Zagros,Iran,1240,38,1240,-,,,, 1127 | 1710,GAIS,Sweden,1278,4,1278,-,,,, 1128 | 2006,Gaitcha FCN,New Caledonia,1256,3,1256,-,,,, 1129 | 242,Galatasaray,Turkey,1524,135,1606,-,,,, 1130 | 1930,Galway United FC,Ireland,1262,6,1262,-,,,, 1131 | 686,Gamba Osaka,Japan,1394,116,1419,-,,,, 1132 | 926,Gangwon FC,South Korea,1357,61,1363,-,,,, 1133 | 1675,Gateway FC,Nigeria,1282,11,1282,-,,,, 1134 | 2129,Gaz Metan MediaÅŸ,Romania,1249,1271,1364,-,,,, 1135 | 1558,Gaziantepspor,Turkey,1291,27,1291,-,,,, 1136 | 623,GaziÅŸehir Gaziantep FK,Turkey,1406,124,1433,-,,,, 1137 | 2250,GD Baixa de Kassanje,Angola,1242,119,1235,+,,,, 1138 | 1422,Gefle,Sweden,1302,1,1302,-,,,, 1139 | 1260,Gençlerbirligi,Turkey,1318,5,1318,-,,,, 1140 | 1154,General Caballero,Paraguay,1330,5,1330,-,,,, 1141 | 1148,General Caballero JLM,Paraguay,1330,187,1350,-,,,, 1142 | 1860,General Díaz,Paraguay,1267,16,1267,-,,,, 1143 | 266,Genoa,Italy,1512,144,1593,-,,,, 1144 | 169,Gent,Belgium,1565,83,1519,+,,,, 1145 | 2314,Germinal Beerschot,Belgium,1237,1199,1333,-,,,, 1146 | 109,Getafe,Spain,1611,15,1591,+,,,, 1147 | 482,GFC Ajaccio,France,1438,2,1438,-,,,, 1148 | 2258,GFK Tikvesh,Nigeria,1241,152,1250,-,,,, 1149 | 2008,Ghazl El Mehalla,Egypt,1256,321,1239,+,,,, 1150 | 1725,GIF Sundsvall,Sweden,1277,234,1299,-,,,, 1151 | 2074,Gigira Laitepo,Papua New Guinea,1252,1,1252,-,,,, 1152 | 332,Gil Vicente FC,Portugal,1485,229,1419,+,,,, 1153 | 650,Gimcheon Sangmu FC,South Korea,1401,11,1398,+,,,, 1154 | 202,Gimnasia y Esgrima La Plata,Argentina,1541,125,1486,+,,,, 1155 | 807,Giresunspor,Turkey,1373,154,1350,+,,,, 1156 | 200,Girona,Spain,1542,4,1542,-,,,, 1157 | 1000,Giwa FC,Nigeria,1347,3,1347,-,,,, 1158 | 1550,Glenavon,Northern Ireland,1291,110,1300,-,,,, 1159 | 1031,Glentoran,Northern Ireland,1342,208,1321,+,,,, 1160 | 2359,Gloria Bistrita,Romania,1233,39,1233,-,,,, 1161 | 1218,Go Ahead Eagles,Netherlands,1324,730,1260,+,,,, 1162 | 1496,Go Round,Nigeria,1296,18,1296,-,,,, 1163 | 308,Godoy Cruz Antonio Tomba,Argentina,1493,167,1440,+,,,, 1164 | 269,Goiás,Brazil,1512,83,1475,+,,,, 1165 | 1369,Gokulam Kerala Fc,India,1306,425,1270,+,,,, 1166 | 522,GOL Gohar Sirjan FC,Iran,1430,497,1345,+,,,, 1167 | 965,Gold Coast United,Australia,1352,17,1352,-,,,, 1168 | 1131,Gombe United,Nigeria,1331,169,1315,+,,,, 1169 | 751,Gomel,Belarus,1383,487,1321,+,,,, 1170 | 1569,Gorica,Slovenia,1290,23,1290,-,,,, 1171 | 2053,Gornik Leczna,Poland,1253,407,1286,-,,,, 1172 | 877,Gornik Zabrze,Poland,1363,7,1360,+,,,, 1173 | 2478,GOÅ K Gabela,Bosnia and Herzegovina,1223,29,1223,-,,,, 1174 | 930,Gostaresh Foolad,Iran,1356,11,1356,-,,,, 1175 | 1704,Göztepe AÅž,Turkey,1279,995,1388,-,,,, 1176 | 2658,Gradina Srebrenik,Bosnia and Herzegovina,1196,14,1196,-,,,, 1177 | 2178,Gran Valencia FC,Venezuela,1246,51,1246,-,,,, 1178 | 189,Granada,Spain,1551,51,1577,-,,,, 1179 | 1708,Granit,Belarus,1279,4,1279,-,,,, 1180 | 1832,Granit Mikashevichi,Belarus,1268,12,1268,-,,,, 1181 | 1112,Grasshopper Club Zürich,Switzerland,1335,309,1302,+,,,, 1182 | 1737,Grbalj Radanovici,Montenegro,1276,2,1276,-,,,, 1183 | 1635,Green Buffaloes,Zambia,1286,107,1295,-,,,, 1184 | 1677,Green Eagles,Zambia,1282,419,1251,+,,,, 1185 | 124,Grêmio,Brazil,1599,60,1667,-,,,, 1186 | 696,Grêmio Prudente,Brazil,1393,14,1393,-,,,, 1187 | 662,Grenoble,France,1399,5,1399,-,,,, 1188 | 2751,Gresik United FC,Indonesia,1159,0,1159,-,,,, 1189 | 676,Greuther Fürth,Germany,1396,87,1414,-,,,, 1190 | 1281,Grödig,Austria,1316,5,1316,-,,,, 1191 | 1893,Grombalia Sports,Tunisia,1264,3,1264,-,,,, 1192 | 1254,Guabirá,Bolivia,1319,320,1292,+,,,, 1193 | 246,Guadalajara,Mexico,1522,21,1513,+,,,, 1194 | 1347,Guadalupe FC,Costa Rica,1308,129,1323,-,,,, 1195 | 524,Guaireña FC,Paraguay,1430,9,1430,-,,,, 1196 | 915,Gualaceo SC,Ecuador,1358,46,1350,+,,,, 1197 | 1471,Guangzhou City F.C.,China PR,1298,37,1297,+,,,, 1198 | 646,Guangzhou F.C.,China PR,1401,479,1557,-,,,, 1199 | 210,Guaraní,Paraguay,1538,33,1521,+,,,, 1200 | 554,Guarani FC,Brazil,1422,7,1422,-,,,, 1201 | 608,Guastatoya,Guatemala,1408,88,1430,-,,,, 1202 | 2646,Guaynabo Fluminense,Puerto Rico,1199,12,1199,-,,,, 1203 | 588,Guingamp,France,1415,8,1415,-,,,, 1204 | 1718,Guizhou Hengfeng,China PR,1278,4,1278,-,,,, 1205 | 598,Gunners,Zimbabwe,1411,2,1411,-,,,, 1206 | 1188,Gwangju FC,South Korea,1326,162,1308,+,,,, 1207 | 758,Gyeongnam FC,South Korea,1382,17,1382,-,,,, 1208 | 1753,Gyirmót SE,Hungary,1274,136,1264,+,,,, 1209 | 424,Györi ETO,Hungary,1455,10,1455,-,,,, 1210 | 2202,H&H Export Sébaco FC,Nicaragua,1245,96,1250,-,,,, 1211 | 2177,Ha Noi TT,Vietnam,1246,42,1246,-,,,, 1212 | 1221,Hajduk Kula,Serbia,1323,9,1323,-,,,, 1213 | 204,Hajduk Split,Croatia,1541,114,1491,+,,,, 1214 | 2695,Hajer FC Al-Hasa,Saudi Arabia,1188,8,1188,-,,,, 1215 | 1445,Haka,Finland,1300,404,1266,+,,,, 1216 | 1681,Halcones FC,Guatemala,1281,7,1281,-,,,, 1217 | 1632,Halmstads BK,Sweden,1286,260,1264,+,,,, 1218 | 1648,Hamam Sousse,Tunisia,1284,306,1260,+,,,, 1219 | 1395,Hamarkameratene,Norway,1303,46,1300,+,,,, 1220 | 207,Hamburger SV,Germany,1539,2,1539,-,,,, 1221 | 2335,Hamilton Academical,Scotland,1235,39,1235,-,,,, 1222 | 2499,Hamilton Wanderers Afc,New Zealand,1221,29,1221,-,,,, 1223 | 293,Hammarby IF,Sweden,1499,80,1467,+,,,, 1224 | 527,Hannover 96,Germany,1429,4,1429,-,,,, 1225 | 2535,Hapoel Ashkelon,Israel,1217,25,1217,-,,,, 1226 | 292,Hapoel Be'er Sheva,Israel,1499,93,1463,+,,,, 1227 | 1080,Hapoel Hadera,Israel,1339,186,1359,-,,,, 1228 | 1285,Hapoel Haifa,Israel,1316,292,1347,-,,,, 1229 | 2372,Hapoel Ironi Akko,Israel,1232,36,1232,-,,,, 1230 | 1468,Hapoel Jerusalem,Israel,1298,27,1300,-,,,, 1231 | 2081,Hapoel Kfar Saba,Israel,1252,0,1252,-,,,, 1232 | 1913,Hapoel Nof HaGalil,Israel,1263,471,1300,-,,,, 1233 | 1821,Hapoel Petah Tikva FC,Israel,1269,11,1269,-,,,, 1234 | 2369,Hapoel Ra'anana,Israel,1232,37,1232,-,,,, 1235 | 2357,Hapoel Ramat Gan,Israel,1233,40,1233,-,,,, 1236 | 1664,Hapoel Rishon LeZion,Israel,1283,11,1283,-,,,, 1237 | 775,Hapoel Tel Aviv,Israel,1379,213,1348,+,,,, 1238 | 1397,Harare City,Zimbabwe,1303,54,1309,-,,,, 1239 | 1576,Haras El-Hodood SC,Egypt,1289,23,1289,-,,,, 1240 | 1928,Harbin Yiteng,China PR,1262,7,1262,-,,,, 1241 | 2164,Harbour View,Jamaica,1247,130,1241,+,,,, 1242 | 2305,Hardbody,Zimbabwe,1237,45,1237,-,,,, 1243 | 1981,Hasaacas,Ghana,1258,2,1258,-,,,, 1244 | 2252,Haskovo 2009,Bulgaria,1242,39,1242,-,,,, 1245 | 831,Hassania Agadir,Morocco,1370,89,1382,-,,,, 1246 | 557,Hatayspor Kulübü,Turkey,1421,49,1432,-,,,, 1247 | 2689,Hatta,United Arab Emirates,1189,7,1189,-,,,, 1248 | 1317,Havadar S.C.,Iran,1312,124,1300,+,,,, 1249 | 2241,Haverfordwest County,Wales,1242,302,1219,+,,,, 1250 | 1683,Hawke's Bay United,New Zealand,1281,7,1281,-,,,, 1251 | 2156,Hay Al Arab,Sudan,1248,42,1248,-,,,, 1252 | 1837,Hay Al Wadi SC,Sudan,1268,8,1268,-,,,, 1253 | 1083,HB Chelghoum Laïd,Algeria,1339,358,1300,+,,,, 1254 | 2687,HB Køge,Denmark,1189,7,1189,-,,,, 1255 | 1192,Heart of Lions,Ghana,1326,10,1326,-,,,, 1256 | 616,Heart of Midlothian,Scotland,1407,603,1323,+,,,, 1257 | 1273,Heartland FC,Nigeria,1317,356,1357,-,,,, 1258 | 843,Hearts of Oak,Ghana,1368,19,1369,-,,,, 1259 | 1446,Hebei F.C.,China PR,1299,452,1347,-,,,, 1260 | 1452,Hegelmann Litauen Kaunas,Lithuania,1299,612,1253,+,,,, 1261 | 830,Hekari United,Papua New Guinea,1370,17,1370,-,,,, 1262 | 88,Hellas Verona,Italy,1636,129,1533,+,,,, 1263 | 1676,Helsingborgs IF,Sweden,1282,308,1306,-,,,, 1264 | 1318,Henan Songshan Longmen F.C.,China PR,1312,428,1275,+,,,, 1265 | 1847,Henderson Eels,Solomon Islands,1267,8,1267,-,,,, 1266 | 712,Heracles,Netherlands,1390,286,1452,-,,,, 1267 | 518,Hércules,Spain,1431,5,1431,-,,,, 1268 | 1950,Herentals FC,Zimbabwe,1260,157,1250,+,,,, 1269 | 1690,Herrera FC,Panama,1280,192,1264,+,,,, 1270 | 271,Hertha BSC,Germany,1510,119,1569,-,,,, 1271 | 797,Hibernian,Scotland,1375,341,1445,-,,,, 1272 | 1689,Hienghène Sport,New Caledonia,1281,6,1281,-,,,, 1273 | 1326,HIFK,Finland,1311,235,1335,-,,,, 1274 | 564,Highlanders,Zimbabwe,1420,33,1426,-,,,, 1275 | 1174,Highlands Park,South Africa,1328,4,1328,-,,,, 1276 | 2109,Highway,Zimbabwe,1250,51,1250,-,,,, 1277 | 1126,Hilal Al-Obayed,Sudan,1333,6,1333,-,,,, 1278 | 2307,Hilal El-Fasher,Sudan,1237,45,1237,-,,,, 1279 | 2671,Hindustan Aero,India,1193,8,1193,-,,,, 1280 | 2352,Hiré,Ivory Coast,1233,40,1233,-,,,, 1281 | 1566,Hispano,Honduras,1290,23,1290,-,,,, 1282 | 197,HJK Helsinki,Finland,1547,47,1570,-,,,, 1283 | 670,HNK Gorica,Croatia,1397,135,1426,-,,,, 1284 | 1925,Hoang Anh Gia Lai,Vietnam,1262,182,1250,+,,,, 1285 | 1983,Hobro,Denmark,1258,3,1258,-,,,, 1286 | 130,Hoffenheim,Germany,1594,59,1652,-,,,, 1287 | 1641,Hønefoss,Norway,1285,16,1285,-,,,, 1288 | 536,Honka,Finland,1427,19,1430,-,,,, 1289 | 922,Honvéd,Hungary,1357,37,1360,-,,,, 1290 | 1209,Horoya AC,Guinea,1324,77,1332,-,,,, 1291 | 1593,Houston Dynamo,United States,1288,284,1314,-,,,, 1292 | 2448,Hoverla Uzhhorod,Ukraine,1225,26,1225,-,,,, 1293 | 1835,How Mine,Zimbabwe,1268,10,1268,-,,,, 1294 | 754,Hradec Králové,Czech Republic,1383,663,1302,+,,,, 1295 | 2417,Hrvatski Dragovoljac,Croatia,1228,518,1263,-,,,, 1296 | 2016,HÅ K PosuÅ¡je,Bosnia and Herzegovina,1255,91,1250,+,,,, 1297 | 675,Huachipato,Chile,1396,63,1383,+,,,, 1298 | 916,Huddersfield Town,England,1358,7,1358,-,,,, 1299 | 373,Hull City,England,1470,9,1470,-,,,, 1300 | 1743,Humble Lions,Jamaica,1275,145,1289,-,,,, 1301 | 213,Huracán,Argentina,1536,253,1442,+,,,, 1302 | 864,Hwange,Zimbabwe,1365,12,1365,-,,,, 1303 | 2084,Ibanda Sport,Congo DR,1251,2,1251,-,,,, 1304 | 1321,Ifeanyi Ubah United,Nigeria,1312,11,1314,-,,,, 1305 | 602,IFK Göteborg,Sweden,1410,40,1403,+,,,, 1306 | 1559,IFK Mariehamn,Finland,1290,203,1307,-,,,, 1307 | 370,IFK Norrköping,Sweden,1470,88,1504,-,,,, 1308 | 1298,IFK Värnamo,Sweden,1314,143,1300,+,,,, 1309 | 1732,Ikorodu United,Nigeria,1276,1,1276,-,,,, 1310 | 2705,Ilukstes NSS,Latvia,1183,9,1183,-,,,, 1311 | 641,Ilves,Finland,1402,123,1430,-,,,, 1312 | 976,Imbabura,Ecuador,1350,0,1350,-,,,, 1313 | 760,Incheon United,South Korea,1382,363,1332,+,,,, 1314 | 2679,Indeni FC,Zambia,1191,60,1208,-,,,, 1315 | 111,Independiente,Ecuador,1610,36,1571,+,,,, 1316 | 177,Independiente,Argentina,1558,20,1566,-,,,, 1317 | 1163,Independiente de La Chorrera,Panama,1328,80,1336,-,,,, 1318 | 694,Independiente FBC (Campo Grande),Paraguay,1393,14,1393,-,,,, 1319 | 2121,Independiente FC,El Salvador,1250,46,1250,-,,,, 1320 | 326,Independiente Medellín,Colombia,1487,54,1465,+,,,, 1321 | 1182,Independiente Petrolero,Bolivia,1327,137,1312,+,,,, 1322 | 1590,Indios,Mexico,1289,20,1289,-,,,, 1323 | 222,Ingolstadt,Germany,1532,0,1532,-,,,, 1324 | 2727,Institute FC,Northern Ireland,1174,6,1174,-,,,, 1325 | 1997,Inter Allies FC,Ghana,1257,246,1274,-,,,, 1326 | 1479,Inter Miami CF,United States,1298,98,1305,-,,,, 1327 | 5,Inter Milan,Italy,1917,2,1944,-,,,, 1328 | 2251,Interblock,Slovenia,1242,39,1242,-,,,, 1329 | 693,Interclube de Angola,Angola,1393,7,1392,+,,,, 1330 | 76,Internacional,Brazil,1653,15,1678,-,,,, 1331 | 1633,InternaÅ£ional Curtea de ArgeÅŸ,Romania,1286,17,1286,-,,,, 1332 | 1160,Inverness CT,Scotland,1329,5,1329,-,,,, 1333 | 677,Ionikos,Greece,1395,284,1350,+,,,, 1334 | 849,Iraklis,Greece,1367,13,1367,-,,,, 1335 | 768,Ironi Kiryat Schmona,Israel,1380,297,1339,+,,,, 1336 | 1712,Ironi Ramat HaSharon,Israel,1278,4,1278,-,,,, 1337 | 850,Irtysh Pavlodar,Kazakhstan,1367,12,1367,-,,,, 1338 | 1490,Isidro Metapán,El Salvador,1297,216,1317,-,,,, 1339 | 470,Iskra-Stal,Moldova,1441,0,1441,-,,,, 1340 | 957,Isloch,Belarus,1353,79,1361,-,,,, 1341 | 1044,Ismaily SC,Egypt,1342,169,1362,-,,,, 1342 | 1630,Issia Wazi,Ivory Coast,1286,18,1286,-,,,, 1343 | 218,İstanbul BaÅŸakÅŸehir,Turkey,1533,132,1476,+,,,, 1344 | 2604,Ittihad Al-Ramtha,Jordan,1208,16,1208,-,,,, 1345 | 1196,Ittihad El-Shorta,Egypt,1326,6,1326,-,,,, 1346 | 1121,Ittihad Tanger,Morocco,1333,199,1355,-,,,, 1347 | 2023,Ittihad Zemouri de Khemisset,Morocco,1255,1,1255,-,,,, 1348 | 975,Iztapa,Guatemala,1350,17,1351,-,,,, 1349 | 1996,J.S. Groupe Bazano,Denmark,1257,323,1240,+,,,, 1350 | 471,Jablonec,Czech Republic,1441,303,1557,-,,,, 1351 | 964,Jagiellonia BiaÅ‚ystok,Poland,1352,176,1373,-,,,, 1352 | 1587,Jagodina,Serbia,1289,19,1289,-,,,, 1353 | 919,Jaguares Chiapas,Mexico,1358,7,1358,-,,,, 1354 | 1442,Jalapa,Guatemala,1300,4,1300,-,,,, 1355 | 2468,Jangorzo,Niger,1224,25,1224,-,,,, 1356 | 1618,Javor,Serbia,1287,20,1287,-,,,, 1357 | 2539,Jazeerat Al Feel,Sudan,1217,24,1217,-,,,, 1358 | 1764,JC Abidjan,Ivory Coast,1273,0,1273,-,,,, 1359 | 2167,JCT FC,India,1247,42,1247,-,,,, 1360 | 847,Jeanne d'Arc de Bamako,Mali,1367,15,1367,-,,,, 1361 | 2676,Jedinstvo BP,Montenegro,1192,9,1192,-,,,, 1362 | 1978,JEF United,Japan,1258,1,1258,-,,,, 1363 | 459,Jeju United,South Korea,1445,311,1376,+,,,, 1364 | 126,Jeonbuk FC,South Korea,1599,22,1609,-,,,, 1365 | 1466,Jeonnam Dragons,South Korea,1298,116,1291,+,,,, 1366 | 2399,Jeunesse Sportive de Kinshasa,Congo DR,1230,213,1248,-,,,, 1367 | 1236,Jeunesse Sportive Soualem,Morocco,1322,205,1300,+,,,, 1368 | 339,Jiangsu Suning FC,China PR,1481,3,1481,-,,,, 1369 | 1535,Jigawa Golden Stars,Nigeria,1292,153,1305,-,,,, 1370 | 2430,JL Chiangmai United FC,Thailand,1227,324,1250,-,,,, 1371 | 2155,Jocoro FC,El Salvador,1248,155,1240,+,,,, 1372 | 1528,Joe Public,Trinidad and Tobago,1293,27,1293,-,,,, 1373 | 1448,Joenkoepings Soedra,Sweden,1299,28,1299,-,,,, 1374 | 1293,Johor Darul Ta'zim FC,Malaysia,1315,733,1255,+,,,, 1375 | 2474,Johvi FC Lokomotiv,Estonia,1223,27,1223,-,,,, 1376 | 630,Joinville EC,Brazil,1404,7,1404,-,,,, 1377 | 2450,Jomo Cosmos,South Africa,1225,26,1225,-,,,, 1378 | 774,Jorge Wilstermann,Bolivia,1379,292,1438,-,,,, 1379 | 1516,José Gálvez,Peru,1294,32,1294,-,,,, 1380 | 448,JS Kabylie,Algeria,1448,94,1423,+,,,, 1381 | 2693,JS Kairouanaise,Tunisia,1188,7,1188,-,,,, 1382 | 403,JS Saoura,Algeria,1462,97,1433,+,,,, 1383 | 2263,JSK Chabab Kasba Tadla,Morocco,1241,38,1241,-,,,, 1384 | 1075,JSM Béjaïa,Algeria,1339,11,1339,-,,,, 1385 | 1879,JSM Laâyoune,Morocco,1265,6,1265,-,,,, 1386 | 2686,JSM Skikda,Algeria,1189,735,1260,-,,,, 1387 | 1231,Juan Aurich,Peru,1322,9,1322,-,,,, 1388 | 1061,Júbilo Iwata,Japan,1340,55,1346,-,,,, 1389 | 255,Junior FC,Colombia,1516,96,1564,-,,,, 1390 | 1820,JUTH FC,Nigeria,1269,11,1269,-,,,, 1391 | 1921,Juticalpa,Honduras,1262,6,1262,-,,,, 1392 | 1475,Juventud de Las Piedras,Uruguay,1298,25,1298,-,,,, 1393 | 2158,Juventud Escuintleca,Guatemala,1247,43,1247,-,,,, 1394 | 1432,Juventud Independiente,El Salvador,1301,2,1301,-,,,, 1395 | 1767,Juventud Retalteca,Guatemala,1273,1,1273,-,,,, 1396 | 19,Juventus,Italy,1800,8,1863,-,,,, 1397 | 2594,Juventus BucureÅŸti,Romania,1209,18,1209,-,,,, 1398 | 2632,Juventus Managua,Nicaragua,1203,17,1201,+,,,, 1399 | 2298,Jwaneng Galaxy FC,Botswana,1238,192,1250,-,,,, 1400 | 2345,Jyvaskyla JK,Finland,1234,41,1234,-,,,, 1401 | 2094,Kabasha,Congo DR,1251,3,1251,-,,,, 1402 | 757,Kabuscorp SCP,Angola,1382,166,1413,-,,,, 1403 | 1880,Kabwe Warriors,Zambia,1265,79,1259,+,,,, 1404 | 1979,KAC Kénitra,Morocco,1258,1,1258,-,,,, 1405 | 1335,KACM Marrakech,Morocco,1310,0,1310,-,,,, 1406 | 1542,Kaduna United FC,Nigeria,1292,30,1292,-,,,, 1407 | 2346,Kafue Celtic,Zambia,1234,240,1250,-,,,, 1408 | 252,Kairat Almaty,Kazakhstan,1519,40,1537,-,,,, 1409 | 1500,Kaisar Kyzylorda,Kazakhstan,1296,103,1303,-,,,, 1410 | 568,Kaiserslautern,Germany,1419,6,1419,-,,,, 1411 | 580,Kaizer Chiefs,South Africa,1417,47,1406,+,,,, 1412 | 2556,Kaliakra,Bulgaria,1215,23,1215,-,,,, 1413 | 776,Kalmar FF,Sweden,1378,465,1320,+,,,, 1414 | 2101,Kaloum Star,Guinea,1250,2,1250,-,,,, 1415 | 2392,Kalteng Putra,Indonesia,1230,32,1230,-,,,, 1416 | 2422,Kalulushi Modern Stars,Zambia,1227,32,1227,-,,,, 1417 | 2249,Kalyani Bharat FC,India,1242,40,1242,-,,,, 1418 | 703,Kano Pillars,Nigeria,1392,211,1434,-,,,, 1419 | 1985,Kansanshi Dynamos,Zambia,1258,122,1250,+,,,, 1420 | 2362,Kapfenberger SV,Austria,1233,38,1233,-,,,, 1421 | 2675,Kaposvári Rákóczi,Hungary,1193,9,1193,-,,,, 1422 | 2501,Karabükspor,Turkey,1221,28,1221,-,,,, 1423 | 1741,Karela United FC,Ghana,1276,135,1265,+,,,, 1424 | 1622,Karlovac,Croatia,1287,19,1287,-,,,, 1425 | 2649,Karmiotissa Pano Polemidion,Cyprus,1199,11,1199,-,,,, 1426 | 1327,Karpaty Lviv,Ukraine,1311,2,1311,-,,,, 1427 | 2513,Karvan,Azerbaijan,1219,29,1219,-,,,, 1428 | 219,Kashima Antlers,Japan,1532,30,1520,+,,,, 1429 | 658,Kashiwa Reysol,Japan,1400,30,1391,+,,,, 1430 | 412,KasımpaÅŸa,Turkey,1459,282,1391,+,,,, 1431 | 1068,Katsina United,Nigeria,1340,184,1319,+,,,, 1432 | 744,Kavala,Greece,1384,14,1384,-,,,, 1433 | 69,Kawasaki Frontale,Japan,1660,2,1661,-,,,, 1434 | 2571,Kaya F.C.-Iloilo,Peru,1213,465,1250,-,,,, 1435 | 1246,Kayseri Erciyesspor,Turkey,1319,1,1319,-,,,, 1436 | 817,Kayserispor,Turkey,1371,228,1342,+,,,, 1437 | 2256,Kazakhmys,Kazakhstan,1241,39,1241,-,,,, 1438 | 1886,KCCA FC,Togo,1264,2,1264,-,,,, 1439 | 1127,Kecskeméti TE,Hungary,1333,6,1333,-,,,, 1440 | 2328,Kenkre FC,India,1235,222,1250,-,,,, 1441 | 2246,Kerala Blasters FC,India,1242,39,1242,-,,,, 1442 | 1020,KeÅŸlÉ™ Futbol Klubu,Azerbaijan,1343,251,1376,-,,,, 1443 | 427,KF Shkendija,Macedonia,1454,24,1458,-,,,, 1444 | 2128,KF Tirana,Albania,1249,46,1249,-,,,, 1445 | 2334,Kfarsoum,Jordan,1235,39,1235,-,,,, 1446 | 1064,Khazar Lankaran FK,Azerbaijan,1340,8,1340,-,,,, 1447 | 1098,Khimki,Russia,1336,195,1358,-,,,, 1448 | 1918,Khon Kaen United FC,Thailand,1262,189,1250,+,,,, 1449 | 2404,Khonkaen,Thailand,1229,29,1229,-,,,, 1450 | 2329,Khorfakkan Club,United Arab Emirates,1235,75,1232,+,,,, 1451 | 1383,Khroub,Algeria,1304,1,1304,-,,,, 1452 | 1953,Kiglon,Zimbabwe,1260,4,1260,-,,,, 1453 | 1217,Kilmarnock,Scotland,1324,10,1324,-,,,, 1454 | 1960,King Faisal,Ghana,1259,92,1253,+,,,, 1455 | 613,Kisvárda Master Good,Hungary,1407,341,1351,+,,,, 1456 | 1487,Kitchee,Hong Kong,1297,844,1239,+,,,, 1457 | 2603,Kitwe United,Zambia,1208,20,1215,-,,,, 1458 | 2720,Kiwi,Samoa,1178,3,1178,-,,,, 1459 | 1467,Kladno,Czech Republic,1298,29,1298,-,,,, 1460 | 2690,Klaipedos Granitas,Lithuania,1189,7,1189,-,,,, 1461 | 136,København,Denmark,1587,58,1543,+,,,, 1462 | 1980,Kokand 1912,Uzbekistan,1258,3,1258,-,,,, 1463 | 1589,Koloale,Solomon Islands,1289,20,1289,-,,,, 1464 | 2007,Kongsvinger,Norway,1256,0,1256,-,,,, 1465 | 2506,Konkola Blades,Zambia,1220,130,1235,-,,,, 1466 | 2489,Konkola Mine Police,Zambia,1221,30,1221,-,,,, 1467 | 320,Konyaspor,Turkey,1488,293,1409,+,,,, 1468 | 544,Koper,Slovenia,1425,349,1359,+,,,, 1469 | 1308,Korona Kielce,Poland,1313,6,1313,-,,,, 1470 | 1049,Kortrijk,Belgium,1341,147,1359,-,,,, 1471 | 1184,KoÅ¡ice,Slovakia,1327,7,1327,-,,,, 1472 | 2566,Kozara GradiÅ¡ka,Bosnia and Herzegovina,1214,23,1214,-,,,, 1473 | 1797,KPV,Finland,1271,10,1271,-,,,, 1474 | 256,KRC Genk,Belgium,1516,93,1561,-,,,, 1475 | 1016,Kristiansund BK,Norway,1344,365,1401,-,,,, 1476 | 2170,Krumkachy Minsk,Belarus,1247,41,1247,-,,,, 1477 | 2454,Kruoja Pakruojis,Lithuania,1225,26,1225,-,,,, 1478 | 542,Krylya Sovetov Samara,Russia,1425,217,1378,+,,,, 1479 | 940,Kryvbas,Ukraine,1354,14,1354,-,,,, 1480 | 366,KS Raków CzÄ™stochowa,Poland,1472,224,1414,+,,,, 1481 | 1010,KS Warta PoznaÅ„,Poland,1345,78,1336,+,,,, 1482 | 619,Kuban' Krasnodar,Russia,1406,4,1406,-,,,, 1483 | 2220,Kukesi,Albania,1243,40,1243,-,,,, 1484 | 205,KuPS,Finland,1540,160,1470,+,,,, 1485 | 2153,Kuwait SC,Kuwait,1248,42,1248,-,,,, 1486 | 478,KV Mechelen,Belgium,1439,74,1458,-,,,, 1487 | 1019,KV Oostende,Belgium,1344,338,1393,-,,,, 1488 | 827,Kwara United,Nigeria,1370,101,1354,+,,,, 1489 | 1772,Kyoto Sanga FC,Japan,1273,551,1240,+,,,, 1490 | 1798,Kyzylzhar Petropavlovsk,Kazakhstan,1271,252,1253,+,,,, 1491 | 1540,L.A. Firpo,El Salvador,1292,172,1279,+,,,, 1492 | 340,La Equidad,Colombia,1481,23,1470,+,,,, 1493 | 984,LA Galaxy,United States,1349,113,1335,+,,,, 1494 | 2770,La Horquetta Rangers FC,Trinidad and Tobago,1068,0,1068,-,,,, 1495 | 2719,La Paz,Bolivia,1178,3,1178,-,,,, 1496 | 2166,La U Universitarios,Costa Rica,1247,42,1247,-,,,, 1497 | 2067,Lae City Dwellers,Papua New Guinea,1252,1,1252,-,,,, 1498 | 2248,Lajong SC,India,1242,39,1242,-,,,, 1499 | 1455,Lamia,Greece,1299,556,1359,-,,,, 1500 | 897,Lamontville Golden Arrows,South Africa,1360,53,1366,-,,,, 1501 | 173,Lanús,Argentina,1563,45,1588,-,,,, 1502 | 1413,Larisa Ael,Greece,1302,1,1302,-,,,, 1503 | 1144,Larne FC,Northern Ireland,1330,171,1313,+,,,, 1504 | 720,Las Palmas,Spain,1389,18,1389,-,,,, 1505 | 353,LASK Linz,Austria,1476,117,1524,-,,,, 1506 | 1661,Lausanne,Cameroon,1283,584,1337,-,,,, 1507 | 1788,Lausanne Sport,Switzerland,1272,8,1272,-,,,, 1508 | 1403,Lautoka,Fiji,1303,3,1303,-,,,, 1509 | 28,Lazio,Italy,1759,24,1705,+,,,, 1510 | 241,LD Alajuelense,Costa Rica,1524,52,1547,-,,,, 1511 | 153,LDU de Quito,Ecuador,1574,21,1583,-,,,, 1512 | 1352,LDU Portoviejo,Ecuador,1308,3,1308,-,,,, 1513 | 621,Le Mans,France,1406,4,1406,-,,,, 1514 | 357,Lecce,Italy,1475,2,1475,-,,,, 1515 | 286,Lech PoznaÅ„,Poland,1502,217,1432,+,,,, 1516 | 560,Lechia GdaÅ„sk,Poland,1421,113,1395,+,,,, 1517 | 128,Leeds United,England,1596,89,1725,-,,,, 1518 | 107,Leganes,Spain,1612,6,1612,-,,,, 1519 | 429,Legia Warszawa,Poland,1453,200,1526,-,,,, 1520 | 1274,Legon Cities FC,Ghana,1317,6,1317,-,,,, 1521 | 46,Leicester City,England,1703,8,1698,+,,,, 1522 | 1256,Leixões,Portugal,1318,6,1318,-,,,, 1523 | 1935,Lengthens,Zimbabwe,1261,3,1261,-,,,, 1524 | 90,Lens,France,1633,137,1529,+,,,, 1525 | 234,León,Mexico,1526,103,1585,-,,,, 1526 | 958,León de Huánuco,Peru,1353,19,1353,-,,,, 1527 | 1565,Leones FC,Colombia,1290,23,1290,-,,,, 1528 | 820,Leones Negros U. de G.,Mexico,1371,15,1371,-,,,, 1529 | 1169,Léopards de Dolisié,Congo,1328,5,1328,-,,,, 1530 | 1818,Levadiakos,Greece,1269,10,1269,-,,,, 1531 | 108,Levante,Spain,1612,25,1583,+,,,, 1532 | 264,Levski Sofia,Bulgaria,1513,32,1499,+,,,, 1533 | 2395,Liaoning Hongyun,China PR,1230,31,1230,-,,,, 1534 | 114,Libertad,Paraguay,1608,18,1620,-,,,, 1535 | 1472,Liberty Professionals,Ghana,1298,38,1297,+,,,, 1536 | 1594,Lierse,Belgium,1288,20,1288,-,,,, 1537 | 2718,Lietava Jonava,Lithuania,1179,134,1214,-,,,, 1538 | 938,Liga de Loja,Ecuador,1355,13,1355,-,,,, 1539 | 1995,Liga Muçulmana,Mozambique,1257,4,1257,-,,,, 1540 | 2045,Likasi,Congo DR,1254,0,1254,-,,,, 1541 | 75,Lille,France,1654,54,1790,-,,,, 1542 | 594,Lillestrøm,Norway,1412,776,1306,+,,,, 1543 | 2477,Lime Hotspurs,Zambia,1223,28,1223,-,,,, 1544 | 2085,Limerick,Ireland,1251,2,1251,-,,,, 1545 | 1656,Limón,Costa Rica,1284,14,1284,-,,,, 1546 | 2132,Lincoln Red Imps FC,Gibraltar,1249,26,1250,-,,,, 1547 | 540,Linfield,Northern Ireland,1426,127,1397,+,,,, 1548 | 1691,Lion Blessé,Cameroon,1280,5,1280,-,,,, 1549 | 1859,Lion City Sailors FC,Singapore,1267,248,1250,+,,,, 1550 | 156,Litex Lovech,Bulgaria,1573,12,1573,-,,,, 1551 | 321,Liverpool,Uruguay,1487,46,1506,-,,,, 1552 | 1,Liverpool FC,England,2042,5,1899,+,,,, 1553 | 837,Livingston FC,Scotland,1369,24,1364,+,,,, 1554 | 1071,Livorno,Italy,1339,11,1339,-,,,, 1555 | 1961,Llandudno FC,Wales,1259,1,1259,-,,,, 1556 | 1013,Llanelli,Wales,1345,9,1345,-,,,, 1557 | 2599,Llaneros de Guanare,Venezuela,1208,17,1208,-,,,, 1558 | 2102,LLB Académic,Burundi,1250,2,1250,-,,,, 1559 | 826,Lobi Stars,Nigeria,1370,158,1397,-,,,, 1560 | 767,Lobos B.U.A.P.,Mexico,1381,20,1381,-,,,, 1561 | 1495,Lobos UPNFM,Honduras,1296,222,1317,-,,,, 1562 | 2551,Łódzki KS,Poland,1216,22,1216,-,,,, 1563 | 1539,Lokeren,Belgium,1292,31,1292,-,,,, 1564 | 190,Lokomotiv Astana,Kazakhstan,1549,21,1557,-,,,, 1565 | 1813,Lokomotiv Gorna Oryahovitsa,Bulgaria,1270,10,1270,-,,,, 1566 | 1644,Lokomotiv Mezdra,Bulgaria,1285,15,1285,-,,,, 1567 | 199,Lokomotiv Moskva,Russia,1544,87,1603,-,,,, 1568 | 441,Lokomotiv Plovdiv,Bulgaria,1451,139,1496,-,,,, 1569 | 643,Lokomotiv Tashkent,Uzbekistan,1402,115,1427,-,,,, 1570 | 701,Lokomotiva,Croatia,1392,173,1362,+,,,, 1571 | 2295,Lokomotivi Tbilisi,Georgia,1238,700,1289,-,,,, 1572 | 2749,Longford Town,Ireland,1161,99,1201,-,,,, 1573 | 2569,Lootus,Estonia,1213,23,1213,-,,,, 1574 | 456,Lorient,France,1447,135,1490,-,,,, 1575 | 436,Los Angeles FC,United States,1451,31,1458,-,,,, 1576 | 2373,Lovćen,Montenegro,1232,36,1232,-,,,, 1577 | 1543,LPTA Tozeur,Tunisia,1292,30,1292,-,,,, 1578 | 1408,Lučko,Croatia,1303,3,1303,-,,,, 1579 | 556,Lugano,Switzerland,1421,10,1419,+,,,, 1580 | 2397,Lumwana Radiants,Zambia,1230,29,1236,-,,,, 1581 | 2669,Lupe ole Soaga,Samoa,1193,8,1193,-,,,, 1582 | 2366,Lusaka Dynamos,Zambia,1232,154,1247,-,,,, 1583 | 656,Luzern,Switzerland,1400,63,1413,-,,,, 1584 | 2308,Lyn,Norway,1237,45,1237,-,,,, 1585 | 2237,Lyngby,Denmark,1242,37,1242,-,,,, 1586 | 45,Lyon,France,1705,18,1752,-,,,, 1587 | 2266,Lys Sassandra,Ivory Coast,1241,61,1239,+,,,, 1588 | 2631,Lyubimets,Bulgaria,1203,11,1203,-,,,, 1589 | 1114,Ma Pau,Trinidad and Tobago,1334,12,1334,-,,,, 1590 | 2645,Maardu Linnameeskond,Estonia,1199,12,1199,-,,,, 1591 | 625,Macará,Ecuador,1405,308,1491,-,,,, 1592 | 1945,Macarthur FC,Australia,1260,88,1266,-,,,, 1593 | 2382,Maccabi Ahi Nazareth,Israel,1231,36,1231,-,,,, 1594 | 152,Maccabi Haifa FC,Israel,1574,35,1548,+,,,, 1595 | 622,Maccabi Netanya,Israel,1406,244,1363,+,,,, 1596 | 1414,Maccabi Petah Tikva,Israel,1302,374,1342,-,,,, 1597 | 115,Maccabi Tel Aviv,Israel,1608,25,1627,-,,,, 1598 | 2515,Machine Sazi FC,Iran,1219,150,1236,-,,,, 1599 | 2743,Mačva Å abac,Serbia,1166,1,1166,-,,,, 1600 | 2510,Madang,Papua New Guinea,1220,29,1220,-,,,, 1601 | 1332,Madura United,Indonesia,1311,92,1321,-,,,, 1602 | 748,Maghreb Fès,Morocco,1383,345,1335,+,,,, 1603 | 609,Mahindra United,India,1408,10,1408,-,,,, 1604 | 84,Mainz,Germany,1647,1,1633,+,,,, 1605 | 1696,Makedonija Gjorče Petrov,Macedonia,1280,223,1262,+,,,, 1606 | 458,Málaga,Spain,1446,7,1446,-,,,, 1607 | 2326,Malampa Revivors FC,Vanuatu,1236,40,1236,-,,,, 1608 | 1200,Malavan,Iran,1325,7,1325,-,,,, 1609 | 2340,Malekesa,Congo DR,1234,39,1234,-,,,, 1610 | 224,Mallorca,Spain,1530,31,1544,-,,,, 1611 | 188,Malmö FF,Sweden,1552,68,1597,-,,,, 1612 | 122,Mamelodi Sundowns FC,South Africa,1604,23,1573,+,,,, 1613 | 1588,Managua FC,Nicaragua,1289,153,1276,+,,,, 1614 | 2,Manchester City,England,2013,0,1982,+,,,, 1615 | 41,Manchester United,England,1717,28,1850,-,,,, 1616 | 1803,Manica Diamonds,Zimbabwe,1270,304,1250,+,,,, 1617 | 1261,Maniema Union,Congo DR,1318,297,1293,+,,,, 1618 | 1267,Manisaspor,Turkey,1318,3,1318,-,,,, 1619 | 2293,Mansheyat Bani Hasan,Jordan,1238,44,1238,-,,,, 1620 | 1057,Manta,Ecuador,1340,208,1366,-,,,, 1621 | 2413,Manu Ura,Tahiti,1228,32,1228,-,,,, 1622 | 867,Marathón,Honduras,1364,161,1388,-,,,, 1623 | 2095,Marek Dupnitsa,Bulgaria,1251,3,1251,-,,,, 1624 | 206,Maribor,Slovenia,1540,3,1540,-,,,, 1625 | 2221,Marist,Solomon Islands,1243,40,1243,-,,,, 1626 | 1434,Maritzburg United,South Africa,1301,238,1325,-,,,, 1627 | 51,Marseille,France,1694,58,1605,+,,,, 1628 | 1459,Marumo Gallants FC,South Africa,1299,215,1283,+,,,, 1629 | 2193,Mash'al Muborak,Uzbekistan,1245,201,1257,-,,,, 1630 | 979,Masvingo United,Zimbabwe,1350,0,1350,-,,,, 1631 | 2378,Matiti Mabe,Congo DR,1231,37,1231,-,,,, 1632 | 1698,Matsumoto Yamaga,Japan,1280,4,1280,-,,,, 1633 | 1348,Mattersburg,Austria,1308,1,1308,-,,,, 1634 | 2285,Maverly Hughenden FC,Jamaica,1240,39,1240,-,,,, 1635 | 2651,Mayagüez,Puerto Rico,1198,11,1198,-,,,, 1636 | 566,Mazatlán FC,Mexico,1419,187,1379,+,,,, 1637 | 2223,Mbabane Swallows,Sudan,1243,40,1243,-,,,, 1638 | 642,MC Alger,Algeria,1402,7,1401,+,,,, 1639 | 983,MC El Eulma,Algeria,1349,1,1349,-,,,, 1640 | 690,MC Oran,Algeria,1394,60,1405,-,,,, 1641 | 1017,MCO Oujda,Morocco,1344,161,1365,-,,,, 1642 | 879,Medeama SC,Ghana,1363,0,1361,+,,,, 1643 | 1888,Medimurje,Croatia,1264,2,1264,-,,,, 1644 | 1451,Meizhou Hakka F.C.,China PR,1299,10,1300,-,,,, 1645 | 611,Melbourne City FC,Australia,1407,179,1373,+,,,, 1646 | 1203,Melbourne Victory,Australia,1325,277,1299,+,,,, 1647 | 937,Melipilla,Chile,1355,69,1363,-,,,, 1648 | 2731,Merani Martvili,Georgia,1172,6,1172,-,,,, 1649 | 2364,Merikh Kosti,Sudan,1233,38,1233,-,,,, 1650 | 1425,Merreikh El-Fasher,Sudan,1301,1,1301,-,,,, 1651 | 2062,Merreikh Nyala,Sudan,1253,0,1253,-,,,, 1652 | 1796,Mersin İdmanyurdu,Turkey,1271,11,1271,-,,,, 1653 | 992,Mes Kerman,Iran,1348,5,1348,-,,,, 1654 | 868,Mes Rafsanjan,Iran,1364,454,1312,+,,,, 1655 | 2300,Meshki Pooshan Football Club,Iran,1238,45,1238,-,,,, 1656 | 1191,Metalist 1925 Kharkiv,Ukraine,1326,230,1350,-,,,, 1657 | 501,Metalist Kharkiv,Ukraine,1434,8,1434,-,,,, 1658 | 2143,Metalleghe BSI,Bosnia and Herzegovina,1248,41,1248,-,,,, 1659 | 1789,Metallurg Bekobod,Uzbekistan,1272,364,1301,-,,,, 1660 | 509,Metalurh Donetsk,Ukraine,1432,7,1432,-,,,, 1661 | 2765,Metalurh Zaporizhya,Ukraine,1130,1,1130,-,,,, 1662 | 1250,Metropolitanos FC,Venezuela,1319,624,1265,+,,,, 1663 | 558,Metz,France,1421,227,1485,-,,,, 1664 | 1024,MezÅ‘kövesd-Zsóry,Hungary,1343,136,1360,-,,,, 1665 | 1776,MFK Karviná,Czech Republic,1272,657,1333,-,,,, 1666 | 1520,MFK Tatran Liptovský Mikuláš,Slovakia,1293,79,1300,-,,,, 1667 | 1306,MFM FC,Nigeria,1314,324,1349,-,,,, 1668 | 2110,Mgaear Al Sarhan,Jordan,1250,3,1250,-,,,, 1669 | 1640,Mictlán,Guatemala,1285,16,1285,-,,,, 1670 | 468,Middlesbrough,England,1443,3,1443,-,,,, 1671 | 1721,Miedź Legnica,Poland,1277,2,1277,-,,,, 1672 | 2091,Mighty Jets,Ghana,1251,1,1251,-,,,, 1673 | 158,Millonarios,Colombia,1572,37,1543,+,,,, 1674 | 1229,Mineros de Guayana,Venezuela,1323,312,1357,-,,,, 1675 | 842,Minnesota United,United States,1368,65,1358,+,,,, 1676 | 1412,Minyor Pernik,Bulgaria,1302,1,1302,-,,,, 1677 | 2118,Miramar Misiones,Uruguay,1250,47,1250,-,,,, 1678 | 1574,Misr El Makasa,Egypt,1289,787,1373,-,,,, 1679 | 2161,Mitra Kukar,Indonesia,1247,43,1247,-,,,, 1680 | 729,Mjällby AIF,Sweden,1388,202,1354,+,,,, 1681 | 2216,Mjøndalen IF,Norway,1244,292,1262,-,,,, 1682 | 475,Mladá Boleslav,Czech Republic,1441,55,1427,+,,,, 1683 | 2030,Mladi Radnik,Serbia,1255,1,1255,-,,,, 1684 | 2706,Mladost CD,Macedonia,1183,9,1183,-,,,, 1685 | 2458,Mladost Velika,Bosnia and Herzegovina,1224,26,1224,-,,,, 1686 | 1502,MO Béjaia,Algeria,1296,20,1296,-,,,, 1687 | 1102,Moghreb Tétouan,Morocco,1336,262,1367,-,,,, 1688 | 2041,Mogren,Montenegro,1254,1,1254,-,,,, 1689 | 1709,Mohammedan SC,India,1279,338,1254,+,,,, 1690 | 579,Mohun Bagan,India,1417,3,1417,-,,,, 1691 | 2575,MOIK,Azerbaijan,1212,22,1212,-,,,, 1692 | 315,MOL Fehérvár FC,Hungary,1490,99,1535,-,,,, 1693 | 142,Molde FK,Norway,1581,13,1586,-,,,, 1694 | 1711,Molinos El Pirata FC,Peru,1278,4,1278,-,,,, 1695 | 2157,Molunge,Congo DR,1247,43,1247,-,,,, 1696 | 2630,Molynes United FC,Jamaica,1203,288,1238,-,,,, 1697 | 35,Monaco,France,1742,6,1719,+,,,, 1698 | 1219,Monagas SC,Venezuela,1323,443,1284,+,,,, 1699 | 1296,Monaghan United,Ireland,1315,8,1315,-,,,, 1700 | 318,Monarcas Morelia,Mexico,1488,6,1488,-,,,, 1701 | 952,Monomatapa United,Zimbabwe,1353,18,1353,-,,,, 1702 | 1340,Mons,Belgium,1310,1,1310,-,,,, 1703 | 2245,Mont Bleu,Denmark,1242,39,1242,-,,,, 1704 | 2552,Mont-Dore,New Caledonia,1215,23,1215,-,,,, 1705 | 2479,Montana,Bulgaria,1223,29,1223,-,,,, 1706 | 2365,Montedio Yamagata,Japan,1232,38,1232,-,,,, 1707 | 2509,Montego Bay United,Jamaica,1220,453,1253,-,,,, 1708 | 145,Monterrey,Mexico,1580,16,1563,+,,,, 1709 | 514,Montevideo Wanderers,Uruguay,1432,246,1378,+,,,, 1710 | 363,Montpellier,France,1473,220,1573,-,,,, 1711 | 2260,Moossou FC,Ivory Coast,1241,38,1241,-,,,, 1712 | 1072,Mordovia Saransk,Russia,1339,11,1339,-,,,, 1713 | 680,Moreirense,Portugal,1395,332,1477,-,,,, 1714 | 2648,Mornar,Montenegro,1199,99,1164,+,,,, 1715 | 2410,Morobe Wawens,Papua New Guinea,1229,32,1229,-,,,, 1716 | 1338,Moroka Swallows,South Africa,1310,382,1351,-,,,, 1717 | 583,Moskva,Russia,1416,5,1416,-,,,, 1718 | 344,Motagua,Honduras,1478,91,1518,-,,,, 1719 | 532,Motema Pembe,Congo DR,1428,45,1437,-,,,, 1720 | 1059,Motherwell,Scotland,1340,25,1343,-,,,, 1721 | 682,Motor Action,Zimbabwe,1394,7,1394,-,,,, 1722 | 1319,Mount Pleasant FC,Jamaica,1312,154,1300,+,,,, 1723 | 887,Mouscron-Péruwelz,Belgium,1361,10,1361,-,,,, 1724 | 394,MP Antalyaspor,Turkey,1464,390,1374,+,,,, 1725 | 2207,MSP Batna,Algeria,1244,39,1244,-,,,, 1726 | 1242,MTK Budapest,Hungary,1320,214,1344,-,,,, 1727 | 2618,Muaither SC,Qatar,1206,13,1206,-,,,, 1728 | 460,Muangthong United,Thailand,1445,8,1446,-,,,, 1729 | 1897,Mufulira Wanderers,Zambia,1264,4,1264,-,,,, 1730 | 1791,MuÄŸan,Azerbaijan,1271,9,1271,-,,,, 1731 | 2230,Mumbai City FC,India,1243,95,1240,+,,,, 1732 | 2028,Mumbai FC,India,1255,1,1255,-,,,, 1733 | 1905,Municipal Limeño,El Salvador,1263,428,1299,-,,,, 1734 | 535,Mura 05,Slovenia,1427,8,1423,+,,,, 1735 | 700,Mushuc Runa SC,Ecuador,1392,116,1369,+,,,, 1736 | 2239,Muungano,Congo DR,1242,37,1242,-,,,, 1737 | 1143,MyPa,Finland,1330,0,1330,-,,,, 1738 | 1498,MZKS Arka Gdynia,Poland,1296,19,1296,-,,,, 1739 | 2049,NA Hussein Dey,Algeria,1254,484,1292,-,,,, 1740 | 1470,NAC Breda,Netherlands,1298,29,1298,-,,,, 1741 | 171,Nacional,Uruguay,1564,11,1563,+,,,, 1742 | 1845,Nacional,Portugal,1268,10,1268,-,,,, 1743 | 636,Nacional Asunción,Paraguay,1403,283,1475,-,,,, 1744 | 2402,Nacional de Benguela,Angola,1230,29,1230,-,,,, 1745 | 792,Nacional Potosí,Bolivia,1376,187,1410,-,,,, 1746 | 2600,Nadi,Fiji,1208,17,1208,-,,,, 1747 | 1784,Naft Masjed Soleyman FC,Iran,1272,466,1312,-,,,, 1748 | 941,Naft Tehran,Iran,1354,14,1354,-,,,, 1749 | 2018,Nafta,Slovenia,1255,1,1255,-,,,, 1750 | 2545,Naftan Novopolotsk,Belarus,1216,23,1216,-,,,, 1751 | 417,Nagoya Grampus Eight,Japan,1457,43,1444,+,,,, 1752 | 1964,Najran SC,Saudi Arabia,1259,2,1259,-,,,, 1753 | 2496,Nakambala Leopards,Zambia,1221,29,1221,-,,,, 1754 | 2289,Nakhon Pathom,Thailand,1239,43,1239,-,,,, 1755 | 1549,Nakhon Ratchasima FC,Thailand,1291,13,1292,-,,,, 1756 | 1864,Nalkutan FC,Vanuatu,1266,11,1266,-,,,, 1757 | 479,Nancy,France,1439,0,1439,-,,,, 1758 | 138,Nantes,France,1586,92,1526,+,,,, 1759 | 1262,Napredak,Serbia,1318,271,1348,-,,,, 1760 | 2684,Napredok,Macedonia,1190,8,1190,-,,,, 1761 | 2368,NAPSA Stars FC,Zambia,1232,35,1239,-,,,, 1762 | 1137,Narva Trans,Estonia,1331,214,1355,-,,,, 1763 | 377,Nasaf Qarshi,Uzbekistan,1469,108,1438,+,,,, 1764 | 815,Nasarawa United,Nigeria,1372,23,1373,-,,,, 1765 | 549,Nashville SC,United States,1424,231,1375,+,,,, 1766 | 1052,Nassaji Mazandaran,Iran,1341,27,1337,+,,,, 1767 | 2698,National Assembly,Zambia,1186,9,1186,-,,,, 1768 | 994,National Bank,Egypt,1348,689,1282,+,,,, 1769 | 1301,Náutico,Brazil,1314,6,1314,-,,,, 1770 | 1096,Naval 1º de Maio,Portugal,1337,16,1337,-,,,, 1771 | 1485,Navbahor Namangan,Uzbekistan,1297,260,1275,+,,,, 1772 | 1138,NC Magra,Algeria,1331,698,1268,+,,,, 1773 | 1877,Nchanga Rangers,Zambia,1265,9,1265,-,,,, 1774 | 2351,ND Triglav,Slovenia,1233,40,1233,-,,,, 1775 | 2375,Ndjadi,Congo DR,1232,37,1232,-,,,, 1776 | 2271,Ndoki ya Ndombe,Congo DR,1241,37,1241,-,,,, 1777 | 1070,Nea Salamis,Cyprus,1339,11,1339,-,,,, 1778 | 290,Neath Athletic,Wales,1501,1,1501,-,,,, 1779 | 761,NEC Nijmegen,Netherlands,1382,14,1375,+,,,, 1780 | 438,Necaxa,Mexico,1451,131,1419,+,,,, 1781 | 1522,Necaxa,Honduras,1293,31,1293,-,,,, 1782 | 2384,Neftchi,Uzbekistan,1231,40,1238,-,,,, 1783 | 360,Neftçi,Azerbaijan,1474,16,1480,-,,,, 1784 | 1998,Neftochimic Burgas 1962,Bulgaria,1257,4,1257,-,,,, 1785 | 819,Nejmeh SC,Lebanon,1371,31,1366,+,,,, 1786 | 811,Neman Grodno,Belarus,1373,120,1354,+,,,, 1787 | 2119,Nembe City FC,Nigeria,1250,47,1250,-,,,, 1788 | 1377,Neuchâtel Xamax,Switzerland,1305,4,1305,-,,,, 1789 | 2733,Nevėžis KÄ—dainiai,Lithuania,1171,229,1223,-,,,, 1790 | 1409,New Edubiase FC,Ghana,1302,1,1302,-,,,, 1791 | 467,New England Revolution,United States,1443,267,1384,+,,,, 1792 | 1043,New Soger,Congo DR,1342,1,1342,-,,,, 1793 | 1606,New Star de Douala,Cameroon,1288,228,1305,-,,,, 1794 | 381,New York City FC,United States,1468,68,1446,+,,,, 1795 | 624,New York Red Bulls,United States,1405,60,1392,+,,,, 1796 | 43,Newcastle United,England,1709,46,1627,+,,,, 1797 | 1853,Newcastle United Jets,Australia,1267,84,1261,+,,,, 1798 | 323,Newell's Old Boys,Argentina,1487,121,1541,-,,,, 1799 | 2691,Newry City AFC,Northern Ireland,1189,7,1189,-,,,, 1800 | 899,Newtown,Wales,1360,170,1338,+,,,, 1801 | 1895,Ngezi Platinum FC,Zimbabwe,1264,212,1250,+,,,, 1802 | 100,Nice,France,1624,106,1539,+,,,, 1803 | 1938,NIGELEC,Niger,1261,1,1261,-,,,, 1804 | 1155,Niger Tornadoes,Nigeria,1329,24,1332,-,,,, 1805 | 2741,Niki Volou,Greece,1166,2,1166,-,,,, 1806 | 450,Nîmes Olympique,France,1447,7,1447,-,,,, 1807 | 2711,Nistru,Moldova,1181,7,1181,-,,,, 1808 | 2426,Nitra,Slovakia,1227,31,1227,-,,,, 1809 | 1782,Njala Quan,Cameroon,1272,6,1272,-,,,, 1810 | 1966,Njube Sundowns,Zimbabwe,1259,2,1259,-,,,, 1811 | 724,NK Bravo,Slovenia,1389,10,1387,+,,,, 1812 | 688,NK Celje,Slovenia,1394,174,1431,-,,,, 1813 | 2196,NK Istra 1961,Croatia,1245,281,1225,+,,,, 1814 | 1603,NK Krka,Slovenia,1288,20,1288,-,,,, 1815 | 2280,NK Krsko,Slovenia,1240,37,1240,-,,,, 1816 | 2447,NK RudeÅ¡,Croatia,1225,26,1225,-,,,, 1817 | 1235,NK Tabor Sežana,Slovenia,1322,337,1359,-,,,, 1818 | 2327,NK Varaždin,Croatia,1236,40,1236,-,,,, 1819 | 1883,NK Zadar,Croatia,1265,2,1265,-,,,, 1820 | 2254,NK Zagreb,Croatia,1241,38,1241,-,,,, 1821 | 2533,NK Zvijezda Gradacac,Bosnia and Herzegovina,1218,24,1218,-,,,, 1822 | 1586,Nkana FC,Zambia,1289,169,1274,+,,,, 1823 | 2380,Nkoy,Congo DR,1231,37,1231,-,,,, 1824 | 2035,Nkoyi Bilombe,Denmark,1254,0,1254,-,,,, 1825 | 2077,Nkwazi,Zambia,1252,68,1256,-,,,, 1826 | 2682,Noah JÅ«rmala,Latvia,1190,218,1226,-,,,, 1827 | 1851,Nogoom FC,Egypt,1267,11,1267,-,,,, 1828 | 143,Nomme JK Kalju,Estonia,1581,29,1601,-,,,, 1829 | 1692,Nong Bua Pitchaya FC,Thailand,1280,415,1250,+,,,, 1830 | 2111,Nord Sport,Denmark,1250,50,1250,-,,,, 1831 | 870,Nordsjælland,Denmark,1364,212,1398,-,,,, 1832 | 2358,North Eastern Re Organising Cultural Association,India,1233,80,1242,-,,,, 1833 | 2531,North Queensland Fury,Australia,1218,24,1218,-,,,, 1834 | 2264,Northeast United FC,India,1241,38,1241,-,,,, 1835 | 755,Norwich City,England,1382,158,1357,+,,,, 1836 | 422,Novara,Italy,1456,10,1456,-,,,, 1837 | 1410,Novi Pazar,Serbia,1302,351,1274,+,,,, 1838 | 629,NÅ  Mura,Slovenia,1405,6,1405,-,,,, 1839 | 409,Ñublense,Chile,1460,409,1369,+,,,, 1840 | 453,Nueva Chicago,Argentina,1447,8,1447,-,,,, 1841 | 777,Nueve de Octubre,Ecuador,1378,112,1359,+,,,, 1842 | 704,Nürnberg,Germany,1391,14,1391,-,,,, 1843 | 1885,Nyíregyháza Spartacus,Hungary,1264,2,1264,-,,,, 1844 | 689,O'Higgins,Chile,1394,179,1431,-,,,, 1845 | 2744,Obod,Uzbekistan,1165,1,1165,-,,,, 1846 | 1598,Obolon',Ukraine,1288,19,1288,-,,,, 1847 | 1700,Ocean Boys FC,Nigeria,1280,3,1280,-,,,, 1848 | 2009,Ocean Pacifique,Denmark,1256,2,1256,-,,,, 1849 | 1157,OCK Khouribga,Morocco,1329,226,1305,+,,,, 1850 | 1056,Odds Ballklubb,Norway,1340,331,1385,-,,,, 1851 | 969,Odense Boldklub,Denmark,1352,98,1362,-,,,, 1852 | 1829,Odra WodzisÅ‚aw,Poland,1269,12,1269,-,,,, 1853 | 1816,Oestersunds FK,Sweden,1270,792,1345,-,,,, 1854 | 2471,Office Niger Sports,Mali,1223,26,1223,-,,,, 1855 | 999,OFI Crete,Greece,1347,297,1315,+,,,, 1856 | 1761,OFK Beograd,Serbia,1274,1,1274,-,,,, 1857 | 1438,OFK Titograd,Montenegro,1301,2,1301,-,,,, 1858 | 1750,OFTA FC,Cameroon,1275,309,1300,-,,,, 1859 | 2456,Ohod Saudi FC,Saudi Arabia,1224,25,1224,-,,,, 1860 | 1372,Oita Trinita,Japan,1306,125,1298,+,,,, 1861 | 2033,Okzhetpes Kokshetau,Kazakhstan,1254,0,1254,-,,,, 1862 | 494,Oleksandriya,Ukraine,1436,70,1419,+,,,, 1863 | 1159,Olhanense,Portugal,1329,5,1329,-,,,, 1864 | 248,Olimpia,Honduras,1521,71,1553,-,,,, 1865 | 262,Olimpia,Paraguay,1514,128,1583,-,,,, 1866 | 316,Olimpija Ljubljana,Slovenia,1489,16,1497,-,,,, 1867 | 1386,Olimpik Donetsk,Ukraine,1304,2,1304,-,,,, 1868 | 2356,Olimpik Sarajevo,Bosnia and Herzegovina,1233,40,1233,-,,,, 1869 | 998,Olimpo,Argentina,1347,2,1347,-,,,, 1870 | 44,Olympiakos,Greece,1706,7,1728,-,,,, 1871 | 873,Olympiakos Nicosia,Cyprus,1364,212,1336,+,,,, 1872 | 420,Olympiakos Volos,Greece,1457,10,1457,-,,,, 1873 | 2103,Olympic Club,Congo DR,1250,2,1250,-,,,, 1874 | 1161,Olympic Club de Safi,Morocco,1328,114,1341,-,,,, 1875 | 1512,Olympic El Qanah FC,Egypt,1295,25,1295,-,,,, 1876 | 1924,Olympic Niamey,Niger,1262,6,1262,-,,,, 1877 | 1329,Olympique Béja,Tunisia,1311,104,1301,+,,,, 1878 | 574,Olympique de Bamako,Mali,1419,6,1419,-,,,, 1879 | 1547,Olympique de Medea,Algeria,1291,441,1334,-,,,, 1880 | 2198,Olympique de Missira,Mali,1245,42,1245,-,,,, 1881 | 1929,Olympique du Kef,Tunisia,1262,7,1262,-,,,, 1882 | 1116,Omiya Ardija,Japan,1334,9,1334,-,,,, 1883 | 247,Omonia Nicosia,Cyprus,1521,108,1576,-,,,, 1884 | 654,Once Caldas,Colombia,1400,187,1442,-,,,, 1885 | 1716,Once Municipal,El Salvador,1278,75,1271,+,,,, 1886 | 2089,ONGC FC,India,1251,1,1251,-,,,, 1887 | 1599,Onze Créateurs,Mali,1288,20,1288,-,,,, 1888 | 2507,Opava,Czech Republic,1220,29,1220,-,,,, 1889 | 600,Ordabasy Shymkent,Kazakhstan,1411,51,1422,-,,,, 1890 | 1201,Orduspor,Turkey,1325,6,1325,-,,,, 1891 | 1631,Örebro,Sweden,1286,537,1335,-,,,, 1892 | 746,Orense SC,Ecuador,1384,451,1325,+,,,, 1893 | 1694,Örgryte,Sweden,1280,4,1280,-,,,, 1894 | 946,Oriente Petrolero,Bolivia,1354,40,1358,-,,,, 1895 | 2520,Orión,Costa Rica,1218,27,1218,-,,,, 1896 | 993,Orlando City,United States,1348,38,1351,-,,,, 1897 | 463,Orlando Pirates,South Africa,1444,73,1462,-,,,, 1898 | 131,Osasuna,Spain,1591,38,1622,-,,,, 1899 | 191,Osijek,Croatia,1549,7,1541,+,,,, 1900 | 810,Osmanlıspor FK,Turkey,1373,19,1373,-,,,, 1901 | 1597,Öster,Sweden,1288,19,1288,-,,,, 1902 | 1130,OÅ£elul GalaÅ£i,Romania,1332,2,1332,-,,,, 1903 | 1702,Othellos Athienou FC,Cyprus,1279,5,1279,-,,,, 1904 | 933,Oud-Heverlee Leuven,Belgium,1356,43,1359,-,,,, 1905 | 2275,Ouragahio,Ivory Coast,1240,38,1240,-,,,, 1906 | 2105,PA Sambizanga,Angola,1250,71,1249,+,,,, 1907 | 1449,Pacífico,Peru,1299,29,1299,-,,,, 1908 | 528,Paços de Ferreira,Portugal,1429,117,1457,-,,,, 1909 | 1315,Padideh F.C.,Iran,1312,567,1381,-,,,, 1910 | 2273,PAEEK,Cyprus,1240,833,1300,-,,,, 1911 | 2721,Paernu Linnameeskond,Estonia,1177,4,1177,-,,,, 1912 | 445,Pafos FC,Cyprus,1449,183,1405,+,,,, 1913 | 372,Paide Linnameeskond,Estonia,1470,75,1447,+,,,, 1914 | 276,Pakhtakor Tashkent,Uzbekistan,1508,68,1538,-,,,, 1915 | 710,Paksi SE,Hungary,1390,17,1385,+,,,, 1916 | 672,Palermo,Italy,1397,8,1397,-,,,, 1917 | 620,Palestino,Chile,1406,47,1418,-,,,, 1918 | 15,Palmeiras,Brazil,1831,33,1708,+,,,, 1919 | 187,Panathinaikos,Greece,1552,68,1518,+,,,, 1920 | 828,Pandurii Târgu Jiu,Romania,1370,16,1370,-,,,, 1921 | 1376,Panetolikos,Greece,1305,156,1295,+,,,, 1922 | 1195,Panionios,Greece,1326,8,1326,-,,,, 1923 | 1688,Panserraikos,Greece,1281,5,1281,-,,,, 1924 | 1525,Panthère,Cameroon,1293,401,1332,-,,,, 1925 | 2057,Panthrakikos Komotini,Greece,1253,2,1253,-,,,, 1926 | 127,PAOK FC,Greece,1598,30,1620,-,,,, 1927 | 2637,Pápa,Hungary,1202,9,1202,-,,,, 1928 | 2181,Papua New Guinea U20,Papua New Guinea,1246,42,1246,-,,,, 1929 | 766,Paradou AC,Algeria,1381,62,1389,-,,,, 1930 | 790,Paraná Clube,Brazil,1376,19,1376,-,,,, 1931 | 12,Paris Saint-Germain,France,1847,4,1885,-,,,, 1932 | 742,Parma Calcio 1913,Italy,1385,16,1385,-,,,, 1933 | 2759,Pärnu JK Vaprus,Estonia,1144,31,1176,-,,,, 1934 | 1927,Parrillas One,Honduras,1262,7,1262,-,,,, 1935 | 1211,Pars Jonoubi Jam,Iran,1324,10,1324,-,,,, 1936 | 1749,Partick Thistle,Scotland,1275,0,1275,-,,,, 1937 | 59,Partizan Beograd,Serbia,1685,23,1637,+,,,, 1938 | 2269,Partizan Minsk,Belarus,1241,37,1241,-,,,, 1939 | 2073,Partizani Tirana,Albania,1252,1,1252,-,,,, 1940 | 803,PAS Giannina,Greece,1374,439,1320,+,,,, 1941 | 1596,Pas Hamedan,Iran,1288,19,1288,-,,,, 1942 | 2415,Pasaquina F.C.,El Salvador,1228,32,1228,-,,,, 1943 | 935,Patriotas Boyacá,Colombia,1356,108,1342,+,,,, 1944 | 504,Patronato de Parana,Argentina,1433,76,1452,-,,,, 1945 | 1478,Pattaya United,Thailand,1298,25,1298,-,,,, 1946 | 1002,Paykan F.C.,Iran,1346,98,1335,+,,,, 1947 | 841,PEC Zwolle,Netherlands,1368,290,1422,-,,,, 1948 | 1224,Pécsi MFC,Hungary,1323,10,1323,-,,,, 1949 | 2668,Pelister,Macedonia,1193,397,1243,-,,,, 1950 | 2160,Pelita Bandung Raya,Indonesia,1247,43,1247,-,,,, 1951 | 1476,Penafiel,Portugal,1298,25,1298,-,,,, 1952 | 196,Peñarol,Uruguay,1547,54,1574,-,,,, 1953 | 1810,Penybont FC,Wales,1270,59,1265,+,,,, 1954 | 1265,Pérez Zeledón,Costa Rica,1318,99,1328,-,,,, 1955 | 1150,Persebaya Surabaya,Indonesia,1330,402,1294,+,,,, 1956 | 2480,Persela Lamongan,Indonesia,1222,551,1261,-,,,, 1957 | 2061,Persema Malang,Indonesia,1253,1,1253,-,,,, 1958 | 121,Persepolis,Iran,1604,23,1618,-,,,, 1959 | 2317,Perseru Badak Lampung,Indonesia,1237,40,1237,-,,,, 1960 | 753,Persib Bandung,Indonesia,1383,180,1353,+,,,, 1961 | 1890,Persiba Balikpapan,Indonesia,1264,2,1264,-,,,, 1962 | 1405,Persidafon,Indonesia,1303,2,1303,-,,,, 1963 | 894,Persija Jakarta,Indonesia,1360,117,1375,-,,,, 1964 | 2208,Persijap Jepara,Indonesia,1244,41,1244,-,,,, 1965 | 2200,Persik Kediri,Indonesia,1245,88,1242,+,,,, 1966 | 2093,Persikabo 1973 (INA),Indonesia,1251,205,1241,+,,,, 1967 | 788,Persipura Jayapura,Indonesia,1376,147,1403,-,,,, 1968 | 2661,Persiraja Aceh,Indonesia,1195,626,1254,-,,,, 1969 | 2116,Persiram Raja Ampat,Indonesia,1250,47,1250,-,,,, 1970 | 2183,Persita Tangerang,Indonesia,1246,2,1248,-,,,, 1971 | 2433,Persitara Jakarta,Indonesia,1226,29,1226,-,,,, 1972 | 1799,Persiwa Wamena,Indonesia,1271,10,1271,-,,,, 1973 | 1578,Perth Glory,Australia,1289,405,1327,-,,,, 1974 | 1454,Pescara,Italy,1299,28,1299,-,,,, 1975 | 2189,Petro Souths,Papua New Guinea,1245,44,1245,-,,,, 1976 | 1291,Petrojet,Egypt,1315,6,1315,-,,,, 1977 | 1167,Petrolul PloieÅŸti,Romania,1328,5,1328,-,,,, 1978 | 1999,Petrovac,Montenegro,1257,33,1259,-,,,, 1979 | 1974,Petržalka,Slovakia,1259,2,1259,-,,,, 1980 | 184,PFC CSKA Sofia,Bulgaria,1554,43,1575,-,,,, 1981 | 678,PFC Lokomotiv Sofia 1929,Bulgaria,1395,263,1455,-,,,, 1982 | 85,PFC Ludogorets 1945 Razgrad,Bulgaria,1642,6,1626,+,,,, 1983 | 229,PFC Sochi,Russia,1530,49,1505,+,,,, 1984 | 1185,Pharco FC,Egypt,1327,256,1300,+,,,, 1985 | 431,Philadelphia Union,United States,1452,37,1461,-,,,, 1986 | 484,Piast Gliwice,Poland,1438,17,1433,+,,,, 1987 | 1976,Pirae,Syria,1259,139,1268,-,,,, 1988 | 1427,Pirin Blagoevgrad,Bulgaria,1301,13,1302,-,,,, 1989 | 2424,Pirin Gotse Delchev,Bulgaria,1227,31,1227,-,,,, 1990 | 2387,PK-35 Vantaa,Finland,1231,34,1231,-,,,, 1991 | 2168,Platanias,Greece,1247,42,1247,-,,,, 1992 | 506,Plateau United,Nigeria,1433,34,1423,+,,,, 1993 | 2120,Platense,Honduras,1250,574,1294,-,,,, 1994 | 1253,Platinum Stars,South Africa,1319,3,1319,-,,,, 1995 | 575,Plaza Colonia,Uruguay,1418,42,1426,-,,,, 1996 | 2707,Pobeda,Macedonia,1183,9,1183,-,,,, 1997 | 1876,Podbeskidzie Bielsko-Biala,Poland,1265,9,1265,-,,,, 1998 | 1854,Podbrezová,Slovakia,1267,11,1267,-,,,, 1999 | 391,PogoÅ„ Szczecin,Poland,1465,195,1414,+,,,, 2000 | 352,Pohang Steelers,South Korea,1476,40,1493,-,,,, 2001 | 2222,Point Fortin FC,Trinidad and Tobago,1243,40,1243,-,,,, 2002 | 2722,Police,Trinidad and Tobago,1177,4,1177,-,,,, 2003 | 2488,Police FC,Niger,1222,30,1222,-,,,, 2004 | 1531,Police Tero FC,Thailand,1293,76,1289,+,,,, 2005 | 1988,Police United FC,Thailand,1258,3,1258,-,,,, 2006 | 1759,Politehnica IaÅŸi,Romania,1274,2,1274,-,,,, 2007 | 1506,Polokwane City,South Africa,1295,21,1295,-,,,, 2008 | 1666,Polonia Bytom,Poland,1283,11,1283,-,,,, 2009 | 716,Polonia Warszawa,Poland,1390,16,1390,-,,,, 2010 | 439,Ponte Preta,Brazil,1451,9,1451,-,,,, 2011 | 2481,Porcelana FC,Angola,1222,30,1222,-,,,, 2012 | 723,Port F.C.,Thailand,1389,30,1391,-,,,, 2013 | 953,Port Talbot,Wales,1353,17,1353,-,,,, 2014 | 2723,Portadown FC,Northern Ireland,1176,190,1220,-,,,, 2015 | 2446,Porthmadog,Wales,1225,25,1225,-,,,, 2016 | 645,Portimonense,Portugal,1402,5,1401,+,,,, 2017 | 644,Portland Timbers,United States,1402,77,1419,-,,,, 2018 | 1431,Portmore United FC,Jamaica,1301,301,1332,-,,,, 2019 | 531,Portsmouth,England,1428,6,1428,-,,,, 2020 | 183,Portuguesa,Brazil,1554,8,1554,-,,,, 2021 | 1892,Portuguesa FC,Venezuela,1264,550,1229,+,,,, 2022 | 1089,Power Dynamos,Zambia,1338,9,1335,+,,,, 2023 | 1785,Prachuap FC,Thailand,1272,86,1280,-,,,, 2024 | 2325,Prestatyn Town FC,Wales,1236,39,1236,-,,,, 2025 | 1602,Pretoria University,South Africa,1288,19,1288,-,,,, 2026 | 1973,Příbram,Czech Republic,1259,2,1259,-,,,, 2027 | 1862,Primorje,Slovenia,1267,15,1267,-,,,, 2028 | 1781,Prison Leopards,Zambia,1272,224,1256,+,,,, 2029 | 2133,Progresso Associação do Sambizanga,Angola,1249,406,1277,-,,,, 2030 | 1736,Progresso da Lunda Sul,Angola,1276,2,1276,-,,,, 2031 | 2462,PS Kemi,Finland,1224,26,1224,-,,,, 2032 | 1783,PSIS,Indonesia,1272,68,1266,+,,,, 2033 | 1418,PSM Makassar,Indonesia,1302,214,1324,-,,,, 2034 | 2294,PSMS,Indonesia,1238,44,1238,-,,,, 2035 | 1912,PSPS Pekanbaru,Indonesia,1263,4,1263,-,,,, 2036 | 1940,PSS Sleman,Indonesia,1260,64,1265,-,,,, 2037 | 31,PSV Eindhoven,Netherlands,1752,16,1709,+,,,, 2038 | 2534,PTT Rayong FC,Thailand,1217,24,1217,-,,,, 2039 | 2374,Puaikura,Cook Islands,1232,36,1232,-,,,, 2040 | 1415,Puerto Rico Islanders,Puerto Rico,1302,1,1302,-,,,, 2041 | 2678,Puerto Rico United,Puerto Rico,1191,9,1191,-,,,, 2042 | 335,Pumas UNAM,Mexico,1482,58,1505,-,,,, 2043 | 699,Pune FC,India,1392,14,1392,-,,,, 2044 | 1855,Punjab Football Club,India,1267,3,1266,+,,,, 2045 | 1863,Puntarenas FC,Costa Rica,1266,13,1266,-,,,, 2046 | 1186,Pusamania Borneo FC,Indonesia,1326,99,1316,+,,,, 2047 | 526,Puskás FC,Hungary,1429,86,1409,+,,,, 2048 | 1026,Pwd Bamenda,Cameroon,1343,41,1339,+,,,, 2049 | 325,Pyramids FC,Egypt,1487,84,1457,+,,,, 2050 | 781,Qäbälä,Azerbaijan,1377,66,1366,+,,,, 2051 | 159,QarabaÄŸ,Azerbaijan,1571,41,1541,+,,,, 2052 | 1354,Qatar SC,Qatar,1308,82,1318,-,,,, 2053 | 2547,Qingdao FC,China PR,1216,1019,1295,-,,,, 2054 | 1568,Qingdao Jonoon,China PR,1290,23,1290,-,,,, 2055 | 2192,Qizilqum Zarafshon,Uzbekistan,1245,291,1224,+,,,, 2056 | 449,Queens Park Rangers,England,1448,7,1448,-,,,, 2057 | 2523,Quelaton,Zimbabwe,1218,27,1218,-,,,, 2058 | 593,Querétaro,Mexico,1413,5,1414,-,,,, 2059 | 917,Quilmes,Argentina,1358,7,1358,-,,,, 2060 | 1723,R.F.C. Seraing,Belgium,1277,762,1350,-,,,, 2061 | 1617,Rabotnički,Macedonia,1287,131,1299,-,,,, 2062 | 2553,Racing Beirut,Lebanon,1215,23,1215,-,,,, 2063 | 137,Racing Club,Argentina,1586,104,1737,-,,,, 2064 | 1140,Racing Club,Uruguay,1331,2,1331,-,,,, 2065 | 1428,Racing Club d'Abidjan,Ivory Coast,1301,155,1291,+,,,, 2066 | 2287,Racing de Casablanca,Morocco,1239,42,1239,-,,,, 2067 | 741,Racing Santander,Spain,1385,18,1385,-,,,, 2068 | 2069,Rad Beograd,Serbia,1252,2,1252,-,,,, 2069 | 2131,Radnički 1923 Kragujevac,Serbia,1249,252,1265,-,,,, 2070 | 567,Radnički NiÅ¡,Serbia,1419,30,1424,-,,,, 2071 | 1869,Radnik Bijeljina,Bosnia and Herzegovina,1266,216,1286,-,,,, 2072 | 1094,Radomiak Radom,Poland,1337,347,1300,+,,,, 2073 | 1903,Radomlje,Slovenia,1263,851,1158,+,,,, 2074 | 1510,Rah Ahan,Iran,1295,23,1295,-,,,, 2075 | 2588,Raja Beni Mellal,Morocco,1209,19,1209,-,,,, 2076 | 2088,Rajasthan United,India,1251,19,1250,+,,,, 2077 | 2685,Rakvere JK Tarvas,Estonia,1190,8,1190,-,,,, 2078 | 1484,Ramonense PO,Costa Rica,1297,22,1297,-,,,, 2079 | 1443,Rampla Juniors,Uruguay,1300,29,1300,-,,,, 2080 | 2176,Ranchers Bees,Nigeria,1246,42,1246,-,,,, 2081 | 808,Randers FC,Denmark,1373,17,1369,+,,,, 2082 | 2080,Rangdajied United,India,1252,0,1252,-,,,, 2083 | 32,Rangers,Scotland,1750,1,1745,+,,,, 2084 | 1036,Rangers,Chile,1342,2,1342,-,,,, 2085 | 1646,Ranheim,Norway,1285,15,1285,-,,,, 2086 | 731,Rapid BucureÅŸti,Romania,1387,184,1357,+,,,, 2087 | 301,Rapid Wien,Austria,1496,69,1526,-,,,, 2088 | 1649,Rapide Club Oued Zem,Morocco,1284,544,1334,-,,,, 2089 | 1361,Ratchaburi FC,Thailand,1307,344,1345,-,,,, 2090 | 235,Rayo Vallecano,Spain,1526,15,1519,+,,,, 2091 | 21,RB Leipzig,Germany,1793,2,1772,+,,,, 2092 | 1336,RC Arbaâ,Algeria,1310,432,1273,+,,,, 2093 | 1947,RC Bafoussam,Cameroon,1260,715,1321,-,,,, 2094 | 2519,RC Kinshasa,Congo DR,1219,326,1248,-,,,, 2095 | 2036,RC Relizane,Algeria,1254,862,1327,-,,,, 2096 | 86,RC Strasbourg,France,1639,137,1530,+,,,, 2097 | 193,RCA Raja Casablanca Athletic,Morocco,1548,58,1519,+,,,, 2098 | 179,RCD Espanyol,Spain,1557,107,1503,+,,,, 2099 | 516,Reading,England,1431,4,1431,-,,,, 2100 | 29,Real Betis,Spain,1759,15,1716,+,,,, 2101 | 1519,Real Cartagena,Colombia,1294,32,1294,-,,,, 2102 | 487,Real España,Honduras,1437,310,1372,+,,,, 2103 | 786,Real Estelí,Nicaragua,1376,42,1368,+,,,, 2104 | 1697,Real Juventud,Honduras,1280,4,1280,-,,,, 2105 | 1933,Real Kashmir FC,India,1261,255,1283,-,,,, 2106 | 3,Real Madrid,Spain,2010,1,1937,+,,,, 2107 | 2736,Real Madriz,Nicaragua,1169,30,1187,-,,,, 2108 | 2629,Real Mamoré,Bolivia,1203,12,1203,-,,,, 2109 | 2612,Real Potosí,Bolivia,1206,102,1222,-,,,, 2110 | 824,Real Salt Lake,United States,1370,252,1337,+,,,, 2111 | 1579,Real Santa Cruz,Bolivia,1289,357,1261,+,,,, 2112 | 37,Real Sociedad,Spain,1722,1,1726,-,,,, 2113 | 2500,Real Sociedad,Honduras,1221,207,1241,-,,,, 2114 | 2578,Real Tamale,Ghana,1212,69,1201,+,,,, 2115 | 1612,Real Tomayapo,Bolivia,1287,225,1304,-,,,, 2116 | 274,Real Valladolid,Spain,1509,4,1509,-,,,, 2117 | 371,Real Zaragoza,Spain,1470,9,1470,-,,,, 2118 | 1025,Recreativo da Caála,Angola,1343,50,1338,+,,,, 2119 | 752,Recreativo do Libolo,Angola,1383,106,1402,-,,,, 2120 | 1035,Red Arrows,Zambia,1342,499,1295,+,,,, 2121 | 144,Red Bull Bragantino SP,Brazil,1580,65,1640,-,,,, 2122 | 30,Red Bull Salzburg,Austria,1755,10,1720,+,,,, 2123 | 211,Reims,France,1538,35,1521,+,,,, 2124 | 1303,Remo Stars,Nigeria,1314,790,1251,+,,,, 2125 | 1360,Renaissance Club Zemamra,Morocco,1307,319,1283,+,,,, 2126 | 1584,Renaissance de Ngoumou,Cameroon,1289,238,1309,-,,,, 2127 | 48,Rennes,France,1697,68,1599,+,,,, 2128 | 2700,Reno FC,Jamaica,1186,8,1186,-,,,, 2129 | 1740,Renova,Macedonia,1276,263,1256,+,,,, 2130 | 1039,Rentistas,Uruguay,1342,49,1348,-,,,, 2131 | 661,Resistencia Sport Club,Paraguay,1399,300,1350,+,,,, 2132 | 2463,Revan Baku,Azerbaijan,1224,26,1224,-,,,, 2133 | 2228,Rewa,Fiji,1243,40,1243,-,,,, 2134 | 1171,Rhyl,Wales,1328,4,1328,-,,,, 2135 | 714,Riga FC,Latvia,1390,47,1397,-,,,, 2136 | 637,Rigas Futbola skola,Latvia,1403,141,1375,+,,,, 2137 | 251,Rijeka,Croatia,1519,4,1520,-,,,, 2138 | 1707,Río Abajo,Panama,1279,4,1279,-,,,, 2139 | 464,Rio Ave,Portugal,1443,2,1443,-,,,, 2140 | 1553,Rising Stars,Nigeria,1291,25,1291,-,,,, 2141 | 25,River Plate,Argentina,1773,1,1756,+,,,, 2142 | 539,River Plate,Uruguay,1426,43,1415,+,,,, 2143 | 816,River Plate Ecuador,Ecuador,1371,288,1334,+,,,, 2144 | 627,River Plate PR,Puerto Rico,1405,6,1405,-,,,, 2145 | 2460,Rivoli United,Jamaica,1224,27,1224,-,,,, 2146 | 1034,Rizespor,Turkey,1342,181,1365,-,,,, 2147 | 669,RKC Waalwijk,Netherlands,1397,514,1326,+,,,, 2148 | 1722,RNK Split,Croatia,1277,2,1277,-,,,, 2149 | 2261,Roan United,Zambia,1241,38,1241,-,,,, 2150 | 995,Roda JC Kerkrade,Netherlands,1348,6,1348,-,,,, 2151 | 1199,Roeselare,Belgium,1325,7,1325,-,,,, 2152 | 2425,Rojolu,Congo DR,1227,31,1227,-,,,, 2153 | 27,Roma,Italy,1763,16,1717,+,,,, 2154 | 1812,RoPS Rovaniemi,Finland,1270,35,1272,-,,,, 2155 | 273,Rosario Central,Argentina,1509,66,1538,-,,,, 2156 | 342,Rosenborg BK,Norway,1479,58,1503,-,,,, 2157 | 1322,Ross County,Scotland,1312,428,1275,+,,,, 2158 | 2323,Roumde Adjia,Cameroon,1236,40,1236,-,,,, 2159 | 951,Royal AM,South Africa,1354,490,1300,+,,,, 2160 | 284,Royal Antwerp FC,Belgium,1503,18,1513,-,,,, 2161 | 1175,Royal Excel Mouscron Péruwelz,Belgium,1328,4,1328,-,,,, 2162 | 778,Royal Pari,Bolivia,1378,30,1371,+,,,, 2163 | 1867,Royal Wahingdoh,India,1266,11,1266,-,,,, 2164 | 604,RSB Berkane,Morocco,1409,10,1413,-,,,, 2165 | 176,RSC Anderlecht,Belgium,1559,63,1523,+,,,, 2166 | 369,Rubin Kazan,Russia,1471,98,1507,-,,,, 2167 | 909,Rubio Ñú,Paraguay,1359,10,1359,-,,,, 2168 | 1536,Ruch Chorzów,Poland,1292,31,1292,-,,,, 2169 | 1770,Rudar Pljevlja,Montenegro,1273,360,1302,-,,,, 2170 | 2573,Rudar Prijedor,Bosnia and Herzegovina,1212,4,1215,-,,,, 2171 | 2098,Rudar Velenje,Slovenia,1250,3,1250,-,,,, 2172 | 838,Rukh Vynnyky,Ukraine,1369,12,1368,+,,,, 2173 | 398,Ružomberok,Slovakia,1463,478,1361,+,,,, 2174 | 1006,Saba Qom,Iran,1345,3,1345,-,,,, 2175 | 1526,Sabah FK,Azerbaijan,1293,430,1260,+,,,, 2176 | 2265,Sabana de Mopti,Mali,1241,38,1241,-,,,, 2177 | 2122,Sabé,Ivory Coast,1250,46,1250,-,,,, 2178 | 1504,Sable Batié,Cameroon,1295,20,1295,-,,,, 2179 | 972,Saburtalo,Georgia,1351,25,1352,-,,,, 2180 | 1792,Sacachispas Chiquimula,Guatemala,1271,9,1271,-,,,, 2181 | 597,Sagan Tosu,Japan,1412,81,1394,+,,,, 2182 | 1505,Săgeata Năvodari,Romania,1295,21,1295,-,,,, 2183 | 891,Sagrada Esperança,Angola,1361,182,1338,+,,,, 2184 | 2582,Sahab SC,Jordan,1211,58,1203,+,,,, 2185 | 2038,Sahel,Niger,1254,1,1254,-,,,, 2186 | 1426,Saïda,Algeria,1301,1,1301,-,,,, 2187 | 1956,Saint George,Ethiopia,1260,5,1260,-,,,, 2188 | 2217,Saint-Clément,Congo DR,1243,40,1243,-,,,, 2189 | 500,Saint-Eloi Lupopo,Congo DR,1434,71,1419,+,,,, 2190 | 498,Saint-Étienne,France,1434,250,1520,-,,,, 2191 | 2342,Saint-Luc,Congo DR,1234,39,1234,-,,,, 2192 | 1249,Saipa FC,Iran,1319,154,1335,-,,,, 2193 | 2701,Salam Zgharta,Lebanon,1186,8,1186,-,,,, 2194 | 814,Salgaocar,India,1372,19,1372,-,,,, 2195 | 180,Sampdoria,Italy,1556,92,1627,-,,,, 2196 | 844,Samsunspor,Turkey,1367,15,1367,-,,,, 2197 | 1962,Samut Prakan City,Thailand,1259,135,1268,-,,,, 2198 | 2610,Samut Songkram,Thailand,1206,16,1206,-,,,, 2199 | 1284,San Francisco FC,Panama,1316,188,1335,-,,,, 2200 | 2557,San José,Bolivia,1215,1419,1331,-,,,, 2201 | 1334,San Jose Earthquakes,United States,1310,64,1303,+,,,, 2202 | 1901,San Juan FC,Puerto Rico,1263,5,1263,-,,,, 2203 | 2502,San Juan Jabloteh,Trinidad and Tobago,1220,28,1220,-,,,, 2204 | 343,San Lorenzo de Almagro,Argentina,1479,146,1542,-,,,, 2205 | 1390,San Luis,Chile,1304,1,1304,-,,,, 2206 | 1030,San Luis FC,Mexico,1343,5,1343,-,,,, 2207 | 1104,San Marcos,Chile,1336,17,1336,-,,,, 2208 | 473,San Martín de Tucumán,Argentina,1441,1,1441,-,,,, 2209 | 387,San Martín San Juan,Argentina,1466,11,1466,-,,,, 2210 | 970,San Pedro,Ivory Coast,1352,176,1330,+,,,, 2211 | 1670,San Simon,Peru,1282,12,1282,-,,,, 2212 | 985,Sanat Naft Abadan,Iran,1349,94,1359,-,,,, 2213 | 2596,Sandals South Coast,Jamaica,1209,17,1209,-,,,, 2214 | 1745,Sandecja Nowy SÄ…cz,Poland,1275,1,1275,-,,,, 2215 | 1560,Sandefjord Football,Norway,1290,431,1257,+,,,, 2216 | 2024,Sandnes,Norway,1255,1,1255,-,,,, 2217 | 428,Sanfrecce Hiroshima,Japan,1454,62,1470,-,,,, 2218 | 943,Sanga Balende,Congo DR,1354,141,1371,-,,,, 2219 | 595,Santa Cruz,Brazil,1412,0,1412,-,,,, 2220 | 382,Santa Fe,Colombia,1468,145,1523,-,,,, 2221 | 2043,Santa Gema FC,Panama,1254,1,1254,-,,,, 2222 | 918,Santa Lucia Cotzumalguapa,Guatemala,1358,152,1338,+,,,, 2223 | 2451,Santa Rita de Cássia FC,Angola,1225,48,1223,+,,,, 2224 | 1474,Santa Tecla FC,El Salvador,1298,442,1343,-,,,, 2225 | 1062,Santiago Morning,Chile,1340,8,1340,-,,,, 2226 | 1614,Santiago Wanderers,Chile,1287,426,1326,-,,,, 2227 | 488,Santo André,Brazil,1437,0,1437,-,,,, 2228 | 1357,Santos,South Africa,1308,4,1308,-,,,, 2229 | 2236,Santos de Angola,Angola,1243,37,1243,-,,,, 2230 | 960,Santos de Guápiles,Costa Rica,1353,44,1346,+,,,, 2231 | 117,Santos FC,Brazil,1607,10,1589,+,,,, 2232 | 250,Santos Laguna,Mexico,1520,78,1554,-,,,, 2233 | 70,São Paulo,Brazil,1660,7,1668,-,,,, 2234 | 2623,Sapovnela,Georgia,1204,11,1204,-,,,, 2235 | 2068,Saraburi FC,Thailand,1252,2,1252,-,,,, 2236 | 764,Sarmiento,Argentina,1381,35,1372,+,,,, 2237 | 882,Sarpsborg 08,Norway,1362,119,1347,+,,,, 2238 | 72,Sassuolo,Italy,1658,19,1700,-,,,, 2239 | 659,Saturn,Russia,1399,4,1399,-,,,, 2240 | 2320,Saurimo FC,Angola,1236,40,1236,-,,,, 2241 | 392,SC Bastia,France,1464,10,1464,-,,,, 2242 | 1063,SC Chabab Mohammédia,Morocco,1340,314,1305,+,,,, 2243 | 334,SC Dnipro-1,Ukraine,1482,302,1404,+,,,, 2244 | 730,SC Farense,Portugal,1387,19,1387,-,,,, 2245 | 538,SC Heerenveen,Netherlands,1426,7,1422,+,,,, 2246 | 444,SC Paderborn 07,Germany,1451,12,1451,-,,,, 2247 | 655,Schalke 04,Germany,1400,3,1400,-,,,, 2248 | 2056,Scorpion FC de Bé,Cameroon,1253,2,1253,-,,,, 2249 | 1679,SCR Altach,Austria,1281,320,1307,-,,,, 2250 | 2464,SD Atletico Nacional,Panama,1224,26,1224,-,,,, 2251 | 185,SD Huesca,Spain,1553,9,1553,-,,,, 2252 | 244,Seattle Sounders FC,United States,1523,96,1482,+,,,, 2253 | 805,Seinaejoen JK,Finland,1373,244,1341,+,,,, 2254 | 1456,sekhukhune united fc,South Africa,1299,14,1300,-,,,, 2255 | 1825,Sektzia Ness Ziona FC,Israel,1269,11,1269,-,,,, 2256 | 1314,Semen Padang,Indonesia,1312,6,1312,-,,,, 2257 | 1223,Seongnam FC,South Korea,1323,312,1358,-,,,, 2258 | 280,Sepahan,Iran,1505,8,1501,+,,,, 2259 | 2005,Sepidrood Rasht SC,Iran,1256,3,1256,-,,,, 2260 | 512,Sepsi OSK,Romania,1432,86,1412,+,,,, 2261 | 789,Servette,Switzerland,1376,61,1385,-,,,, 2262 | 1168,Sevastopol,Ukraine,1328,4,1328,-,,,, 2263 | 24,Sevilla,Spain,1790,6,1823,-,,,, 2264 | 794,Sevilla FC Puerto Rico,Puerto Rico,1375,21,1375,-,,,, 2265 | 763,Séwé,Ivory Coast,1381,18,1381,-,,,, 2266 | 2439,SÉ™bail FK,Azerbaijan,1226,403,1254,-,,,, 2267 | 1179,Sfîntul Gheorghe,Moldova,1327,129,1314,+,,,, 2268 | 2667,Shabab AL Ghazieh SC,Lebanon,1194,9,1194,-,,,, 2269 | 1899,Shabab Al Sahel,Lebanon,1264,34,1266,-,,,, 2270 | 2104,Shabab Al-Aqaba Club,Jordan,1250,80,1248,+,,,, 2271 | 1793,Shabab Al-Ordon Club,Jordan,1271,79,1265,+,,,, 2272 | 2234,Shabab El Bourj SC,Lebanon,1243,18,1247,-,,,, 2273 | 1385,Shabanie Mine,Zimbabwe,1304,1,1304,-,,,, 2274 | 1826,Shahin Bushehr FC,Iran,1269,11,1269,-,,,, 2275 | 1381,Shahrdari Tabriz,Iran,1305,1,1305,-,,,, 2276 | 42,Shakhtar Donetsk,Ukraine,1714,6,1731,-,,,, 2277 | 1076,Shakhter Karagandy,Kazakhstan,1339,33,1334,+,,,, 2278 | 125,Shakhtyor Soligorsk,Belarus,1599,4,1593,+,,,, 2279 | 129,Shamrock Rovers,Ireland,1596,6,1593,+,,,, 2280 | 462,Shandong Taishan F.C.,China PR,1444,152,1493,-,,,, 2281 | 233,Shanghai Port F.C.,China PR,1527,13,1532,-,,,, 2282 | 722,Shanghai Shenhua,China PR,1389,140,1364,+,,,, 2283 | 2522,Shanghai Shenxin,China PR,1218,27,1218,-,,,, 2284 | 668,Sharjah Cultural Club,United Arab Emirates,1397,2,1396,+,,,, 2285 | 1908,Shark XI,Congo DR,1263,4,1263,-,,,, 2286 | 1009,Sharks,Nigeria,1345,9,1345,-,,,, 2287 | 380,Sheffield United FC,England,1468,9,1468,-,,,, 2288 | 1827,Shelbourne,Ireland,1269,242,1252,+,,,, 2289 | 1216,Shenzhen FC,China PR,1324,360,1292,+,,,, 2290 | 1678,Shijiazhuang Ever Bright,China PR,1281,65,1275,+,,,, 2291 | 1259,Shimizu S-Pulse,Japan,1318,4,1318,-,,,, 2292 | 966,Shkupi Skopje,Macedonia,1352,541,1297,+,,,, 2293 | 1491,Shonan Bellmare,Japan,1297,52,1300,-,,,, 2294 | 1122,Shooting Stars,Nigeria,1333,65,1340,-,,,, 2295 | 1807,Shooting Stars,Zimbabwe,1270,9,1270,-,,,, 2296 | 2508,Shortan Guzor,Uzbekistan,1220,29,1220,-,,,, 2297 | 2441,Siam Navy FC,Thailand,1225,25,1225,-,,,, 2298 | 2750,Siauliai,Lithuania,1159,0,1159,-,,,, 2299 | 1752,Å ibenik,Croatia,1275,391,1307,-,,,, 2300 | 1331,Sibir Novosibirsk,Russia,1311,1,1311,-,,,, 2301 | 425,Siena,Italy,1455,9,1455,-,,,, 2302 | 2432,Sigui,Mali,1226,29,1226,-,,,, 2303 | 1095,Silkeborg,Denmark,1337,1335,1230,+,,,, 2304 | 402,Sillamäe Kalev,Estonia,1462,13,1462,-,,,, 2305 | 971,Simba SC,Tanzania,1351,19,1351,-,,,, 2306 | 1230,Simurq,Azerbaijan,1323,10,1323,-,,,, 2307 | 548,Sint-Truiden,Belgium,1424,262,1370,+,,,, 2308 | 1965,Siófok,Hungary,1259,2,1259,-,,,, 2309 | 903,Sion,Switzerland,1359,138,1377,-,,,, 2310 | 2001,Siquinalá FC,Guatemala,1256,3,1256,-,,,, 2311 | 1048,Sirius,Sweden,1341,201,1319,+,,,, 2312 | 745,Å iroki Brijeg,Bosnia and Herzegovina,1384,134,1409,-,,,, 2313 | 2586,Sisaket FC,Thailand,1210,20,1210,-,,,, 2314 | 341,Sivasspor,Turkey,1479,99,1521,-,,,, 2315 | 1212,SK Austria Klagenfurt,Austria,1324,229,1300,+,,,, 2316 | 2475,SK BabÄ«te,Latvia,1223,27,1223,-,,,, 2317 | 1156,SK Brann,Norway,1329,157,1347,-,,,, 2318 | 490,SK Sigma Olomouc,Czech Republic,1436,130,1408,+,,,, 2319 | 2574,SK Super Nova,Latvia,1212,468,1250,-,,,, 2320 | 1842,SKA-Khabarovsk,Russia,1268,10,1268,-,,,, 2321 | 2213,Skalica,Slovakia,1244,42,1244,-,,,, 2322 | 1650,Skenderbeu,Albania,1284,14,1284,-,,,, 2323 | 1292,Å KF Sereď,Slovakia,1315,226,1296,+,,,, 2324 | 2092,SKN Sankt Pölten,Austria,1251,2,1251,-,,,, 2325 | 1053,ÅšlÄ…sk WrocÅ‚aw,Poland,1341,317,1383,-,,,, 2326 | 1304,Slaven,Croatia,1314,14,1316,-,,,, 2327 | 39,Slavia Prague,Czech Republic,1721,14,1757,-,,,, 2328 | 702,Slavia Sofia,Bulgaria,1392,6,1388,+,,,, 2329 | 1151,Slavia-Mozyr,Belarus,1330,637,1271,+,,,, 2330 | 2418,Slavija Sarajevo,Bosnia and Herzegovina,1228,31,1228,-,,,, 2331 | 698,Sligo Rovers,Ireland,1392,60,1404,-,,,, 2332 | 2142,Sliven,Bulgaria,1248,41,1248,-,,,, 2333 | 1891,Sloboda Tuzla,Bosnia and Herzegovina,1264,69,1268,-,,,, 2334 | 1067,Sloboda Užice,Serbia,1340,9,1340,-,,,, 2335 | 162,Slovácko,Czech Republic,1567,111,1506,+,,,, 2336 | 118,Slovan Bratislava,Slovakia,1606,0,1599,+,,,, 2337 | 551,Slovan Liberec,Czech Republic,1423,219,1484,-,,,, 2338 | 2504,Smederevo,Serbia,1220,30,1220,-,,,, 2339 | 2642,Smolevichy,Belarus,1200,11,1200,-,,,, 2340 | 472,Smouha SC,Egypt,1441,92,1419,+,,,, 2341 | 954,SO Armée,Ivory Coast,1353,84,1362,-,,,, 2342 | 314,Sochaux,France,1490,8,1490,-,,,, 2343 | 2096,Social Sol,Honduras,1251,3,1251,-,,,, 2344 | 2296,Socozaki,Denmark,1238,44,1238,-,,,, 2345 | 1417,Sofapaka,Kenya,1302,1,1302,-,,,, 2346 | 1687,Sogakope WAFA,Ghana,1281,54,1287,-,,,, 2347 | 1673,Sogdiyona Jizzax,Uzbekistan,1282,422,1251,+,,,, 2348 | 1513,Sogndal,Norway,1294,25,1294,-,,,, 2349 | 614,Sol de América,Paraguay,1407,190,1371,+,,,, 2350 | 1984,SOL FC,Ivory Coast,1258,113,1265,-,,,, 2351 | 1848,Sololá FC,Guatemala,1267,407,1300,-,,,, 2352 | 2022,Solomon Warriors FC,Solomon Islands,1255,1,1255,-,,,, 2353 | 1786,SønderjyskE,Denmark,1272,543,1320,-,,,, 2354 | 2495,Songkhla United FC,Thailand,1221,29,1221,-,,,, 2355 | 2764,South End,Trinidad and Tobago,1137,1,1137,-,,,, 2356 | 198,Southampton,England,1545,33,1559,-,,,, 2357 | 2650,Southern United,New Zealand,1198,11,1198,-,,,, 2358 | 1105,SPAL 2013,Italy,1336,16,1336,-,,,, 2359 | 93,Sparta Prague,Czech Republic,1632,8,1630,+,,,, 2360 | 496,Sparta Rotterdam,Netherlands,1435,113,1464,-,,,, 2361 | 228,Spartak Moskva,Russia,1530,64,1560,-,,,, 2362 | 1007,Spartak Myjava,Slovakia,1345,4,1345,-,,,, 2363 | 1239,Spartak Nal'chik,Russia,1321,3,1321,-,,,, 2364 | 2071,Spartak Semey,Kazakhstan,1252,1,1252,-,,,, 2365 | 390,Spartak Trnava,Slovakia,1465,187,1416,+,,,, 2366 | 2341,SperanÅ£a Crihana,Moldova,1234,39,1234,-,,,, 2367 | 1027,Sport Áncash,Peru,1343,6,1343,-,,,, 2368 | 1041,Sport Boys,Peru,1342,30,1338,+,,,, 2369 | 1557,Sport Boys Warnes,Bolivia,1291,27,1291,-,,,, 2370 | 1147,Sport Colombia,Paraguay,1330,3,1330,-,,,, 2371 | 569,Sport Huancayo,Peru,1419,335,1358,+,,,, 2372 | 1225,Sport Loreto,Peru,1323,9,1323,-,,,, 2373 | 2524,Sport Lubango e Benfica,Angola,1218,27,1218,-,,,, 2374 | 277,Sport Recife,Brazil,1507,62,1482,+,,,, 2375 | 1624,Sport Rosario (Huaraz),Peru,1286,19,1286,-,,,, 2376 | 1400,Sportif de Chebba,Tunisia,1303,62,1310,-,,,, 2377 | 20,Sporting,Portugal,1797,10,1746,+,,,, 2378 | 2528,Sporting Beirut,Lebanon,1218,422,1250,-,,,, 2379 | 2457,Sporting Central Academy,Jamaica,1224,25,1224,-,,,, 2380 | 447,Sporting Charleroi,Belgium,1449,50,1433,+,,,, 2381 | 2662,Sporting Clube de Benguela,Angola,1195,556,1250,-,,,, 2382 | 1371,Sporting Clube de Goa,India,1306,5,1306,-,,,, 2383 | 291,Sporting Cristal,Peru,1499,81,1538,-,,,, 2384 | 2584,Sporting de Cabinda,Angola,1210,25,1217,-,,,, 2385 | 399,Sporting Fingal,Ireland,1463,11,1463,-,,,, 2386 | 1001,Sporting Gagnoa,Ivory Coast,1346,234,1321,+,,,, 2387 | 281,Sporting Gijón,Spain,1504,1,1504,-,,,, 2388 | 878,Sporting Kansas City,United States,1363,121,1379,-,,,, 2389 | 1270,Sporting San José FC,Costa Rica,1317,280,1294,+,,,, 2390 | 1416,Sporting San Miguelito,Panama,1302,248,1284,+,,,, 2391 | 2229,Sportist Svoge,Bulgaria,1243,40,1243,-,,,, 2392 | 2297,Sportive de Djerba,Tunisia,1238,44,1238,-,,,, 2393 | 1204,Sportivo Ameliano,Paraguay,1325,243,1350,-,,,, 2394 | 939,Sportivo Luqueño,Paraguay,1354,85,1344,+,,,, 2395 | 1233,Sportivo San Lorenzo,Paraguay,1322,8,1322,-,,,, 2396 | 1325,Sportivo Trinidense,Paraguay,1311,3,1311,-,,,, 2397 | 2052,Sportul Studentesc,Romania,1253,1,1253,-,,,, 2398 | 1801,Sreenidi Deccan,India,1271,306,1250,+,,,, 2399 | 2059,Sriracha,Thailand,1253,1,1253,-,,,, 2400 | 1615,Sriwijaya FC,Indonesia,1287,21,1287,-,,,, 2401 | 9,SSC Napoli,Italy,1854,6,1841,+,,,, 2402 | 581,St Patrick's,Ireland,1417,40,1407,+,,,, 2403 | 1831,St. George,Ethiopia,1268,12,1268,-,,,, 2404 | 1374,St. Johnstone,Scotland,1306,585,1373,-,,,, 2405 | 1294,St. Mirren,Scotland,1315,30,1312,+,,,, 2406 | 563,St. Pauli,Germany,1420,5,1420,-,,,, 2407 | 1358,Stabæk,Norway,1308,525,1367,-,,,, 2408 | 1684,Stade d'Abidjan,Ivory Coast,1281,7,1281,-,,,, 2409 | 1166,Stade Gabésien,Tunisia,1328,6,1328,-,,,, 2410 | 312,Stade Malien Bamako,Mali,1490,7,1490,-,,,, 2411 | 2546,Stade Malien Sikasso,Mali,1216,23,1216,-,,,, 2412 | 876,Stade Renard de Melong,Cameroon,1363,6,1362,+,,,, 2413 | 1172,Stade Tunisien,Tunisia,1328,4,1328,-,,,, 2414 | 1132,Stal Kamianske,Ukraine,1331,1,1331,-,,,, 2415 | 2272,Standard,Azerbaijan,1241,37,1241,-,,,, 2416 | 833,Standard Liège,Belgium,1369,375,1445,-,,,, 2417 | 2394,Start,Norway,1230,32,1230,-,,,, 2418 | 154,Steaua BucureÅŸti,Romania,1573,50,1539,+,,,, 2419 | 1686,Steel Azin,Iran,1281,6,1281,-,,,, 2420 | 1307,Stella Club,Ivory Coast,1313,173,1331,-,,,, 2421 | 898,Stellenbosch FC,South Africa,1360,467,1306,+,,,, 2422 | 2174,Stjarnan,Iceland,1247,41,1247,-,,,, 2423 | 238,Stoke City,England,1526,5,1526,-,,,, 2424 | 846,Strømsgodset,Norway,1367,276,1333,+,,,, 2425 | 338,Sturm Graz,Austria,1481,108,1447,+,,,, 2426 | 1463,Suchitepéquez,Guatemala,1299,27,1299,-,,,, 2427 | 1113,Sud América,Uruguay,1335,376,1383,-,,,, 2428 | 2319,Sudeva Delhi FC,India,1236,218,1250,-,,,, 2429 | 375,Suduva Marijampole,Lithuania,1469,47,1486,-,,,, 2430 | 1844,Sukhothai FC,Thailand,1268,10,1268,-,,,, 2431 | 1552,Sumqayıt,Azerbaijan,1291,255,1315,-,,,, 2432 | 511,Sunderland,England,1432,5,1432,-,,,, 2433 | 2127,Sunkar,Kazakhstan,1249,46,1249,-,,,, 2434 | 866,Sunshine Stars,Nigeria,1364,344,1323,+,,,, 2435 | 717,Supersport United,South Africa,1389,69,1401,-,,,, 2436 | 1662,Suphanburi FC,Thailand,1283,127,1295,-,,,, 2437 | 2486,Surkhon-2011,Uzbekistan,1222,52,1229,-,,,, 2438 | 461,Sutjeska,Montenegro,1444,48,1431,+,,,, 2439 | 2126,Suva,Fiji,1249,46,1249,-,,,, 2440 | 612,Suwon Bluewings,South Korea,1407,274,1482,-,,,, 2441 | 990,Suwon FC,South Korea,1349,311,1315,+,,,, 2442 | 1339,SV Ried,Austria,1310,91,1301,+,,,, 2443 | 1623,SV Roeselare,Belgium,1286,19,1286,-,,,, 2444 | 2605,Svetkavitsa,Bulgaria,1208,16,1208,-,,,, 2445 | 258,Swansea City,England,1515,0,1515,-,,,, 2446 | 697,Sydney FC,Australia,1393,280,1455,-,,,, 2447 | 2403,Syrianska,Sweden,1229,29,1229,-,,,, 2448 | 2226,Szolnoki MÁV,Hungary,1243,40,1243,-,,,, 2449 | 1401,Szombathelyi Haladás,Hungary,1303,2,1303,-,,,, 2450 | 2503,T&TEC,Trinidad and Tobago,1220,28,1220,-,,,, 2451 | 1286,Tacuarembó,Uruguay,1316,5,1316,-,,,, 2452 | 1085,Tacuary,Paraguay,1338,65,1329,+,,,, 2453 | 2291,Tafea FC,Vanuatu,1239,44,1239,-,,,, 2454 | 2761,Talinna Kalev,Estonia,1144,1,1148,-,,,, 2455 | 104,Talleres de Cordoba,Argentina,1616,69,1554,+,,,, 2456 | 1850,Tallinna JK Legion,Estonia,1267,13,1266,+,,,, 2457 | 2154,Tamme Auto,Estonia,1248,43,1248,-,,,, 2458 | 1955,Tammeka,Estonia,1260,323,1287,-,,,, 2459 | 1328,Tampere United,Finland,1311,2,1311,-,,,, 2460 | 2554,Tampines Rovers FC,Singapore,1215,448,1250,-,,,, 2461 | 2511,Tanta,Egypt,1220,29,1220,-,,,, 2462 | 1554,Taraba,Nigeria,1291,25,1291,-,,,, 2463 | 1444,Taraz,Kazakhstan,1300,100,1294,+,,,, 2464 | 1730,Târgu MureÅŸ,Romania,1277,0,1277,-,,,, 2465 | 2398,Tasman United,New Zealand,1230,30,1230,-,,,, 2466 | 2704,Tatran PreÅ¡ov,Slovakia,1183,9,1183,-,,,, 2467 | 809,Tauro FC,Panama,1373,140,1352,+,,,, 2468 | 1970,Tavriia,Ukraine,1259,3,1259,-,,,, 2469 | 295,Team Wellington,New Zealand,1498,3,1498,-,,,, 2470 | 914,Técnico Universitario,Ecuador,1358,114,1372,-,,,, 2471 | 1902,Tefana,Tahiti,1263,5,1263,-,,,, 2472 | 1342,Telephonaat Beni Suef,Egypt,1309,0,1309,-,,,, 2473 | 1941,Tema Youth,Ghana,1260,2,1260,-,,,, 2474 | 660,Temperley,Argentina,1399,4,1399,-,,,, 2475 | 2219,Tempête,Haiti,1243,40,1243,-,,,, 2476 | 2255,Tenax CS FC,Zimbabwe,1241,149,1250,-,,,, 2477 | 389,Tenerife,Spain,1465,10,1465,-,,,, 2478 | 1556,Teplice,Czech Republic,1291,310,1320,-,,,, 2479 | 1875,Termalica Nieciecza,Poland,1265,23,1266,-,,,, 2480 | 2029,Teungueth FC,Senegal,1255,1,1255,-,,,, 2481 | 2406,Thai Honda,Thailand,1229,29,1229,-,,,, 2482 | 2666,That Ras Club,Jordan,1194,9,1194,-,,,, 2483 | 78,The New Saints,Wales,1650,2,1639,+,,,, 2484 | 220,The Strongest,Bolivia,1532,30,1547,-,,,, 2485 | 862,Thun,Switzerland,1366,11,1366,-,,,, 2486 | 2173,Tianjin Jinmen Tiger F.C.,China PR,1247,193,1258,-,,,, 2487 | 1193,Tianjin Tianhai,China PR,1326,8,1326,-,,,, 2488 | 2211,Tiare Tahiti,Syria,1244,42,1244,-,,,, 2489 | 2279,Tiburones Rojos de Veracruz,Mexico,1240,37,1240,-,,,, 2490 | 385,Tigre,Argentina,1467,40,1452,+,,,, 2491 | 1088,Tigres FC,Colombia,1338,15,1338,-,,,, 2492 | 116,Tigres UANL,Mexico,1608,24,1624,-,,,, 2493 | 1005,Tiko United,Cameroon,1346,3,1346,-,,,, 2494 | 288,TimiÅŸoara,Romania,1502,1,1502,-,,,, 2495 | 434,Tiraspol,Moldova,1452,7,1452,-,,,, 2496 | 1836,Tivoli Gardens,Jamaica,1268,28,1266,+,,,, 2497 | 2755,Tobago United,Trinidad and Tobago,1153,0,1153,-,,,, 2498 | 401,Tobol Kostanay,Kazakhstan,1463,23,1453,+,,,, 2499 | 2182,Togo-Port,Uganda,1246,44,1246,-,,,, 2500 | 2214,Tokushima Vortis,Japan,1244,66,1242,+,,,, 2501 | 105,Tolima,Colombia,1616,126,1526,+,,,, 2502 | 497,Toluca FC,Mexico,1435,105,1462,-,,,, 2503 | 2065,Tom' Tomsk,Russia,1252,1,1252,-,,,, 2504 | 1065,Tondela,Portugal,1340,228,1367,-,,,, 2505 | 2412,Tonnerre Kalara Club,Cameroon,1228,197,1247,-,,,, 2506 | 711,Topolski Sportski Club,Serbia,1390,67,1402,-,,,, 2507 | 98,Torino,Italy,1624,117,1535,+,,,, 2508 | 2740,Tornados de Humacao,Puerto Rico,1166,2,1166,-,,,, 2509 | 1379,Toronto FC,Canada,1305,725,1399,-,,,, 2510 | 1600,Torpedo Kutaisi,Georgia,1288,229,1306,-,,,, 2511 | 735,Torpedo Zhodino,Belarus,1386,282,1446,-,,,, 2512 | 2613,TOT,Thailand,1206,15,1206,-,,,, 2513 | 1366,Total Chalaco,Peru,1307,4,1307,-,,,, 2514 | 14,Tottenham Hotspur,England,1837,18,1744,+,,,, 2515 | 1389,Toulouse,France,1304,1,1304,-,,,, 2516 | 2125,Township Rollers,Botswana,1249,46,1249,-,,,, 2517 | 139,TP Mazembe,Congo DR,1584,10,1571,+,,,, 2518 | 120,Trabzonspor,Turkey,1605,59,1552,+,,,, 2519 | 665,Tractor Sazi,Iran,1398,211,1445,-,,,, 2520 | 2428,Trat FC,Thailand,1227,30,1227,-,,,, 2521 | 2063,TRAU F.C.,India,1253,183,1265,-,,,, 2522 | 2563,Travnik,Bosnia and Herzegovina,1214,23,1214,-,,,, 2523 | 2383,Trelleborgs FF,Sweden,1231,36,1231,-,,,, 2524 | 902,Trenčín,Slovakia,1359,277,1327,+,,,, 2525 | 1244,Triangle FC,Zimbabwe,1320,67,1314,+,,,, 2526 | 2385,Tripoli AC,Lebanon,1231,110,1223,+,,,, 2527 | 2407,Tripple B,Zimbabwe,1229,30,1229,-,,,, 2528 | 1302,Tromsø IL,Norway,1314,257,1293,+,,,, 2529 | 405,Troyes,France,1462,404,1371,+,,,, 2530 | 2595,Trujillanos FC,Venezuela,1209,683,1262,-,,,, 2531 | 1639,TS Galaxy,South Africa,1285,260,1305,-,,,, 2532 | 2517,Tshinkunku,Congo DR,1219,11,1223,-,,,, 2533 | 2076,Tsholotsho,Zimbabwe,1252,1,1252,-,,,, 2534 | 1055,TSV Hartberg,Austria,1340,105,1352,-,,,, 2535 | 2363,TTM Chiangmai,Thailand,1233,38,1233,-,,,, 2536 | 2429,Tucanes FC,Venezuela,1227,30,1227,-,,,, 2537 | 963,Tukoko University,Papua New Guinea,1352,18,1352,-,,,, 2538 | 2548,Tulevik Viljandi,Estonia,1216,56,1210,+,,,, 2539 | 2680,Tupapa Maraerenga,Cook Islands,1190,9,1190,-,,,, 2540 | 2597,Turan Tovuz,Azerbaijan,1209,17,1209,-,,,, 2541 | 1671,Turku PS,Finland,1282,13,1282,-,,,, 2542 | 1429,Turnu Severin,Romania,1301,0,1301,-,,,, 2543 | 337,U.S. Salernitana 1919,Italy,1481,46,1500,-,,,, 2544 | 2209,Ubon UMT FC,Thailand,1244,41,1244,-,,,, 2545 | 82,Udinese,Italy,1649,102,1549,+,,,, 2546 | 2625,UES,El Salvador,1203,10,1203,-,,,, 2547 | 796,Újpest,Hungary,1375,50,1366,+,,,, 2548 | 89,Ulsan Hyundai,South Korea,1633,30,1598,+,,,, 2549 | 1610,Umm-Salal,Qatar,1287,55,1284,+,,,, 2550 | 705,UMS de Loum,Cameroon,1391,133,1418,-,,,, 2551 | 2303,UNAN Managua,Nicaragua,1237,371,1261,-,,,, 2552 | 2203,Underhill,Zimbabwe,1245,39,1245,-,,,, 2553 | 978,Uniao da Madeira,Portugal,1350,0,1350,-,,,, 2554 | 1604,União de Leiria,Portugal,1288,20,1288,-,,,, 2555 | 2150,Uniao Sport Clube do Uige,Angola,1248,41,1248,-,,,, 2556 | 1183,Uniautónoma FC,Colombia,1327,7,1327,-,,,, 2557 | 1054,Unión Comercio,Peru,1341,1,1341,-,,,, 2558 | 2390,Union Deportivo Universitario,Panama,1230,563,1268,-,,,, 2559 | 1330,Union Douala,Cameroon,1311,300,1287,+,,,, 2560 | 432,Unión Española,Chile,1452,75,1432,+,,,, 2561 | 589,Unión La Calera,Chile,1415,53,1424,-,,,, 2562 | 1097,Unión San Felipe,Chile,1336,16,1336,-,,,, 2563 | 223,Unión Santa Fe,Argentina,1531,83,1495,+,,,, 2564 | 747,Union Sportive de Douala,Cameroon,1384,14,1384,-,,,, 2565 | 221,Union St.Gilloise,Belgium,1532,1027,1319,+,,,, 2566 | 1971,Unirea Alba Iulia,Romania,1259,3,1259,-,,,, 2567 | 1299,Unirea Urziceni,Romania,1314,6,1314,-,,,, 2568 | 852,Unisport FC Du Haut-Nkam,Cameroon,1367,11,1367,-,,,, 2569 | 2607,United City F.C.,Peru,1207,501,1250,-,,,, 2570 | 1582,United Petrotrin,Trinidad and Tobago,1289,22,1289,-,,,, 2571 | 2442,United Sikkim F.C,India,1225,25,1225,-,,,, 2572 | 1384,United Sports Club,India,1304,1,1304,-,,,, 2573 | 194,Universidad Católica,Ecuador,1548,75,1510,+,,,, 2574 | 347,Universidad Católica,Chile,1478,128,1533,-,,,, 2575 | 2106,Universidad Central de Venezuela FC,Venezuela,1250,143,1244,+,,,, 2576 | 419,Universidad César Vallejo,Peru,1457,93,1487,-,,,, 2577 | 771,Universidad Concepción,Chile,1380,21,1380,-,,,, 2578 | 713,Universidad de Chile,Chile,1390,308,1458,-,,,, 2579 | 1266,Universidad de San Carlos,Guatemala,1318,3,1318,-,,,, 2580 | 1647,Universidad San Martín de Porres,Peru,1284,1002,1402,-,,,, 2581 | 1769,Universitario,Bolivia,1273,63,1279,-,,,, 2582 | 2564,Universitario de Cobija,Bolivia,1214,23,1214,-,,,, 2583 | 408,Universitario de Deportes,Peru,1460,32,1448,+,,,, 2584 | 1387,Universitario de Vinto,Bolivia,1304,54,1300,+,,,, 2585 | 1275,Universitatea Cluj,Romania,1317,6,1317,-,,,, 2586 | 1746,Universitatea Craiova,Romania,1275,1,1275,-,,,, 2587 | 1263,Université Ngaoundéré,Cameroon,1318,4,1318,-,,,, 2588 | 2748,University College Dublin,Ireland,1161,18,1175,-,,,, 2589 | 1768,Urana,Niger,1273,1,1273,-,,,, 2590 | 365,Urawa Red Diamonds,Japan,1472,112,1440,+,,,, 2591 | 2470,Urena SC,Venezuela,1223,26,1223,-,,,, 2592 | 1040,US Biskra,Algeria,1342,565,1289,+,,,, 2593 | 1934,US Bitam,Tahiti,1261,3,1261,-,,,, 2594 | 653,US Monastir,Tunisia,1400,123,1375,+,,,, 2595 | 2114,US Panda B5,Congo DR,1250,7,1250,-,,,, 2596 | 1173,US Tataouine,Tunisia,1328,167,1309,+,,,, 2597 | 1551,Usc Bassam,Ivory Coast,1291,77,1300,-,,,, 2598 | 1657,USFAS Bamako,Mali,1283,14,1283,-,,,, 2599 | 2066,USGN,Niger,1252,1,1252,-,,,, 2600 | 414,USM Alger,Algeria,1459,146,1419,+,,,, 2601 | 1651,USM Bel Abbès,Algeria,1284,108,1274,+,,,, 2602 | 1841,USM Blida,Algeria,1268,10,1268,-,,,, 2603 | 1215,USM El Harrach,Algeria,1324,9,1324,-,,,, 2604 | 1937,Ústí nad Labem,Czech Republic,1261,2,1261,-,,,, 2605 | 2086,UWI FC,Jamaica,1251,2,1251,-,,,, 2606 | 1605,V-Varen Nagasaki,Japan,1288,20,1288,-,,,, 2607 | 110,Valencia,Spain,1611,29,1638,-,,,, 2608 | 2353,Valencia de Leogane,Haiti,1233,41,1233,-,,,, 2609 | 734,Valenciennes,France,1387,21,1387,-,,,, 2610 | 651,VÃ¥lerenga,Norway,1401,124,1428,-,,,, 2611 | 1226,Valmiera FK,Latvia,1323,879,1250,+,,,, 2612 | 1178,Vancouver Whitecaps,Canada,1327,362,1294,+,,,, 2613 | 1146,Varbergs BoIS,Sweden,1330,118,1318,+,,,, 2614 | 997,Vardar Skopje,Macedonia,1347,2,1347,-,,,, 2615 | 1465,Vasas Budapest,Hungary,1298,29,1298,-,,,, 2616 | 310,Vasco da Gama,Brazil,1492,5,1492,-,,,, 2617 | 1601,Vegalta Sendai,Japan,1288,314,1316,-,,,, 2618 | 1849,Vejle Boldklub,Denmark,1267,210,1287,-,,,, 2619 | 1264,Velež Mostar,Bosnia and Herzegovina,1318,111,1305,+,,,, 2620 | 123,Vélez Sarsfield,Argentina,1603,39,1632,-,,,, 2621 | 1833,Vendsyssel FF,Denmark,1268,12,1268,-,,,, 2622 | 529,Venezia FC,Italy,1428,238,1500,-,,,, 2623 | 1391,Ventforet Kofu,Japan,1303,1,1303,-,,,, 2624 | 1152,Ventspils,Latvia,1330,0,1329,+,,,, 2625 | 1907,Venus,Syria,1263,4,1263,-,,,, 2626 | 2286,Veraguas FC,Panama,1239,329,1259,-,,,, 2627 | 2165,Verdes FC,Belize,1247,42,1247,-,,,, 2628 | 2636,Vere United FC,Jamaica,1202,1,1203,-,,,, 2629 | 657,Veres Rivne,Ukraine,1400,35,1391,+,,,, 2630 | 2737,Vereya,Bulgaria,1169,3,1169,-,,,, 2631 | 1653,Veria FC,Greece,1284,13,1284,-,,,, 2632 | 1626,Vestsjælland,Denmark,1286,19,1286,-,,,, 2633 | 1919,Veti Club,Congo DR,1262,7,1262,-,,,, 2634 | 175,VfB Stuttgart,Germany,1559,64,1604,-,,,, 2635 | 1091,Viborg,Denmark,1338,450,1294,+,,,, 2636 | 1986,Victoria,Honduras,1258,487,1225,+,,,, 2637 | 2453,Victoria,Zimbabwe,1225,26,1225,-,,,, 2638 | 1948,Victoria Branesti,Romania,1260,4,1260,-,,,, 2639 | 2498,Vidima-Rakovski,Bulgaria,1221,29,1221,-,,,, 2640 | 2011,Viettel Football Club,Vietnam,1256,96,1250,+,,,, 2641 | 596,Viitorul ConstanÅ£a,Romania,1412,3,1412,-,,,, 2642 | 395,Viking FK,Norway,1464,234,1405,+,,,, 2643 | 62,Viktoria Plzeň,Czech Republic,1680,63,1590,+,,,, 2644 | 1572,Viktoria Žižkov,Czech Republic,1290,22,1290,-,,,, 2645 | 2324,Villa Espanola,Uruguay,1236,712,1288,-,,,, 2646 | 1345,Villa Teresa,Uruguay,1309,0,1309,-,,,, 2647 | 16,Villarreal,Spain,1826,4,1793,+,,,, 2648 | 1616,Virunga,Congo DR,1287,21,1287,-,,,, 2649 | 534,Vissel Kobe,Japan,1428,72,1410,+,,,, 2650 | 1388,Vista Hermosa,El Salvador,1304,1,1304,-,,,, 2651 | 230,Vita Club,Congo DR,1529,5,1525,+,,,, 2652 | 296,Vitesse,Netherlands,1498,115,1552,-,,,, 2653 | 2670,Vitez,Bosnia and Herzegovina,1193,8,1193,-,,,, 2654 | 469,Vitória,Brazil,1442,1,1442,-,,,, 2655 | 306,Vitória Guimarães,Portugal,1494,111,1455,+,,,, 2656 | 818,Vitória Setúbal,Portugal,1371,17,1371,-,,,, 2657 | 2716,Vitosha Bistritsa,Bulgaria,1179,4,1179,-,,,, 2658 | 1760,VoinÅ£a Sibiu,Romania,1274,2,1274,-,,,, 2659 | 615,Vojvodina,Serbia,1407,174,1448,-,,,, 2660 | 1834,Volga Nyzhnyi,Russia,1268,12,1268,-,,,, 2661 | 861,Volos New Football Club,Greece,1366,137,1347,+,,,, 2662 | 1693,Volyn,Ukraine,1280,4,1280,-,,,, 2663 | 421,Vorskla Poltava,Ukraine,1457,108,1427,+,,,, 2664 | 2233,Vostok,Kazakhstan,1243,39,1243,-,,,, 2665 | 772,Voždovac,Serbia,1379,283,1340,+,,,, 2666 | 1310,VPS,Finland,1313,185,1298,+,,,, 2667 | 2476,Vutuka,Congo DR,1223,27,1223,-,,,, 2668 | 1654,VVV-Venlo,Netherlands,1284,13,1284,-,,,, 2669 | 1047,Vysočina Jihlava,Czech Republic,1341,1,1341,-,,,, 2670 | 1032,W Connection FC,Trinidad and Tobago,1342,5,1342,-,,,, 2671 | 2659,WA Tlemcen,Algeria,1196,907,1274,-,,,, 2672 | 1747,Waasland-Beveren,Belgium,1275,1,1275,-,,,, 2673 | 2151,Wad Hashim SC Sennar,Sudan,1248,41,1248,-,,,, 2674 | 1420,Wadi Degla FC,Egypt,1302,252,1283,+,,,, 2675 | 2371,WaiBOP United,New Zealand,1232,36,1232,-,,,, 2676 | 859,Waitakere United,New Zealand,1366,11,1366,-,,,, 2677 | 2537,Wanderers SC,New Zealand,1217,25,1217,-,,,, 2678 | 2768,Warrenpoint Town,Northern Ireland,1116,10,1150,-,,,, 2679 | 1060,Warri Wolves FC,Nigeria,1340,76,1349,-,,,, 2680 | 2163,Warrior,Estonia,1247,42,1247,-,,,, 2681 | 2262,Wassaman United,Ghana,1241,38,1241,-,,,, 2682 | 991,Waterford FC,Ireland,1348,332,1312,+,,,, 2683 | 1457,Waterford United FC,Ireland,1299,26,1299,-,,,, 2684 | 900,Waterhouse FC,Jamaica,1360,345,1320,+,,,, 2685 | 592,Watford,England,1413,434,1565,-,,,, 2686 | 1453,Wellington Phoenix,Australia,1299,25,1301,-,,,, 2687 | 2536,Wellington Phoenix Reserves,New Zealand,1217,25,1217,-,,,, 2688 | 2532,Welshpool Town,Wales,1218,24,1218,-,,,, 2689 | 303,Werder Bremen,Germany,1496,0,1496,-,,,, 2690 | 348,West Brom,England,1478,1,1478,-,,,, 2691 | 55,West Ham United,England,1686,21,1735,-,,,, 2692 | 1577,Westerlo,Belgium,1289,24,1289,-,,,, 2693 | 1349,Western Sydney,Australia,1308,140,1324,-,,,, 2694 | 1570,Western United FC,Solomon Islands,1290,429,1256,+,,,, 2695 | 2284,Wexford Youths,Ireland,1240,39,1240,-,,,, 2696 | 2514,WhaWha,Zimbabwe,1219,121,1233,-,,,, 2697 | 1437,Widzew Łódz,Poland,1301,2,1301,-,,,, 2698 | 1887,Wiener Neustadt,Austria,1264,2,1264,-,,,, 2699 | 259,Wigan Athletic,England,1515,4,1515,-,,,, 2700 | 1028,Wikki Tourist,Nigeria,1343,152,1326,+,,,, 2701 | 1819,Wiliete SC,Angola,1269,142,1259,+,,,, 2702 | 802,Willem II,Netherlands,1374,195,1410,-,,,, 2703 | 1660,Williamsville Athletic Club,Ivory Coast,1283,13,1283,-,,,, 2704 | 1382,WisÅ‚a Kraków,Poland,1305,336,1341,-,,,, 2705 | 1107,WisÅ‚a PÅ‚ock,Poland,1335,34,1331,+,,,, 2706 | 2715,WIT Georgia Tbilisi,Georgia,1180,4,1180,-,,,, 2707 | 515,Wolfsberger AC,Austria,1431,9,1428,+,,,, 2708 | 96,Wolfsburg,Germany,1626,68,1750,-,,,, 2709 | 119,Wolverhampton Wanderers,England,1605,2,1599,+,,,, 2710 | 1090,WSG Tirol,Austria,1338,187,1317,+,,,, 2711 | 1923,Wuachon United,Thailand,1262,6,1262,-,,,, 2712 | 1194,Wuhan Three Towns F.C.,China PR,1326,247,1300,+,,,, 2713 | 1368,Wuhan Yangtze River,China PR,1306,243,1288,+,,,, 2714 | 1300,WWS Rangers,Zimbabwe,1314,6,1314,-,,,, 2715 | 81,Wydad Casablanca,Morocco,1649,111,1544,+,,,, 2716 | 1800,Wydad Fès,Morocco,1271,10,1271,-,,,, 2717 | 905,Xanthi FC,Greece,1359,13,1359,-,,,, 2718 | 1207,Xelajú,Guatemala,1324,254,1351,-,,,, 2719 | 2288,Xinabajul,Guatemala,1239,43,1239,-,,,, 2720 | 2485,Xorazm,Uzbekistan,1222,31,1222,-,,,, 2721 | 2169,Yadah FC,Zimbabwe,1247,63,1250,-,,,, 2722 | 2527,Yafoot FC Yaounde 2,Cameroon,1218,179,1237,-,,,, 2723 | 2017,Yanbian,China PR,1255,1,1255,-,,,, 2724 | 2529,Yaracuyanos FC,Venezuela,1218,118,1232,-,,,, 2725 | 2099,Yeni Malatyaspor,Turkey,1250,1316,1374,-,,,, 2726 | 1251,Yenisey Krasnoyarsk,Russia,1319,1,1319,-,,,, 2727 | 2003,Yobe Desert Stars,Nigeria,1256,2,1256,-,,,, 2728 | 166,Yokohama F. Marinos,Japan,1567,93,1515,+,,,, 2729 | 1968,Yokohama FC,Japan,1259,86,1253,+,,,, 2730 | 2349,Yopougon FC,Ivory Coast,1234,39,1234,-,,,, 2731 | 2079,Young Africans,Tanzania,1252,0,1252,-,,,, 2732 | 95,Young Boys,Switzerland,1628,39,1691,-,,,, 2733 | 2136,Young Green Eagles,Zambia,1249,45,1248,+,,,, 2734 | 2729,Young Heart Manawatu,New Zealand,1174,6,1174,-,,,, 2735 | 911,Young Sport Academy Bamenda,Cameroon,1358,108,1371,-,,,, 2736 | 1524,Youssoufia Berrechid,Morocco,1293,199,1312,-,,,, 2737 | 1906,Zacapa,Guatemala,1263,4,1263,-,,,, 2738 | 1037,Zagłębie Lubin,Poland,1342,302,1384,-,,,, 2739 | 2072,Zagłębie Sosnowiec,Poland,1252,1,1252,-,,,, 2740 | 1245,Zalaegerszegi TE,Hungary,1320,56,1326,-,,,, 2741 | 257,Zalgiris Vilnius,Lithuania,1516,19,1505,+,,,, 2742 | 1915,Zamfara United FC,Nigeria,1263,6,1263,-,,,, 2743 | 893,Zamora FC,Venezuela,1361,94,1348,+,,,, 2744 | 871,Zanaco,Zambia,1364,155,1386,-,,,, 2745 | 2655,ZapreÅ¡ić,Croatia,1197,10,1197,-,,,, 2746 | 1029,Zaria BălÈ›i,Moldova,1343,23,1341,+,,,, 2747 | 1392,Zarzis,Tunisia,1303,164,1322,-,,,, 2748 | 1123,Zavrč,Slovenia,1333,6,1333,-,,,, 2749 | 1419,Zawisza Bydgoszcz,Poland,1302,0,1302,-,,,, 2750 | 666,Željezničar,Bosnia and Herzegovina,1398,91,1418,-,,,, 2751 | 1680,Zemplin Michalovce,Slovakia,1281,72,1289,-,,,, 2752 | 57,Zenit St. Petersburg,Russia,1685,5,1678,+,,,, 2753 | 605,ZESCO United,Zambia,1409,19,1406,+,,,, 2754 | 2148,Zestafoni,Georgia,1248,41,1248,-,,,, 2755 | 1439,Zeta,Montenegro,1301,237,1324,-,,,, 2756 | 1592,Zhejiang Professional,China PR,1288,72,1296,-,,,, 2757 | 1141,Zhetysu Taldykorgan,Kazakhstan,1331,190,1351,-,,,, 2758 | 640,Žilina,Slovakia,1402,295,1480,-,,,, 2759 | 2078,Zimbabwe Saints,Zimbabwe,1252,0,1252,-,,,, 2760 | 1258,Zimbru,Moldova,1318,89,1328,-,,,, 2761 | 1099,ZirÉ™,Azerbaijan,1336,15,1336,-,,,, 2762 | 1856,Zlate Moravce,Slovakia,1267,234,1288,-,,,, 2763 | 1133,Znojmo,Czech Republic,1331,2,1331,-,,,, 2764 | 1022,Zob Ahan Isfahan FC,Iran,1343,167,1365,-,,,, 2765 | 147,Zorya Luhansk,Ukraine,1579,9,1566,+,,,, 2766 | 1585,ZPC Kariba,Zimbabwe,1289,165,1302,-,,,, 2767 | 298,Zrinjski Mostar,Bosnia and Herzegovina,1497,141,1449,+,,,, 2768 | 1312,Zulia,Venezuela,1313,34,1317,-,,,, 2769 | 1241,Zulte Waregem,Belgium,1320,479,1377,-,,,, 2770 | 2386,Zumunta,Niger,1231,34,1231,-,,,, 2771 | 313,Zürich,Switzerland,1490,386,1390,+,,,, 2772 | --------------------------------------------------------------------------------