Skip to content

Instantly share code, notes, and snippets.

@Makistos
Last active April 27, 2017 16:46
Show Gist options
  • Save Makistos/fc3477b9c52e58c15607abf609047714 to your computer and use it in GitHub Desktop.
Save Makistos/fc3477b9c52e58c15607abf609047714 to your computer and use it in GitHub Desktop.
#python
#!/usr/bin/python
import sys
from prettytable import PrettyTable
from collections import defaultdict
import pprint
# Columns
HOME_TEAM = 1
AWAY_TEAM = 4
HOME_SCORE = 6
AWAY_SCORE = 7
POINTS = 0
GF = 1
GA = 2
WINS = 3
DRAWS = 4
LOSSES = 5
NAME = 6
sorted_table = lambda tbl: sorted((x for x in tbl.values()), key=lambda y:
(int(y[POINTS]), int(y[GF])-int(y[GA])), reverse=True)
row_contents = lambda x: (x[NAME], x[WINS]+x[DRAWS]+x[LOSSES], x[WINS], x[DRAWS],
x[LOSSES], x[GF], x[GA], x[GF]-x[GA], x[POINTS])
def __print_table(data):
pretty = PrettyTable(['Team', 'Played', 'W', 'D', 'L', 'GF', 'GA', 'GD', 'Pts'])
print('%s:' % (data[0]))
for k,v in data[1].iteritems():
v.append(k)
map(lambda x: pretty.add_row(row_contents(x)), sorted_table(data[1]))
print(pretty.get_string())
print
def print_tables(data):
map(__print_table, data)
def __match_scores(hg, ag):
home = [0, 0, 0, 0, 0, 0]
away = [0, 0, 0, 0, 0, 0]
home[GF] = hg
home[GA] = ag
away[GF] = ag
away[GA] = hg
if hg > ag:
home[POINTS] = 3
home[WINS] = 1
away[LOSSES] = 1
elif ag > hg:
away[POINTS] = 3
away[WINS] = 1
home[LOSSES] = 1
else:
home[POINTS] = 1
away[POINTS] = 1
home[DRAWS] = 1
away[DRAWS] = 1
return home, away
home_goals = lambda row, x: int(row[HOME_SCORE+x*3])
away_goals = lambda row, x: int(row[AWAY_SCORE+x*3])
def is_valid_score(row, x):
return not row[HOME_SCORE+x*3].startswith('-') and row[HOME_SCORE+x*3] != ''
def read_file(file_name):
f = open(file_name)
scores = [[x, {}] for x in f.readline().split(',') if x != '' and x != '\r\n'][:-1]
lines = (x for x in f.readlines() if not (x.startswith('Subtotal') or x.startswith(',')))
# Create a dict for each participant
for row in (x.split(',')[:-1] for x in lines):
home = row[HOME_TEAM]
away = row[AWAY_TEAM]
count = 0
for participant in scores:
if is_valid_score(row, count):
teams = participant[1]
if home not in teams:
teams[home] = [0, 0, 0, 0, 0, 0]
if away not in teams:
teams[away] = [0, 0, 0, 0, 0, 0]
points = __match_scores(home_goals(row, count), away_goals(row, count))
teams[home] = [x+y for x, y in zip(teams[home], points[0])]
teams[away] = [x+y for x, y in zip(teams[away], points[1])]
count += 1
return scores
def create_tables(args):
if len(args) < 1:
print('Input file expected')
exit(1)
data = read_file(args[0])
print_tables(data)
if __name__ == '__main__':
create_tables(sys.argv[1:])
We can make this file beautiful and searchable if this error is corrected: It looks like row 381 should actually have 234 columns, instead of 154 in line 380.
,,,,,,geordie blue,,,Cumbrian blue,,,DTro*,,,Hellas,,,Desperate of Kent,,,PaulC,,,Martin F,,,...nostradogmus...,,,Bluerose,,,Brissyred,,,Jonas,,,Crosby Blue,,,The Boss,,,Brentwood Blue,,,DT,,,TurkeyBlue,,,Manx Blue,,,topcat,,,Beechside,,,Delaware,,,ritesh,,,Steve K,,,BluePride,,,Sonoma Blue,,,Nicholas,,,GedF*,,,Ricer10,,,Galway Dave,,,Carlos,,,PabloMc2,,,Goose,,,Col H,,,ANC,,,Germantoffee,,,Sunny,,,Ex Cape Town Blue,,,kw,,,Makis,,,Blake,,,PaulSan,,,Rainhill Runaway,,,Cactus Jack,,,db,,,MikeJ,,,Paulo*,,,Tim B,,,efcjames,,,Dazza,,,Willow,,,KeithH,,,Ste Daley*,,,ToffeeMc1878,,,biglabrador,,,Ov,,,KyotoG,,,EverToon,,,RF,,,Murph,,,Mollow,,,Andy S,,,GB,,,thor,,,Kenilworth Blue,,,TheWinslowBoy,,,gorm is ban,,,Tony,,,Nelly,,,Andy W,,,AndyH,,,Mullingar Blue,,,Betablue,,,T-t,,,SoCalBlue,,,machine,,,Col,,,Aaron,,
13.08,Hull,2,1,Leicester,,0,2,0,1,1,0,0,1,0,0,2,0,0,2,0,1,2,0,1,2,0,1,2,0,1,2,0,0,4,0,0,3,0,1,1,0,0,3,0,0,2,0,0,2,0,0,3,0,0,2,0,0,1,0,0,3,0,0,2,0,0,3,0,0,4,0,0,3,0,0,1,0,1,2,0,1,2,0,0,2,0,0,2,0,1,2,0,0,2,0,1,3,0,0,2,0,0,2,0,1,2,0,1,1,0,0,2,0,0,2,0,0,0,0,0,2,0,0,2,0,1,1,0,0,2,0,0,2,0,0,2,0,0,1,0,1,2,0,1,2,0,0,1,0,1,3,0,0,2,0,1,3,0,0,2,0,0,3,0,0,1,0,1,2,0,1,1,0,1,2,0,0,3,0,0,2,0,0,3,0,1,1,0,1,1,0,0,1,0,0,3,0,0,1,0,1,1,0,0,2,0,0,3,0,0,2,0,0,2,0,-,-,,-,-,,-,-,,-,-,,-,-,,-,-,
13.08,Burnley,0,1,Swansea,,1,0,0,1,0,0,1,0,0,1,1,0,1,1,0,2,1,0,1,2,1,0,0,0,0,1,3,1,1,0,1,1,0,2,1,0,0,0,0,2,1,0,1,1,0,2,1,0,1,1,0,2,0,0,1,1,0,1,1,0,1,1,0,1,1,0,1,1,0,1,1,0,1,0,0,1,0,0,2,1,0,1,0,0,1,2,1,1,1,0,2,2,0,1,1,0,1,1,0,1,0,0,1,2,1,1,1,0,1,1,0,1,0,0,0,0,0,2,2,0,2,2,0,1,1,0,1,1,0,1,0,0,1,1,0,1,1,0,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,1,0,0,0,0,1,0,0,2,2,0,0,1,3,1,1,0,0,0,0,1,0,0,2,0,0,1,0,0,0,2,1,1,1,0,1,1,0,0,0,0,2,1,0,2,1,0,2,1,0,1,3,1,0,1,3,2,2,0,0,1,3,1,1,0,-,-,,-,-,,-,-,
13.08,Crystal Palace,0,1,West Brom,,2,0,0,2,2,0,1,0,0,1,1,0,2,2,0,0,0,0,1,0,0,1,1,0,2,0,0,1,0,0,2,0,0,2,0,0,1,0,0,0,0,0,3,1,0,2,0,0,2,1,0,1,0,0,1,1,0,2,1,0,1,1,0,2,2,0,2,0,0,2,1,0,2,2,0,2,0,0,1,1,0,1,1,0,2,1,0,0,1,3,2,1,0,2,1,0,2,0,0,2,0,0,1,0,0,2,1,0,2,1,0,0,0,0,1,0,0,2,0,0,3,1,0,1,0,0,2,1,0,1,0,0,1,0,0,1,1,0,2,1,0,2,1,0,1,0,0,1,0,0,2,0,0,3,1,0,1,0,0,1,0,0,2,1,0,2,0,0,2,0,0,0,0,0,1,1,0,1,1,0,2,1,0,1,0,0,2,0,0,2,0,0,0,0,0,1,1,0,2,1,0,0,1,3,2,2,0,2,0,0,1,2,1,1,0,0,2,0,0,-,-,,-,-,,-,-,
13.08,Everton,1,1,Tottenham,,1,2,0,0,1,0,1,1,3,1,2,0,0,2,0,1,1,3,1,1,3,2,1,0,1,1,3,0,0,1,2,1,0,2,1,0,1,1,3,0,1,0,2,0,0,0,1,0,2,1,0,0,0,1,0,2,0,2,2,1,1,1,3,1,4,0,3,1,0,2,1,0,1,1,3,2,2,1,0,2,0,1,1,3,3,0,0,1,2,0,2,1,0,1,0,0,1,1,3,1,1,3,2,2,1,2,1,0,2,2,1,0,1,0,1,1,3,2,2,1,1,2,0,1,2,0,1,1,3,1,1,3,0,3,0,1,4,0,1,1,3,1,2,0,1,2,0,0,2,0,1,1,3,1,1,3,1,2,0,0,1,0,2,1,0,1,2,0,2,1,0,2,1,0,2,1,0,1,2,0,0,1,0,1,1,3,2,1,0,0,0,1,1,0,0,1,2,0,1,2,0,0,0,1,1,1,3,2,2,1,0,2,0,1,2,0,1,2,0,-,-,,-,-,,-,-,
13.08,Middlesbrough,1,1,Stoke,,1,1,3,1,2,0,0,1,0,2,1,0,3,2,0,2,2,1,0,1,0,3,1,0,0,0,1,1,2,0,1,1,3,1,0,0,0,0,1,0,0,1,0,0,1,2,1,0,0,0,1,1,0,0,2,1,0,2,1,0,2,1,0,2,0,0,0,0,1,1,0,0,2,0,0,2,1,0,1,1,3,0,1,0,1,0,0,1,1,3,1,2,0,0,0,1,1,1,3,2,1,0,1,2,0,1,1,3,1,1,3,1,1,3,1,1,3,1,0,0,0,1,0,2,2,1,2,0,0,1,0,0,1,1,3,2,2,1,0,1,0,1,1,3,1,1,3,1,1,3,2,1,0,1,0,0,0,1,0,0,1,0,2,2,1,1,2,0,1,1,3,2,0,0,0,0,1,2,2,1,1,1,3,2,1,0,0,1,0,2,0,0,1,0,0,3,1,0,0,1,0,1,2,0,2,1,0,0,0,1,2,1,0,0,0,1,1,0,0,-,-,,-,-,,-,-,
13.08,Southampton,1,1,Watford,,2,1,0,3,0,0,1,0,0,1,0,0,1,0,0,2,0,0,2,1,0,2,1,0,1,0,0,2,0,0,2,0,0,2,2,1,2,2,1,2,0,0,1,2,0,2,1,0,1,3,0,2,0,0,2,0,0,2,0,0,1,1,3,3,0,0,2,1,0,3,1,0,1,0,0,3,1,0,1,1,3,2,1,0,1,0,0,2,0,0,2,1,0,2,0,0,2,0,0,3,1,0,2,0,0,2,2,1,3,1,0,2,0,0,2,1,0,1,1,3,1,0,0,2,1,0,1,0,0,1,1,3,1,0,0,2,1,0,2,1,0,2,1,0,2,1,0,2,0,0,1,1,3,2,0,0,1,1,3,1,0,0,3,1,0,0,1,0,2,0,0,2,0,0,1,0,0,2,1,0,2,0,0,3,1,0,2,0,0,1,0,0,1,1,3,1,0,0,1,0,0,2,0,0,3,3,1,2,1,0,3,1,0,2,0,0,2,0,0,-,-,,-,-,,-,-,
13.08,Man City,2,1,Sunderland,,3,0,1,2,0,1,2,0,1,1,1,0,4,0,1,3,0,1,2,0,1,4,1,1,2,0,1,3,1,1,3,0,1,3,1,1,2,0,1,3,1,1,3,0,1,3,0,1,4,0,1,3,0,1,2,0,1,2,0,1,3,1,1,1,1,0,3,0,1,3,0,1,2,1,3,2,0,1,3,0,1,3,1,1,4,0,1,5,0,1,3,0,1,3,0,1,2,0,1,3,0,1,3,1,1,3,0,1,3,1,1,1,0,1,3,0,1,3,0,1,2,0,1,2,0,1,3,0,1,2,0,1,2,0,1,3,1,1,2,0,1,3,0,1,4,1,1,3,0,1,3,0,1,2,1,3,3,1,1,1,0,1,4,1,1,2,1,3,4,1,1,3,0,1,2,0,1,2,0,1,3,0,1,3,0,1,3,0,1,4,0,1,2,1,3,3,0,1,4,0,1,3,0,1,3,0,1,3,0,1,3,1,1,2,0,1,3,0,1,-,-,,-,-,,-,-,
14.08,Bournemouth,1,3,Man Utd,,1,3,3,1,4,1,0,1,1,0,1,1,0,1,1,0,4,1,0,2,1,1,3,3,1,3,3,1,2,1,2,2,0,0,2,1,0,1,1,1,3,3,0,4,1,0,2,1,1,2,1,1,2,1,0,2,1,0,2,1,1,3,3,1,1,0,0,2,1,1,2,1,1,2,1,0,1,1,0,2,1,0,2,1,2,2,0,1,3,3,1,2,1,0,2,1,0,2,1,0,2,1,1,2,1,0,2,1,0,5,1,1,1,0,0,2,1,1,1,0,0,3,1,1,3,3,1,2,1,1,1,0,0,2,1,1,3,3,1,1,0,1,2,1,1,2,1,0,2,1,0,2,1,0,2,1,0,1,1,0,1,1,1,4,1,0,1,1,1,2,1,0,4,1,0,2,1,1,2,1,0,1,1,0,2,1,0,2,1,1,2,1,1,2,1,1,1,0,1,2,1,1,3,3,1,3,3,1,1,0,0,2,1,0,1,1,1,0,0,-,-,,-,-,,-,-,
14.08,Arsenal,3,4,Liverpool,,2,1,0,2,3,1,1,0,0,1,1,0,2,3,1,1,2,1,2,1,0,1,0,0,1,1,0,2,2,0,3,1,0,1,1,0,1,2,1,2,0,0,3,1,0,1,0,0,2,0,0,2,1,0,2,0,0,1,2,1,1,2,1,1,3,1,1,1,0,2,1,0,2,2,0,1,1,0,2,1,0,1,0,0,0,2,1,2,0,0,3,2,0,3,0,0,1,1,0,1,1,0,3,2,0,1,1,0,2,1,0,1,1,0,2,2,0,2,0,0,1,1,0,2,1,0,1,1,0,2,0,0,1,0,0,2,1,0,1,2,1,1,1,0,2,1,0,1,2,1,0,0,0,2,1,0,2,0,0,1,0,0,2,1,0,2,3,1,2,0,0,2,0,0,2,2,0,1,1,0,2,1,0,2,1,0,2,1,0,2,2,0,3,1,0,2,1,0,3,2,0,1,2,1,2,2,0,2,0,0,2,2,0,1,2,1,1,2,1,-,-,,-,-,,-,-,
15.08,Chelsea,2,1,West Ham,,2,0,1,2,2,0,1,0,1,1,0,1,1,0,1,2,1,3,2,0,1,1,1,0,1,1,0,1,2,0,2,0,1,2,1,3,1,1,0,2,0,1,1,1,0,2,0,1,2,2,0,2,2,0,0,0,0,1,1,0,2,0,1,2,0,1,1,0,1,1,2,0,3,2,1,2,1,3,2,0,1,1,0,1,2,0,1,3,2,1,3,1,1,3,1,1,2,1,3,1,0,1,1,1,0,2,1,3,1,2,0,0,0,0,2,1,3,2,1,3,0,0,0,1,1,0,1,1,0,3,0,1,1,1,0,3,2,1,2,2,0,2,1,3,2,1,3,2,1,3,1,2,0,2,0,1,2,2,0,1,0,1,3,2,1,1,1,0,2,0,1,2,2,0,1,0,1,2,0,1,2,0,1,2,1,3,3,1,1,1,1,0,2,0,1,2,0,1,3,2,1,2,0,1,1,2,0,1,1,0,4,0,1,2,1,3,2,2,0,-,-,,-,-,,-,-,
Subtotal,,,,,,,,8,,,3,,,6,,,2,,,4,,,10,,,7,,,4,,,11,,,3,,,5,,,6,,,8,,,6,,,3,,,3,,,3,,,3,,,2,,,4,,,12,,,2,,,4,,,2,,,8,,,6,,,9,,,6,,,4,,,11,,,3,,,4,,,11,,,6,,,4,,,9,,,6,,,4,,,11,,,8,,,2,,,5,,,5,,,8,,,5,,,6,,,5,,,8,,,8,,,9,,,8,,,8,,,5,,,3,,,4,,,8,,,6,,,2,,,4,,,4,,,6,,,9,,,3,,,3,,,8,,,2,,,3,,,10,,,9,,,6,,,4,,,10,,,2,,,0,,,0,,,0
19.08,Man Utd,2,0,Southampton,,2,0,3,2,0,3,1,0,1,1,0,1,3,1,1,2,0,3,2,0,3,4,1,1,2,1,1,2,1,1,3,1,1,2,1,1,2,0,3,2,0,3,3,0,1,2,0,3,-,-,,3,0,1,3,1,1,2,0,3,3,1,1,2,1,1,2,0,3,1,1,0,3,1,1,2,0,3,2,0,3,2,0,3,3,1,1,3,1,1,3,0,1,3,1,1,2,0,3,2,1,1,2,1,1,2,0,3,2,1,1,2,1,1,1,0,1,2,0,3,3,1,1,2,0,3,2,1,1,-,-,,1,0,1,2,0,3,2,0,3,1,0,1,3,1,1,3,0,1,2,0,3,3,0,1,2,0,3,1,0,1,2,1,1,2,1,1,2,0,3,2,1,1,2,0,3,2,1,1,2,0,3,1,1,0,2,0,3,2,0,3,1,0,1,2,1,1,3,0,1,2,0,3,2,1,1,2,0,3,2,2,0,3,1,1,3,1,1,2,0,3,3,0,1,-,-,
20.08,Stoke,1,4,Man City,,1,2,1,1,1,0,1,2,1,0,1,1,0,2,1,1,2,1,1,2,1,1,3,1,1,3,1,1,1,0,1,2,1,1,3,1,1,2,1,0,1,1,2,1,0,0,4,1,-,-,,1,1,0,0,1,1,1,2,1,1,3,1,1,1,0,1,1,0,1,3,1,1,1,0,1,3,1,1,3,1,1,2,1,0,2,1,1,4,3,1,3,1,1,2,1,0,2,1,0,2,1,1,3,1,1,3,1,0,2,1,1,1,0,0,1,1,1,1,0,0,2,1,1,2,1,1,1,0,0,1,1,1,1,0,0,2,1,2,1,0,1,2,1,1,2,1,1,1,0,1,3,1,1,3,1,0,2,1,0,1,1,1,3,1,1,3,1,1,3,1,1,3,1,0,1,1,1,2,1,0,2,1,0,2,1,1,2,1,0,2,1,1,1,0,0,2,1,2,2,0,1,2,1,0,3,1,1,1,0,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,-,-,
20.08,Burnley,2,0,Liverpool,,0,3,0,1,3,0,0,2,0,1,3,0,1,3,0,0,3,0,0,2,0,0,0,0,0,2,0,1,2,0,2,4,0,0,3,0,1,1,0,0,1,0,1,1,0,0,2,0,-,-,,1,3,0,2,2,0,1,2,0,0,2,0,1,2,0,1,1,0,0,1,0,1,3,0,1,2,0,1,2,0,0,2,0,1,4,0,0,2,0,2,5,0,0,2,0,1,3,0,1,3,0,1,1,0,0,3,0,0,3,0,1,2,0,0,2,0,1,0,1,1,1,0,1,1,0,0,2,0,1,2,0,1,0,1,1,3,0,0,2,0,0,2,0,1,3,0,1,1,0,1,2,0,0,3,0,1,2,0,0,1,0,1,3,0,1,1,0,1,1,0,0,4,0,1,1,0,0,3,0,0,2,0,0,2,0,1,3,0,1,3,0,2,1,1,0,3,0,1,3,0,1,2,0,1,3,0,0,2,0,1,1,0,0,2,0,0,3,0,1,3,0,1,3,0,-,-,
20.08,Swansea,0,2,Hull,,2,0,0,2,0,0,0,0,0,2,1,0,1,1,0,1,1,0,2,1,0,1,1,0,2,0,0,2,2,0,2,0,0,2,1,0,2,0,0,2,1,0,0,0,0,2,0,0,-,-,,2,0,0,0,0,0,2,0,0,1,1,0,2,1,0,2,0,0,1,0,0,2,0,0,1,0,0,2,1,0,1,0,0,2,1,0,1,1,0,2,1,0,2,2,0,1,0,0,1,0,0,0,0,0,2,1,0,2,0,0,2,0,0,2,1,0,2,0,0,2,1,0,1,2,1,1,0,0,1,1,0,1,0,0,1,1,0,1,1,0,2,1,0,2,0,0,0,0,0,2,0,0,1,1,0,1,0,0,1,0,0,2,1,0,0,0,0,1,1,0,1,1,0,1,0,0,1,0,0,2,0,0,1,0,0,1,1,0,2,0,0,1,0,0,1,1,0,2,0,0,1,1,0,2,1,0,1,0,0,3,0,0,1,0,0,2,2,0,1,0,0,1,0,0,-,-,
20.08,Tottenham,1,0,Crystal Palace,,3,1,1,2,0,1,1,0,3,2,1,1,2,1,1,2,1,1,2,1,1,4,0,1,2,0,1,2,0,1,2,0,1,3,0,1,2,0,1,1,0,3,2,0,1,2,0,1,-,-,,2,0,1,1,1,0,3,0,1,2,0,1,2,0,1,3,1,1,1,1,0,3,0,1,2,0,1,2,0,1,1,0,3,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,1,1,2,1,1,3,1,1,1,0,3,2,0,1,2,0,1,3,0,1,3,0,1,2,0,1,2,1,1,1,1,0,2,0,1,2,1,1,2,1,1,2,1,1,2,0,1,2,0,1,2,0,1,2,1,1,2,2,0,1,0,3,2,1,1,2,1,1,3,0,1,3,0,1,2,1,1,2,0,1,2,1,1,2,1,1,3,0,1,2,0,1,2,0,1,2,1,1,3,1,1,2,1,1,2,2,0,3,0,1,2,0,1,2,1,1,4,0,1,2,0,1,2,0,1,-,-,
20.08,Watford,1,2,Chelsea,,1,2,3,0,2,1,1,2,3,1,2,3,1,2,3,0,2,1,1,2,3,2,3,1,0,2,1,0,2,1,1,3,1,1,2,3,1,3,1,0,1,1,1,3,1,1,2,3,-,-,,0,2,1,1,2,3,0,2,1,0,2,1,0,1,1,0,1,1,0,2,1,1,1,0,0,1,1,0,2,1,1,2,3,0,2,1,1,3,1,1,2,3,0,2,1,1,2,3,0,1,1,0,2,1,0,2,1,1,2,3,0,1,1,0,1,1,0,2,1,0,1,1,1,3,1,1,1,0,1,1,0,0,1,1,1,3,1,0,1,1,0,1,1,1,3,1,0,3,1,1,3,1,0,1,1,0,2,1,0,1,1,1,3,1,1,3,1,0,2,1,0,2,1,0,1,1,0,2,1,0,1,1,1,1,0,0,2,1,1,2,3,0,2,1,0,2,1,1,2,3,0,2,1,0,2,1,1,2,3,1,2,3,0,2,1,1,3,1,1,2,3,1,4,1,-,-,
20.08,West Brom,1,2,Everton,,0,2,1,1,1,0,0,1,1,1,2,3,2,2,0,1,2,3,1,1,0,1,4,1,1,2,3,0,0,0,0,2,1,0,2,1,0,1,1,2,2,0,0,2,1,0,1,1,-,-,,1,2,3,0,2,1,1,2,3,1,2,3,1,1,0,1,2,3,0,2,1,1,2,3,1,2,3,0,1,1,1,2,3,0,1,1,1,1,0,1,2,3,0,1,1,2,3,1,1,2,3,1,2,3,0,2,1,0,2,1,0,1,1,0,1,1,1,1,0,1,3,1,0,2,1,1,2,3,0,2,1,0,1,1,2,2,0,1,2,3,1,2,3,1,1,0,1,3,1,1,2,3,1,2,3,0,2,1,0,1,1,1,3,1,0,2,1,1,3,1,0,2,1,0,1,1,0,0,0,1,1,0,1,2,3,1,2,3,0,3,1,0,2,1,0,2,1,2,1,0,1,1,0,1,2,3,0,1,1,1,2,3,1,2,3,1,3,1,1,1,0,0,2,1,-,-,
20.08,Leicester,0,0,Arsenal,,2,1,0,2,2,1,2,2,1,1,2,0,2,0,0,1,1,1,1,1,1,3,0,0,0,1,0,1,1,1,2,2,1,2,2,1,2,2,1,1,0,0,1,1,1,1,1,1,-,-,,1,1,1,2,2,1,2,2,1,1,1,1,2,3,0,1,2,0,2,1,0,2,2,1,2,2,1,1,1,1,1,0,0,0,1,0,1,2,0,2,1,0,2,1,0,2,2,1,3,2,0,1,1,1,2,2,1,1,1,1,1,1,1,2,2,1,2,0,0,2,2,1,1,1,1,2,2,1,1,0,0,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,2,2,1,2,2,1,0,2,0,0,2,0,0,1,0,2,2,1,0,2,0,2,2,1,1,1,1,1,1,1,2,2,1,2,1,0,1,1,1,0,1,0,1,0,0,2,2,1,1,1,1,1,3,0,2,2,1,2,1,0,2,1,0,1,2,0,2,1,0,1,0,0,1,2,0,2,2,1,-,-,
21.08,Sunderland,1,2,Middlesbrough,,2,2,0,2,0,0,1,0,0,1,0,0,0,0,0,1,0,0,2,1,0,3,1,0,1,0,0,0,1,1,1,1,0,2,1,0,1,0,0,1,1,0,0,1,1,1,0,0,-,-,,1,1,0,1,1,0,2,1,0,1,1,0,0,0,0,2,0,0,2,2,0,0,0,0,2,1,0,1,1,0,1,0,0,2,0,0,2,2,0,1,1,0,2,2,0,1,1,0,0,0,0,1,0,0,1,1,0,1,2,3,1,0,0,0,0,0,2,1,0,1,0,0,2,1,0,1,1,0,0,1,1,1,1,0,1,0,0,2,2,0,1,1,0,2,1,0,1,1,0,1,1,0,0,0,0,1,1,0,1,0,0,1,1,0,1,0,0,1,2,3,2,1,0,1,0,0,1,1,0,1,1,0,2,1,0,1,1,0,0,1,1,0,0,0,2,2,0,1,1,0,1,1,0,1,1,0,1,1,0,1,0,0,1,0,0,2,0,0,1,1,0,1,1,0,-,-,
21.08,West Ham,1,0,Bournemouth,,2,0,1,3,1,1,2,0,1,2,0,1,2,0,1,3,0,1,2,0,1,3,1,1,2,0,1,3,1,1,2,1,1,3,0,1,1,1,0,2,0,1,2,1,1,2,0,1,-,-,,3,1,1,1,0,3,2,0,1,1,1,0,0,0,0,2,0,1,3,0,1,3,2,1,3,1,1,2,0,1,2,0,1,2,0,1,2,1,1,2,1,1,3,1,1,2,0,1,2,0,1,1,1,0,2,1,1,3,2,1,1,0,3,2,1,1,2,0,1,2,0,1,2,0,1,1,0,3,1,1,0,1,0,3,3,0,1,1,1,0,2,1,1,3,1,1,2,0,1,2,1,1,1,0,3,2,0,1,1,0,3,2,1,1,2,0,1,0,0,0,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,1,0,3,1,1,0,3,1,1,2,1,1,1,1,0,3,1,1,4,1,1,2,0,1,2,0,1,2,0,1,1,2,0,-,-,
Subtotal,,,,,,,,10,,,7,,,11,,,10,,,7,,,11,,,10,,,6,,,8,,,6,,,7,,,9,,,8,,,9,,,7,,,11,,,0,,,8,,,10,,,11,,,8,,,3,,,9,,,4,,,7,,,11,,,9,,,14,,,6,,,7,,,10,,,6,,,11,,,8,,,8,,,9,,,14,,,8,,,7,,,7,,,7,,,10,,,9,,,3,,,9,,,8,,,9,,,9,,,6,,,6,,,11,,,10,,,7,,,10,,,7,,,6,,,11,,,7,,,9,,,6,,,7,,,7,,,10,,,11,,,9,,,6,,,6,,,8,,,6,,,9,,,9,,,8,,,6,,,9,,,6,,,0
27.08,Tottenham,1,1,Liverpool,,2,1,0,1,1,3,1,0,0,-,-,,2,2,1,2,1,0,1,1,3,4,0,0,2,2,1,2,2,1,2,1,0,2,2,1,2,2,1,1,0,0,3,1,0,1,1,3,-,-,,1,2,0,1,0,0,2,1,0,1,2,0,1,0,0,2,1,0,2,1,0,2,1,0,1,1,3,2,1,0,1,0,0,1,3,0,2,1,0,2,1,0,2,0,0,2,1,0,-,-,,2,1,0,2,2,1,1,1,3,1,1,3,1,1,3,2,2,1,1,1,3,-,-,,2,1,0,1,1,3,1,0,0,1,1,3,1,1,3,2,1,0,2,1,0,2,1,0,1,1,3,1,1,3,2,0,0,1,1,3,2,1,0,1,2,0,2,1,0,2,0,0,1,1,3,1,1,3,2,2,1,1,1,3,2,1,0,1,1,3,-,-,,1,1,3,2,2,1,2,1,0,2,1,0,1,3,0,1,2,0,2,1,0,2,1,0,2,2,1,2,2,1,-,-,
27.08,Chelsea,3,0,Burnley,,2,0,1,3,0,3,2,0,1,-,-,,2,0,1,3,0,3,2,0,1,3,0,3,2,0,1,1,0,1,3,0,3,3,0,3,3,0,3,2,0,1,2,0,1,1,0,1,-,-,,3,1,1,2,0,1,2,0,1,2,0,1,3,1,1,2,0,1,4,1,1,4,1,1,2,0,1,2,0,1,2,0,1,3,0,3,2,1,1,2,1,1,2,0,1,3,0,3,-,-,,3,1,1,3,0,3,2,0,1,3,0,3,1,0,1,2,0,1,3,1,1,-,-,,2,1,1,2,0,1,1,0,1,2,0,1,2,1,1,2,0,1,3,1,1,3,0,3,3,0,3,2,0,1,2,0,1,3,1,1,3,0,3,2,0,1,3,1,1,3,0,3,2,0,1,2,0,1,2,0,1,3,1,1,3,0,3,2,0,1,-,-,,2,0,1,3,0,3,2,0,1,3,1,1,3,0,3,3,0,3,1,0,1,3,1,1,2,0,1,3,0,3,-,-,
27.08,Crystal Palace,1,1,Bournemouth,,1,1,3,2,1,0,1,0,0,-,-,,1,1,3,1,0,0,2,1,0,0,0,1,1,1,3,2,1,0,1,2,0,2,1,0,0,0,1,0,0,1,1,1,3,2,1,0,-,-,,1,1,3,0,0,1,0,1,0,1,0,0,1,1,3,1,0,0,1,0,0,1,1,3,1,1,3,1,1,3,1,0,0,2,1,0,1,0,0,0,1,0,2,1,0,1,1,3,-,-,,1,0,0,0,1,0,1,0,0,1,1,3,0,0,1,1,1,3,1,1,3,-,-,,1,1,3,1,1,3,1,0,0,2,1,0,0,0,1,1,1,3,1,1,3,1,1,3,2,1,0,0,0,1,0,1,0,1,1,3,2,1,0,1,1,3,1,1,3,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,3,1,2,0,-,-,,0,0,1,2,1,0,1,1,3,2,2,1,1,1,3,1,1,3,1,0,0,1,0,0,0,0,1,1,1,3,-,-,
27.08,Everton,1,0,Stoke,,2,0,1,3,1,1,2,0,1,-,-,,3,1,1,2,0,1,2,1,1,3,0,1,2,1,1,2,2,0,3,1,1,3,0,1,2,1,1,1,1,0,4,0,1,2,1,1,-,-,,2,0,1,1,0,3,2,1,1,2,0,1,2,1,1,3,0,1,2,0,1,2,1,1,3,1,1,2,0,1,2,1,1,2,0,1,1,0,3,3,1,1,3,1,1,2,0,1,-,-,,3,1,1,3,1,1,3,1,1,2,0,1,2,1,1,2,1,1,4,0,1,-,-,,2,0,1,3,0,1,1,0,3,1,1,0,2,1,1,2,1,1,2,1,1,2,0,1,2,0,1,2,1,1,2,0,1,2,0,1,3,1,1,2,1,1,2,0,1,3,0,1,2,0,1,1,1,0,2,1,1,2,0,1,2,0,1,2,0,1,-,-,,2,0,1,4,0,1,2,1,1,3,1,1,3,1,1,3,1,1,2,1,1,2,0,1,2,1,1,2,0,1,-,-,
27.08,Leicester,2,1,Swansea,,2,1,3,2,0,1,1,0,1,-,-,,2,0,1,2,1,3,1,0,1,2,0,1,1,0,1,2,1,3,2,0,1,3,0,1,1,0,1,1,0,1,2,0,1,2,0,1,-,-,,1,0,1,1,1,0,1,1,0,1,1,0,2,0,1,2,1,3,1,1,0,3,1,1,2,0,1,2,0,1,2,0,1,1,1,0,2,2,0,2,1,3,3,0,1,2,0,1,-,-,,1,1,0,2,1,3,2,0,1,1,0,1,1,0,1,2,0,1,2,1,3,-,-,,2,0,1,1,0,1,1,0,1,2,1,3,1,0,1,1,0,1,2,1,3,2,0,1,1,0,1,2,0,1,2,0,1,2,0,1,2,1,3,1,0,1,1,0,1,1,0,1,3,1,1,1,0,1,1,0,1,1,0,1,1,0,1,2,0,1,-,-,,1,1,0,2,0,1,1,0,1,2,0,1,2,0,1,1,1,0,2,0,1,2,0,1,1,0,1,1,0,1,-,-,
27.08,Southampton,1,1,Sunderland,,2,0,0,2,0,0,0,0,1,-,-,,1,0,0,3,1,0,2,1,0,1,1,3,1,1,3,1,1,3,2,1,0,2,0,0,1,0,0,1,0,0,2,0,0,1,0,0,-,-,,2,0,0,2,1,0,2,1,0,1,1,3,0,1,0,1,1,3,3,0,0,2,2,1,2,1,0,1,1,3,2,0,0,2,0,0,2,0,0,1,2,0,2,0,0,2,1,0,-,-,,1,1,3,1,1,3,2,2,1,1,0,0,1,0,0,2,1,0,1,0,0,-,-,,2,0,0,1,1,3,1,0,0,2,1,0,1,1,3,2,0,0,1,0,0,1,0,0,3,1,0,3,1,0,1,0,0,2,1,0,2,0,0,1,2,0,2,1,0,2,0,0,1,0,0,2,1,0,2,1,0,1,1,3,0,1,0,2,0,0,-,-,,2,0,0,2,1,0,2,0,0,2,0,0,3,0,0,4,1,0,1,0,0,1,1,3,2,0,0,2,0,0,-,-,
27.08,Watford,1,3,Arsenal,,1,1,0,1,3,3,1,2,1,-,-,,1,1,0,1,3,3,0,1,1,0,1,1,1,2,1,0,2,1,1,3,3,0,2,1,0,3,1,1,1,0,2,2,0,1,2,1,-,-,,1,3,3,1,2,1,1,2,1,1,2,1,1,1,0,1,1,0,0,2,1,1,2,1,1,2,1,1,2,1,0,1,1,2,1,0,1,3,3,2,2,0,2,2,0,1,2,1,-,-,,0,1,1,0,2,1,1,1,0,1,1,0,0,2,1,1,1,0,0,1,1,-,-,,1,1,0,0,0,0,1,0,0,1,1,0,1,2,1,1,2,1,1,3,3,1,2,1,1,2,1,0,1,1,1,2,1,1,3,3,1,2,1,0,3,1,1,2,1,1,3,3,0,1,1,1,2,1,1,1,0,1,2,1,1,1,0,2,1,0,-,-,,0,2,1,2,1,0,1,3,3,1,1,0,2,1,0,1,2,1,1,1,0,1,1,0,1,2,1,1,1,0,-,-,
27.08,Hull,0,1,Man Utd,,1,2,1,1,4,1,0,3,1,-,-,,2,4,1,1,4,1,0,2,1,1,1,0,0,3,1,1,1,0,0,3,1,1,3,1,1,2,1,0,2,1,0,3,1,0,3,1,-,-,,0,3,1,2,2,0,1,2,1,1,3,1,0,3,1,1,0,0,1,3,1,0,3,1,0,2,1,0,3,1,0,2,1,0,3,1,1,2,1,-,-,,1,3,1,0,2,1,-,-,,1,2,1,0,3,1,0,4,1,0,2,1,0,2,1,1,3,1,0,1,3,-,-,,1,1,0,0,1,3,1,0,0,1,2,1,1,2,1,0,2,1,1,4,1,0,2,1,1,3,1,1,3,1,0,2,1,1,2,1,0,3,1,1,2,1,2,3,1,0,3,1,0,3,1,0,2,1,1,3,1,1,3,1,0,3,1,0,2,1,-,-,,1,1,0,1,3,1,1,3,1,1,3,1,0,2,1,0,2,1,0,2,1,1,1,0,0,1,3,1,3,1,-,-,
28.08,West Brom,0,0,Middlesbrough,,2,0,0,2,2,1,1,1,1,-,-,,2,2,1,2,2,1,1,0,0,1,1,1,1,2,0,1,0,0,1,1,1,1,1,1,1,1,1,1,2,0,1,1,1,0,2,0,-,-,,1,1,1,1,1,1,1,1,1,1,2,0,1,0,0,0,0,3,1,1,1,0,0,3,1,1,1,1,1,1,1,0,0,1,2,0,0,0,3,1,1,1,1,1,1,1,1,1,-,-,,1,1,1,0,0,3,1,0,0,0,0,3,0,1,0,2,0,0,1,2,0,-,-,,1,1,1,0,0,3,1,0,0,2,2,1,0,0,3,1,1,1,1,1,1,0,0,3,2,2,1,1,1,1,0,0,3,2,1,0,2,1,0,1,1,1,2,2,1,0,1,0,0,0,3,0,1,0,1,1,1,2,2,1,1,1,1,1,2,0,-,-,,1,1,1,2,1,0,1,1,1,1,2,0,1,1,1,1,2,0,2,2,1,0,0,3,0,0,3,0,0,3,-,-,
28.08,Man City,3,1,West Ham,,3,1,3,1,0,1,2,1,1,-,-,,3,0,1,1,1,0,2,1,1,2,2,0,2,0,1,3,0,1,2,1,1,2,1,1,2,0,1,3,0,1,3,0,1,3,0,1,-,-,,3,1,3,2,1,1,2,1,1,3,0,1,3,2,1,1,0,1,2,2,0,1,0,1,2,1,1,2,1,1,3,1,3,4,1,1,3,1,3,4,1,1,2,0,1,3,1,3,-,-,,2,0,1,2,1,1,2,0,1,2,1,1,2,0,1,4,2,1,3,2,1,-,-,,3,0,1,4,0,1,1,0,1,3,1,3,2,0,1,2,1,1,3,1,3,3,0,1,4,0,1,2,1,1,3,0,1,2,1,1,3,2,1,5,2,1,3,1,3,2,0,1,2,0,1,2,0,1,2,0,1,3,2,1,3,1,3,2,0,1,-,-,,2,0,1,3,0,1,3,0,1,3,2,1,2,1,1,4,1,1,2,0,1,2,2,0,2,0,1,2,0,1,-,-,
Subtotal,,,,,,,,12,,,14,,,8,,,0,,,10,,,12,,,9,,,11,,,13,,,10,,,11,,,10,,,11,,,5,,,9,,,9,,,0,,,14,,,8,,,6,,,8,,,8,,,12,,,5,,,13,,,13,,,13,,,8,,,6,,,14,,,7,,,6,,,14,,,0,,,9,,,17,,,9,,,16,,,10,,,9,,,16,,,0,,,8,,,19,,,6,,,12,,,16,,,10,,,16,,,14,,,12,,,11,,,9,,,14,,,10,,,10,,,12,,,10,,,12,,,8,,,7,,,13,,,13,,,8,,,0,,,9,,,8,,,12,,,6,,,11,,,10,,,6,,,9,,,13,,,14,,,0
10.09,Man Utd,1,2,Man City,,2,2,0,1,0,0,1,0,0,1,1,0,2,2,0,2,1,0,1,1,0,2,0,0,2,2,0,2,2,0,1,2,3,2,2,0,2,2,0,2,2,0,2,2,0,2,2,0,-,-,,2,1,0,0,0,0,2,2,0,1,0,0,1,1,0,3,2,0,-,-,,1,1,0,2,1,0,1,1,0,1,2,3,1,3,1,1,2,3,2,0,0,1,1,0,2,2,0,1,1,0,1,1,0,2,2,0,2,1,0,1,1,0,1,1,0,2,2,0,1,1,0,2,1,0,2,1,0,1,1,0,1,1,0,2,1,0,2,1,0,1,1,0,2,1,0,2,1,0,1,1,0,1,1,0,1,0,0,1,1,0,2,3,1,1,2,3,2,2,0,2,1,0,1,1,0,2,1,0,0,0,0,2,1,0,1,1,0,2,1,0,1,1,0,1,1,0,2,3,1,3,1,0,2,2,0,1,1,0,2,3,1,1,1,0,2,3,1,1,1,0,1,1,0,-,-,
10.09,Arsenal,2,1,Southampton,,2,1,3,2,0,1,2,0,1,2,1,3,1,0,1,2,1,3,2,0,1,1,1,0,2,1,3,3,1,1,2,0,1,2,1,3,2,1,3,1,0,1,3,0,1,2,1,3,-,-,,3,1,1,2,0,1,1,0,1,1,0,1,3,1,1,2,0,1,-,-,,1,1,0,3,1,1,2,1,3,1,0,1,2,1,3,3,1,1,3,0,1,2,0,1,2,0,1,2,1,3,2,0,1,3,1,1,3,0,1,2,0,1,2,0,1,1,0,1,3,1,1,2,0,1,1,0,1,3,0,1,1,0,1,3,1,1,2,0,1,2,0,1,3,1,1,3,1,1,2,0,1,1,0,1,2,0,1,2,1,3,2,1,3,2,1,3,2,1,3,3,0,1,2,1,3,2,1,3,2,0,1,2,1,3,2,0,1,1,1,0,1,0,1,2,1,3,3,1,1,2,0,1,1,2,0,3,1,1,1,1,0,2,1,3,2,0,1,2,1,3,2,0,1,-,-,
10.09,Bournemouth,1,0,West Brom,,2,1,1,1,1,0,1,0,3,1,0,3,3,3,0,2,1,1,0,1,0,2,1,1,1,0,3,1,0,3,1,1,0,1,0,3,1,0,3,1,0,3,2,1,1,0,0,0,-,-,,2,0,1,2,1,1,2,1,1,1,1,0,1,0,3,1,0,3,-,-,,2,1,1,1,0,3,1,0,3,1,0,3,2,0,1,1,1,0,2,1,1,2,1,1,1,0,3,0,0,0,1,0,3,1,0,3,1,1,0,2,0,1,0,0,0,2,1,1,2,0,1,1,1,0,0,0,0,1,1,0,1,0,3,1,1,0,1,1,0,2,1,1,2,1,1,1,1,0,2,1,1,1,2,0,0,0,0,2,0,1,2,1,1,1,0,3,1,2,0,1,1,0,0,0,0,1,1,0,2,1,1,0,1,0,2,0,1,2,0,1,0,0,0,1,0,3,2,0,1,1,1,0,2,0,1,0,1,0,0,1,0,0,1,0,2,0,1,1,0,3,1,1,0,-,-,
10.09,Burnley,1,1,Hull,,2,0,0,1,0,0,0,0,1,1,0,0,1,1,3,0,0,1,2,1,0,2,2,1,1,0,0,2,2,1,1,1,3,1,1,3,1,1,3,2,1,0,1,1,3,2,0,0,-,-,,2,0,0,1,1,3,2,0,0,1,2,0,1,0,0,1,0,0,-,-,,2,2,1,2,1,0,2,1,0,1,0,0,2,2,1,2,0,0,1,1,3,0,0,1,2,1,0,1,2,0,0,0,1,2,1,0,2,0,0,1,1,3,1,0,0,2,0,0,0,1,0,0,1,0,2,1,0,2,2,1,1,0,0,2,2,1,1,1,3,2,1,0,1,1,3,0,0,1,0,0,1,1,3,0,1,1,3,2,1,0,1,1,3,1,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,1,3,3,1,0,1,1,3,1,1,3,2,1,0,1,2,0,1,0,0,1,0,0,1,1,3,2,1,0,0,0,1,1,1,3,1,2,0,1,1,3,2,1,0,-,-,
10.09,Middlesbrough,1,2,Crystal Palace,,3,1,0,1,2,3,0,0,0,0,1,1,2,1,0,1,1,0,1,0,0,4,0,0,0,0,0,2,1,0,1,1,0,2,1,0,1,1,0,0,0,0,0,0,0,2,1,0,-,-,,1,1,0,1,0,0,2,1,0,1,1,0,1,0,0,0,0,0,-,-,,1,0,0,1,0,0,0,0,0,1,0,0,2,1,0,2,2,0,3,0,0,2,0,0,1,0,0,2,1,0,1,1,0,1,1,0,1,1,0,1,0,0,2,1,0,2,1,0,0,0,0,1,0,0,2,0,0,2,0,0,1,0,0,2,1,0,0,0,0,2,1,0,1,0,0,1,1,0,1,0,0,0,0,0,1,0,0,1,1,0,1,2,3,2,1,0,3,1,0,1,1,0,2,1,0,1,1,0,2,1,0,1,1,0,0,0,0,2,0,0,1,0,0,0,0,0,2,0,0,2,0,0,1,1,0,0,0,0,1,2,3,1,0,0,1,1,0,2,1,0,2,1,0,-,-,
10.09,Stoke,0,4,Tottenham,,1,3,1,0,2,1,0,2,1,1,3,1,1,3,1,0,2,1,1,1,0,1,3,1,1,2,1,1,2,1,1,2,1,2,2,0,1,1,0,0,1,1,2,1,0,1,1,0,-,-,,2,2,0,1,2,1,2,1,0,0,1,1,1,2,1,2,1,0,-,-,,1,1,0,1,2,1,1,1,0,0,2,1,2,1,0,1,3,1,1,2,1,2,1,0,1,2,1,0,1,1,1,2,1,1,1,0,1,2,1,1,1,0,1,2,1,2,1,0,2,2,0,1,2,1,1,1,0,1,1,0,0,1,1,1,3,1,0,2,1,1,2,1,1,2,1,1,2,1,1,1,0,0,1,1,1,1,0,1,2,1,1,3,1,1,2,1,1,1,0,1,2,1,0,1,1,1,1,0,0,2,1,0,0,0,1,2,1,1,3,1,1,1,0,1,0,0,1,1,0,1,2,1,1,3,1,1,2,1,1,1,0,2,1,0,2,2,0,1,2,1,1,1,0,-,-,
10.09,West Ham,2,4,Watford,,2,1,0,1,0,0,1,0,0,3,0,0,1,1,0,2,0,0,2,1,0,2,1,0,2,1,0,3,1,0,2,0,0,2,0,0,2,1,0,1,1,0,1,1,0,1,2,1,-,-,,2,1,0,2,1,0,2,0,0,1,1,0,3,0,0,2,0,0,-,-,,3,2,0,2,0,0,2,0,0,2,1,0,2,0,0,2,1,0,1,0,0,2,0,0,2,1,0,2,0,0,1,0,0,3,0,0,1,0,0,0,0,0,2,2,0,2,0,0,2,1,0,2,1,0,2,0,0,1,1,0,1,0,0,2,2,0,2,2,0,2,1,0,2,1,0,1,1,0,0,0,0,2,0,0,2,1,0,2,0,0,2,1,0,2,1,0,2,0,0,3,0,0,2,0,0,2,0,0,2,1,0,2,1,0,3,1,0,2,1,0,1,0,0,1,1,0,2,0,0,2,0,0,1,1,0,2,0,0,4,1,0,2,0,0,2,0,0,2,1,0,2,0,0,-,-,
10.09,Liverpool,4,1,Leicester,,2,0,1,2,0,1,1,0,1,2,0,1,1,2,0,3,1,1,2,1,1,1,2,0,2,0,1,2,2,0,1,2,0,2,0,1,2,2,0,0,1,0,1,2,0,1,2,0,-,-,,1,1,0,1,1,0,2,1,1,2,1,1,1,1,0,1,1,0,-,-,,2,0,1,2,2,0,2,1,1,2,1,1,3,1,1,3,1,1,1,1,0,2,1,1,2,2,0,2,2,0,1,1,0,2,2,0,1,1,0,2,1,1,2,2,0,3,1,1,1,1,0,1,2,0,1,2,0,2,1,1,1,1,0,2,1,1,2,1,1,1,1,0,2,1,1,2,0,1,3,1,1,1,0,1,1,2,0,2,0,1,2,2,0,2,1,1,1,2,0,2,2,0,1,0,1,2,1,1,2,0,1,1,1,0,2,1,1,1,1,0,1,2,0,1,1,0,2,0,1,2,0,1,3,2,1,0,1,0,5,1,1,2,0,1,3,2,1,2,1,1,3,2,1,-,-,
11.09,Swansea,2,2,Chelsea,,1,3,0,1,3,0,0,2,0,0,1,0,0,2,0,1,2,0,0,2,0,1,2,0,0,3,0,1,3,0,0,3,0,1,3,0,0,4,0,0,2,0,0,2,0,0,3,0,-,-,,0,2,0,0,2,0,0,3,0,1,3,0,0,1,0,1,1,1,-,-,,1,2,0,1,2,0,0,2,0,0,2,0,0,2,0,1,3,0,1,3,0,1,3,0,0,2,0,1,3,0,1,3,0,0,2,0,0,3,0,0,2,0,0,3,0,0,3,0,0,3,0,0,3,0,0,2,0,0,2,0,0,1,0,0,2,0,0,2,0,1,2,0,1,2,0,0,3,0,0,3,0,0,3,0,0,2,0,0,1,0,1,3,0,0,3,0,1,4,0,0,3,0,0,3,0,0,2,0,1,2,0,1,2,0,1,3,0,1,2,0,0,2,0,0,2,0,0,2,0,0,2,0,0,3,0,1,2,0,0,3,0,0,1,0,1,2,0,0,2,0,0,2,0,-,-,
12.09,Sunderland,0,3,Everton,,1,3,1,1,1,0,0,1,1,0,1,1,1,2,1,1,1,0,1,1,0,0,4,1,1,2,1,1,2,1,0,2,1,1,2,1,0,1,1,0,1,1,0,2,1,1,2,1,-,-,,1,2,1,0,1,1,1,1,0,0,1,1,1,1,0,0,2,1,-,-,,0,1,1,0,2,1,1,3,1,1,2,1,1,2,1,0,2,1,1,2,1,1,3,1,1,2,1,0,2,1,1,3,1,1,2,1,1,2,1,0,1,1,0,1,1,1,1,0,1,3,1,0,2,1,1,2,1,1,2,1,0,1,1,1,1,0,1,2,1,1,2,1,1,1,0,1,3,1,1,2,1,0,2,1,0,2,1,1,3,1,1,3,1,2,3,1,0,3,3,2,1,0,0,1,1,1,1,0,0,1,1,1,2,1,1,2,1,0,3,3,0,2,1,0,2,1,0,1,1,1,2,1,1,3,1,0,1,1,0,2,1,0,1,1,1,2,1,1,1,0,1,2,1,-,-,
Subtotal,,,,,,,,7,,,6,,,8,,,10,,,6,,,7,,,2,,,4,,,9,,,7,,,9,,,11,,,10,,,6,,,6,,,5,,,0,,,3,,,7,,,3,,,4,,,5,,,6,,,0,,,4,,,6,,,8,,,10,,,8,,,7,,,7,,,5,,,6,,,5,,,7,,,5,,,3,,,7,,,3,,,3,,,3,,,3,,,2,,,4,,,6,,,4,,,7,,,4,,,7,,,5,,,5,,,4,,,5,,,7,,,13,,,12,,,6,,,2,,,6,,,4,,,8,,,4,,,8,,,8,,,2,,,7,,,5,,,4,,,7,,,3,,,7,,,8,,,5,,,11,,,3,,,0
16.09,Chelsea,1,2,Liverpool,,2,1,0,1,1,0,2,0,0,1,1,0,2,3,1,1,1,0,1,1,0,4,0,0,2,1,0,2,2,0,3,1,0,2,2,0,2,2,0,1,2,3,2,1,0,3,2,0,2,1,0,2,1,0,1,1,0,2,2,0,2,1,0,1,3,1,1,1,0,2,0,0,2,1,0,2,2,0,2,2,0,2,1,0,2,2,0,3,1,0,3,2,0,3,1,0,2,2,0,-,-,,2,2,0,2,1,0,2,1,0,2,1,0,1,1,0,2,2,0,1,1,0,2,0,0,1,1,0,1,1,0,2,1,0,2,3,1,1,1,0,2,1,0,1,2,3,1,1,0,2,1,0,2,0,0,2,1,0,1,1,0,3,1,0,2,2,0,2,0,0,3,1,0,2,1,0,2,2,0,1,2,3,2,0,0,3,2,0,3,1,0,1,1,0,1,2,3,1,2,3,1,1,0,2,2,0,2,1,0,1,1,0,1,1,0,2,2,0,2,2,0,2,3,1,1,0,0
17.09,Hull,1,4,Arsenal,,1,2,1,1,3,1,0,2,1,0,2,1,1,2,1,0,3,1,1,2,1,1,1,0,0,2,1,1,3,1,0,2,1,1,2,1,1,2,1,0,2,1,0,2,1,1,3,1,1,3,1,0,3,1,1,2,1,0,2,1,0,1,1,1,4,3,1,0,0,1,2,1,1,2,1,1,2,1,0,2,1,0,2,1,1,3,1,0,3,1,0,2,1,1,3,1,0,2,1,-,-,,1,2,1,1,3,1,1,3,1,0,1,1,0,2,1,1,3,1,1,3,1,1,2,1,0,3,1,1,1,0,0,1,1,0,2,1,0,2,1,0,2,1,1,3,1,0,2,1,1,3,1,1,3,1,1,2,1,1,3,1,1,2,1,1,3,1,1,2,1,0,1,1,0,2,1,0,3,1,1,1,0,1,2,1,0,2,1,1,2,1,0,2,1,1,1,0,0,2,1,1,2,1,1,2,1,0,3,1,0,2,1,0,2,1,0,1,1,1,2,1,0,4,1,1,2,1
17.09,Leicester,3,0,Burnley,,2,0,1,1,0,1,1,0,1,1,1,0,2,1,1,2,0,1,1,0,1,2,1,1,2,0,1,2,1,1,2,0,1,3,0,3,2,0,1,2,0,1,2,2,0,1,1,0,3,0,3,2,1,1,0,0,0,2,0,1,1,1,0,3,0,3,2,0,1,2,1,1,2,0,1,2,0,1,2,1,1,1,0,1,3,0,3,1,1,0,2,2,0,2,0,1,2,0,1,-,-,,1,0,1,2,0,1,3,0,3,1,1,0,2,1,1,2,0,1,2,2,0,2,1,1,2,1,1,2,1,1,1,0,1,1,1,0,2,1,1,1,0,1,3,1,1,2,0,1,2,0,1,2,1,1,2,0,1,2,0,1,2,1,1,1,0,1,3,1,1,2,0,1,1,0,1,2,0,1,2,0,1,3,1,1,2,0,1,3,0,3,1,0,1,1,1,0,2,1,1,2,1,1,2,1,1,2,0,1,2,0,1,2,1,1,1,0,1,2,1,1,2,0,1,2,1,1
17.09,Man City,4,0,Bournemouth,,4,0,3,2,0,1,3,0,1,3,0,1,5,1,1,4,0,3,3,0,1,2,0,1,3,0,1,3,0,1,4,0,3,4,0,3,3,1,1,3,0,1,2,0,1,4,0,3,4,1,1,4,0,3,3,0,1,3,0,1,3,0,1,4,0,3,3,1,1,4,0,3,1,0,1,4,0,3,3,0,1,3,0,1,3,0,1,4,1,1,2,0,1,4,0,3,3,0,1,-,-,,3,1,1,4,1,1,3,0,1,2,0,1,3,0,1,4,1,1,3,0,1,4,0,3,3,0,1,3,0,1,2,0,1,4,0,3,3,1,1,2,0,1,4,0,3,3,0,1,5,0,1,3,0,1,4,0,3,3,0,1,4,0,3,4,0,3,5,0,1,4,0,3,3,0,1,3,0,1,3,0,1,2,0,1,4,1,1,4,0,3,2,1,1,3,0,1,2,0,1,3,0,1,3,0,1,4,0,3,3,0,1,3,0,1,4,1,1,3,0,1,3,0,1,4,0,3
17.09,West Brom,4,2,West Ham,,1,1,0,1,0,1,1,1,0,1,1,0,1,2,0,0,0,0,1,1,0,1,0,1,0,1,0,1,1,0,2,1,1,2,1,1,0,0,0,0,1,0,0,0,0,1,0,1,1,1,0,1,1,0,0,1,0,1,1,0,0,1,0,0,1,0,1,0,1,1,1,0,1,1,0,0,1,0,1,2,0,1,0,1,1,0,1,1,1,0,1,1,0,1,1,0,1,1,0,-,-,,1,1,0,1,1,0,1,1,0,1,0,1,1,2,0,2,1,1,1,0,1,1,1,0,1,2,0,1,0,1,1,1,0,2,2,0,2,2,0,1,1,0,1,1,0,1,1,0,2,2,0,1,1,0,0,1,0,1,2,0,2,2,0,1,2,0,1,2,0,1,1,0,1,1,0,1,1,0,2,1,1,1,1,0,0,2,0,2,1,1,1,1,0,1,1,0,0,0,0,1,1,0,1,2,0,1,1,0,1,2,0,1,0,1,1,1,0,1,1,0,1,1,0,1,1,0
17.09,Everton,3,1,Middlesbrough,,4,1,1,2,0,1,2,0,1,2,0,1,2,1,1,2,0,1,1,0,1,4,0,1,3,1,3,2,1,1,2,0,1,3,0,1,2,1,1,3,0,1,3,0,1,3,0,1,2,0,1,2,0,1,2,0,1,2,1,1,2,1,1,2,0,1,3,0,1,3,0,1,2,0,1,3,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,-,-,,3,1,3,2,0,1,5,0,1,2,0,1,2,0,1,3,1,3,2,0,1,1,0,1,3,0,1,2,0,1,1,0,1,1,1,0,2,0,1,2,1,1,2,1,1,2,0,1,3,1,3,2,1,1,2,0,1,2,1,1,4,1,1,2,1,1,4,1,1,3,0,1,2,0,1,0,0,0,2,0,1,3,0,1,3,0,1,4,0,1,2,0,1,2,0,1,1,2,0,2,0,1,2,1,1,3,0,1,2,1,1,2,0,1,2,0,1,2,0,1,3,1,3,3,1,3
18.09,Watford,3,1,Man Utd,,2,2,0,0,0,0,0,1,0,0,2,0,2,2,0,1,2,0,1,2,0,3,1,3,1,2,0,1,0,1,1,2,0,2,2,0,2,2,0,1,3,0,1,1,0,1,2,0,2,2,0,1,2,0,1,3,0,1,2,0,1,2,0,2,2,0,1,2,0,1,1,0,1,1,0,1,2,0,1,2,0,1,2,0,1,2,0,1,3,0,2,2,0,2,2,0,0,2,0,-,-,,2,2,0,0,2,0,1,2,0,1,1,0,1,3,0,2,1,1,1,1,0,2,2,0,1,1,0,2,2,0,0,1,0,1,3,0,1,2,0,0,2,0,1,2,0,2,2,0,1,1,0,0,3,0,0,1,0,1,2,0,1,2,0,1,2,0,1,3,0,0,2,0,0,1,0,1,2,0,0,1,0,1,1,0,1,3,0,1,1,0,1,2,0,0,2,0,0,2,0,0,2,0,2,1,1,2,2,0,1,2,0,0,1,0,1,2,0,1,2,0,1,2,0,1,2,0
18.09,Crystal Palace,4,1,Stoke,,1,0,1,2,0,1,1,0,1,1,1,0,2,0,1,1,1,0,1,1,0,3,0,1,0,0,0,3,1,1,1,1,0,1,2,0,1,1,0,0,0,0,1,0,1,2,1,1,1,0,1,0,0,0,1,0,1,1,1,0,1,0,1,1,1,0,1,0,1,0,0,0,0,1,0,1,1,0,1,1,0,1,0,1,3,0,1,0,0,0,0,1,0,1,1,0,1,0,1,-,-,,1,1,0,1,1,0,2,0,1,0,0,0,1,1,0,1,1,0,0,0,0,2,1,1,3,1,1,2,1,1,1,0,1,3,1,1,0,0,0,2,1,1,2,1,1,2,0,1,0,0,0,1,1,0,1,1,0,1,1,0,1,1,0,0,0,0,2,2,0,2,0,1,2,2,0,1,1,0,1,0,1,0,1,0,1,0,1,2,0,1,0,0,0,1,1,0,1,2,0,2,1,1,1,1,0,1,0,1,3,1,1,0,0,0,1,0,1,1,0,1,1,1,0,1,1,0
18.09,Southampton,1,0,Swansea,,2,1,1,2,2,0,1,1,0,1,0,3,2,1,1,1,1,0,2,1,1,2,2,0,1,1,0,2,2,0,2,0,1,2,1,1,0,1,0,2,1,1,2,0,1,1,2,0,2,0,1,2,0,1,2,2,0,1,0,3,1,1,0,1,2,0,2,0,1,3,2,1,3,2,1,2,0,1,1,1,0,2,0,1,1,1,0,2,2,0,1,2,0,2,0,1,1,1,0,-,-,,1,0,3,2,1,1,1,0,3,1,0,3,1,0,3,2,1,1,2,0,1,1,1,0,4,0,1,2,2,0,1,0,3,2,1,1,1,1,0,2,1,1,2,1,1,1,1,0,2,1,1,1,0,3,1,1,0,3,0,1,2,1,1,1,1,0,2,1,1,2,0,1,1,0,3,1,1,0,0,1,0,2,1,1,2,2,0,2,0,1,1,1,0,1,0,3,1,1,0,1,1,0,3,0,1,1,1,0,1,2,0,1,0,3,2,0,1,1,1,0,1,0,3,2,2,0
18.09,Tottenham,1,0,Sunderland,,5,0,1,1,0,3,3,0,1,2,0,1,4,1,1,2,0,1,2,0,1,3,1,1,2,0,1,4,1,1,2,0,1,3,1,1,2,0,1,3,0,1,4,0,1,4,0,1,3,1,1,3,1,1,4,0,1,2,0,1,1,0,3,4,1,1,2,0,1,3,1,1,1,1,0,2,0,1,4,1,1,2,0,1,4,0,1,3,0,1,3,0,1,4,0,1,4,0,1,-,-,,3,1,1,3,1,1,2,0,1,3,0,1,3,0,1,3,0,1,4,0,1,3,0,1,3,0,1,3,0,1,2,0,1,4,0,1,2,0,1,2,0,1,3,0,1,2,0,1,2,0,1,3,1,1,2,0,1,4,1,1,4,1,1,3,0,1,3,0,1,2,0,1,2,0,1,3,0,1,2,0,1,1,0,3,2,0,1,4,0,1,0,0,0,3,0,1,4,0,1,3,0,1,4,0,1,2,0,1,5,0,1,2,0,1,4,0,1,2,0,1,2,0,1,4,1,1
Subtotal,,,,,,,,9,,,9,,,6,,,7,,,8,,,7,,,6,,,9,,,7,,,7,,,9,,,11,,,5,,,9,,,6,,,8,,,9,,,8,,,5,,,8,,,7,,,12,,,7,,,8,,,5,,,8,,,5,,,8,,,9,,,4,,,4,,,8,,,6,,,0,,,10,,,6,,,11,,,8,,,8,,,10,,,6,,,8,,,7,,,6,,,9,,,8,,,5,,,7,,,12,,,6,,,8,,,8,,,7,,,6,,,8,,,7,,,6,,,9,,,8,,,4,,,9,,,8,,,6,,,12,,,4,,,9,,,7,,,6,,,7,,,8,,,6,,,9,,,7,,,6,,,11,,,9
24.09,Man Utd,4,1,Leicester,,2,2,0,2,0,1,1,0,1,1,0,1,1,1,0,1,1,0,2,1,1,1,3,0,2,1,1,1,3,0,2,2,0,2,1,1,0,1,0,0,1,0,1,2,0,0,2,0,1,1,0,1,1,0,2,2,0,1,1,0,1,2,0,1,2,0,0,0,0,-,-,,2,1,1,2,1,1,2,1,1,1,0,1,1,2,0,1,1,0,1,3,0,2,1,1,2,2,0,-,-,,2,1,1,2,1,1,2,1,1,0,0,0,1,3,0,2,2,0,2,2,0,2,2,0,1,1,0,1,2,0,1,1,0,2,0,1,2,1,1,2,1,1,2,1,1,1,1,0,1,1,0,2,2,0,1,1,0,1,1,0,2,2,0,2,1,1,2,2,0,2,1,1,1,1,0,1,1,0,1,1,0,2,1,1,2,2,0,-,-,,1,1,0,1,2,0,1,0,1,1,1,0,2,2,0,0,1,0,3,1,1,2,1,1,3,2,1,1,0,1,1,1,0,1,2,0
24.09,Bournemouth,1,0,Everton,,1,3,0,1,1,0,0,1,0,0,1,0,1,2,0,1,3,0,1,2,0,0,4,0,0,1,0,1,2,0,1,4,0,1,3,0,2,2,0,0,1,0,0,2,0,1,4,0,0,2,0,1,2,0,1,2,0,1,2,0,0,3,0,1,3,0,0,2,0,-,-,,1,1,0,1,3,0,0,2,0,0,1,0,0,2,0,1,3,0,1,2,0,1,2,0,1,3,0,-,-,,1,3,0,0,2,0,0,2,0,0,1,0,0,2,0,1,1,0,0,1,0,1,2,0,2,3,0,0,2,0,1,2,0,2,1,1,0,2,0,1,2,0,1,2,0,1,3,0,1,1,0,0,1,0,0,2,0,1,1,0,1,3,0,2,3,0,1,1,0,1,3,0,0,2,0,1,1,0,1,2,0,1,2,0,0,2,0,-,-,,1,2,0,0,2,0,2,1,1,0,2,0,1,3,0,0,2,0,0,1,0,0,1,0,2,1,1,1,1,0,0,2,0,1,3,0
24.09,Liverpool,5,1,Hull,,4,0,1,3,0,1,2,1,1,3,0,1,4,0,1,5,0,1,3,0,1,1,1,0,3,1,1,2,1,1,3,0,1,3,0,1,3,0,1,3,0,1,2,0,1,4,1,1,3,1,1,5,0,1,3,0,1,3,0,1,2,0,1,4,0,1,2,1,1,-,-,,4,1,1,3,0,1,3,0,1,2,0,1,4,0,1,2,0,1,2,2,0,2,0,1,4,0,1,-,-,,3,1,1,3,0,1,4,0,1,3,0,1,2,0,1,3,0,1,4,0,1,2,0,1,4,0,1,2,0,1,0,1,0,3,0,1,3,0,1,2,0,1,4,1,1,4,0,1,3,0,1,3,1,1,3,0,1,3,0,1,3,1,1,3,1,1,3,1,1,4,0,1,2,0,1,3,0,1,3,0,1,1,0,1,4,0,1,-,-,,1,1,0,3,1,1,3,0,1,3,0,1,3,1,1,0,0,0,6,0,1,1,0,1,5,0,1,2,0,1,6,1,1,4,1,1
24.09,Middlesbrough,1,2,Tottenham,,1,2,3,1,2,3,0,2,1,0,2,1,1,1,0,0,2,1,1,2,3,1,1,0,0,2,1,1,1,0,1,1,0,1,2,3,0,2,1,0,2,1,1,1,0,0,3,1,2,1,0,1,1,0,1,3,1,0,2,1,0,3,1,1,1,0,1,1,0,-,-,,1,0,0,0,1,1,1,1,0,0,2,1,1,3,1,1,2,3,1,1,0,0,1,1,1,3,1,-,-,,1,2,3,1,1,0,1,1,0,0,2,1,0,3,1,1,2,3,1,3,1,1,1,0,1,1,0,1,0,0,1,1,0,0,2,1,0,2,1,1,2,3,1,2,3,0,1,1,0,2,1,1,3,1,0,1,1,1,3,1,1,2,3,1,1,0,1,3,1,1,2,3,1,1,0,0,2,1,0,2,1,1,1,0,0,2,1,-,-,,1,2,3,0,2,1,0,2,1,1,2,3,1,2,3,1,2,3,1,3,1,0,1,1,1,1,0,0,2,1,1,1,0,0,1,1
24.09,Stoke,1,1,West Brom,,1,2,0,1,1,3,0,1,0,1,1,3,0,2,0,1,1,3,2,1,0,1,1,3,0,0,1,1,2,0,1,2,0,1,1,3,1,1,3,1,2,0,1,2,0,0,0,1,1,2,0,2,1,0,0,2,0,2,2,1,1,2,0,0,0,1,0,1,0,-,-,,1,0,0,1,0,0,1,1,3,1,0,0,0,1,0,0,3,0,1,2,0,0,0,1,1,1,3,-,-,,1,0,0,1,1,3,1,2,0,0,1,0,1,2,0,3,1,0,1,1,3,2,2,1,0,0,1,1,1,3,1,1,3,1,3,0,2,2,1,1,1,3,1,1,3,1,1,3,2,2,1,1,2,0,1,1,3,1,1,3,1,3,0,0,0,1,2,0,0,1,1,3,0,0,1,1,1,3,1,1,3,2,0,0,1,1,3,-,-,,0,0,1,0,0,1,2,1,0,0,1,0,1,2,0,1,2,0,2,1,0,0,0,1,1,0,0,1,1,3,1,0,0,0,1,0
24.09,Sunderland,2,3,Crystal Palace,,1,3,1,1,3,1,0,1,1,1,2,1,1,2,1,1,0,0,1,1,0,1,3,1,1,0,0,0,2,1,1,1,0,2,2,0,0,2,1,0,2,1,0,2,1,1,0,0,2,0,0,1,0,0,0,0,0,2,1,0,1,2,1,1,1,0,1,0,0,-,-,,1,1,0,1,1,0,1,1,0,0,1,1,0,2,1,1,2,1,1,2,1,0,0,0,1,1,0,-,-,,1,1,0,1,0,0,2,3,3,1,1,0,1,1,0,1,2,1,1,2,1,2,1,0,2,1,0,1,1,0,0,0,0,2,1,0,1,1,0,2,1,0,1,1,0,1,0,0,2,1,0,2,1,0,1,0,0,1,0,0,1,2,1,1,0,0,1,0,0,0,1,1,1,2,1,1,2,1,2,1,0,1,1,0,0,0,0,-,-,,1,0,0,1,1,0,1,0,0,0,1,1,0,2,1,1,1,0,1,1,0,1,1,0,1,0,0,1,2,1,1,1,0,0,1,1
24.09,Swansea,1,3,Man City,,1,4,1,0,2,1,0,3,1,0,3,1,1,3,3,1,4,1,1,2,1,1,2,1,1,3,3,1,2,1,0,3,1,1,3,3,0,2,1,0,2,1,0,3,1,1,4,1,1,4,1,0,3,1,0,3,1,1,3,3,1,3,3,0,3,1,0,3,1,-,-,,1,2,1,0,3,1,0,2,1,0,2,1,0,3,1,0,4,1,1,3,3,1,3,3,0,3,1,-,-,,0,2,1,0,3,1,1,3,3,1,2,1,0,3,1,1,1,0,0,3,1,1,3,3,0,3,1,0,3,1,0,2,1,1,3,3,0,3,1,0,3,1,1,3,3,0,3,1,1,3,3,0,2,1,0,3,1,1,3,3,0,3,1,1,3,3,1,4,1,0,2,1,0,3,1,0,2,1,0,2,1,2,2,0,0,3,1,-,-,,2,2,0,0,3,1,0,4,1,1,2,1,0,3,1,0,3,1,0,3,1,1,3,3,2,2,0,0,2,1,0,2,1,0,3,1
24.09,Arsenal,3,0,Chelsea,,2,2,0,1,0,1,1,2,0,1,1,0,1,2,0,2,1,1,1,1,0,0,1,0,2,2,0,1,1,0,2,1,1,2,2,0,2,0,1,2,1,1,2,3,0,2,1,1,2,1,1,2,2,0,1,1,0,1,1,0,2,2,0,1,1,0,1,2,0,-,-,,0,1,0,1,1,0,2,2,0,1,0,1,0,1,0,1,2,0,2,2,0,2,2,0,2,1,1,-,-,,2,1,1,2,2,0,1,1,0,1,1,0,1,2,0,2,2,0,2,0,1,2,1,1,2,1,1,2,0,1,1,1,0,2,2,0,1,1,0,2,1,1,2,1,1,2,1,1,1,1,0,0,2,0,1,1,0,1,1,0,2,2,0,2,2,0,2,3,0,2,2,0,2,2,0,1,2,0,1,0,1,2,1,1,1,1,0,-,-,,2,2,0,2,2,0,2,2,0,1,1,0,2,1,1,1,1,0,1,2,0,2,1,1,3,3,0,1,1,0,2,1,1,2,1,1
25.09,West Ham,0,3,Southampton,,2,3,1,1,1,0,1,2,1,0,1,1,1,3,1,1,1,0,2,1,0,2,1,0,1,0,0,1,3,1,0,0,0,2,2,0,1,2,1,1,2,1,1,1,0,0,4,1,1,1,0,1,2,1,2,2,0,1,2,1,1,1,0,1,1,0,1,0,0,-,-,,2,0,0,2,1,0,1,1,0,1,0,0,1,2,1,1,2,1,1,2,1,1,1,0,2,1,0,-,-,,1,0,0,1,0,0,2,1,0,0,0,0,0,2,1,2,1,0,2,2,0,2,1,0,1,1,0,0,1,1,1,1,0,1,3,1,1,2,1,2,1,0,1,1,0,1,1,0,1,2,1,0,0,0,2,1,0,1,2,1,2,2,0,1,1,0,2,0,0,2,4,1,1,2,1,2,1,0,2,2,0,1,3,1,2,3,1,-,-,,1,1,0,0,1,1,3,1,0,0,1,1,1,2,1,3,2,0,3,2,0,0,0,0,2,1,0,2,1,0,1,1,0,2,2,0
26.09,Burnley,2,0,Watford,,1,4,0,0,0,0,0,1,0,1,0,1,0,2,0,1,1,0,1,1,0,3,3,0,2,2,0,1,2,0,1,2,0,1,2,0,1,2,0,2,2,0,0,0,0,1,2,0,2,2,0,2,0,3,2,1,1,1,1,0,0,3,0,0,2,0,0,2,0,-,-,,2,2,0,2,2,0,0,1,0,2,1,1,1,2,0,1,1,0,1,2,0,1,1,0,2,2,0,-,-,,0,1,0,2,2,0,1,2,0,1,1,0,0,1,0,1,1,0,0,1,0,1,1,0,1,2,0,1,2,0,0,1,0,1,1,0,1,1,0,1,1,0,1,2,0,0,1,0,1,3,0,1,2,0,0,0,0,0,1,0,2,1,1,1,2,0,1,1,0,0,0,0,0,1,0,0,1,0,1,0,1,1,0,1,1,2,0,-,-,,1,2,0,0,1,0,0,1,0,1,1,0,0,2,0,1,1,0,2,2,0,1,1,0,0,0,0,1,2,0,1,2,0,1,2,0
Subtotal,,,,,,,,7,,,11,,,6,,,10,,,6,,,7,,,6,,,5,,,7,,,4,,,3,,,11,,,9,,,6,,,3,,,6,,,3,,,6,,,4,,,7,,,6,,,3,,,2,,,0,,,3,,,4,,,6,,,7,,,5,,,7,,,5,,,7,,,7,,,0,,,7,,,6,,,8,,,3,,,4,,,5,,,8,,,6,,,4,,,7,,,4,,,8,,,6,,,10,,,12,,,7,,,7,,,3,,,6,,,9,,,7,,,6,,,3,,,11,,,5,,,7,,,8,,,5,,,7,,,0,,,4,,,5,,,5,,,7,,,8,,,4,,,4,,,8,,,3,,,8,,,3,,,5
30.09,Everton,1,1,Crystal Palace,,2,0,0,2,0,0,2,1,0,1,0,0,2,2,1,2,1,0,2,1,0,3,2,0,2,0,0,-,-,,3,1,0,2,1,0,2,0,0,0,0,1,4,1,0,2,2,1,-,-,,2,0,0,2,1,0,2,1,0,2,1,0,2,2,1,2,0,0,-,-,,2,0,0,2,1,0,2,1,0,1,0,0,3,1,0,2,2,1,2,1,0,2,0,0,2,0,0,-,-,,2,0,0,2,1,0,-,-,,2,0,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,3,1,0,1,0,0,1,0,0,2,1,0,2,1,0,2,1,0,1,0,0,2,0,0,2,1,0,2,0,0,3,0,0,3,1,0,3,1,0,3,1,0,3,0,0,2,0,0,1,2,0,2,0,0,2,0,0,3,1,0,-,-,,2,0,0,1,0,0,1,2,0,2,1,0,4,2,0,3,1,0,4,1,0,2,1,0,3,1,0,1,1,3,1,1,3,4,2,0
01.10,Swansea,1,2,Liverpool,,1,3,1,1,3,1,0,3,1,0,3,1,2,4,1,2,3,1,1,2,3,1,0,0,0,2,1,-,-,,1,2,3,1,2,3,1,2,3,0,2,1,1,1,0,1,4,1,-,-,,1,3,1,0,2,1,1,2,3,1,2,3,1,3,1,1,2,3,-,-,,1,2,3,1,3,1,0,2,1,0,2,1,1,3,1,1,2,3,1,2,3,2,1,0,1,3,1,-,-,,1,3,1,1,3,1,-,-,,0,3,1,0,2,1,1,2,3,1,3,1,1,2,3,1,2,3,1,2,3,1,2,3,2,1,0,0,2,1,1,2,3,1,3,1,2,1,0,1,1,0,0,2,1,1,1,0,0,2,1,2,2,0,0,3,1,2,1,0,0,4,1,1,2,3,1,3,1,0,2,1,1,1,0,0,3,1,-,-,,1,0,0,0,2,1,1,3,1,1,3,1,1,4,1,1,2,3,2,2,0,1,2,3,1,3,1,1,2,3,2,2,0,1,3,1
01.10,Hull,0,2,Chelsea,,1,2,1,1,1,0,1,2,1,0,1,1,0,2,3,0,2,3,0,2,3,1,1,0,0,3,1,-,-,,1,1,0,2,3,1,0,2,3,0,2,3,0,3,1,1,2,1,-,-,,1,3,1,0,1,1,2,3,1,1,1,0,1,1,0,0,3,1,-,-,,0,1,1,2,2,0,0,3,1,0,2,3,0,2,3,0,4,1,0,3,1,0,3,1,1,2,1,-,-,,0,1,1,1,4,1,-,-,,0,2,3,1,3,1,1,3,1,2,2,0,1,1,0,0,2,3,1,1,0,0,1,1,1,2,1,0,2,3,0,2,3,1,3,1,1,2,1,1,3,1,1,3,1,0,1,1,0,2,3,1,2,1,0,1,1,2,2,0,1,2,1,0,2,3,1,3,1,1,1,0,0,2,3,0,2,3,-,-,,1,2,1,1,1,0,0,2,3,1,2,1,1,2,1,1,2,1,0,3,1,0,2,3,1,2,1,1,2,1,1,3,1,1,1,0
01.10,Sunderland,1,1,West Brom,,1,1,3,1,0,0,0,1,0,1,0,0,1,1,3,0,0,1,1,1,3,1,1,3,1,0,0,-,-,,1,1,3,2,2,1,0,0,1,1,0,0,0,0,1,0,0,1,-,-,,1,0,0,3,0,0,2,2,1,1,1,3,1,0,0,1,1,3,-,-,,1,0,0,1,1,3,2,2,1,1,0,0,1,0,0,1,2,0,1,2,0,1,1,3,1,0,0,-,-,,1,0,0,1,1,3,-,-,,0,0,1,1,1,3,1,1,3,1,1,3,2,1,0,2,1,0,1,0,0,0,0,1,1,1,3,2,2,1,1,1,3,1,1,3,1,1,3,1,1,3,0,0,1,1,1,3,1,1,3,2,2,1,2,1,0,2,1,0,1,1,3,1,0,0,1,1,3,1,2,0,2,1,0,0,0,1,-,-,,1,0,0,0,1,0,1,0,0,0,1,0,1,2,0,0,1,0,3,1,0,1,0,0,1,0,0,1,1,3,1,2,0,1,0,0
01.10,Watford,2,2,Bournemouth,,2,1,0,2,0,0,2,1,0,1,0,0,2,2,3,1,2,0,2,1,0,1,2,0,2,1,0,-,-,,1,2,0,2,0,0,2,2,3,1,0,0,1,0,0,0,1,0,-,-,,2,1,0,2,0,0,2,1,0,2,2,3,1,0,0,2,0,0,-,-,,2,0,0,1,0,0,3,1,0,2,1,0,2,0,0,1,1,1,3,1,0,2,1,0,1,2,0,-,-,,1,1,1,2,2,3,-,-,,1,1,1,2,2,3,2,0,0,0,0,1,2,2,3,1,0,0,2,0,0,1,0,0,1,1,1,2,1,0,2,1,0,2,0,0,1,1,1,3,1,0,0,1,0,1,0,0,2,2,3,2,1,0,2,1,0,1,0,0,2,0,0,1,1,1,1,0,0,1,0,0,1,1,1,3,1,0,-,-,,2,0,0,0,0,1,2,2,3,2,1,0,2,1,0,3,2,0,1,1,1,1,1,1,2,2,3,2,1,0,1,1,1,1,1,1
01.10,West Ham,1,1,Middlesbrough,,2,1,0,1,0,0,0,1,0,1,1,3,0,1,0,1,1,3,2,0,0,1,1,3,2,0,0,-,-,,1,1,3,2,1,0,0,0,1,1,0,0,0,0,1,1,4,0,-,-,,2,1,0,0,0,1,2,1,0,1,0,0,1,1,3,1,0,0,-,-,,3,1,0,2,1,0,1,1,3,2,1,0,1,1,3,0,1,0,2,2,1,2,2,1,1,1,3,-,-,,1,1,3,2,1,0,-,-,,1,1,3,1,1,3,2,0,0,1,0,0,2,1,0,1,2,0,0,2,0,0,1,0,0,0,1,2,1,0,2,1,0,1,1,3,0,0,1,2,1,0,1,0,0,1,1,3,1,0,0,2,1,0,0,0,1,2,2,1,1,2,0,1,0,0,2,1,0,2,1,0,2,1,0,0,2,0,-,-,,1,1,3,0,2,0,1,0,0,1,1,3,1,1,3,2,2,1,5,1,0,1,0,0,1,0,0,1,1,3,1,1,3,1,3,0
02.10,Man Utd,1,1,Stoke,,2,0,0,2,0,0,2,1,0,2,0,0,3,0,0,3,0,0,2,0,0,4,0,0,3,0,0,-,-,,3,0,0,4,0,0,2,0,0,2,0,0,3,0,0,2,1,0,-,-,,3,0,0,3,0,0,3,0,0,2,0,0,0,0,1,3,0,0,-,-,,2,0,0,3,1,0,4,0,0,2,0,0,3,0,0,3,1,0,2,1,0,3,0,0,3,0,0,-,-,,2,1,0,2,0,0,-,-,,2,0,0,2,0,0,1,1,3,4,0,0,3,0,0,3,0,0,4,0,0,2,0,0,3,0,0,2,1,0,2,0,0,3,0,0,3,0,0,3,0,0,3,0,0,3,0,0,3,1,0,3,1,0,4,0,0,2,1,0,3,0,0,2,0,0,2,0,0,2,0,0,2,0,0,3,0,0,-,-,,1,0,0,1,0,0,2,1,0,3,0,0,3,0,0,4,0,0,1,1,3,2,0,0,3,0,0,3,1,0,2,0,0,3,0,0
02.10,Leicester,0,0,Southampton,,1,2,0,1,1,1,0,2,0,1,1,1,1,2,0,1,1,1,1,0,0,2,0,0,2,1,0,-,-,,2,1,0,2,1,0,1,1,1,2,0,0,2,2,1,3,0,0,-,-,,2,1,0,2,2,1,2,1,0,1,1,1,1,1,1,2,1,0,-,-,,1,1,1,2,1,0,1,1,1,1,0,0,2,0,0,2,2,1,2,1,0,1,0,0,2,1,0,-,-,,1,1,1,2,1,0,-,-,,2,1,0,2,1,0,1,1,1,2,1,0,2,1,0,2,1,0,1,1,1,1,0,0,2,0,0,2,0,0,1,0,0,2,1,0,2,0,0,2,1,0,2,2,1,2,0,0,1,1,1,2,2,1,1,2,0,0,0,3,1,2,0,1,1,1,1,1,1,2,1,0,1,0,0,1,1,1,-,-,,1,0,0,1,1,1,1,1,1,1,1,1,2,3,0,2,0,0,3,2,0,1,0,0,2,1,0,1,1,1,2,2,1,1,2,0
02.10,Tottenham,2,0,Man City,,2,3,0,1,0,1,0,2,0,1,2,0,2,2,0,2,2,0,1,1,0,1,2,0,1,2,0,-,-,,1,2,0,2,2,0,1,3,0,1,2,0,1,2,0,1,3,0,-,-,,1,2,0,2,3,0,1,2,0,1,0,1,2,2,0,1,3,0,-,-,,2,2,0,1,2,0,1,1,0,1,2,0,2,2,0,1,2,0,1,3,0,1,3,0,1,3,0,-,-,,2,2,0,1,3,0,-,-,,1,1,0,1,2,0,1,1,0,1,1,0,1,3,0,1,1,0,1,2,0,1,2,0,2,2,0,2,2,0,1,2,0,1,1,0,2,2,0,1,1,0,2,4,0,1,2,0,1,1,0,2,3,0,1,3,0,3,3,0,1,2,0,0,2,0,2,2,0,1,1,0,1,1,0,1,1,0,-,-,,2,1,1,1,2,0,2,2,0,1,2,0,1,2,0,1,1,0,3,3,0,1,1,0,1,2,0,1,2,0,1,2,0,1,2,0
02.10,Burnley,0,1,Arsenal,,1,3,1,1,3,1,0,2,1,0,2,1,0,3,1,0,3,1,0,2,1,2,0,0,1,1,0,-,-,,0,3,1,1,3,1,0,1,3,1,2,1,1,1,0,2,3,1,-,-,,0,3,1,1,3,1,1,3,1,1,2,1,1,3,1,1,1,0,-,-,,1,3,1,0,2,1,1,2,1,0,2,1,0,2,1,1,2,1,1,2,1,0,3,1,0,4,1,-,-,,1,2,1,0,3,1,-,-,,0,2,1,0,2,1,1,3,1,0,3,1,0,2,1,1,3,1,0,1,3,0,2,1,1,2,1,0,2,1,0,2,1,1,3,1,1,2,1,1,3,1,0,2,1,0,2,1,0,3,1,0,3,1,1,4,1,1,2,1,0,2,1,1,2,1,,,0,0,1,3,1,3,1,0,1,3,-,-,,1,3,1,0,3,1,0,3,1,1,2,1,1,3,1,1,2,1,0,2,1,0,2,1,1,4,1,1,2,1,0,2,1,1,3,1
Subtotal,,,,,,,,6,,,4,,,3,,,7,,,12,,,10,,,10,,,6,,,2,,,0,,,10,,,6,,,15,,,6,,,4,,,5,,,0,,,3,,,5,,,6,,,12,,,8,,,7,,,0,,,6,,,5,,,8,,,5,,,8,,,8,,,6,,,6,,,6,,,0,,,8,,,9,,,0,,,10,,,12,,,12,,,6,,,7,,,7,,,7,,,6,,,7,,,6,,,10,,,9,,,7,,,5,,,5,,,8,,,12,,,4,,,4,,,5,,,6,,,9,,,6,,,4,,,5,,,9,,,0,,,6,,,4,,,9,,,7,,,6,,,6,,,6,,,8,,,6,,,15,,,10,,,3
15.10,Chelsea,3,0,Leicester,,2,1,1,2,0,1,2,0,1,2,0,1,2,1,1,2,1,1,2,0,1,2,2,0,2,0,1,2,1,1,3,1,1,3,1,1,1,1,0,1,1,0,2,1,1,2,1,1,-,-,,2,1,1,2,1,1,2,1,1,2,2,0,4,1,1,1,0,1,3,1,1,2,1,1,2,1,1,2,0,1,2,0,1,2,2,0,3,1,1,2,1,1,2,0,1,2,1,1,-,-,,1,0,1,2,0,1,-,-,,0,0,0,2,1,1,2,0,1,2,1,1,2,1,1,3,1,1,1,0,1,1,0,1,2,1,1,2,1,1,2,0,1,2,1,1,1,1,0,3,1,1,1,0,1,1,2,0,2,1,1,2,1,1,1,0,1,2,1,1,3,1,1,2,1,1,2,1,1,2,1,1,-,-,,2,1,1,-,-,,1,0,1,1,1,0,2,1,1,2,1,1,1,1,0,1,1,0,2,0,1,-,-,,1,2,0,2,1,1,2,0,1,2,0,1
15.10,Arsenal,3,2,Swansea,,2,0,1,3,0,1,3,0,1,2,0,1,3,0,1,3,1,1,3,0,1,1,1,0,2,0,1,1,1,0,3,0,1,3,1,1,4,0,1,2,0,1,3,0,1,2,1,1,-,-,,3,0,1,4,1,1,3,1,1,2,1,1,2,1,1,2,0,1,2,1,1,2,0,1,3,0,1,4,1,1,3,0,1,3,0,1,2,1,1,3,1,1,2,0,1,3,0,1,-,-,,2,0,1,3,1,1,-,-,,3,0,1,2,0,1,3,0,1,3,0,1,2,0,1,2,0,1,3,0,1,1,0,1,3,1,1,2,0,1,2,0,1,3,1,1,3,0,1,3,0,1,2,0,1,3,0,1,3,1,1,3,0,1,2,0,1,3,1,1,4,0,1,2,0,1,3,0,1,2,0,1,-,-,,3,0,1,-,-,,3,0,1,2,1,1,3,0,1,3,0,1,2,0,1,2,0,1,3,0,1,-,-,,3,0,1,2,0,1,3,0,1,4,1,1
15.10,Bournemouth,6,1,Hull,,2,1,1,2,0,1,1,0,1,2,0,1,2,0,1,2,0,1,2,1,1,2,1,1,1,1,0,2,1,1,2,0,1,1,2,0,2,1,1,1,1,0,1,1,0,2,1,1,-,-,,2,0,1,0,0,0,2,0,1,1,1,0,2,1,1,2,1,1,0,1,0,1,0,1,2,1,1,2,1,1,1,0,1,2,1,1,2,2,0,1,1,0,2,1,1,2,0,1,-,-,,1,1,0,2,0,1,-,-,,2,1,1,2,1,1,2,1,1,1,1,0,1,1,0,2,0,1,1,1,0,1,0,1,1,1,0,1,1,0,2,1,1,1,0,1,1,0,1,2,0,1,2,0,1,1,1,0,2,0,1,2,1,1,2,1,1,3,0,1,0,0,0,1,0,1,1,0,1,2,1,1,-,-,,2,0,1,-,-,,1,1,0,0,0,0,1,1,0,2,1,1,2,1,1,3,1,1,0,1,0,-,-,,2,2,0,1,0,1,1,1,0,2,1,1
15.10,Man City,1,1,Everton,,3,1,0,4,1,0,2,1,0,2,1,0,3,1,0,3,1,0,3,0,0,1,3,0,3,1,0,3,1,0,2,1,0,2,2,1,1,1,3,3,1,0,1,2,0,2,1,0,-,-,,1,0,0,3,1,0,3,1,0,3,0,0,2,0,0,2,1,0,1,1,3,2,0,0,2,0,0,2,1,0,2,1,0,1,1,3,2,0,0,2,2,1,1,2,0,3,1,0,-,-,,1,1,3,2,0,0,-,-,,2,0,0,2,0,0,3,1,0,2,1,0,2,2,1,3,0,0,1,2,0,0,0,1,4,0,0,2,1,0,2,1,0,3,1,0,2,2,1,2,1,0,2,1,0,3,1,0,2,0,0,3,1,0,2,1,0,2,2,1,3,2,0,1,1,3,2,0,0,2,0,0,-,-,,1,1,3,-,-,,1,2,0,3,1,0,3,0,0,2,0,0,3,1,0,2,0,0,4,1,0,-,-,,3,2,0,2,0,0,2,1,0,3,1,0
15.10,Stoke,2,0,Sunderland,,2,1,1,2,2,0,1,0,1,2,1,1,1,0,1,0,0,0,2,1,1,0,0,0,1,1,0,2,0,3,1,1,0,2,1,1,0,0,0,0,0,0,2,0,3,2,1,1,-,-,,2,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,1,1,0,2,1,1,1,1,0,2,1,1,1,0,1,2,0,3,1,1,0,1,1,0,2,0,3,1,1,0,-,-,,1,1,0,1,1,0,-,-,,1,0,1,2,1,1,2,0,3,2,2,0,1,2,0,1,0,1,1,1,0,0,0,0,1,1,0,1,1,0,2,1,1,1,0,1,1,1,0,1,1,0,1,1,0,1,1,0,1,0,1,1,1,0,1,0,1,1,1,0,1,1,0,2,2,0,1,1,0,2,1,1,-,-,,0,0,0,-,-,,1,1,0,4,4,0,-,-,0,2,1,1,1,0,1,1,1,0,0,0,0,-,-,,1,1,0,1,1,0,1,1,0,1,1,0
15.10,West Brom,1,1,Tottenham,,1,2,0,1,3,0,1,2,0,1,1,3,1,3,0,0,2,0,1,2,0,0,0,1,1,2,0,1,1,3,0,2,0,1,3,0,0,2,0,1,2,0,1,1,3,1,2,0,-,-,,1,1,3,0,3,0,0,2,0,0,2,0,1,1,3,1,2,0,0,3,0,1,2,0,0,2,0,1,2,0,0,1,0,0,2,0,1,2,0,1,3,0,0,2,0,0,2,0,-,-,,1,2,0,0,1,0,-,-,,1,1,3,0,2,0,1,2,0,0,1,0,0,2,0,1,3,0,1,1,3,0,2,0,1,2,0,1,2,0,0,2,0,1,2,0,1,3,0,1,2,0,1,2,0,0,2,0,0,2,0,1,3,0,1,3,0,2,0,0,0,2,0,0,2,0,0,2,0,0,2,0,-,-,,0,2,0,-,-,,1,1,3,0,3,0,1,2,0,1,2,0,0,3,0,1,2,0,1,1,3,-,-,,0,3,0,1,2,0,1,2,0,0,1,0
15.10,Crystal Palace,0,1,West Ham,,2,2,0,1,0,0,1,0,0,2,0,0,2,1,0,2,1,0,1,1,0,3,2,0,2,1,0,3,1,0,2,1,0,2,1,0,2,0,0,1,2,1,2,1,0,2,1,0,-,-,,2,2,0,3,2,0,2,1,0,2,0,0,4,1,0,3,1,0,2,1,0,2,2,0,2,1,0,2,2,0,1,0,0,2,0,0,2,2,0,2,0,0,2,1,0,2,1,0,-,-,,1,0,0,2,2,0,-,-,,2,0,0,3,1,0,3,1,0,2,0,0,2,1,0,2,0,0,2,0,0,1,0,0,2,2,0,0,0,0,1,1,0,2,1,0,2,1,0,2,0,0,0,0,0,2,0,0,1,0,0,2,2,0,1,1,0,2,0,0,1,0,0,2,1,0,1,1,0,2,1,0,-,-,,2,1,0,-,-,,1,1,0,1,0,0,1,2,1,2,1,0,2,2,0,3,0,0,2,1,0,-,-,,2,0,0,1,0,0,2,0,0,2,0,0
16.10,Middlesbrough,0,1,Watford,,2,3,1,1,2,1,0,0,0,1,0,0,2,2,0,2,2,0,1,1,0,2,1,0,1,1,0,2,0,0,1,1,0,1,2,1,1,3,1,1,1,0,1,1,0,2,1,0,-,-,,2,1,0,1,1,0,2,2,0,0,2,1,1,1,0,1,1,0,0,0,0,1,1,0,1,0,0,2,2,0,0,0,0,0,1,3,2,1,0,1,3,1,2,1,0,2,0,0,-,-,,0,0,0,2,1,0,-,-,,1,1,0,0,1,3,2,0,0,1,1,0,2,2,0,1,1,0,1,1,0,1,0,0,2,2,0,2,2,0,1,1,0,1,1,0,2,2,0,1,1,0,3,1,0,1,2,1,1,1,0,2,2,0,1,0,0,0,0,0,1,3,1,1,0,0,1,1,0,1,0,0,-,-,,1,1,0,-,-,,2,2,0,0,0,0,1,1,0,1,1,0,2,1,0,1,1,0,1,1,0,-,-,,0,0,0,1,1,0,2,1,0,2,1,0
16.10,Southampton,3,1,Burnley,,2,0,1,2,0,1,1,0,1,1,0,1,3,0,1,3,0,1,2,1,1,0,0,0,2,0,1,2,0,1,2,0,1,2,0,1,3,2,1,2,0,1,2,1,1,2,1,1,-,-,,2,2,0,3,0,1,3,0,1,1,1,0,1,0,1,0,0,0,4,1,1,3,1,3,2,0,1,2,0,1,2,0,1,2,0,1,0,0,0,2,0,1,2,1,1,2,0,1,-,-,,1,0,1,1,0,1,-,-,,1,0,1,2,0,1,2,0,1,3,2,1,1,0,1,2,0,1,2,0,1,1,0,1,3,1,3,2,0,1,2,1,1,2,1,1,2,0,1,1,0,1,1,0,1,2,0,1,2,0,1,3,1,3,2,0,1,2,1,1,2,1,1,2,0,1,2,0,1,2,0,1,-,-,,3,1,3,-,-,,1,0,1,2,0,1,4,0,1,2,1,1,2,1,1,2,0,1,2,0,1,-,-,,1,0,1,2,1,1,2,0,1,1,1,0
17.10,Liverpool,0,0,Man Utd,,3,0,0,2,0,0,0,1,0,1,1,1,3,0,0,2,0,0,2,1,0,3,4,0,3,1,0,3,1,0,3,1,0,2,2,1,1,1,1,2,0,0,2,2,1,2,1,0,-,-,,3,2,0,3,2,0,2,0,0,3,1,0,0,1,0,2,2,1,0,2,0,2,0,0,3,1,0,1,2,0,2,1,0,3,1,0,1,1,1,0,2,0,1,2,0,2,2,1,-,-,,1,1,1,2,1,0,-,-,,2,0,0,2,1,0,3,0,0,1,1,1,1,1,1,2,0,0,1,1,1,0,1,0,3,1,0,2,1,0,2,1,0,2,1,0,2,1,0,0,0,3,2,0,0,2,0,0,3,1,0,2,2,1,2,1,0,3,1,0,4,1,0,2,2,1,2,1,0,3,1,0,-,-,,2,2,1,-,-,,1,2,0,2,1,0,3,0,0,2,0,0,3,1,0,3,0,0,3,2,0,-,-,,3,1,0,2,1,0,4,1,0,2,2,1
Subtotal,,,,,,,,6,,,5,,,5,,,9,,,5,,,4,,,5,,,2,,,3,,,9,,,4,,,7,,,8,,,3,,,10,,,5,,,0,,,7,,,3,,,4,,,2,,,7,,,4,,,6,,,7,,,4,,,5,,,5,,,12,,,3,,,5,,,7,,,5,,,0,,,7,,,4,,,0,,,7,,,8,,,7,,,4,,,5,,,5,,,7,,,5,,,5,,,3,,,5,,,5,,,4,,,7,,,4,,,3,,,5,,,7,,,5,,,5,,,4,,,8,,,4,,,5,,,0,,,10,,,0,,,6,,,2,,,4,,,5,,,4,,,3,,,6,,,0,,,2,,,4,,,3,,,4
22.10,Bournemouth,0,0,Tottenham,,1,2,0,1,2,0,0,2,0,1,2,0,1,2,0,1,2,0,1,2,0,2,0,0,1,2,0,2,1,0,2,1,0,0,3,0,0,0,3,2,1,0,1,1,1,-,-,,-,-,,2,1,0,1,2,0,2,2,1,1,2,0,2,2,1,1,1,1,1,3,0,1,2,0,1,2,0,1,1,1,1,2,0,1,0,0,1,2,0,1,3,0,1,1,1,0,2,0,-,-,,2,1,0,1,2,0,-,-,,1,1,1,1,2,0,-,-,,1,1,1,1,2,0,2,1,0,1,2,0,1,1,1,0,2,0,1,2,0,1,2,0,1,2,0,1,1,1,1,2,0,1,2,0,0,2,0,1,1,1,2,2,1,2,1,0,1,1,1,1,0,0,1,1,1,1,2,0,1,2,0,1,2,0,1,1,1,-,-,,1,2,0,2,2,1,-,-,,1,2,0,-,-,,1,1,1,1,3,0,1,0,0,2,2,1,1,1,1,1,1,1,1,1,1
22.10,Arsenal,0,0,Middlesbrough,,4,0,0,2,0,0,2,0,0,2,0,0,4,0,0,2,0,0,2,0,0,2,0,0,2,0,0,4,0,0,3,0,0,3,1,0,3,0,0,3,0,0,3,0,0,-,-,,-,-,,3,0,0,2,0,0,3,0,0,2,0,0,3,0,0,4,0,0,3,0,0,2,0,0,3,0,0,2,1,0,3,0,0,4,0,0,2,0,0,3,0,0,3,1,0,3,0,0,-,-,,3,0,0,3,0,0,-,-,,3,0,0,3,0,0,-,-,,4,0,0,3,0,0,3,0,0,3,0,0,2,0,0,3,0,0,3,0,0,3,0,0,3,1,0,3,0,0,3,0,0,3,0,0,3,0,0,3,0,0,3,0,0,2,0,0,4,1,0,3,0,0,3,0,0,3,0,0,2,0,0,3,1,0,2,0,0,-,-,,3,1,0,2,0,0,3,0,0,4,0,0,-,-,,3,0,0,4,0,0,3,0,0,3,1,0,2,0,0,2,0,0,4,1,0
22.10,Burnley,2,1,Everton,,1,3,0,0,1,0,0,1,0,0,2,0,1,1,0,1,2,0,1,1,0,0,1,0,0,2,0,1,1,0,1,2,0,1,3,0,0,1,0,1,2,0,0,2,0,-,-,,-,-,,1,3,0,0,3,0,0,2,0,1,2,0,0,1,0,1,3,0,1,3,0,1,2,0,0,1,0,0,3,0,0,2,0,1,2,0,1,1,0,1,4,0,1,2,0,0,2,0,-,-,,1,2,0,2,0,1,-,-,,0,2,0,0,1,0,-,-,,1,2,0,0,1,0,1,3,0,0,2,0,0,1,0,1,1,0,0,1,0,0,1,0,1,2,0,1,2,0,1,1,0,1,2,0,0,2,0,1,1,0,1,3,0,1,2,0,1,3,0,0,3,0,0,2,0,1,1,0,0,2,0,1,2,0,0,2,0,-,-,,0,1,0,0,2,0,2,2,0,0,2,0,-,-,,0,2,0,0,4,0,2,1,3,1,2,0,1,1,0,0,2,0,1,2,0
22.10,Hull,0,2,Stoke,,0,2,3,0,0,0,0,1,1,0,2,3,0,2,3,1,1,0,1,1,0,1,2,1,0,1,1,0,2,3,0,3,1,1,2,1,2,3,1,0,1,1,1,3,1,-,-,,-,-,,1,1,0,0,0,0,1,1,0,0,1,1,0,0,0,1,1,0,1,1,0,2,0,0,1,1,0,0,3,1,0,1,1,0,1,1,0,0,0,2,1,0,1,2,1,1,2,1,-,-,,0,1,1,1,2,1,-,-,,1,1,0,1,3,1,-,-,,0,0,0,1,1,0,1,1,0,1,1,0,1,0,0,2,2,0,-,-,,1,1,0,1,1,0,0,1,1,2,2,0,1,3,1,1,1,0,0,0,0,1,2,1,0,1,1,1,0,0,1,1,0,1,3,1,0,1,1,1,1,0,0,1,1,0,1,1,-,-,,1,1,0,1,1,0,1,2,1,1,2,1,-,-,,1,2,1,2,1,0,0,0,0,1,1,0,1,1,0,1,2,1,0,0,0
22.10,Leicester,3,1,Crystal Palace,,1,2,0,1,1,0,1,1,0,1,0,1,2,2,0,1,1,0,1,0,1,4,0,1,2,1,1,2,1,1,2,0,1,2,1,1,1,1,0,2,0,1,1,1,0,-,-,,-,-,,2,1,1,1,1,0,2,1,1,1,1,0,2,1,1,1,0,1,0,1,0,2,2,0,2,1,1,1,1,0,1,0,1,1,1,0,2,1,1,1,1,0,2,1,1,2,2,0,-,-,,2,2,0,1,1,0,-,-,,1,1,0,2,2,0,-,-,,2,2,0,2,1,1,1,1,0,1,1,0,1,0,1,2,1,1,2,1,1,1,0,1,2,1,1,2,0,1,2,0,1,1,0,1,2,0,1,2,0,1,2,2,0,1,1,0,3,0,1,2,1,1,2,0,1,2,0,1,2,1,1,2,1,1,1,1,0,-,-,,2,0,1,1,0,1,3,1,3,2,1,1,-,-,,1,0,1,3,1,3,1,0,1,0,1,0,2,1,1,1,1,0,1,0,1
22.10,Swansea,0,0,Watford,,2,1,0,2,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,3,1,0,1,1,1,1,1,1,1,2,0,1,1,1,1,1,1,-,-,,-,-,,2,2,1,2,1,0,1,1,1,1,2,0,2,1,0,2,2,1,2,2,1,3,1,0,2,2,1,1,1,1,1,1,1,2,1,0,1,0,0,1,2,0,1,1,1,1,1,1,-,-,,1,1,1,2,1,0,-,-,,0,1,0,1,1,1,-,-,,1,0,0,2,2,1,2,1,0,2,2,1,1,0,0,1,1,1,0,0,3,2,1,0,2,1,0,0,1,0,2,1,0,2,0,0,1,1,1,1,1,1,2,2,1,0,1,0,1,0,0,1,3,0,0,0,3,1,2,0,2,1,0,2,0,0,0,1,0,-,-,,0,1,0,1,1,1,2,3,0,1,0,0,-,-,,2,0,0,5,2,0,1,0,0,1,1,1,1,1,1,2,1,0,1,2,0
22.10,West Ham,1,0,Sunderland,,2,0,1,2,0,1,1,0,3,2,0,1,2,0,1,2,1,1,2,1,1,3,2,1,2,0,1,3,0,1,2,0,1,2,0,1,0,0,0,2,0,1,3,0,1,-,-,,-,-,,3,0,1,2,0,1,2,0,1,1,0,3,1,1,0,1,0,3,2,1,1,0,0,0,2,0,1,2,0,1,2,0,1,2,0,1,2,2,0,2,1,1,2,0,1,2,0,1,-,-,,3,0,1,2,1,1,-,-,,2,0,1,2,0,1,-,-,,3,0,1,2,0,1,2,1,1,2,0,1,1,0,3,1,1,0,2,2,0,2,1,1,2,1,1,2,0,1,2,0,1,2,1,1,1,1,0,2,0,1,2,0,1,1,0,3,1,1,0,2,0,1,2,1,1,2,0,1,2,0,1,0,0,0,3,0,1,-,-,,1,1,0,2,1,1,0,1,0,2,1,1,-,-,,3,1,1,3,1,1,2,0,1,3,0,1,2,0,1,1,1,0,2,0,1
22.10,Liverpool,2,1,West Brom,,3,0,1,3,0,1,2,0,1,3,0,1,3,0,1,3,0,1,3,0,1,0,1,0,2,0,1,2,1,3,4,0,1,3,0,1,3,0,1,2,1,3,2,0,1,-,-,,-,-,,3,1,1,2,0,1,2,0,1,2,0,1,3,0,1,2,0,1,4,0,1,4,1,1,3,0,1,1,0,1,2,0,1,3,0,1,2,0,1,1,1,0,2,0,1,2,1,3,-,-,,2,0,1,2,0,1,-,-,,1,0,1,2,0,1,-,-,,2,0,1,2,1,3,2,0,1,2,0,1,0,0,0,3,0,1,3,1,1,2,0,1,4,1,1,3,0,1,4,0,1,3,1,1,2,0,1,4,0,1,2,2,0,2,0,1,1,2,0,1,1,0,1,0,1,3,0,1,3,0,1,1,0,1,3,1,1,-,-,,0,4,0,3,2,1,4,0,1,2,0,1,-,-,,2,0,1,2,1,3,2,0,1,4,0,1,3,1,1,3,2,1,3,0,1
23.10,Man City,1,1,Southampton,,3,1,0,2,0,0,2,1,0,3,0,0,2,1,0,3,0,0,2,0,0,5,0,0,3,0,0,1,2,0,3,1,0,2,0,0,2,1,0,2,0,0,3,1,0,-,-,,-,-,,4,0,0,3,0,0,3,1,0,2,0,0,2,1,0,3,1,0,2,1,0,2,0,0,3,1,0,2,0,0,3,1,0,2,0,0,3,1,0,2,1,0,2,0,0,3,0,0,-,-,,2,0,0,3,1,0,-,-,,2,0,0,2,1,0,-,-,,3,1,0,2,1,0,2,1,0,2,1,0,2,0,0,3,0,0,2,1,0,2,0,0,3,1,0,2,1,0,3,1,0,2,0,0,3,1,0,2,0,0,3,1,0,2,1,0,3,2,0,2,0,0,2,1,0,2,1,0,3,0,0,1,0,0,2,0,0,-,-,,4,1,0,2,1,0,2,0,0,2,0,0,-,-,,3,0,0,3,1,0,2,0,0,2,2,1,2,0,0,2,2,1,2,1,0
23.10,Chelsea,4,0,Man Utd,,2,1,1,2,2,0,1,0,1,1,1,0,2,1,1,1,1,0,1,1,0,2,0,1,2,2,0,0,0,0,2,1,1,1,1,0,2,2,0,1,1,0,2,0,1,-,-,,-,-,,2,1,1,3,1,1,1,1,0,1,2,0,1,1,0,0,0,0,1,1,0,1,1,0,1,1,0,0,0,0,1,0,1,1,1,0,1,1,0,2,2,0,1,2,0,2,2,0,-,-,,2,1,1,1,1,0,-,-,,1,0,1,1,1,0,-,-,,2,1,1,1,1,0,2,0,1,1,1,0,1,1,0,2,2,0,1,1,0,0,0,0,2,1,1,1,1,0,0,0,0,1,1,0,1,1,0,1,1,0,3,1,1,2,1,1,1,0,1,1,2,0,2,2,0,1,1,0,1,1,0,2,1,1,2,1,1,-,-,,0,0,0,2,1,1,1,1,0,0,0,0,-,-,,1,1,0,3,1,1,0,1,0,2,0,1,1,1,0,0,0,0,2,2,0
Subtotal,,,,,,,,6,,,2,,,6,,,7,,,7,,,3,,,4,,,5,,,5,,,8,,,6,,,5,,,5,,,7,,,6,,,0,,,0,,,5,,,3,,,5,,,5,,,3,,,7,,,3,,,1,,,4,,,5,,,6,,,3,,,2,,,1,,,6,,,6,,,0,,,5,,,4,,,0,,,4,,,4,,,0,,,4,,,6,,,3,,,3,,,5,,,3,,,5,,,3,,,4,,,5,,,3,,,4,,,3,,,5,,,5,,,6,,,3,,,2,,,8,,,4,,,3,,,4,,,5,,,0,,,1,,,6,,,5,,,4,,,0,,,5,,,8,,,6,,,6,,,5,,,4,,,4
29.10,Sunderland,1,4,Arsenal,,1,3,1,1,3,1,0,2,1,0,1,1,0,3,1,0,3,1,0,2,1,1,4,3,0,2,1,0,3,1,0,3,1,1,3,1,0,2,1,0,1,1,0,3,1,1,1,0,-,-,,1,3,1,1,3,1,0,2,1,0,3,1,1,3,1,1,0,0,0,3,1,1,1,0,1,3,1,0,2,1,0,2,1,0,2,1,0,3,1,1,2,1,1,1,0,0,3,1,-,-,,2,1,0,1,3,1,-,-,,0,3,1,0,3,1,1,3,1,1,3,1,0,2,1,1,3,1,1,2,1,0,1,1,0,3,1,1,2,1,0,2,1,0,3,1,0,1,1,0,3,1,-,-,,0,2,1,0,2,1,0,4,1,0,3,1,1,0,0,0,1,1,0,2,1,0,2,1,0,2,1,1,3,1,0,2,1,-,-,,-,-,,0,3,1,-,-,,0,3,1,-,-,,0,2,1,0,2,1,0,2,1,1,3,1,0,2,1,1,3,1,1,1,0
29.10,Man Utd,0,0,Burnley,,2,0,0,2,0,0,2,0,0,1,0,0,2,0,0,2,1,0,2,0,0,2,0,0,2,0,0,1,1,1,2,1,0,4,0,0,1,0,0,3,0,0,1,1,1,0,0,3,-,-,,2,0,0,2,0,0,2,0,0,2,0,0,1,1,1,2,0,0,3,0,0,3,0,0,3,1,0,2,0,0,2,0,0,3,1,0,2,0,0,2,1,0,3,1,0,3,0,0,-,-,,2,0,0,3,0,0,-,-,,2,0,0,2,0,0,3,0,0,2,0,0,2,1,0,2,0,0,2,0,0,1,0,0,1,0,0,2,0,0,2,0,0,2,0,0,2,0,0,2,1,0,-,-,,2,0,0,2,0,0,2,1,0,2,0,0,3,1,0,1,1,1,3,1,0,2,0,0,2,1,0,2,0,0,3,0,0,-,-,,-,-,,1,1,1,-,-,,2,1,0,2,0,0,2,1,0,3,0,0,2,0,0,2,0,0,1,0,0,3,1,0,3,1,0
29.10,Middlesbrough,2,0,Bournemouth,,2,1,1,2,2,0,0,0,0,1,0,1,1,1,0,1,1,0,1,1,0,1,2,0,1,1,0,1,2,0,1,2,0,2,1,1,1,1,0,1,1,0,1,2,0,0,3,0,-,-,,1,0,1,0,0,0,1,1,0,1,2,0,1,1,0,2,1,1,1,2,0,1,0,1,1,1,0,2,2,0,1,0,1,1,0,1,1,1,0,1,1,0,1,1,0,1,1,0,-,-,,1,1,0,1,2,0,-,-,,1,1,0,0,2,0,2,1,1,1,2,0,1,1,0,1,1,0,1,0,1,1,1,0,2,2,0,1,1,0,1,1,0,1,1,0,1,1,0,1,0,1,-,-,,1,1,0,1,1,0,1,2,0,2,1,1,2,0,3,0,0,0,1,1,0,0,1,0,1,1,0,1,1,0,1,1,0,-,-,,-,-,,1,2,0,-,-,,0,1,0,1,2,0,0,2,0,2,1,1,1,1,0,1,2,0,0,0,0,1,1,0,1,2,0
29.10,Tottenham,1,1,Leicester,,3,1,0,2,0,0,2,1,0,1,0,0,2,2,1,2,0,0,2,0,0,1,1,3,2,1,0,1,2,0,2,2,1,3,1,0,1,1,3,2,1,0,1,1,3,1,1,3,-,-,,2,1,0,1,0,0,2,1,0,2,1,0,2,0,0,1,0,0,2,1,0,3,2,0,2,1,0,1,1,3,2,1,0,2,2,1,3,1,0,2,1,0,2,0,0,4,1,0,-,-,,2,1,0,2,2,1,-,-,,2,1,0,2,1,0,2,0,0,2,2,1,2,2,1,3,0,0,1,1,3,1,0,0,2,1,0,2,1,0,2,1,0,2,1,0,2,0,0,2,1,0,-,-,,2,2,1,2,1,0,3,1,0,2,1,0,3,1,0,4,0,0,2,1,0,1,1,3,2,1,0,2,1,0,1,0,0,-,-,,-,-,,1,0,0,-,-,,2,1,0,1,1,3,3,1,0,2,0,0,2,0,0,2,0,0,2,0,0,2,0,0,2,2,1
29.10,Watford,1,0,Hull,,2,0,1,1,0,3,1,0,3,1,0,3,2,0,1,2,1,1,2,0,1,2,2,0,1,0,3,2,0,1,2,0,1,2,0,1,2,0,1,1,0,3,2,0,1,2,1,1,-,-,,2,0,1,3,0,1,3,1,1,2,0,1,2,0,1,2,0,1,2,0,1,2,2,0,2,0,1,3,0,1,2,0,1,3,1,1,2,2,0,3,1,1,2,0,1,2,0,1,-,-,,0,0,0,2,1,1,-,-,,2,0,1,2,0,1,2,0,1,3,0,1,2,1,1,2,1,1,1,0,3,1,0,3,3,1,1,2,1,1,2,1,1,3,1,1,2,0,1,3,0,1,-,-,,3,0,1,2,0,1,1,1,0,2,1,1,2,0,1,3,0,1,2,0,1,2,0,1,2,0,1,1,0,3,2,0,1,-,-,,-,-,,0,0,0,-,-,,2,0,1,2,2,0,2,0,1,2,1,1,1,0,3,1,0,3,1,0,3,3,1,1,2,0,1
29.10,West Brom,0,4,Man City,,1,2,1,1,3,1,0,2,1,0,1,1,0,4,3,1,3,1,0,1,1,1,1,0,0,2,1,1,3,1,1,2,1,1,2,1,0,3,1,0,2,1,0,2,1,0,1,1,-,-,,0,2,1,1,1,0,1,3,1,1,1,0,1,1,0,0,1,1,1,2,1,0,2,1,1,3,1,1,2,1,0,2,1,2,1,0,1,3,1,1,4,1,1,3,1,0,2,1,-,-,,1,3,1,1,3,1,-,-,,0,0,0,0,2,1,1,2,1,1,1,0,1,2,1,1,2,1,1,1,0,0,2,1,0,2,1,0,2,1,1,2,1,1,3,1,1,3,1,1,3,1,-,-,,0,3,1,0,2,1,1,3,1,1,3,1,1,2,1,0,2,1,0,3,1,0,2,1,1,2,1,1,2,1,1,3,1,-,-,,-,-,,0,3,1,-,-,,1,2,1,1,3,1,1,1,0,1,2,1,0,2,1,2,2,0,1,2,1,0,2,1,1,3,1
29.10,Crystal Palace,2,4,Liverpool,,1,3,1,2,3,1,1,0,0,1,1,0,2,3,1,2,2,0,1,2,1,0,0,0,1,2,1,1,2,1,1,3,1,2,2,0,1,2,1,0,1,1,0,0,0,0,3,1,-,-,,2,1,0,2,0,0,1,2,1,1,2,1,1,3,1,2,1,0,2,1,0,1,1,0,1,2,1,2,1,0,1,3,1,0,2,1,1,2,1,2,1,0,2,1,0,2,2,0,-,-,,2,1,0,1,3,1,-,-,,0,1,1,1,3,1,1,1,0,1,1,0,1,2,1,1,2,1,1,2,1,1,0,0,1,3,1,0,2,1,1,2,1,1,2,1,1,3,1,1,1,0,-,-,,2,0,0,1,3,1,2,2,0,0,3,1,2,1,0,2,0,0,2,2,0,1,3,1,0,2,1,1,3,1,2,2,0,-,-,,-,-,,1,1,0,-,-,,0,2,1,2,3,1,1,0,0,1,1,0,1,2,1,2,3,1,1,2,1,1,1,0,1,0,0
30.10,Everton,2,0,West Ham,,2,1,1,1,1,0,2,1,1,1,0,1,1,1,0,1,1,0,2,1,1,4,0,1,2,1,1,1,2,0,2,0,3,2,0,3,1,0,1,1,1,0,3,1,1,2,2,0,-,-,,2,0,3,1,0,1,2,1,1,2,0,3,2,0,3,5,0,1,2,0,3,1,1,0,1,1,0,3,2,1,2,0,3,2,0,3,1,1,0,3,1,1,3,1,1,3,1,1,-,-,,1,0,1,2,1,1,-,-,,1,0,1,2,1,1,2,1,1,3,1,1,2,1,1,2,0,3,3,1,1,1,0,1,1,2,0,3,2,1,2,1,1,2,1,1,2,0,3,2,0,3,-,-,,3,0,1,1,1,0,3,1,1,1,1,0,5,0,1,3,0,1,1,0,1,1,2,0,2,1,1,1,0,1,2,0,3,-,-,,-,-,,1,2,0,-,-,,2,1,1,2,1,1,2,1,1,1,1,0,2,0,3,1,1,0,1,1,0,3,0,1,1,2,0
30.10,Southampton,0,2,Chelsea,,1,2,1,2,2,0,0,1,1,0,1,1,1,0,0,1,0,0,1,2,1,2,1,0,1,1,0,2,2,0,1,1,0,1,2,1,2,2,0,2,2,0,0,2,3,2,1,0,-,-,,1,3,1,2,2,0,1,1,0,1,1,0,1,2,1,0,2,3,2,2,0,1,1,0,2,2,0,1,0,0,1,2,1,1,1,0,0,2,3,1,2,1,1,2,1,2,1,0,-,-,,1,2,1,0,2,3,-,-,,1,1,0,1,1,0,1,1,0,2,1,0,1,1,0,1,1,0,2,2,0,1,1,0,1,2,1,1,1,0,1,1,0,1,1,0,1,1,0,1,2,1,-,-,,1,2,1,1,2,1,1,3,1,1,2,1,3,2,0,0,1,1,2,1,0,1,2,1,2,1,0,1,2,1,0,1,1,-,-,,-,-,,2,3,1,-,-,,1,2,1,2,1,0,1,1,0,1,2,1,0,2,3,2,2,0,0,0,0,2,2,0,1,1,0
31.10,Stoke,3,1,Swansea,,2,1,1,1,1,0,1,0,1,2,0,1,1,1,0,1,0,1,2,1,1,1,2,0,0,0,0,2,2,0,2,2,0,2,2,0,0,0,0,2,1,1,3,0,1,2,1,1,-,-,,2,0,1,0,1,0,2,1,1,1,1,0,0,1,0,0,0,0,1,1,0,2,2,0,2,1,1,2,0,1,2,0,1,2,0,1,1,1,0,1,2,0,2,0,1,2,2,0,-,-,,1,0,1,1,1,0,-,-,,2,0,1,1,0,1,2,0,1,3,3,0,2,1,1,2,0,1,2,0,1,1,0,1,1,1,0,2,0,1,1,1,0,2,1,1,2,1,1,2,0,1,-,-,,1,1,0,0,0,0,2,1,1,1,0,1,2,1,1,5,5,0,1,1,0,1,0,1,0,0,0,2,2,0,2,1,1,-,-,,-,-,,1,0,1,-,-,,2,0,1,1,0,1,2,1,1,1,2,0,1,0,1,1,2,0,1,0,1,2,0,1,2,0,1
Subtotal,,,,,,,,8,,,6,,,8,,,9,,,7,,,4,,,7,,,7,,,7,,,5,,,8,,,8,,,8,,,7,,,12,,,10,,,0,,,9,,,3,,,6,,,6,,,8,,,7,,,6,,,2,,,5,,,8,,,10,,,9,,,6,,,5,,,5,,,4,,,0,,,4,,,9,,,0,,,5,,,6,,,6,,,4,,,7,,,8,,,11,,,7,,,5,,,6,,,5,,,6,,,8,,,9,,,0,,,6,,,5,,,5,,,7,,,7,,,6,,,4,,,9,,,5,,,8,,,8,,,0,,,0,,,5,,,0,,,7,,,7,,,4,,,5,,,13,,,5,,,7,,,5,,,4
05.11,Bournemouth,1,2,Sunderland,,3,1,0,2,0,0,1,0,0,1,0,0,2,0,0,2,0,0,2,1,0,2,1,0,2,0,0,3,0,0,2,1,0,2,2,0,2,0,0,1,0,0,2,0,0,1,0,0,-,-,,2,0,0,3,1,0,2,1,0,2,1,0,3,0,0,3,0,0,2,2,0,2,1,0,1,1,0,-,-,,1,0,0,2,0,0,2,1,0,3,0,0,2,1,0,2,0,0,-,-,,1,1,0,2,0,0,-,-,,3,0,0,2,0,0,2,0,0,2,1,0,1,1,0,2,0,0,3,1,0,2,0,0,1,1,0,2,2,0,2,1,0,2,1,0,2,0,0,2,0,0,3,1,0,2,0,0,2,1,0,2,1,0,2,1,0,2,1,0,2,0,0,1,0,0,1,1,0,2,0,0,2,0,0,2,0,0,-,-,,2,0,0,1,0,0,-,-,,2,1,0,2,0,0,3,0,0,2,1,0,0,0,0,3,1,0,2,0,0,1,2,3,2,2,0
05.11,Burnley,3,2,Crystal Palace,,2,1,1,1,1,0,0,0,0,1,0,1,1,2,0,1,1,0,1,1,0,1,0,1,1,1,0,2,1,1,1,0,1,1,2,0,0,0,0,2,1,1,1,1,0,1,0,1,-,-,,1,0,1,0,2,0,0,0,0,1,1,0,1,1,0,1,2,0,0,1,0,0,1,0,1,1,0,-,-,,1,0,1,1,2,0,1,0,1,2,2,0,2,0,1,1,1,0,-,-,,2,2,0,2,2,0,-,-,,1,1,0,0,1,0,2,2,0,3,3,0,2,1,1,2,0,1,1,1,0,1,1,0,2,2,0,1,0,1,1,1,0,1,1,0,1,0,1,2,1,1,0,2,0,1,2,0,2,1,1,2,2,0,1,1,0,1,1,0,1,1,0,1,1,0,1,1,0,1,0,1,1,0,1,1,1,0,-,-,,1,1,0,1,1,0,-,-,,1,0,1,1,3,0,1,0,1,0,2,0,1,0,1,1,1,0,1,0,1,1,1,0,1,0,1
05.11,Man City,1,1,Middlesbrough,,4,1,0,2,0,0,3,0,0,3,1,0,3,0,0,3,0,0,2,0,0,5,0,0,3,0,0,4,1,0,3,0,0,3,1,0,3,1,0,3,0,0,3,0,0,4,0,0,-,-,,3,0,0,3,0,0,3,1,0,4,0,0,4,1,0,4,1,0,4,0,0,2,0,0,2,0,0,-,-,,3,0,0,3,0,0,3,1,0,4,0,0,3,0,0,3,1,0,-,-,,3,0,0,4,1,0,-,-,,3,0,0,3,0,0,3,1,0,3,0,0,3,1,0,3,0,0,4,0,0,2,0,0,3,0,0,3,0,0,3,0,0,3,1,0,3,0,0,4,0,0,2,0,0,4,0,0,3,1,0,4,1,0,3,1,0,4,0,0,3,0,0,3,0,0,3,0,0,3,0,0,3,1,0,3,0,0,-,-,,3,0,0,3,0,0,-,-,,3,0,0,3,0,0,3,1,0,4,1,0,3,1,0,2,1,0,2,0,0,3,0,0,3,0,0
05.11,West Ham,1,1,Stoke,,2,2,1,2,0,0,1,0,0,2,1,0,1,2,0,1,1,3,2,1,0,1,0,0,2,1,0,2,1,0,2,1,0,2,0,0,1,2,0,1,0,0,1,1,3,2,2,1,-,-,,1,1,3,1,1,3,1,2,0,1,1,3,1,1,3,2,0,0,2,1,0,1,0,0,2,2,1,-,-,,1,0,0,1,1,3,2,2,1,2,1,0,2,2,1,2,0,0,-,-,,1,1,3,1,1,3,-,-,,1,1,3,1,2,0,1,1,3,1,1,3,1,1,3,1,2,0,1,1,3,0,0,1,1,1,3,2,1,0,1,1,3,1,1,3,1,1,3,1,1,3,1,1,3,1,1,3,2,0,0,2,2,1,1,0,0,2,0,0,2,0,0,1,1,3,1,1,3,1,1,3,1,1,3,2,1,0,-,-,,1,1,3,1,0,0,-,-,,1,1,3,1,1,3,2,1,0,3,1,0,1,0,0,2,0,0,2,2,1,1,1,3,1,2,0
05.11,Chelsea,5,0,Everton,,3,1,1,3,1,1,1,0,1,0,0,0,3,1,1,2,1,1,3,0,1,2,3,0,1,1,0,1,1,0,2,1,1,2,1,1,2,0,1,2,1,1,0,1,0,2,1,1,-,-,,1,1,0,0,1,0,2,0,1,0,1,0,2,2,0,1,2,0,1,2,0,2,1,1,2,1,1,-,-,,1,0,1,1,2,0,2,1,1,2,2,0,1,1,0,2,1,1,-,-,,1,1,0,1,1,0,-,-,,1,0,1,2,0,1,2,0,1,1,1,0,1,1,0,2,1,1,1,1,0,1,1,0,3,1,1,1,1,0,1,0,1,3,1,1,0,0,0,2,1,1,3,1,1,2,0,1,3,1,1,2,2,0,2,1,1,1,2,0,2,2,0,1,1,0,2,0,1,2,1,1,2,1,1,1,1,0,-,-,,1,2,0,1,1,0,-,-,,2,1,1,2,1,1,1,1,0,3,0,1,0,0,0,1,1,0,3,1,1,1,0,1,2,1,1
06.11,Arsenal,1,1,Tottenham,,2,1,0,2,2,1,2,1,0,1,0,0,2,1,0,2,1,0,2,1,0,2,0,0,2,1,0,3,1,0,2,1,0,2,2,1,1,1,3,1,1,3,2,1,0,2,1,0,-,-,,2,1,0,2,2,1,1,1,3,2,0,0,2,2,1,3,2,0,1,1,3,2,2,1,1,1,3,-,-,,2,1,0,2,1,0,1,1,3,2,1,0,1,1,3,2,2,1,-,-,,2,1,0,2,1,0,-,-,,1,1,3,2,1,0,1,1,3,3,1,0,2,1,0,1,1,3,2,1,0,0,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,0,0,1,0,0,1,1,3,0,0,1,2,2,1,2,2,1,2,2,1,1,2,0,2,1,0,2,1,0,2,2,1,2,2,1,2,1,0,-,-,,1,1,3,1,1,3,-,-,,1,1,3,2,1,0,1,1,3,1,2,0,1,1,3,2,0,0,0,0,1,2,0,0,3,0,0
06.11,Hull,2,1,Southampton,,1,2,0,1,3,0,0,1,0,0,1,0,0,2,0,0,2,0,1,1,0,1,3,0,0,1,0,0,2,0,0,3,0,1,2,0,1,3,0,0,2,0,0,0,0,0,1,0,-,-,,1,3,0,1,3,0,1,3,0,0,1,0,1,1,0,1,2,0,0,2,0,1,2,0,1,2,0,-,-,,0,1,0,0,2,0,1,2,0,1,2,0,1,2,0,0,2,0,-,-,,1,1,0,0,2,0,-,-,,1,2,0,0,3,0,1,1,0,0,2,0,1,0,1,0,0,0,0,2,0,0,1,0,1,2,0,1,1,0,1,2,0,1,2,0,0,1,0,0,1,0,1,3,0,0,2,0,0,2,0,1,2,0,0,1,0,1,3,0,0,2,0,0,3,0,0,1,0,0,1,0,1,1,0,0,2,0,-,-,,0,0,0,0,2,0,-,-,,0,2,0,0,3,0,1,2,0,0,4,0,1,0,1,0,1,0,0,0,0,0,1,0,1,2,0
06.11,Liverpool,6,1,Watford,,4,1,1,3,0,1,2,0,1,4,0,1,4,1,1,3,1,1,2,0,1,0,0,0,4,1,1,3,1,1,3,1,1,2,2,0,2,1,1,4,1,1,2,0,1,4,0,1,-,-,,5,0,1,3,0,1,2,1,1,3,2,1,3,1,1,2,0,1,2,0,1,3,1,1,3,0,1,-,-,,3,1,1,4,0,1,3,1,1,1,1,0,2,0,1,4,1,1,-,-,,2,0,1,2,2,0,-,-,,2,0,1,3,1,1,3,0,1,2,0,1,2,1,1,4,0,1,3,1,1,0,0,0,3,0,1,3,0,1,1,0,1,4,2,1,2,0,1,3,1,1,2,0,1,3,1,1,3,1,1,1,1,0,3,1,1,3,1,1,4,0,1,3,1,1,3,0,1,3,0,1,3,0,1,4,0,1,-,-,,0,4,0,4,0,1,-,-,,3,0,1,2,1,1,3,0,1,3,1,1,2,0,1,3,1,1,2,0,1,3,1,1,3,1,1
06.11,Swansea,1,3,Man Utd,,2,1,0,1,2,1,0,1,1,0,1,1,1,3,3,1,2,1,1,2,1,2,1,0,1,2,1,2,1,0,1,1,0,1,2,1,0,0,0,2,1,0,1,1,0,0,0,0,-,-,,1,2,1,0,3,1,0,1,1,0,1,1,1,0,0,1,1,0,1,2,1,0,1,1,1,1,0,-,-,,0,1,1,1,0,0,1,2,1,2,1,0,1,1,0,2,2,0,-,-,,1,2,1,0,2,1,-,-,,1,1,0,0,2,1,1,1,0,0,1,1,1,1,0,2,1,0,0,2,1,0,1,1,0,2,1,1,2,1,0,1,1,1,1,0,1,2,1,0,3,1,1,2,1,0,2,1,1,1,0,1,1,0,0,2,1,1,2,1,0,1,1,1,2,1,1,2,1,2,1,0,1,2,1,0,1,1,-,-,,1,1,0,0,2,1,-,-,,1,2,1,1,1,0,2,1,0,0,1,1,0,2,1,1,0,0,1,1,0,0,1,1,1,1,0
06.11,Leicester,1,2,West Brom,,2,0,0,2,0,0,1,0,0,1,0,0,2,0,0,1,1,0,2,0,0,2,0,0,2,0,0,3,1,0,2,0,0,3,0,0,2,0,0,2,1,0,3,1,0,3,0,0,-,-,,1,0,0,2,0,0,2,0,0,1,1,0,1,0,0,2,0,0,2,0,0,1,0,0,2,1,0,-,-,,1,0,0,2,0,0,2,1,0,2,1,0,2,1,0,2,0,0,-,-,,1,0,0,2,1,0,-,-,,1,1,0,2,1,0,2,0,0,2,2,0,2,0,0,2,1,0,2,0,0,1,0,0,1,1,0,1,0,0,1,0,0,2,1,0,2,0,0,3,1,0,1,0,0,2,0,0,2,0,0,2,1,0,0,0,0,1,1,0,0,0,0,2,0,0,2,1,0,2,1,0,2,0,0,2,0,0,-,-,,1,0,0,2,1,0,-,-,,2,0,0,2,1,0,2,0,0,2,1,0,1,0,0,3,0,0,2,0,0,2,0,0,1,0,0
Subtotal,,,,,,,,4,,,4,,,3,,,3,,,5,,,6,,,3,,,1,,,2,,,2,,,3,,,3,,,5,,,6,,,4,,,4,,,0,,,6,,,6,,,6,,,5,,,5,,,1,,,5,,,4,,,6,,,0,,,4,,,4,,,8,,,0,,,6,,,3,,,0,,,5,,,4,,,0,,,8,,,3,,,8,,,5,,,6,,,6,,,5,,,2,,,6,,,3,,,6,,,5,,,6,,,7,,,6,,,9,,,4,,,2,,,4,,,3,,,2,,,5,,,6,,,7,,,8,,,2,,,0,,,6,,,5,,,0,,,10,,,5,,,5,,,3,,,7,,,1,,,5,,,9,,,3
19.11,Man Utd,1,1,Arsenal,,1,2,0,0,1,0,1,0,0,1,1,3,1,2,0,1,2,0,1,1,3,2,0,0,2,1,0,1,3,0,1,3,0,2,2,1,0,2,0,0,2,0,1,1,3,0,2,0,-,-,,1,2,0,1,3,0,2,2,1,1,1,3,1,1,3,-,-,,1,1,3,1,1,3,2,1,0,1,2,0,1,0,0,2,1,0,2,2,1,1,3,0,1,1,3,1,2,0,-,-,,-,-,,2,2,1,-,-,,1,1,3,1,2,0,2,2,1,2,2,1,1,2,0,3,1,0,0,2,0,2,0,0,2,2,1,1,1,3,1,1,3,1,1,3,1,1,3,1,1,3,2,1,0,-,-,,1,1,3,2,1,0,1,2,0,-,-,,1,2,0,1,2,0,1,1,3,1,1,3,1,1,3,1,1,3,-,-,,-,-,,1,2,0,-,-,,1,2,0,1,3,0,1,2,0,2,1,0,3,1,0,1,2,0,1,1,3,1,1,3,2,2,1
19.11,Crystal Palace,1,2,Man City,,0,3,1,1,3,1,1,2,3,0,2,1,1,3,1,0,2,1,1,2,3,1,3,1,0,2,1,1,2,3,2,2,0,1,3,1,0,4,1,1,3,1,0,1,1,2,1,0,-,-,,0,4,1,0,3,1,1,2,3,1,3,1,1,1,0,-,-,,1,3,1,1,2,3,1,3,1,1,3,1,0,2,1,0,2,1,1,3,1,1,3,1,1,3,1,1,3,1,-,-,,-,-,,1,3,1,-,-,,0,2,1,0,3,1,1,2,3,0,2,1,1,3,1,1,2,3,0,2,1,1,2,3,1,4,1,1,3,1,1,2,3,1,3,1,0,2,1,1,3,1,0,3,1,-,-,,0,2,1,1,4,1,1,1,0,-,-,,0,3,1,0,3,1,1,3,1,1,2,3,1,2,3,1,3,1,-,-,,-,-,,0,2,1,-,-,,1,2,3,1,4,1,0,3,1,1,3,1,0,2,1,1,3,1,0,2,1,1,2,3,1,3,1
19.11,Everton,1,1,Swansea,,3,1,0,1,1,3,2,0,0,2,0,0,2,1,0,2,1,0,2,0,0,2,0,0,2,0,0,2,0,0,3,0,0,3,0,0,3,0,0,1,0,0,2,0,0,0,1,0,-,-,,3,0,0,3,0,0,2,0,0,2,0,0,3,0,0,-,-,,3,0,0,3,1,0,3,0,0,2,0,0,3,1,0,2,0,0,2,1,0,3,0,0,3,1,0,3,0,0,-,-,,-,-,,2,0,0,-,-,,2,1,0,2,0,0,2,0,0,3,0,0,2,1,0,2,0,0,3,0,0,1,0,0,1,3,0,2,0,0,2,1,0,2,0,0,2,0,0,2,0,0,1,0,0,-,-,,1,1,3,3,0,0,1,0,0,-,-,,3,0,0,3,0,0,1,0,0,2,0,0,2,0,0,2,0,0,-,-,,-,-,,2,0,0,-,-,,2,0,0,3,1,0,2,1,0,2,2,1,2,0,0,2,0,0,1,0,0,3,0,0,2,1,0
19.11,Southampton,0,0,Liverpool,,1,3,0,0,1,0,0,2,0,0,2,0,1,3,0,2,2,1,1,3,0,2,0,0,1,3,0,1,3,0,2,1,0,2,2,1,1,3,0,1,2,0,0,2,0,0,5,0,-,-,,2,1,0,2,3,0,1,2,0,1,3,0,2,1,0,-,-,,1,1,1,2,1,0,2,2,1,1,1,1,1,2,0,1,3,0,0,2,0,1,1,1,1,1,1,2,2,1,-,-,,-,-,,0,3,0,-,-,,0,2,0,1,3,0,2,1,0,1,1,1,1,2,0,1,2,0,1,2,0,1,2,0,0,3,0,2,2,1,2,2,1,1,3,0,1,3,0,1,3,0,2,3,0,-,-,,1,3,0,2,1,0,1,0,0,-,-,,3,2,0,2,1,0,2,3,0,1,3,0,1,1,1,1,1,1,-,-,,-,-,,2,2,1,-,-,,1,2,0,2,3,0,1,3,0,3,2,0,0,1,0,2,3,0,1,2,0,2,2,1,1,4,0
19.11,Stoke,0,1,Bournemouth,,2,1,0,1,0,0,1,0,0,2,1,0,2,1,0,1,1,0,1,0,0,1,1,0,1,1,0,2,0,0,1,2,1,2,0,0,1,1,0,2,0,0,2,1,0,3,0,0,-,-,,2,0,0,2,0,0,1,1,0,2,1,0,1,0,0,-,-,,2,0,0,2,0,0,1,0,0,2,1,0,2,1,0,2,1,0,2,2,0,2,1,0,2,1,0,1,1,0,-,-,,-,-,,2,1,0,-,-,,1,0,0,1,0,0,2,0,0,0,2,1,2,2,0,2,1,0,1,1,0,1,0,0,1,1,0,1,0,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,-,-,,1,1,0,2,1,0,1,1,0,-,-,,0,1,3,1,1,0,2,0,0,2,1,0,1,0,0,2,0,0,-,-,,-,-,,1,1,0,-,-,,2,1,0,2,1,0,1,1,0,2,1,0,2,1,0,1,0,0,1,0,0,2,0,0,2,2,0
19.11,Sunderland,3,0,Hull,,2,1,1,2,0,1,1,0,1,2,1,1,1,0,1,1,0,1,2,1,1,2,1,1,1,0,1,0,0,0,2,0,1,2,1,1,1,2,0,2,1,1,1,0,1,3,0,3,-,-,,2,1,1,2,0,1,2,1,1,1,0,1,1,1,0,-,-,,1,1,0,2,0,1,2,1,1,2,0,1,1,0,1,1,0,1,0,1,0,-,-,,2,1,1,1,0,1,-,-,,-,-,,1,0,1,-,-,,1,1,0,1,1,0,2,0,1,2,1,1,2,0,1,2,0,1,1,1,0,0,0,0,1,0,1,2,1,1,2,1,1,1,0,1,0,1,0,2,1,1,1,1,0,-,-,,2,0,1,1,1,0,1,0,1,-,-,,1,0,1,2,1,1,2,1,1,1,0,1,2,1,1,1,0,1,-,-,,-,-,,1,0,1,-,-,,2,0,1,2,1,1,2,0,1,1,0,1,1,0,1,1,0,1,1,0,1,1,0,1,2,0,1
19.11,Watford,2,1,Leicester,,1,1,0,1,2,0,1,1,0,1,0,1,1,2,0,2,2,0,1,1,0,1,3,0,1,1,0,2,1,3,1,1,0,2,2,0,2,2,0,1,2,0,2,0,1,0,0,0,-,-,,1,1,0,2,2,0,0,1,0,1,1,0,1,2,0,-,-,,1,2,0,2,2,0,2,2,0,1,1,0,2,1,3,1,2,0,1,2,0,2,2,0,1,1,0,1,1,0,-,-,,-,-,,1,3,0,-,-,,1,1,0,1,1,0,1,1,0,0,0,0,2,3,0,2,1,3,2,1,3,0,1,0,1,1,0,0,0,0,2,1,3,1,1,0,0,1,0,2,1,3,2,1,3,-,-,,1,2,0,1,2,0,0,1,0,-,-,,1,1,0,0,1,0,0,1,0,1,1,0,1,2,0,1,1,0,-,-,,-,-,,1,2,0,-,-,,1,1,0,0,2,0,0,1,0,1,2,0,1,1,0,1,2,0,1,1,0,2,2,0,2,0,1
19.11,Tottenham,3,2,West Ham,,2,0,1,3,1,1,2,0,1,3,1,1,2,0,1,3,1,1,2,1,1,1,1,0,2,0,1,1,0,1,3,0,1,3,0,1,3,0,1,2,0,1,2,2,0,2,2,0,-,-,,3,1,1,4,0,1,2,1,1,2,0,1,1,1,0,-,-,,2,0,1,2,1,1,2,0,1,2,0,1,1,0,1,3,1,1,3,1,1,2,0,1,2,0,1,3,1,1,-,-,,-,-,,1,1,0,-,-,,2,0,1,2,1,1,3,1,1,3,0,1,1,1,0,3,0,1,2,0,1,2,0,1,3,1,1,2,1,1,2,0,1,3,1,1,2,0,1,3,0,1,2,0,1,-,-,,2,0,1,2,2,0,2,1,1,-,-,,3,0,1,2,1,1,2,0,1,2,1,1,1,0,1,3,1,1,-,-,,-,-,,2,0,1,-,-,,2,0,1,2,0,1,2,0,1,3,1,1,2,0,1,2,0,1,2,0,1,2,1,1,3,1,1
20.11,Middlesbrough,0,1,Chelsea,,0,4,1,0,2,1,0,3,1,0,1,3,1,4,1,1,3,1,0,2,1,3,0,0,0,2,1,0,2,1,0,3,1,0,3,1,0,2,1,0,4,1,0,3,1,0,2,1,-,-,,0,3,1,0,3,1,0,2,1,1,2,1,1,3,1,-,-,,0,4,1,0,2,1,1,2,1,0,1,3,0,2,1,0,3,1,1,4,1,0,4,1,1,2,1,0,2,1,-,-,,-,-,,0,3,1,-,-,,0,3,1,0,3,1,1,2,1,0,3,1,0,2,1,1,3,1,1,2,1,0,2,1,0,2,1,0,2,1,0,2,1,1,3,1,1,2,1,0,2,1,0,2,1,-,-,,0,2,1,1,4,1,0,2,1,-,-,,0,2,1,0,3,1,0,3,1,0,2,1,1,1,0,0,2,1,-,-,,-,-,,0,4,1,-,-,,0,3,1,0,5,1,1,2,1,0,2,1,0,3,1,1,4,1,0,1,3,0,2,1,1,5,1
21.11,West Brom,4,0,Burnley,,2,1,1,1,1,0,1,0,1,1,0,1,2,0,1,1,1,0,2,1,1,0,0,0,1,2,0,1,0,1,1,1,0,2,1,1,0,0,0,1,1,0,0,0,0,1,0,1,-,-,,1,1,0,3,1,1,1,0,1,2,1,1,0,0,0,-,-,,2,1,1,1,1,0,1,0,1,2,0,1,2,0,1,2,1,1,1,1,0,2,2,0,2,1,1,2,1,1,-,-,,-,-,,1,0,1,-,-,,1,0,1,0,1,0,2,0,1,3,3,0,2,1,1,1,1,0,1,1,0,1,0,1,2,0,1,0,0,0,1,1,0,2,1,1,2,1,1,1,1,0,0,0,0,-,-,,1,1,0,2,1,1,1,0,1,-,-,,0,0,0,1,2,0,1,0,1,1,1,0,1,0,1,2,1,1,-,-,,-,-,,0,0,0,-,-,,0,0,0,2,2,0,1,1,0,2,0,1,1,0,1,1,1,0,1,1,0,1,1,0,2,2,0
Subtotal,,,,,,,,5,,,7,,,7,,,11,,,5,,,5,,,10,,,2,,,4,,,9,,,4,,,7,,,3,,,4,,,7,,,5,,,0,,,4,,,5,,,8,,,8,,,4,,,0,,,8,,,9,,,6,,,8,,,8,,,5,,,4,,,4,,,9,,,6,,,0,,,0,,,5,,,0,,,7,,,3,,,8,,,7,,,4,,,9,,,6,,,6,,,6,,,8,,,13,,,8,,,7,,,10,,,6,,,0,,,10,,,3,,,4,,,0,,,7,,,4,,,8,,,9,,,10,,,9,,,0,,,0,,,5,,,0,,,6,,,4,,,4,,,6,,,5,,,4,,,9,,,10,,,6
26.11,Burnley,1,2,Man City,,-,-,,0,2,1,0,3,1,0,2,1,1,4,1,0,3,1,1,3,1,1,3,1,0,2,1,1,0,0,1,2,3,0,4,1,0,2,1,1,2,3,0,3,1,0,4,1,-,-,,0,3,1,0,2,1,1,2,3,0,3,1,1,2,3,-,-,,0,4,1,1,3,1,0,2,1,0,2,1,0,2,1,0,3,1,0,3,1,0,3,1,1,3,1,0,3,1,-,-,,-,-,,0,3,1,-,-,,0,2,1,0,2,1,-,-,,1,3,1,0,3,1,1,3,1,1,1,0,0,2,1,0,3,1,1,2,3,1,2,3,1,3,1,0,4,1,0,4,1,0,3,1,-,-,,0,2,1,0,3,1,0,1,1,1,3,1,0,3,1,0,2,1,0,3,1,0,2,1,1,3,1,0,2,1,-,-,,-,-,,0,3,1,-,-,,0,2,1,0,3,1,0,2,1,0,2,1,0,2,1,1,3,1,0,2,1,1,4,1,1,2,3
26.11,Hull,1,1,West Brom,,-,-,,2,2,1,1,0,0,0,1,0,0,2,0,1,1,3,1,1,3,0,2,0,0,1,0,1,2,0,1,1,3,1,2,0,0,1,0,0,2,0,0,2,0,0,2,0,-,-,,1,1,3,0,1,0,1,1,3,0,2,0,1,1,3,-,-,,1,2,0,1,1,3,1,1,3,0,2,0,0,1,0,1,2,0,1,2,0,2,2,1,1,2,0,1,2,0,-,-,,-,-,,1,2,0,-,-,,0,2,0,0,2,0,-,-,,2,2,1,1,2,0,1,1,3,0,1,0,0,1,0,1,2,0,1,1,3,1,1,3,1,1,3,0,1,0,1,2,0,1,1,3,-,-,,1,1,3,1,3,0,0,1,0,0,1,0,0,0,1,0,2,0,1,1,3,0,1,0,1,1,3,1,1,3,-,-,,-,-,,1,1,3,-,-,,0,2,0,1,2,0,1,2,0,1,1,3,1,0,0,1,0,0,0,2,0,0,2,0,0,2,0
26.11,Leicester,2,2,Middlesbrough,,-,-,,2,0,0,1,0,0,1,0,0,2,0,0,2,0,0,1,0,0,1,0,0,2,1,0,2,0,0,2,0,0,2,0,0,2,2,3,2,1,0,1,0,0,1,1,1,-,-,,2,0,0,2,1,0,2,1,0,2,1,0,2,0,0,-,-,,2,0,0,2,1,0,1,1,1,1,1,1,2,0,0,3,1,0,2,1,0,1,2,0,1,1,1,2,0,0,-,-,,-,-,,2,1,0,-,-,,1,1,1,1,1,1,-,-,,1,1,1,2,0,0,2,1,0,1,1,1,2,0,0,1,1,1,0,0,1,2,1,0,2,1,0,2,0,0,2,1,0,1,2,0,-,-,,1,1,1,2,1,0,2,1,0,3,0,0,1,1,1,1,0,0,2,0,0,2,1,0,2,1,0,2,0,0,-,-,,-,-,,1,1,1,-,-,,2,1,0,1,1,1,2,1,0,2,1,0,2,0,0,2,2,3,1,1,1,2,1,0,1,1,1
26.11,Liverpool,2,0,Sunderland,,-,-,,2,0,3,3,0,1,4,0,1,4,0,1,5,0,1,3,0,1,0,1,0,3,0,1,3,1,1,3,0,1,5,0,1,5,0,1,3,0,1,3,1,1,3,1,1,-,-,,2,1,1,4,0,1,3,1,1,4,0,1,5,1,1,-,-,,4,1,1,3,0,1,4,1,1,5,0,1,3,1,1,4,0,1,3,0,1,2,1,1,3,1,1,4,1,1,-,-,,-,-,,2,0,3,-,-,,3,0,1,2,0,3,-,-,,2,0,3,2,0,3,3,0,1,2,1,1,4,0,1,4,0,1,3,0,1,2,1,1,4,0,1,4,0,1,3,0,1,4,1,1,-,-,,3,0,1,1,1,0,3,0,1,6,1,1,4,1,1,2,0,3,3,0,1,3,0,1,2,0,3,4,1,1,-,-,,-,-,,2,2,0,-,-,,3,0,1,4,0,1,5,0,1,4,1,1,2,0,3,3,0,1,3,1,1,4,2,1,3,2,1
26.11,Swansea,5,4,Crystal Palace,,-,-,,1,1,0,0,1,0,1,1,0,1,1,0,2,1,1,1,2,0,1,0,1,1,1,0,2,1,1,1,1,0,2,2,0,0,0,0,0,0,0,0,0,0,2,1,1,-,-,,1,1,0,1,0,1,2,1,1,1,1,0,1,0,1,-,-,,2,1,1,2,0,1,2,1,1,1,1,0,1,0,1,2,0,1,1,1,0,2,1,1,1,1,0,1,1,0,-,-,,-,-,,1,1,0,-,-,,1,1,0,0,0,0,-,-,,0,0,0,1,0,1,2,0,1,1,0,1,1,0,1,1,1,0,1,0,1,2,1,1,1,1,0,1,1,0,1,1,0,0,2,0,-,-,,1,1,0,1,2,0,1,1,0,1,0,1,0,0,0,1,2,0,1,1,0,1,1,0,1,0,1,1,1,0,-,-,,-,-,,1,0,1,-,-,,2,1,1,2,1,1,1,1,0,1,1,0,1,0,1,1,0,1,1,1,0,1,1,0,2,2,0
26.11,Chelsea,2,1,Tottenham,,-,-,,2,2,0,2,1,3,2,1,3,3,1,1,2,1,3,2,1,3,4,0,1,2,2,0,2,1,3,2,0,1,2,0,1,2,1,3,2,0,1,3,2,1,2,1,3,-,-,,3,0,1,3,2,1,2,1,3,2,1,3,2,0,1,-,-,,2,0,1,1,2,0,2,1,3,2,1,3,2,0,1,2,0,1,2,1,3,2,1,3,1,1,0,2,0,1,-,-,,-,-,,2,1,3,-,-,,1,0,1,2,1,3,-,-,,4,1,1,2,1,3,1,1,0,3,0,1,1,1,0,2,1,3,2,0,1,1,0,1,3,1,1,3,1,1,3,1,1,1,1,0,-,-,,2,1,3,2,2,0,3,2,1,3,1,1,3,0,1,3,1,1,2,1,3,2,1,3,3,2,1,2,0,1,-,-,,-,-,,2,2,0,-,-,,2,1,3,3,1,1,2,2,0,0,0,0,2,1,3,2,1,3,2,0,1,2,1,3,3,1,1
27.11,Watford,0,1,Stoke,,-,-,,2,0,0,1,0,0,0,1,3,2,2,0,2,1,0,1,1,0,2,2,0,1,1,0,3,1,0,1,2,1,2,1,0,2,1,0,1,0,0,2,2,0,0,3,1,-,-,,2,1,0,2,0,0,2,1,0,1,1,0,2,0,0,-,-,,2,0,0,0,0,0,2,2,0,2,0,0,1,0,0,1,1,0,1,0,0,2,0,0,1,1,0,2,1,0,-,-,,-,-,,2,0,0,-,-,,2,0,0,1,1,0,-,-,,2,1,0,2,2,0,1,1,0,2,1,0,1,0,0,1,1,0,2,0,0,2,1,0,1,2,1,2,2,0,1,1,0,0,1,3,-,-,,2,0,0,1,1,0,2,1,0,2,0,0,2,0,0,0,1,3,1,2,1,2,1,0,1,1,0,1,1,0,-,-,,-,-,,1,0,0,-,-,,2,1,0,1,1,0,3,1,0,0,1,3,1,0,0,0,2,1,1,0,0,1,1,0,1,3,1
27.11,Arsenal,3,1,Bournemouth,,-,-,,3,1,3,2,0,1,3,0,1,3,1,3,3,1,3,2,1,1,1,1,0,2,0,1,4,0,1,3,0,1,4,1,1,3,1,3,2,1,1,2,0,1,4,0,1,-,-,,3,1,3,3,1,3,3,0,1,3,0,1,1,1,0,-,-,,2,0,1,3,1,3,3,0,1,4,1,1,2,0,1,3,0,1,3,1,3,2,0,1,3,1,3,3,0,1,-,-,,-,-,,2,0,1,-,-,,2,0,1,2,0,1,-,-,,3,0,1,1,0,1,2,0,1,3,0,1,2,0,1,3,1,3,2,1,1,3,0,1,3,1,3,2,1,1,3,0,1,3,1,3,-,-,,2,1,1,3,1,3,3,1,3,3,0,1,2,1,1,2,0,1,2,0,1,2,0,1,3,0,1,3,0,1,-,-,,-,-,,2,0,1,-,-,,2,0,1,2,0,1,2,0,1,3,0,1,2,0,1,3,0,1,1,0,1,2,0,1,2,0,1
27.11,Man Utd,1,1,West Ham,,-,-,,1,1,3,2,0,0,1,0,0,2,0,0,2,1,0,2,1,0,2,0,0,2,0,0,2,2,1,1,2,0,3,0,0,2,0,0,1,1,3,3,1,0,3,0,0,-,-,,3,1,0,2,0,0,2,1,0,1,1,3,1,1,3,-,-,,1,2,0,2,0,0,2,0,0,1,0,0,1,0,0,2,0,0,2,1,0,2,1,0,2,0,0,2,0,0,-,-,,-,-,,3,1,0,-,-,,2,1,0,2,0,0,-,-,,2,0,0,1,1,3,2,0,0,1,0,0,2,0,0,3,1,0,2,0,0,2,1,0,2,1,0,2,1,0,2,0,0,2,0,0,-,-,,2,1,0,1,1,3,0,0,1,2,2,1,3,1,0,2,1,0,1,0,0,1,1,3,2,1,0,2,0,0,-,-,,-,-,,3,0,0,-,-,,2,1,0,2,1,0,2,1,0,1,2,0,1,2,0,3,1,0,2,1,0,3,0,0,4,0,0
27.11,Southampton,1,0,Everton,,-,-,,2,0,1,0,1,0,1,1,0,1,1,0,2,0,1,2,1,1,1,3,0,2,2,0,2,1,1,1,1,0,2,2,0,1,1,0,1,1,0,1,3,0,3,0,1,-,-,,2,2,0,0,0,0,2,2,0,1,1,0,2,0,1,-,-,,1,2,0,2,1,1,1,1,0,0,1,0,1,0,3,0,1,0,2,2,0,1,2,0,1,2,0,2,2,0,-,-,,-,-,,1,1,0,-,-,,1,1,0,2,0,1,-,-,,2,1,1,1,2,0,2,0,1,0,1,0,0,0,0,3,0,1,1,1,0,2,1,1,2,1,1,2,0,1,1,2,0,1,2,0,-,-,,2,1,1,1,2,0,2,1,1,1,3,0,3,0,1,1,3,0,2,0,1,2,1,1,1,2,0,1,2,0,-,-,,-,-,,1,2,0,-,-,,2,1,1,3,1,1,3,0,1,1,0,3,2,1,1,2,0,1,1,0,3,1,1,0,2,0,1
Subtotal,,,,,,,,0,,,12,,,6,,,9,,,6,,,13,,,10,,,3,,,3,,,8,,,10,,,4,,,11,,,9,,,4,,,10,,,0,,,9,,,7,,,12,,,9,,,13,,,0,,,5,,,10,,,11,,,7,,,8,,,5,,,8,,,8,,,6,,,4,,,0,,,0,,,8,,,0,,,5,,,10,,,0,,,9,,,12,,,8,,,5,,,4,,,10,,,11,,,11,,,11,,,5,,,4,,,11,,,0,,,11,,,7,,,8,,,6,,,7,,,9,,,11,,,10,,,10,,,7,,,0,,,0,,,7,,,0,,,8,,,7,,,4,,,12,,,10,,,12,,,8,,,6,,,9
03.12,Man City,1,3,Chelsea,,2,2,0,2,2,0,1,0,0,1,0,0,2,2,0,1,1,0,2,1,0,2,2,0,2,2,0,2,1,0,1,2,1,2,2,0,1,2,1,1,2,1,1,1,0,2,0,0,-,-,,1,1,0,0,2,1,1,2,1,2,2,0,1,1,0,-,-,,1,2,1,2,1,0,2,1,0,1,1,0,2,1,0,2,2,0,2,1,0,0,2,1,3,1,0,2,2,0,-,-,,-,-,,2,2,0,-,-,,-,-,,1,2,1,2,1,0,1,2,1,1,1,0,1,1,0,2,1,0,0,0,0,1,1,0,2,2,0,1,1,0,1,1,0,1,1,0,1,1,0,1,3,3,-,-,,2,1,0,2,2,0,1,2,1,2,2,0,2,1,0,2,1,0,1,1,0,1,1,0,2,1,0,1,1,0,-,-,,-,-,,2,1,0,-,-,,0,0,0,2,2,0,1,1,0,0,1,1,1,0,0,2,1,0,1,2,1,1,2,1,1,2,1
03.12,Crystal Palace,3,0,Southampton,,1,2,0,1,2,0,0,1,0,0,1,0,1,2,0,2,1,1,1,1,0,1,3,0,1,2,0,1,2,0,0,2,0,1,1,0,2,2,0,2,2,0,2,1,1,0,1,0,-,-,,1,1,0,0,2,0,1,2,0,1,1,0,0,0,0,-,-,,2,1,1,1,1,0,1,1,0,0,2,0,1,0,1,2,1,1,1,1,0,1,1,0,1,2,0,1,2,0,-,-,,-,-,,1,1,0,-,-,,-,-,,1,2,0,2,1,1,0,1,0,1,2,0,2,3,0,1,1,0,0,0,0,1,2,0,1,2,0,1,2,0,1,1,0,1,2,0,0,0,0,1,2,0,-,-,,0,2,0,1,1,0,0,3,0,1,0,1,0,1,0,1,0,1,0,1,0,1,1,0,0,1,0,1,2,0,-,-,,-,-,,1,2,0,-,-,,1,2,0,1,2,0,1,2,0,1,0,1,1,0,1,1,1,0,0,1,0,1,1,0,1,3,0
03.12,Stoke,2,0,Burnley,,2,0,3,2,0,3,1,0,1,2,0,3,2,0,3,1,0,1,2,1,1,1,1,0,1,0,1,2,0,3,2,2,0,2,1,1,1,1,0,1,0,1,0,0,0,1,0,1,-,-,,2,0,3,1,1,0,2,1,1,1,2,0,0,1,0,-,-,,2,0,3,3,1,1,2,0,3,1,0,1,2,0,3,2,0,3,2,2,0,2,1,1,1,1,0,2,0,3,-,-,,-,-,,1,0,1,-,-,,-,-,,1,1,0,3,1,1,2,2,0,2,0,3,2,0,3,2,2,0,0,0,0,1,0,1,2,0,3,2,1,1,3,1,1,2,0,3,2,0,3,1,1,0,-,-,,1,1,0,1,1,0,0,0,0,2,2,0,0,0,0,1,1,0,2,0,3,2,1,1,1,0,1,0,0,0,-,-,,-,-,,1,1,0,-,-,,2,1,1,1,1,0,3,1,1,0,0,0,1,0,1,0,0,0,2,0,3,1,0,1,3,1,1
03.12,Sunderland,2,1,Leicester,,1,2,0,1,1,0,0,0,0,1,0,1,0,2,0,1,1,0,1,1,0,1,1,0,2,1,3,1,2,0,1,1,0,1,2,0,0,2,0,1,1,0,1,1,0,1,3,0,-,-,,2,1,3,1,0,1,1,1,0,1,2,0,1,1,0,-,-,,1,1,0,1,2,0,1,0,1,1,1,0,1,0,1,2,1,3,0,2,0,2,1,3,2,1,3,1,1,0,-,-,,-,-,,2,1,3,-,-,,-,-,,1,1,0,2,1,3,1,1,0,2,1,3,2,1,3,1,0,1,1,0,1,1,1,0,2,1,3,2,1,3,1,0,1,0,1,0,1,1,0,0,2,0,-,-,,1,1,0,1,2,0,1,1,0,1,0,1,0,1,0,2,1,3,1,1,0,1,1,0,1,1,0,2,1,3,-,-,,-,-,,0,1,0,-,-,,1,1,0,2,1,3,1,0,1,1,1,0,0,1,0,1,0,1,2,1,3,0,0,0,2,2,0
03.12,Tottenham,5,0,Swansea,,2,0,1,2,0,1,2,0,1,2,1,1,2,1,1,3,0,1,2,1,1,2,0,1,3,0,1,3,1,1,3,0,1,2,0,1,2,1,1,2,0,1,2,0,1,2,0,1,-,-,,2,0,1,3,1,1,3,1,1,3,0,1,3,1,1,-,-,,3,1,1,3,1,1,2,0,1,3,2,1,2,0,1,3,0,1,3,1,1,3,1,1,2,0,1,3,0,1,-,-,,-,-,,2,0,1,-,-,,-,-,,2,0,1,2,0,1,3,1,1,2,0,1,2,0,1,3,0,1,1,1,0,2,0,1,3,1,1,2,1,1,2,1,1,3,1,1,3,1,1,3,1,1,-,-,,3,1,1,3,2,1,2,1,1,3,1,1,3,0,1,2,0,1,3,0,1,2,0,1,2,0,1,3,0,1,-,-,,-,-,,3,0,1,-,-,,3,0,1,2,0,1,3,1,1,3,0,1,3,1,1,3,0,1,1,0,1,3,1,1,1,1,0
03.12,West Brom,3,1,Watford,,1,0,1,1,1,0,1,0,1,1,0,1,1,2,0,1,1,0,2,1,1,0,0,0,1,1,0,2,2,0,1,1,0,1,2,0,1,0,1,2,1,1,2,1,1,1,0,1,-,-,,3,0,1,1,0,1,1,0,1,2,2,0,1,1,0,-,-,,2,0,1,1,0,1,2,1,1,1,1,0,1,0,1,2,0,1,1,2,0,2,2,0,2,0,1,2,0,1,-,-,,-,-,,1,1,0,-,-,,-,-,,1,1,0,1,1,0,2,0,1,2,2,0,2,0,1,1,0,1,2,1,1,1,1,0,2,0,1,2,1,1,2,1,1,0,0,0,2,0,1,0,1,0,-,-,,1,1,0,1,1,0,1,1,0,2,0,1,0,1,0,1,1,0,1,0,1,2,0,1,1,2,0,0,2,0,-,-,,-,-,,0,0,0,-,-,,1,1,0,2,0,1,3,0,1,2,1,1,0,0,0,2,0,1,2,0,1,2,2,0,2,0,1
03.12,West Ham,1,5,Arsenal,,1,3,1,2,3,1,0,2,1,0,1,1,0,3,1,0,3,1,1,2,1,1,0,0,0,2,1,1,1,0,0,2,1,1,3,1,1,3,1,1,2,1,0,2,1,2,4,1,-,-,,1,2,1,1,3,1,1,3,1,0,3,1,1,2,1,-,-,,1,2,1,1,1,0,1,2,1,1,2,1,1,2,1,1,3,1,1,3,1,0,3,1,2,2,0,1,3,1,-,-,,-,-,,0,2,1,-,-,,-,-,,1,2,1,1,1,0,0,0,0,1,3,1,0,1,1,0,2,1,0,2,1,1,2,1,1,3,1,1,2,1,1,2,1,2,2,0,1,2,1,1,3,1,-,-,,1,2,1,1,3,1,2,3,1,2,2,0,0,2,1,0,1,1,1,1,0,0,1,1,1,1,0,1,2,1,-,-,,-,-,,0,2,1,-,-,,1,2,1,1,3,1,1,2,1,2,3,1,1,2,1,2,3,1,1,2,1,1,2,1,1,4,1
04.12,Bournemouth,4,3,Liverpool,,0,3,0,1,4,0,0,2,0,0,3,0,2,2,0,0,3,0,1,3,0,1,0,1,0,3,0,1,2,0,1,3,0,0,4,0,2,3,0,0,2,0,2,1,1,1,3,0,-,-,,1,1,0,0,1,0,1,2,0,1,3,0,0,2,0,-,-,,0,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,3,0,2,2,0,2,2,0,1,2,0,1,2,0,-,-,,-,-,,1,3,0,-,-,,-,-,,1,3,0,1,1,0,2,2,0,0,2,0,1,1,0,1,1,0,0,3,0,1,4,0,1,2,0,1,2,0,1,2,0,1,3,0,1,2,0,0,3,0,-,-,,1,3,0,2,3,0,2,3,0,1,0,1,0,3,0,1,0,1,1,3,0,1,2,0,1,3,0,0,3,0,-,-,,-,-,,1,1,0,-,-,,0,2,0,2,1,1,1,3,0,0,2,0,1,2,0,2,2,0,1,2,0,0,3,0,2,3,0
04.12,Everton,1,1,Man Utd,,1,3,0,0,2,0,0,0,1,1,1,3,0,3,0,1,2,0,1,2,0,1,0,0,1,3,0,2,2,1,1,1,3,1,0,0,0,0,1,0,1,0,0,0,1,0,3,0,-,-,,2,1,0,0,0,1,0,2,0,0,1,0,1,1,3,-,-,,2,1,0,1,1,3,2,2,1,1,2,0,1,0,0,1,0,0,0,3,0,3,1,0,2,1,0,2,1,0,-,-,,-,-,,0,3,0,-,-,,-,-,,0,3,0,2,1,0,0,2,0,1,1,3,1,1,3,1,0,0,0,0,1,0,3,0,1,1,3,2,1,0,1,3,0,2,2,1,0,2,0,0,2,0,-,-,,0,1,0,1,1,3,1,2,0,1,3,0,0,3,0,2,0,0,0,2,0,1,2,0,1,1,3,0,1,0,-,-,,-,-,,0,3,0,-,-,,0,2,0,0,2,0,1,1,3,1,4,0,0,1,0,1,1,3,1,1,3,1,3,0,1,1,3
05.12,Middlesbrough,1,0,Hull,,2,1,1,3,0,1,0,1,0,2,0,1,2,1,1,1,1,0,2,1,1,3,1,1,1,0,3,2,0,1,2,0,1,2,1,1,2,0,1,0,0,0,3,1,1,3,0,1,-,-,,2,0,1,2,1,1,2,1,1,0,0,0,3,0,1,-,-,,2,0,1,2,2,0,1,0,3,3,0,1,1,0,3,2,0,1,1,1,0,2,0,1,2,0,1,2,0,1,-,-,,-,-,,2,0,1,-,-,,-,-,,1,0,3,2,0,1,2,1,1,2,0,1,2,2,0,2,0,1,0,0,0,1,1,0,1,1,0,2,1,1,2,0,1,2,1,1,3,1,1,2,0,1,-,-,,1,1,0,1,2,0,2,0,1,1,1,0,2,1,1,3,1,1,1,0,3,1,0,3,2,0,1,2,0,1,-,-,,-,-,,0,0,0,-,-,,2,1,1,2,0,1,2,0,1,4,2,1,1,0,3,3,0,1,1,0,3,2,0,1,1,0,3
Subtotal,,,,,,,,7,,,6,,,5,,,11,,,6,,,4,,,5,,,3,,,9,,,6,,,7,,,4,,,6,,,5,,,7,,,5,,,0,,,10,,,7,,,6,,,2,,,6,,,0,,,9,,,6,,,11,,,4,,,11,,,11,,,2,,,8,,,6,,,7,,,0,,,0,,,7,,,0,,,0,,,6,,,7,,,4,,,12,,,12,,,5,,,4,,,3,,,12,,,8,,,6,,,6,,,7,,,6,,,0,,,2,,,5,,,4,,,5,,,3,,,8,,,8,,,7,,,6,,,6,,,0,,,0,,,2,,,0,,,4,,,8,,,9,,,6,,,7,,,8,,,16,,,5,,,10
10.12,Watford,3,2,Everton,,1,2,0,1,1,0,0,1,0,0,1,0,1,1,0,1,1,0,1,1,0,0,2,0,1,2,0,2,1,1,1,1,0,0,2,0,2,2,0,0,1,0,0,2,0,0,2,0,-,-,,0,2,0,0,1,0,1,2,0,0,2,0,1,1,0,-,-,,1,1,0,1,2,0,1,1,0,0,1,0,0,1,0,1,2,0,1,2,0,1,2,0,1,3,0,1,2,0,-,-,,-,-,,1,3,0,-,-,,1,1,0,1,1,0,2,0,1,1,3,0,1,2,0,1,2,0,0,1,0,1,1,0,2,1,1,1,1,0,1,1,0,0,0,0,0,0,0,1,2,0,0,1,0,-,-,,1,1,0,1,3,0,-,-,,2,0,1,1,0,1,0,2,0,-,-,,1,2,0,1,2,0,0,2,0,-,-,,-,-,,0,2,0,-,-,,1,1,0,2,1,1,1,1,0,2,1,1,1,2,0,1,3,0,1,1,0,0,2,0,2,2,0
10.12,Arsenal,3,1,Stoke,,2,0,1,2,0,1,2,0,1,3,0,1,2,1,1,3,1,3,2,1,1,4,2,1,2,0,1,2,2,0,2,0,1,3,0,1,3,1,3,0,0,0,3,1,3,4,2,1,-,-,,2,0,1,3,0,1,2,0,1,2,0,1,2,0,1,-,-,,2,1,1,2,0,1,2,1,1,2,1,1,2,0,1,3,0,1,2,0,1,3,0,1,2,0,1,3,0,1,-,-,,-,-,,2,0,1,-,-,,3,0,1,2,0,1,3,1,3,4,0,1,2,0,1,2,0,1,3,0,1,1,0,1,1,1,0,2,0,1,2,0,1,2,1,1,2,0,1,3,0,1,3,1,3,-,-,,2,0,1,3,1,3,-,-,,3,0,1,3,0,1,3,0,1,-,-,,3,0,1,1,0,1,2,0,1,-,-,,-,-,,3,0,1,-,-,,3,1,3,2,0,1,4,0,1,2,0,1,2,0,1,3,0,1,2,0,1,3,0,1,3,0,1
10.12,Burnley,3,2,Bournemouth,,1,1,0,2,2,0,1,0,1,1,0,1,1,3,0,1,1,0,1,2,0,2,3,0,2,2,0,2,2,0,1,2,0,2,2,0,0,0,0,2,1,1,0,0,0,0,2,0,-,-,,2,1,1,0,2,0,2,2,0,1,1,0,1,1,0,-,-,,0,2,0,1,1,0,2,1,1,1,1,0,1,1,0,2,2,0,1,2,0,2,2,0,1,1,0,2,1,1,-,-,,-,-,,2,2,0,-,-,,1,2,0,1,2,0,1,2,0,2,2,0,2,2,0,1,1,0,2,2,0,1,2,0,1,1,0,2,1,1,2,1,1,1,1,0,1,2,0,1,0,1,0,0,0,-,-,,0,2,0,2,2,0,-,-,,2,1,1,0,2,0,1,0,1,-,-,,1,1,0,2,1,1,1,1,0,-,-,,-,-,,1,2,0,-,-,,1,1,0,1,3,0,2,1,1,0,2,0,0,2,0,1,2,0,1,0,1,0,2,0,2,3,0
10.12,Hull,3,3,Crystal Palace,,2,1,0,1,1,1,0,1,0,0,1,0,0,1,0,0,2,0,1,1,1,1,3,0,0,0,1,1,3,0,1,2,0,1,3,0,1,2,0,0,1,0,1,1,1,0,2,0,-,-,,1,2,0,3,2,0,0,1,0,1,2,0,0,1,0,-,-,,1,1,1,1,0,0,1,1,1,1,3,0,0,1,0,2,0,0,0,0,1,1,0,0,2,2,1,0,2,0,-,-,,-,-,,1,1,1,-,-,,2,3,0,0,2,0,0,2,0,1,1,1,1,1,1,1,3,0,0,0,1,1,0,0,0,1,0,2,2,1,2,1,0,1,2,0,1,0,0,1,3,0,1,2,0,-,-,,1,1,1,1,3,0,-,-,,1,1,1,0,0,1,1,2,0,-,-,,0,0,1,1,1,1,0,1,0,-,-,,-,-,,1,0,0,-,-,,0,1,0,0,2,0,1,0,0,1,1,1,1,1,1,0,1,0,1,1,1,0,1,0,1,2,0
10.12,Swansea,3,0,Sunderland,,1,3,0,2,0,1,0,0,0,0,1,0,1,1,0,1,1,0,1,1,0,0,0,0,0,1,0,1,1,0,1,1,0,2,1,1,1,1,0,0,1,0,2,1,1,0,1,0,-,-,,1,1,0,0,1,0,2,2,0,1,2,0,2,1,1,-,-,,0,2,0,2,1,1,1,2,0,0,2,0,1,0,1,0,1,0,2,2,0,3,0,3,1,1,0,2,2,0,-,-,,-,-,,1,2,0,-,-,,0,1,0,0,1,0,1,1,0,2,3,0,1,2,0,1,2,0,0,1,0,0,0,0,1,2,0,1,1,0,1,2,0,1,1,0,2,2,0,2,1,1,0,1,0,-,-,,1,1,0,1,1,0,-,-,,2,0,1,0,0,0,0,1,0,-,-,,1,2,0,2,1,1,0,1,0,-,-,,-,-,,0,0,0,-,-,,1,2,0,1,2,0,1,2,0,3,1,1,0,0,0,1,2,0,1,1,0,1,1,0,1,1,0
10.12,Leicester,3,0,Man City,,1,3,0,1,3,0,0,2,0,0,2,0,1,2,0,0,2,0,1,2,0,2,0,1,0,3,0,0,3,0,0,2,0,1,2,0,0,4,0,0,2,0,0,1,0,1,4,0,-,-,,0,3,0,1,4,0,1,3,0,1,2,0,1,2,0,-,-,,1,2,0,1,2,0,1,3,0,1,2,0,1,2,0,0,2,0,1,3,0,1,2,0,1,2,0,1,3,0,-,-,,-,-,,1,4,0,-,-,,0,2,0,0,2,0,0,3,0,0,2,0,1,2,0,2,1,1,0,2,0,1,1,0,1,3,0,0,2,0,1,2,0,1,3,0,1,2,0,1,1,0,1,2,0,-,-,,2,2,0,1,4,0,-,-,,1,3,0,0,2,0,1,3,0,-,-,,1,2,0,0,2,0,1,3,0,-,-,,-,-,,1,3,0,-,-,,1,2,0,1,4,0,1,3,0,0,2,0,0,2,0,0,3,0,1,2,0,1,2,0,1,3,0
11.12,Chelsea,1,0,West Brom,,3,0,1,3,1,1,2,0,1,3,0,1,3,1,1,3,0,1,2,1,1,2,0,1,3,1,1,3,1,1,3,0,1,4,0,1,3,0,1,3,1,1,3,1,1,2,0,1,-,-,,2,0,1,4,0,1,3,1,1,2,1,1,3,1,1,-,-,,3,0,1,2,0,1,2,0,1,2,1,1,2,0,1,4,0,1,4,0,1,3,0,1,3,1,1,3,0,1,-,-,,-,-,,2,0,1,-,-,,3,0,1,2,0,1,3,0,1,3,0,1,2,0,1,3,0,1,2,0,1,0,0,0,1,0,3,2,0,1,2,0,1,3,0,1,3,0,1,2,0,1,3,1,1,-,-,,3,0,1,3,1,1,-,-,,4,1,1,4,0,1,3,0,1,-,-,,2,0,1,2,0,1,3,0,1,-,-,,-,-,,4,2,1,-,-,,2,0,1,3,2,1,3,1,1,2,0,1,2,0,1,4,0,1,2,0,1,3,0,1,2,0,1
11.12,Man Utd,1,0,Tottenham,,2,1,1,1,2,0,1,2,0,1,1,0,1,0,3,1,1,0,1,1,0,1,3,0,1,2,0,1,1,0,1,1,0,2,2,0,1,2,0,1,2,0,0,0,0,0,1,0,-,-,,1,1,0,0,3,0,2,1,1,0,2,0,1,2,0,-,-,,1,2,0,1,0,3,1,1,0,1,2,0,1,0,3,1,1,0,1,2,0,0,1,0,1,2,0,2,2,0,-,-,,-,-,,2,1,1,-,-,,1,1,0,0,2,0,2,0,1,1,1,0,0,1,0,1,2,0,1,1,0,1,0,3,1,1,0,1,1,0,1,1,0,2,1,1,1,1,0,1,1,0,1,1,0,-,-,,0,0,0,1,2,0,-,-,,2,2,0,1,0,3,2,2,0,-,-,,1,1,0,2,1,1,1,1,0,-,-,,-,-,,2,2,0,-,-,,0,0,0,2,2,0,1,1,0,1,1,0,0,1,0,2,2,0,1,1,0,1,1,0,1,0,3
11.12,Southampton,1,0,Middlesbrough,,2,0,1,2,0,1,1,0,3,1,1,0,2,0,1,0,0,0,2,1,1,2,1,1,1,1,0,2,1,1,2,1,1,2,1,1,1,2,0,3,1,1,1,1,0,1,0,3,-,-,,2,0,1,2,2,0,2,0,1,0,0,0,3,0,1,-,-,,2,0,1,2,0,1,1,0,3,0,0,0,2,0,1,1,1,0,2,0,1,0,0,0,2,1,1,2,0,1,-,-,,-,-,,1,1,0,-,-,,2,0,1,1,0,3,2,0,1,0,1,0,1,1,0,3,0,1,2,0,1,1,0,3,2,0,1,2,1,1,2,1,1,2,1,1,2,0,1,2,0,1,2,0,1,-,-,,2,0,1,2,1,1,-,-,,2,2,0,2,1,1,1,0,3,-,-,,2,1,1,3,1,1,2,0,1,-,-,,-,-,,2,1,1,-,-,,2,0,1,2,1,1,2,0,1,1,0,3,1,0,3,1,1,0,1,0,3,1,0,3,1,1,0
11.12,Liverpool,2,2,West Ham,,4,1,0,4,1,0,2,0,0,4,0,0,3,0,0,2,0,0,3,1,0,0,3,0,3,1,0,3,1,0,3,1,0,3,0,0,3,1,0,3,0,0,2,0,0,3,0,0,-,-,,5,1,0,2,0,0,3,1,0,3,0,0,4,0,0,-,-,,4,0,0,2,0,0,3,1,0,3,2,0,3,0,0,4,0,0,3,1,0,2,0,0,3,0,0,3,2,0,-,-,,-,-,,3,0,0,-,-,,3,0,0,3,1,0,4,0,0,2,0,0,3,1,0,4,0,0,2,0,0,3,0,0,3,0,0,3,1,0,2,1,0,4,1,0,2,1,0,3,1,0,2,1,0,-,-,,3,0,0,2,1,0,-,-,,2,1,0,1,2,0,2,1,0,-,-,,2,0,0,3,0,0,3,1,0,-,-,,-,-,,2,1,0,-,-,,3,0,0,4,0,0,2,0,0,4,1,0,2,0,0,3,3,1,2,0,0,3,1,0,4,1,0
Subtotal,,,,,,,,4,,,5,,,6,,,3,,,6,,,4,,,4,,,4,,,3,,,3,,,3,,,4,,,4,,,3,,,6,,,5,,,0,,,4,,,2,,,4,,,2,,,4,,,0,,,4,,,7,,,7,,,2,,,7,,,2,,,4,,,5,,,4,,,4,,,0,,,0,,,4,,,0,,,3,,,5,,,7,,,3,,,3,,,4,,,4,,,7,,,5,,,5,,,4,,,4,,,3,,,5,,,5,,,0,,,4,,,5,,,0,,,6,,,8,,,6,,,0,,,4,,,7,,,3,,,0,,,0,,,3,,,0,,,5,,,4,,,4,,,8,,,6,,,3,,,7,,,5,,,5
13.12,Bournemouth,1,0,Leicester,,1,2,0,2,0,1,1,0,3,0,1,0,2,2,0,1,1,0,2,1,1,1,2,0,2,1,1,1,2,0,1,3,0,1,2,0,2,2,0,2,1,1,2,1,1,0,2,0,-,-,,2,1,1,0,2,0,1,2,0,1,1,0,1,1,0,-,-,,2,1,1,1,2,0,2,1,1,0,2,0,1,2,0,0,2,0,1,2,0,2,2,0,2,2,0,2,2,0,-,-,,-,-,,2,2,0,-,-,,1,0,3,1,1,0,1,1,0,2,2,0,1,2,0,2,2,0,2,2,0,1,3,0,2,1,1,2,2,0,1,2,0,1,1,0,2,2,0,1,2,0,1,2,0,-,-,,0,2,0,2,2,0,-,-,,2,0,1,0,1,0,1,1,0,-,-,,2,1,1,2,2,0,1,2,0,-,-,,-,-,,0,2,0,-,-,,2,1,1,1,3,0,2,2,0,2,2,0,-,-,,1,2,0,1,1,0,0,2,0,2,2,0
13.12,Everton,2,1,Arsenal,,1,4,0,0,3,0,1,1,0,0,1,0,0,3,0,1,4,0,1,2,0,4,0,1,0,3,0,1,1,0,0,3,0,2,1,3,1,1,0,0,2,0,0,5,0,1,4,0,-,-,,1,1,0,0,4,0,1,2,0,1,2,0,1,3,0,-,-,,1,1,0,1,2,0,1,3,0,1,4,0,0,2,0,0,3,0,0,4,0,1,1,0,1,1,0,1,1,0,-,-,,-,-,,0,2,0,-,-,,0,2,0,0,3,0,0,3,0,1,3,0,1,2,0,1,4,0,1,1,0,0,4,0,0,2,0,1,2,0,1,2,0,1,3,0,1,2,0,1,1,0,0,2,0,-,-,,1,3,0,1,3,0,-,-,,3,1,1,0,2,0,2,1,3,-,-,,1,2,0,1,2,0,0,2,0,-,-,,-,-,,0,3,0,-,-,,1,2,0,0,4,0,1,2,0,1,2,0,-,-,,1,1,0,0,2,0,1,3,0,1,3,0
14.12,Middlesbrough,0,3,Liverpool,,1,3,1,1,2,1,0,2,1,0,3,3,1,3,1,1,3,1,1,2,1,0,0,0,0,2,1,2,2,0,1,1,0,1,2,1,1,2,1,1,2,1,1,1,0,0,5,1,-,-,,2,1,0,1,2,1,0,2,1,0,3,3,1,3,1,-,-,,0,3,3,1,1,0,1,2,1,0,2,1,0,1,1,0,3,3,0,2,1,1,1,0,1,1,0,1,1,0,-,-,,-,-,,1,3,1,-,-,,1,2,1,0,3,3,1,2,1,0,2,1,1,1,0,1,1,0,0,1,1,0,2,1,0,3,3,1,2,1,0,2,1,1,2,1,0,2,1,0,2,1,1,3,1,-,-,,1,3,1,1,3,1,-,-,,2,1,0,0,0,0,2,1,0,-,-,,1,2,1,1,3,1,0,1,1,-,-,,-,-,,0,4,1,-,-,,0,2,1,1,2,1,1,1,0,0,2,1,-,-,,2,3,1,1,2,1,0,1,1,1,2,1
14.12,Sunderland,0,1,Chelsea,,1,3,1,0,2,1,0,2,1,0,2,1,0,3,1,0,3,1,1,2,1,1,1,0,1,3,1,0,2,1,0,2,1,0,3,1,0,4,1,0,2,1,0,3,1,1,2,1,-,-,,0,2,1,0,3,1,0,2,1,1,2,1,0,2,1,-,-,,0,4,1,0,2,1,1,2,1,1,2,1,0,2,1,0,3,1,1,3,1,0,3,1,0,3,1,0,3,1,-,-,,-,-,,0,2,1,-,-,,0,2,1,0,2,1,0,2,1,1,4,1,0,2,1,1,3,1,1,2,1,0,2,1,0,2,1,0,1,3,0,2,1,1,3,1,0,2,1,0,3,1,0,3,1,-,-,,0,2,1,1,2,1,-,-,,1,2,1,0,3,1,0,3,1,-,-,,0,2,1,1,1,0,0,2,1,-,-,,-,-,,0,2,1,-,-,,0,3,1,0,3,1,0,2,1,1,3,1,-,-,,0,3,1,0,2,1,0,2,1,1,1,0
14.12,West Ham,1,0,Burnley,,2,1,1,2,0,1,1,0,3,2,1,1,1,1,0,1,1,0,2,1,1,0,2,0,1,1,0,2,1,1,2,1,1,2,1,1,2,1,1,2,0,1,1,0,3,1,0,3,-,-,,2,0,1,1,1,0,2,1,1,1,1,0,1,1,0,-,-,,1,2,0,3,1,1,1,0,3,1,0,3,1,0,3,0,1,0,1,1,0,2,1,1,2,1,1,1,0,3,-,-,,-,-,,2,0,1,-,-,,1,0,3,1,1,0,2,0,1,2,1,1,2,0,1,2,0,1,1,1,0,1,0,3,2,1,1,2,0,1,2,1,1,2,0,1,2,1,1,2,1,1,1,0,3,-,-,,2,0,1,2,1,1,-,-,,2,0,1,2,1,1,1,1,0,-,-,,2,1,1,3,1,1,3,1,1,-,-,,-,-,,1,1,0,-,-,,2,1,1,2,2,0,2,0,1,2,1,1,-,-,,2,0,1,2,0,1,1,1,0,2,0,1
14.12,Crystal Palace,1,2,Man Utd,,1,2,3,1,1,0,0,1,1,0,1,1,1,2,3,0,1,1,1,2,3,3,3,0,0,2,1,1,3,1,1,1,0,1,1,0,1,3,1,2,2,0,2,1,0,2,2,0,-,-,,1,2,3,3,2,0,1,2,3,1,1,0,0,0,0,-,-,,1,1,0,1,2,3,2,2,0,1,1,0,1,2,3,0,2,1,1,1,0,1,2,3,1,3,1,0,2,1,-,-,,-,-,,1,3,1,-,-,,1,1,0,0,2,1,1,1,0,0,2,1,1,2,3,2,1,0,1,1,0,1,1,0,1,1,0,1,2,3,1,2,3,1,2,3,1,3,1,1,2,3,1,1,0,-,-,,0,2,1,2,2,0,-,-,,2,1,0,0,2,1,1,2,3,-,-,,1,1,0,1,2,3,1,2,3,-,-,,-,-,,1,3,1,-,-,,1,2,3,2,3,1,1,1,0,2,2,0,-,-,,1,1,0,1,2,3,1,3,1,1,3,1
14.12,Man City,2,0,Watford,,2,0,3,3,0,1,3,0,1,4,0,1,2,0,3,2,1,1,3,0,1,2,2,0,3,1,1,3,1,1,3,0,1,3,0,1,1,1,0,3,2,1,2,0,3,0,0,0,-,-,,5,0,1,2,0,3,2,1,1,2,0,3,3,0,1,-,-,,3,0,1,4,0,1,3,0,1,2,1,1,3,1,1,3,1,1,2,1,1,2,0,3,3,0,1,4,1,1,-,-,,-,-,,2,1,1,-,-,,2,0,3,2,0,3,3,1,1,3,1,1,3,1,1,1,0,1,2,1,1,2,1,1,3,0,1,3,1,1,2,1,1,3,1,1,3,0,1,3,0,1,2,0,3,-,-,,3,0,1,3,1,1,-,-,,4,1,1,3,0,1,2,0,3,-,-,,2,0,3,3,0,1,3,0,1,-,-,,-,-,,3,0,1,-,-,,3,0,1,4,1,1,5,0,1,3,0,1,-,-,,2,0,3,3,1,1,3,0,1,2,0,3
14.12,Stoke,0,0,Southampton,,2,2,1,2,2,1,1,0,0,2,1,0,2,1,0,1,1,1,1,1,1,2,0,0,0,0,3,1,1,1,0,2,0,2,2,1,2,0,0,1,1,1,0,0,3,1,1,1,-,-,,2,0,0,1,1,1,1,1,1,1,1,1,2,2,1,-,-,,2,1,0,2,0,0,1,1,1,1,1,1,1,0,0,2,0,0,0,0,3,1,1,1,2,1,0,1,1,1,-,-,,-,-,,1,1,1,-,-,,1,1,1,1,1,1,2,0,0,1,1,1,2,0,0,1,1,1,2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,0,0,1,1,1,2,0,0,2,1,0,-,-,,1,1,1,1,1,1,-,-,,2,2,1,0,1,0,1,0,0,-,-,,2,1,0,1,0,0,2,1,0,-,-,,-,-,,0,1,0,-,-,,1,1,1,1,1,1,2,1,0,1,1,1,-,-,,1,1,1,1,1,1,1,1,1,0,0,3
14.12,Tottenham,3,0,Hull,,3,0,3,3,0,3,2,0,1,4,0,1,3,0,3,3,0,3,2,0,1,3,2,1,2,0,1,4,1,1,2,0,1,3,0,3,3,0,3,2,1,1,3,1,1,7,0,1,-,-,,4,0,1,3,1,1,2,0,1,3,0,3,3,0,3,-,-,,3,1,1,2,1,1,3,0,3,5,0,1,2,0,1,2,0,1,3,1,1,3,0,3,2,0,1,3,0,3,-,-,,-,-,,3,0,3,-,-,,2,0,1,2,0,1,3,0,3,4,0,1,3,0,3,4,0,1,3,0,3,2,0,1,3,1,1,3,0,3,2,0,1,3,1,1,3,0,3,4,1,1,3,1,1,-,-,,2,0,1,2,1,1,-,-,,3,1,1,4,0,1,3,0,3,-,-,,2,0,1,2,1,1,4,0,1,-,-,,-,-,,2,1,1,-,-,,3,0,3,4,1,1,4,0,1,4,0,1,-,-,,3,0,3,3,0,3,2,0,1,2,0,1
14.12,West Brom,3,1,Swansea,,2,0,1,2,0,1,1,0,1,2,1,1,2,1,1,2,0,1,1,0,1,1,1,0,1,1,0,2,2,0,1,2,0,2,2,0,2,0,1,1,1,0,2,0,1,2,0,1,-,-,,2,1,1,0,0,0,2,1,1,1,1,0,1,1,0,-,-,,2,0,1,2,0,1,2,0,1,3,1,3,1,0,1,1,0,1,2,2,0,1,2,0,2,0,1,2,0,1,-,-,,-,-,,2,0,1,-,-,,1,0,1,1,0,1,2,0,1,2,2,0,2,1,1,1,1,0,3,0,1,1,2,0,2,0,1,2,1,1,2,1,1,2,1,1,1,1,0,2,0,1,2,1,1,-,-,,1,1,0,2,1,1,-,-,,2,2,0,1,0,1,1,1,0,-,-,,1,1,0,1,1,0,2,0,1,-,-,,-,-,,0,0,0,-,-,,2,0,1,3,1,3,2,1,1,2,1,1,-,-,,1,1,0,2,0,1,0,0,0,2,1,1
Subtotal,,,,,,,,14,,,10,,,12,,,9,,,12,,,9,,,11,,,2,,,9,,,6,,,4,,,11,,,8,,,7,,,13,,,8,,,0,,,9,,,7,,,10,,,11,,,7,,,0,,,8,,,8,,,12,,,11,,,11,,,8,,,7,,,12,,,6,,,11,,,0,,,0,,,10,,,0,,,14,,,11,,,8,,,7,,,10,,,5,,,7,,,8,,,10,,,14,,,10,,,9,,,9,,,9,,,10,,,0,,,7,,,7,,,0,,,7,,,6,,,13,,,0,,,8,,,7,,,9,,,0,,,0,,,5,,,0,,,13,,,9,,,5,,,7,,,0,,,10,,,12,,,6,,,11
17.12,Crystal Palace,0,1,Chelsea,,1,3,1,1,3,1,0,2,1,0,2,1,1,3,1,1,3,1,0,1,3,1,4,1,0,2,1,0,2,1,0,2,1,1,2,1,0,5,1,0,2,1,0,2,1,2,2,0,-,-,,0,2,1,0,2,1,0,2,1,1,2,1,0,1,3,-,-,,0,2,1,1,2,1,1,2,1,1,2,1,0,2,1,0,3,1,1,3,1,0,2,1,1,2,1,0,2,1,-,-,,-,-,,1,3,1,-,-,,0,2,1,0,2,1,1,1,0,1,3,1,0,2,1,1,2,1,1,2,1,1,1,0,0,2,1,1,2,1,0,1,3,1,3,1,1,2,1,0,3,1,0,2,1,-,-,,1,2,1,1,3,1,0,3,1,1,2,1,0,3,1,0,2,1,-,-,,-,-,,1,2,1,0,2,1,-,-,,-,-,,0,2,1,-,-,,0,2,1,0,3,1,0,2,1,1,3,1,0,2,1,0,2,1,1,2,1,1,3,1,1,1,0
17.12,Middlesbrough,3,0,Swansea,,1,0,1,1,0,1,1,0,1,1,0,1,2,2,0,0,0,0,1,1,0,2,0,1,1,0,1,2,1,1,1,1,0,1,1,0,0,0,0,1,0,1,0,0,0,2,2,0,-,-,,1,1,0,2,0,1,2,1,1,1,0,1,0,1,0,-,-,,1,0,1,1,1,0,1,0,1,1,1,0,1,0,1,2,0,1,2,2,0,2,2,0,2,1,1,2,0,1,-,-,,-,-,,2,1,1,-,-,,2,1,1,1,1,0,2,0,1,2,1,1,1,1,0,1,1,0,2,0,1,0,0,0,1,1,0,2,0,1,2,1,1,2,1,1,1,1,0,2,1,1,1,2,0,-,-,,1,1,0,1,2,0,1,1,0,3,0,3,1,1,0,2,1,1,-,-,,-,-,,1,1,0,1,0,1,-,-,,-,-,,1,0,1,-,-,,2,1,1,2,1,1,1,1,0,2,1,1,1,0,1,2,0,1,1,1,0,1,1,0,2,0,1
17.12,Stoke,2,2,Leicester,,2,1,0,2,2,3,0,1,0,2,2,3,1,0,0,2,1,0,1,1,1,1,1,1,1,1,1,3,1,0,2,2,3,2,2,3,2,2,3,1,1,1,1,2,0,2,0,0,-,-,,2,1,0,0,0,1,1,2,0,1,0,0,1,1,1,-,-,,2,1,0,1,1,1,1,1,1,1,1,1,1,0,0,2,1,0,0,1,0,2,1,0,2,1,0,3,1,0,-,-,,-,-,,2,2,3,-,-,,0,1,0,1,1,1,1,1,1,1,0,0,1,2,0,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,2,1,0,2,1,0,2,0,0,2,1,0,-,-,,2,1,0,2,2,3,1,2,0,2,1,0,1,0,0,1,0,0,-,-,,-,-,,1,0,0,1,1,1,-,-,,-,-,,0,0,1,-,-,,2,1,0,1,1,1,2,1,0,1,2,0,0,2,0,1,0,0,1,0,0,1,1,1,0,0,1
17.12,Sunderland,1,0,Watford,,1,1,0,1,1,0,1,0,3,1,0,3,1,1,0,1,0,3,2,1,1,1,0,3,2,1,1,1,0,3,1,1,0,2,1,1,1,2,0,2,1,1,1,2,0,1,0,3,-,-,,2,0,1,1,3,0,2,1,1,2,2,0,1,1,0,-,-,,1,0,3,1,1,0,2,0,1,1,1,0,1,0,3,1,2,0,1,1,0,1,1,0,1,1,0,1,1,0,-,-,,-,-,,1,0,3,-,-,,1,0,3,1,1,0,1,0,3,1,3,0,1,1,0,2,1,1,2,1,1,1,0,3,2,1,1,2,1,1,2,1,1,1,1,0,2,1,1,1,0,3,1,1,0,-,-,,1,1,0,2,1,1,1,1,0,3,0,1,0,1,0,1,0,3,-,-,,-,-,,2,1,1,1,2,0,-,-,,-,-,,0,0,0,-,-,,1,1,0,1,3,0,1,0,3,1,2,0,1,0,3,2,0,1,1,1,0,1,0,3,1,0,3
17.12,West Ham,1,0,Hull,,2,0,1,2,0,1,1,0,3,2,0,1,2,0,1,2,1,1,2,1,1,2,0,1,2,0,1,3,1,1,2,0,1,3,1,1,2,1,1,1,0,3,3,0,1,4,0,1,-,-,,2,0,1,2,2,0,2,1,1,2,1,1,2,2,0,-,-,,1,1,0,2,0,1,2,0,1,3,0,1,2,1,1,2,0,1,2,1,1,2,0,1,2,0,1,2,0,1,-,-,,-,-,,2,0,1,-,-,,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,1,1,1,0,3,0,1,0,1,0,3,2,1,1,2,1,1,2,1,1,2,0,1,2,1,1,2,0,1,-,-,,2,0,1,2,1,1,1,0,3,2,0,1,3,1,1,2,0,1,-,-,,-,-,,1,0,3,3,1,1,-,-,,-,-,,1,1,0,-,-,,2,0,1,2,1,1,2,0,1,5,1,1,1,0,3,2,0,1,2,0,1,2,0,1,2,2,0
17.12,West Brom,0,2,Man Utd,,1,2,1,1,0,0,0,1,1,1,2,1,2,2,0,1,1,0,1,2,1,1,0,0,1,2,1,2,2,0,1,2,1,2,2,0,1,1,0,0,1,1,1,1,0,1,2,1,-,-,,1,1,0,3,2,0,1,1,0,1,1,0,2,2,0,-,-,,2,1,0,1,1,0,0,1,1,1,1,0,0,1,1,0,1,1,1,3,1,2,2,0,1,2,1,2,2,0,-,-,,-,-,,0,2,3,-,-,,0,0,0,0,2,3,2,2,0,1,1,0,2,1,0,2,1,0,2,2,0,0,1,1,1,1,0,1,2,1,1,1,0,1,2,1,2,2,0,1,1,0,0,2,3,-,-,,1,1,0,1,2,1,1,2,1,2,1,0,1,2,1,1,2,1,-,-,,-,-,,2,2,0,0,2,3,-,-,,-,-,,0,1,1,-,-,,1,1,0,1,1,0,2,1,0,3,1,0,1,2,1,1,2,1,1,1,0,1,2,1,1,3,1
18.12,Bournemouth,1,3,Southampton,,2,3,1,2,2,0,0,1,1,1,1,0,1,1,0,1,1,0,1,1,0,3,0,0,2,1,0,2,1,0,3,2,0,1,1,0,2,0,0,1,1,0,2,1,0,0,0,0,-,-,,1,2,1,1,1,0,1,1,0,1,2,1,0,0,0,-,-,,2,0,0,1,1,0,1,1,0,1,1,0,1,0,0,2,2,0,1,2,1,2,1,0,1,0,0,2,2,0,-,-,,-,-,,1,1,0,-,-,,1,1,0,1,1,0,1,1,0,3,3,0,1,1,0,1,1,0,2,2,0,2,0,0,1,1,0,1,1,0,1,1,0,1,1,0,2,2,0,1,0,0,1,0,0,-,-,,1,1,0,1,0,0,2,1,0,2,2,0,3,2,0,1,1,0,-,-,,-,-,,3,2,0,1,1,0,-,-,,-,-,,1,1,0,-,-,,2,1,0,2,3,1,1,1,0,2,1,0,2,1,0,2,2,0,1,0,0,1,1,0,2,0,0
18.12,Man City,2,1,Arsenal,,1,3,0,3,3,0,1,0,1,1,1,0,2,1,3,1,1,0,2,1,3,2,3,0,2,2,0,1,3,0,1,2,0,1,1,0,1,3,0,1,1,0,2,0,1,3,2,1,-,-,,2,2,0,3,1,1,2,1,3,1,3,0,3,2,1,-,-,,2,1,3,2,1,3,2,1,3,2,2,0,2,1,3,2,2,0,2,2,0,2,1,3,2,1,3,2,2,0,-,-,,-,-,,1,1,0,-,-,,2,1,3,2,1,3,2,1,3,1,2,0,1,2,0,2,2,0,1,1,0,0,1,0,2,1,3,2,2,0,1,1,0,2,1,3,1,2,0,3,1,1,3,1,1,-,-,,2,1,3,3,2,1,1,1,0,1,2,0,2,2,0,2,1,3,-,-,,-,-,,1,1,0,3,1,1,-,-,,-,-,,2,3,0,-,-,,1,2,0,2,1,3,1,1,0,1,0,1,2,1,3,2,2,0,1,1,0,2,1,3,2,2,0
18.12,Tottenham,2,1,Burnley,,3,0,1,2,0,1,2,0,1,3,0,1,2,0,1,3,0,1,3,0,1,2,0,1,3,0,1,2,0,1,3,0,1,3,0,1,2,0,1,3,0,1,4,1,1,4,0,1,-,-,,3,0,1,4,0,1,2,0,1,2,0,1,2,0,1,-,-,,3,1,1,3,0,1,3,0,1,3,1,1,3,0,1,2,0,1,3,0,1,3,0,1,2,0,1,4,0,1,-,-,,-,-,,3,0,1,-,-,,2,0,1,2,0,1,3,1,1,4,0,1,3,0,1,3,0,1,2,0,1,2,0,1,3,0,1,3,0,1,2,0,1,3,1,1,3,0,1,3,0,1,2,0,1,-,-,,2,0,1,3,1,1,2,0,1,4,1,1,4,0,1,2,0,1,-,-,,-,-,,2,0,1,4,1,1,-,-,,-,-,,3,0,1,-,-,,3,0,1,3,1,1,3,0,1,3,0,1,2,1,3,3,0,1,3,0,1,4,0,1,3,1,1
19.12,Everton,0,1,Liverpool,,1,3,1,1,1,0,0,0,0,1,1,0,1,1,0,1,2,1,1,1,0,2,0,0,0,2,1,1,2,1,2,2,0,2,2,0,1,1,0,1,0,0,0,0,0,2,2,0,-,-,,1,1,0,0,0,0,2,2,0,2,1,0,1,1,0,-,-,,2,0,0,1,1,0,0,2,1,3,2,0,1,1,0,3,0,0,1,1,0,2,1,0,2,1,0,2,0,0,-,-,,-,-,,4,1,0,-,-,,1,1,0,1,2,1,1,2,1,2,1,0,1,1,0,1,2,1,3,0,0,0,1,3,1,3,1,1,1,0,1,2,1,1,2,1,1,1,0,1,1,0,2,2,0,-,-,,1,3,1,2,2,0,1,1,0,3,1,0,2,0,0,2,1,0,-,-,,-,-,,1,0,0,2,1,0,-,-,,-,-,,2,1,0,-,-,,2,2,0,2,4,1,1,1,0,1,3,1,2,1,0,2,1,0,1,2,1,1,0,0,2,2,0
Subtotal,,,,,,,,7,,,7,,,12,,,11,,,6,,,7,,,11,,,8,,,8,,,8,,,7,,,7,,,6,,,9,,,4,,,7,,,0,,,5,,,5,,,8,,,5,,,6,,,0,,,9,,,7,,,11,,,4,,,11,,,5,,,5,,,6,,,8,,,4,,,0,,,0,,,13,,,0,,,10,,,11,,,11,,,4,,,3,,,6,,,8,,,8,,,11,,,7,,,9,,,9,,,4,,,8,,,7,,,0,,,7,,,9,,,6,,,7,,,4,,,11,,,0,,,0,,,6,,,9,,,0,,,0,,,5,,,0,,,4,,,10,,,6,,,6,,,15,,,6,,,4,,,11,,,7
26.12,Watford,1,1,Crystal Palace,,2,0,0,2,2,1,1,0,0,1,1,3,2,1,0,2,0,0,1,1,3,1,1,3,2,1,0,1,2,0,2,0,0,2,2,1,2,1,0,1,0,0,1,1,3,0,3,0,-,-,,1,1,3,2,1,0,1,1,3,2,1,0,2,0,0,-,-,,1,2,0,2,2,1,1,1,3,1,1,3,1,0,0,2,1,0,1,1,3,2,1,0,2,1,0,2,1,0,1,1,3,-,-,,2,1,0,-,-,,2,1,0,1,1,3,1,1,3,1,1,3,2,1,0,2,1,0,1,0,0,3,0,0,1,0,0,1,2,0,2,1,0,2,1,0,1,1,3,3,1,0,2,1,0,-,-,,2,0,0,2,2,1,2,1,0,3,1,0,1,1,3,1,0,0,-,-,,1,1,3,-,-,,2,0,0,-,-,,-,-,,0,0,1,-,-,,2,1,0,2,2,1,1,1,3,2,2,1,1,0,0,1,2,0,2,1,0,1,1,3,2,2,1
26.12,Arsenal,1,0,West Brom,,3,1,1,3,1,1,2,0,1,2,0,1,3,2,1,3,1,1,2,0,1,2,2,0,2,0,1,2,1,1,2,1,1,2,1,1,1,0,3,2,0,1,2,0,1,1,0,3,-,-,,2,0,1,2,0,1,2,0,1,1,0,3,1,1,0,-,-,,1,1,0,3,0,1,2,0,1,2,1,1,1,0,3,3,1,1,2,0,1,2,1,1,1,1,0,2,0,1,2,0,1,-,-,,2,0,1,-,-,,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,1,1,2,1,1,1,0,3,2,1,1,2,0,1,2,1,1,2,0,1,3,0,1,2,1,1,2,0,1,-,-,,2,0,1,2,1,1,2,1,1,2,0,1,2,0,1,2,0,1,-,-,,2,0,1,2,1,1,3,1,1,-,-,,-,-,,2,0,1,-,-,,2,1,1,3,2,1,3,1,1,2,2,0,2,0,1,2,0,1,2,0,1,2,1,1,3,1,1
26.12,Burnley,1,0,Middlesbrough,,2,1,1,2,2,0,1,0,3,1,0,3,1,1,0,2,1,1,1,1,0,1,2,0,1,0,3,1,0,3,1,1,0,1,1,0,1,0,3,1,0,3,2,2,0,2,0,1,-,-,,2,1,1,0,3,0,2,1,1,1,1,0,1,1,0,-,-,,2,1,1,2,1,1,2,1,1,1,0,3,1,0,3,2,0,1,1,2,0,2,1,1,1,1,0,1,1,0,0,0,0,-,-,,1,0,3,-,-,,1,1,0,1,1,0,1,1,0,1,1,0,1,0,3,1,2,0,1,0,3,1,0,3,2,1,1,2,1,1,1,1,0,1,1,0,1,0,3,1,1,0,1,1,0,-,-,,1,1,0,2,1,1,1,2,0,1,0,3,1,0,3,1,1,0,-,-,,1,0,3,1,1,0,1,0,3,-,-,,-,-,,1,1,0,-,-,,1,0,3,2,1,1,1,0,3,2,2,0,1,0,3,2,2,0,1,1,0,2,2,0,1,1,0
26.12,Chelsea,3,0,Bournemouth,,3,0,3,3,0,3,2,0,1,3,0,3,3,0,3,3,0,3,2,0,1,3,0,3,2,0,1,2,0,1,4,0,1,4,0,1,2,1,1,3,0,3,3,1,1,3,0,3,-,-,,5,0,1,3,0,3,3,0,3,2,0,1,3,2,1,-,-,,3,1,1,2,0,1,3,0,3,1,0,1,2,0,1,4,0,1,3,1,1,2,0,1,3,0,3,3,0,3,3,1,1,-,-,,3,1,1,-,-,,2,0,1,3,1,1,3,0,3,2,0,1,3,0,3,3,0,3,2,0,1,2,0,1,3,0,3,2,0,1,2,0,1,4,0,1,2,1,1,3,0,3,2,0,1,-,-,,2,0,1,3,1,1,3,2,1,5,1,1,3,0,3,3,0,3,-,-,,2,0,1,2,0,1,3,0,3,-,-,,-,-,,2,0,1,-,-,,3,0,3,2,0,1,3,0,3,2,2,0,3,1,1,2,1,1,3,0,3,3,2,1,2,0,1
26.12,Leicester,0,2,Everton,,1,1,0,2,0,0,0,0,0,1,1,0,2,0,0,2,1,0,1,0,0,1,3,1,1,2,1,2,1,0,1,2,1,2,2,0,1,1,0,1,0,0,2,0,0,2,1,0,-,-,,1,2,1,1,1,0,2,2,0,1,1,0,1,1,0,-,-,,1,2,1,2,0,0,2,1,0,1,1,0,1,0,0,0,1,1,2,1,0,1,2,1,1,2,1,2,2,0,1,2,1,-,-,,1,1,0,-,-,,1,1,0,1,1,0,2,0,0,1,2,1,1,1,0,4,3,0,1,2,1,2,0,0,3,2,0,1,1,0,1,1,0,2,1,0,1,2,1,2,1,0,1,1,0,-,-,,2,1,0,1,2,1,2,2,0,4,1,0,2,0,0,1,2,1,-,-,,2,2,0,2,1,0,0,2,3,-,-,,-,-,,1,2,1,-,-,,2,1,0,2,1,0,1,1,0,2,2,0,1,1,0,1,2,1,1,0,0,2,2,0,2,0,0
26.12,Man Utd,3,1,Sunderland,,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,3,0,1,2,0,1,1,0,1,2,0,1,3,0,1,2,0,1,3,0,1,4,1,1,2,0,1,3,0,1,2,1,1,-,-,,3,1,3,2,0,1,3,1,3,1,0,1,0,0,0,-,-,,2,0,1,1,0,1,3,0,1,2,0,1,2,0,1,3,0,1,2,0,1,2,0,1,2,0,1,3,0,1,2,0,1,-,-,,2,0,1,-,-,,1,0,1,2,0,1,3,1,3,2,1,1,2,0,1,4,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,3,0,1,0,1,0,-,-,,2,0,1,2,1,1,1,0,1,2,2,0,0,1,0,2,0,1,-,-,,2,0,1,3,2,1,3,0,1,-,-,,-,-,,1,1,0,-,-,,2,0,1,3,0,1,2,0,1,2,2,0,3,0,1,3,0,1,2,0,1,2,0,1,3,1,3
26.12,Swansea,1,4,West Ham,,2,1,0,0,0,0,0,1,1,0,1,1,2,1,0,1,2,1,1,2,1,2,0,0,0,2,1,2,1,0,1,1,0,1,3,1,1,1,0,0,1,1,0,0,0,2,2,0,-,-,,1,1,0,3,2,0,1,1,0,1,1,0,1,0,0,-,-,,0,0,0,2,2,0,1,2,1,1,3,1,1,2,1,2,0,0,1,1,0,2,1,0,2,0,0,2,2,0,1,0,0,-,-,,1,2,1,-,-,,1,1,0,1,1,0,1,1,0,1,0,0,1,2,1,3,0,0,1,0,0,1,0,0,2,1,0,2,2,0,1,2,1,1,1,0,1,1,0,2,2,0,1,2,1,-,-,,1,1,0,1,2,1,1,0,0,2,2,0,2,1,0,2,2,0,-,-,,1,1,0,1,1,0,1,1,0,-,-,,-,-,,1,1,0,-,-,,1,1,0,1,2,1,1,2,1,2,2,0,1,0,0,1,2,1,2,2,0,1,0,0,1,0,0
26.12,Hull,0,3,Man City,,1,2,1,1,3,1,0,2,1,0,3,3,0,3,3,0,4,1,0,2,1,2,1,0,0,3,3,1,3,1,0,3,3,1,4,1,1,3,1,0,3,3,0,4,1,0,4,1,-,-,,0,3,3,0,2,1,0,2,1,1,3,1,0,3,3,-,-,,0,3,3,1,3,1,1,3,1,0,2,1,0,3,3,0,3,3,0,2,1,1,3,1,1,3,1,0,2,1,1,3,1,-,-,,0,3,3,-,-,,0,2,1,0,4,1,1,2,1,0,2,1,0,3,3,1,4,1,0,2,1,1,0,0,0,3,3,1,3,1,0,2,1,1,4,1,0,3,3,0,3,3,0,3,3,-,-,,0,3,3,1,3,1,0,6,1,0,2,1,0,3,3,0,2,1,-,-,,0,2,1,1,2,1,0,2,1,-,-,,-,-,,0,3,3,-,-,,0,2,1,1,3,1,1,5,1,2,2,0,0,2,1,0,3,3,1,3,1,0,2,1,1,4,1
27.12,Liverpool,4,1,Stoke,,4,0,1,2,0,1,1,0,1,3,0,1,3,0,1,4,0,1,3,1,1,0,1,0,3,0,1,2,0,1,3,0,1,2,1,1,3,0,1,3,0,1,5,1,1,4,0,1,-,-,,2,1,1,1,0,1,2,1,1,2,0,1,3,1,1,-,-,,2,1,1,2,1,1,3,1,1,2,0,1,2,1,1,4,0,1,3,1,1,3,1,1,2,0,1,3,1,1,2,0,1,-,-,,2,0,1,-,-,,3,0,1,2,1,1,3,0,1,2,0,1,2,1,1,3,1,1,2,1,1,2,0,1,5,0,1,2,0,1,2,1,1,3,1,1,3,0,1,2,0,1,2,0,1,-,-,,2,0,1,1,1,0,2,1,1,1,3,0,0,1,0,2,1,1,-,-,,2,0,1,2,1,1,4,0,1,-,-,,-,-,,2,2,0,-,-,,3,1,1,3,1,1,3,0,1,2,2,0,2,1,1,3,0,1,2,0,1,2,1,1,3,0,1
28.12,Southampton,1,4,Tottenham,,2,2,0,2,3,1,0,1,1,1,2,1,2,2,0,1,1,0,1,2,1,1,3,1,1,2,1,1,1,0,1,1,0,2,1,0,1,2,1,2,2,0,1,1,0,0,0,0,-,-,,2,1,0,1,2,1,2,1,0,2,2,0,1,1,0,-,-,,1,2,1,1,1,0,2,2,0,1,1,0,0,1,1,2,1,0,1,2,1,2,2,0,1,1,0,1,2,1,-,-,,-,-,,2,2,0,-,-,,1,1,0,0,1,1,1,1,0,1,1,0,1,1,0,2,2,0,2,2,0,1,0,0,1,2,1,2,2,0,1,1,0,1,2,1,2,2,0,1,2,1,0,1,1,-,-,,1,2,1,1,2,1,2,1,0,2,1,0,2,2,0,1,1,0,-,-,,1,2,1,1,1,0,1,2,1,-,-,,-,-,,1,2,1,-,-,,1,2,1,2,2,0,1,1,0,2,2,0,1,2,1,1,1,0,1,2,1,1,1,0,2,4,1
Subtotal,,,,,,,,8,,,9,,,10,,,17,,,9,,,9,,,10,,,9,,,13,,,8,,,8,,,7,,,11,,,13,,,8,,,10,,,0,,,14,,,8,,,13,,,7,,,5,,,0,,,9,,,7,,,12,,,12,,,14,,,9,,,9,,,7,,,7,,,8,,,9,,,0,,,11,,,0,,,5,,,9,,,12,,,9,,,13,,,7,,,9,,,9,,,11,,,6,,,6,,,6,,,14,,,10,,,8,,,0,,,8,,,9,,,5,,,6,,,13,,,8,,,0,,,12,,,5,,,14,,,0,,,0,,,8,,,0,,,11,,,8,,,14,,,1,,,9,,,9,,,8,,,8,,,9
30.12,Hull,2,2,Everton,,1,2,0,1,1,1,0,1,0,0,2,0,0,1,0,1,2,0,1,2,0,0,3,0,1,2,0,1,3,0,0,2,0,1,3,0,1,2,0,0,1,0,0,2,0,1,1,1,-,-,,1,2,0,0,2,0,0,2,0,0,2,0,1,3,0,-,-,,0,2,0,1,2,0,2,1,0,1,2,0,0,2,0,0,2,0,1,2,0,1,2,0,0,2,0,0,3,0,-,-,,-,-,,1,2,0,-,-,,1,2,0,0,1,0,2,1,0,0,1,0,1,2,0,0,3,0,0,2,0,0,0,1,1,1,1,1,2,0,1,2,0,1,2,0,0,2,0,1,3,0,1,3,0,-,-,,1,1,1,1,3,0,-,-,,1,3,0,0,3,0,0,2,0,-,-,,0,2,0,-,-,,0,2,0,-,-,,-,-,,3,1,0,-,-,,0,2,0,1,2,0,0,2,0,2,2,3,0,2,0,1,2,0,0,2,0,0,3,0,1,3,0
31.12,Burnley,4,1,Sunderland,,2,1,1,2,0,1,1,0,1,1,1,0,1,1,0,1,1,0,1,1,0,2,1,1,2,1,1,2,1,1,2,1,1,2,2,0,2,2,0,1,0,1,2,0,1,1,0,1,-,-,,2,1,1,1,1,0,1,1,0,1,2,0,1,0,1,-,-,,1,2,0,2,2,0,2,1,1,2,1,1,1,0,1,2,1,1,1,1,0,2,0,1,2,0,1,2,1,1,-,-,,-,-,,2,2,0,-,-,,0,1,0,1,1,0,1,1,0,1,1,0,1,1,0,1,1,0,1,1,0,1,0,1,1,1,0,2,1,1,1,1,0,1,1,0,2,1,1,1,0,1,2,1,1,-,-,,1,2,0,2,1,1,1,2,0,1,1,0,1,1,0,1,0,1,-,-,,1,1,0,-,-,,1,1,0,-,-,,-,-,,1,1,0,-,-,,1,0,1,2,1,1,1,0,1,2,2,0,1,0,1,1,1,0,1,0,1,1,1,0,1,1,0
31.12,Chelsea,4,2,Stoke,,3,0,1,1,0,1,3,0,1,3,1,1,3,0,1,2,0,1,2,0,1,4,0,1,3,0,1,3,0,1,3,0,1,1,1,0,4,1,1,2,0,1,3,1,1,4,1,1,-,-,,2,1,1,3,1,1,3,0,1,2,0,1,4,0,1,-,-,,2,1,1,1,1,0,3,0,1,1,0,1,3,0,1,4,0,1,3,1,1,3,0,1,2,0,1,2,0,1,-,-,,-,-,,3,0,1,-,-,,3,0,1,3,0,1,4,1,1,3,0,1,2,0,1,2,0,1,2,0,1,2,0,1,3,0,1,2,0,1,2,0,1,4,1,1,3,0,1,3,0,1,2,0,1,-,-,,3,0,1,3,1,1,4,2,3,2,0,1,4,0,1,3,0,1,-,-,,2,0,1,-,-,,3,1,1,-,-,,-,-,,4,0,1,-,-,,3,0,1,4,1,1,3,0,1,2,2,0,3,0,1,4,0,1,2,0,1,5,0,1,3,2,1
31.12,Leicester,1,0,West Ham,,1,1,0,0,0,0,1,0,3,1,2,0,2,1,1,1,1,0,1,1,0,1,1,0,1,1,0,2,1,1,2,1,1,2,1,1,1,0,3,1,2,0,1,1,0,1,3,0,-,-,,1,1,0,0,1,0,1,1,0,2,2,0,1,1,0,-,-,,2,1,1,2,0,1,2,2,0,1,1,0,1,0,3,1,2,0,2,1,1,1,1,0,1,1,0,2,1,1,-,-,,-,-,,2,1,1,-,-,,1,1,0,2,2,0,2,0,1,2,1,1,2,2,0,1,2,0,1,1,0,1,0,3,1,1,0,1,1,0,2,1,1,1,1,0,1,1,0,2,1,1,1,2,0,-,-,,1,1,0,1,2,0,0,1,0,3,1,1,1,1,0,1,1,0,-,-,,2,1,1,-,-,,1,1,0,-,-,,-,-,,1,2,0,-,-,,1,2,0,1,2,0,2,1,1,2,2,0,1,0,3,2,2,0,1,1,0,1,1,0,0,3,0
31.12,Man Utd,2,1,Middlesbrough,,3,0,1,2,0,1,2,0,1,3,0,1,3,0,1,3,0,1,2,0,1,1,1,0,2,0,1,2,0,1,2,0,1,3,1,1,2,0,1,2,0,1,2,0,1,3,0,1,-,-,,3,1,1,2,0,1,3,0,1,3,0,1,1,0,1,-,-,,3,0,1,3,1,1,2,0,1,4,0,1,2,0,1,3,0,1,2,0,1,2,0,1,3,1,1,3,0,1,-,-,,-,-,,2,0,1,-,-,,2,0,1,2,0,1,3,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,3,1,1,2,0,1,4,0,1,2,0,1,-,-,,2,0,1,2,1,3,2,0,1,4,0,1,2,1,3,2,0,1,-,-,,2,0,1,-,-,,2,0,1,-,-,,-,-,,2,0,1,-,-,,3,0,1,2,1,3,3,0,1,2,2,0,2,0,1,3,0,1,2,0,1,3,0,1,3,0,1
31.12,Southampton,1,2,West Brom,,2,1,0,2,2,0,1,0,0,1,2,3,1,1,0,1,1,0,2,1,0,0,1,1,1,1,0,1,2,3,1,2,3,2,0,0,1,2,3,2,0,0,0,0,0,1,0,0,-,-,,0,0,0,1,1,0,2,1,0,1,1,0,1,1,0,-,-,,1,2,3,2,1,0,1,0,0,0,1,1,1,0,0,1,1,0,1,1,0,1,2,3,1,1,0,1,1,0,-,-,,-,-,,1,1,0,-,-,,1,1,0,1,1,0,2,1,0,1,0,0,1,1,0,2,1,0,1,0,0,1,0,0,1,1,0,1,1,0,2,1,0,1,1,0,2,1,0,1,1,0,1,1,0,-,-,,2,0,0,2,2,0,1,1,0,2,2,0,0,0,0,2,1,0,-,-,,1,0,0,-,-,,2,1,0,-,-,,-,-,,1,0,0,-,-,,1,1,0,2,1,0,1,1,0,2,2,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0
31.12,Swansea,0,3,Bournemouth,,1,3,1,1,0,0,0,0,0,0,1,1,0,3,3,1,1,0,2,1,0,0,0,0,0,2,1,0,2,1,0,2,1,1,2,1,1,2,1,2,1,0,0,1,1,2,0,0,-,-,,1,2,1,0,0,0,1,2,1,0,2,1,1,1,0,-,-,,0,1,1,3,2,0,1,1,0,1,1,0,1,0,0,2,1,0,2,1,0,1,3,1,1,2,1,1,2,1,-,-,,-,-,,2,1,0,-,-,,1,0,0,0,1,1,2,0,0,0,1,1,1,2,1,1,2,1,1,1,0,1,0,0,2,2,0,0,2,1,1,2,1,0,1,1,1,2,1,1,2,1,0,2,1,-,-,,0,1,1,1,2,1,1,3,1,1,1,0,1,2,1,1,0,0,-,-,,1,1,0,-,-,,1,2,1,-,-,,-,-,,0,1,1,-,-,,1,1,0,1,2,1,1,3,1,2,2,0,0,1,1,1,2,1,1,1,0,0,2,1,0,2,1
31.12,Liverpool,1,0,Man City,,3,1,1,2,0,1,0,2,0,1,1,0,2,1,1,2,2,0,1,1,0,1,4,0,2,2,0,2,1,1,3,1,1,2,2,0,2,1,1,2,2,0,1,3,0,2,2,0,-,-,,1,2,0,0,1,0,1,2,0,2,0,1,3,0,1,-,-,,1,2,0,2,1,1,2,2,0,1,1,0,1,2,0,2,2,0,2,2,0,2,2,0,1,2,0,2,2,0,-,-,,-,-,,1,2,0,-,-,,1,1,0,2,2,0,2,1,1,2,2,0,1,2,0,3,1,1,2,2,0,0,1,0,1,1,0,2,1,1,1,1,0,3,2,1,2,1,1,1,1,0,1,2,0,-,-,,2,1,1,2,3,0,3,2,1,2,4,0,1,2,0,1,2,0,-,-,,2,1,1,-,-,,1,2,0,-,-,,-,-,,2,2,0,-,-,,2,1,1,2,3,0,1,1,0,2,2,0,1,2,0,1,2,0,2,1,1,2,2,0,2,2,0
01.01,Watford,1,4,Tottenham,,0,2,1,1,3,1,0,1,1,0,2,1,1,3,1,1,3,1,1,2,1,2,2,0,0,2,1,1,2,1,1,1,0,1,3,1,1,1,0,1,2,1,1,1,0,0,2,1,-,-,,0,2,1,1,3,1,1,2,1,1,2,1,1,2,1,-,-,,1,2,1,0,1,1,1,2,1,2,2,0,0,1,1,1,2,1,1,2,1,1,3,1,2,2,0,0,2,1,-,-,,-,-,,1,3,1,-,-,,1,1,0,0,3,1,1,1,0,0,2,1,0,2,1,1,2,1,1,2,1,1,0,0,1,2,1,1,3,1,1,2,1,1,2,1,1,1,0,0,2,1,0,1,1,-,-,,1,2,1,2,2,0,2,3,1,1,2,1,0,1,1,1,1,0,-,-,,0,2,1,-,-,,1,1,0,-,-,,-,-,,1,2,1,-,-,,1,2,1,1,3,1,1,2,1,2,2,0,0,2,1,0,2,1,1,3,1,0,1,1,1,2,1
01.01,Arsenal,2,0,Crystal Palace,,4,0,1,2,0,3,3,1,1,2,0,3,2,0,3,3,1,1,2,0,3,1,1,0,2,0,3,3,1,1,2,0,3,3,1,1,1,0,1,1,0,1,3,0,1,3,2,1,-,-,,3,1,1,3,1,1,2,0,3,2,0,3,1,1,0,-,-,,2,1,1,1,0,1,2,0,3,2,1,1,2,1,1,2,0,3,2,1,1,3,1,1,1,1,0,2,0,3,-,-,,-,-,,2,0,3,-,-,,1,1,0,3,1,1,3,0,1,3,0,1,1,0,1,2,1,1,1,0,1,0,0,0,2,0,3,3,1,1,1,0,1,2,0,3,3,0,1,1,1,0,3,1,1,-,-,,2,0,3,2,1,1,5,1,1,2,2,0,3,0,1,2,0,3,-,-,,2,0,3,-,-,,2,0,3,-,-,,-,-,,3,1,1,-,-,,2,0,3,2,0,3,2,0,3,2,2,0,2,0,3,2,0,3,1,0,1,2,0,3,3,1,1
Subtotal,,,,,,,,7,,,9,,,8,,,10,,,11,,,4,,,6,,,3,,,8,,,11,,,12,,,5,,,11,,,5,,,5,,,6,,,0,,,6,,,4,,,7,,,8,,,5,,,0,,,9,,,5,,,7,,,5,,,8,,,7,,,5,,,9,,,4,,,9,,,0,,,0,,,7,,,0,,,2,,,5,,,5,,,6,,,5,,,6,,,4,,,7,,,7,,,7,,,6,,,8,,,6,,,6,,,6,,,0,,,9,,,7,,,8,,,4,,,7,,,6,,,0,,,8,,,0,,,6,,,0,,,0,,,5,,,0,,,8,,,10,,,9,,,3,,,11,,,7,,,6,,,7,,,5
02.01,Middlesbrough,0,0,Leicester,,2,0,0,0,0,3,0,0,3,1,0,0,1,2,0,1,1,1,1,2,0,2,0,0,1,1,1,1,0,0,2,1,0,2,1,0,1,2,0,1,0,0,1,1,1,2,1,0,-,-,,2,1,0,2,0,0,1,0,0,1,0,0,1,0,0,-,-,,0,0,3,2,1,0,1,1,1,0,1,0,1,0,0,0,1,0,2,1,0,1,1,1,1,1,1,2,1,0,-,-,,-,-,,1,0,0,-,-,,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,2,2,1,2,1,0,1,1,1,2,0,0,1,1,1,0,1,0,-,-,,1,1,1,1,2,0,1,0,0,3,1,0,1,0,0,1,0,0,-,-,,1,1,1,-,-,,1,1,1,-,-,,-,-,,1,1,1,-,-,,1,1,1,1,1,1,1,0,0,2,2,1,0,1,0,1,0,0,1,0,0,1,0,0,2,2,1
02.01,Everton,3,0,Southampton,,2,0,1,1,0,1,1,0,1,1,0,1,2,2,0,1,1,0,2,1,1,4,0,1,2,0,1,2,0,1,2,0,1,2,0,1,1,1,0,2,1,1,3,2,1,0,1,0,-,-,,1,1,0,1,0,1,2,0,1,1,0,1,2,0,1,-,-,,2,1,1,1,1,0,1,2,0,1,0,1,1,0,1,2,0,1,1,1,0,2,1,1,2,0,1,2,0,1,-,-,,-,-,,3,1,1,-,-,,0,0,0,1,1,0,2,0,1,2,1,1,1,0,1,2,0,1,3,0,3,0,0,0,2,0,1,2,1,1,1,0,1,2,1,1,2,0,1,1,1,0,1,1,0,-,-,,2,0,1,2,1,1,0,0,0,2,0,1,2,0,1,2,0,1,-,-,,2,1,1,-,-,,2,1,1,-,-,,-,-,,2,0,1,-,-,,1,1,0,2,1,1,2,1,1,2,2,0,2,0,1,2,0,1,1,1,0,3,1,1,2,1,1
02.01,Man City,2,1,Burnley,,3,1,1,2,0,1,3,0,1,3,0,1,4,0,1,3,0,1,3,0,1,1,0,1,2,0,1,4,1,1,4,0,1,3,0,1,2,1,3,3,0,1,2,0,1,4,0,1,-,-,,3,0,1,3,0,1,2,0,1,2,0,1,2,1,3,-,-,,4,0,1,3,1,1,3,1,1,2,0,1,3,0,1,3,0,1,2,0,1,3,0,1,3,1,1,4,0,1,-,-,,-,-,,4,0,1,-,-,,2,0,1,3,0,1,4,0,1,3,0,1,3,0,1,2,0,1,3,0,1,2,0,1,2,0,1,3,0,1,3,0,1,3,1,1,3,0,1,2,1,3,2,0,1,-,-,,3,0,1,3,1,1,3,1,1,4,0,1,3,0,1,2,0,1,-,-,,2,0,1,-,-,,3,0,1,-,-,,-,-,,3,0,1,-,-,,2,0,1,3,0,1,3,1,1,2,2,0,3,0,1,5,1,1,3,0,1,2,0,1,4,1,1
02.01,Sunderland,2,2,Liverpool,,1,2,0,1,2,0,0,2,0,1,3,0,1,4,0,1,2,0,1,2,0,2,0,0,0,3,0,1,2,0,1,1,1,1,3,0,1,4,0,0,3,0,0,2,0,2,3,0,-,-,,2,1,0,0,3,0,1,2,0,0,3,0,1,3,0,-,-,,1,2,0,1,1,1,1,2,0,1,1,1,0,2,0,0,3,0,1,3,0,1,2,0,1,2,0,0,3,0,-,-,,-,-,,1,3,0,-,-,,0,0,1,0,3,0,2,1,0,1,2,0,1,2,0,1,1,1,1,2,0,0,1,0,1,3,0,1,2,0,0,2,0,1,3,0,1,3,0,1,3,0,0,2,0,-,-,,1,3,0,1,1,1,0,6,0,1,0,0,1,0,0,1,0,0,-,-,,1,3,0,-,-,,1,2,0,-,-,,-,-,,1,1,1,-,-,,1,3,0,0,4,0,1,3,0,2,2,3,1,3,0,1,2,0,0,2,0,1,2,0,1,2,0
02.01,West Brom,3,1,Hull,,2,0,1,2,0,1,1,0,1,2,0,1,3,1,3,2,1,1,1,0,1,0,0,0,1,0,1,3,1,3,3,0,1,2,1,1,2,1,1,2,0,1,3,1,3,2,0,1,-,-,,2,0,1,2,1,1,2,0,1,2,0,1,4,0,1,-,-,,3,0,1,2,0,1,2,0,1,2,1,1,2,0,1,3,1,3,2,2,0,2,0,1,2,0,1,2,0,1,-,-,,-,-,,2,0,1,-,-,,1,0,1,2,1,1,3,1,3,1,1,0,2,0,1,0,0,0,2,0,1,1,0,1,2,0,1,2,0,1,2,1,1,2,0,1,1,0,1,2,0,1,1,0,1,-,-,,1,1,0,2,1,1,1,1,0,3,0,1,1,0,1,2,0,1,-,-,,2,0,1,-,-,,2,0,1,-,-,,-,-,,0,0,0,-,-,,2,0,1,2,0,1,2,0,1,2,2,0,2,0,1,0,0,0,2,0,1,2,0,1,1,0,1
02.01,West Ham,0,2,Man Utd,,1,2,1,1,3,1,0,1,1,0,2,3,1,3,1,1,1,0,1,2,1,1,1,0,1,2,1,1,2,1,2,1,0,1,2,1,0,2,3,2,3,1,1,1,0,2,1,0,-,-,,1,1,0,0,3,1,1,2,1,1,2,1,1,1,0,-,-,,0,2,3,2,0,0,1,2,1,1,1,0,0,1,1,0,1,1,0,3,1,1,2,1,1,1,0,1,3,1,-,-,,-,-,,2,2,0,-,-,,1,1,0,1,2,1,2,2,0,1,1,0,1,1,0,1,2,1,1,2,1,0,1,1,1,2,1,0,2,3,1,1,0,-,-,,1,1,0,1,2,1,0,1,1,-,-,,1,1,0,2,2,0,0,1,1,2,1,0,0,1,1,1,1,0,-,-,,1,2,1,-,-,,1,2,1,-,-,,-,-,,1,2,1,-,-,,1,2,1,1,2,1,1,2,1,2,2,0,1,2,1,1,1,0,1,1,0,1,3,1,1,0,0
03.01,Bournemouth,3,3,Arsenal,,1,2,0,2,4,0,0,3,0,1,2,0,1,1,1,2,1,0,1,2,0,0,0,1,0,1,0,2,2,1,1,2,0,1,2,0,2,1,0,0,2,0,1,2,0,1,2,0,-,-,,1,2,0,0,3,0,0,1,0,1,2,0,1,1,1,-,-,,1,3,0,2,1,0,2,2,1,1,2,0,0,2,0,0,1,0,1,2,0,1,0,0,1,2,0,0,3,0,-,-,,-,-,,1,3,0,-,-,,1,0,0,1,2,0,1,2,0,0,2,0,1,2,0,1,2,0,1,2,0,1,0,0,1,2,0,1,2,0,1,2,0,1,3,0,1,1,1,0,1,0,0,2,0,-,-,,1,2,0,2,2,1,2,1,0,1,1,1,0,2,0,0,1,0,-,-,,2,2,1,-,-,,0,3,0,-,-,,-,-,,0,2,0,-,-,,0,2,0,1,2,0,1,2,0,2,2,1,0,2,0,1,1,1,1,2,0,1,1,1,1,2,0
03.01,Crystal Palace,1,2,Swansea,,2,1,0,2,0,0,1,0,0,2,0,0,1,0,0,1,0,0,2,0,0,3,1,0,1,0,0,3,0,0,2,2,0,3,0,0,2,0,0,2,0,0,1,0,0,3,0,0,-,-,,2,1,0,2,0,0,2,1,0,2,0,0,0,1,1,-,-,,2,0,0,3,1,0,2,1,0,3,0,0,1,0,0,2,0,0,1,1,0,2,0,0,2,1,0,2,0,0,-,-,,-,-,,2,0,0,-,-,,1,0,0,2,0,0,2,0,0,2,0,0,3,2,0,1,1,0,3,0,0,1,0,0,1,0,0,2,0,0,2,1,0,2,0,0,2,0,0,3,1,0,2,0,0,-,-,,2,1,0,2,1,0,0,0,0,4,1,0,1,0,0,2,1,0,-,-,,1,1,0,-,-,,1,0,0,-,-,,-,-,,1,1,0,-,-,,2,0,0,2,0,0,2,0,0,2,2,0,1,0,0,2,0,0,2,0,0,2,0,0,2,0,0
03.01,Stoke,2,0,Watford,,2,1,1,3,2,1,1,0,1,1,0,1,2,2,0,1,1,0,1,0,1,2,0,3,1,1,0,2,1,1,2,0,3,2,0,3,1,1,0,2,0,3,2,1,1,1,0,1,-,-,,2,1,1,3,0,1,1,0,1,2,2,0,0,1,0,-,-,,2,0,3,2,1,1,2,1,1,2,1,1,2,0,3,2,0,3,1,1,0,2,0,3,2,0,3,2,0,3,-,-,,-,-,,1,1,0,-,-,,2,2,0,1,0,1,2,1,1,1,1,0,1,1,0,1,1,0,1,0,1,1,0,1,1,1,0,1,0,1,2,1,1,2,1,1,2,1,1,2,1,1,2,0,3,-,-,,2,1,1,2,1,1,0,0,0,2,0,3,0,1,0,1,0,1,-,-,,2,1,1,-,-,,2,1,1,-,-,,-,-,,2,1,1,-,-,,2,1,1,2,1,1,2,1,1,2,2,0,2,1,1,2,0,3,1,0,1,1,0,1,2,0,3
04.01,Tottenham,2,0,Chelsea,,1,2,0,3,3,0,0,2,0,1,2,0,2,2,0,1,1,0,1,1,0,0,1,0,0,0,0,2,1,1,1,3,0,1,3,0,1,3,0,0,1,0,1,3,0,2,1,1,-,-,,2,1,1,1,3,0,0,2,0,1,3,0,2,2,0,-,-,,1,2,0,1,0,1,2,2,0,1,1,0,1,2,0,1,3,0,2,1,1,1,2,0,1,2,0,2,2,0,-,-,,-,-,,2,4,0,-,-,,1,1,0,1,2,0,1,1,0,2,1,1,1,2,0,1,1,0,1,2,0,0,1,0,2,2,0,1,1,0,1,1,0,1,3,0,2,2,0,1,1,0,1,1,0,-,-,,1,1,0,2,3,0,2,1,1,3,1,1,0,3,0,0,1,0,-,-,,0,0,0,-,-,,1,3,0,-,-,,-,-,,1,0,1,-,-,,1,2,0,1,2,0,0,3,0,2,2,0,1,0,1,1,2,0,1,1,0,1,1,0,2,3,0
Subtotal,,,,,,,,5,,,8,,,8,,,7,,,6,,,3,,,5,,,6,,,5,,,9,,,7,,,7,,,7,,,7,,,7,,,4,,,0,,,4,,,5,,,5,,,4,,,7,,,0,,,12,,,5,,,6,,,5,,,7,,,9,,,3,,,8,,,7,,,7,,,0,,,0,,,3,,,0,,,3,,,5,,,7,,,4,,,4,,,5,,,8,,,4,,,5,,,8,,,4,,,5,,,5,,,7,,,6,,,0,,,4,,,6,,,3,,,8,,,4,,,4,,,0,,,7,,,0,,,6,,,0,,,0,,,7,,,0,,,5,,,6,,,5,,,5,,,6,,,6,,,3,,,6,,,7
14.01,Tottenham,4,0,West Brom,,3,0,1,2,0,1,2,0,1,2,0,1,1,0,1,2,0,1,3,0,1,2,1,1,2,0,1,2,1,1,3,0,1,2,0,1,2,0,1,2,1,1,2,1,1,2,1,1,-,-,,1,1,0,2,0,1,2,0,1,2,1,1,3,1,1,-,-,,3,1,1,2,1,1,2,0,1,2,1,1,1,0,1,3,0,1,2,1,1,3,1,1,2,0,1,2,1,1,-,-,,-,-,,2,0,1,-,-,,2,0,1,2,0,1,2,0,1,3,0,1,2,0,1,2,0,1,3,0,1,1,0,1,3,1,1,3,1,1,2,0,1,2,0,1,2,0,1,3,1,1,3,0,1,-,-,,2,0,1,2,1,1,3,1,1,1,2,0,3,0,1,2,0,1,-,-,,2,0,1,2,1,1,3,1,1,-,-,,2,0,1,2,0,1,-,-,,2,0,1,3,1,1,3,0,1,2,2,0,2,0,1,2,1,1,2,1,1,2,1,1,3,0,1
14.01,Burnley,1,0,Southampton,,2,0,1,2,1,1,1,0,3,1,0,3,1,2,0,2,0,1,1,2,0,2,1,1,2,0,1,2,1,1,2,1,1,1,1,0,1,1,0,1,0,3,1,0,3,1,1,0,-,-,,2,1,1,2,0,1,1,1,0,1,1,0,1,0,3,-,-,,2,0,1,1,0,3,2,1,1,1,1,0,1,0,3,2,1,1,1,1,0,2,0,1,2,1,1,2,1,1,-,-,,-,-,,1,0,3,-,-,,1,1,0,1,1,0,2,1,1,1,1,0,1,1,0,2,1,1,2,1,1,1,0,3,1,1,0,2,0,1,1,1,0,1,1,0,2,1,1,1,1,0,1,3,0,-,-,,1,1,0,1,1,0,1,1,0,1,2,0,0,1,0,1,0,3,-,-,,1,0,3,1,1,0,1,1,0,-,-,,1,0,3,1,2,0,-,-,,1,0,3,2,1,1,1,0,3,2,2,0,1,0,3,0,1,0,1,0,3,1,1,0,2,2,0
14.01,Hull,3,1,Bournemouth,,1,2,0,0,1,0,1,0,1,0,1,0,1,2,0,1,1,0,2,1,1,1,3,0,0,1,0,1,3,0,1,3,0,1,1,0,1,2,0,0,1,0,1,2,0,0,3,0,-,-,,1,1,0,0,1,0,0,1,0,0,1,0,1,2,0,-,-,,1,2,0,1,1,0,1,1,0,0,1,0,0,1,0,1,2,0,2,2,0,2,1,1,1,2,0,0,2,0,-,-,,-,-,,2,2,0,-,-,,1,2,0,1,2,0,2,0,1,1,2,0,2,2,0,2,2,0,0,0,0,1,0,1,1,3,0,1,1,0,1,2,0,1,1,0,1,2,0,2,1,1,1,0,1,-,-,,1,1,0,1,3,0,0,1,0,1,2,0,0,1,0,1,1,0,-,-,,1,1,0,1,2,0,0,2,0,-,-,,1,1,0,2,1,1,-,-,,1,2,0,1,1,0,2,1,1,2,2,0,0,1,0,1,2,0,0,1,0,1,1,0,1,0,1
14.01,Sunderland,1,3,Stoke,,1,1,0,1,1,0,0,0,0,1,0,0,1,1,0,2,1,0,2,1,0,2,0,0,0,0,0,2,0,0,1,1,0,2,1,0,1,1,0,1,0,0,0,1,1,2,1,0,-,-,,2,1,0,1,1,0,1,1,0,1,1,0,1,0,0,-,-,,1,1,0,1,2,1,2,1,0,2,2,0,1,0,0,1,0,0,0,2,1,1,2,1,2,2,0,2,1,0,-,-,,-,-,,2,1,0,-,-,,1,0,0,1,1,0,1,1,0,2,1,0,2,1,0,1,0,0,1,0,0,1,0,0,1,0,0,2,0,0,2,1,0,1,0,0,1,0,0,2,0,0,1,1,0,-,-,,2,1,0,1,1,0,0,1,1,2,0,0,2,2,0,2,1,0,-,-,,2,1,0,2,0,0,0,0,0,-,-,,1,0,0,1,1,0,-,-,,2,2,0,1,1,0,1,0,0,2,2,0,0,0,0,1,0,0,2,2,0,0,0,0,1,1,0
14.01,Swansea,0,4,Arsenal,,1,2,1,1,3,1,0,2,1,0,3,1,0,2,1,0,3,1,1,2,1,2,0,0,1,2,1,1,3,1,0,2,1,1,3,1,1,2,1,0,2,1,0,3,1,0,2,1,-,-,,0,3,1,0,3,1,0,2,1,0,2,1,1,1,0,-,-,,1,3,1,0,1,1,1,3,1,0,3,1,0,2,1,0,2,1,1,3,1,1,3,1,1,3,1,0,3,1,-,-,,-,-,,0,2,1,-,-,,0,2,1,0,2,1,0,3,1,0,2,1,0,2,1,1,3,1,1,1,0,0,1,1,0,2,1,1,3,1,0,2,1,1,3,1,1,3,1,1,2,1,1,1,0,-,-,,0,2,1,0,3,1,0,2,1,1,1,0,0,2,1,0,2,1,-,-,,1,2,1,1,3,1,0,2,1,-,-,,0,2,1,0,3,1,-,-,,0,3,1,1,2,1,1,3,1,2,2,0,0,2,1,0,3,1,1,2,1,1,3,1,1,4,1
14.01,Watford,0,0,Middlesbrough,,2,1,0,2,2,1,1,0,0,1,2,0,3,1,0,1,1,1,1,0,0,1,2,0,1,1,1,1,1,1,1,2,0,1,2,0,1,0,0,1,0,0,0,0,3,0,1,0,-,-,,1,2,0,2,2,1,1,0,0,1,0,0,1,1,1,-,-,,2,1,0,1,1,1,0,0,3,2,0,0,1,0,0,2,0,0,1,1,1,0,1,0,1,1,1,0,1,0,-,-,,-,-,,1,1,1,-,-,,0,0,3,0,0,3,2,2,1,2,1,0,1,1,1,2,1,0,0,0,3,3,1,0,1,1,1,2,0,0,1,1,1,1,1,1,1,1,1,2,0,0,2,1,0,-,-,,1,1,1,1,2,0,1,2,0,2,0,0,1,1,1,1,1,1,-,-,,2,1,0,1,1,1,2,1,0,-,-,,2,1,0,1,1,1,-,-,,2,1,0,0,1,0,1,1,1,2,2,1,2,1,0,1,2,0,1,0,0,1,1,1,0,0,3
14.01,West Ham,3,0,Crystal Palace,,2,0,1,3,3,0,1,0,1,1,1,0,2,2,0,2,2,0,2,1,1,2,0,1,1,1,0,0,3,0,2,0,1,2,2,0,3,1,1,2,1,1,0,0,0,2,0,1,-,-,,2,1,1,2,2,0,2,1,1,0,1,0,1,2,0,-,-,,2,0,1,2,2,0,1,1,0,1,1,0,1,0,1,1,1,0,2,1,1,0,1,0,1,1,0,1,1,0,-,-,,-,-,,2,1,1,-,-,,1,1,0,2,2,0,1,1,0,0,0,0,2,0,1,2,0,1,1,1,0,0,0,0,1,1,0,2,2,0,2,1,1,1,0,1,1,2,0,2,1,1,2,1,1,-,-,,3,1,1,1,2,0,1,1,0,1,2,0,1,2,0,1,2,0,-,-,,1,2,0,2,1,1,2,0,1,-,-,,2,2,0,1,1,0,-,-,,2,1,1,1,1,0,2,1,1,2,2,0,2,2,0,2,1,1,1,1,0,2,2,0,0,2,0
14.01,Leicester,0,3,Chelsea,,1,3,1,1,3,1,1,2,1,0,2,1,1,2,1,1,3,1,0,1,1,0,0,0,1,2,1,1,2,1,1,3,1,1,3,1,1,3,1,0,2,1,1,3,1,1,1,0,-,-,,1,2,1,1,4,1,0,2,1,0,2,1,0,1,1,-,-,,0,2,1,1,3,1,1,2,1,0,1,1,0,1,1,1,3,1,1,3,1,1,2,1,1,2,1,1,3,1,-,-,,-,-,,1,3,1,-,-,,0,2,1,0,2,1,1,2,1,1,3,1,1,2,1,1,3,1,1,3,1,0,1,1,1,3,1,0,2,1,0,1,1,1,3,1,1,2,1,1,3,1,1,2,1,-,-,,0,1,1,1,3,1,0,3,3,2,1,0,0,3,3,0,2,1,-,-,,0,1,1,1,1,0,0,2,1,-,-,,1,1,0,1,2,1,-,-,,0,2,1,1,4,1,1,2,1,2,2,0,1,3,1,1,2,1,0,2,1,0,2,1,1,2,1
15.01,Everton,4,0,Man City,,1,3,0,1,3,0,0,0,0,1,2,0,1,3,0,1,1,0,1,3,0,2,0,1,0,2,0,2,3,0,0,2,0,2,1,1,0,2,0,0,2,0,0,2,0,1,2,0,-,-,,1,2,0,1,1,0,0,2,0,1,1,0,1,2,0,-,-,,1,1,0,1,1,0,2,3,0,2,1,1,0,1,0,1,0,1,0,3,0,2,1,1,2,1,1,2,2,0,-,-,,-,-,,0,3,0,-,-,,0,2,0,0,2,0,0,2,0,2,2,0,1,2,0,1,3,0,1,1,0,0,2,0,0,2,0,1,1,0,1,2,0,1,2,0,1,0,1,1,3,0,1,3,0,-,-,,1,2,0,1,1,0,1,2,0,3,2,1,0,3,0,2,1,1,-,-,,2,1,1,1,2,0,1,1,0,-,-,,2,1,1,0,3,0,-,-,,1,2,0,0,3,0,1,3,0,2,2,0,1,2,0,1,2,0,1,2,0,1,3,0,1,3,0
15.01,Man Utd,1,1,Liverpool,,2,2,1,2,2,1,1,0,0,1,1,3,0,2,0,1,1,3,1,2,0,4,0,0,1,2,0,2,2,1,2,2,1,2,1,0,2,1,0,2,0,0,1,1,3,2,1,0,-,-,,2,2,1,2,1,0,2,0,0,1,1,3,1,1,3,-,-,,9,1,0,1,1,3,2,2,1,2,0,0,1,0,0,1,1,3,2,1,0,3,1,0,2,1,0,2,1,0,-,-,,-,-,,2,0,0,-,-,,1,1,3,1,1,3,0,2,0,2,1,0,2,1,0,2,1,0,2,1,0,1,0,0,1,2,0,2,2,1,2,1,0,1,1,3,2,0,0,2,2,1,2,0,0,-,-,,1,1,3,2,1,0,2,3,0,1,2,0,0,2,0,2,0,0,-,-,,1,1,3,2,1,0,2,1,0,-,-,,2,1,0,1,0,0,-,-,,1,1,3,2,3,0,1,1,3,2,2,1,2,1,0,2,0,0,1,1,3,2,2,1,2,0,0
Subtotal,,,,,,,,6,,,6,,,8,,,9,,,3,,,8,,,5,,,4,,,5,,,6,,,6,,,4,,,4,,,7,,,13,,,3,,,0,,,5,,,5,,,4,,,6,,,9,,,0,,,5,,,11,,,8,,,4,,,7,,,8,,,6,,,7,,,6,,,4,,,0,,,0,,,8,,,0,,,9,,,9,,,6,,,3,,,5,,,5,,,6,,,7,,,4,,,5,,,5,,,8,,,6,,,6,,,4,,,0,,,8,,,3,,,6,,,1,,,6,,,8,,,0,,,10,,,4,,,4,,,0,,,6,,,5,,,0,,,10,,,4,,,12,,,2,,,6,,,4,,,9,,,5,,,7
21.01,Liverpool,2,3,Swansea,,3,0,0,2,0,0,3,0,0,3,0,0,3,0,0,3,0,0,3,0,0,0,2,1,3,0,0,3,1,0,4,0,0,2,0,0,3,0,0,3,0,0,3,0,0,3,0,0,-,-,,4,0,0,1,0,0,3,0,0,3,0,0,4,1,0,-,-,,4,0,0,3,0,0,4,1,0,3,0,0,3,0,0,4,0,0,2,0,0,3,1,0,3,0,0,3,0,0,-,-,,-,-,,3,0,0,-,-,,3,0,0,2,0,0,4,1,0,3,0,0,3,0,0,3,0,0,3,0,0,0,0,0,4,0,0,3,0,0,3,0,0,4,1,0,4,0,0,2,0,0,2,0,0,-,-,,-,-,,2,1,0,3,0,0,4,0,0,4,0,0,2,0,0,-,-,,3,0,0,2,0,0,3,0,0,-,-,,1,1,0,1,1,0,-,-,,3,0,0,3,0,0,2,0,0,2,2,0,2,0,0,4,0,0,4,0,0,3,0,0,3,0,0
21.01,Bournemouth,2,2,Watford,,2,1,0,1,1,1,1,0,0,1,0,0,2,1,0,1,1,1,2,1,0,4,1,0,1,1,1,2,1,0,3,1,0,2,1,0,1,0,0,1,0,0,2,1,0,2,0,0,-,-,,2,1,0,0,1,0,2,1,0,2,1,0,1,0,0,-,-,,2,0,0,2,0,0,2,0,0,2,1,0,2,1,0,2,1,0,1,1,1,1,1,1,1,1,1,2,0,0,-,-,,-,-,,2,1,0,-,-,,1,0,0,2,1,0,2,1,0,1,0,0,2,1,0,2,1,0,2,1,0,2,0,0,2,2,3,2,0,0,2,1,0,2,1,0,2,1,0,1,0,0,2,1,0,-,-,,-,-,,2,1,0,1,0,0,1,2,0,1,0,0,1,0,0,-,-,,2,1,0,1,1,1,1,1,1,-,-,,2,1,0,1,0,0,-,-,,2,1,0,2,1,0,3,1,0,2,2,3,2,0,0,2,1,0,2,0,0,2,1,0,2,0,0
21.01,Crystal Palace,0,1,Everton,,1,2,1,1,1,0,0,1,3,0,1,3,0,1,3,2,1,0,1,1,0,0,4,1,1,1,0,1,3,1,0,2,1,0,1,3,1,2,1,0,2,1,0,4,1,0,2,1,-,-,,1,3,1,1,0,0,1,2,1,1,2,1,0,2,1,-,-,,0,2,1,1,1,0,2,1,0,0,2,1,0,1,3,0,2,1,1,3,1,0,2,1,1,3,1,0,2,1,-,-,,-,-,,0,2,1,-,-,,1,2,1,0,1,3,2,0,0,0,1,3,1,2,1,1,2,1,0,2,1,0,0,0,2,1,0,1,2,1,1,2,1,1,1,0,0,2,1,1,1,0,1,1,0,-,-,,-,-,,1,3,1,1,1,0,1,3,1,0,2,1,0,1,3,-,-,,0,2,1,1,3,1,0,2,1,-,-,,1,3,1,0,2,1,-,-,,1,1,0,1,2,1,0,1,3,2,2,0,0,3,1,1,3,1,1,1,0,0,2,1,1,4,1
21.01,Middlesbrough,1,3,West Ham,,2,2,0,2,0,0,0,0,0,1,1,0,2,0,0,0,0,0,1,2,1,1,1,0,1,2,1,2,1,0,2,1,0,1,1,0,1,1,0,0,1,1,0,0,0,0,2,1,-,-,,0,0,0,0,0,0,2,2,0,1,1,0,1,0,0,-,-,,2,1,0,2,0,0,1,1,0,1,1,0,1,0,0,1,1,0,1,0,0,1,1,0,2,1,0,1,0,0,-,-,,-,-,,1,1,0,-,-,,1,1,0,0,1,1,1,0,0,1,1,0,1,1,0,2,0,0,1,0,0,1,0,0,1,1,0,1,1,0,2,1,0,1,1,0,2,1,0,0,0,0,0,1,1,-,-,,-,-,,2,1,0,1,2,1,2,0,0,0,0,0,2,1,0,-,-,,1,1,0,2,1,0,1,1,0,-,-,,0,0,0,0,1,1,-,-,,0,1,1,2,1,0,3,0,0,2,2,0,1,0,0,2,0,0,1,0,0,1,1,0,1,1,0
21.01,Stoke,1,1,Man Utd,,1,2,0,1,3,0,1,2,0,1,2,0,1,2,0,0,2,0,1,2,0,1,1,3,0,2,0,2,2,1,1,1,3,2,2,1,1,3,0,1,1,3,2,1,0,0,2,0,-,-,,2,2,1,1,0,0,1,2,0,1,3,0,2,2,1,-,-,,1,2,0,1,1,3,1,2,0,0,2,0,1,2,0,2,1,0,0,2,0,1,2,0,1,1,3,0,2,0,-,-,,-,-,,1,3,0,-,-,,0,2,0,1,1,3,2,2,1,1,2,0,0,2,0,1,2,0,2,2,1,0,1,0,1,2,0,1,2,0,0,1,0,1,2,0,1,3,0,1,3,0,0,3,0,-,-,,-,-,,1,2,0,1,2,0,1,0,0,1,2,0,0,1,0,-,-,,0,1,0,1,1,3,0,2,0,-,-,,1,1,3,1,1,3,-,-,,1,2,0,1,2,0,1,2,0,2,2,1,0,2,0,1,1,3,1,1,3,1,2,0,1,2,0
21.01,West Brom,2,0,Sunderland,,2,0,3,2,0,3,0,0,0,1,0,1,2,1,1,2,2,0,1,0,1,2,0,3,1,0,1,2,1,1,2,1,1,3,0,1,2,0,3,1,0,1,2,0,3,0,1,0,-,-,,2,1,1,2,0,3,2,0,3,1,1,0,3,0,1,-,-,,3,0,1,3,1,1,2,1,1,2,1,1,2,0,3,3,0,1,1,1,0,2,2,0,2,0,3,3,1,1,-,-,,-,-,,1,1,0,-,-,,1,0,1,1,0,1,3,1,1,1,0,1,2,1,1,2,0,3,1,1,0,1,0,1,2,0,3,2,0,3,2,1,1,2,0,3,2,0,3,2,0,3,3,0,1,-,-,,-,-,,2,1,1,2,1,1,4,1,1,1,1,0,1,0,1,-,-,,2,0,3,2,0,3,2,0,3,-,-,,1,1,0,1,1,0,-,-,,2,1,1,1,1,0,2,1,1,2,2,0,1,0,1,2,0,3,3,0,1,1,1,0,2,0,3
21.01,Man City,2,2,Tottenham,,1,2,0,2,2,3,1,2,0,3,2,0,1,3,0,1,1,1,2,1,0,1,3,0,2,2,3,1,3,0,1,3,0,2,1,0,2,2,3,2,1,0,1,2,0,1,3,0,-,-,,2,1,0,0,2,0,2,1,0,1,2,0,1,1,1,-,-,,1,2,0,1,2,0,2,2,3,1,3,0,2,1,0,1,2,0,2,2,3,1,1,1,1,1,1,2,2,3,-,-,,-,-,,2,2,3,-,-,,1,1,1,1,2,0,2,1,0,3,2,0,1,2,0,1,3,0,1,2,0,0,2,0,1,1,1,2,2,3,1,1,1,1,2,0,1,2,0,1,1,1,2,1,0,-,-,,-,-,,2,3,0,2,1,0,2,2,3,2,3,0,2,1,0,-,-,,1,1,1,3,1,0,1,1,1,-,-,,1,1,1,1,2,0,-,-,,1,2,0,2,2,3,1,1,1,2,2,3,3,1,0,2,3,0,1,2,0,1,2,0,2,1,0
21.01,Southampton,3,0,Leicester,,2,0,1,3,1,1,1,0,1,2,0,1,1,2,0,1,1,0,1,0,1,1,2,0,1,0,1,2,0,1,3,1,1,2,2,0,1,2,0,1,0,1,0,0,0,0,1,0,-,-,,2,0,1,0,0,0,2,0,1,1,1,0,1,1,0,-,-,,1,1,0,1,2,0,2,1,1,1,1,0,1,0,1,2,0,1,0,0,0,2,1,1,1,1,0,1,1,0,-,-,,-,-,,1,2,0,-,-,,1,1,0,1,1,0,3,2,1,2,0,1,1,1,0,1,1,0,2,1,1,0,2,0,2,1,1,1,1,0,2,1,1,1,0,1,2,1,1,1,2,0,1,1,0,-,-,,-,-,,2,2,0,2,1,1,3,0,3,1,2,0,1,0,1,-,-,,2,1,1,2,1,1,2,1,1,-,-,,2,2,0,1,0,1,-,-,,2,1,1,1,1,0,1,2,0,2,2,0,1,1,0,1,1,0,1,1,0,0,2,0,1,0,1
22.01,Arsenal,2,1,Burnley,,3,1,1,4,1,1,3,0,1,2,0,1,3,0,1,3,0,1,2,0,1,1,1,0,2,0,1,3,1,1,4,0,1,3,0,1,2,1,3,3,0,1,3,0,1,1,0,1,-,-,,3,0,1,4,0,1,3,0,1,3,1,1,2,1,3,-,-,,3,1,1,2,0,1,2,0,1,2,0,1,3,0,1,4,1,1,2,0,1,3,0,1,3,1,1,4,0,1,-,-,,-,-,,3,0,1,-,-,,2,0,1,3,1,1,4,2,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,3,0,1,3,0,1,3,0,1,4,1,1,2,1,3,3,0,1,3,0,1,-,-,,-,-,,3,0,1,3,1,1,3,0,1,3,0,1,2,0,1,-,-,,2,0,1,1,0,1,3,0,1,-,-,,3,1,1,2,0,1,-,-,,2,0,1,3,1,1,3,0,1,2,2,0,3,0,1,3,0,1,3,0,1,3,1,1,3,1,1
22.01,Chelsea,2,0,Hull,,3,0,1,5,0,1,2,0,3,2,0,3,4,0,1,3,0,1,2,0,3,5,0,1,3,0,1,4,0,1,6,0,1,5,0,1,4,1,1,3,0,1,3,0,1,2,0,3,-,-,,4,0,1,2,0,3,3,0,1,3,0,1,2,0,3,-,-,,4,0,1,4,1,1,3,0,1,4,1,1,3,0,1,4,0,1,2,1,1,3,0,1,4,0,1,4,0,1,-,-,,-,-,,3,1,1,-,-,,3,0,1,2,0,3,3,0,1,2,0,3,3,0,1,3,0,1,3,1,1,2,0,3,4,0,1,3,0,1,2,0,3,4,1,1,6,0,1,6,1,1,2,0,3,-,-,,-,-,,4,0,1,3,0,1,3,0,1,4,0,1,4,0,1,-,-,,2,0,3,2,0,3,4,0,1,-,-,,2,0,3,3,0,1,-,-,,3,0,1,4,0,1,3,0,1,2,2,0,3,0,1,3,0,1,2,0,3,4,0,1,5,0,1
Subtotal,,,,,,,,7,,,10,,,8,,,9,,,6,,,4,,,7,,,9,,,9,,,6,,,8,,,7,,,11,,,9,,,6,,,6,,,0,,,6,,,7,,,7,,,3,,,10,,,0,,,4,,,6,,,7,,,4,,,9,,,5,,,7,,,6,,,11,,,7,,,0,,,0,,,6,,,0,,,5,,,12,,,5,,,9,,,4,,,6,,,5,,,5,,,10,,,9,,,8,,,6,,,9,,,6,,,6,,,0,,,0,,,4,,,5,,,10,,,3,,,7,,,0,,,10,,,13,,,9,,,0,,,9,,,8,,,0,,,5,,,6,,,7,,,7,,,4,,,9,,,8,,,3,,,7
31.01,Arsenal,1,2,Watford,,3,0,0,2,0,0,2,0,0,2,0,0,2,1,0,3,1,0,2,0,0,2,0,0,2,1,0,3,1,0,2,1,0,3,1,0,3,0,0,2,0,0,2,1,0,4,0,0,-,-,,3,1,0,3,1,0,2,0,0,3,0,0,2,1,0,-,-,,1,0,0,2,0,0,3,1,0,2,1,0,2,0,0,3,0,0,2,0,0,3,0,0,2,0,0,3,0,0,-,-,,-,-,,2,0,0,-,-,,2,0,0,2,0,0,-,-,,2,0,0,2,0,0,2,1,0,2,1,0,2,0,0,2,0,0,3,0,0,2,0,0,4,1,0,2,1,0,2,0,0,3,0,0,-,-,,-,-,,2,1,0,2,0,0,3,0,0,3,0,0,2,0,0,-,-,,2,0,0,3,1,0,2,0,0,-,-,,3,1,0,2,0,0,-,-,,2,0,0,4,0,0,3,0,0,2,2,0,2,0,0,3,0,0,2,0,0,2,0,0,3,0,0
31.01,Bournemouth,0,2,Crystal Palace,,2,0,0,2,1,0,1,0,0,1,0,0,2,2,0,2,1,0,2,1,0,2,0,0,1,0,0,2,1,0,2,1,0,2,0,0,2,1,0,1,0,0,1,1,0,2,0,0,-,-,,2,0,0,2,0,0,1,1,0,1,1,0,2,0,0,-,-,,2,0,0,1,1,0,1,1,0,2,1,0,1,0,0,1,0,0,1,1,0,2,1,0,1,1,0,2,1,0,-,-,,-,-,,1,1,0,-,-,,1,1,0,1,1,0,-,-,,1,0,0,2,1,0,2,0,0,1,1,0,1,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,0,0,1,1,0,1,2,1,-,-,,-,-,,2,1,0,1,1,0,2,1,0,2,1,0,1,1,0,-,-,,2,0,0,-,-,,2,1,0,-,-,,0,1,1,1,0,0,-,-,,2,1,0,3,1,0,2,1,0,2,2,0,0,1,1,2,2,0,1,0,0,1,1,0,2,1,0
31.01,Burnley,1,0,Leicester,,2,0,1,2,1,1,1,0,3,1,0,3,1,1,0,2,0,1,1,2,0,1,1,0,2,1,1,1,0,3,2,0,1,1,0,3,2,2,0,1,0,3,1,1,0,2,1,1,-,-,,2,1,1,1,0,3,1,2,0,1,1,0,1,0,3,-,-,,1,1,0,1,2,0,2,1,1,1,0,3,1,0,3,2,0,1,0,1,0,2,1,1,1,0,3,1,0,3,-,-,,-,-,,2,0,1,-,-,,2,1,1,1,1,0,-,-,,1,0,3,1,0,3,2,0,1,2,0,1,0,1,0,1,1,0,2,0,1,2,1,1,1,0,3,2,1,1,1,1,0,2,1,1,-,-,,-,-,,2,2,0,1,0,3,2,1,1,1,1,0,1,0,3,-,-,,1,0,3,1,1,0,1,0,3,-,-,,1,0,3,1,1,0,-,-,,2,0,1,2,1,1,2,0,1,2,2,0,1,0,3,1,0,3,2,1,1,1,1,0,2,0,1
31.01,Middlesbrough,1,1,West Brom,,1,1,3,0,0,1,0,0,1,1,1,3,0,2,0,0,0,1,1,1,3,2,3,0,1,1,3,2,2,1,1,2,0,1,2,0,1,2,0,1,1,3,0,2,0,1,1,3,-,-,,1,1,3,1,0,0,1,1,3,1,2,0,0,0,1,-,-,,1,1,3,0,0,1,1,0,0,1,1,3,0,1,0,0,1,0,1,1,3,1,1,3,1,1,3,2,1,0,-,-,,-,-,,0,0,1,-,-,,0,1,0,0,0,1,-,-,,1,1,3,0,1,0,1,1,3,1,1,3,2,0,0,1,1,3,1,1,3,1,2,0,1,2,0,1,1,3,1,2,0,1,3,0,-,-,,-,-,,1,2,0,1,2,0,2,1,0,1,0,0,1,0,0,-,-,,1,1,3,2,0,0,1,1,3,-,-,,1,1,3,0,1,0,-,-,,1,1,3,1,2,0,1,1,3,2,2,1,1,1,3,1,0,0,1,1,3,0,0,1,1,1,3
31.01,Sunderland,0,0,Tottenham,,1,4,0,1,3,0,0,1,0,0,3,0,1,3,0,0,3,0,0,2,0,0,3,0,0,2,0,1,3,0,0,3,0,0,3,0,0,4,0,0,2,0,0,3,0,1,2,0,-,-,,0,2,0,0,3,0,0,2,0,0,3,0,0,2,0,-,-,,0,2,0,1,2,0,1,3,0,1,2,0,0,2,0,0,2,0,1,4,0,1,4,0,1,3,0,0,3,0,-,-,,-,-,,0,3,0,-,-,,0,2,0,1,3,0,-,-,,1,3,0,0,2,0,1,2,0,1,3,0,1,1,1,0,3,0,1,2,0,0,2,0,1,3,0,0,2,0,1,3,0,0,4,0,-,-,,-,-,,1,3,0,1,3,0,1,2,0,0,4,0,1,2,0,-,-,,0,2,0,1,2,0,0,3,0,-,-,,1,1,1,0,2,0,-,-,,0,2,0,1,3,0,1,3,0,2,2,1,2,0,0,1,2,0,0,2,0,1,2,0,1,3,0
31.01,Swansea,2,1,Southampton,,1,2,0,2,0,1,0,1,0,2,1,3,2,1,3,2,2,0,1,1,0,2,2,0,1,1,0,2,1,3,2,0,1,2,2,0,1,3,0,2,1,3,0,0,0,2,1,3,-,-,,2,1,3,1,1,0,2,0,1,1,1,0,2,2,0,-,-,,1,2,0,2,3,0,2,1,3,0,1,0,1,0,1,2,0,1,2,2,0,2,1,3,1,2,0,2,1,3,-,-,,-,-,,1,0,1,-,-,,2,1,3,0,1,0,-,-,,2,1,3,1,1,0,2,2,0,1,1,0,2,0,1,1,1,0,2,0,1,2,1,3,1,1,0,2,1,3,2,1,3,1,2,0,-,-,,-,-,,2,2,0,1,2,0,2,2,0,2,0,1,1,1,0,-,-,,1,1,0,1,1,0,1,0,1,-,-,,2,1,3,1,1,0,-,-,,1,1,0,1,2,0,4,0,1,2,2,0,2,1,3,1,1,0,1,1,0,1,0,1,1,0,1
31.01,Liverpool,1,1,Chelsea,,2,2,1,2,1,0,1,2,0,1,1,3,0,2,0,2,3,0,1,1,3,0,2,0,2,1,0,1,3,0,1,3,0,1,1,3,2,2,1,2,2,1,1,2,0,2,1,0,-,-,,1,2,0,0,3,0,1,2,0,1,2,0,1,1,3,-,-,,1,3,0,1,0,0,2,2,1,1,1,3,0,1,0,2,1,0,0,0,1,1,2,0,1,1,3,2,2,1,-,-,,-,-,,1,3,0,-,-,,0,0,1,1,2,0,-,-,,1,1,3,1,2,0,1,2,0,1,2,0,0,4,0,2,1,0,2,2,1,1,1,3,1,1,3,2,2,1,1,1,3,1,2,0,-,-,,-,-,,0,2,0,1,2,0,1,4,0,1,3,0,1,2,0,-,-,,1,0,0,1,1,3,0,1,0,-,-,,0,2,0,1,3,0,-,-,,1,2,0,1,3,0,1,1,3,2,2,1,1,3,0,0,2,0,1,2,0,1,1,3,1,2,0
01.02,West Ham,0,4,Man City,,1,2,1,0,1,1,0,2,1,1,2,1,1,2,1,1,1,0,1,3,1,2,1,0,1,2,1,1,4,1,0,2,1,1,2,1,2,3,1,0,3,1,1,2,1,2,2,0,-,-,,1,3,1,1,2,1,1,2,1,0,3,1,1,1,0,-,-,,1,2,1,0,1,1,2,4,1,1,1,0,1,2,1,1,2,1,1,2,1,1,3,1,1,2,1,1,3,1,-,-,,-,-,,1,2,1,-,-,,1,1,0,0,3,1,-,-,,1,2,1,1,2,1,2,0,0,2,2,0,2,2,0,1,3,1,1,3,1,1,2,1,1,2,1,1,3,1,0,2,1,1,1,0,-,-,,-,-,,1,2,1,2,2,0,1,2,1,1,2,1,0,2,1,-,-,,1,2,1,1,3,1,1,3,1,-,-,,1,1,0,2,2,0,-,-,,1,2,1,0,3,1,2,2,0,2,2,0,0,2,1,2,2,0,1,2,1,0,2,1,1,1,0
01.02,Man Utd,0,0,Hull,,3,0,0,3,0,0,1,0,0,4,0,0,3,0,0,3,0,0,3,0,0,2,0,0,2,0,0,3,0,0,2,1,0,3,0,0,2,0,0,3,1,0,3,1,0,3,0,0,-,-,,3,0,0,1,0,0,3,1,0,3,0,0,4,0,0,-,-,,2,0,0,2,0,0,2,0,0,3,0,0,2,0,0,3,1,0,2,1,0,3,0,0,3,0,0,3,0,0,-,-,,-,-,,3,0,0,-,-,,3,0,0,2,0,0,-,-,,2,0,0,2,0,0,3,0,0,2,1,0,1,0,0,2,0,0,2,0,0,2,0,0,4,1,0,3,1,0,3,0,0,3,1,0,-,-,,-,-,,2,1,0,2,0,0,3,0,0,3,0,0,3,0,0,-,-,,2,0,0,2,1,0,3,0,0,-,-,,3,0,0,2,0,0,-,-,,2,0,0,2,1,0,2,0,0,2,2,1,3,0,0,3,1,0,1,0,0,3,0,0,3,1,0
01.02,Stoke,1,1,Everton,,2,2,1,1,1,3,0,1,0,1,2,0,1,3,0,1,1,3,1,0,0,0,3,0,1,1,3,2,1,0,0,2,0,0,2,0,1,2,0,0,0,1,0,2,0,1,2,0,-,-,,1,1,3,0,1,0,0,2,0,1,2,0,0,1,0,-,-,,0,2,0,2,1,0,2,1,0,1,3,0,0,1,0,0,2,0,2,2,1,1,2,0,1,2,0,1,2,0,-,-,,-,-,,1,3,0,-,-,,0,0,1,0,1,0,-,-,,1,2,0,1,1,3,2,1,0,0,1,0,1,0,0,3,1,0,1,1,3,2,1,0,2,1,0,0,2,0,1,1,3,1,1,3,-,-,,-,-,,1,3,0,1,0,0,1,2,0,0,1,0,0,1,0,-,-,,1,1,3,0,0,1,1,2,0,-,-,,0,1,0,0,2,0,-,-,,1,1,3,1,2,0,1,2,0,2,2,1,1,2,0,1,1,3,1,1,3,1,1,3,1,3,0
Subtotal,,,,,,,,7,,,7,,,5,,,13,,,4,,,5,,,7,,,0,,,8,,,8,,,3,,,7,,,2,,,12,,,1,,,7,,,0,,,11,,,4,,,5,,,1,,,7,,,0,,,4,,,2,,,6,,,9,,,5,,,3,,,6,,,8,,,10,,,8,,,0,,,0,,,4,,,0,,,6,,,2,,,0,,,13,,,7,,,4,,,4,,,2,,,4,,,10,,,8,,,7,,,9,,,10,,,5,,,0,,,0,,,1,,,3,,,2,,,2,,,4,,,0,,,10,,,5,,,8,,,0,,,11,,,0,,,0,,,8,,,2,,,8,,,5,,,11,,,6,,,8,,,9,,,5
04.02,Chelsea,3,1,Arsenal,,2,1,1,2,0,1,1,0,1,1,0,1,2,1,1,2,0,1,2,1,1,4,0,1,2,1,1,2,1,1,2,0,1,2,1,1,2,2,0,1,0,1,1,1,0,1,0,1,-,-,,2,1,1,1,1,0,2,1,1,2,1,1,3,0,1,-,-,,2,1,1,2,1,1,2,1,1,2,1,1,1,0,1,2,0,1,2,1,1,2,1,1,2,0,1,-,-,,-,-,,-,-,,2,1,1,-,-,,2,1,1,1,1,0,2,1,1,2,1,1,2,0,1,-,-,,2,1,1,2,0,1,3,1,3,-,-,,2,1,1,2,1,1,2,1,1,2,1,1,3,1,3,-,-,,-,-,,3,1,3,2,2,0,3,1,3,2,2,0,2,0,1,-,-,,2,1,1,1,2,0,2,1,1,-,-,,1,0,1,2,1,1,-,-,,1,1,0,3,2,1,1,1,0,2,2,0,-,-,,2,2,0,2,1,1,3,1,3,2,2,0
04.02,Crystal Palace,0,4,Sunderland,,2,0,0,2,1,0,1,0,0,1,1,0,3,2,0,1,1,0,1,0,0,1,2,1,2,1,0,2,2,0,1,1,0,3,0,0,1,1,0,1,0,0,1,0,0,0,0,0,-,-,,2,0,0,2,0,0,2,1,0,2,0,0,0,1,1,-,-,,2,1,0,2,0,0,2,1,0,2,1,0,1,0,0,2,0,0,1,1,0,1,2,1,2,0,0,-,-,,-,-,,-,-,,0,1,1,-,-,,0,0,0,0,0,0,1,1,0,1,1,0,1,1,0,1,2,1,2,2,0,1,0,0,2,1,0,-,-,,1,1,0,2,1,0,2,0,0,2,0,0,2,1,0,-,-,,-,-,,1,1,0,2,0,0,2,2,0,1,0,0,1,0,0,-,-,,2,0,0,2,1,0,2,0,0,-,-,,2,1,0,1,1,0,-,-,,1,0,0,2,1,0,1,2,1,2,2,0,2,0,0,2,0,0,2,0,0,2,0,0,1,2,1
04.02,Everton,6,3,Bournemouth,,3,0,1,1,1,0,2,0,1,2,0,1,2,1,1,3,1,1,2,1,1,3,0,1,2,0,1,3,1,1,3,0,1,3,0,1,2,1,1,2,0,1,3,0,1,3,0,1,-,-,,3,0,1,3,0,1,2,0,1,2,0,1,1,0,1,-,-,,3,1,1,2,0,1,1,1,0,3,1,1,2,0,1,2,0,1,3,1,1,3,0,1,3,0,1,-,-,,-,-,,-,-,,3,1,1,-,-,,2,0,1,2,0,1,2,1,1,2,0,1,2,1,1,2,0,1,5,0,1,1,1,0,2,2,0,-,-,,2,1,1,3,1,1,2,0,1,2,1,1,2,1,1,-,-,,-,-,,3,1,1,2,1,1,4,0,1,3,0,1,2,0,1,-,-,,2,0,1,2,1,1,3,1,1,-,-,,3,1,1,2,1,1,-,-,,2,0,1,3,0,1,3,0,1,2,2,0,3,0,1,3,1,1,2,0,1,3,0,1,3,1,1
04.02,Hull,2,0,Liverpool,,1,2,0,1,2,0,0,1,0,0,2,0,1,3,0,1,2,0,0,2,0,1,0,1,0,3,0,2,2,0,1,1,0,1,2,0,1,2,0,1,2,0,1,1,0,0,2,0,-,-,,1,3,0,0,1,0,1,2,0,1,1,0,2,3,0,-,-,,0,2,0,0,1,0,1,3,0,0,3,0,0,1,0,0,2,0,0,1,0,1,1,0,2,2,0,-,-,,-,-,,-,-,,2,1,1,-,-,,0,3,0,0,2,0,1,2,0,0,2,0,1,3,0,2,1,1,1,0,1,1,0,1,0,2,0,-,-,,0,2,0,1,2,0,2,2,0,1,3,0,0,3,0,-,-,,-,-,,2,2,0,0,3,0,3,1,1,1,0,1,0,2,0,-,-,,0,2,0,1,3,0,0,2,0,-,-,,1,1,0,1,3,0,-,-,,1,3,0,2,1,1,0,0,0,2,2,0,1,1,0,1,1,0,1,2,0,1,2,0,1,0,1
04.02,Southampton,1,3,West Ham,,1,2,1,2,0,0,1,0,0,1,0,0,2,0,0,0,0,0,1,1,0,0,1,1,1,1,0,3,1,0,0,1,1,2,1,0,1,2,1,1,1,0,0,0,0,2,2,0,-,-,,2,1,0,2,2,0,0,1,1,2,1,0,1,1,0,-,-,,2,0,0,2,1,0,2,0,0,2,1,0,1,0,0,2,0,0,2,1,0,2,1,0,1,1,0,-,-,,-,-,,-,-,,1,1,0,-,-,,1,1,0,1,1,0,1,1,0,2,1,0,2,2,0,3,0,0,1,1,0,0,0,0,1,1,0,-,-,,2,1,0,1,1,0,2,1,0,1,0,0,1,1,0,-,-,,-,-,,2,1,0,1,2,1,2,1,0,2,0,0,1,0,0,-,-,,1,1,0,2,0,0,2,1,0,-,-,,1,1,0,2,0,0,-,-,,2,0,0,3,0,0,3,1,0,2,2,0,2,1,0,1,0,0,1,1,0,1,0,0,2,0,0
04.02,Watford,2,1,Burnley,,2,1,3,2,0,1,0,0,0,0,0,0,2,2,0,0,0,0,2,1,3,2,2,0,2,2,0,2,0,1,2,0,1,2,0,1,0,0,0,1,1,0,1,2,0,0,0,0,-,-,,2,0,1,2,0,1,0,0,0,1,2,0,1,1,0,-,-,,1,1,0,1,1,0,1,1,0,2,0,1,1,0,1,1,1,0,2,2,0,2,1,3,1,1,0,-,-,,-,-,,-,-,,2,0,1,-,-,,1,0,1,0,0,0,3,1,1,0,1,0,1,0,1,2,0,1,2,0,1,1,0,1,3,2,1,-,-,,2,1,3,1,1,0,1,0,1,1,1,0,0,0,0,-,-,,-,-,,2,1,3,1,2,0,2,0,1,3,1,1,1,0,1,-,-,,1,0,1,1,0,1,1,1,0,-,-,,2,2,0,1,0,1,-,-,,1,1,0,1,1,0,2,0,1,2,2,0,2,1,3,1,1,0,1,0,1,2,0,1,1,1,0
04.02,West Brom,1,0,Stoke,,2,1,1,1,0,3,0,0,0,1,1,0,1,1,0,1,1,0,1,1,0,3,1,1,1,0,3,2,2,0,1,1,0,1,1,0,2,1,1,1,0,3,1,1,0,1,1,0,-,-,,1,1,0,1,1,0,1,1,0,1,1,0,2,2,0,-,-,,2,0,1,0,0,0,2,1,1,1,1,0,1,0,3,1,1,0,0,0,0,2,1,1,1,1,0,-,-,,-,-,,-,-,,1,0,3,-,-,,1,0,3,0,0,0,2,1,1,1,1,0,2,1,1,1,1,0,1,1,0,1,0,3,1,1,0,-,-,,2,1,1,2,1,1,1,1,0,1,0,3,2,1,1,-,-,,-,-,,2,2,0,2,1,1,2,2,0,0,0,0,1,1,0,-,-,,1,1,0,1,1,0,0,0,0,-,-,,1,0,3,0,0,0,-,-,,1,0,3,2,2,0,2,1,1,2,2,0,1,0,3,0,0,0,1,1,0,1,1,0,2,0,1
04.02,Tottenham,1,0,Middlesbrough,,2,0,1,3,0,1,2,0,1,2,0,1,3,0,1,3,0,1,3,0,1,3,3,0,3,0,1,3,0,1,4,0,1,3,0,1,2,0,1,2,0,1,3,0,1,2,1,1,-,-,,2,0,1,3,1,1,3,0,1,2,0,1,1,1,0,-,-,,4,0,1,3,1,1,3,0,1,4,0,1,3,0,1,3,0,1,3,1,1,2,1,1,3,0,1,-,-,,-,-,,-,-,,3,0,1,-,-,,2,0,1,2,0,1,1,0,3,3,0,1,2,0,1,4,0,1,3,0,1,2,0,1,2,0,1,-,-,,2,0,1,3,1,1,3,1,1,3,0,1,2,0,1,-,-,,-,-,,2,0,1,2,0,1,4,0,1,2,0,1,2,0,1,-,-,,2,0,1,3,0,1,3,0,1,-,-,,2,0,1,2,0,1,-,-,,3,0,1,3,1,1,3,0,1,2,2,0,2,0,1,2,0,1,1,0,3,2,0,1,3,0,1
05.02,Man City,2,1,Swansea,,2,1,3,3,0,1,3,0,1,2,0,1,2,2,0,2,1,3,3,0,1,1,1,0,2,0,1,3,1,1,3,0,1,3,1,1,3,1,1,3,1,1,3,0,1,4,1,1,-,-,,4,1,1,2,0,1,2,1,3,2,1,3,2,0,1,-,-,,3,0,1,3,0,1,4,0,1,5,0,1,2,0,1,3,2,1,2,1,3,3,2,1,3,0,1,-,-,,-,-,,-,-,,2,0,1,-,-,,3,0,1,2,0,1,4,1,1,2,0,1,3,0,1,3,0,1,2,1,3,2,1,3,3,0,1,-,-,,3,0,1,2,0,1,3,0,1,3,1,1,3,1,1,-,-,,-,-,,3,0,1,2,1,3,4,0,1,4,0,1,3,0,1,-,-,,3,0,1,3,1,1,3,0,1,-,-,,2,0,1,2,1,3,-,-,,3,0,1,4,0,1,2,1,3,2,2,0,3,1,1,3,2,1,2,0,1,4,0,1,4,2,1
05.02,Leicester,0,3,Man Utd,,1,2,1,1,1,0,0,1,1,0,2,1,0,2,1,1,1,0,1,1,0,2,1,0,0,1,1,1,1,0,0,2,1,1,1,0,0,2,1,0,2,1,0,2,1,2,1,0,-,-,,1,2,1,0,2,1,1,2,1,0,1,1,1,1,0,-,-,,1,2,1,2,2,0,2,2,0,0,1,1,0,1,1,0,2,1,1,3,1,1,2,1,1,3,1,-,-,,-,-,,-,-,,1,2,1,-,-,,1,1,0,1,2,1,2,2,0,2,2,0,1,1,0,1,2,1,1,2,1,0,1,1,0,2,1,-,-,,1,2,1,1,2,1,2,2,0,1,2,1,0,1,1,-,-,,-,-,,1,1,0,1,2,1,3,1,0,1,2,1,0,1,1,-,-,,1,1,0,1,2,1,1,2,1,-,-,,1,1,0,0,2,1,-,-,,1,2,1,1,3,1,1,1,0,2,2,0,0,2,1,1,1,0,0,1,1,1,2,1,1,2,1
Subtotal,,,,,,,,12,,,7,,,5,,,5,,,4,,,6,,,7,,,6,,,8,,,5,,,7,,,5,,,6,,,8,,,4,,,4,,,0,,,6,,,5,,,8,,,7,,,4,,,0,,,6,,,4,,,4,,,6,,,9,,,5,,,7,,,10,,,5,,,0,,,0,,,0,,,11,,,0,,,8,,,4,,,8,,,4,,,6,,,7,,,9,,,11,,,7,,,0,,,9,,,6,,,5,,,8,,,8,,,0,,,0,,,9,,,8,,,8,,,6,,,6,,,0,,,5,,,5,,,5,,,0,,,7,,,8,,,0,,,7,,,6,,,8,,,0,,,10,,,3,,,8,,,8,,,7
11.02,Arsenal,2,0,Hull,,2,0,3,2,0,3,2,0,3,2,0,3,2,0,3,2,1,1,3,0,1,1,0,1,2,1,1,2,2,0,1,1,0,2,1,1,2,1,1,2,0,3,2,1,1,2,1,1,-,-,,2,0,3,3,1,1,2,1,1,1,1,0,3,0,1,-,-,,2,1,1,2,0,3,2,1,1,3,0,1,2,0,3,2,0,3,3,1,1,2,1,1,2,1,1,3,0,1,-,-,,-,-,,2,0,3,-,-,,2,0,3,2,0,3,2,0,3,3,1,1,2,0,3,2,0,3,2,1,1,0,1,0,2,0,3,2,0,3,2,0,3,2,0,3,2,1,1,0,0,0,1,0,1,-,-,,-,-,,2,1,1,-,-,,-,-,,2,0,3,2,0,3,-,-,,2,0,3,3,1,1,3,1,1,-,-,,2,0,3,1,1,0,-,-,,2,0,3,2,1,1,2,0,3,2,2,0,3,0,1,2,0,3,2,0,3,1,0,1,1,0,1
11.02,Man Utd,2,0,Watford,,2,0,3,3,1,1,1,0,1,2,0,3,2,1,1,2,1,1,2,0,3,2,0,3,2,0,3,3,0,1,2,0,3,2,0,3,2,0,3,1,0,1,2,1,1,3,1,1,-,-,,3,1,1,3,0,1,2,0,3,2,0,3,1,1,0,-,-,,2,1,1,3,0,1,4,0,1,2,0,3,3,0,1,3,0,1,2,0,3,2,1,1,2,0,3,2,0,3,-,-,,-,-,,3,1,1,-,-,,2,0,3,2,0,3,1,1,0,2,0,3,2,0,3,2,1,1,2,0,3,2,0,3,3,1,1,2,0,3,2,0,3,2,0,3,3,0,1,2,0,3,3,1,1,-,-,,-,-,,2,1,1,-,-,,-,-,,3,0,1,2,0,3,-,-,,2,0,3,2,1,1,2,0,3,-,-,,2,1,1,2,1,1,-,-,,2,0,3,3,0,1,3,0,1,2,2,0,2,1,1,3,0,1,1,0,1,2,0,3,3,2,1
11.02,Middlesbrough,0,0,Everton,,1,2,0,1,0,0,0,2,0,1,2,0,0,1,0,1,2,0,1,2,0,1,3,0,1,1,1,1,1,1,0,2,0,1,2,0,1,3,0,0,1,0,0,3,0,0,1,0,-,-,,1,2,0,0,2,0,1,2,0,0,2,0,1,2,0,-,-,,0,2,0,2,1,0,1,2,0,1,2,0,0,1,0,0,2,0,1,3,0,0,2,0,1,3,0,0,2,0,-,-,,-,-,,1,2,0,-,-,,2,2,1,0,1,0,1,0,0,0,1,0,1,1,1,1,1,1,0,2,0,1,0,0,2,1,0,1,2,0,1,2,0,1,1,1,1,2,0,0,1,0,2,3,0,-,-,,-,-,,1,4,0,-,-,,-,-,,0,2,0,0,2,0,-,-,,1,2,0,1,2,0,0,2,0,-,-,,0,2,0,0,2,0,-,-,,1,1,1,1,2,0,1,2,0,2,2,1,1,3,0,1,2,0,0,2,0,0,1,0,1,4,0
11.02,Stoke,1,0,Crystal Palace,,2,0,1,2,0,1,0,0,0,1,0,3,3,3,0,0,0,0,1,0,3,3,0,1,1,0,3,2,1,1,3,0,1,3,0,1,2,1,1,2,0,1,2,2,0,4,0,1,-,-,,2,0,1,1,0,3,1,0,3,2,0,1,1,1,0,-,-,,2,0,1,1,1,0,2,0,1,1,1,0,2,0,1,2,1,1,0,0,0,2,0,1,2,1,1,2,1,1,-,-,,-,-,,2,2,0,-,-,,2,1,1,1,1,0,2,0,1,1,1,0,2,1,1,2,0,1,2,0,1,0,1,0,2,0,1,2,0,1,2,1,1,2,0,1,1,0,3,2,0,1,2,0,1,-,-,,-,-,,2,1,1,-,-,,-,-,,2,1,1,1,0,3,-,-,,2,0,1,0,0,0,1,0,3,-,-,,1,0,3,2,0,1,-,-,,2,0,1,2,1,1,1,1,0,2,2,0,2,0,1,2,1,1,1,1,0,3,1,1,2,0,1
11.02,Sunderland,0,4,Southampton,,2,1,0,2,0,0,1,0,0,1,0,0,1,1,0,1,0,0,2,1,0,2,0,0,2,1,0,2,1,0,2,1,0,2,2,0,0,0,0,2,1,0,1,1,0,2,0,0,-,-,,2,1,0,1,1,0,2,0,0,1,1,0,1,1,0,-,-,,2,1,0,1,2,1,2,1,0,1,1,0,1,0,0,2,0,0,0,1,1,2,1,0,2,1,0,1,1,0,-,-,,-,-,,1,0,0,-,-,,1,0,0,1,1,0,2,1,0,2,2,0,2,1,0,2,2,0,2,1,0,1,0,0,2,1,0,2,0,0,2,1,0,1,0,0,2,2,0,1,2,1,0,0,0,-,-,,-,-,,1,1,0,-,-,,-,-,,1,2,1,2,0,0,-,-,,2,1,0,2,1,0,1,1,0,-,-,,1,0,0,2,1,0,-,-,,2,1,0,1,1,0,2,1,0,2,2,0,1,0,0,1,0,0,2,2,0,2,1,0,2,2,0
11.02,West Ham,2,2,West Brom,,2,1,0,2,2,3,1,0,0,1,1,1,3,2,0,2,0,0,2,1,0,0,0,1,0,0,1,1,2,0,1,1,1,2,2,3,1,1,1,0,2,0,2,1,0,2,1,0,-,-,,2,0,0,2,0,0,1,1,1,0,1,0,3,1,0,-,-,,1,2,0,1,0,0,2,0,0,2,1,0,2,1,0,2,0,0,1,1,1,2,1,0,1,1,1,1,1,1,-,-,,-,-,,1,1,1,-,-,,1,1,1,2,2,3,2,2,3,2,1,0,2,2,3,1,2,0,2,2,3,1,0,0,1,1,1,2,2,3,1,1,1,1,1,1,3,1,0,2,1,0,2,1,0,-,-,,-,-,,2,1,0,-,-,,-,-,,3,1,0,1,1,1,-,-,,1,1,1,1,0,0,1,0,0,-,-,,2,1,0,1,1,1,-,-,,1,1,1,2,3,0,1,1,1,2,2,3,1,1,1,2,1,0,2,1,0,2,2,3,3,3,1
11.02,Liverpool,2,0,Tottenham,,3,1,1,1,0,1,1,0,1,1,1,0,1,2,0,1,1,0,1,2,0,0,3,0,2,2,0,3,1,1,0,2,0,1,3,0,1,1,0,1,1,0,3,1,1,2,1,1,-,-,,1,1,0,0,2,0,2,1,1,1,2,0,2,2,0,-,-,,1,2,0,3,2,1,1,1,0,1,2,0,0,1,0,1,2,0,1,4,0,1,2,0,1,3,0,1,3,0,-,-,,-,-,,1,2,0,-,-,,1,1,0,1,1,0,2,0,3,1,1,0,1,2,0,1,2,0,1,2,0,0,2,0,3,0,1,1,2,0,2,2,0,2,1,1,2,2,0,1,1,0,1,2,0,-,-,,-,-,,1,2,0,-,-,,-,-,,2,2,0,1,0,1,-,-,,1,1,0,2,1,1,1,1,0,-,-,,1,1,0,0,1,0,-,-,,1,1,0,1,3,0,1,1,0,2,2,0,1,2,0,1,2,0,1,1,0,2,2,0,0,0,0
12.02,Burnley,1,1,Chelsea,,1,3,0,1,3,0,1,1,3,0,1,0,0,3,0,0,3,0,0,2,0,2,4,0,1,2,0,1,1,3,1,3,0,0,2,0,0,4,0,0,2,0,0,2,0,0,1,0,-,-,,1,2,0,0,0,1,0,1,0,1,1,3,1,1,3,-,-,,0,3,0,0,2,0,0,2,0,1,2,0,0,2,0,1,3,0,0,3,0,1,3,0,1,2,0,0,2,0,-,-,,-,-,,1,3,0,-,-,,0,1,0,0,2,0,1,1,3,0,2,0,0,2,0,1,2,0,0,2,0,0,2,0,0,2,0,0,2,0,0,1,0,1,3,0,1,3,0,1,3,0,0,4,0,-,-,,-,-,,1,3,0,-,-,,-,-,,0,3,0,0,1,0,-,-,,1,2,0,1,3,0,0,2,0,-,-,,1,3,0,0,2,0,-,-,,0,2,0,1,3,0,0,1,0,2,2,1,0,3,0,0,3,0,1,3,0,0,2,0,0,3,0
12.02,Swansea,2,0,Leicester,,2,0,3,2,0,3,1,0,1,2,0,3,1,1,0,2,2,0,1,1,0,3,3,0,1,0,1,3,1,1,2,1,1,2,0,3,2,2,0,1,1,0,1,1,0,3,0,1,-,-,,2,1,1,2,0,3,2,0,3,1,0,1,2,1,1,-,-,,2,0,3,2,0,3,2,1,1,2,2,0,1,0,1,2,0,3,2,2,0,2,1,1,2,0,3,2,2,0,-,-,,-,-,,2,1,1,-,-,,1,0,1,1,0,1,1,2,0,1,0,1,1,1,0,1,1,0,3,0,1,1,1,0,2,1,1,1,1,0,2,1,1,2,1,1,2,1,1,2,1,1,0,0,0,-,-,,-,-,,2,1,1,-,-,,-,-,,0,0,0,2,0,3,-,-,,2,1,1,1,2,0,2,1,1,-,-,,1,0,1,1,1,0,-,-,,2,0,3,2,2,0,2,0,3,2,2,0,2,0,3,2,0,3,2,0,3,1,1,0,2,0,3
13.02,Bournemouth,0,2,Man City,,1,3,1,2,4,1,2,1,0,0,3,1,2,2,0,2,1,0,1,3,1,2,2,0,1,3,1,2,4,1,1,3,1,0,3,1,1,4,1,1,3,1,0,4,1,0,4,1,-,-,,1,3,1,1,4,1,0,3,1,1,3,1,0,4,1,-,-,,1,3,1,0,1,1,1,3,1,0,2,3,0,2,3,2,0,0,0,2,3,1,3,1,1,1,0,1,4,1,-,-,,-,-,,0,4,1,-,-,,1,2,1,0,3,1,1,3,1,0,2,3,1,3,1,1,2,1,1,2,1,2,2,0,2,5,1,1,3,1,1,2,1,1,3,1,1,2,1,1,3,1,0,1,1,-,-,,-,-,,1,2,1,-,-,,-,-,,0,4,1,0,3,1,-,-,,2,3,1,1,4,1,0,3,1,-,-,,2,2,0,2,2,0,-,-,,1,3,1,0,4,1,2,3,1,2,2,0,1,3,1,2,0,0,1,2,1,1,4,1,1,3,1
Subtotal,,,,,,,,12,,,13,,,9,,,14,,,4,,,2,,,8,,,6,,,11,,,9,,,7,,,12,,,7,,,6,,,4,,,6,,,0,,,7,,,10,,,13,,,9,,,6,,,0,,,7,,,10,,,5,,,7,,,9,,,8,,,9,,,5,,,9,,,7,,,0,,,0,,,7,,,0,,,11,,,11,,,14,,,8,,,12,,,7,,,10,,,3,,,9,,,11,,,10,,,12,,,7,,,7,,,4,,,0,,,0,,,5,,,0,,,0,,,7,,,15,,,0,,,10,,,4,,,9,,,0,,,8,,,3,,,0,,,13,,,4,,,9,,,5,,,8,,,8,,,8,,,9,,,8
25.02,Chelsea,3,1,Swansea,,3,1,3,3,0,1,3,0,1,2,0,1,2,0,1,2,0,1,2,0,1,3,2,1,2,0,1,2,2,0,3,0,1,2,0,1,2,0,1,4,0,1,2,0,1,3,0,1,-,-,,3,0,1,3,0,1,2,0,1,1,0,1,1,1,0,-,-,,4,0,1,3,1,3,2,1,1,2,1,1,3,0,1,4,0,1,-,-,,3,1,3,2,0,1,3,1,3,-,-,,-,-,,2,0,1,-,-,,3,0,1,3,0,1,3,0,1,4,0,1,2,0,1,4,0,1,2,0,1,2,1,1,3,1,3,2,0,1,2,1,1,3,1,3,2,1,1,2,0,1,2,0,1,-,-,,-,-,,3,1,3,-,-,,2,0,1,4,0,1,2,0,1,-,-,,2,0,1,-,-,,3,0,1,-,-,,2,0,1,2,1,1,-,-,,2,0,1,2,1,1,2,0,1,2,2,0,3,0,1,1,1,0,2,0,1,4,0,1,2,1,1
25.02,Crystal Palace,1,0,Middlesbrough,,1,1,0,2,0,1,0,0,0,1,1,0,2,2,0,1,0,3,2,1,1,0,2,0,1,0,3,2,0,1,1,1,0,2,1,1,1,1,0,1,0,3,1,0,3,0,0,0,-,-,,1,0,3,0,2,0,1,1,0,1,1,0,1,1,0,-,-,,1,2,0,2,0,1,2,0,1,1,1,0,1,0,3,2,0,1,-,-,,0,0,0,1,1,0,1,1,0,-,-,,-,-,,1,1,0,-,-,,1,0,3,0,0,0,2,0,1,2,1,1,1,1,0,1,2,0,1,1,0,1,0,3,1,1,0,1,1,0,1,1,0,1,1,0,1,0,3,1,0,3,1,2,0,-,-,,-,-,,1,1,0,-,-,,1,0,3,0,0,0,1,1,0,-,-,,1,1,0,-,-,,1,1,0,-,-,,1,0,3,0,0,0,-,-,,0,0,0,0,1,0,0,0,0,2,2,0,1,0,3,1,0,3,1,1,0,1,1,0,1,0,3
25.02,Everton,2,0,Sunderland,,4,0,1,2,2,0,3,0,1,3,0,1,3,1,1,2,0,3,2,1,1,4,0,1,2,1,1,4,1,1,4,0,1,4,0,1,1,0,1,3,0,1,3,1,1,4,0,1,-,-,,3,1,1,4,0,1,2,0,3,3,0,1,3,0,1,-,-,,3,0,1,3,1,1,3,1,1,4,1,1,2,0,3,3,0,1,-,-,,3,0,1,3,1,1,3,1,1,-,-,,-,-,,3,1,1,-,-,,2,0,3,2,0,3,3,1,1,3,0,1,2,1,1,3,0,1,3,0,1,0,0,0,1,2,0,3,1,1,2,0,3,3,1,1,3,0,1,3,1,1,3,1,1,-,-,,-,-,,4,1,1,-,-,,5,0,1,3,0,1,3,0,1,-,-,,3,0,1,-,-,,3,1,1,-,-,,3,0,1,1,1,0,-,-,,3,0,1,3,1,1,5,1,1,2,2,0,3,0,1,2,0,3,3,0,1,5,2,1,4,2,1
25.02,Hull,1,1,Burnley,,2,1,0,1,2,0,1,0,0,1,1,3,2,2,1,0,0,1,2,1,0,1,1,3,1,2,0,2,0,0,2,1,0,2,1,0,2,0,0,1,0,0,1,1,3,1,0,0,-,-,,2,0,0,2,0,0,2,1,0,2,0,0,1,0,0,-,-,,2,1,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,-,-,,2,1,0,1,1,3,1,1,3,-,-,,-,-,,2,1,0,-,-,,1,1,3,1,1,3,2,0,0,1,2,0,1,0,0,1,1,3,2,0,0,0,0,1,0,1,0,1,1,3,2,1,0,1,0,0,2,0,0,2,0,0,1,0,0,-,-,,-,-,,1,2,0,-,-,,2,1,0,2,1,0,1,0,0,-,-,,2,1,0,-,-,,1,1,3,-,-,,2,1,0,0,2,0,-,-,,1,1,3,2,2,1,2,1,0,2,2,1,1,0,0,2,2,1,1,0,0,1,0,0,2,0,0
25.02,West Brom,2,1,Bournemouth,,2,0,1,2,0,1,0,0,0,2,0,1,1,2,0,1,1,0,1,0,1,1,1,0,1,0,1,3,2,1,1,2,0,3,0,1,1,2,0,1,0,1,3,1,1,2,0,1,-,-,,2,0,1,0,1,0,2,1,3,1,1,0,3,0,1,-,-,,1,1,0,1,1,0,2,1,3,2,0,1,2,1,3,2,0,1,-,-,,2,2,0,2,0,1,2,0,1,-,-,,-,-,,2,0,1,-,-,,2,0,1,1,1,0,2,2,0,2,2,0,2,1,3,1,1,0,2,0,1,1,1,0,3,1,1,2,1,3,1,1,0,2,0,1,2,0,1,2,1,3,3,1,1,-,-,,-,-,,2,2,0,-,-,,3,1,1,1,1,0,1,0,1,-,-,,2,0,1,-,-,,2,1,3,-,-,,1,1,0,2,1,3,-,-,,2,1,3,2,1,3,3,1,1,2,2,0,2,0,1,1,2,0,2,1,3,4,1,1,1,1,0
25.02,Watford,1,1,West Ham,,2,2,1,3,3,1,1,0,0,1,1,3,0,0,1,1,2,0,1,1,3,0,1,0,0,1,0,2,0,0,1,1,3,1,1,3,2,2,1,1,1,3,0,0,1,1,2,0,-,-,,1,2,0,0,3,0,2,2,1,1,0,0,1,2,0,-,-,,2,0,0,2,2,1,2,2,1,1,1,3,1,0,0,1,2,0,-,-,,2,1,0,1,2,0,1,1,3,-,-,,-,-,,1,0,0,-,-,,0,1,0,1,2,0,1,2,0,1,1,3,2,1,0,2,0,0,1,0,0,1,1,3,1,1,3,2,2,1,2,1,0,1,1,3,1,1,3,1,1,3,1,1,3,-,-,,-,-,,1,1,3,-,-,,1,0,0,2,1,0,1,0,0,-,-,,1,1,3,-,-,,1,2,0,-,-,,1,1,3,1,1,3,-,-,,0,1,0,1,1,3,2,2,1,2,2,1,2,1,0,0,2,0,2,2,1,2,2,1,0,2,0
26.02,Tottenham,4,0,Stoke,,3,1,1,2,1,1,2,0,1,3,1,1,3,0,1,3,0,1,2,0,1,4,0,3,2,0,1,3,1,1,3,0,1,2,0,1,2,0,1,2,0,1,3,0,1,3,1,1,-,-,,2,0,1,3,1,1,2,0,1,1,1,0,3,1,1,-,-,,1,1,0,2,0,1,2,0,1,2,0,1,1,0,1,3,0,1,-,-,,2,0,1,2,0,1,2,0,1,-,-,,-,-,,4,1,1,-,-,,2,0,1,1,0,1,1,1,0,2,0,1,1,1,0,2,0,1,2,1,1,1,0,1,2,0,1,2,0,1,2,0,1,2,1,1,2,1,1,2,1,1,2,0,1,-,-,,-,-,,2,2,0,-,-,,3,1,1,3,0,1,2,0,1,-,-,,2,1,1,-,-,,3,1,1,-,-,,2,0,1,2,1,1,-,-,,2,0,1,3,0,1,3,1,1,2,2,0,2,1,1,1,1,0,2,1,1,1,0,1,3,0,1
27.02,Leicester,3,1,Liverpool,,1,3,0,1,3,0,1,0,1,1,2,0,0,2,0,1,3,0,1,3,0,2,0,1,0,3,0,1,3,0,0,2,0,0,2,0,1,2,0,0,2,0,1,1,0,3,0,1,-,-,,1,3,0,1,1,0,1,2,0,0,2,0,1,1,0,-,-,,1,2,0,1,1,0,2,2,0,1,1,0,0,1,0,0,2,0,-,-,,1,1,0,2,0,1,2,1,1,-,-,,-,-,,1,2,0,-,-,,0,2,0,0,2,0,2,0,1,1,3,0,2,1,1,2,2,0,0,2,0,2,0,1,0,3,0,1,3,0,1,3,0,1,3,0,1,1,0,1,1,0,0,3,0,-,-,,-,-,,2,2,0,-,-,,2,1,1,1,0,1,0,2,0,-,-,,1,2,0,-,-,,1,2,0,-,-,,2,1,1,1,1,0,-,-,,1,2,0,0,2,0,1,1,0,2,2,0,0,2,0,0,3,0,0,2,0,1,2,0,2,2,0
Subtotal,,,,,,,,7,,,5,,,4,,,10,,,5,,,9,,,8,,,9,,,7,,,4,,,6,,,8,,,4,,,10,,,11,,,5,,,0,,,7,,,3,,,9,,,2,,,3,,,0,,,2,,,7,,,8,,,7,,,11,,,6,,,0,,,5,,,8,,,13,,,0,,,0,,,4,,,0,,,12,,,8,,,4,,,7,,,6,,,6,,,4,,,10,,,8,,,10,,,5,,,9,,,10,,,12,,,7,,,0,,,0,,,7,,,0,,,8,,,4,,,4,,,0,,,7,,,0,,,9,,,0,,,10,,,8,,,0,,,9,,,10,,,5,,,2,,,7,,,7,,,7,,,5,,,6
04.03,Man Utd,1,1,Bournemouth,,2,0,0,2,0,0,2,0,0,3,0,0,3,1,0,2,0,0,2,0,0,2,2,1,2,0,0,3,0,0,4,0,0,2,0,0,3,0,0,2,0,0,1,1,3,3,1,0,-,-,,3,0,0,3,1,0,3,0,0,2,0,0,2,1,0,-,-,,3,1,0,2,0,0,3,0,0,3,0,0,2,0,0,3,0,0,2,1,0,3,0,0,2,0,0,3,0,0,-,-,,-,-,,3,1,0,-,-,,2,0,0,2,0,0,2,0,0,2,1,0,3,0,0,2,0,0,2,0,0,1,0,0,3,1,0,3,0,0,-,-,,-,-,,3,1,0,2,0,0,3,1,0,-,-,,-,-,,2,1,0,-,-,,2,1,0,4,1,0,3,0,0,-,-,,2,1,0,1,1,3,2,0,0,-,-,,2,1,0,2,1,0,-,-,,2,0,0,3,1,0,3,0,0,2,2,1,2,0,0,2,2,1,2,0,0,4,0,0,2,0,0
04.03,Leicester,3,1,Hull,,2,1,1,2,0,1,1,0,1,2,0,1,2,0,1,1,1,0,2,0,1,4,1,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,1,0,1,3,1,3,4,0,1,-,-,,1,1,0,0,1,0,2,0,1,1,1,0,3,0,1,-,-,,2,0,1,3,0,1,2,1,1,2,1,1,1,0,1,2,0,1,1,0,1,2,0,1,2,0,1,2,0,1,-,-,,-,-,,2,2,0,-,-,,1,1,0,2,1,1,2,0,1,3,2,1,2,1,1,3,4,0,2,2,0,1,0,1,2,0,1,2,0,1,2,1,1,-,-,,2,1,1,3,1,3,1,1,0,-,-,,-,-,,1,1,0,-,-,,2,1,1,3,1,3,2,0,1,-,-,,2,1,1,0,0,0,2,1,1,-,-,,1,0,1,2,0,1,-,-,,2,0,1,2,0,1,2,0,1,2,2,0,2,1,1,2,0,1,1,0,1,2,1,1,3,1,3
04.03,Stoke,2,0,Middlesbrough,,1,1,0,2,0,3,0,0,0,1,0,1,1,0,1,1,0,1,1,0,1,2,0,3,1,1,0,3,1,1,0,1,0,2,1,1,1,0,1,1,0,1,1,1,0,1,0,1,-,-,,2,0,3,0,0,0,1,0,1,2,0,3,1,0,1,-,-,,2,1,1,2,1,1,1,0,1,1,1,0,1,0,1,2,0,3,0,0,0,2,1,1,2,0,3,1,0,1,-,-,,-,-,,2,1,1,-,-,,1,0,1,1,0,1,3,1,1,2,0,3,1,0,1,1,3,0,0,0,0,1,0,1,1,1,0,2,0,3,2,1,1,-,-,,2,0,3,1,0,1,2,1,1,-,-,,-,-,,2,1,1,-,-,,2,1,1,0,0,0,1,0,1,-,-,,1,1,0,2,0,3,1,1,0,-,-,,0,0,0,0,0,0,-,-,,1,0,1,2,1,1,1,1,0,2,2,0,2,1,1,1,1,0,1,0,1,2,0,3,1,2,0
04.03,Swansea,3,2,Burnley,,2,1,1,2,1,1,0,1,0,2,0,1,2,2,0,2,1,1,2,1,1,2,1,1,1,0,1,2,0,1,1,1,0,2,0,1,2,0,1,1,0,1,0,1,0,1,0,1,-,-,,1,1,0,1,0,1,2,1,1,1,0,1,1,0,1,-,-,,2,1,1,2,1,1,2,1,1,2,0,1,1,0,1,2,1,1,2,2,0,3,1,1,2,0,1,2,1,1,-,-,,-,-,,2,0,1,-,-,,2,1,1,1,1,0,2,0,1,1,1,0,1,1,0,1,2,0,2,1,1,1,0,1,2,1,1,2,1,1,2,0,1,-,-,,2,1,1,2,0,1,3,1,1,-,-,,-,-,,2,1,1,-,-,,2,1,1,1,0,1,2,0,1,-,-,,1,0,1,3,0,1,1,1,0,-,-,,1,1,0,1,1,0,-,-,,2,0,1,2,2,0,3,1,1,2,2,0,1,0,1,2,1,1,2,1,1,2,0,1,1,1,0
04.03,Watford,3,4,Southampton,,2,0,0,3,1,0,0,0,0,1,1,0,1,1,0,2,1,0,1,1,0,3,1,0,1,1,0,2,2,0,1,1,0,1,1,0,1,1,0,1,1,0,2,2,0,1,0,0,-,-,,2,1,0,2,1,0,1,1,0,1,0,0,1,0,0,-,-,,1,2,1,1,1,0,1,1,0,1,1,0,1,2,1,1,2,1,1,2,1,0,2,1,1,1,0,2,2,0,-,-,,-,-,,2,0,0,-,-,,1,1,0,1,2,1,1,1,0,1,1,0,2,0,0,2,2,0,1,1,0,1,1,0,1,1,0,1,1,0,1,1,0,-,-,,1,1,0,1,1,0,1,1,0,-,-,,-,-,,1,2,1,-,-,,1,1,0,1,1,0,1,1,0,-,-,,1,1,0,1,1,0,1,2,1,-,-,,1,0,0,1,3,1,-,-,,1,2,1,0,3,1,2,2,0,2,2,0,0,2,1,1,2,1,1,1,0,1,1,0,0,0,0
04.03,West Brom,0,2,Crystal Palace,,2,0,0,2,2,0,2,1,0,1,1,0,2,0,0,1,1,0,1,1,0,1,0,0,0,0,0,1,2,1,2,0,0,2,2,0,2,1,0,2,0,0,0,0,0,1,0,0,-,-,,2,0,0,-,-,,2,0,0,2,0,0,3,1,0,-,-,,2,0,0,1,0,0,1,1,0,1,1,0,1,0,0,2,1,0,1,0,0,2,0,0,2,1,0,2,0,0,-,-,,-,-,,1,0,0,-,-,,2,0,0,2,1,0,2,1,0,2,0,0,2,1,0,2,1,0,2,0,0,-,-,,2,0,0,2,0,0,2,1,0,-,-,,3,1,0,1,0,0,2,1,0,-,-,,-,-,,2,2,0,-,-,,3,0,0,0,0,0,1,0,0,-,-,,2,1,0,1,2,1,1,1,0,-,-,,1,1,0,1,0,0,-,-,,2,0,0,2,1,0,2,1,0,2,2,0,2,2,0,1,0,0,1,1,0,3,2,0,2,0,0
04.03,Liverpool,3,1,Arsenal,,1,2,0,1,0,1,1,2,0,1,1,0,0,2,0,2,0,1,2,1,1,0,4,0,2,1,1,2,2,0,1,3,0,1,2,0,1,1,0,1,1,0,1,2,0,1,0,1,-,-,,1,1,0,1,1,0,2,2,0,2,0,1,2,2,0,-,-,,1,1,0,2,1,1,2,1,1,1,2,0,2,1,1,1,1,0,1,3,0,1,1,0,1,3,0,2,2,0,-,-,,-,-,,2,2,0,-,-,,1,1,0,1,1,0,3,0,1,0,1,0,1,1,0,1,1,0,1,2,0,0,3,0,2,0,1,2,1,1,1,1,0,-,-,,2,2,0,1,1,0,2,2,0,-,-,,-,-,,1,1,0,-,-,,1,3,0,1,2,0,1,2,0,-,-,,2,1,1,2,2,0,1,2,0,-,-,,1,1,0,0,1,0,-,-,,1,1,0,2,1,1,1,1,0,2,2,0,1,1,0,1,3,0,1,1,0,3,2,1,2,2,0
05.03,Tottenham,3,2,Everton,,3,1,1,2,0,1,2,1,1,1,0,1,2,1,1,2,1,1,2,0,1,0,2,0,2,1,1,2,1,1,1,1,0,1,1,0,2,2,0,1,1,0,0,2,0,2,2,0,-,-,,1,1,0,2,2,0,2,1,1,1,0,1,2,2,0,-,-,,1,2,0,3,1,1,2,1,1,2,2,0,1,0,1,1,2,0,1,1,0,2,2,0,1,1,0,2,2,0,-,-,,-,-,,1,1,0,-,-,,2,1,1,2,0,1,3,0,1,2,2,0,1,1,0,1,1,0,1,1,0,2,0,1,3,1,1,1,1,0,0,0,0,-,-,,2,2,0,2,1,1,1,1,0,-,-,,-,-,,1,2,0,-,-,,1,3,0,1,2,0,1,2,0,-,-,,2,1,1,2,1,1,1,1,0,-,-,,1,2,0,2,2,0,-,-,,2,1,1,3,2,3,1,1,0,2,2,0,2,1,1,1,2,0,2,1,1,2,1,1,1,1,0
05.03,Sunderland,0,2,Man City,,1,4,1,1,4,1,0,3,1,0,3,1,1,4,1,0,3,1,1,3,1,1,1,0,1,3,1,0,3,1,0,3,1,1,3,1,0,4,1,0,3,1,0,4,1,0,4,1,-,-,,0,4,1,1,4,1,1,2,1,0,3,1,1,3,1,-,-,,0,3,1,1,2,1,1,3,1,0,3,1,0,2,3,0,3,1,1,3,1,0,4,1,2,2,0,0,4,1,-,-,,-,-,,1,3,1,-,-,,0,2,3,0,2,3,1,2,1,0,2,3,1,3,1,1,1,0,2,1,0,1,1,0,0,4,1,0,2,3,0,3,1,-,-,,1,4,1,0,5,1,0,4,1,-,-,,-,-,,1,2,1,-,-,,1,5,1,1,4,1,1,3,1,-,-,,0,2,3,1,1,0,0,2,3,-,-,,0,2,3,0,4,1,-,-,,1,3,1,1,4,1,1,3,1,2,2,0,1,3,1,1,1,0,1,2,1,1,4,1,1,4,1
06.03,West Ham,1,2,Chelsea,,1,2,3,0,3,1,0,2,1,0,2,1,0,2,1,0,3,1,1,3,1,0,1,1,0,2,1,1,2,3,0,2,1,0,2,1,0,3,1,2,2,0,1,3,1,2,2,0,-,-,,1,3,1,0,2,1,0,2,1,0,3,1,2,1,0,-,-,,1,3,1,1,1,0,1,2,3,0,1,1,0,2,1,1,3,1,0,3,1,1,2,3,2,2,0,1,4,1,-,-,,-,-,,0,4,1,-,-,,1,2,3,1,3,1,2,1,0,1,3,1,0,2,1,1,2,3,1,2,3,1,1,0,1,2,3,0,2,1,0,1,1,-,-,,1,2,3,1,3,1,0,1,1,-,-,,-,-,,2,4,1,-,-,,2,2,0,0,3,1,0,2,1,-,-,,0,2,1,1,2,3,1,3,1,-,-,,1,2,3,1,3,1,-,-,,0,2,1,1,3,1,1,2,3,2,2,0,1,3,1,1,1,0,0,2,1,1,1,0,2,3,1
Subtotal,,,,,,,,7,,,9,,,4,,,6,,,5,,,6,,,7,,,7,,,6,,,9,,,3,,,5,,,5,,,4,,,8,,,5,,,0,,,5,,,3,,,6,,,8,,,4,,,0,,,6,,,6,,,9,,,4,,,10,,,8,,,4,,,8,,,5,,,5,,,0,,,0,,,4,,,0,,,9,,,8,,,6,,,8,,,4,,,3,,,4,,,4,,,8,,,10,,,5,,,0,,,9,,,8,,,4,,,0,,,0,,,5,,,0,,,4,,,6,,,5,,,0,,,8,,,12,,,6,,,0,,,7,,,4,,,0,,,7,,,9,,,6,,,1,,,7,,,4,,,6,,,8,,,5
08.03,Man City,0,0,Stoke,,3,0,0,3,0,0,2,0,0,2,0,0,3,0,0,3,0,0,3,0,0,2,2,1,3,0,0,3,1,0,4,0,0,2,1,0,3,1,0,1,1,1,3,0,0,4,0,0,-,-,,3,0,0,3,1,0,3,0,0,-,-,,3,0,0,-,-,,-,-,,2,1,0,3,1,0,2,0,0,3,0,0,3,0,0,2,0,0,3,0,0,2,1,0,-,-,,-,-,,-,-,,-,-,,-,-,,2,0,0,3,0,0,3,1,0,3,0,0,3,0,0,4,0,0,2,0,0,2,0,0,3,0,0,2,0,0,2,0,0,3,1,0,3,0,0,3,1,0,2,0,0,-,-,,-,-,,3,1,0,-,-,,2,1,0,4,0,0,2,0,0,-,-,,2,0,0,3,1,0,3,0,0,-,-,,2,1,0,2,1,0,-,-,,2,0,0,-,-,,4,1,0,2,2,1,2,0,0,3,0,0,3,0,0,3,1,0,3,1,0
11.03,Bournemouth,3,2,West Ham,,1,2,0,2,1,1,1,0,1,1,1,0,2,1,1,1,1,0,2,1,1,3,1,1,1,1,0,2,2,0,3,1,1,2,1,1,2,2,0,1,2,0,2,1,1,2,2,0,-,-,,2,2,0,2,1,1,2,1,1,2,1,1,2,2,0,-,-,,-,-,,2,0,1,2,2,0,1,1,0,1,2,0,2,1,1,1,2,0,2,1,1,1,1,0,-,-,,-,-,,-,-,,-,-,,-,-,,1,1,0,1,1,0,2,2,0,2,1,1,2,2,0,2,0,1,2,1,1,2,0,1,2,2,0,2,2,0,2,1,1,1,1,0,1,1,0,1,0,1,0,0,0,-,-,,-,-,,1,1,0,-,-,,2,1,1,1,1,0,2,2,0,-,-,,2,1,1,2,1,1,2,2,0,-,-,,1,1,0,1,2,0,-,-,,0,1,0,2,2,0,2,2,0,2,2,0,2,1,1,1,0,1,1,1,0,1,2,0,2,2,0
11.03,Everton,3,0,West Brom,,3,1,1,1,2,0,2,0,1,2,0,1,2,1,1,2,0,1,1,0,1,4,0,1,2,1,1,3,0,3,2,0,1,3,0,3,3,2,1,2,1,1,2,1,1,1,0,1,-,-,,1,0,1,1,1,0,2,1,1,2,0,1,2,0,1,-,-,,-,-,,1,0,1,2,1,1,2,1,1,2,1,1,2,0,1,3,1,1,2,0,1,3,1,1,-,-,,-,-,,-,-,,-,-,,-,-,,2,1,1,2,1,1,1,0,1,3,1,1,2,1,1,2,0,1,4,0,1,0,1,0,1,2,0,2,1,1,2,1,1,2,1,1,2,1,1,2,0,1,2,0,1,-,-,,-,-,,3,1,1,-,-,,3,1,1,3,0,3,2,0,1,-,-,,2,0,1,3,1,1,3,1,1,-,-,,2,0,1,2,0,1,-,-,,2,1,1,3,2,1,3,1,1,2,2,0,2,0,1,2,1,1,1,0,1,4,2,1,3,2,1
11.03,Hull,2,1,Swansea,,1,2,0,2,2,0,1,0,1,1,1,0,1,1,0,2,2,0,2,2,0,1,2,0,0,1,0,1,2,0,1,2,0,2,2,0,2,2,0,1,0,1,1,1,0,1,2,0,-,-,,2,2,0,2,0,1,1,1,0,1,1,0,1,2,0,-,-,,-,-,,3,2,1,1,1,0,1,2,0,1,0,1,1,1,0,1,1,0,2,1,3,2,1,3,-,-,,-,-,,-,-,,-,-,,-,-,,0,2,0,1,1,0,2,0,1,1,1,0,1,1,0,1,3,0,1,0,1,0,1,0,1,1,0,2,2,0,1,2,0,2,1,3,1,1,0,1,1,0,1,1,0,-,-,,-,-,,2,2,0,-,-,,1,1,0,1,1,0,1,0,1,-,-,,1,1,0,2,0,1,1,1,0,-,-,,1,1,0,1,1,0,-,-,,2,2,0,1,2,0,1,2,0,2,2,0,2,0,1,1,2,0,1,1,0,0,2,0,1,1,0
12.03,Liverpool,2,1,Burnley,,3,0,1,3,1,1,2,0,1,3,0,1,1,0,1,3,0,1,3,0,1,0,1,0,3,0,1,2,0,1,3,2,1,3,0,1,4,0,1,3,1,1,0,1,0,3,1,1,-,-,,3,1,1,1,1,0,2,0,1,3,0,1,1,1,0,-,-,,-,-,,3,1,1,2,0,1,2,0,1,2,0,1,3,0,1,0,0,0,2,2,0,2,0,1,-,-,,-,-,,-,-,,-,-,,-,-,,2,0,1,3,1,1,4,1,1,2,0,1,2,1,3,2,1,3,2,0,1,2,0,1,3,0,1,3,0,1,3,0,1,3,1,1,3,1,1,3,0,1,3,0,1,-,-,,-,-,,2,1,3,-,-,,4,1,1,1,2,0,2,0,1,-,-,,3,0,1,2,1,3,4,0,1,-,-,,1,2,0,1,1,0,-,-,,3,0,1,4,1,1,1,1,0,2,2,0,2,0,1,1,0,1,2,0,1,4,0,1,4,2,1
Subtotal,,,,,,,,2,,,2,,,4,,,2,,,3,,,2,,,3,,,3,,,2,,,4,,,3,,,5,,,2,,,4,,,2,,,2,,,0,,,2,,,2,,,3,,,3,,,1,,,0,,,0,,,4,,,2,,,2,,,3,,,3,,,1,,,5,,,5,,,0,,,0,,,0,,,0,,,0,,,2,,,2,,,3,,,3,,,4,,,5,,,4,,,2,,,1,,,2,,,3,,,5,,,2,,,3,,,2,,,0,,,0,,,4,,,0,,,3,,,3,,,3,,,0,,,3,,,6,,,2,,,0,,,1,,,1,,,0,,,2,,,2,,,1,,,1,,,4,,,3,,,2,,,2,,,2
18.03,West Brom,3,1,Arsenal,,-,-,,1,1,0,0,2,0,1,1,0,1,2,0,1,2,0,1,2,0,2,1,1,1,2,0,2,2,0,1,1,0,2,2,0,1,2,0,0,2,0,1,1,0,0,1,0,-,-,,1,2,0,0,2,0,0,2,0,0,2,0,1,1,0,-,-,,1,2,0,1,1,0,0,1,0,1,2,0,0,1,0,0,2,0,1,3,0,1,3,0,2,1,1,0,2,0,-,-,,-,-,,1,2,0,-,-,,1,1,0,-,-,,-,-,,0,1,0,1,1,0,1,1,0,1,1,0,2,1,1,0,2,0,1,2,0,0,2,0,1,2,0,1,2,0,1,3,0,0,1,0,-,-,,-,-,,1,2,0,-,-,,1,1,0,0,3,0,0,1,0,-,-,,1,2,0,1,3,0,1,1,0,-,-,,0,2,0,0,1,0,-,-,,1,2,0,1,3,0,1,2,0,2,2,0,0,2,0,1,1,0,0,1,0,-,-,,-,-,
18.03,Crystal Palace,1,0,Watford,,-,-,,2,0,1,1,0,3,2,0,1,2,1,1,2,1,1,2,0,1,1,1,0,1,1,0,3,1,1,1,1,0,2,0,1,2,2,0,1,0,3,2,1,1,2,0,1,-,-,,1,1,0,1,1,0,1,1,0,1,0,3,2,1,1,-,-,,1,2,0,2,1,1,2,1,1,2,2,0,1,0,3,2,1,1,1,1,0,1,2,0,2,0,1,1,1,0,-,-,,-,-,,1,0,3,-,-,,1,1,0,-,-,,-,-,,1,0,3,2,1,1,2,2,0,1,1,0,1,0,3,1,1,0,1,1,0,2,1,1,2,1,1,2,0,1,2,0,1,2,1,1,-,-,,-,-,,2,2,0,-,-,,2,0,1,1,0,3,1,0,3,-,-,,2,1,1,1,0,3,2,0,1,-,-,,1,0,3,0,0,0,-,-,,2,1,1,1,2,0,1,0,3,2,2,0,1,1,0,1,0,3,2,1,1,-,-,,-,-,
18.03,Everton,4,0,Hull,,-,-,,2,0,1,2,0,1,3,0,1,3,1,1,3,1,1,2,0,1,3,0,1,2,1,1,3,0,1,3,1,1,2,0,1,2,1,1,3,0,1,2,0,1,3,0,1,-,-,,3,0,1,3,0,1,2,1,1,1,0,1,3,0,1,-,-,,3,0,1,2,1,1,3,0,1,2,1,1,2,0,1,2,0,1,4,1,1,3,0,1,3,1,1,3,0,1,-,-,,-,-,,4,1,1,-,-,,2,0,1,-,-,,-,-,,4,1,1,2,0,1,4,0,3,6,0,1,1,1,0,0,1,0,3,0,1,3,1,1,3,1,1,3,1,1,3,1,1,3,1,1,-,-,,-,-,,3,1,1,-,-,,5,1,1,3,0,1,3,0,1,-,-,,2,0,1,3,1,1,4,0,3,-,-,,3,0,1,3,1,1,-,-,,2,0,1,3,1,1,2,0,1,2,2,0,3,0,1,3,0,1,3,1,1,-,-,,-,-,
18.03,Stoke,1,2,Chelsea,,-,-,,1,3,1,0,2,1,1,2,3,0,2,1,0,2,1,1,2,3,1,3,1,0,2,1,1,2,3,0,4,1,0,1,1,0,3,1,1,2,3,0,3,1,1,2,3,-,-,,1,3,1,0,2,1,0,2,1,0,2,1,0,2,1,-,-,,1,3,1,1,1,0,1,3,1,0,1,1,0,2,1,0,2,1,0,2,1,0,2,1,1,3,1,0,2,1,-,-,,-,-,,0,3,1,-,-,,0,2,1,-,-,,-,-,,0,2,1,0,2,1,1,2,3,1,1,0,0,0,0,0,2,1,0,2,1,0,1,1,1,2,3,1,2,3,1,1,0,0,3,1,-,-,,-,-,,2,2,0,-,-,,2,1,0,1,2,3,0,2,1,-,-,,1,2,3,1,2,3,0,2,1,-,-,,0,2,1,0,3,1,-,-,,0,2,1,0,2,1,1,2,3,2,2,0,0,1,1,1,1,0,1,2,3,-,-,,-,-,
18.03,Sunderland,0,0,Burnley,,-,-,,1,0,0,1,0,0,1,2,0,1,2,0,1,1,1,2,1,0,1,1,1,0,2,0,2,1,0,1,2,0,2,2,1,2,1,0,0,1,0,0,2,0,2,1,0,-,-,,2,0,0,0,0,3,2,1,0,0,1,0,1,1,1,-,-,,1,2,0,2,0,0,1,1,1,1,1,1,1,0,0,1,0,0,2,2,1,1,1,1,2,1,0,1,2,0,-,-,,-,-,,2,0,0,-,-,,1,0,0,-,-,,-,-,,1,0,0,1,2,0,2,0,0,2,0,0,1,0,0,2,1,0,2,1,0,2,1,0,1,1,1,1,1,1,2,1,0,1,1,1,-,-,,-,-,,2,1,0,-,-,,2,0,0,2,0,0,1,0,0,-,-,,1,0,0,2,0,0,1,1,1,-,-,,2,0,0,1,1,1,-,-,,2,1,0,1,1,1,1,1,1,2,2,1,2,0,0,1,0,0,1,1,1,-,-,,-,-,
18.03,West Ham,2,3,Leicester,,-,-,,2,2,0,0,1,1,1,1,0,1,3,1,1,1,0,2,1,0,0,2,1,2,2,0,1,2,1,0,2,1,2,1,0,0,1,1,2,0,0,2,2,0,2,3,3,-,-,,2,1,0,2,0,0,1,2,1,1,1,0,2,1,0,-,-,,1,2,1,3,2,0,2,1,0,2,0,0,1,0,0,2,1,0,0,1,1,2,1,0,1,1,0,1,3,1,-,-,,-,-,,2,2,0,-,-,,2,0,0,-,-,,-,-,,1,0,0,1,1,0,1,0,0,2,2,0,0,1,1,2,2,0,1,0,0,1,1,0,1,1,0,2,2,0,2,0,0,2,2,0,-,-,,-,-,,2,2,0,-,-,,1,1,0,1,1,0,0,1,1,-,-,,2,1,0,2,0,0,2,1,0,-,-,,1,1,0,1,2,1,-,-,,1,1,0,1,2,1,3,0,0,2,2,0,0,2,1,1,2,1,1,1,0,-,-,,-,-,
18.03,Bournemouth,2,0,Swansea,,-,-,,3,2,1,1,0,1,1,1,0,-,-,,1,1,0,2,1,1,3,3,0,2,1,1,2,2,0,3,2,1,2,2,0,1,0,1,2,2,0,3,1,1,2,1,1,-,-,,2,0,3,2,1,1,3,1,1,1,0,1,2,2,0,-,-,,2,1,1,2,0,3,2,2,0,2,0,3,2,1,1,0,2,0,3,3,0,0,2,0,2,0,3,3,2,1,-,-,,-,-,,4,3,1,-,-,,1,1,0,-,-,,-,-,,3,2,1,1,2,0,1,0,1,2,1,1,2,1,1,3,1,1,2,2,0,1,2,0,2,1,1,2,1,1,1,1,0,2,1,1,-,-,,-,-,,2,1,1,-,-,,2,1,1,3,2,1,1,1,0,-,-,,2,2,0,1,1,0,2,0,3,-,-,,2,1,1,1,0,1,-,-,,1,2,0,2,1,1,2,2,0,2,2,0,1,0,1,0,1,0,2,1,1,-,-,,-,-,
19.03,Middlesbrough,1,3,Man Utd,,-,-,,1,2,1,0,2,1,0,2,1,0,3,1,0,2,1,0,2,1,1,4,1,0,2,1,1,2,1,0,2,1,1,2,1,0,2,1,0,2,1,0,2,1,0,2,1,-,-,,0,2,1,0,3,1,0,3,1,1,1,0,0,1,1,-,-,,0,2,1,0,1,1,0,2,1,0,2,1,0,2,1,0,0,0,0,2,1,0,0,0,2,1,0,0,2,1,-,-,,-,-,,0,3,1,-,-,,0,1,1,-,-,,-,-,,0,1,1,0,2,1,2,1,0,1,2,1,0,0,0,0,3,1,0,2,1,0,2,1,1,3,3,0,2,1,0,1,1,0,1,1,-,-,,-,-,,1,2,1,-,-,,1,3,3,0,2,1,0,2,1,-,-,,0,2,1,1,2,1,0,1,1,-,-,,1,1,0,0,2,1,-,-,,0,2,1,0,3,1,0,1,1,2,2,0,1,0,0,1,1,0,0,1,1,0,2,1,-,-,
19.03,Tottenham,2,1,Southampton,,-,-,,2,0,1,2,0,1,2,0,1,3,1,1,2,0,1,2,0,1,2,0,1,2,1,3,1,1,0,4,0,1,2,2,0,1,1,0,3,1,1,1,1,0,1,2,0,-,-,,3,0,1,4,1,1,3,0,1,2,1,3,4,1,1,-,-,,3,1,1,1,0,1,2,0,1,2,1,3,2,0,1,3,0,1,3,1,1,3,1,1,3,0,1,3,1,1,-,-,,-,-,,2,0,1,-,-,,2,0,1,-,-,,-,-,,1,1,0,2,1,3,2,1,3,2,0,1,1,0,1,3,0,1,3,0,1,2,1,3,3,1,1,2,1,3,2,1,3,3,1,1,-,-,,-,-,,2,1,3,-,-,,4,1,1,3,1,1,2,1,3,-,-,,2,0,1,2,1,3,3,0,1,-,-,,2,0,1,2,0,1,-,-,,2,1,3,2,2,0,3,1,1,2,2,0,2,1,3,1,1,0,2,1,3,2,0,1,-,-,
19.03,Man City,1,1,Liverpool,,-,-,,2,0,0,2,0,0,2,0,0,3,2,0,3,1,0,2,1,0,4,0,0,2,2,1,1,2,0,3,3,1,3,1,0,2,1,0,2,1,0,2,2,1,2,1,0,-,-,,2,0,0,2,2,1,2,2,1,2,2,1,2,2,1,-,-,,2,0,0,3,1,0,3,2,0,3,1,0,2,1,0,2,1,0,1,1,3,2,0,0,2,0,0,3,1,0,-,-,,-,-,,4,0,0,-,-,,1,1,3,-,-,,-,-,,1,2,0,1,2,0,3,1,0,3,1,0,1,1,3,0,2,0,2,2,1,1,1,3,2,1,0,2,1,0,1,1,3,3,2,0,-,-,,-,-,,2,1,0,-,-,,1,1,3,3,1,0,2,0,0,-,-,,1,1,3,3,1,0,2,0,0,-,-,,2,1,0,2,0,0,-,-,,1,2,0,1,2,0,2,1,0,2,2,1,2,1,0,3,2,0,2,2,1,3,2,0,-,-,
Subtotal,,,,,,,,0,,,6,,,9,,,7,,,6,,,6,,,8,,,7,,,8,,,7,,,7,,,5,,,5,,,9,,,6,,,10,,,0,,,7,,,9,,,7,,,10,,,7,,,0,,,6,,,7,,,6,,,10,,,8,,,4,,,9,,,4,,,8,,,6,,,0,,,0,,,8,,,0,,,7,,,0,,,0,,,7,,,7,,,10,,,4,,,10,,,4,,,5,,,10,,,11,,,11,,,9,,,7,,,0,,,0,,,6,,,0,,,10,,,10,,,10,,,0,,,10,,,11,,,11,,,0,,,7,,,7,,,0,,,7,,,6,,,10,,,2,,,7,,,5,,,12,,,2,,,0
01.04,Liverpool,3,1,Everton,,3,1,3,0,0,0,0,0,0,1,1,0,2,1,1,1,1,0,3,0,1,0,4,0,2,0,1,2,1,1,2,2,0,1,1,0,-,-,,0,1,0,1,1,0,0,2,0,-,-,,1,1,0,1,1,0,2,1,1,1,2,0,1,1,0,-,-,,0,0,0,2,0,1,2,1,1,1,1,0,1,0,1,2,2,0,1,3,0,1,1,0,1,2,0,1,1,0,-,-,,-,-,,2,2,0,-,-,,1,0,1,2,1,1,2,0,1,2,2,0,1,2,0,3,1,3,0,2,0,3,0,1,3,0,1,1,1,0,2,0,1,3,1,3,1,1,0,1,1,0,-,-,,-,-,,-,-,,2,3,0,-,-,,0,4,0,3,1,3,1,2,0,-,-,,1,1,0,1,1,0,1,2,0,-,-,,0,2,0,1,2,0,-,-,,2,1,1,3,1,3,0,0,0,2,2,0,2,1,1,2,0,1,2,0,1,0,1,0,-,-,
01.04,Burnley,0,2,Tottenham,,1,2,1,1,3,1,0,0,0,1,1,0,1,3,1,1,2,1,1,2,1,1,3,1,1,2,1,1,3,1,1,1,0,1,3,1,-,-,,1,1,0,1,0,0,1,0,0,-,-,,1,0,0,0,1,1,1,1,0,1,1,0,1,1,0,-,-,,1,3,1,1,2,1,1,1,0,1,3,1,0,1,1,1,1,0,0,2,3,1,1,0,2,2,0,1,1,0,-,-,,-,-,,1,3,1,-,-,,0,2,3,1,1,0,0,2,3,1,3,1,0,2,3,1,1,0,1,2,1,1,0,0,0,2,3,1,2,1,1,2,1,1,2,1,0,2,3,1,2,1,-,-,,-,-,,-,-,,2,2,0,-,-,,1,2,1,0,2,3,0,1,1,-,-,,0,2,3,2,1,0,1,2,1,-,-,,0,2,3,0,3,1,-,-,,0,1,1,1,2,1,1,2,1,2,2,0,0,2,3,1,3,1,1,2,1,0,2,3,-,-,
01.04,Chelsea,1,2,Crystal Palace,,3,0,0,3,0,0,2,0,0,3,0,0,2,0,0,2,0,0,2,0,0,4,0,0,3,0,0,2,1,0,4,0,0,3,0,0,-,-,,3,0,0,3,1,0,1,0,0,-,-,,3,0,0,3,0,0,3,1,0,2,0,0,3,0,0,-,-,,1,0,0,3,0,0,3,0,0,2,0,0,2,0,0,3,0,0,3,1,0,3,0,0,2,0,0,3,0,0,-,-,,-,-,,2,0,0,-,-,,3,0,0,2,0,0,3,1,0,2,0,0,3,1,0,2,0,0,3,0,0,1,1,0,2,0,0,3,0,0,2,0,0,3,0,0,3,0,0,3,0,0,-,-,,-,-,,-,-,,3,1,0,-,-,,3,1,0,4,0,0,3,0,0,-,-,,2,0,0,2,0,0,3,0,0,-,-,,2,0,0,2,0,0,-,-,,3,0,0,3,0,0,2,0,0,2,2,0,3,0,0,3,0,0,2,0,0,2,0,0,-,-,
01.04,Hull,2,1,West Ham,,1,2,0,2,2,0,1,0,1,1,0,1,2,2,0,2,1,3,1,2,0,2,2,0,1,1,0,1,2,0,2,1,3,2,2,0,-,-,,2,2,0,0,0,0,1,0,1,-,-,,2,0,1,0,2,0,1,0,1,1,0,1,2,1,3,-,-,,2,1,3,2,1,3,1,1,0,2,1,3,1,0,1,1,0,1,1,1,0,2,1,3,1,2,0,1,1,0,-,-,,-,-,,1,0,1,-,-,,1,1,0,1,2,0,2,1,3,1,1,0,2,2,0,2,1,3,1,0,1,1,0,1,1,1,0,2,1,3,2,1,3,1,1,0,2,1,3,2,1,3,-,-,,-,-,,-,-,,2,1,3,-,-,,1,1,0,1,0,1,2,0,1,-,-,,2,1,3,3,1,1,1,1,0,-,-,,1,0,1,1,1,0,-,-,,2,1,3,2,1,3,1,0,1,2,2,0,1,0,1,1,1,0,2,2,0,1,1,0,-,-,
01.04,Leicester,2,0,Stoke,,2,1,1,1,0,1,1,0,1,2,1,1,3,0,1,2,0,3,1,0,1,3,0,1,2,0,3,3,1,1,3,0,1,2,1,1,-,-,,2,1,1,2,0,3,3,1,1,-,-,,2,1,1,0,0,0,2,0,3,1,0,1,3,1,1,-,-,,2,1,1,3,1,1,2,1,1,2,1,1,1,0,1,1,1,0,2,1,1,1,0,1,2,1,1,2,0,3,-,-,,-,-,,1,1,0,-,-,,1,0,1,2,0,3,2,2,0,2,1,1,2,1,1,2,1,1,1,0,1,1,0,1,2,1,1,2,0,3,3,1,1,2,1,1,2,1,1,2,0,3,-,-,,-,-,,-,-,,1,1,0,-,-,,2,2,0,1,0,1,2,0,3,-,-,,2,1,1,2,1,1,2,0,3,-,-,,2,1,1,2,0,3,-,-,,2,1,1,2,0,3,3,1,1,2,2,0,2,0,3,2,0,3,1,0,1,2,2,0,-,-,
01.04,Man Utd,0,0,West Brom,,2,0,0,2,0,0,1,0,0,2,1,0,2,1,0,2,0,0,2,0,0,1,2,0,2,0,0,2,0,0,3,0,0,3,1,0,-,-,,1,1,1,2,2,1,2,0,0,-,-,,2,0,0,3,1,0,2,1,0,1,1,1,1,1,1,-,-,,2,1,0,1,0,0,2,0,0,2,1,0,2,0,0,2,0,0,1,0,0,1,1,1,3,1,0,2,0,0,-,-,,-,-,,1,1,1,-,-,,1,0,0,2,0,0,1,1,1,2,0,0,2,0,0,2,0,0,1,0,0,1,0,0,2,1,0,2,1,0,1,0,0,2,1,0,3,1,0,2,0,0,-,-,,-,-,,-,-,,1,1,1,-,-,,2,1,0,2,1,0,2,0,0,-,-,,2,0,0,2,0,0,2,0,0,-,-,,1,1,1,2,0,0,-,-,,2,1,0,1,1,1,3,0,0,2,2,1,3,1,0,2,2,1,1,0,0,2,1,0,-,-,
01.04,Watford,1,0,Sunderland,,2,0,1,1,0,3,1,0,3,2,0,1,3,2,1,0,0,0,2,1,1,1,0,3,1,1,0,2,0,1,1,1,0,1,2,0,-,-,,2,0,1,0,0,0,1,3,0,-,-,,2,0,1,1,0,3,1,0,3,2,0,1,2,1,1,-,-,,1,1,0,1,2,0,2,1,1,1,2,0,1,0,3,2,0,1,2,2,0,1,1,0,2,0,1,2,1,1,-,-,,-,-,,1,3,0,-,-,,2,0,1,1,1,0,0,2,0,1,0,3,1,0,3,1,2,0,2,2,0,0,1,0,0,1,0,1,2,0,1,1,0,2,1,1,2,0,1,2,2,0,-,-,,-,-,,-,-,,2,1,1,-,-,,1,1,0,0,0,0,0,1,0,-,-,,1,1,0,3,0,1,3,1,1,-,-,,2,1,1,1,1,0,-,-,,2,0,1,2,2,0,3,1,1,2,2,0,1,0,3,1,1,0,2,0,1,1,1,0,-,-,
01.04,Southampton,0,0,Bournemouth,,3,2,0,3,3,1,0,0,3,2,0,0,1,1,1,1,1,1,2,1,0,2,2,1,2,2,1,3,1,0,2,0,0,2,1,0,-,-,,2,0,0,0,0,3,3,2,0,-,-,,3,1,0,2,2,1,1,1,1,2,0,0,1,1,1,-,-,,1,2,0,1,1,1,2,1,0,2,1,0,2,1,0,1,1,1,1,0,0,2,0,0,2,0,0,2,2,1,-,-,,-,-,,2,0,0,-,-,,1,1,1,2,0,0,1,1,1,0,0,3,2,1,0,2,1,0,2,1,0,1,1,1,2,1,0,2,2,1,2,1,0,2,1,0,1,1,1,2,1,0,-,-,,-,-,,-,-,,2,1,0,-,-,,3,0,0,2,2,1,2,0,0,-,-,,2,1,0,2,1,0,2,1,0,-,-,,1,1,1,1,1,1,-,-,,2,1,0,3,1,0,2,2,1,2,2,1,2,1,0,2,0,0,1,0,0,2,0,0,-,-,
02.04,Swansea,0,0,Middlesbrough,,2,1,0,2,0,0,1,0,0,2,0,0,1,0,0,1,1,1,2,1,0,1,0,0,0,0,3,2,1,0,2,1,0,3,0,0,-,-,,2,0,0,2,0,0,2,0,0,-,-,,2,0,0,2,0,0,2,0,0,1,1,1,1,0,0,-,-,,1,0,0,2,0,0,1,0,0,2,0,0,1,0,0,2,0,0,1,2,0,2,1,0,1,1,1,2,0,0,-,-,,-,-,,3,0,0,-,-,,1,1,1,1,0,0,2,1,0,1,1,1,2,0,0,1,1,1,2,0,0,1,0,0,2,0,0,2,1,0,2,0,0,1,0,0,2,1,0,3,0,0,-,-,,-,-,,-,-,,2,1,0,-,-,,3,1,0,0,0,3,1,1,1,-,-,,2,1,0,1,1,1,1,1,1,-,-,,1,0,0,0,0,3,-,-,,2,0,0,1,1,1,2,0,0,2,2,1,2,0,0,2,0,0,1,0,0,1,0,0,-,-,
02.04,Arsenal,2,2,Man City,,2,2,3,1,1,1,1,2,0,1,2,0,2,4,0,1,1,1,1,1,1,0,0,1,-,-,,1,2,0,1,3,0,1,1,1,-,-,,1,2,0,1,3,0,0,3,0,-,-,,1,2,0,2,2,3,1,2,0,1,2,0,2,2,3,-,-,,1,2,0,1,3,0,2,2,3,2,3,0,1,2,0,1,2,0,1,1,1,1,1,1,1,3,0,1,2,0,-,-,,-,-,,2,4,0,-,-,,0,1,0,1,1,1,1,1,1,1,2,0,2,1,0,1,2,0,2,2,3,0,1,0,1,2,0,1,2,0,1,1,1,1,2,0,2,2,3,1,3,0,-,-,,-,-,,-,-,,2,2,3,-,-,,2,0,0,1,2,0,1,2,0,-,-,,1,1,1,2,1,0,1,2,0,-,-,,2,2,3,1,3,0,-,-,,1,2,0,1,3,0,1,1,1,2,2,3,1,3,0,1,2,0,1,1,1,1,3,0,-,-,
Subtotal,,,,,,,,9,,,7,,,8,,,3,,,5,,,10,,,5,,,7,,,9,,,4,,,4,,,3,,,0,,,3,,,7,,,2,,,0,,,3,,,8,,,9,,,5,,,10,,,0,,,5,,,7,,,6,,,5,,,7,,,3,,,5,,,6,,,3,,,5,,,0,,,0,,,3,,,0,,,8,,,5,,,10,,,9,,,7,,,8,,,6,,,4,,,5,,,8,,,7,,,6,,,12,,,7,,,0,,,0,,,0,,,8,,,0,,,1,,,12,,,6,,,0,,,8,,,4,,,6,,,0,,,11,,,8,,,0,,,7,,,12,,,6,,,6,,,11,,,6,,,5,,,3,,,0
04.04,Burnley,1,0,Stoke,,2,1,1,2,2,0,1,0,3,1,0,3,1,1,0,1,1,0,1,1,0,1,1,0,1,0,3,2,1,1,2,1,1,2,1,1,1,1,0,1,0,3,2,1,1,2,0,1,-,-,,1,1,0,1,1,0,1,1,0,1,0,3,1,1,0,-,-,,2,1,1,2,0,1,2,1,1,1,0,3,1,0,3,2,1,1,1,2,0,2,1,1,1,1,0,2,1,1,-,-,,-,-,,2,1,1,-,-,,1,0,3,1,1,0,1,1,0,2,1,1,1,1,0,1,1,0,2,1,1,1,0,3,1,1,0,2,0,1,2,1,1,1,0,3,2,1,1,1,1,0,-,-,,-,-,,-,-,,1,2,0,-,-,,1,1,0,1,1,0,2,0,1,-,-,,1,0,3,2,0,1,1,1,0,-,-,,1,0,3,1,1,0,-,-,,2,1,1,1,1,0,2,0,1,2,2,0,2,1,1,0,1,0,1,0,3,1,3,0,-,-,
04.04,Leicester,2,0,Sunderland,,3,1,1,1,0,1,1,0,1,2,0,3,2,0,3,2,1,1,1,1,0,4,0,1,3,0,1,3,1,1,2,0,3,3,0,1,3,0,1,3,0,1,3,0,1,3,2,1,-,-,,2,0,3,1,0,1,3,0,1,1,0,1,2,0,3,-,-,,2,0,3,2,0,3,2,0,3,1,0,1,2,0,3,2,0,3,2,0,3,1,2,0,3,0,1,3,1,1,-,-,,-,-,,3,2,1,-,-,,2,0,3,0,0,0,2,1,1,3,0,1,2,0,3,2,0,3,1,0,1,1,1,0,2,0,3,2,2,0,3,1,1,2,0,3,2,0,3,2,0,3,-,-,,-,-,,-,-,,1,1,0,-,-,,3,0,1,1,1,0,2,1,1,-,-,,2,0,3,1,1,0,2,0,3,-,-,,2,0,3,3,0,1,-,-,,3,0,1,3,0,1,3,1,1,2,2,0,3,0,1,3,0,1,2,0,3,2,0,3,-,-,
04.04,Watford,2,0,West Brom,,2,2,0,1,1,0,0,0,0,1,2,0,1,2,0,1,1,0,1,1,0,0,1,0,1,1,0,1,1,0,1,1,0,1,1,0,1,2,0,2,2,0,1,1,0,1,0,1,-,-,,1,1,0,1,1,0,1,1,0,1,1,0,2,0,3,-,-,,0,1,0,1,1,0,1,1,0,1,2,0,0,1,0,1,1,0,1,1,0,1,0,1,2,2,0,1,1,0,-,-,,-,-,,1,4,0,-,-,,0,1,0,1,2,0,2,2,0,1,1,0,2,2,0,1,1,0,1,0,1,1,1,0,1,1,0,1,1,0,1,1,0,1,1,0,1,1,0,2,1,1,-,-,,-,-,,-,-,,2,2,0,-,-,,2,2,0,1,0,1,1,0,1,-,-,,1,1,0,2,1,1,2,1,1,-,-,,1,1,0,0,1,0,-,-,,1,2,0,1,2,0,1,2,0,2,2,0,1,0,1,0,1,0,1,1,0,0,2,0,-,-,
04.04,Man Utd,1,1,Everton,,2,0,0,1,0,0,1,1,3,2,1,0,2,2,1,1,0,0,2,0,0,0,2,0,1,1,3,2,2,1,1,1,3,0,1,0,1,1,3,1,1,3,1,1,3,1,0,0,-,-,,2,2,1,2,1,0,2,1,0,1,0,0,1,1,3,-,-,,0,1,0,1,1,3,1,1,3,1,2,0,1,0,0,0,1,0,1,1,3,1,2,0,1,1,3,1,2,0,-,-,,-,-,,1,1,3,-,-,,1,0,0,1,1,3,1,1,3,1,1,3,1,1,3,2,1,0,1,2,0,2,0,0,2,0,0,0,2,0,1,0,0,2,1,0,1,1,3,2,1,0,-,-,,-,-,,-,-,,2,2,1,-,-,,0,2,0,2,0,0,0,1,0,-,-,,1,1,3,1,2,0,1,1,3,-,-,,0,1,0,1,1,3,-,-,,0,0,1,2,1,0,1,1,3,2,2,1,3,1,0,1,1,3,1,0,0,1,1,3,-,-,
05.04,Arsenal,3,0,West Ham,,2,1,1,2,0,1,2,1,1,2,0,1,2,1,1,2,0,1,2,0,1,3,0,3,2,0,1,3,1,1,2,0,1,2,0,1,2,1,1,3,0,3,1,0,1,1,3,0,-,-,,3,1,1,3,0,3,2,0,1,1,0,1,1,2,0,-,-,,3,0,3,2,1,1,2,0,1,2,0,1,2,1,1,3,0,3,1,0,1,3,0,3,2,0,1,3,1,1,-,-,,-,-,,3,1,1,-,-,,1,1,0,1,1,0,2,0,1,3,0,3,2,0,1,3,0,3,2,0,1,1,0,1,2,0,1,2,1,1,2,0,1,2,1,1,2,1,1,3,1,1,-,-,,-,-,,-,-,,2,1,1,-,-,,2,0,1,3,0,3,2,0,1,-,-,,2,0,1,2,0,1,2,0,1,-,-,,2,0,1,1,1,0,-,-,,2,1,1,2,1,1,1,1,0,2,2,0,2,0,1,2,0,1,1,0,1,4,1,1,-,-,
05.04,Hull,4,2,Middlesbrough,,1,0,1,1,1,0,0,0,0,1,0,1,2,1,1,1,1,0,2,1,1,1,0,1,1,0,1,0,0,0,1,0,1,2,1,1,2,1,1,2,0,1,2,1,1,1,0,1,-,-,,2,0,1,1,0,1,2,1,1,1,0,1,1,0,1,-,-,,2,0,1,1,1,0,1,0,1,1,1,0,1,0,1,1,0,1,3,2,1,2,0,1,1,1,0,1,0,1,-,-,,-,-,,2,0,1,-,-,,1,2,0,1,0,1,1,1,0,1,0,1,2,1,1,2,0,1,2,0,1,1,0,1,1,0,1,2,1,1,2,1,1,2,1,1,1,0,1,1,1,0,-,-,,-,-,,-,-,,1,1,0,-,-,,2,2,0,0,0,0,1,2,0,-,-,,2,1,1,2,0,1,1,0,1,-,-,,0,0,0,1,0,1,-,-,,2,1,1,1,1,0,2,1,1,2,2,0,1,0,1,1,1,0,1,1,0,2,1,1,-,-,
05.04,Southampton,3,1,Crystal Palace,,2,0,1,1,0,1,1,0,1,2,0,1,3,1,3,1,1,0,1,1,0,2,0,1,2,1,1,2,2,0,1,1,0,2,1,1,1,1,0,2,1,1,2,1,1,2,0,1,-,-,,2,0,1,3,0,1,2,1,1,1,0,1,1,2,0,-,-,,3,1,3,2,2,0,2,1,1,1,1,0,1,0,1,2,1,1,1,1,0,2,0,1,1,1,0,3,0,1,-,-,,-,-,,2,2,0,-,-,,1,1,0,2,1,1,3,1,3,2,0,1,1,1,0,2,0,1,2,0,1,0,0,0,2,1,1,2,2,0,2,1,1,1,0,1,2,1,1,1,2,0,-,-,,-,-,,-,-,,2,2,0,-,-,,2,2,0,2,0,1,1,0,1,-,-,,1,1,0,2,0,1,1,0,1,-,-,,1,1,0,1,0,1,-,-,,2,0,1,3,1,3,0,1,0,2,2,0,1,1,0,2,0,1,1,1,0,2,2,0,-,-,
05.04,Swansea,1,3,Tottenham,,1,2,1,2,3,1,0,2,1,0,1,1,0,2,1,1,1,0,1,2,1,0,0,0,0,2,1,2,1,0,0,2,1,2,2,0,1,2,1,0,2,1,0,2,1,3,2,0,-,-,,1,2,1,2,2,0,0,2,1,1,2,1,2,2,0,-,-,,1,3,3,0,1,1,1,2,1,1,2,1,0,1,1,2,1,0,0,2,1,1,1,0,1,3,3,2,2,0,-,-,,-,-,,2,4,1,-,-,,0,2,1,1,2,1,1,1,0,0,3,1,1,2,1,1,3,3,1,0,0,0,1,1,1,1,0,1,3,3,1,2,1,1,2,1,1,2,1,1,1,0,-,-,,-,-,,-,-,,1,3,3,-,-,,1,1,0,1,2,1,0,1,1,-,-,,1,1,0,1,2,1,1,2,1,-,-,,0,2,1,1,1,0,-,-,,1,2,1,0,2,1,1,3,3,2,2,0,1,2,1,1,1,0,1,3,3,0,1,1,-,-,
05.04,Chelsea,2,1,Man City,,2,1,3,2,2,0,2,1,3,2,0,1,2,1,3,3,1,1,1,1,0,4,1,1,2,2,0,1,0,1,2,0,1,2,1,3,2,2,0,2,1,3,2,1,3,2,3,0,-,-,,2,1,3,3,0,1,2,1,3,2,0,1,2,0,1,-,-,,2,1,3,1,1,0,2,1,3,1,2,0,1,0,1,2,0,1,2,0,1,2,1,3,1,0,1,2,2,0,-,-,,-,-,,2,1,3,-,-,,2,0,1,2,2,0,2,2,0,2,0,1,2,2,0,2,0,1,2,0,1,1,0,1,1,1,0,1,1,0,2,1,3,2,1,3,2,1,3,2,1,3,-,-,,-,-,,-,-,,2,1,3,-,-,,1,1,0,3,3,0,2,0,1,-,-,,1,1,0,1,2,0,2,1,3,-,-,,2,1,3,1,1,0,-,-,,2,1,3,2,1,3,2,2,0,2,2,0,2,0,1,2,0,1,2,1,3,1,1,0,-,-,
05.04,Liverpool,2,2,Bournemouth,,3,0,0,2,0,0,2,0,0,3,0,0,1,0,0,2,0,0,2,0,0,0,2,0,3,1,0,3,0,0,3,0,0,2,1,0,2,2,3,3,1,0,1,1,1,6,1,0,-,-,,2,1,0,3,0,0,3,1,0,2,0,0,1,1,1,-,-,,2,0,0,3,1,0,3,1,0,2,2,3,2,0,0,3,0,0,2,2,3,3,3,1,2,0,0,3,1,0,-,-,,-,-,,2,2,3,-,-,,2,2,3,2,1,0,3,0,0,2,2,3,3,1,0,3,0,0,2,0,0,1,2,0,3,0,0,2,0,0,2,1,0,3,1,0,3,1,0,3,1,0,-,-,,-,-,,-,-,,2,1,0,-,-,,3,1,0,4,0,0,1,0,0,-,-,,2,0,0,2,0,0,2,1,0,-,-,,1,1,1,1,2,0,-,-,,3,0,0,2,2,3,1,2,0,2,2,3,2,0,0,3,2,0,1,0,0,3,1,0,-,-,
Subtotal,,,,,,,,9,,,4,,,13,,,11,,,13,,,3,,,3,,,7,,,11,,,5,,,11,,,8,,,10,,,16,,,13,,,5,,,0,,,11,,,7,,,8,,,9,,,12,,,0,,,17,,,9,,,14,,,9,,,11,,,10,,,13,,,11,,,9,,,5,,,0,,,0,,,14,,,0,,,11,,,6,,,8,,,15,,,9,,,12,,,7,,,7,,,6,,,6,,,9,,,13,,,14,,,8,,,0,,,0,,,0,,,8,,,0,,,2,,,6,,,7,,,0,,,11,,,6,,,14,,,0,,,12,,,6,,,0,,,10,,,12,,,9,,,4,,,7,,,7,,,13,,,9,,,0
08.04,Tottenham,4,0,Watford,,3,1,1,2,0,1,2,0,1,3,0,1,3,0,1,3,0,1,2,0,1,3,0,1,2,0,1,3,1,1,3,0,1,3,0,1,3,1,1,3,0,1,3,0,1,1,0,1,-,-,,2,0,1,3,0,1,2,0,1,1,1,0,2,0,1,-,-,,2,1,1,3,1,1,3,0,1,2,0,1,2,0,1,4,0,3,3,1,1,3,1,1,2,0,1,3,0,1,-,-,,-,-,,3,1,1,-,-,,2,0,1,3,1,1,3,1,1,3,0,1,2,1,1,8,0,1,3,0,1,3,0,1,-,-,,3,0,1,-,-,,3,1,1,3,1,1,2,0,1,3,0,1,-,-,,-,-,,2,1,1,-,-,,-,-,,3,0,1,2,0,1,-,-,,2,0,1,-,-,,4,1,1,-,-,,2,0,1,1,0,1,-,-,,2,0,1,3,1,1,3,0,1,2,1,1,3,0,1,2,0,1,2,0,1,3,1,1,-,-,
08.04,Man City,3,1,Hull,,2,0,1,2,0,1,2,0,1,3,0,1,3,1,3,2,0,1,2,0,1,2,1,1,2,0,1,2,0,1,2,1,1,2,0,1,4,2,1,2,0,1,2,1,1,2,1,1,-,-,,1,0,1,3,0,1,3,0,1,2,2,0,4,1,1,-,-,,3,2,1,3,1,3,4,1,1,4,1,1,3,1,3,2,0,1,2,1,1,2,1,1,3,1,3,3,0,1,-,-,,-,-,,2,0,1,-,-,,2,0,1,2,1,1,4,1,1,4,0,1,2,0,1,3,0,1,2,0,1,1,0,1,-,-,,2,1,1,-,-,,3,1,3,3,1,3,4,1,1,4,1,1,-,-,,-,-,,3,0,1,-,-,,-,-,,2,0,1,3,0,1,-,-,,2,1,1,-,-,,3,0,1,-,-,,4,2,1,2,0,1,-,-,,3,1,3,2,0,1,4,1,1,3,0,1,2,0,1,2,0,1,2,1,1,3,1,3,-,-,
08.04,Middlesbrough,0,0,Burnley,,1,1,1,1,1,1,1,0,0,1,1,1,0,1,0,1,0,0,1,0,0,0,1,0,0,1,0,0,0,3,1,1,1,2,2,1,0,1,0,0,0,3,0,1,0,0,3,0,-,-,,1,1,1,0,0,3,1,1,1,1,1,1,0,1,0,-,-,,0,1,0,0,0,3,1,1,1,1,0,0,1,0,0,1,0,0,1,1,1,2,0,0,2,1,0,1,1,1,-,-,,-,-,,1,1,1,-,-,,0,0,3,0,0,3,1,0,0,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,-,-,,1,0,0,-,-,,1,1,1,1,1,1,1,0,0,2,1,0,-,-,,-,-,,1,1,1,-,-,,-,-,,0,0,3,1,0,0,-,-,,1,0,0,-,-,,0,1,0,-,-,,0,0,3,0,1,0,-,-,,0,0,3,1,1,1,1,1,1,1,0,0,1,1,1,1,2,0,0,0,3,1,1,1,-,-,
08.04,Stoke,1,2,Liverpool,,1,3,1,1,2,3,0,1,1,1,2,3,0,2,1,1,1,0,1,2,3,2,0,0,0,2,1,1,2,3,0,3,1,1,3,1,1,1,0,1,1,0,1,0,0,1,2,3,-,-,,2,1,0,0,2,1,1,2,3,1,1,0,1,1,0,-,-,,1,1,0,2,1,0,1,2,3,2,1,0,1,2,3,1,2,3,0,1,1,2,1,0,2,1,0,2,2,0,-,-,,-,-,,2,1,0,-,-,,0,2,1,1,3,1,2,2,0,2,1,0,1,2,3,1,2,3,1,0,0,1,1,0,-,-,,2,2,0,-,-,,1,2,3,1,1,0,0,2,1,0,0,0,-,-,,-,-,,2,1,0,-,-,,-,-,,5,2,0,1,0,0,-,-,,1,1,0,-,-,,1,2,3,-,-,,2,1,0,1,1,0,-,-,,2,1,0,2,1,0,1,2,3,1,1,0,0,2,1,1,0,0,0,1,1,2,1,0,-,-,
08.04,West Brom,0,1,Southampton,,2,1,0,2,0,0,1,0,0,1,0,0,2,1,0,1,1,0,1,1,0,2,0,0,0,0,0,2,2,0,2,1,0,2,1,0,2,2,0,1,1,0,2,1,0,0,2,1,-,-,,1,1,0,0,1,3,1,0,0,2,2,0,2,0,0,-,-,,2,0,0,1,0,0,1,1,0,1,1,0,1,0,0,1,2,1,2,2,0,2,2,0,2,0,0,2,1,0,-,-,,-,-,,2,0,0,-,-,,2,0,0,0,1,3,1,1,0,1,0,0,1,1,0,1,2,1,1,1,0,1,0,0,-,-,,1,1,0,-,-,,2,0,0,2,1,0,1,1,0,0,0,0,-,-,,-,-,,2,1,0,-,-,,-,-,,0,2,1,2,1,0,-,-,,1,1,0,-,-,,1,1,0,-,-,,1,1,0,1,2,1,-,-,,1,1,0,2,3,1,2,0,0,1,3,1,1,0,0,2,2,0,0,0,0,1,1,0,-,-,
08.04,West Ham,1,0,Swansea,,1,2,0,1,0,3,2,1,1,2,2,0,3,1,1,1,1,0,2,1,1,1,1,0,1,1,0,2,3,0,0,2,0,2,2,0,2,0,1,1,2,0,1,1,0,3,3,0,-,-,,2,1,1,2,0,1,2,2,0,1,1,0,3,2,1,-,-,,1,2,0,2,0,1,2,1,1,2,1,1,1,0,3,2,0,1,2,1,1,1,2,0,2,1,1,1,3,0,-,-,,-,-,,2,2,0,-,-,,1,1,0,0,1,0,3,2,1,1,1,0,2,1,1,2,0,1,1,1,0,0,2,0,-,-,,2,2,0,-,-,,2,1,1,1,1,0,2,1,1,1,0,3,-,-,,-,-,,1,1,0,-,-,,-,-,,0,1,0,1,1,0,-,-,,2,1,1,-,-,,2,1,1,-,-,,1,1,0,0,0,0,-,-,,2,1,1,1,1,0,1,2,0,2,0,1,1,0,3,1,2,0,1,1,0,2,2,0,-,-,
08.04,Bournemouth,1,3,Chelsea,,1,3,3,1,3,3,1,2,1,0,2,1,1,2,1,0,2,1,1,3,3,1,3,3,1,2,1,1,2,1,2,4,1,1,2,1,0,3,1,0,3,1,0,3,1,1,0,0,-,-,,1,2,1,0,1,1,0,2,1,2,2,0,1,1,0,-,-,,0,3,1,1,3,3,0,2,1,0,1,1,0,2,1,1,3,3,1,2,1,1,3,3,1,1,0,0,2,1,-,-,,-,-,,1,3,3,-,-,,0,2,1,0,2,1,1,1,0,1,2,1,1,3,3,2,2,0,0,2,1,1,1,0,-,-,,0,2,1,-,-,,1,3,3,2,3,1,0,1,1,0,2,1,-,-,,-,-,,1,2,1,-,-,,-,-,,1,3,3,0,3,1,-,-,,1,2,1,-,-,,1,3,3,-,-,,1,2,1,0,2,1,-,-,,1,3,3,1,2,1,0,1,1,0,3,1,0,3,1,1,1,0,1,2,1,0,2,1,-,-,
09.04,Sunderland,0,3,Man Utd,,0,2,1,1,1,0,1,2,1,0,2,1,0,3,3,0,3,3,1,2,1,0,0,0,0,2,1,0,1,1,0,2,1,0,2,1,1,3,1,0,3,3,0,4,1,1,1,0,-,-,,0,1,1,0,2,1,0,2,1,1,1,0,1,1,0,-,-,,0,2,1,1,2,1,0,2,1,0,2,1,0,2,1,1,3,1,0,0,0,0,2,1,2,1,0,0,2,1,-,-,,-,-,,1,3,1,-,-,,0,1,1,0,2,1,1,2,1,0,2,1,0,2,1,2,1,0,0,1,1,0,1,1,0,2,1,2,1,0,-,-,,1,2,1,0,2,1,0,2,1,0,3,3,-,-,,-,-,,1,1,0,-,-,,-,-,,1,0,0,1,3,1,-,-,,0,1,1,-,-,,0,2,1,-,-,,1,1,0,1,3,1,-,-,,0,2,1,0,2,1,1,0,0,1,2,1,0,2,1,1,1,0,0,1,1,0,4,1,-,-,
09.04,Everton,4,2,Leicester,,3,2,1,1,1,0,2,0,1,2,0,1,2,2,0,1,1,0,1,1,0,1,0,1,2,1,1,1,2,0,3,2,1,2,1,1,2,2,0,1,2,0,2,0,1,0,1,0,-,-,,2,1,1,2,1,1,2,1,1,1,1,0,2,2,0,-,-,,2,0,1,3,2,1,2,1,1,1,1,0,2,1,1,2,0,1,2,1,1,2,1,1,3,1,1,2,1,1,-,-,,-,-,,3,0,1,-,-,,2,1,1,2,1,1,2,1,1,2,0,1,2,1,1,1,1,0,2,0,1,0,1,0,1,2,0,2,1,1,-,-,,2,2,0,3,1,1,1,1,0,2,1,1,-,-,,-,-,,3,2,1,-,-,,-,-,,3,0,1,2,0,1,-,-,,2,2,0,-,-,,2,0,1,-,-,,2,1,1,1,1,0,-,-,,1,1,0,2,2,0,2,2,0,1,0,1,2,1,1,3,2,1,1,1,0,3,2,1,-,-,
10.04,Crystal Palace,3,0,Arsenal,,2,2,0,1,2,0,1,1,0,1,1,0,1,1,0,1,1,0,1,1,0,1,0,1,2,2,0,2,0,1,1,1,0,2,2,0,1,2,0,2,1,1,2,1,1,3,1,1,-,-,,1,3,0,2,2,0,2,1,1,2,2,0,2,1,1,-,-,,1,1,0,1,1,0,2,2,0,1,2,0,0,1,0,2,1,1,1,2,0,1,3,0,1,2,0,1,2,0,-,-,,-,-,,1,1,0,-,-,,1,1,0,1,2,0,1,1,0,1,1,0,1,2,0,2,1,1,0,2,0,1,0,1,1,1,0,1,2,0,-,-,,1,1,0,2,2,0,1,2,0,1,3,0,-,-,,-,-,,1,2,0,-,-,,-,-,,1,2,0,1,2,0,-,-,,1,1,0,-,-,,0,2,0,-,-,,2,2,0,1,1,0,-,-,,1,0,1,2,1,1,2,0,1,1,2,0,2,2,0,1,0,1,2,1,1,1,3,0,-,-,
Subtotal,,,,,,,,9,,,12,,,7,,,9,,,10,,,6,,,10,,,7,,,6,,,11,,,7,,,7,,,5,,,10,,,6,,,7,,,0,,,7,,,13,,,10,,,1,,,4,,,0,,,5,,,13,,,10,,,5,,,13,,,15,,,7,,,7,,,6,,,6,,,0,,,0,,,8,,,0,,,9,,,12,,,5,,,6,,,12,,,9,,,5,,,5,,,1,,,4,,,0,,,13,,,8,,,6,,,10,,,0,,,0,,,5,,,0,,,0,,,10,,,5,,,0,,,5,,,0,,,11,,,0,,,7,,,5,,,0,,,13,,,7,,,8,,,7,,,10,,,4,,,9,,,8,,,0
15.04,Tottenham,4,0,Bournemouth,,3,0,1,2,1,1,3,1,1,2,0,1,3,1,1,2,0,1,3,1,1,3,2,1,3,1,1,3,0,1,3,0,1,3,1,1,2,0,1,3,0,1,3,1,1,5,1,1,-,-,,2,0,1,3,1,1,3,0,1,2,1,1,3,1,1,-,-,,3,1,1,3,1,1,3,1,1,3,1,1,3,0,1,3,0,1,2,1,1,3,0,1,2,0,1,-,-,,-,-,,-,-,,3,1,1,-,-,,3,0,1,3,0,1,3,1,1,3,1,1,3,0,1,3,0,1,3,0,1,2,0,1,3,0,1,3,0,1,-,-,,3,1,1,3,1,1,3,0,1,3,0,1,-,-,,-,-,,2,1,1,-,-,,-,-,,4,0,3,2,0,1,-,-,,3,1,1,2,1,1,4,0,3,-,-,,3,1,1,2,1,1,-,-,,3,1,1,3,1,1,4,1,1,3,2,1,2,0,1,2,1,1,2,0,1,4,1,1,-,-,
15.04,Crystal Palace,2,2,Leicester,,2,2,3,1,1,1,1,0,0,1,0,0,2,2,3,1,1,1,2,1,0,2,0,0,2,2,3,2,1,0,2,2,3,2,0,0,1,0,0,2,0,0,2,2,3,2,1,0,-,-,,2,1,0,2,0,0,2,1,0,2,1,0,1,1,1,-,-,,2,1,0,2,2,3,2,1,0,1,1,1,1,0,0,2,0,0,1,1,1,2,0,0,2,1,0,2,1,0,-,-,,-,-,,2,1,0,-,-,,2,0,0,2,1,0,2,2,3,1,1,1,2,2,3,3,2,0,1,1,1,1,0,0,1,1,1,2,1,0,-,-,,2,1,0,1,1,1,2,1,0,3,1,0,-,-,,-,-,,2,1,0,-,-,,-,-,,1,0,0,1,1,1,-,-,,2,1,0,1,0,0,1,0,0,-,-,,1,0,0,1,1,1,-,-,,2,1,0,2,1,0,2,0,0,4,1,0,2,2,3,2,1,0,2,1,0,2,1,0,-,-,
15.04,Everton,3,1,Burnley,,3,1,3,2,1,1,2,0,1,3,0,1,3,0,1,2,0,1,2,0,1,4,0,1,3,1,3,3,0,1,3,1,3,4,0,1,3,0,1,3,0,1,2,0,1,4,0,1,-,-,,3,1,3,3,0,1,2,0,1,2,0,1,4,1,1,-,-,,4,0,1,3,0,1,3,0,1,3,1,3,2,0,1,3,0,1,4,1,1,4,0,1,2,0,1,4,1,1,-,-,,-,-,,4,1,1,-,-,,2,0,1,2,0,1,2,0,1,5,0,1,2,1,1,1,2,0,5,1,1,1,0,1,1,2,0,2,0,1,-,-,,3,1,3,4,0,1,3,0,1,3,0,1,-,-,,-,-,,4,1,1,-,-,,-,-,,4,0,1,4,0,1,-,-,,2,0,1,3,0,1,4,0,1,-,-,,4,0,1,3,0,1,-,-,,2,0,1,3,1,3,3,0,1,2,1,1,4,1,1,4,1,1,2,0,1,4,1,1,-,-,
15.04,Stoke,3,1,Hull,,1,1,0,2,0,1,1,0,1,2,0,1,1,1,0,1,1,0,2,1,1,1,0,1,0,0,0,1,1,0,1,2,0,2,1,1,2,2,0,2,1,1,1,1,0,2,2,0,-,-,,1,1,0,0,0,0,1,0,1,1,0,1,1,1,0,-,-,,1,1,0,2,1,1,2,1,1,1,2,0,1,0,1,1,0,1,1,0,1,1,2,0,3,1,3,1,1,0,-,-,,-,-,,1,1,0,-,-,,1,1,0,1,1,0,1,1,0,1,0,1,2,0,1,2,3,0,0,0,0,0,1,0,1,1,0,1,1,0,-,-,,2,0,1,1,1,0,1,1,0,2,1,1,-,-,,-,-,,2,1,1,-,-,,-,-,,0,0,0,1,2,0,-,-,,1,1,0,2,1,1,2,1,1,-,-,,0,1,0,1,1,0,-,-,,2,1,1,1,2,0,1,2,0,1,0,1,2,1,1,0,1,0,1,1,0,1,2,0,-,-,
15.04,Sunderland,2,2,West Ham,,1,2,0,1,0,0,0,0,1,0,1,0,0,2,0,0,0,1,1,1,1,0,2,0,1,1,1,1,2,0,0,1,0,2,1,0,0,1,0,0,2,0,1,0,0,1,2,0,-,-,,1,1,1,1,2,0,1,0,0,1,0,0,1,1,1,-,-,,0,1,0,1,0,0,1,2,0,2,0,0,1,0,0,2,1,0,0,2,0,2,1,0,1,1,1,2,1,0,-,-,,-,-,,0,1,0,-,-,,0,1,0,0,2,0,1,1,1,0,0,1,1,1,1,2,0,0,1,0,0,1,0,0,1,1,1,2,1,0,-,-,,1,1,1,1,2,0,1,1,1,0,2,0,-,-,,-,-,,1,1,1,-,-,,-,-,,0,1,0,1,0,0,-,-,,0,1,0,3,1,0,0,2,0,-,-,,1,0,0,0,0,1,-,-,,0,1,0,2,2,3,1,1,1,1,1,1,0,2,0,1,1,1,0,1,0,2,2,3,-,-,
15.04,Watford,1,0,Swansea,,2,1,1,2,0,1,2,1,1,0,0,0,2,1,1,1,0,3,2,1,1,1,2,0,1,1,0,3,1,1,1,2,0,2,1,1,0,0,0,2,0,1,0,0,0,1,4,0,-,-,,1,2,0,2,2,0,1,0,3,0,0,0,0,2,0,-,-,,0,1,0,1,1,0,1,1,0,1,2,0,1,0,3,0,1,0,1,1,0,1,2,0,1,1,0,2,2,0,-,-,,-,-,,1,2,0,-,-,,1,1,0,1,1,0,2,1,1,1,0,3,1,2,0,2,0,1,1,1,0,1,1,0,2,1,1,1,2,0,-,-,,1,0,3,1,1,0,0,0,0,2,1,1,-,-,,-,-,,2,1,1,-,-,,-,-,,2,0,1,0,1,0,-,-,,1,1,0,1,2,0,2,1,1,-,-,,1,1,0,0,0,0,-,-,,2,1,1,1,1,0,2,2,0,0,1,0,1,0,3,0,1,0,1,0,3,1,2,0,-,-,
15.04,Southampton,0,3,Man City,,0,2,1,1,3,1,1,2,1,1,2,1,1,2,1,1,1,0,1,2,1,1,2,1,1,2,1,2,2,0,1,1,0,2,2,0,1,2,1,1,2,1,1,2,1,2,3,1,-,-,,2,4,1,1,2,1,0,2,1,1,2,1,2,2,0,-,-,,1,2,1,1,2,1,1,2,1,1,2,1,0,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,3,1,-,-,,-,-,,1,3,1,-,-,,1,1,0,1,2,1,1,2,1,2,2,0,1,3,1,1,2,1,1,2,1,1,1,0,0,2,1,1,3,1,-,-,,1,3,1,2,3,1,1,2,1,1,2,1,-,-,,-,-,,1,2,1,-,-,,-,-,,1,2,1,0,1,1,-,-,,1,2,1,1,1,0,0,2,1,-,-,,1,2,1,0,2,1,-,-,,1,2,1,2,3,1,1,3,1,0,3,3,1,3,1,2,0,0,1,1,0,0,2,1,-,-,
16.04,West Brom,0,1,Liverpool,,0,3,1,2,2,0,1,0,0,1,2,1,2,2,0,1,1,0,1,2,1,4,0,0,0,2,1,1,0,0,0,2,1,2,2,0,1,1,0,1,1,0,1,3,1,1,2,1,-,-,,2,1,0,0,0,0,1,2,1,1,1,0,2,2,0,-,-,,1,2,1,1,1,0,1,1,0,1,1,0,1,2,1,2,1,0,0,2,1,2,2,0,2,1,0,2,2,0,-,-,,-,-,,1,1,0,-,-,,1,1,0,1,1,0,2,1,0,2,2,0,1,2,1,2,1,0,1,1,0,0,1,3,0,2,1,1,2,1,-,-,,1,1,0,1,2,1,1,1,0,1,1,0,-,-,,-,-,,2,2,0,-,-,,-,-,,2,1,0,1,1,0,-,-,,1,2,1,1,2,1,1,1,0,-,-,,2,1,0,14,0,0,-,-,,1,2,1,2,1,0,1,1,0,0,0,0,2,1,0,1,0,0,1,2,1,2,2,0,-,-,
16.04,Man Utd,2,0,Chelsea,,1,2,0,1,3,0,0,1,0,1,1,0,1,3,0,1,1,0,1,1,0,0,3,0,1,2,0,1,3,0,0,2,0,1,3,0,1,1,0,1,2,0,0,2,0,1,1,0,-,-,,1,2,0,3,3,0,0,1,0,0,2,0,0,1,0,-,-,,1,2,0,1,1,0,1,1,0,1,1,0,0,1,0,1,1,0,1,3,0,1,2,0,2,1,1,1,1,0,-,-,,-,-,,1,3,0,-,-,,0,2,0,0,2,0,2,1,1,0,1,0,1,2,0,1,2,0,0,2,0,1,1,0,0,2,0,0,2,0,-,-,,1,2,0,1,1,0,0,0,0,1,1,0,-,-,,-,-,,1,2,0,-,-,,-,-,,0,2,0,0,1,0,-,-,,1,1,0,1,1,0,1,2,0,-,-,,1,1,0,1,3,0,-,-,,0,2,0,1,3,0,1,1,0,0,0,0,2,3,0,1,2,0,1,1,0,1,1,0,-,-,
17.04,Middlesbrough,1,2,Arsenal,,1,2,3,1,3,1,0,1,1,0,2,1,1,2,3,0,1,1,0,2,1,2,2,0,0,1,1,0,2,1,1,2,3,1,3,1,0,4,1,0,2,1,0,3,1,0,2,1,-,-,,0,2,1,1,1,0,0,1,1,1,1,0,1,1,0,-,-,,0,2,1,0,1,1,1,2,3,-,-,,0,1,1,1,0,0,0,3,1,2,1,0,1,3,1,1,1,0,-,-,,-,-,,0,2,1,-,-,,1,2,3,0,2,1,1,3,1,0,2,1,0,2,1,1,2,3,1,2,3,0,0,0,0,2,1,0,2,1,-,-,,1,1,0,0,2,1,0,2,1,0,2,1,-,-,,-,-,,1,1,0,-,-,,-,-,,0,3,1,1,2,3,-,-,,1,1,0,1,2,3,0,2,1,-,-,,1,1,0,1,1,0,-,-,,0,2,1,1,4,1,1,0,0,0,2,1,1,3,1,1,1,0,0,1,1,0,1,1,-,-,
Subtotal,,,,,,,,13,,,7,,,7,,,6,,,10,,,8,,,8,,,4,,,11,,,4,,,11,,,5,,,4,,,6,,,8,,,5,,,0,,,7,,,3,,,9,,,4,,,4,,,0,,,5,,,8,,,7,,,6,,,9,,,4,,,7,,,3,,,9,,,2,,,0,,,0,,,4,,,0,,,5,,,4,,,10,,,9,,,10,,,6,,,7,,,5,,,7,,,5,,,0,,,10,,,6,,,5,,,6,,,0,,,0,,,6,,,0,,,0,,,7,,,7,,,0,,,4,,,7,,,8,,,0,,,3,,,5,,,0,,,7,,,9,,,4,,,8,,,11,,,3,,,7,,,7,,,0
22.04,Bournemouth,4,0,Middlesbrough,,2,1,1,1,0,1,1,0,1,1,0,1,2,0,1,1,1,0,2,1,1,2,0,1,2,0,1,2,1,1,2,1,1,-,-,,2,1,1,2,0,1,2,0,1,3,1,1,-,-,,2,0,1,2,0,1,1,1,0,1,0,1,2,0,1,-,-,,2,1,1,3,1,1,1,0,1,2,1,1,1,0,1,2,0,1,2,1,1,1,1,0,2,0,1,2,1,1,-,-,,-,-,,2,1,1,-,-,,1,0,1,1,0,1,2,0,1,1,1,0,1,1,0,2,1,1,2,1,1,1,0,1,0,0,0,2,1,1,-,-,,2,1,1,2,0,1,2,1,1,2,2,0,-,-,,-,-,,2,1,1,-,-,,-,-,,-,-,,1,0,1,-,-,,2,1,1,-,-,,2,0,1,-,-,,2,1,1,0,0,0,-,-,,2,0,1,2,0,1,3,1,1,1,1,0,2,2,0,2,0,1,-,-,,2,1,1,-,-,
22.04,Hull,2,0,Watford,,1,1,0,2,0,3,0,0,0,2,0,3,1,0,1,2,0,3,2,1,1,1,1,0,2,1,1,2,2,0,2,0,3,-,-,,3,1,1,2,0,3,2,1,1,2,1,1,-,-,,2,1,1,2,1,1,2,0,3,2,0,3,2,0,3,-,-,,1,1,0,2,0,3,2,1,1,1,1,0,1,0,1,1,0,1,1,1,0,2,1,1,2,1,1,2,1,1,-,-,,-,-,,2,0,3,-,-,,1,1,0,1,0,1,2,2,0,1,1,0,2,1,1,2,0,3,1,0,1,1,0,1,1,1,0,2,0,3,-,-,,1,0,1,2,0,3,2,1,1,1,2,0,-,-,,-,-,,1,1,0,-,-,,-,-,,-,-,,2,0,3,-,-,,2,1,1,-,-,,2,1,1,-,-,,1,0,1,1,0,1,-,-,,2,1,1,2,1,1,1,0,1,0,1,0,2,1,1,2,2,0,2,1,1,1,1,0,-,-,
22.04,Swansea,2,0,Stoke,,1,3,0,1,0,1,0,1,0,0,1,0,1,1,0,2,1,1,1,1,0,1,1,0,1,1,0,1,2,0,1,2,0,-,-,,2,0,3,0,1,0,0,1,0,2,1,1,-,-,,2,1,1,0,2,0,1,1,0,0,2,0,1,1,0,-,-,,1,1,0,1,0,1,2,1,1,0,2,0,1,0,1,1,1,0,2,1,1,2,1,1,1,2,0,2,0,3,-,-,,-,-,,2,2,0,-,-,,1,0,1,1,1,0,1,1,0,1,0,1,1,2,0,2,1,1,0,0,0,1,0,1,1,2,0,2,1,1,-,-,,1,1,0,1,0,1,1,1,0,0,1,0,-,-,,-,-,,2,1,1,-,-,,-,-,,-,-,,1,0,1,-,-,,2,1,1,-,-,,0,2,0,-,-,,1,1,0,0,2,0,-,-,,1,1,0,3,2,1,2,1,1,1,1,0,1,2,0,1,1,0,1,0,1,1,1,0,-,-,
22.04,West Ham,0,0,Everton,,1,2,0,1,1,1,0,1,0,1,2,0,1,3,0,1,3,0,1,2,0,0,3,0,1,2,0,2,2,1,0,2,0,-,-,,1,3,0,1,2,0,0,2,0,1,3,0,-,-,,1,2,0,1,3,0,1,2,0,0,3,0,1,2,0,-,-,,1,2,0,1,1,1,1,3,0,0,3,0,1,2,0,1,2,0,1,4,0,0,3,0,0,3,0,1,3,0,-,-,,-,-,,1,4,0,-,-,,1,1,1,0,2,0,2,1,0,1,3,0,1,2,0,3,1,0,0,2,0,1,0,0,2,1,0,2,3,0,-,-,,1,2,0,1,2,0,1,3,0,0,1,0,-,-,,-,-,,1,4,0,-,-,,-,-,,-,-,,0,1,0,-,-,,1,1,1,-,-,,0,2,0,-,-,,1,2,0,1,3,0,-,-,,0,1,0,1,3,0,1,3,0,2,2,1,1,2,0,1,3,0,1,3,0,1,3,0,-,-,
23.04,Burnley,0,2,Man Utd,,1,3,1,1,3,1,0,0,0,1,1,0,0,2,3,2,1,0,1,2,1,2,0,0,0,2,3,1,1,0,1,1,0,-,-,,2,1,0,2,2,0,1,0,0,1,1,0,-,-,,1,2,1,2,2,0,1,2,1,1,0,0,1,0,0,-,-,,1,2,1,1,2,1,1,1,0,1,2,1,0,1,1,1,2,1,0,2,3,2,1,0,1,1,0,1,1,0,-,-,,-,-,,1,1,0,-,-,,1,1,0,1,1,0,1,1,0,0,1,1,1,1,0,1,1,0,2,1,0,1,1,0,1,1,0,2,1,0,-,-,,1,1,0,1,3,1,1,1,0,1,3,1,-,-,,-,-,,2,2,0,-,-,,-,-,,-,-,,1,0,0,-,-,,1,1,0,-,-,,1,1,0,-,-,,1,1,0,1,1,0,-,-,,0,1,1,1,2,1,1,2,1,0,2,3,0,2,3,1,2,1,1,2,1,1,1,0,-,-,
23.04,Liverpool,1,2,Crystal Palace,,3,1,0,3,0,0,2,1,0,2,0,0,2,2,0,2,1,0,2,0,0,0,5,1,3,0,0,3,1,0,3,0,0,-,-,,1,2,3,3,1,0,3,0,0,3,1,0,-,-,,1,1,0,3,2,0,2,0,0,1,1,0,2,2,0,-,-,,3,1,0,2,1,0,2,1,0,2,2,0,2,1,0,3,1,0,1,0,0,2,2,0,2,0,0,3,2,0,-,-,,-,-,,1,2,3,-,-,,3,0,0,3,2,0,2,1,0,3,1,0,2,0,0,1,2,3,1,1,0,0,0,0,3,0,0,2,2,0,-,-,,2,1,0,3,1,0,2,0,0,2,0,0,-,-,,-,-,,2,2,0,-,-,,-,-,,-,-,,2,0,0,-,-,,2,1,0,-,-,,2,1,0,-,-,,1,2,3,1,1,0,-,-,,3,0,0,2,2,0,0,0,0,4,0,0,3,0,0,2,2,0,2,1,0,4,2,0,-,-,
Subtotal,,,,,,,,2,,,7,,,1,,,4,,,5,,,4,,,3,,,2,,,5,,,2,,,4,,,0,,,8,,,4,,,2,,,3,,,0,,,4,,,2,,,4,,,4,,,4,,,0,,,2,,,7,,,3,,,2,,,4,,,3,,,5,,,2,,,2,,,5,,,0,,,0,,,7,,,0,,,3,,,2,,,1,,,2,,,1,,,8,,,2,,,3,,,0,,,5,,,0,,,2,,,6,,,2,,,1,,,0,,,0,,,2,,,0,,,0,,,0,,,5,,,0,,,4,,,0,,,2,,,0,,,5,,,1,,,0,,,3,,,4,,,4,,,4,,,4,,,2,,,3,,,1,,,0
25.04,Chelsea,,,Southampton,,2,0,,2,0,,2,0,,3,0,,3,0,,2,0,,3,1,,1,1,,2,0,,2,1,,3,0,,-,-,,1,1,,3,0,,2,0,,3,1,,-,-,,3,0,,1,0,,2,0,,2,1,,2,0,,-,-,,2,0,,3,0,,2,0,,1,0,,2,0,,2,0,,2,1,,2,1,,2,0,,3,1,,-,-,,-,-,,3,0,,-,-,,2,0,,2,1,,3,1,,4,1,,3,0,,1,1,,2,0,,2,0,,2,0,,2,0,,-,-,,3,1,,4,0,,3,0,,3,1,,-,-,,-,-,,2,0,,-,-,,-,-,,-,-,,3,0,,-,-,,2,0,,-,-,,3,1,,-,-,,2,1,,3,0,,-,-,,2,1,,3,1,,3,0,,3,0,,3,0,,3,1,,2,1,,2,0,,-,-,
26.04,Arsenal,,,Leicester,,2,2,,3,0,,2,1,,2,0,,1,2,,1,1,,2,1,,0,3,,1,1,,1,2,,2,2,,-,-,,2,0,,1,1,,0,0,,1,4,,-,-,,1,1,,2,1,,2,0,,2,2,,1,2,,-,-,,2,0,,2,0,,1,1,,2,0,,2,0,,1,2,,1,1,,1,1,,2,1,,1,1,,-,-,,-,-,,2,2,,-,-,,2,1,,1,1,,2,0,,2,0,,3,1,,2,0,,1,1,,1,0,,1,1,,2,1,,-,-,,2,1,,2,2,,2,0,,1,2,,-,-,,-,-,,1,1,,-,-,,-,-,,-,-,,2,1,,-,-,,1,1,,-,-,,2,1,,-,-,,2,0,,1,2,,-,-,,2,1,,1,3,,3,2,,3,0,,3,3,,2,2,,1,0,,2,2,,-,-,
26.04,Middlesbrough,,,Sunderland,,1,1,,1,1,,1,0,,1,1,,0,1,,0,0,,0,0,,0,1,,0,0,,1,1,,1,1,,-,-,,2,0,,0,0,,0,0,,1,2,,-,-,,0,1,,2,0,,1,1,,1,0,,1,1,,-,-,,0,1,,1,1,,0,0,,1,2,,1,0,,0,1,,2,1,,2,1,,2,0,,2,1,,-,-,,-,-,,1,1,,-,-,,2,0,,1,1,,1,2,,2,2,,1,1,,2,1,,1,0,,0,0,,1,0,,2,2,,-,-,,1,0,,1,1,,1,2,,2,0,,-,-,,-,-,,2,1,,-,-,,-,-,,-,-,,1,1,,-,-,,1,0,,-,-,,1,1,,-,-,,0,0,,0,0,,-,-,,0,0,,1,1,,1,1,,2,0,,1,0,,1,0,,0,0,,2,2,,-,-,
26.04,Crystal Palace,,,Tottenham,,1,3,,1,2,,0,2,,1,2,,1,4,,2,3,,2,1,,2,0,,0,2,,1,3,,1,3,,-,-,,0,3,,1,2,,0,2,,1,3,,-,-,,2,1,,1,1,,1,2,,1,2,,2,1,,-,-,,1,2,,2,1,,1,2,,1,2,,0,1,,0,3,,0,3,,1,2,,1,2,,1,3,,-,-,,-,-,,1,3,,-,-,,0,2,,1,2,,2,2,,0,2,,1,2,,1,2,,0,3,,1,1,,1,3,,1,2,,-,-,,1,1,,2,2,,1,3,,0,3,,-,-,,-,-,,1,2,,-,-,,-,-,,-,-,,1,2,,-,-,,0,2,,-,-,,1,1,,-,-,,2,2,,0,2,,-,-,,1,2,,0,3,,1,2,,0,3,,0,3,,1,2,,1,2,,1,2,,-,-,
27.04,Man City,,,Man Utd,,2,1,,1,0,,0,0,,2,0,,3,2,,1,1,,1,1,,2,0,,2,1,,2,2,,2,1,,-,-,,2,0,,2,2,,3,1,,3,1,,-,-,,2,2,,1,1,,2,2,,3,0,,2,0,,-,-,,2,0,,3,2,,2,1,,2,1,,1,0,,1,1,,2,1,,2,1,,2,1,,2,1,,-,-,,-,-,,2,2,,-,-,,1,1,,1,1,,2,1,,2,1,,2,1,,1,1,,2,2,,0,1,,2,1,,2,1,,-,-,,2,0,,2,1,,0,0,,1,3,,-,-,,-,-,,1,1,,-,-,,-,-,,-,-,,1,1,,-,-,,2,1,,-,-,,2,1,,-,-,,2,1,,2,1,,-,-,,0,0,,2,1,,1,1,,2,0,,3,1,,2,2,,2,2,,3,1,,-,-,
Subtotal,,,,,,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-,-,,,,,,,,,,,,,,,,,-,-,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-,-,,-,-,,,,,-,-,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-,-,,-,-,,,,,-,-,,,,,,,,,,,-,-,,,,,,,,,,,-,-,,,,,,,,-,-,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-,-,,,,,,,,,,,,,,,,,-,-,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-,-,,-,-,,,,,-,-,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-,-,,-,-,,,,,-,-,,,,,,,,,,,-,-,,,,,,,,,,,-,-,,,,,,,,-,-,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-,-,,,,,,,,,,,,,,,,,-,-,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-,-,,-,-,,,,,-,-,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-,-,,-,-,,,,,-,-,,,,,,,,,,,-,-,,,,,,,,,,,-,-,,,,,,,,-,-,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-,-,,,,,,,,,,,,,,,,,-,-,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-,-,,-,-,,,,,-,-,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-,-,,-,-,,,,,-,-,,,,,,,,,,,-,-,,,,,,,,,,,-,-,,,,,,,,-,-,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-,-,,,,,,,,,,,,,,,,,-,-,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-,-,,-,-,,,,,-,-,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-,-,,-,-,,,,,-,-,,,,,,,,,,,-,-,,,,,,,,,,,-,-,,,,,,,,-,-,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-,-,,,,,,,,,,,,,,,,,-,-,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-,-,,-,-,,,,,-,-,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-,-,,-,-,,,,,-,-,,,,,,,,,,,-,-,,,,,,,,,,,-,-,,,,,,,,-,-,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-,-,,,,,,,,,,,,,,,,,-,-,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-,-,,-,-,,,,,-,-,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-,-,,-,-,,,,,-,-,,,,,,,,,,,-,-,,,,,,,,,,,-,-,,,,,,,,-,-,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-,-,,,,,,,,,,,,,,,,,-,-,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-,-,,-,-,,,,,-,-,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-,-,,-,-,,,,,-,-,,,,,,,,,,,-,-,,,,,,,,,,,-,-,,,,,,,,-,-,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-,-,,,,,,,,,,,,,,,,,-,-,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-,-,,-,-,,,,,-,-,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-,-,,-,-,,,,,-,-,,,,,,,,,,,-,-,,,,,,,,,,,-,-,,,,,,,,-,-,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-,-,,,,,,,,,,,,,,,,,-,-,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-,-,,-,-,,,,,-,-,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-,-,,-,-,,,,,-,-,,,,,,,,,,,-,-,,,,,,,,,,,-,-,,,,,,,,-,-,,,,,,,,,,,,,,,,,,,,,,,,,,,,
Subtotal,,,,,,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,,,0,
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment