diff --git a/align.py b/align.py new file mode 100644 index 0000000..036a534 --- /dev/null +++ b/align.py @@ -0,0 +1,343 @@ +from __future__ import division # Corporate math still sucks +from util import dct +from util.fnc import cur,compose,pipe,negate,iseq +from util.reflect import postmortem +from util.lst import concat, avg, fst, snd, car, cdr +from itertools import imap +import lev +from unifeat import unify +from operator import sub, or_, and_ +fs = ['../phonology/dialect/utp02datanew.txt', + '../phonology/dialect/see26datanew.txt', + '../phonology/dialect/sgb20datanew.txt', + '../phonology/dialect/sgj20datanew.txt', + '../phonology/dialect/sgl20datanew.txt', + '../phonology/dialect/sif20datanew.txt', + '../phonology/dialect/siw20datanew.txt', + '../phonology/dialect/siz20datanew.txt', + '../phonology/dialect/siy20datanew.txt', + '../phonology/dialect/smd20datanew.txt',] +def read_unicode(f): + "filename->[[utf-8-char]]" + return map(lambda u: map(lambda s:s.encode('utf8'), u), + file(f).read().decode('utf16').split(u'\n')) +def self_sub(change): + "lev.Rule -> bool -- Is this a boring self-substitution?" + return change.type==lev.SUB and change.src==change.dst +class Hash(): + "Box with proxied __eq__ and __hash__ to allow custom hashing (dict & set)" + def __init__(self, eq, hash, x): + lev.init_attrs(self, locals()) + def __str__(self): + return 'Hash(%s, eq=%s, hash=%s)' % (self.x, self.eq, self.hash) + def __repr__(self): + return 'Hash(eq=%r, hash=%r, x=%r)' % (self.eq, self.hash, self.x) + def __hash__(self): + return self.hash(self.x) + def __eq__(self, other): + return self.eq(self.x, other.x) + def get(self): + return self.x +def cmpset(l, eq, hash): + return set(hx.get() for hx in set(Hash(eq, hash, x) for x in l)) +def collapse_envs(rules): + "[lev.Rule] -> set" + return cmpset(rules, lev.Rule.eq_env, lev.Rule.hash_env) +def classify(row): + "[[lev.Rule]] -> {utf-8-char:set}" + return dct.map(set, #collapse_envs, + dct.collapse(filter(negate(self_sub), concat(row)), + keymap=lambda rule:rule.src)) +def compare(l1, l2): + "str*str -> [[lev.Rule]]" + lang1 = read_unicode(l1) + lang2 = read_unicode(l2) + dist = lev.totalavgdistance(map(unify, lang1), map(unify, lang2)) + return map(lambda s1,s2:(lev.enviro(s2,s1,dist) if s2 else []), + lang1, lang2) +def run_compare_to_base(fs): + "[str] -> [{utf-8-char:set}]" + return map(pipe(cur(compare, fs[0]), classify), fs) +def run_compare_all_to_sgbsiy(fs): + """[str] -> {utf-8-char:set} + (siy<=>sgb) - (map (base<=>) rest)""" + sgb = fs[2] + siy = fs[8] + base = fs[0] + del fs[8]; del fs[2]; del fs[0] # dangerous but who cares + diff = classify(compare(sgb, siy)) + others = map(compose(classify, cur(compare, base)), fs) + # return dct_mapall(lambda v,*rest: reduce(sub, rest, v), diff, *others) + kws = {'default':set()} + return dct.zipwith((lambda v,*rest: reduce(sub, rest, v)), diff, *others, **kws) +def run_compare_sgbsiy_to_base(fs): + """[str] -> {utf-8-char:set} + ((sgb <=> base) | (sgb <=> base)) - (map (<=> base) rest)""" + sgb = fs[2] + siy = fs[8] + base = fs[0] + del fs[8]; del fs[2]; del fs[0] # dangerous but who cares + outsiders = dct.zipwith(or_, + classify(compare(base, sgb)), + classify(compare(base, siy)), + default=set()) + others = map(compose(classify, cur(compare, base)), fs) + kws = {'default':set()} + return dct.zipwith((lambda v,*rest: reduce(sub, rest, v)), outsiders, *others, **kws) +def run_compare_sgb_and_siy_to_base(fs): + """[str] -> {utf-8-char:set} + ((sgb <=> base) & (sgb <=> base)) - (map (<=> base) rest)""" + sgb = fs[2] + siy = fs[8] + base = fs[0] + del fs[8]; del fs[2]; del fs[0] # dangerous but who cares + outsiders = dct.zipwith(and_, + classify(compare(base, sgb)), + classify(compare(base, siy)), + default=set()) + others = map(compose(classify, cur(compare, base)), fs) + kws = {'default':set()} + return dct.zipwith((lambda v,*rest: reduce(sub, rest, v)), outsiders, *others, **kws) +def run_compare_shared_sgbsiy(fs): + """this really needs a lenient definition of eq? + (sgb <=> base) & (siy <=> base)""" + sgb = fs[2] + siy = fs[8] + base = fs[0] + del fs[8]; del fs[2]; del fs[0] # dangerous but who cares + return dct.zipwith(and_, + classify(compare(base, sgb)), + classify(compare(base, siy)), + default=set()) +getsrc = lambda rule: rule.src +getdst = lambda rule: rule.dst +getpair = lambda rule: (rule.dst, rule.src) +def run_collapse_differences(fs, get=getdst): + base = fs[0] + del fs[0] + subs = [[get(rule) for rule in concat(compare(base,f)) + if rule.type==lev.SUB and rule.dst!=rule.src] + for f in fs] + return dct.zip(dct.count(concat(subs)), default=0, *map(dct.count, subs)) +def lst_except(l, *ns): + """Totally inefficient! You have been warned, dude! + (requiring ns to be ordered could help a lot if I actually cared)""" + acc = [] + for i,x in enumerate(l): + if i not in ns: + acc.append(x) + return acc +def find_collapsed(f, collapsed): + "{char:[int]} -> [(char,int)] (sorted)" + return sorted(dct.map(f, collapsed).items(), key=snd, reverse=True) +diff = lambda freqs:avg([freqs[2],freqs[8]]) - avg(lst_except(freqs,0,2,8)) +def variance(freqs): + average = avg(cdr(freqs)) + return sum((average - c)**2 for c in cdr(freqs)) / average +find_difference = cur(find_collapsed, diff) +find_variance = cur(find_collapsed, variance) +def to_html_group_differences(f, name, differences): + print >>f, "

%s

" % name + print >>f, "", + for i, (sub,variance) in enumerate(differences): + if isinstance(sub, tuple): + s = "" + row = i, sub[1], sub[0], variance + else: + s = "" + row = i, sub, variance + print >>f, s % row + print >>f, "
CharVariance
%s%s → %s%s
%s%s%s
" +def to_html_variances(f, name, variances): + print >>f, "

%s

" % name + print >>f, "", + for pair in variances: + print >>f, "" % pair + print >>f, "
CharVariance
%s%s
" +def to_html_differences(f, name, combined): + "file*str*{char:[int]} " + print >>f, '''

%s

''' % name + print >>f, "", + print >>f, ''.join('' % f[21:24] for f in fs[1:]), "" + for char,counts in combined.items(): + print >>f, "" % char, + print >>f, ''.join("" % c for c in counts), + print >>f, "" % avg(counts[1:]) + print >>f, "
CharAll%sAvg
%s%s%.2f
" +def to_html(f,name,row): + print >>f, '''

%s

''' % name + for char,changes in row.items(): + print >>f, '

%s

' % char + for change in changes: + print >>f, '%s
' % change.to_html() + print >>f, '

' + +if __name__=="__main__": + setup = ((run_compare_sgb_and_siy_to_base, + 'rule/smartenv', + '((sgb <=> base) & (siy <=> base)) - (map (<=> base) rest), eq?-rule/smartenv', + 'sgb_and_siy_to_base'), + (run_compare_sgb_and_siy_to_base, + 'rule', + '((sgb <=> base) & (siy <=> base)) - (map (<=> base) rest), eq?-rule', + 'sgb_and_siy_to_base-simple'), + (run_compare_sgbsiy_to_base, + 'rule', + '((sgb <=> base) | (siy <=> base)) - (map (<=> base) rest), eq?-rule', + 'sgbsiy_to_base-simple'), + (run_compare_shared_sgbsiy, + 'all', + '(sgb <=> base) & (siy <=> base), eq?-all', + 'shared_sgbsiy-full'), + (run_compare_shared_sgbsiy, + 'rule', + '(sgb <=> base) & (siy <=> base), eq?-rule', + 'shared_sgbsiy-simple'), + (run_compare_shared_sgbsiy, + 'rule/smartenv', + '(sgb <=> base) & (siy <=> base), eq?-rule/smartenv', + 'shared_sgbsiy') + ) + setup = ((run_collapse_differences, + 'xxx', + 'Counting differences', + 'count_differences'),) + for run,rule,title,fname in setup: + #f = open('align_'+fname+'-revised.html', 'w') + f = open(fname+'.html', 'w') + print >>f, ''' + + Observed changes from baseline English''' + lev.setRuleCompare(rule) + #to_html(f, title, run(list(fs))) + for attr in (getsrc,getdst,getpair): + to_html_group_differences(f, + "%s – %s" % (title,attr.func_name), + find_difference(run(list(fs), attr))) +## to_html_differences(f, +## "%s – %s" % (title,attr.func_name), +## run(list(fs), attr)) + +## map(to_html, +## ('utp02', 'see26', 'sgb20', 'sgj20', 'sgl20', 'sif20','siw20','siz20'), +## run(fs)) + print >>f, '' + f.close() +# number of things that got thrown out because they were shared +{'': 18, + '\xc9\x99': 3, + '\xc9\x9b': 1, + 'b': 7, + 'e': 1, + 'd': 2, + '\xc9\x91': 6, + 'k': 8, + 'j': 1, + '\xca\xb0': 6, + '\xc9\x94': 3, + 'o': 3, + 'n': 2, + 'p': 1, + 's': 3, + '\xc9\xaa': 4, + 't': 7, + '\xca\x8a': 7, + 'v': 0, + 'w': 2, + '\xca\x83': 0} +{'': 31, + '\xc9\x99': 4, + '\xc9\x9b': 2, + 'b': 8, + 'e': 1, + 'd': 2, + '\xc9\x91': 7, + 'k': 8, + 'j': 2, + '\xca\xb0': 8, + '\xc9\x94': 4, + 'o': 4, + 'n': 3, + 'p': 5, + 's': 6, + '\xc9\xaa': 10, + 't': 9, + '\xca\x8a': 7, + 'v': 1, + 'w': 2, + '\xca\x83': 1} +# changes that weren't even shared by at least one of the others +# (so actually these should be calculated also at some point) +set(['\xc9\x9c', '\xc9\x92', '\xc9\xbe', '\xc3\xa7', '\xc3\xa6', '\xc9\xa8', '\xc9\xab', '\xc9\xac', '\xc9\xaf', '\xc3\xb0', '\xca\x94', '\xce\xb8', '\xca\x8f', '\xca\x89', '\xca\x82', 'a', '\xca\x8c', 'g', 'f', 'i', 'h', 'm', 'l', 'r', 'z']) +# segments with [dorsal] cause a violation (in the OT paper) (this def is a +# little weak) +# try lining up everything logically for the HTML dump +# clustering is really clustering pathologies and then I would like to extract +# the details so that treatment can be prescribed once particular patterns of +# deafness are identified and categorised +# worked on Tuesday 1.5 h looking for this paper. +# Wednesday 2 h + 8.25-22 +# Thursday: 8:30 - 11:45 +# Friday: 9:15 - 9:45 +# try to find 'guidelines for constraints' paper again +# I uh, can't find this, but here some cool papers on the ROA (abstract only) +# 909: Boersma and Hamann show that the 'prototype effect' can be derived +# by OT simulations who optimise their grammars. +# 484: Jonas Kuhn's thesis on computational OT syntax (OT-LFG) +# 895: An alternative to iterative footing (might be relevant, the abstract +# seems a little confused) +# 888: Proves that the computational complexity of stochastic OT learning +# algorithms is k-1 +# 883: Tessier's BCD dissertation +# 878 (823) (844.8): McCarthy's OT-CC 'Slouching toward optimality' +# 873: Antilla's T-orders +# 872: Pater et al: Harmonic Grammars translate into linear systems. I think +# these grammars are supersets of OT grammars. They have code available. +# 863/864: Andries Coetzee: I think this is the weird non-OT talk he gave at +# Phonology Fest weekend. (His dissertation is at 687) +# 858: Hayes and Wilson's Maximum Entropy Learning +# 851: Oostendorp argues against Port's incomplete neutralisation +# 835: On-line learning of underlying forms. 10 pages! But it's magic! +# 818: Use a freakin' machine to do OT! Also, Finnish is hard. +# 811: Learn underlying forms by restricting search to a lexical subspace. (short too) +# 798: Prince turns OT back into Harmony Theory via 'utility functions'?? +# 844.12: Tesar talks about learning paradigms +# 794: Hey! It's those FRed people! But with a paper instead of bad Ruby. +# 780: Pater shows how to handle variation with an RCD-family algorithm +# 746: Apouussidou and Boersma compare GLA and EDCD for learning stress. +# GLA is better. Surprise! +# 739: Pater modifies BCD to learn Stratal OT (?) grammars. +# 695: Tesar creates Constrast Analysis for learning (see 811) +# 688: Generating 'contenders' from an infinite list of candidates. FSTs+RCD +# 683: McCarthy shows how to learn faithful /B/->[B] mappings after having +# learnt the harder /A/->[B] one. +# 672..675: Keller and Asudeh: GLA sucks! (although RCD does too) +# 638: Boersma reviews Tesar & Smolensky 2000 and says that learnability means +# that not all factorial typologies are possible??! +# 625: Jaeger: compares Stochastic OT with Boersma's MaxEnt model and shows +# that you can get GLA to work with Maximum Entropy too and you get +# guaranteed convergence +# 620: Tesar and Prince use phonotactics (?) to learn phono. alternations +# 618/619: " " et al add inconsistency detection to BCD, speeding it up +# 610: A U Mass thesis on syncope +# 600: Some constraints generate violations quadratic in the length of the word +# like Align(Foot, Word), so you can prove that OT phonology is not regular. +# 592: Catalan may have similar syllabification to Mongolian in its clitics +# 562: Prince explains comparative tableaux (I think have this already) +# 544: Jaeger: Proposes Bidirectional GLA (sets up a speaker/hearer loop?) +# 537: Prince and Smolensky's original OT manuscript, revised slightly +# 536: Prince explores alternative architectures more similar to Harmny Theory +# from the 80s. And sees what happens. +# 500: Entailed Rankings Arguments: Prince formalises what a machine needs to +# know to do OT. (I think I have this already) +# 463: Somebody wrote a contraint runner in 2001. As usual, works on stress. +# 459: More candidates than atoms in the universe: somebody bad at math debunks +# OT again. (n m) not n!m! maybe... +# 446: Broselow writes about Stress-epenthesis interactions. +# (I may have this already) +# 426: (Tesar introduces inconsistency detection) +# 418: Lombardi explains why L2 English speakers use either [s] or [t] based on L1 +# 400: Minimal constraint demotion in (human) acquisition of German +# 392: Argument that pure Lexicon Optimisation is too restrictive +# 390: Michael Hammond does some more logic<=>OT isomorphisms +# diff --git a/cluster.py b/cluster.py new file mode 100644 index 0000000..3e4cd00 --- /dev/null +++ b/cluster.py @@ -0,0 +1,376 @@ +### minimum spanning trees ### +from util.fnc import car,cdr +verts = ['utp02', 'sgl20', 'sif20', 'siz20', 'sgj20','siw20', 'sgb20', 'see26'] +edges = [("utp02", "sgl20", 226.87015), + ("utp02", "sif20", 239.3214), + ("utp02", "siz20", 291.05685), + ("utp02", "sgj20", 293.28705), + ("utp02", "siw20", 347.17184), + ("utp02", "sgb20", 570.414), + ("utp02", "see26", 489.02435), + ("sgl20", "sif20", 295.9317), + ("sgl20", "siz20", 309.2869), + ("sgl20", "sgj20", 357.0291), + ("sgl20", "siw20", 421.30493), + ("sgl20", "sgb20", 547.7434), + ("sgl20", "see26", 500.0514), + ("sif20", "siz20", 369.83728), + ("sif20", "sgj20", 402.52115), + ("sif20", "siw20", 397.05994), + ("sif20", "sgb20", 570.1482), + ("sif20", "see26", 545.6265), + ("siz20", "sgj20", 398.09525), + ("siz20", "siw20", 386.399), + ("siz20", "sgb20", 591.249), + ("siz20", "see26", 535.5345), + ("sgj20", "siw20", 492.21973), + ("sgj20", "sgb20", 620.3736), + ("sgj20", "see26", 567.65), + ("siw20", "sgb20", 592.8426), + ("siw20", "see26", 545.2423), + ("sgb20", "see26", 746.6446)] +answer = set([('utp02', 'see26', 489.02435000000003), + ('utp02', 'sgl20', 226.87015), + ('utp02', 'siw20', 347.17183999999997), + ('utp02', 'sgj20', 293.28705000000002), + ('utp02', 'sif20', 239.32140000000001), + ('utp02', 'siz20', 291.05685), + ('sgl20', 'sgb20', 547.74339999999995)]) +testverts = list('abcdefghi') +testedges = [('a', 'b', 4), + ('a', 'h', 8), + ('b', 'h', 11), + ('b', 'c', 8), + ('c', 'd', 7), + ('c', 'f', 4), + ('c', 'i', 2), + ('d', 'e', 9), + ('d', 'f', 14), + ('e', 'f', 10), + ('f', 'g', 2), + ('g', 'i', 6), + ('g', 'h', 1), + ('h', 'i', 7)] +def union(u,v,l): + "this is total crap" + ui = vi = 0 + for i,s in enumerate(l): + if u in s: + ui = i + if v in s: + vi = i + if ui != vi: + l[ui] |= l[vi] + del l[vi] + return True + else: + return False +def mklist(x): + return [x] +def mkset(x): + return set([x]) +def mst_kruskal(verts, edges): + a = set() + vs = [set([v]) for v in verts] + edges.sort(key=lambda (e1,e2,score): score) + for u,v,w in edges: + print vs + print (u,v,w) + if union(u, v, vs): + a.add((u,v,w)) + return a +edges = {frozenset(['sgl20', 'utp02']): 226.87015, + frozenset(['siw20', 'sgj20']): 492.21973000000003, + frozenset(['siw20', 'see26']): 545.2423, + frozenset(['siz20', 'sgl20']): 309.2869, + frozenset(['see26', 'siz20']): 535.53449999999998, + frozenset(['siw20', 'sgl20']): 421.30493000000001, + frozenset(['see26', 'sgj20']): 567.64999999999998, + frozenset(['sgj20', 'utp02']): 293.28705000000002, + frozenset(['siz20', 'sgj20']): 398.09525000000002, + frozenset(['see26', 'sif20']): 545.62649999999996, + frozenset(['sgj20', 'sif20']): 402.52114999999998, + frozenset(['sgb20', 'sif20']): 570.14819999999997, + frozenset(['sgb20', 'utp02']): 570.41399999999999, + frozenset(['siw20', 'sif20']): 397.05993999999998, + frozenset(['siw20', 'siz20']): 386.399, + frozenset(['see26', 'utp02']): 489.02435000000003, + frozenset(['see26', 'sgb20']): 746.64459999999997, + frozenset(['sgj20', 'sgb20']): 620.37360000000001, + frozenset(['see26', 'sgl20']): 500.0514, + frozenset(['sgj20', 'sgl20']): 357.02910000000003, + frozenset(['siz20', 'utp02']): 291.05685, + frozenset(['siz20', 'sgb20']): 591.24900000000002, + frozenset(['sif20', 'utp02']): 239.32140000000001, + frozenset(['sgb20', 'sgl20']): 547.74339999999995, + frozenset(['siw20', 'sgb20']): 592.84259999999995, + frozenset(['siw20', 'utp02']): 347.17183999999997, + frozenset(['siz20', 'sif20']): 369.83728000000002, + frozenset(['sgl20', 'sif20']): 295.93169999999998} +matlab = ( # (pairwise '(utp02 see26 sgb20 sgj20 sgl20 sif20 siw20 siz20)) + 489.02435, + 570.414, + 293.28705, + 226.87015, + 239.3214, + 347.17184, + 291.05685, + 746.6446, + 567.65, + 500.0514, + 545.6265, + 545.2423, + 535.5345, + 547.7434, + 620.3736, + 570.1482, + 592.8426, + 591.249, + 357.0291, + 402.52115, + 492.21973, + 398.09525, + 295.9317, + 421.30493, + 309.2869, + 397.05994, + 369.83728, + 386.399,) +from util.lst import cross, avg +from util.fnc import compose, cur +from util.reflect import traced +from util.slop import memoise +def pairwise(l): + 'Only works for lists up to 1000 in size. snide Python comment goes here' + if not l: + return [] + else: + return [(car(l),x) for x in cdr(l)] + pairwise(cdr(l)) +def flatten(l): + flat = [] + for x in l: + if not isinstance(x,str): + flat += flatten(x) + else: + flat.append(x) + return flat +def maxby(f, l): + best, bestval = car(l), f(car(l)) + for x in cdr(l): + val = f(x) + if val > bestval: + best, bestval = x, val + return best +def minby(f, l): + best, bestval = car(l), f(car(l)) + for x in cdr(l): + val = f(x) + if val < bestval: + best, bestval = x, val + return best +def bottomup(verts, sim): + "TODO:make sim = sum 1/d or something" + C = set(frozenset([v]) for v in verts) + while len(C) > 1: + c1,c2 = minby(sim, pairwise(list(C))) + cj = frozenset([c1, c2]) + C.remove(c1) + C.remove(c2) + C.add(cj) + return C +def single((c1,c2)): + "single link" + return min(map(compose(edges.__getitem__, frozenset), + cross(flatten(c1), flatten(c2)))) +def complete((c1,c2)): + "complete link" + return max(map(compose(edges.__getitem__, frozenset), + cross(flatten(c1), flatten(c2)))) +def groupavg((c1,c2)): + "group average" + return avg(map(compose(edges.__getitem__, frozenset), + cross(flatten(c1), flatten(c2)))) +def tolist(set, sim): + return [(tolist(x, sim),sim(tuple(x))) \ + if len(x)==2 else tolist(x, sim) \ + if isinstance(x, frozenset) else x \ + for x in set] +tolist(bottomup(verts, single), single)== \ + [([['sgb20'], + ([['see26'], + ([([([([['sif20'], + ([['utp02'], + ['sgl20']], 226.87015)], + 239.3214), + ['siz20']], 291.05685), + ['sgj20']], 293.28705), + ['siw20']], 347.17184)], 489.02435)], 547.7434)] +tolist(bottomup(verts, groupavg), groupavg)== \ + [([['sgb20'], + ([['see26'], + ([([([([['sif20'], + ([['utp02'], + ['sgl20']], 226.87015)], + 267.62655), + ['siz20']], 323.393676), + ['sgj20']], 362.7331375), + ['siw20']], 408.831088)], + 530.5215083)], 605.63077142857139)] +tolist(bottomup(verts, complete), complete) == \ + [([['sgb20'], + ([['see26'], + ([([([([['sif20'], + ([['utp02'], + ['sgl20']], 226.87015)], 295.9317), + ['siz20']], 369.83728), + ['sgj20']], 402.52115), + ['siw20']], 492.21973)], + 567.65)], 746.6446)] +""" +Yeah, I realised after sending the diagram that it assumes a lot of background knowledge. +The distances between nodes are Levenshtein distances. +I describe these in the paper Steve and I worked on, at +http://jones.ling.indiana.edu/cipaper.doc +or +http://jones.ling.indiana.edu/cipaper.pdf. +Levenshtein distance finds the number of phonetic feature changes needed to change one word into another. So kAb -> kAt has a distance of 2: +voice to -voice and labial to coronal. I sum these distances for all 107 words in the test set. +Therefore, a distance of 291 for (utp02 -- siz20) means that 291 features had to change to make them identical. + +utp02 is a name I used for "baseline speaker", which was a bad idea. I should have used "base". It's the American English dictionary pronunciation of words for the 107 word list. + +To create that graph, I found the distance of every speaker from every other speaker, NOT just utp02. This is different from the paper we submitted, where the speakers were only compared to utp02. Generating all comparisons like that created a fully connected graph. Then the spanning tree algorithm kept only the links that result in the lowest total distance for the entire graph. That means the reason there is a chain +utp02 -- sgl20 -- sgb20 (227 + 547) +is that the two separate chains +utp02 -- sgl20 (227) +utp02 -- sgb20 (570) +had higher total distance. (227+547 < 227+570) + +I got hierarchical clustering working yesterday, but I am still working on the diagram for it. I will send it to you when I have it done.""" + +"""Plus something else earlier +Motor theory +Historical linguitics +depuis ca, the semester finally starts + +Look for mismatches between production and perception. +Maybe in dialect -ahem- literature. +Ken has seen 3 cases himself. +Hunting is our job. Call up references on Wednesday. Eh. +Jungsun is also doing some work on this (dialects). +Topic ideas are due late February. Yes, I knew this. + +did you get the right response y of the set Y of alternatives? +Wiener's quote: "the most important piece of information in perception +is that the signal isn't gibberish" +why economisation? he doesn't know... +how do we knows it's there? <-> there is a lot of motor evidence for it + but it's not immediately obvious that you're pushed against a physical limit + when speaking. People operate well within their physiological limits. +how do we measure it? + +He says: +The phonology is internalised knowledge, and is needed to know how to boost the +probability of correct perception in cases of increased noise (or other +unfavourable environment)""" +"""Dissertation defence by Brian Riordan + +---Liberman et al--- + +- perception is mediated by production + - processes are common + - functionally motoric + +- Coarticulation is really three things - +(1) coproduction - temporal overlap in production - eg si/su variation in s +(2) sequencing effects - in di/du, the transition d->i is different from d->u +(3) articulatory tuning - ki vs ku (may just be (1) again) + +- gesture -> motor plan -> motor execution -> + invariant neurological activity corresponding to subphonemic unit. + - encoder has information that is useful for decoder + - Another reason is Occam's razor. Why have two systems if you can use + only one. + +- dichotic listening effects -> speech/non-speech +- rapidity of speech +- optimised for transmission (rate) (causes coproduction) + +---Liberman and Mattingly--- +nobody likes modules any more. Fodor ruled the 80s apparently + +---model--- +production = (acoustic_output = intent |> x |> y |> z |> ka) +(x |> y) is neuro +(z |> ka) is physiological +perception = combine x y z ka -- in some way, not specified +phonology = shared part of perception and production: the gestures, in a word +""" +"""Keith Johnson's paper is about how exemplar models are supposed to work. +It fits in nicely with Pierrehumbert's toy model. +Ohala tomorrow + +Fowler 1986 +- perception is to recover events from RL +- perception doesn't require (a) inference (b) hypothesis testing + [Stevens and SPE both require (b)] +- events are in the signal. no exceptions + if it's not, we need inference...something like Lindblum's signal + complementation. In contrast, the signal is very clear. + * people are good at perceiving it +- attention to the signal can be modulated (id est, amped up or down) + * perceptual system + * action system <-- could be 'ignore'. this is also where frequency effects + would be implemented +distal event -> medium -> receiver +events interact with medium and receiver interact with the medium, only in +ways that we are sensitive to (eg IR isn't perceived very well). + anything that is a _potential_ cue IS a cue. + +oh right. this is the 'realist' part: you don't perceive the +lightwaves coming in (vision) or the soundwaves coming in (speech). +you perceive the object in +the distance (vision) or the person talking to you (speech). +actually you perceive the vocal tract.. or phonetically structure syllables?? + +- affordances : what is it good for. FUNCTIONALISM +(not linguistic def of functionalism, but a generalised variant of it) + +You might be able to find evidence against this if you can find +production/perception mismatches that show perception/perception ISN'T perfect +and that some inference has to be going on in one side or the other. +""" +""" +Experiment ideas: + Test a MI speaker as soon as they arrive at IU for ae/AE distinction + Test again at end of spring semester + Test again after summer break. + ------- + Allow a listener to acclimate to another talker + Have the talker ask a question "Do you like apples?" + Have the listener repeat the question as a sentence: "I like apples" + Did the listener change + Investiage splits, mergers and shifts + For extra fun, lie about the origin of the speaker. If the listener is from + Bloomington, tell them a MI speaker is from N Indiana, or a S Indiana + speaker is from Kentucky. What changes? Does the perception alter? Does + the production change around? + + ---Project proposal--- + Set up a loop quite similar to many of the models discussed in the + seminar so far. See Ohala for the clearest diagram of this. + The talker starting the loop will be of some dialect area with a contrast + not shared by the speaker. For example, the o/O distinction. The listener + will be asked to repeat the talker's productions with some slight variation + The question is whether the talker will produce any variation in the + segment that has been merged relative to the other talker? + Similar studies have been done with artificially modified speech (19xx). + Dialect perception studies have used similar methods to look at + different questions (20xx). An interlingual study has looked at a similar + question of VOT in + Three interesting variations present themselves. First, to test a shift + such as ae/AE, which does not require recognising a split/merger. Second, + to reverse the direction to see if partial merger happens. Third, to + bias dialect perceptions by labelling the talker as coming from some + location which is perceived to have the same (or different) characteristics + as the listener's dialect. +""" diff --git a/cluster_summary.txt b/cluster_summary.txt new file mode 100644 index 0000000..e6fa1c0 --- /dev/null +++ b/cluster_summary.txt @@ -0,0 +1,90 @@ +See .doc for abstract version. + +14:45 - 16:15 +11:00 - 12:00 [a moins] +arg. Some time in the afternoon or so +11:15 - 12:30 +19:30 - 20:10 +20:30 - 21:10 +Clustering of cochlear implant users using Levenshtein distance +In ascending order of detail, written in Word (somehow) + +Clustering of cochlear implant users with Levenshtein distance (SB +Chin, NC Sanders, in progress): +-- Why -- +Building on previous work (Sanders & Chin, submitted) that found +Levenshtein distance to be comparable to human judgments of +intelligibility, clustering of cochlear implant users uses additional +information obtainable from this measure. Intelligibility judgments +are typically collected from adult speakers of English with no hearing +problems. Levenshtein distance correlates well with this measure, but +because of its computational nature can also calculate intelligibility +between any pair of cochlear implant users. This distance is new +information, because actual intelligibility judgments between two +implants users have not been obtained. + +These clusters of cochlear implant users are the first step toward +automatic grouping of implant users by their phonological +characteristics. This could eventually allow computers to +automatically group a new implant user with an existing cluster and +thereby determine a system of phonological training. If there are +differing effects of deafness on cochlear implant that result in +phonological differences, then clustering should be able to sort them +into groups [given enough distance information]. These groups can then +be analysed separately to determine the specific errors they make in +speech and how they should be corrected. + +ASIDE: An important point +is that we are not looking at a priori factors for clustering +(most obvious example is total communication/oral +communication). + +-- What -- +The variant of Levenshtein distance that has been shown to correlate +best with human intelligibility judgments simply counts the number of +features that differ between the baseline speaker and a cochlear +implant user. Although intelligibility judgments can be gathered +easily from humans, with no transcription step required, Levenshtein +distance can also count the number of features that differ between two +cochlear implant users. This means that Levenshtein distance can be +measured between two cochlear implant users as easily as it can +from the baseline. + +ASIDE: Because of the high correlation with human judgments from the +baseline, it seems reasonable to assume that Levenshtein distance +between two cochlear implant users correlates well with the +intelligibility judgments between the two, although these have not +been collected for comparison. + +Thus, the clustering technique uses information not available to +previous percent-correct distances: comparisons between all implant +users. With just baseline scores, all intelligibility scores of the +same value cannot be differentiated. For example, three +intelligibility scores of 78% cannot be distinguished as different, +even if the actual phonologies of the speakers are quite +different. However, if you know that the intelligibility between +speaker 1 and speaker 2 is 80%, while the intelligibility between both +and speaker 3 is only 30%, then you have a better basis for grouping +speakers 1 and 2 together and putting speaker 3 into a separate category. + +-Graph here so nobody has to read the gory details- + +-- How -- +The clustering technique used here is hierarchical binary +clustering. With this technique, every speaker is initially put alone +into a group. Then the two closest groups are merged. When there is +only one group left, the process is complete. This merging process +creates a tree that contains all speakers; clusters emerge from the +tree by how well the nested groups cohere. Currently, two speakers of +a set of eight have been found to cohere into a group outlying from +the rest, which cluster more closely around the baseline +speaker. Research is ongoing to determine what makes these two +speakers differ from the others. + +TECHNICAL NOTE: The two closest groups are defined by using the +greatest distance between any member in the groups. This is called +`complete link' set distance. + +ASIDE: I never figured out how to work in the term 'high-dimensional +triangulation' in a believeable way. This is too bad, because it +sounds really cool. diff --git a/ice.tex b/ice.tex new file mode 100644 index 0000000..1080772 --- /dev/null +++ b/ice.tex @@ -0,0 +1,519 @@ +\documentclass[11pt]{article} +\usepackage{times} +\usepackage{latexsym} +\usepackage{acl07} +\usepackage[all]{xy} +\author{\textbf{Nathan C. Sanders} \\ Department of Linguistics \\ + Indiana University, Bloomington, IN 47401, USA \\ \texttt{ncsander@indiana.edu}} +\title{Measuring Syntactic Difference in British English} +\begin{document} +\maketitle +%TODO: +% 7. Maybe run a set of tests with R^2? That would be easy and +% worthwhile. +% 9. *Maybe* real-language examples for methods. But if you have trouble with +% abc/xyz how do you handle REAL CS?! Or theoretical syntax? Or PERL?!? +\begin{abstract}Recent work by + \cite{nerbonne06} has provided a foundation for measuring + syntactic differences between corpora. It uses part-of-speech trigrams as an + approximation to syntactic structure, comparing the trigrams of two + corpora for statistically significant differences. + + This paper extends the method and its application. It extends the + method by using leaf-path ancestors of \cite{sampson00} instead of + trigrams, which capture internal syntactic structure---every leaf in + a parse tree records the path back to the root. + + The corpus used for testing is the International Corpus of English, + Great Britain \cite{nelson02}, which contains syntactically + annotated speech of Great Britain. The speakers are grouped into + geographical regions based on place of birth. This is different in + both nature and number than previous experiments, which found + differences between two groups of Norwegian L2 learners of + English. We show that dialectal variation in eleven British regions from the ICE-GB + is detectable by our algorithm, using both leaf-ancestor paths and trigrams. +\end{abstract} + +\section{Introduction} +In the measurement of linguistic distance, older work such as +\cite{seguy73} was able to measure distance in most areas of +linguistics, such as phonology, morphology, and syntax. The +features used for comparison were hand-picked based on +linguistic knowledge of the area being surveyed. These features, +while probably lacking in completeness of coverage, certainly allowed +a rough comparison of distance in all linguistic domains. +In contrast, computational methods have +focused on a single area of language. For example, a method for +determining phonetic distance is given by \cite{heeringa04}. Heeringa +and others have also done related work on phonological distance in +\cite{nerbonne97} and \cite{gooskens04}. A measure of syntactic +distance is the obvious next step: \cite{nerbonne06} provide one such +method. This method approximates internal syntactic structure using +vectors of part-of-speech trigrams. The trigram types can then be +compared for statistically significant differences using a permutation +test. + +This study can be extended in a few ways. +First, the trigram approximation works well, but it +does not necessarily capture all the information of syntactic +structure such as long-distance movement. Second, +the experiments did not test data for geographical dialect variation, +but compared two generations of Norwegian L2 learners of English, with +differences between ages of initial acquisition. + +We address these areas by using the syntactically annotated speech +section of the International Corpus of English, Great Britain (ICE-GB) +\cite{nelson02}, which provides a corpus with full syntactic annotations, +one that can be divided into groups for comparison. The sentences +of the corpus, being represented as parse trees rather than a vector +of POS tags, are +converted into a vector of leaf-ancestor paths, which were developed +by \cite{sampson00} to aid in parser evaluation by providing a way to +compare gold-standard trees with parser output trees. + +In this way, each sentence produces its own vector of leaf-ancestor +paths. Fortunately, the +permutation test used by \cite{nerbonne06} is already designed to +normalize the effects of differing sentence length when combining POS +trigrams into a single vector per region. The only change needed is +the substitution of leaf-ancestor paths for trigrams. + +The speakers in the ICE-GB are divided by place of birth into +geographical regions of +England based on the nine Government Office Regions, plus Scotland and +Wales. The +average region contains a little over 4,000 +sentences and 40,000 words. This is less than the size of the +Norwegian corpora, and leaf-ancestor paths are more +complex than trigrams, meaning that the amount of data required for +obtaining significance should increase. Testing on smaller corpora +should quickly show whether corpus size can be reduced without losing +the ability to detect differences. + +Experimental results show that differences can be detected among the +larger regions: as should be expected with a method +that measures statistical significance, larger corpora allow easier +detection of significance. The limit seems to be around 250,000 words for +leaf-ancestor paths, and 100,000 words for POS trigrams, but more careful +tests are needed to verify this. +Comparisons to judgments of dialectologists have not yet +been made. The comparison is difficult because of the +difference in methodology and amount of detail in +reporting. Dialectology tends to collect data from a few informants +at each location and to provide a more complex account of relationship +than the like/unlike judgments provided by permutation tests. + +\section{Methods} + +The methods used to implement the syntactic difference test come from two +sources. The primary source is the syntactic comparison of +\cite{nerbonne06}, which uses a permutation test, explained in +\cite{good95} and in particular for linguistic purposes in +\cite{kessler01}. Their permutation test +collects POS trigrams from a random subcorpus of sentences +sampled from the combined corpora. The trigram frequencies are +normalized to neutralize the +effects of sentence length, then compared to the +trigram frequencies of the complete corpora. +% \cite{nerbonne06} compare +% two generations of Norwegian L2 learners of English. + +The principal difference between \cite{nerbonne06}'s work and ours is +the use of leaf-ancestor paths. +Leaf-ancestor paths were developed by \cite{sampson00} for +estimating parser performance by providing a measure of similarity of +two trees, in particular a gold-standard tree and a machine-parsed +tree. This distance is not used for our method, since for our purposes, +it is enough that leaf-ancestor paths represent syntactic information, such as +upper-level tree structure, more explicitly than trigrams. + +The permutation test used by \cite{nerbonne06} is independent of the +type of item whose frequency is measured, treating the items as atomic +symbols. Therefore, leaf-ancestor paths should do just as well as +trigrams as long as they do not introduce any additional constraints +% constraints should=> statistical anomalies! +on how they are generated from the corpus. Fortunately, this is not +the case; \cite{nerbonne06} generate $N-2$ POS trigrams from each +sentence of length $N$; we generate $N$ leaf-ancestor paths from each +parsed sentence in the corpus. Normalization is needed to account for +the frequency differences caused by sentence length variation; it is +presented below. Since the same number (minus two) of trigrams and +leaf-ancestor paths are generated for each sentence the same +normalization can be used for both methods. + +\subsection{Leaf-Ancestor Paths} + +Sampson's leaf-ancestor paths represent syntactic structure +by aggregating nodes starting from each leaf and proceeding up to +the root---for our experiment, the leaves are parts of speech. +This maintains constant input from +the lexical items of the sentence, while giving the parse tree some +weight in the representation. + +For example, the parse tree +\[\xymatrix{ + &&\textrm{S} \ar@{-}[dl] \ar@{-}[dr] &&\\ + &\textrm{NP} \ar@{-}[d] \ar@{-}[dl] &&\textrm{VP} \ar@{-}[d]\\ + \textrm{Det} \ar@{-}[d] & \textrm{N} \ar@{-}[d] && \textrm{V} \ar@{-}[d] \\ +\textrm{the}& \textrm{dog} && \textrm{barks}\\} +\] +creates the following leaf-ancestor paths: + +\begin{itemize} +\item S-NP-Det-The +\item S-NP-N-dog +\item S-VP-V-barks +\end{itemize} + +There is one path for each word, and the root appears +in all four. However, there can be ambiguities if some +node happens +to have identical siblings. Sampson gives the example +of the two trees +\[\xymatrix{ + &&\textrm{A} \ar@{-}[dl] \ar@{-}[dr] &&&\\ + &\textrm{B} \ar@{-}[d] \ar@{-}[dl] &&\textrm{B} \ar@{-}[d] \ar@{-}[dr] & \\ + \textrm{p} & \textrm{q} && \textrm{r} & \textrm{s} \\ +} +\] +and +\[\xymatrix{ + &&\textrm{A} \ar@{-}[d] &&&\\ + &&\textrm{B} \ar@{-}[dll] \ar@{-}[dl] \ar@{-}[dr] \ar@{-}[drr]&&& \\ + \textrm{p} & \textrm{q} && \textrm{r} & \textrm{s} \\ +} +\] +which would both produce + + \begin{itemize} + \item A-B-p + \item A-B-q + \item A-B-r + \item A-B-s + \end{itemize} + + There is no way to tell from the paths which leaves belong to which + B node in the first tree, and there is no way to tell the paths of + the two trees apart despite their different structure. To avoid this + ambiguity, Sampson uses a bracketing system; brackets are inserted + at appropriate points to produce + \begin{itemize} + \item $[$A-B-p + \item A-B]-q + \item A-[B-r + \item A]-B-s + \end{itemize} +and + \begin{itemize} + \item $[$A-B-p + \item A-B-q + \item A-B-r + \item A]-B-s + \end{itemize} + +Left and right brackets are inserted: at most one +in every path. A left bracket is inserted in a path containing a leaf +that is a leftmost sibling and a right bracket is inserted in a path +containing a leaf that is a rightmost sibling. The bracket is inserted +at the highest node for which the leaf is leftmost or rightmost. + +It is a good exercise to derive the bracketing of the previous two trees in detail. +In the first tree, with two B +siblings, the first path is A-B-p. Since $p$ is a leftmost child, +a left bracket must be inserted, at the root in this case. The +resulting path is [A-B-p. The next leaf, $q$, is rightmost, so a right +bracket must be inserted. The highest node for which it is rightmost +is B, because the rightmost leaf of A is $s$. The resulting path is +A-B]-q. Contrast this with the path for $q$ in the second tree; here $q$ +is not rightmost, so no bracket is inserted and the resulting path is +A-B-q. $r$ is in almost the same position as $q$, but reversed: it is the +leftmost, and the right B is the highest node for which it is the +leftmost, producing A-[B-r. Finally, since $s$ is the rightmost leaf of +the entire sentence, the right bracket appears after A: A]-B-s. + +At this point, the alert reader will have +noticed that both a left bracket and right bracket can be inserted for +a leaf with no siblings since it is both leftmost and rightmost. That is, +a path with two brackets on the same node could be produced: A-[B]-c. Because +of this redundancy, single children are +excluded by the bracket markup algorithm. There is still +no ambiguity between two single leaves and a single node with two +leaves because only the second case will receive brackets. + +% See for yourself: +% \[\xymatrix{ +% &\textrm{A} \ar@{-}[dl] \ar@{-}[dr] &\\ +% \textrm{B} \ar@{-}[d] &&\textrm{B} \ar@{-}[d] \\ +% \textrm{p} && \textrm{q} \\ +% } +% \] + +% \[\xymatrix{ +% &\textrm{A} \ar@{-}[d] &\\ +% &\textrm{B} \ar@{-}[dl] \ar@{-}[dr] & \\ +% \textrm{p} && \textrm{q} \\ +% } +% \] + +% \cite{sampson00} also gives a method for comparing paths to obtain an +% individual path-to-path distance, but this is not necessary for the +% permutation test, which treats paths as opaque symbols. + +\subsection{Permutation significance test} + +With the paths of each sentence generated from the corpus, then sorted +by type into vectors, we now try to determine +whether the paths of one region occur in significantly different +numbers from the paths of another region. To do this, we calculate some +measure to characterize the difference between two vectors as a single +number. \cite{kessler01} creates a simple measure called the +{\sc Recurrence} metric ($R$ hereafter), which +is simply the sum of absolute differences of all path token counts +$c_{ai}$ from the first corpus $A$ and $c_{bi}$ from the second corpus +$B$. +\[ R = \Sigma_i |c_{ai} - \bar{c_i}| \textrm{ where } \bar{c_i} = \frac{c_{ai} + c_{bi}}{2}\] +However, to find out if the value of $R$ is significant, we +must use a permutation test with a Monte Carlo technique described by +\cite{good95}, following +closely the same usage by \cite{nerbonne06}. The intuition behind +the technique is to compare the $R$ of the two corpora with the $R$ of +two random subsets of the combined corpora. If the random subsets' $R$s +are greater than the $R$ of the two actual corpora more than $p$ percent +of the time, then we can reject the null hypothesis that the two were +are actually drawn from the same corpus: that is, we can assume that +the two corpora are different. + +However, before the $R$ values can be compared, the path counts in the +random subsets must +be normalized since not all paths will occur in every subset, and +average sentence length will differ, causing relative path frequency +to vary. There are two normalizations that must occur: normalization +with respect to sentence length, and +normalization with respect to other paths within a subset. + +The first stage of normalization normalizes the counts for each path +within the pair of vectors $a$ and $b$. The purpose is to neutralize the +difference in sentence length, in which longer sentences with more +words cause paths to be relatively less frequent. +Each count is converted to a frequency $f$ \[f=\frac{c}{N} \] where +$c$ is either $c_{ai}$ or $c_{bi}$ from above and $N$ is the length of the +containing vector $a$ or $b$. This produces two frequencies, $f_{ai}$ and +$f_{bi}$.Then the frequency is scaled +back up to a redistributed count by the equation +\[\forall j \in a,b : c'_{ji} = \frac{f_{ji}(c_{ai}+c_{bi})}{f_{ai}+f_{bi}}\] +This will redistribute the total of a pair from $a$ and $b$ based on +their relative frequencies. In other words, the total of each path +type $c_{ai} + c_{bi}$ will remain the same, but the values of +$c_{ai}$ and $c_{bi}$ will be balanced by their frequency +within their respective vectors. + +For example, assume that the two corpora have 10 sentences each, with +a corpus $a$ with only 40 words and another, $b$, with 100 words. This +results in $N_a = 40$ and $N_b = 100$. Assume also that there is a +path $i$ that occurs in both: $c_{ai} = 8$ in $a$ and $c_{bi} = 10$ in +$b$. This means that the relative frequencies are $f_{ai} = 8/40 = 0.2$ +and $f_{bi} = 10/100 = 0.1$. The first normalization will redistribute the +total count (18) according to relative size of the frequencies. So +\[c_{ai}' = \frac{0.2(18)}{0.2+0.1} = 3.6 / 0.3 = 12\] and +\[c_{bi}' = \frac{0.1(18)}{0.2+0.1} = 1.8 / 0.3 = 6\] +Now that 8 has been scaled to 12 and 10 to 6, the effect of sentence length +has been neutralized. This reflects the intuition that something that +occurs 8 of 40 times is more important than something that occurs 10 +of 100 times. + +% this is the (*2n) / N bit +The second normalization normalizes all values in both +permutations with respect to each other. This is simple: find the +average number of times each path appears, then divide each scaled +count by it. This produces numbers whose average is 1.0 and whose +values are multiples of the amount that they are greater than the average. +The average path +count is $N / 2n$, where $N$ is the number of path tokens in +both the permutations and $n$ is the number of path types. Division by +two is necessary since we are multiplying counts from a single permutation by +token counts from both permutations. Each type entry in the +vector now becomes \[\forall j \in a,b : s_{ij} = \frac{2nc_{ij}'}{N}\] + +Starting from the previous example, this second normalization first +finds the average. Assuming 5 unique paths (types) for $a$ and 30 for +$b$ gives \[n = 5 + 30 = 35\] and +\[N = N_a + N_b = 40 + 100 = 140\] +Therefore, the average path type has $140 / 2(35) = 2$ +tokens in $a$ and $b$ respectively. Dividing $c_{ai}'$ and $c_{bi}'$ by this average gives $s_{ai} = 6$ +and $s_{bi} = 3$. In other words, $s_{ai}$ has 6 times more tokens +than the average path type. + +%% This is definitely the code at the end of normaliseall +% The third stage of normalization normalizes all subset corpora with +% respect to each other. This process has the same effect as the second stage of +% normalization, but carried out over all subsets: +% each path type is averaged over every corpus; then each type is divided +% by that average. The final result is the same as the second normalization: +% each corpus consists of multiples of an average of $1.0$. The +% difference is that after the second normalization all types within a +% single subset corpus vary around an average of 1.0. After the third +% normalization, the values for a single type vary around an average of +% 1.0 across all subsets. + +% For example, +% assume that $s_a = 6$ and $s_b = 3$ from the previous example are +% members of a subset corpus $C_1$ and that another corpus $C_2$ +% has values $ss_a = 2$ and $ss_b = 3$ for the same path. Assume this +% path type has an average of 4 across all subsets. This gives a +% normalized value of $s'_a = 1.5$ and +% $ss'_a = 0.5$. Doing the same operation with an average $S_b = 3$ gives +% normalized values $s'_b = 1$ and $ss'_b = 1$. Remember, $s_a = 6$ means +% that $s_a$ appears 6 times more than the average path in its +% subset corpus. After the last normalization, $s_a = 1.5$ means that 6 is +% 1.5 times more than the average of this path across all +% subsets. Conversely, $ss_a$'s 2 times is only 0.5 the average for +% this path. + +\section{Experiment and Results} + +The experiment was run on the syntactically annotated part of the +International Corpus of English, Great Britain corpus (ICE-GB). +The syntactic annotation labels terminals with one of twenty parts of +speech and internal nodes with a category and a function +marker. Therefore, the leaf-ancestor paths each started at the root of +the sentence and ended with a part of speech. +For comparison to the experiment conducted by \cite{nerbonne06}, the +experiment was also run with POS trigrams. Finally, a control +experiment was conducted by comparing two permutations from the same +corpus and ensuring that they were not significantly different. + +ICE-GB reports the place of birth of each speaker, which is the best +available approximation to which dialect a speaker uses. As a simple, +objective partitioning, the speakers were divided into 11 geographical +regions based on the 9 Government Office Regions of England with Wales +and Scotland added as single regions. Some speakers had to be thrown +out at this point because they lacked brithplace information or were +born outside the UK. Each region varied in size; however, the average +number of sentences per corpus was 4682, with an average of 44,726 +words per corpus (see table \ref{size}). Thus, the average +sentence length was 9.55 words. The average corpus was smaller than +the Norwegian L2 English corpora of \cite{nerbonne06}, which had two +groups, one with 221,000 words and the other with 84,000. + +% NW=NW +% NE=Northumbria +% Yorkshire=Yorkshire/Humber +% East=East Anglia +% London=London +% Southeast=SE +% Southwest=West +% East-Midlands~=Middle England (except I think bigger) +% West-Midlands~=Heart of England (except smaller--nothing to S or E) +\begin{table} +\begin{tabular}{|lcc|} \hline +Region & sentences & words \\ +\hline \hline + East England & 855 & 10471 \\ \hline + East Midlands & 1944 & 16924 \\ \hline + London & 24836& 244341 \\ \hline + Northwest England & 3219 & 27070 \\ \hline + Northeast England & 1012 & 10199 \\ \hline + Scotland & 2886 & 27198 \\ \hline + Southeast England & 11090 & 88915 \\ \hline + Southwest England & 939 & 7107 \\ \hline + West Midlands & 960 & 12670 \\ \hline + Wales & 2338 & 27911 \\ \hline + Yorkshire & 1427 & 19092 \\ \hline +\end{tabular} +\label{size} +\caption{Subcorpus size} +\end{table} +%Priscilla Rasmussen, ACL, 209 N. Eighth Street, Stroudsburg, PA 18360 + +\begin{table} + \begin{tabular}{|c|c|} \hline % or use * ** *** notation + Region & Significantly different ($p < 0.05$) \\ \hline + London & East Midlands, NW England \\ + & SE England, Scotland \\ \hline + SE England & Scotland \\ \hline + \end{tabular} + \label{diffs} +\caption{Significant differences, leaf-ancestor paths} +\end{table} + +Significant differences (at $p < 0.05$) were found when +comparing the largest regions, but no significant differences were +found when comparing small regions to other small regions. The +significant differences found are given in table \ref{diffs} and +\ref{trigramdiffs}. It seems that summed corpus size must reach a +certain threshold before differences can be observed reliably: about 250,000 +words for leaf-ancestor paths and 100,000 for trigrams. There are exceptions in +both directions; the total size of London compared to Wales is larger than +the size of London +compared to the East Midlands, but the former is not statistically different. +On the other hand, the total size of Southeast England compared to +Scotland is only half of the other significantly different comparisons; this +difference may be a result of +more extreme syntactic differences than the other areas. +Finally, it is interesting to note that the summed Norwegian corpus +size is around 305,000 words, which is about three times the size needed +for significance as estimated from the ICE-GB data. + +\begin{table} + \begin{tabular}{|c|c|} \hline % or use * ** *** notation + Region & Significantly different ($p < 0.05$) \\ \hline + London & East Midlands, NW England, \\ + & NE England, SE England,\\ + & Scotland, Wales \\ \hline + SE England & London, East Midlands, \\ + & NW England, Scotland \\ \hline + Scotland & London, SE England, Yorkshire \\ \hline + \end{tabular} + \label{trigramdiffs} +\caption{Significant differences, POS trigrams} +\end{table} + +\section{Discussion} + +Our work extends that of \cite{nerbonne06} in a number of ways. We +have shown that an alternate method of representing syntax still +allows the permutation test to find significant differences between +corpora. In addition, we have shown differences between corpora divided +by geographical area rather than language proficiency, with many more +corpora than before. Finally, we have shown that the size of the +corpus can be reduced somewhat and still obtain significant results. + +Furthermore, we also have shown that both leaf-ancestor paths and POS +trigrams give similar results, although the more complex paths require more data. + +However, there are a number of directions that this experiment should +be extended. A comparison that divides the speakers into traditional +British dialect areas is needed to see if the same differences can be +detected. This is very likely, because corpus divisions that better +reflect reality have a better chance of achieving a significant difference. + +In fact, even though leaf-ancestor paths should provide finer +distinctions than trigrams and thus require more data for detectable +significance, the regional corpora presented here were smaller than +the Norwegian speakers' corpora \cite{nerbonne06} by up to a factor of +10. This raises the question of a lower limit on corpus size. Our +experiment suggests that the two corpora must have at least 250,000 words, +although we suspect that better divisions will allow smaller corpus sizes. + +While we are reducing corpus size, we might as well compare the +increasing numbers of smaller and smaller corpora in an advantageous +order. It should be possible to cluster corpora by the point at which +they fail to achieve a significant difference when split from a +larger corpus. In this way, regions could be +grouped by their detectable boundaries, not a priori distinctions +based on geography or existing knowledge of dialect boundaries. + +Of course this indirect method would not be needed if one had a direct +method for clustering speakers, by distance or other +measure. Development of such a method is worthwhile research for the future. + +%THEND + +\bibliographystyle{acl} +\bibliography{central} +\end{document} + +%%% Local Variables: +%%% mode: latex +%%% TeX-master: t +%%% End: diff --git a/ice/build.py b/ice/build.py new file mode 100644 index 0000000..8406389 --- /dev/null +++ b/ice/build.py @@ -0,0 +1,93 @@ +#!/bin/python2.5 +# to run: nohup python2.5 build.py >build.out & +import os +import sys +import shutil +from util.lst import cross +import hielo +import extract +import cat +## util ## +def each(f, l): + for x in l: + f(x) +## code ## +def blade(args): + """run cross comparisons""" + (iterations, samples, r, suffix, division) = args + outputname = 'res-11-%s-%s-%s-%s-%s.txt' % tuple(args) + print 'Starting', outputname, '...' + open('ice-%s.sh' % suffix,'w').write(hielo.gensh(outputname, + suffix, + division)) + try: + os.remove(outputname) + except OSError: + pass # who cares if the output file didn't already exist? + params = open('params.h','w') + params.write('#define ITERATIONS %s\n' % iterations) + params.write('#define SAMPLES %s\n' % samples) + params.write('#define R_MEASURE %s\n' % r) + params.close() + os.system('g++ -o ctrl.out params.h icectrl.cpp') + + nohup = open('nohup.out','w') + nohup.write('Running %s' % (suffix,)) + nohup.close() + os.system('nice -n 6 nohup bash ice-%s.sh >>nohup.out' % suffix) + + graphname = 'graph-11-%s-%s-%s-%s-%s.txt' % tuple(args) + f = open(graphname, 'w') + for src,dsts in hielo.process(outputname, int(iterations)).items(): + f.write(src) + for dst in dsts: + f.write(' ' + dst) # This is a stupid way to do this ok + f.write('\n') + f.close() +def distance(): + outputname = 'dist-11-100-1000-r-path-gor.txt' + print 'Starting', outputname, '...' + open ('ice-distance.sh','w').write(hielo.gensh(outputname, 'path', 'gor')) + try: # delete previous run (since ice-distance.sh appends to the file) + os.remove(outputname) + except OSError: + pass # don't complain for the first run when there is no output file + params = open('params.h','w') + params.write('#define ITERATIONS 1000\n') + params.write('#define SAMPLES 1000\n') + params.write('#define R_MEASURE r') + params.close() + + os.system('g++ -o ctrl.out params.h icectrl.cpp') + os.system('nice -n 6 nohup bash ice-distance.sh >>nohup.out') +def divide(): + """Most of the work that this did has been taken over by generating + sspeaker-*.csv and then running extract.generate""" + cat.generate('ns') + cat.generate('nsrandom') + +# run the (possibly correct?) distance measure +if 'distance': + distance() +# if needed, regenerate compressed files +elif not 'regen': + extract.generate('sspeaker-londonscotlandshuffle.csv') + extract.generate('sspeaker-region.csv') + # Note: filtering speakers by birthplace/education is still done ooband + # by using sspeaker-*.csv + # though see extract.shufflelondonscotland for an example +else: + params = cross(['1000'], + ['500','1000'], + ['r','r_sq'], + ['path','trigram'], + ['ns', 'nsrandom', 'gor']) + each(blade, params) + # hielo.count('res-11-%s-%s-%s-%s.txt', params) + +# run analysis. (maybe using R or something) +# R does correlations. R is awesome at correlating things. +# TODO: Do this somehow. See hielo.py for now. +# TODO: Uh, decide WHICH analyses to run. Correlations are cool. I like them +# but maybe just a comparison of which distances are significant is enough. +# or perhaps a clustering would be cool too diff --git a/ice/cat.py b/ice/cat.py new file mode 100644 index 0000000..cd06d5c --- /dev/null +++ b/ice/cat.py @@ -0,0 +1,28 @@ +from util.lst import cross +import random +northern = ('Northern', 'Wales Northwest Scotland Northeast WestMidlands'.split()) +southern = ('Southern', 'Southeast London EastMidlands'.split()) +def each(f, l): + for x in l: + f(x) +def cat(((name, region), suffix)): + f = open('%s-%s.dat' % (name,suffix), 'w') + f.write(name + '\n') + for loc in region: + it = open('%s-%s.dat' % (loc, suffix)) + it.next() + f.writelines(it) + f.write('***\n') + f.close() +def generate(division): + if division=='ns': + each(cat, cross([northern, southern], 'path trigram'.split())) + else: + ns = northern[1] + southern[1] + random.shuffle(ns) + n = ('NorthernRandom', ns[:len(northern[1])]) + s = ('SouthernRandom', ns[len(northern[1]):]) + each(cat, cross([n, s], 'path trigram'.split())) + +if __name__=="__main__": + generate('ns') diff --git a/ice/extract.py b/ice/extract.py new file mode 100644 index 0000000..4cbf0dc --- /dev/null +++ b/ice/extract.py @@ -0,0 +1,63 @@ +"""Produce and read/write tiny format text files. Call extract.generate. +Only works on jones. This code is specific to my syntax distance project. +iceread.read sort of is, but actually {str:[tree]} is generally useful since +you can choose which column is the key""" +from __future__ import division +from typecheck import typecheck +from util.lst import fst,snd,concat,mapn +from util.fnc import cur +from util import dct +import path +import iceread +@typecheck(str, (str,[[str]])) +def read(fname): + acc = [] + region = [] + f = open(fname) + name = chomp(f.next()) + for line in imap(chomp,f): + if line=="***": + region.append(acc) + acc = [] + else: + acc.append(line) + region.append(acc) + f.close() + return name,region +@typecheck(str, [[str]], str, None) +def write(name, region, fname): + open(fname,'w').write(name + "\n" + + "\n***\n".join("\n".join(sent) for sent in region)) +def chars(): + i = 0 + while True: + s = '' + j = i + while j+32 > 255: + s += chr(j % 223 + 32) + j //= 223 + yield s + chr(j % 223 + 32) + i += 1 +def encode(l): + return dict(zip(l, chars())) +@typecheck({str:[[(str, [object])]]}, {str:[[(str, [object])]]}) +def tinify(regions): + items = sorted(dct.count(mapn(concat, regions.values())).items(), key=snd) + code = encode(map(fst, items)) + return dct.map(cur(map, cur(map, code.__getitem__)), regions) +def readcorpus(extractor, speakers): + return dct.map(cur(map, extractor), iceread.read(speakers, 12)) +def generate(speakers): + for region, data in tinify(readcorpus(path.trigrams,speakers)).items(): + write(region, data, region+'-trigram.dat') + for region, data in tinify(readcorpus(path.paths,speakers)).items(): + write(region, data, region+'-path.dat') +import csv +import random +def shufflelondonscotland(): + speakers = list(csv.reader(open('sspeaker-londonscotland.csv'))) + londoners = len([s for s in speakers if s[12]=='London']) + random.shuffle(speakers) + for i,s in enumerate(speakers): + s[12] = 'Ldonon' if i < londoners else 'Stolcnad' + csv.writer(open('sspeaker-londonscotlandshuffle.csv', 'w')).writerows(speakers) diff --git a/ice/hielo.py b/ice/hielo.py new file mode 100644 index 0000000..bbcd34b --- /dev/null +++ b/ice/hielo.py @@ -0,0 +1,71 @@ +from __future__ import division +from util.lst import group, cross, concat +from util import dct +from util.text import chomp +from typecheck import typecheck +regions = {'gor':('East', 'WestMidlands', 'EastMidlands', "London", + "Southeast", "Southwest", "Northeast", "Northwest", + "Scotland", "Wales", "Yorkshire"), + 'ns': ('London', 'Scotland'), + 'nsrandom':('Ldonon', 'Stolcnad')} +def pairwise(l): + return [(x,y) for i,x in enumerate(l) for y in l[i+1:]] +def gensh(outname, suffix, division): + sh = '#!/bin/bash\n' + suffix = '-' + suffix + '.dat' + return sh + '\n\n'.join('''echo Starting %(n1)s %(n2)s ... +nice -n 6 ./ctrl.out %(n1)s%(suf)s %(n2)s%(suf)s >>%(out)s''' + % dict(n1=name1,n2=name2,suf=suffix,out=outname) + for name1,name2 in pairwise(regions[division])) +def norm(s): + if s.endswith("_tiny\n"): + return chomp(s)[:-5] + else: + return chomp(s) +@typecheck(str, [(str,str,str)]) +def clean(outname): + return [(norm(src),norm(dst),sig) + for (src,dst,dots,sig) in group(list(open(outname)), 4)] + #for (src,dst,d_avg,dots,sig) in group(list(open(outname)), 5)] +@typecheck([(str,str,str)], int, [(str,str)]) +def significants(edges, iterations): + return [(src,dst) for (src,dst,sig) in edges + if float(sig) / iterations <= 0.05] +@typecheck([(str,str,str)], int, {str:[str]}) +def graph(edges, iterations): + return dct.collapse_pairs(significants(edges, iterations)) +def directed(graph): + return dct.collapse_pairs(concat([[(k,v),(v,k)] + for k in graph for v in graph[k]])) +@typecheck(str, int, {str:[str]}) +def process(outname, iterations): + return graph(clean(outname), iterations) +@typecheck(str, [[str]], {(str,str):int}) +def count(filepattern, params): + return dct.count([(src,dst) for param in params + for (src,dst) in + significants(clean(filepattern % tuple(param)), 1000)]) +## pat = 'res-11-%s-%s-%s-%s.dat' +## params = [['1000', '1000', 'r', 'tiny'], ['1000', '1000', 'r', 'trigram'], ['1000', '1000', 'r_sq', 'tiny'], ['1000', '1000', 'r_sq', 'trigram'], ['1000', '500', 'r', 'tiny'], ['1000', '500', 'r', 'trigram'], ['1000', '500', 'r_sq', 'tiny'], ['1000', '500', 'r_sq', 'trigram']] +## d = count(pat, params) +# TODO: Fold this code in somehow +## >>> f = dct.filter_values(lambda v : v > 2, d) +## >>> f +## {('Middle_England', 'SE_England'): 5, ('London', 'Scotland'): 5, ('London', 'Wales'): 3, ('London', 'Northumbria'): 3, ('Heart_of_England', 'Wales'): 3, ('NW_England', 'SE_England'): 3, ('London', 'NW_England'): 4, ('London', 'Middle_England'): 4, ('NW_England', 'Scotland'): 3, ('London', 'SE_England'): 6, ('SE_England', 'Scotland'): 4} +## >>> from pprint import pprint +## >>> pprint(f) +## {('Heart_of_England', 'Wales'): 3, +## ('London', 'Middle_England'): 4, +## ('London', 'NW_England'): 4, +## ('London', 'Northumbria'): 3, +## ('London', 'SE_England'): 6, +## ('London', 'Scotland'): 5, +## ('London', 'Wales'): 3, +## ('Middle_England', 'SE_England'): 5, +## ('NW_England', 'SE_England'): 3, +## ('NW_England', 'Scotland'): 3, +## ('SE_England', 'Scotland'): 4} +## total = set(dct.filter_values(lambda v : v > 2, d).keys()) +## sigs = map(set, [significants(clean(pat % tuple(param)), int(param[0])) for param in params]) +## print [total & sig for sig in sigs] +# or maybe sig - total? diff --git a/ice/ice.py b/ice/ice.py new file mode 100644 index 0000000..7ce2d19 --- /dev/null +++ b/ice/ice.py @@ -0,0 +1,177 @@ +"""This code unrepentantly requires Python 2.5. +Please do not use #!/usr/bin/python since Jones' python is only 2.3 +instead do +$ python2.5 ice.py + +See also translations to Caml and C++. C++ (ice.cpp) is the version currently +in use.""" +from __future__ import division # Python sucks at math +import sys +import re +import random +from itertools import imap +from operator import le +from util import dct +from util.fnc import car, cdr, compose, cur, iseq +from util.fs import slurp, dump +from util.lst import fst, snd, concat, mapn, cross, unzip, window +from util.reflect import traced +from util.cl import findif, countif +from util.text import chomp +from iceread import groupby, read +from path import paths +def debug(e): # I think I defined this somewhere in util + print e + return e +## Nerbonne's counting and comparison ## +def permutation(dialect): + return concat([random.choice(dialect) for _ in xrange(1000)]) +def countpaths(a,b): + "[Path]*[Path]->{Path:(float,float)}" + #TODO:I should change default=0 to some smoothed value + return dct_zip(dct.count(a), dct.count(b), default=0) +def normalise(a,b): + """[Path]*[Path]->{Path:(float,float)} where type Path = [str]""" + ab = countpaths(a,b) + N = len(a) + len(b) + n = len(ab) +## Original code: (7 lines to 8) +## def norm((a_i,b_i)): +## fa = a_i/len(a) +## fb = b_i/len(b) +## f = fa+fb +## ci=a_i+b_i +## return (ci*fa*2*n)/(f*N), (ci*fb*2*n)/(f*N) +## return dct.map(norm, ab) + for k, [a_i,b_i] in ab.iteritems(): + fa = a_i/len(a) + fb = b_i/len(b) + f = fa+fb + ci = a_i+b_i + ab[k][0] = (ci*fa*2*n)/(f*N) + ab[k][1] = (ci*fb*2*n)/(f*N) + return ab +def ara_avg(l, key): + total = 0 + for x in l: + total += key(x) + return total / len(l) +def dct_zip(*ds,**kws): + """Just like dct.zip except it returns lists instead of tuples, + which is the Wrong Thing usually, but I need to make destructive updates + """ + e={} + if 'default' in kws: + default = kws['default'] + for k in reduce(set.__or__, map(set,ds)): + e[k] = [d.get(k,default) for d in ds] + else: + for k in ds[0]: + try: + e[k] = [d[k] for d in ds] + except KeyError: pass + return e +def normaliseall(a,b): + "[[Path]]*[[Path]]->{Path:[(float,float)]}--Organise Paths by sentence." +## return dct.map(norm, dct.zip(default=(0,0), +## *[normalise(permutation(a), +## permutation(b)) for _ in xrange(1000)]) + # main body: 3 lines to 11 + # norm: 6 lines to 14 + tmp = {} + for sentence in a: + for path in sentence: + if path not in tmp: tmp[path] = [None] * 1000 + for sentence in b: + for path in sentence: + if path not in tmp: tmp[path] = [None] * 1000 +## for path in set(concat(a)) | set(concat(b)): +## tmp[path] = [[0,0]] * 1000 + ab = a + ab.extend(b) + del a; del b + for i in xrange(1000): + normtmp = normalise(permutation(ab), permutation(ab)) + for k,v in tmp.iteritems(): + try: + v[i] = normtmp[k] + except KeyError: + v[i] = [0,0] + del normtmp + sys.stdout.write('.'); sys.stdout.flush() + del ab + print + for abs in tmp.itervalues(): # this used to be the norm function + all_as = ara_avg(abs, fst) + all_bs = ara_avg(abs, snd) + if all_as==0.0 and all_bs==0.0: + pass + elif all_as==0.0: + for i,[a,b] in enumerate(abs): + abs[i][1] = b/all_bs + elif all_bs==0.0: + for i,[a,b] in enumerate(abs): + abs[i][0] = a/all_as + else: + for i,[a,b] in enumerate(abs): + abs[i][0] = a/all_as + abs[i][1] = b/all_bs + return tmp +def r(c): + total = 0 # I am not convinced this is a useful optimisation for Python + for a,b in c: # unless its GC is messed up by nested functions, which + avg = (a+b)/2 # I suspect. + total += abs(a-avg) + abs(b-avg) + return total +# def tmp((a,b)): +# avg = (a+b)/2 +# return abs(a-avg) + abs(b-avg) +# return sum(imap(tmp,c)) +def compare(a,b): + r_total = debug(r(normalise(concat(a),concat(b)).itervalues())) + # Original code: (1 line to 10) + # return countif(cur(le,r_total), map(r,unzip(normaliseall(a,b).values()))) + count = 0 + totals = [0] * 1000 + normeds = normaliseall(a,b) + for ab in normeds.itervalues(): + for i in xrange(1000): + a,b = ab[i] + avg_ab = (a + b) / 2 + totals[i] += abs(a - avg_ab) + abs(b - avg_ab) + return countif(cur(le,r_total), totals) +if __name__=="__main__": + l1name,l1 = extract.read(sys.argv[1]) + l2name,l2 = extract.read(sys.argv[2]) + #(l1name,l1),(l2name,l2) = slurp(sys.argv[1]) + print l1name, l2name, + print compare(l1,l2) + +## x = iceread.groupby(sys.argv[1], 12) # x :: {str:[Node]} + # where Node :: str | (str, [Node]) +## dump('trees.dat', x) +## x = dct.map(lambda speaker: map(paths, speaker), x) # x :: +## dump('paths.dat', x) +## import gc +## ##x = slurp('paths.dat') #resume after doing above steps +## #results = [] # had got up to 8:12 +## for (l1name,l1),(l2name,l2) in cross(x.iteritems(), x.iteritems())[:4]: +## print l1name, l2name, +## total_r = compare(l1,l2) +## print total_r +## gc.collect() + #results.append(total_r) + #results = [compare(l1,l2) for l1,l2 in cross(x.values(), x.values())] +"""Notes on memory consumption: +slurp('paths.dat') takes about 50 MB. So the gimped compare (that is +(r . normalise)) was only taking about a meg or two for each call""" +{(']', 'PU,CL', 'OD,NP', 'NPHD,N'): (0.0, 1.75), + ('PU,CL', 'OD,CL', '[', 'SU,NP', 'NPHD,PRON'): (1.75, 0.0), + ('PU,CL', '[', 'INTOP,AUX'): (0.0, 1.75), + ('PU,CL', '[', 'SU,NP', 'NPHD,PRON'): (1.75, 0.0), + ('PU,CL', 'VB,VP', 'MVB,V'): (1.75, 1.75), + (']', 'PU,CL', 'OD,CL', 'VB,VP', 'MVB,V'): (1.75, 0.0), ('PU,CL', 'SU,NP', 'NPHD,N'): (0.0, 1.75)} +## ps = dct.count(paths(read_ice(list(open('/Volumes/Data/Corpora/en/ICE-GB/ice-gb-2/data/s1a-012.cor'))))) +## for path,count in ps.items(): +## print '%s\t%s' % (count, path) +# nohup python ice.py diff --git a/ice/icectrl.cpp b/ice/icectrl.cpp new file mode 100644 index 0000000..0fefe88 --- /dev/null +++ b/ice/icectrl.cpp @@ -0,0 +1,299 @@ +#include +#include +#include +#include +#include +#include +#include +#include +#include +//#include "hash.h" +//#include "hielo_out.cpp" +#include "params.h" +namespace __gnu_cxx { // culled from the internet. + template<> // just wraps hash, which is entirely logical + struct hash { // and should have already been done + hash h; + size_t operator()(const std::string& s) const { + return h(s.c_str()); + } + }; +} +using namespace std; +using namespace __gnu_cxx; +#define TEST(x,y) cout << (x==y ? "pass" : "fail") << endl +/* Ara */ +double sum(const vector& a) { + double total = 0.0; + for(int i=0; i < a.size(); i++) + total += a[i]; + return total; +} +/* Hash */ +hash_map > count (const vector& a) { + hash_map > h; + for(int i=0; i < a.size(); i++) { + h[a[i]]++; + } + return h; +} +/* Ice */ +/* random classes from Stroustrup's 3rd edition */ +class Randint { + unsigned long randx; +public: + Randint(long s = 0) { randx=s; } + void seed(long s) { randx=s; } + //magic numbers chosen to use 31 bits of a 32-bit long + static long abs(long x) {return x & 0x7fffffff; } + static double max() { return 2147483648.0; } // note: a double + long draw() { return randx = randx * 1103515245 + 12345; } + double fdraw() { return abs(draw()) / max(); } // in the interval [0,1] + long operator()() { return abs(draw()); } // in the interval [0,2**31] +}; +class Urand : public Randint { // uniform distro in the interval [0:n[ +public: + Urand(long s = 0) : Randint(s) { } + long next(long n) { long r = long(n*fdraw()); return (r==n) ? n-1: r; } +}; +template a choice(const vector& l) { + static Urand uni((unsigned)time(0)); + return l[uni.next(l.size())]; +} +typedef vector strings; // I can't get these two to use const string +typedef vector > dialect; +typedef hash_map > entry; +typedef hash_map, hash > sample; // but this is fine. ?? +typedef hash_map >, hash > samples; +typedef vector > totals; + +template T fst(pair p) { return p.first; } +template U snd(pair p) { return p.second; } +template vector concat(const vector >& as) { + vector acc; + for(int i=0; i < as.size(); i++) { + acc.insert(acc.end(), as[i].begin(), as[i].end()); + } + return acc; +} +// = concat (maptimes (fun () -> choice dialect) 1000) +template vector permutation(const vector >& dialect) { + vector acc; + for(int i = 0; i < SAMPLES; i++) { + vector tmp = choice(dialect); + acc.insert(acc.end(), tmp.begin(), tmp.end()); + } + return acc; +} +template +pair,vector > shuffle(const vector& a, const vector& b) { + vector ab; + static Urand uni((unsigned)time(0)); + ab.insert(ab.end(), a.begin(), a.end()); + ab.insert(ab.end(), b.begin(), b.end()); + for(int i = 0; i < ab.size(); i++) { + T tmp = ab[i]; + int j = uni.next(ab.size()); + ab[i] = ab[j]; + ab[j] = tmp; + } + return make_pair(vector(ab.begin(), ab.begin()+a.size()), + vector(ab.begin()+a.size(), ab.end())); +} +sample zip_ref (entry& h, entry& h2) { + // I can't get these to be const entry&; apparently there is some + // trouble with mixing iterator types in the h2[i->first] and h[i->first] + sample h3; + for(entry::const_iterator i = h.begin(); i!=h.end(); i++) { + h3[i->first] = make_pair(i->second, h2[i->first]); + } + for(entry::const_iterator i = h2.begin(); i!=h2.end(); i++) { + entry::const_iterator loc = h.find(i->first); + if(loc==h.end()) { + h3[i->first] = make_pair(h[i->first], i->second); + } + } + return h3; +} +sample countpaths(const strings& a, const strings& b) { + entry tmp1 = count(a); // Because zip_ref takes entry&, not const entry&, + entry tmp2 = count(b); // I have to provide real l-values to zip_ref + return zip_ref(tmp1, tmp2); // that's what Bjarne Stroustrup said anyway +} +sample normalise(const strings& a, const strings& b, + int iterations=5, size_t total_types=0) { + sample ab = countpaths(a,b); + double len_a = a.size(); + double len_b = b.size(); + /*double total_n = len_a + len_b; + double n; + if(!total_types) n = ab.size(); + else n = total_types;*/ + double ci, fa, fb, f; + for(int i = 0; i < iterations; i++) { + for(sample::iterator i = ab.begin(); i!=ab.end(); i++) { + ci = i->second.first + i->second.second; + fa = i->second.first / len_a; + fb = i->second.second / len_b; + f = fa + fb; + i->second.first = ci * fa / f; + i->second.second = ci * fb / f; + /*i->second.first = (ci * fa * 2.0 * n) / (f * total_n); + i->second.second = (ci * fb * 2.0 * n) / (f * total_n);*/ + } + } + return ab; +} +sample normalise_w_types(const strings& a, const strings& b, + int iterations=5, size_t total_types=0) { + sample ab = countpaths(a,b); + double len_a = a.size(); + double len_b = b.size(); + double total_n = len_a + len_b; + double n; + if(!total_types) n = ab.size(); + else n = total_types; + double ci, fa, fb, f; + for(int i = 0; i < iterations; i++) { + for(sample::iterator i = ab.begin(); i!=ab.end(); i++) { + ci = i->second.first + i->second.second; + fa = i->second.first / len_a; + fb = i->second.second / len_b; + f = fa + fb; + i->second.first = (ci * fa * 2.0 * n) / (f * total_n); + i->second.second = (ci * fb * 2.0 * n) / (f * total_n); + } + } + return ab; +} + +double r(const sample& c) { + double total = 0.0; + for(sample::const_iterator i=c.begin(); i!=c.end(); i++) { + total += abs(i->second.first - i->second.second); + } + return total; +} +inline double sqr(double d) { // or std::pow in cmath + return d*d; +} +double r_sq(const sample& c) { + double total = 0.0; + for(sample::const_iterator i=c.begin(); i!=c.end(); i++) { + total += sqr(i->second.first - i->second.second); + } + return total; +} +/**** Diverging outer implementations in this section. + Yes it should be a separate file but I don't want to mess with CPP. + More than I am. Maybe a header file wouldn't be so bad. ***/ +int normaliseall(double total_r, size_t total_types, + const dialect& a, const dialect& b) { + // this next may be a bad idea without the ability to delete b + // In Python and Caml I assumed the GC ate b before long. + dialect both_ab(a); + both_ab.insert(both_ab.end(), b.begin(), b.end()); //delete a; delete b; ?? + int gt = 0; + for(int i=0; i < ITERATIONS; i++) { + double perm_r = + R_MEASURE(normalise_w_types(permutation(both_ab), permutation(both_ab), 5, total_types)); + if(perm_r > total_r) { + cout << '-' << flush; + gt++; + } else + cout << '.' << flush; + } + cout << endl; + return gt; +} +int normaliseshuffle(double total_r, const dialect& a, const dialect& b) { + int gt = 0; + for(int i=0; i < ITERATIONS; i++) { + pair shuffled = shuffle(a, b); + double shuffle_r = R_MEASURE(normalise(concat(shuffled.first), concat(shuffled.second), 5)); + cout << (total_r - shuffle_r) << ", " << flush; + if(shuffle_r > total_r) gt++; + } + cout << endl; + return gt; +} +// = ((<=) r_total) +int compare(const dialect& dialect_a, const dialect& dialect_b) { + sample test = normalise(concat(dialect_a), concat(dialect_b), 5); + double total_r = R_MEASURE(test); //R_MEASURE is one of r or r_sq + cout << total_r << endl; + return normaliseall(total_r, test.size(), dialect_a, dialect_b); +} +// = ((<=) r_total) +int comparepermutation(const dialect& a, const dialect& b) { + dialect both_ab(a); + both_ab.insert(both_ab.end(), b.begin(), b.end()); + int gt = 0; + for(int i=0; i < ITERATIONS; i++) { + sample total = normalise(permutation(a), permutation(b), 5); + double total_r = R_MEASURE(total); + size_t total_types = total.size(); + double perm_r = + R_MEASURE(normalise(permutation(both_ab), permutation(both_ab), 5)); + if(perm_r > total_r) { + cout << '-' << flush; + gt++; + } else + cout << '.' << flush; + } + cout << endl; + return gt; +} +// = ((<=) r_total) +int compareshuffle(const dialect& a, const dialect& b) { + sample test = normalise(concat(a), concat(b), 5); + double total_r = R_MEASURE(test); //R_MEASURE is one of r or r_sq + //cout << total_r << endl; + return normaliseshuffle(total_r, a, b); +} +double average_r(const dialect& a, const dialect& b) { + double sum = 0.0; + for(int i = 0; i < 100; i++) { + sum += R_MEASURE(normalise(permutation(a), permutation(b), 5)); + } + return sum / 100.0; +} +/*** End diverging implementation section ***/ +pair > > readfile(const char* filename) { + ifstream f(filename); + string lang; + getline(f,lang); + vector > sss; + vector ss; + string s; + while(f) { + getline(f,s); + if(s=="***") { + sss.push_back(ss); + ss = vector(); + } else { + ss.push_back(s); + } + } + sss.push_back(ss); + return make_pair(lang, sss); +} +//bool gt1 (double f) { return f > 1; } +//int ook () { return 1; } +int main(int argv, char** argc) { + if(argv==2) { + pair > > l1 = readfile(argc[1]); + cout << "Control: " << l1.first << endl; + cout << comparepermutation(l1.second, l1.second) << endl; + } else if (argv==3) { + pair > > l1 = readfile(argc[1]); + pair > > l2 = readfile(argc[2]); + cout << l1.first << endl; + cout << l2.first << endl; + cout << average_r(l1.second, l2.second) << endl; + } else { + cout << "Not enough arguments: " << argv << endl; + } + return 0; +} + diff --git a/ice/iceread.py b/ice/iceread.py new file mode 100644 index 0000000..63cb8ea --- /dev/null +++ b/ice/iceread.py @@ -0,0 +1,71 @@ +"""To use: +iceread.read('sspeakers.csv', 12) +Note: contains a hard-coded corpus path. read and corpus will only work on jones +Note: Convert sspeakers to comma delimited. The default is tab-delimited. +""" +from util import dct +from util.fnc import car, cdr, cur, pipe, iseq, elem +from util.lst import takewhile, mapn +from util.reflect import traced +from typecheck import typecheck +import re +import csv +## util ## +def splitby(f, l, first=False): + """a->bool*[a]*bool->[[a]]--Why isn't this in the util.lst library? + + Because itertools.groupby provides an iterator version of it. I thought + that it sufficed at the time, but as an iterator it is too destructive.""" + outer = [] + it = iter(l) + if first: + acc = [it.next()] + else: + acc = [] + for x in it: + if not f(x): + acc.append(x) + else: + outer.append(acc) + acc = [x] + outer.append(acc) + return outer +def carcdr(l): + return l[0],l[1:] +## code ## +def clean(line): + return takewhile(lambda c:c!='(' and c!='{', line.strip()) +def indent(line): + return len(takewhile(iseq(' '), line)) +def useful(line): + return 'ignore' not in line and line[0] != "[" +def speaker_code(line): # warning! I think this is borken + match = re.search("<#X?[0-9]{1,4}:[0-9]:([A-Z?])>", line) + return match.group(1) if match else '' +@typecheck(object, {str:[(str, [object])]}) +def sentences(lines): + @typecheck([str], [(str, [object])], n=int) + def parseloop(lines, n=0): + return [(clean(lines[0]), + parseloop(lines[1:], n=n+1) if lines[1:] else []) + for lines in splitby(lambda line:n==indent(line), lines, True)] + return dct.collapse(splitby(elem(''), lines, first=True), + pipe(car, speaker_code), + pipe(cdr, cur(filter, useful), parseloop, car)) +@typecheck(str, int, {str:[(str,str)]}) +def groupby(speakerfile, index): + "12 is birthplace, 14 is education level; 1 is filename, 3 is speaker code" + return dct.collapse_pairs([(x[index],(x[1],x[3])) for x in + csv.reader(open(speakerfile))][1:]) + ## note:should filter by amount of data not number of speakers +@typecheck({str:[(str,str)]}, {str:[(str, [object])]}) +def corpus(speakers): + "Warning! This contains a hard-coded path specific to jones" + @typecheck((str,str), [(str, [object])]) + def per_speaker((fname,speaker)): + return sentences(open('/Volumes/Data/Corpora/en/ice-gb/ice-gb-2/data/'+ + fname.lower()+'.cor'))[speaker] + return dct.map(lambda files: mapn(per_speaker, files), speakers) +def read(speakerfile, index): + return corpus(groupby(speakerfile, index)) + diff --git a/ice/path.py b/ice/path.py new file mode 100644 index 0000000..5db9b44 --- /dev/null +++ b/ice/path.py @@ -0,0 +1,66 @@ +from util import dct +from util.lst import window, mapn, concat +from util.fnc import elem +from util.cl import findif +from typecheck import typecheck +## util ## +class Eq: + """Interns things, making them test by eq?, not equal? (is, not ==) + + Useful in Python, where equal? testing is the default but sometimes you + need eq? testing. Since it reduces == calls to a pointer compare it might + also improve efficiency in some cases""" + def __init__(self, x): + self.x = x + def get(self): + return self.x + def __str__(self): + return "'%s" % (self.x,) + def __repr__(self): + return "Eq(%r)" % (self.x,) +## code ## +def leaves((head,children)): + if children: + return mapn(leaves, children) + else: + return [head] +def trigrams(tree): + return map('-'.join, window(leaves(tree) ,3)) +# NOTE: type path = str, but is [str] internally +@typecheck((str, [object]), [str]) +def paths(tree): + paths = [] + @typecheck((str,[object]), [Eq], [[Eq]]) + def makepaths((head, children), path): + path = path + [Eq(head)] + if children: + return mapn(lambda child: makepaths(child, path), children) + else: + return [path] + return map('-'.join, bracketpaths(makepaths(tree, []))) +@typecheck([[Eq]], [[str]]) +def bracketpaths(paths): + "add brackets to disambiguate paths (and remove Eq wrapper)" + spans = dct.count(concat(paths)) + hapax = set(node for (node,n) in spans.items() if n==1) + firsts = dict((node,findif(elem(node),paths)[-1]) for node in spans) + lasts = dict((node,findif(elem(node),reversed(paths))[-1]) for node in spans) + @typecheck([Eq], [str]) + def bracket(path): + first = edge(path, firsts, hapax) + last = edge(path, lasts, hapax) + if first != -1: + return map(Eq.get,path[:first+1])+["["]+map(Eq.get,path[first+1:]) + elif last != -1: + return map(Eq.get,path[:last])+["]"]+map(Eq.get,path[last:]) + else: + return map(Eq.get, path) + return map(bracket, paths) +@typecheck([Eq], {Eq:Eq}, set, int) +def edge(path, edges, hapax): + "find the index of the highest node that receives a bracket, -1 if none" + highest = -1 + for i,node in reversed(list(enumerate(path))): + if edges[node]==path[-1] and node not in hapax: + highest = i + return highest diff --git a/ice/region-map.txt b/ice/region-map.txt new file mode 100644 index 0000000..f855144 --- /dev/null +++ b/ice/region-map.txt @@ -0,0 +1,143 @@ +Perth, Australia|Australia +Australia|Australia +Halifax|Canada +China|China +Germany|Germany +India|India +New Zealand|New Zealand +Poland|Poland +Portugal|Portugal +Cape Town|South Africa +South Africa|South Africa +Spain|Spain +Trinidad|Trinidad +USA|USA +Cumbria|Cumbria +Suffolk|East +Cambridge|East +Ipswich|East +Norfolk|East +Norwich|East +Peterborough|East +Birmingham|WestMidlands +Cheltenham|WestMidlands +Cirencester|WestMidlands +Northampton|WestMidlands +Shropshire|WestMidlands +Stroud|WestMidlands +Warwickshire|WestMidlands +Wolverhampton|WestMidlands +Worcs|WestMidlands +Worcestershire|WestMidlands +Brambletye|Unknown +UK|Unknown +Dublin|Ireland +Belfast|Ireland +London?|London +Ascot|London +Bridgewater|London +Bromley|London +Croydon|London +Cumberland|London +Dulwich|London +Essex|London +Haileybury|London +Hammersmith|London +Harrow|London +Hemel Hempstead|London +Hertfordshire|London +London (south)|London +London south|London +London|London +Middlesex|London +Nr Guildford|London +Rotherhithe|London +Sevenoaks|London +South London|London +St Albans|London +Stanmore|London +Watford|London +Weybridge|London +Willesden, London|London +Pinner, Middlesex|London +Coventry|EastMidlands +Derby|EastMidlands +Grantham|EastMidlands +Kettering|EastMidlands +Leicester|EastMidlands +Midlands|EastMidlands +Nottingham|EastMidlands +Sheffield|EastMidlands +Birkenhead|Northwest +Burnley|Northwest +Cheshire|Northwest +Lancashire|Northwest +Liverpool|Northwest +Liverpool|Northwest +Manchester|Northwest +Merseyside|Northwest +St Helens|Northwest +Stretford|Northwest +Hyde, Cheshire|Northwest +Galgate, Lancaster|Northwest +North England|Northeast +Darlington|Northeast +Durham|Northeast +Hartlepool|Northeast +Herefordshire|Northeast +Newcastle|Northeast +Newcastle-upon-Tyne|Northeast +Tyne & Wear|Northeast +Amesbury|Southeast +Aylesbury|Southeast +Oxford|Southeast +Portsmouth|Southeast +Reading|Southeast +Oxfordshire|Southeast +Southampton|Southeast +Croxley|Southeast +UK South|Southeast +UK south|Southeast +Berwick|Southeast +Bexhill|Southeast +Brighton|Southeast +Kent|Southeast +South east UK|Southeast +Surrey|Southeast +Surrey/Kent|Southeast +Sussex|Southeast +Tunbridge Wells|Southeast +West Kent|Southeast +UK south east|Southeast +N. Kent|Southeast +Horsham, Essex|Southeast +Edinburgh|Scotland +Glasgow|Scotland +Scotland|Scotland +Ayr, Scotland|Scotland +Dunoon, Scotland|Scotland +Paisley, Scotland|Scotland +Dumfries|Scotland +Kincardineshire|Scotland +Lerwick, Shetland|Shetland +Devon|Southwest +Plymouth|Southwest +Truro|Southwest +Dorset|Southwest +Wiltshire|Southwest +Stroud, Glos.|Southwest +Newport|Wales +North Wales|Wales +South Wales|Wales +Wales|Wales +Cardigan, Wales|Wales +Colwyn Bay, Wales|Wales +Glamorgan, Wales|Wales +Port Talbot, Wales|Wales +Bradford|Yorkshire +Leeds|Yorkshire +West Yorkshire|Yorkshire +York|Yorkshire +Yorkshire|Yorkshire +Barnsley|Yorkshire +Keighley, Yorkshire|Yorkshire diff --git a/ice/sspeaker-filter.csv b/ice/sspeaker-filter.csv new file mode 100644 index 0000000..370ea93 --- /dev/null +++ b/ice/sspeaker-filter.csv @@ -0,0 +1,194 @@ +speakers,Textcode,Subtextno,Speaker,Original Spkr,Aware,Role,Surname,Forenames,Age,Gender,Nationality,Birthplace,Education,Educlevel,Occupation,Affiliations,Other languages,Comments +24,S1A-009,1,B,,yes,,Sayce,Peter,26-45,male,British,London,,Secondary,Government executive,,, +25,S1A-010,1,A,,yes,,Moore,Nina,66+,female,British,London,,Secondary,Welfare officer (retired),,, +26,S1A-010,1,B,,yes,,Moore,Miranda,26-45,female,British,London,,Secondary,Writer,,, +38,S1A-013,1,B,,yes,,,,46-65,female,British,EastMidlands,,Secondary,Housewife +39,S1A-013,1,C,,yes,,,,46-65,male,British,EastMidlands,,Secondary,Housewife +57,S1A-018,1,A,,yes,,Tollfree,Eleanor,20,female,British,London,,Secondary,Student,,, +78,S1A-022,1,A,,yes,,Clift,Naomi,21,female,British,China,,Secondary,Student,,,Adopted in infancy; born Mauritian Chinese +82,S1A-023,1,A,,yes,,,,46-65,male,British,London,,Secondary,Journalist,,, +83,S1A-023,1,B,,yes,,,,46-65,female,British,Southeast,,Secondary,Writer,,, +86,S1A-025,1,A,,yes,,,,26-45,male,British,London,,Secondary,,,,Brother of $B +87,S1A-025,1,B,,yes,,,,26-45,female,British,London,,Secondary,Secretary,,,Sister of $A +96,S1A-028,1,A,,yes,,,Fred,92,male,British,Southwest,,Secondary,Ex-shopkeeper,,, +99,S1A-028,1,D,,yes,,Clift,Naomi,21,female,British,China,,Secondary,Student,,,Adopted in infancy; born Mauritian Chinese +100,S1A-028,1,E,,yes,,,,80,female,British,Southwest,,Secondary,,,, +115,S1A-032,1,D,,yes,,Clift,Naomi,21,female,British,China,,Secondary,Student,,,Adopted in infancy; born Mauritian Chinese +117,S1A-032,2,B,,yes,,Clift,Naomi,21,female,British,China,,Secondary,Student,,,Adopted in infancy; born Mauritian Chinese +123,S1A-034,1,B,,yes,,,,18-25,male,British,Northwest,,Secondary,Student,,, +125,S1A-035,1,B,,yes,,,,18-25,female,British,East,,Secondary,Student,,, +126,S1A-036,1,A,,yes,,,Caroline,29,female,British,London,O-Levels,Secondary,"Secretary, Thames Water Co.",,, +127,S1A-036,1,B,,yes,,,Alice,29,female,British,London,O-Levels,Secondary,"Secretary, Consumers' Association",,, +146,S1A-043,1,B,,yes,,,,28,male,British,Northwest,,Secondary,Musician +160,S1A-047,1,B,,yes,,,,26-45,female,British,London,"Undergraduate student, UCL",Secondary,Student +161,S1A-047,1,C,,yes,,,,66+,female,British,London,,Secondary,Ex-secretary (retired) +163,S1A-048,1,B,,yes,,,,26-45,female,British,London,,Secondary,Nursery Nurse +164,S1A-048,1,C,,yes,,,,26-45,female,British,London,"Undergraduate student, UCL",Secondary,Student +165,S1A-049,1,A,,yes,,,Karen,30,female,British,London,O-Levels,Secondary,"Administrator, interior design company" +166,S1A-049,1,B,,yes,,,Alice,29,female,British,London,O-Levels,Secondary,"Secretary, Consumers' Association" +167,S1A-049,1,C,,yes,,,Caroline,29,female,British,London,O-Levels,Secondary,"Secretary, Thames Water Co." +169,S1A-050,1,B,,yes,,,Stella,18-25,female,British,Northwest,,Secondary,Student +171,S1A-051,1,B,,yes,,,,66+,female,British,Southeast,,Secondary,Housewife +173,S1A-051,2,B,,yes,,,,18-25,male,British,East,,Secondary,Student +175,S1A-051,3,B,,yes,,,,26-45,female,British,London,,Secondary,Student +177,S1A-051,4,B,,yes,,,,18-25,male,British,London,,Secondary,Student +179,S1A-052,1,B,,yes,,,,46-65,male,British,London,,Secondary,Photojournalist,, +181,S1A-052,2,A,,yes,,,,46-65,male,British,London,,Secondary,Photojournalist,, +186,S1A-053,1,C,,yes,,,,46-65,male,British,London,,Secondary,Computer management,, +218,S1A-059,1,B,,yes,,,,18-25,male,British,London,,Secondary,Student +221,S1A-061,1,A,,yes,,Sayce,Peter,26-45,male,British,London,,Secondary,Government executive +224,S1A-062,1,B,,yes,,,,18-25,female,British,Southeast,,Secondary,Student +228,S1A-063,1,D,,yes,,,,26-45,female,British,Southeast,,Secondary,Nurse,,, +233,S1A-065,1,B,,yes,,,,26-45,female,British,East,,Secondary,Housewife,,,Spent part of life in Scotland +243,S1A-068,1,A,,yes,,Jones,Aled D.,18-25,male,British,Wales,,Secondary,"Student, student union officer" +244,S1A-068,1,B,,yes,,,,24,female,British,EastMidlands,,Secondary,Student +246,S1A-069,1,A,,yes,,Jones,Aled D.,18-25,male,British,Wales,,Secondary,"Student, student union officer" +247,S1A-069,1,B,,yes,,,,24,female,British,EastMidlands,,Secondary,Student +248,S1A-069,2,A,,yes,,Jones,Aled D.,18-25,male,British,Wales,,Secondary,"Student, student union officer" +249,S1A-069,2,B,,yes,,,,18-25,female,British,EastMidlands,Chemistry student,Secondary,Student +250,S1A-070,1,A,,yes,,Jones,Aled D.,18-25,male,British,Wales,,Secondary,"Student, student union officer" +262,S1A-074,1,A,,yes,,,,21,female,British,London,,Secondary,Student,,, +263,S1A-074,1,B,,yes,,,Tom,21,male,British,London,,Secondary,Travel officer,,, +266,S1A-074,2,B,,yes,,,,22,male,British,London,,Secondary,Student,,, +268,S1A-074,3,B,,yes,,,,21,male,British,London,,Secondary,Student,,, +270,S1A-074,4,A,,yes,,,Tom,21,male,British,London,,Secondary,Travel officer,,, +271,S1A-074,4,B,,yes,,,,26-45,male,British,Southeast,,Secondary,Student,,, +277,S1A-074,6,B,,yes,,,Nick,28,male,British,Southwest,,Secondary,Student,,, +278,S1A-074,7,A,,yes,,,,18-25,male,British,Northeast,,Secondary,Student,,, +287,S1A-077,1,C,,yes,,,Elizabeth,18-25,female,British,Southeast,,Secondary,Student,,, +288,S1A-077,1,D,,yes,,,James,18-25,male,British,London,,Secondary,Student,,, +290,S1A-078,1,B,,yes,,,,18-25,male,British,East,,Secondary,Student +293,S1A-078,2,C,,yes,,,,18-25,female,British,Southeast,,Secondary,Student +295,S1A-078,3,B,,yes,,,,18-25,male,British,Southeast,,Secondary,Student +298,S1A-078,4,C,,yes,,,,18-25,female,British,London,,Secondary,Student +305,S1A-081,1,B,,yes,,,Caroline,29,female,British,London,O-Levels,Secondary,"Secretary, Thames Water Co." +307,S1A-082,1,B,,yes,,,,18-25,male,British,Southeast,,Secondary,Student,,, +309,S1A-083,1,A,,yes,,,Paquita,44,female,British,London,O-Levels,Secondary,"Tennis coach, guitarist",,, +310,S1A-083,1,B,,yes,,,Sandra,46-65,female,British,Spain,O-Levels,Secondary,Flamenco dancing teacher,,,Father: Spanish; Mother: Gipsy. In UK since child +312,S1A-084,1,B,,yes,,Scott,Kate,18-25,female,British,London,"Undergraduate in English, UCL",Secondary,Student,,, +313,S1A-084,1,C,,yes,,,,18-25,female,British,Northeast,"Undergraduate in English, UCL",Secondary,Student,,, +314,S1A-085,1,A,,yes,,,,18-25,male,British,London,,Secondary,Student,,, +315,S1A-085,1,B,,yes,,Scott,Kate,18-25,female,British,London,"Undergraduate in English, UCL",Secondary,Student,,, +322,S1A-087,2,B,,yes,,,,18-25,male,British,London,"Undergraduate student, UCL",Secondary,Student +329,S1A-089,2,B,,yes,,,,18-25,female,British,London,"Undergraduate student, UCL",Secondary,Student +333,S1A-089,4,B,,yes,,,,18-25,female,British,Northeast,"Undergraduate student, UCL",Secondary,Student +335,S1A-090,1,B,,yes,,,Maureen,46-65,female,British,Scotland,"Undergraduate student, UCL",Secondary,Student +336,S1A-090,1,C,,yes,,,Caroline,46-65,female,British,London,"Undergraduate student, UCL",Secondary,Student +337,S1A-090,1,D,,yes,,,Joan,66+,female,British,London,"Undergraduate student, UCL",Secondary,"Student, retired nurse" +338,S1A-090,2,A,,yes,,,,18-25,female,British,London,"Undergraduate student, UCL",Secondary,Student +339,S1A-090,2,B,,yes,,,Maureen,46-65,female,British,Scotland,"Undergraduate student, UCL",Secondary,Student +340,S1A-090,2,C,,yes,,,,18-25,female,British,London,"Undergraduate student, UCL",Secondary,Student +342,S1A-091,1,B,,yes,,,Jenny,26-45,female,British,London,,Secondary,Student +346,S1A-093,1,B,,yes,,Tollfree,Eleanor,20,female,British,London,,Secondary,Student +347,S1A-094,1,A,,yes,,Wagner,Mary,66+,female,British,Southeast,,Secondary,Retired +378,S1B-001,1,B,,yes,,Turner,Mary,46-65,female,British,London,,Secondary,Student,,Hebrew, +379,S1B-001,1,C,,yes,,Smith,John,18-25,male,British,London,,Secondary,,,, +381,S1B-002,1,B,,yes,,,Susan,18-25,female,British,East,,Secondary,Student,,, +382,S1B-002,1,C,,yes,,,Vicky,18-25,female,British,London,,Secondary,Student,,, +383,S1B-002,1,D,,yes,,,Phillip,18-25,male,British,East,,Secondary,Student,,, +384,S1B-002,1,E,,yes,,,Vincent,18-25,male,British,London,,Secondary,Student,,, +385,S1B-002,1,F,,yes,,,Jeremy,18-25,male,British,EastMidlands,,Secondary,Student,,, +386,S1B-002,1,G,,yes,,,Georgina,18-25,female,British,London,,Secondary,Student +393,S1B-003,1,B,,yes,,,Colin,23,male,British,London,,Secondary,Student +395,S1B-003,1,D,,yes,,,Jill,18-25,female,British,East,,Secondary,Student +396,S1B-003,1,E,,yes,,,Melanie,18-25,female,British,London,,Secondary,Student +414,S1B-005,1,B,,yes,,,Michael,18-25,male,British,London,,Secondary,Student +415,S1B-005,1,C,,yes,,,Rebecca,18-25,female,British,London,,Secondary,Student +416,S1B-005,1,D,,yes,,,Joanna,18-25,female,British,Southeast,,Secondary,Student +417,S1B-005,1,E,,yes,,,Michael,18-25,male,British,Southeast,,Secondary,Student +419,S1B-006,1,B,,yes,,,Jackie,18-25,female,British,London,,Secondary,student +423,S1B-007,1,B,,yes,,,Barbara,18-25,female,British,London,,Secondary,Student +424,S1B-007,1,C,,yes,,,Colin,18-25,male,British,East,,Secondary,Student +425,S1B-007,1,D,,yes,,,James,18-25,male,British,London,,Secondary,Student +426,S1B-007,1,E,,yes,,,Duncan,18-25,male,British,London,,Secondary,Student +428,S1B-008,1,B,,yes,,,David,23,male,British,London,,Secondary,Student +429,S1B-008,1,C,,yes,,,Miriam,18-25,female,British,Scotland,,Secondary,Student +442,S1B-009,1,B,,yes,,,,18-25,male,British,London,,Secondary,Student +451,S1B-011,1,B,,yes,,,,18-25,male,British,London,,Secondary,Student +452,S1B-011,1,C,,yes,,,,18-25,female,British,London,,Secondary,Student +453,S1B-011,1,D,,yes,,,,18-25,male,British,Southeast,,Secondary,Student +454,S1B-011,1,E,,yes,,,,18-25,male,British,London,,Secondary,Student +455,S1B-011,1,F,,yes,,,,18-25,female,British,London,,Secondary,Student +456,S1B-011,1,G,,yes,,,,18-25,male,British,London,,Secondary,Student +457,S1B-011,1,H,,yes,,,,18-25,female,British,Southeast,,Secondary,Student +462,S1B-013,1,B,,yes,,,,18-25,male,British,London,,Secondary,Student +463,S1B-013,1,C,,yes,,,,18-25,female,British,Southeast,,Secondary,Student +464,S1B-013,1,D,,yes,,,,18-25,female,British,London,,Secondary,Student +465,S1B-013,1,E,,yes,,,,18-25,female,British,East,,Secondary,Student +467,S1B-014,1,B,,yes,,,,18-25,male,British,London,,Secondary,Student +468,S1B-014,1,C,,yes,,,,18-25,female,British,London,,Secondary,Student +470,S1B-015,1,B,,yes,,,John,18-25,male,British,WestMidlands,,Secondary,Student +471,S1B-015,1,C,,yes,,,Rebecca,18-25,female,British,London,,Secondary,Student +473,S1B-016,1,B,,yes,,,,18-25,male,British,London,,Secondary,Student +474,S1B-016,1,C,,yes,,,Matt,18-25,male,British,Southeast,,Secondary,Student +475,S1B-016,1,D,,yes,,,Esther,18-25,female,British,London,,Secondary,Student +477,S1B-017,1,B,,yes,,,,46-65,male,British,London,,Secondary,Student +479,S1B-017,1,D,,yes,,,,18-25,male,British,London,,Secondary,Student +480,S1B-017,1,E,,yes,,,,18-25,female,British,London,,Secondary,Student +481,S1B-018,1,A,,yes,,,,24,male,British,EastMidlands,,Secondary,Student +483,S1B-018,1,C,,yes,,,,25,male,British,London,,Secondary,Student,, +485,S1B-018,1,E,,yes,,,Chris,18-25,male,British,London,,Secondary,Student,, +489,S1B-019,1,C,,yes,,,Michael,18-25,male,British,EastMidlands,,Secondary,Student,, +491,S1B-019,1,E,,yes,,,Eleanor,18-25,female,British,London,,Secondary,Student,, +493,S1B-020,1,B,,yes,,,Victor,18-25,male,British,London,,Secondary,Student,, +494,S1B-020,1,C,,yes,,,,18-25,male,British,London,,Secondary,Student,, +495,S1B-021,1,A,,yes,Chairman,Morgan,Cliff,61,male,British,Wales,Grammar School,Secondary,"Broadcaster, ex-rugby player",,Welsh +517,S1B-025,1,B,,yes,,Ledward,Daphne,26-45,female,British,Yorkshire,,Secondary,Horticulturalist,,"French, Latin", +518,S1B-025,1,C,,yes,,Downham,Fred,46-65,male,British,Northwest,,Secondary,Horticulturalist,,None, +523,S1B-026,1,D,,yes,,Dickens,Monica,66+,female,British,London,"St Paul's School, Hammersmith, London",Secondary,Novelist,,, +593,S1B-040,1,B,,yes,,Haines,Joe,63,male,British,London,,Secondary,Journalist,,,Former Press Officer to the Prime Minister +603,S1B-043,1,B,,yes,Interviewee,Major,John,47,male,British,London,,Secondary,"Politician, accountant",,, +619,S1B-049,1,B,,yes,Interviewee,Mottley,Shiela,46-65,female,British,Northwest,,Secondary,,,None, +632,S1B-052,1,B,,yes,,Clark,William,74,male,British,London,,Secondary,"Politician, accountant",,, +633,S1B-052,1,C,,yes,,Major,John,47,male,British,London,,Secondary,Politician,,, +651,S1B-053,1,F,,yes,,Lamond,James,63,male,British,Scotland,Burrelton School,Secondary,"Politician, engineering draughtsman",,, +652,S1B-053,1,G,,yes,,Tebbit,Norman,60,male,British,London,Edmonton County Grammar School,Secondary,"Politician, businessman",,, +668,S1B-055,1,H,,yes,,Lamond,James,63,male,British,Scotland,Burrelton School,Secondary,"Politician, engineering draughtsman",,, +716,S1B-059,1,J,,yes,,Madden,Max,50,male,British,London,Grammar School,Secondary,Politician, +728,S1B-060,1,C,,yes,,Peacock,Elizabeth,54,female,British,Yorkshire,"Secondary School, Skipton, Yorkshire",Secondary,Politician,,, +781,S1B-074,2,B,,yes,,,,18-25,male,British,Southwest,,Secondary,Student,,Some French +784,S1B-074,3,C,,yes,,Lawrence,Jane,20,female,British,London,,Secondary,Student,, +805,S1B-078,1,B,,yes,,,Denis,66+,male,British,Northeast,,Secondary,Student +806,S1B-078,1,C,,yes,,,Chris,26-45,female,British,London,,Secondary,Student +807,S1B-078,1,D,,yes,,,Ted,46-65,male,British,London,,Secondary,Student +808,S1B-078,1,E,,yes,,,,46-65,female,British,London,,Secondary,Student +809,S1B-079,1,A,,yes,Chairman,,Andy,18-25,male,British,London,,Secondary,Student +810,S1B-079,1,B,,yes,,,Carol,18-25,male,British,London,,Secondary,Student +811,S1B-079,1,C,,yes,,,,18-25,male,British,WestMidlands,,Secondary,Student +812,S1B-079,1,D,,yes,,,,18-25,male,British,London,,Secondary,Student +813,S1B-079,1,E,,yes,,,Katherine,18-25,female,British,London,,Secondary,Student +814,S1B-079,1,F,,yes,,Thompson,Katherine,18-25,female,British,London,,Secondary,Student +815,S1B-079,1,G,,yes,,,Joe,18-25,male,British,London,,Secondary,Student +816,S1B-079,1,H,,yes,,,Emma,18-25,female,British,London,,Secondary,Student +817,S1B-079,1,I,,yes,,,,18-25,female,British,London,,Secondary,Student +818,S1B-079,1,J,,yes,,,,18-25,male,British,WestMidlands,,Secondary,Student,, +820,S1B-080,1,B,,yes,,,,25,female,British,Southeast,,Secondary,Student,, +827,S2A-005,1,A,,yes,,Bromley,Peter,46-65,male,British,Northwest,,Secondary,Sports reporter,,None +829,S2A-005,3,A,,yes,,Bromley,Peter,46-65,male,British,Northwest,,Secondary,Sports reporter,,None +831,S2A-005,5,A,,yes,,Bromley,Peter,46-65,male,British,Northwest,,Secondary,Sports reporter,,None +832,S2A-006,1,A,,yes,,Bromley,Peter,46-65,male,British,Northwest,,Secondary,Sports reporter,,None +842,S2A-007,6,A,,yes,,Ovett,Steve,36,male,British,Southeast,,Secondary,Former athlete +845,S2A-007,9,A,,yes,,Ovett,Steve,36,male,British,Southeast,,Secondary,Former athlete +847,S2A-007,11,A,,yes,,Ovett,Steve,36,male,British,Southeast,,Secondary,Former athlete +849,S2A-007,13,A,,yes,,Ovett,Steve,36,male,British,Southeast,,Secondary,Former athlete +857,S2A-009,1,A,,yes,,Darke,Ian,26-45,male,British,Southeast,,Secondary,Sports reporter,,None +861,S2A-012,2,A,,yes,,Harris,Nick,26-45,male,British,Southeast,,Secondary,Sports reporter,,None +882,S2A-020,1,A,,yes,,Hosken,John,46-65,male,British,Southwest,,Secondary,Broadcaster,,"Spanish, French", +920,S2A-045,1,A,,yes,Lecturer,Grosvenor,Gerald,40,male,British,London,Harrow School; military training,Secondary,Businessman,,,6th Duke of Westminster +927,S2A-050,1,A,,yes,Interviewee,McCullin,Don,46-65,male,British,London,,Secondary,Photojournalist,,, +928,S2A-050,2,A,,yes,Interviewee,McCullin,Don,46-65,male,British,London,,Secondary,Photojournalist,,, +935,S2A-055,2,A,,yes,,Clarkson,Jeremy,26-45,male,British,Yorkshire,Public School,Secondary,Broadcaster,, +936,S2A-055,3,A,,yes,,Clarkson,Jeremy,26-45,male,British,Yorkshire,Public School,Secondary,Broadcaster,, +973,S2B-002,1,J,,yes,,Major,John,47,male,British,London,,Secondary,Politician,,, +977,S2B-003,1,C,,yes,,Major,John,47,male,British,London,,Secondary,Politician,,, +998,S2B-004,1,E,,yes,,Major,John,47,male,British,London,,Secondary,Politician +1009,S2B-005,1,G,,yes,,Major,John,47,male,British,London,,Secondary,Politician +1079,S2B-014,1,B,,yes,,Major,John,47,male,British,London,,Secondary,Politician +1097,S2B-015,2,C,,yes,,Hamilton,Archie,50,male,British,Scotland,Eton,Secondary,Politician +1110,S2B-016,4,B,,yes,,Windsor,Elisabeth,46-65,female,British,London,,Secondary,HM The Queen,,, +1129,S2B-020,1,A,,yes,,Hayton,Phillip,44,male,British,Yorkshire,,Secondary,"Broadcaster, journalist",,, +1148,S2B-023,1,A,,yes,Presenter,Tong,Pete,26-45,male,British,London,,Secondary,"Broadcaster, musician" +1159,S2B-030,1,A,,yes,,Major,John,48,male,British,London,,Secondary,Politician,,,Prime Minister +1165,S2B-031,3,A,,yes,Presenter,Durrell,Gerald,66,male,British,India,Educated by private tutors in Greece,Secondary,"Naturalist, writer",,, +1168,S2B-033,1,A,,yes,Presenter,Norman,Barry,58,male,British,London,Highgate School,Secondary,"Broadcaster, film critic",,, +1184,S2B-041,1,A,,yes,,Queen Elizabeth II,,46-65,female,British,London,,Secondary,,,, diff --git a/ice/sspeaker-londonscotland.csv b/ice/sspeaker-londonscotland.csv new file mode 100644 index 0000000..c69e62f --- /dev/null +++ b/ice/sspeaker-londonscotland.csv @@ -0,0 +1,337 @@ +13,S1A-005,1,B,,yes,,Tollfree,Laura,18-25,female,British,London,"BA Linguistics, UCL",University,Student,,, +14,S1A-006,1,A,,yes,,,Sandra,18-25,female,British,London,,University,,,, +16,S1A-007,1,A,,yes,,Tollfree,Laura,46-65,male,British,London,,,,,, +17,S1A-007,1,B,,yes,,Tollfree,Laura,46-65,female,British,London,,,,,, +18,S1A-007,1,C,,yes,,Tollfree,Laura,18-25,female,British,London,"BA Linguistics, UCL",University,Student,,, +19,S1A-007,1,D,,yes,,,,46-65,male,British,London,,,,,, +22,S1A-008,1,B,,yes,,Tollfree,Laura,18-25,male,British,London,"BA Linguistics, UCL",University,Student,,, +23,S1A-009,1,A,,yes,,Sayce,Oonagh,46-65,female,British,London,MA English,University,Part-time University teacher,,"French, Italian","Researcher, Survey of English Usage" +24,S1A-009,1,B,,yes,,Sayce,Peter,26-45,male,British,London,,Secondary,Government executive,,, +25,S1A-010,1,A,,yes,,Moore,Nina,66+,female,British,London,,Secondary,Welfare officer (retired),,, +26,S1A-010,1,B,,yes,,Moore,Miranda,26-45,female,British,London,,Secondary,Writer,,, +32,S1A-012,1,A,,yes,,Scales,Rob,26-45,male,British,London,,University,Teacher +34,S1A-012,1,C,,yes,,Carpenter,Roger,26-45,male,British,London,,University,Teacher +35,S1A-012,1,D,,yes,,King-Smith,Gavin,26-45,male,British,London,,University,Management consultant +42,S1A-014,1,A,,yes,,Tollfree,Laura,18-25,female,British,London,"BA Linguistics, UCL",University,Student +54,S1A-017,1,B,,yes,,,Zara,26,female,British,London,A-levels,University,Accountant,,,Indian ethnic origin +55,S1A-017,1,C,,yes,,Tollfree,Laura,18-25,female,British,London,"BA Linguistics, UCL",University,Student,,, +57,S1A-018,1,A,,yes,,Tollfree,Eleanor,20,female,British,London,,Secondary,Student,,, +58,S1A-018,1,B,,yes,,Cage,Liz,20,female,British,London,,,,,, +59,S1A-018,1,C,,yes,,Debenham,Simon,28,male,British,London,,University,Accountant,,, +65,S1A-019,1,F,,yes,,,,18-25,female,British,London,UCL BA in Linguistics,University,Student,,, +70,S1A-021,1,A,,yes,,,,26-45,male,British,London,,University,Musician,,, +75,S1A-021,2,B,,yes,,,,26-45,male,British,London,,University,Musician,,, +82,S1A-023,1,A,,yes,,,,46-65,male,British,London,,Secondary,Journalist,,, +84,S1A-024,1,A,,yes,,Sidney,Greenbaum,46-65,male,British,London,"MA, PhD",University,Professor of English,,Hebrew,"Director, Survey of English Usage" +86,S1A-025,1,A,,yes,,,,26-45,male,British,London,,Secondary,,,,Brother of $B +87,S1A-025,1,B,,yes,,,,26-45,female,British,London,,Secondary,Secretary,,,Sister of $A +88,S1A-026,1,A,,yes,,Carpenter,Roger,26-45,male,British,London,,University,Teacher,,, +91,S1A-026,1,D,,yes,,Scales,Rob,26-45,male,British,London,,University,Teacher,,, +103,S1A-029,1,B,,yes,,,Andrew,24,male,British,London,BA,University,Computer programmer,,, +104,S1A-029,1,C,,yes,,,Andy,21,male,British,London,BA,University,Computer programmer,,, +110,S1A-031,1,A,,yes,,Beaumann,Nicola,46-65,female,British,London,,University,Writer,,, +122,S1A-034,1,A,,yes,,,,26-45,female,British,London,,University,Career counsellor,,, +124,S1A-035,1,A,,yes,,,,26-45,female,British,London,,University,Career counsellor,,, +126,S1A-036,1,A,,yes,,,Caroline,29,female,British,London,O-Levels,Secondary,"Secretary, Thames Water Co.",,, +127,S1A-036,1,B,,yes,,,Alice,29,female,British,London,O-Levels,Secondary,"Secretary, Consumers' Association",,, +128,S1A-037,1,A,,yes,,,Jenny,18-25,female,British,London,,University,Student,,, +129,S1A-037,1,B,,yes,,,Isobel,29,female,British,London,,University,,,, +130,S1A-038,1,A,,yes,,,Danielle,21,female,British,Scotland,"BSc Engineering, Edinburgh University",University,"PhD student, Engineering, Cambridge",,, +133,S1A-039,1,A,,yes,,Tollfree,Laura,18-25,female,British,London,BA Linguistics,University,"PhD student (Linguistics), Cambridge",,, +134,S1A-039,1,B,,yes,,,Danielle,21,female,British,Scotland,"BSc Engineering, Edinburgh University",University,"PhD student, Cambridge",,, +137,S1A-040,1,C,,yes,,,Louisa,24,female,British,London,"Degree Modern Languages, Cambridge, PGCE",University,"Teacher of Modern Languages, Cambridge",,Greek, +141,S1A-041,1,B,,yes,,,Jim,23,male,British,London,"Degree in Geography, Lampeter (Wales)",University,"MPhil student in Glaciology, Cambridge",,, +145,S1A-043,1,A,,yes,,White,Ashley,31,male,British,London,,University,"Tennis coach, PhD student",,, +148,S1A-044,1,B,,yes,,White,Ashley,31,male,British,London,,University,"Tennis coach, PhD student" +149,S1A-045,1,A,,yes,,White,Ashley,31,male,British,London,,University,"Tennis coach, PhD student" +152,S1A-045,2,B,,yes,,White,Ashley,31,male,British,London,,University,"Tennis coach, PhD student" +153,S1A-045,3,A,,yes,,White,Ashley,31,male,British,London,,University,"Tennis coach, PhD student" +159,S1A-047,1,A,,yes,,,,26-45,male,British,London,,University,Computer Operator/Programmer +160,S1A-047,1,B,,yes,,,,26-45,female,British,London,"Undergraduate student, UCL",Secondary,Student +161,S1A-047,1,C,,yes,,,,66+,female,British,London,,Secondary,Ex-secretary (retired) +162,S1A-048,1,A,,yes,,,,26-45,female,British,London,,University,Antique Dealer +163,S1A-048,1,B,,yes,,,,26-45,female,British,London,,Secondary,Nursery Nurse +164,S1A-048,1,C,,yes,,,,26-45,female,British,London,"Undergraduate student, UCL",Secondary,Student +165,S1A-049,1,A,,yes,,,Karen,30,female,British,London,O-Levels,Secondary,"Administrator, interior design company" +166,S1A-049,1,B,,yes,,,Alice,29,female,British,London,O-Levels,Secondary,"Secretary, Consumers' Association" +167,S1A-049,1,C,,yes,,,Caroline,29,female,British,London,O-Levels,Secondary,"Secretary, Thames Water Co." +168,S1A-050,1,A,,yes,,Neustein,,46-65,male,British,London,PhD,University,Student Counsellor +175,S1A-051,3,B,,yes,,,,26-45,female,British,London,,Secondary,Student +177,S1A-051,4,B,,yes,,,,18-25,male,British,London,,Secondary,Student +179,S1A-052,1,B,,yes,,,,46-65,male,British,London,,Secondary,Photojournalist,, +181,S1A-052,2,A,,yes,,,,46-65,male,British,London,,Secondary,Photojournalist,, +186,S1A-053,1,C,,yes,,,,46-65,male,British,London,,Secondary,Computer management,, +187,S1A-054,1,A,,yes,,Beaumann,Nicola,46-65,female,British,London,,University,Writer,, +188,S1A-054,1,B,,yes,,Boase,Sue,26-45,female,British,London,,University,"Researcher, lecturer",, +192,S1A-055,1,D,,yes,,,,18-25,female,British,London,,University,Secretary,, +193,S1A-055,1,E,,yes,,,,26-45,male,British,London,,University,Lexicographer,, +215,S1A-058,3,A,,yes,,,,26-45,male,British,London,,University,Engineer +218,S1A-059,1,B,,yes,,,,18-25,male,British,London,,Secondary,Student +221,S1A-061,1,A,,yes,,Sayce,Peter,26-45,male,British,London,,Secondary,Government executive +222,S1A-061,1,B,,yes,,Busby,Derek Charles,46-65,male,British,London,,University,Government official +232,S1A-065,1,A,,yes,,,,26-45,female,British,London,,University,Student,,, +234,S1A-065,1,C,,yes,,,,46-65,male,British,London,,University,Student,,, +236,S1A-065,1,E,,yes,,,,46-65,male,British,Scotland,,University,Farmer,,, +237,S1A-065,1,F,,yes,,,,18-25,male,British,London,,University,Student,,, +238,S1A-065,1,G,,yes,,,,18-25,male,British,Scotland,,University,Student,,, +239,S1A-066,1,A,,yes,,,,46,male,British,London,,University,Careers counsellor,,, +258,S1A-073,1,A,,yes,,,,46-65,male,British,London,,University,Industrial chemist,,,"Also lived: Oxford, Epping area, Montpellier" +260,S1A-073,1,C,,yes,,,,26-45,female,British,London,,University,"Writer, housewife",,, +262,S1A-074,1,A,,yes,,,,21,female,British,London,,Secondary,Student,,, +263,S1A-074,1,B,,yes,,,Tom,21,male,British,London,,Secondary,Travel officer,,, +264,S1A-074,1,C,,yes,,,Paul,23,male,British,London,,University,Travel officer,,, +265,S1A-074,2,A,,yes,,,Paul,23,male,British,London,,University,Travel officer,,, +266,S1A-074,2,B,,yes,,,,22,male,British,London,,Secondary,Student,,, +267,S1A-074,3,A,,yes,,,Louise,22,female,British,London,,University,Travel officer,,, +268,S1A-074,3,B,,yes,,,,21,male,British,London,,Secondary,Student,,, +269,S1A-074,3,C,,yes,,,,27,female,British,London,,University,Travel officer,,, +270,S1A-074,4,A,,yes,,,Tom,21,male,British,London,,Secondary,Travel officer,,, +272,S1A-074,4,C,,yes,,,Louise,22,female,British,London,,University,Travel officer,,, +275,S1A-074,5,C,,yes,,,,27,male,British,London,,University,Student union officer,,, +282,S1A-075,1,B,,yes,,,James,26-45,male,British,London,,University,Businessman,,,Speaker is partially deaf +285,S1A-077,1,A,,yes,,,Mike,26-45,male,British,London,,University,Careers counsellor,,, +286,S1A-077,1,B,,yes,,,Gill,26-45,female,British,London,,University,Careers counsellor,,, +288,S1A-077,1,D,,yes,,,James,18-25,male,British,London,,Secondary,Student,,, +289,S1A-078,1,A,,yes,,,,26-45,female,British,London,,University,Student union officer,,, +290,S1A-078,1,B,,yes,,,,18-25,male,British,London,,Secondary,Student +291,S1A-078,2,A,,yes,,,,26-45,male,British,London,,University,Student union officer +292,S1A-078,2,B,,yes,,,,26-45,female,British,London,,University,Student union officer +294,S1A-078,3,A,,yes,,,,26-45,female,British,London,,University,Student union officer +296,S1A-078,4,A,,yes,,,,26-45,male,British,London,,University,Student union officer +297,S1A-078,4,B,,yes,,,,26-45,female,British,London,,University,Student union officer +298,S1A-078,4,C,,yes,,,,18-25,female,British,London,,Secondary,Student +299,S1A-079,1,A,,yes,,,,26-45,female,British,London,,University,Student union officer +300,S1A-079,1,B,,yes,,,Tony,26-45,male,British,London,,University,Student union officer +302,S1A-080,1,A,,yes,,,Jenny,18-25,female,British,London,,University, +303,S1A-080,1,B,,yes,,,Isobel,26-45,female,British,London,,University, +304,S1A-081,1,A,,yes,,White,Ashley,31,male,British,London,,University,"Tennis coach, PhD student" +305,S1A-081,1,B,,yes,,,Caroline,29,female,British,London,O-Levels,Secondary,"Secretary, Thames Water Co." +306,S1A-082,1,A,,yes,,,,26-45,female,British,London,,University,Lecturer,,, +309,S1A-083,1,A,,yes,,,Paquita,44,female,British,London,O-Levels,Secondary,"Tennis coach, guitarist",,, +312,S1A-084,1,B,,yes,,Scott,Kate,18-25,female,British,London,"Undergraduate in English, UCL",Secondary,Student,,, +314,S1A-085,1,A,,yes,,,,18-25,male,British,London,,Secondary,Student,,, +315,S1A-085,1,B,,yes,,Scott,Kate,18-25,female,British,London,"Undergraduate in English, UCL",Secondary,Student,,, +322,S1A-087,2,B,,yes,,,,18-25,male,British,London,"Undergraduate student, UCL",Secondary,Student +329,S1A-089,2,B,,yes,,,,18-25,female,British,London,"Undergraduate student, UCL",Secondary,Student +335,S1A-090,1,B,,yes,,,Maureen,46-65,female,British,Scotland,"Undergraduate student, UCL",Secondary,Student +336,S1A-090,1,C,,yes,,,Caroline,46-65,female,British,London,"Undergraduate student, UCL",Secondary,Student +337,S1A-090,1,D,,yes,,,Joan,66+,female,British,London,"Undergraduate student, UCL",Secondary,"Student, retired nurse" +338,S1A-090,2,A,,yes,,,,18-25,female,British,London,"Undergraduate student, UCL",Secondary,Student +339,S1A-090,2,B,,yes,,,Maureen,46-65,female,British,Scotland,"Undergraduate student, UCL",Secondary,Student +340,S1A-090,2,C,,yes,,,,18-25,female,British,London,"Undergraduate student, UCL",Secondary,Student +342,S1A-091,1,B,,yes,,,Jenny,26-45,female,British,London,,Secondary,Student +345,S1A-093,1,A,,yes,,Tollfree,Laura,18-25,female,British,London,"Degree in Linguistics, UCL",University,Student +346,S1A-093,1,B,,yes,,Tollfree,Eleanor,20,female,British,London,,Secondary,Student +348,S1A-094,1,B,,yes,,Tollfree,Laura,18-25,female,British,London,"Degree in Linguistics, UCL",University,Student +349,S1A-095,1,A,,yes,,Debenham,Giles,25,male,British,London,,, +350,S1A-095,1,B,,yes,,Debenham,Simon,28,male,British,London,,University,Accountant +351,S1A-095,2,A,,yes,,Debenham,Susan,48,female,British,London,,, +352,S1A-095,2,B,,yes,,Debenham,Simon,28,male,British,London,,University,Accountant +353,S1A-095,3,A,,yes,,Debenham,Giles,25,male,British,London,,, +354,S1A-095,3,B,,yes,,Debenham,Simon,28,male,British,London,,University,Accountant,,, +355,S1A-095,4,A,,yes,,Debenham,Susan,48,female,British,London,,,,,, +356,S1A-095,4,B,,yes,,Debenham,Simon,28,male,British,London,,University,Accountant,,, +363,S1A-098,2,A,,yes,,Dowell,John,26-45,male,British,London,PhD,University,Employed at UCL,,, +366,S1A-098,3,B,,yes,,Peters,Roz,27,female,British,London,,University,Civil servant,,, +369,S1A-099,2,A,,yes,,,,18-25,female,British,London,B-Techs,University,Shop assistant,,, +377,S1B-001,1,A,,yes,Tutor,Weitzman,Michael,46-65,male,British,London,,University,University Lecturer,,Hebrew, +378,S1B-001,1,B,,yes,,Turner,Mary,46-65,female,British,London,,Secondary,Student,,Hebrew, +379,S1B-001,1,C,,yes,,Smith,John,18-25,male,British,London,,Secondary,,,, +382,S1B-002,1,C,,yes,,,Vicky,18-25,female,British,London,,Secondary,Student,,, +384,S1B-002,1,E,,yes,,,Vincent,18-25,male,British,London,,Secondary,Student,,, +386,S1B-002,1,G,,yes,,,Georgina,18-25,female,British,London,,Secondary,Student +393,S1B-003,1,B,,yes,,,Colin,23,male,British,London,,Secondary,Student +395,S1B-003,1,D,,yes,,,Jill,18-25,female,British,London,,Secondary,Student +396,S1B-003,1,E,,yes,,,Melanie,18-25,female,British,London,,Secondary,Student +414,S1B-005,1,B,,yes,,,Michael,18-25,male,British,London,,Secondary,Student +415,S1B-005,1,C,,yes,,,Rebecca,18-25,female,British,London,,Secondary,Student +419,S1B-006,1,B,,yes,,,Jackie,18-25,female,British,London,,Secondary,student +422,S1B-007,1,A,,yes,Tutor,Agnew,Clive,26-45,male,British,London,PhD,University,Lecturer in Geography +423,S1B-007,1,B,,yes,,,Barbara,18-25,female,British,London,,Secondary,Student +424,S1B-007,1,C,,yes,,,Colin,18-25,male,British,London,,Secondary,Student +425,S1B-007,1,D,,yes,,,James,18-25,male,British,London,,Secondary,Student +426,S1B-007,1,E,,yes,,,Duncan,18-25,male,British,London,,Secondary,Student +428,S1B-008,1,B,,yes,,,David,23,male,British,London,,Secondary,Student +429,S1B-008,1,C,,yes,,,Miriam,18-25,female,British,Scotland,,Secondary,Student +441,S1B-009,1,A,,yes,Tutor,Fitzgerald,M.,26-45,female,British,London,PhD Anatomy,University,University lecturer +442,S1B-009,1,B,,yes,,,,18-25,male,British,London,,Secondary,Student +451,S1B-011,1,B,,yes,,,,18-25,male,British,London,,Secondary,Student +452,S1B-011,1,C,,yes,,,,18-25,female,British,London,,Secondary,Student +454,S1B-011,1,E,,yes,,,,18-25,male,British,London,,Secondary,Student +455,S1B-011,1,F,,yes,,,,18-25,female,British,London,,Secondary,Student +456,S1B-011,1,G,,yes,,,,18-25,male,British,London,,Secondary,Student +459,S1B-012,1,A,,yes,,Tollfree,Laura,18-25,female,British,London,BA Linguistics,University,Student (PhD) +460,S1B-012,1,B,,yes,Tutor,,April,28,female,British,Scotland,PhD Phonology,University,University Lecturer +462,S1B-013,1,B,,yes,,,,18-25,male,British,London,,Secondary,Student +464,S1B-013,1,D,,yes,,,,18-25,female,British,London,,Secondary,Student +465,S1B-013,1,E,,yes,,,,18-25,female,British,London,,Secondary,Student +467,S1B-014,1,B,,yes,,,,18-25,male,British,London,,Secondary,Student +468,S1B-014,1,C,,yes,,,,18-25,female,British,London,,Secondary,Student +469,S1B-015,1,A,,yes,Tutor,Wolf,J.,26-45,male,British,London,PhD,University,University Lecturer +471,S1B-015,1,C,,yes,,,Rebecca,18-25,female,British,London,,Secondary,Student +473,S1B-016,1,B,,yes,,,,18-25,male,British,London,,Secondary,Student +475,S1B-016,1,D,,yes,,,Esther,18-25,female,British,London,,Secondary,Student +476,S1B-017,1,A,,yes,Tutor,Orton,Clive,26-45,male,British,London,,University,Lecturer in Archaeology +477,S1B-017,1,B,,yes,,,,46-65,male,British,London,,Secondary,Student +479,S1B-017,1,D,,yes,,,,18-25,male,British,London,,Secondary,Student +480,S1B-017,1,E,,yes,,,,18-25,female,British,London,,Secondary,Student +482,S1B-018,1,B,,yes,Tutor,,,46-65,male,British,London,,University,University Lecturer,, +483,S1B-018,1,C,,yes,,,,25,male,British,London,,Secondary,Student,, +485,S1B-018,1,E,,yes,,,Chris,18-25,male,British,London,,Secondary,Student,, +491,S1B-019,1,E,,yes,,,Eleanor,18-25,female,British,London,,Secondary,Student,, +493,S1B-020,1,B,,yes,,,Victor,18-25,male,British,London,,Secondary,Student,, +494,S1B-020,1,C,,yes,,,,18-25,male,British,London,,Secondary,Student,, +498,S1B-021,2,A,,yes,Chairman,Neil,Andrew,42,male,British,Scotland,Paisley Grammar School; Glasgow University (MA),University,"Editor, The Sunday Times",,, +503,S1B-022,1,C,,yes,,Mortimer,John,58,male,British,London,Harrow School; Brasenose Coll. Oxford; Inner Temple,University,"Barrister, novelist, playwright",,,"QC, 1966" +507,S1B-023,1,A,,yes,Chairman,Baker,Richard,66,male,British,London,"Peterhouse, Cambridge",University,"Broadcaster, ex-actor",,, +511,S1B-024,1,B,,yes,,Lawson,Mark,26-45,male,British,London,UCL (BA English),University,Journalist,,, +512,S1B-024,1,C,,yes,,Mortimer,John,58,male,British,London,Harrow School; Brasenose Coll. Oxford; Inner Temple,University,"Barrister, novelist, playwright",,,"QC, 1966" +513,S1B-024,1,D,,yes,,Couper,Heather,42,female,British,London,Grammar Sch; Univ. of Leicester (BSc Physics & Astronomy),University,Prof. of Astronomy; science broadcaster/writer,"FRAS, 1970","French, Latin, German", +515,S1B-024,1,F,,yes,,Dobbs,Michael,46-65,male,British,London,,University,"Politician, novelist",,, +520,S1B-026,1,A,,yes,Chairman,Purves,Libby,26-45,female,British,London,"Oxford University, English 1971",University,Broadcaster,,French, +523,S1B-026,1,D,,yes,,Dickens,Monica,66+,female,British,London,"St Paul's School, Hammersmith, London",Secondary,Novelist,,, +530,S1B-028,1,A,,yes,Chairman,MacIntyre,Ian,60,male,British,Scotland,"Cambridge (MA); College of Europe, Bruges",University,Broadcaster,,"French, Norwegian, Russian, Italian", +531,S1B-028,1,B,,yes,,Sacks,Jonathan,43,male,British,London,"Cambridge (MA); Oxford (PhD); Jews' College, London",University,Chief Rabbi,,, +533,S1B-028,1,D,,yes,,McDade,John,26-45,male,British,Scotland,,University,Clergyman,,, +551,S1B-032,1,A,,yes,,Baker,Richard,66,male,British,London,"Peterhouse, Cambridge",University,"Broadcaster, ex-actor",,, +552,S1B-032,1,B,,yes,,Handley,Vernon,61,male,British,London,"Enfield School; Balliol College, Oxford; Guildhall School of Music",University,"Conductor, Royal Liverpool Philharmonic Orchestra",,, +553,S1B-032,1,C,,yes,,Thomson,Bryden,46-65,male,British,Scotland,"Ayr Academy; Royal Scottish Academy of Music; Staatliche Hochschule fur Musik, Hamburg",University,Composer,"Fellow, Royal Scottish Acad. of Music & Drama",German, +554,S1B-033,1,A,,yes,Chairman,Northam,Gerry,26-45,male,British,London,,University,Broadcaster,,, +561,S1B-034,1,A,,yes,Chairman,Dimbleby,David,53,male,British,London,Charterhouse School; Oxford (MA); University of Paris,University,Broadcaster,,, +571,S1B-034,1,K,,yes,,,,46-65,male,British,Scotland,,,County Councillor,,, +573,S1B-035,1,A,,yes,Chairman,Dimbleby,Jonathan,47,male,British,London,UCL (BA Philosophy),University,Broadcaster,,, +575,S1B-035,1,C,,yes,,Rifkind,Malcolm,45,male,British,Scotland,"Edinburgh University (LLB, MSc)",University,Politician,,,"Lectured at University of Rhodesia, 1967-8" +577,S1B-036,1,A,,yes,Chairman,Naughtie,James,40,male,British,Scotland,Grammar School; Aberdeen University; Syracuse University,University,Broadcaster,,, +579,S1B-036,1,C,,yes,,Robertson,George,45,male,British,Scotland,"Dunoon Grammar School; University of Dundee (MA Hons, 1968)",University,Politician,,, +581,S1B-036,1,E,,yes,,Patten,John,46,male,British,London,"Wimbledon College; Sidney Sussex College, Cambridge (PhD 1972)",University,Politician,,,Former university lecturer +583,S1B-037,1,B,,yes,,Aslet,Clive,36,male,British,London,"Peterhouse, Cambridge",University,"Deputy Editor, Country Life",,, +587,S1B-038,1,B,,yes,Chairman,Dimbleby,Jonathan,47,male,British,London,UCL (BA Philosophy),University,Broadcaster,,, +589,S1B-039,1,A,,yes,Chairman,Neil,Andrew,42,male,British,Scotland,Grammar School; University of Glasgow,University,"Journalist, Editor, `The Sunday Times'",,, +593,S1B-040,1,B,,yes,,Haines,Joe,63,male,British,London,,Secondary,Journalist,,,Former Press Officer to the Prime Minister +594,S1B-040,1,C,,yes,,Pimlott,Ben,46,male,British,London,"Rokeby School, Wimbledon; Marlborough Coll.; Worcester Coll.; Oxford (MA, BPhil); Newcastle (PhD)",University,Professor of Politics & Contemporary History,,, +597,S1B-041,1,B,,yes,Interviewee,Runcie,Robert,66,male,British,London,Merchant Taylor's School; Oxford; Cambridge,University,Former Archbishop of Canterbury,,, +598,S1B-042,1,A,,yes,Interviewer,Aspel,Michael,57,male,British,London,London,University,Broadcaster,,, +600,S1B-042,2,A,,yes,Interviewer,Morley,Sheridan,46-65,male,British,London,,University,Broadcaster,,French, +601,S1B-042,2,B,,yes,Interviewee,Mortimer,John,58,male,British,London,Harrow School; Brasenose Coll. Oxford; Inner Temple,University,"Barrister, novelist, playwright",,,"QC, 1966" +602,S1B-043,1,A,,yes,Interviewer,Dimbleby,Jonathan,47,male,British,London,UCL (BA Philosophy),University,Broadcaster,,, +603,S1B-043,1,B,,yes,Interviewee,Major,John,47,male,British,London,,Secondary,"Politician, accountant",,, +605,S1B-044,1,B,,yes,Interviewee,Walker,Lynn,26-45,female,British,Scotland,,University,Critic,,None, +611,S1B-045,1,B,,yes,Interviewee,Jarman,Derek,49,male,British,London,"King's College, London; Slade School of Art",University,"Painter, film director",,, +614,S1B-047,1,A,,yes,Interviewer,MacIntyre,Ian,60,male,British,Scotland,"Prescot Grammar School; St John's College, Cambridge; College of Europe, Bruges",University,Broadcaster,,"French, Norwegian, Russian, Italian", +617,S1B-048,1,B,,yes,Interviewee,Stewart,Mary,75,female,British,London,"Skellfield School, Ripon, Yorks; Durham University",University,Novelist,,,Former lecturer in English +618,S1B-049,1,A,,yes,Interviewer,Cuffe,Jenny,26-45,female,British,London,,University,Broadcaster,,"French, Spanish, Italian", +627,S1B-051,1,F,,yes,,Holt,Richard,60,male,British,London,Wembley Technical College,University,Politician,,, +630,S1B-051,1,I,,yes,,Livingstone,Ken,46,male,British,London,Fawcett College of Education,University,"Politician, lab technician",,, +632,S1B-052,1,B,,yes,,Clark,William,74,male,British,London,,Secondary,"Politician, accountant",,, +633,S1B-052,1,C,,yes,,Major,John,47,male,British,London,,Secondary,Politician,,, +635,S1B-052,1,E,,yes,,Higgins,Terence,63,male,British,London,Cambridge; Yale,University,"Politician, economist",,, +639,S1B-052,1,I,,yes,,Stewart,Ian,56,male,British,London,"Jesus College, Cambridge (MA, LittD (1978))",University,Politician,,, +643,S1B-052,1,M,,yes,,Fraser,John,57,male,British,London,"Grammar School, Chelsea; Loughborough Univ.",University,"Politician, solicitor",,, +645,S1B-052,1,O,,yes,,Salmond,Alex,37,male,British,Scotland,St Andrew's,University,"Politician, economist",,, +650,S1B-053,1,E,,yes,,Squire,Robin,47,male,British,London,"Tiffin School, Kingston-upon Thames; Accountancy training",University,"Politician, chartered accountant",FCA,, +651,S1B-053,1,F,,yes,,Lamond,James,63,male,British,Scotland,Burrelton School,Secondary,"Politician, engineering draughtsman",,, +652,S1B-053,1,G,,yes,,Tebbit,Norman,60,male,British,London,Edmonton County Grammar School,Secondary,"Politician, businessman",,, +658,S1B-054,1,C,,yes,,Wells,Bowen,56,male,British,London,"St Paul's School, London, Exeter University",University,Politician,,, +668,S1B-055,1,H,,yes,,Lamond,James,63,male,British,Scotland,Burrelton School,Secondary,"Politician, engineering draughtsman",,, +672,S1B-055,1,L,,yes,,Fyfe,Maria,53,female,British,Scotland,"High School, Glasgow; Strathclyde Univ",University,"Politician, lecturer",,, +674,S1B-055,1,N,,yes,,Reid,John,44,male,British,Scotland,Stirling Univ (PhD),University,"Politician, researcher",,, +675,S1B-055,1,O,,yes,,Hicks,Maureen,43,female,British,London,"Furzedown College of Education, London",University,"Politician, lecturer",,, +684,S1B-056,1,I,,yes,,Bennett,Nicholas,42,male,British,London,Polytechnic of N.London (BA Philosophy); Univ. of London Inst of Educ (PGCE); Univ. of Sussex (MA),University,Politician,,, +686,S1B-056,1,K,,yes,,Walker,Bill,62,male,British,Scotland,"Logie School, Dundee; Trades College, Dundee; College for Distributive Trades",University,Politician,"FIPM, FBIM",, +698,S1B-057,1,L,,yes,,Kirkwood,Archy,45,male,British,Scotland,Heriot-Watt University (BSc Pharmacy),University,Politician,, +705,S1B-058,1,D,,yes,,Wallace,James,37,male,British,Scotland,Edinburgh Univeristy,University,Politician,, +715,S1B-059,1,I,,yes,,Stern,Michael,49,male,British,London,,University,"Politician, accountant", +716,S1B-059,1,J,,yes,,Madden,Max,50,male,British,London,Grammar School,Secondary,Politician, +717,S1B-059,1,K,,yes,,Dickens,Sir Geoffrey,60,male,British,London,"Easthome School, Wembley; Harrow Technical College; Acton Technical College",University,"Politician, businessman", +721,S1B-059,1,O,,yes,,Forth,Eric,47,male,British,Scotland,"Jordanhill College School, Glasgow; Glasgow University",University,"Politician, businessman", +729,S1B-060,1,D,,yes,,Henderson,Doug,42,male,British,Scotland,"Waid Academy, Fife; Central College, Glasgow; Strathclyde University (BA)",University,Politician,,, +744,S1B-064,1,B,,yes,Prosecution witness,Lehrer,Michael,,male,British,London,,,Businessman +747,S1B-065,1,B,,yes,Defence witness,Lampitt,Robert,46-65,male,British,London,,,Businessman +756,S1B-067,1,B,,yes,Defence witness,Tarburn,,18-25,female,British,Scotland,,,Travel company representative,,, +760,S1B-068,1,C,,yes,Judge,MacPherson,,65,male,British,Scotland,"Wellington Coll., Berkshire; Trinity Coll., Oxford",University,High Court Judge,,, +763,S1B-068,2,C,,yes,Judge,MacPherson,,65,male,British,Scotland,"Wellington Coll., Berkshire; Trinity Coll., Oxford",University,High Court Judge,,, +778,S1B-074,1,A,,yes,,,,32,male,British,London,,University,Lecturer,,Spanish +779,S1B-074,1,B,,yes,,,Ross,27,male,British,Scotland,,University,Insurance salesman,, +780,S1B-074,2,A,,yes,,,Ross,27,male,British,Scotland,,University,Insurance salesman,, +782,S1B-074,3,A,,yes,,,Ross,27,male,British,Scotland,,University,Insurance salesman,, +783,S1B-074,3,B,,yes,,Kalman,Anthony,27,male,British,London,,University,Chef,, +784,S1B-074,3,C,,yes,,Lawrence,Jane,20,female,British,London,,Secondary,Student,, +806,S1B-078,1,C,,yes,,,Chris,26-45,female,British,London,,Secondary,Student +807,S1B-078,1,D,,yes,,,Ted,46-65,male,British,London,,Secondary,Student +808,S1B-078,1,E,,yes,,,,46-65,female,British,London,,Secondary,Student +809,S1B-079,1,A,,yes,Chairman,,Andy,18-25,male,British,London,,Secondary,Student +810,S1B-079,1,B,,yes,,,Carol,18-25,male,British,London,,Secondary,Student +812,S1B-079,1,D,,yes,,,,18-25,male,British,London,,Secondary,Student +813,S1B-079,1,E,,yes,,,Katherine,18-25,female,British,London,,Secondary,Student +814,S1B-079,1,F,,yes,,Thompson,Katherine,18-25,female,British,London,,Secondary,Student +815,S1B-079,1,G,,yes,,,Joe,18-25,male,British,London,,Secondary,Student +816,S1B-079,1,H,,yes,,,Emma,18-25,female,British,London,,Secondary,Student +817,S1B-079,1,I,,yes,,,,18-25,female,British,London,,Secondary,Student +819,S1B-080,1,A,,yes,,,Ross,27,male,British,Scotland,,University,Insurance salesman,, +821,S1B-080,2,A,,yes,,,Ross,27,male,British,Scotland,,University,Insurance salesman,, +822,S1B-080,2,B,,yes,,,,32,male,British,London,,University,Lecturer,, +852,S2A-008,3,A,,yes,,Neil,Andrew,42,male,British,Scotland,"Paisley Grammar School; University of Glasgow (MA Politics & Economics, 1971)",University,"Journalist, editor `The Sunday Times'",, +854,S2A-008,5,A,,yes,,Neil,Andrew,42,male,British,Scotland,"Paisley Grammar School; University of Glasgow (MA Politics & Economics, 1971)",University,"Journalist, editor `The Sunday Times'",, +859,S2A-011,1,A,,yes,,Dimbleby,Jonathan,47,male,British,London,,University,"Journalist, broadcaster",, +883,S2A-020,2,A,,yes,,McLellan,Andrew,46-65,male,British,Scotland,,University,Broadcaster,,"Latin, Greek, Hebrew, French, German", +885,S2A-022,1,A,,yes,Lecturer,James,Simon,26-45,male,British,London,MA(Oxon),University,Military Archaeologist,,Italian, +886,S2A-023,1,A,,yes,Lecturer,Banham,John,51,male,British,London,"Charterhouse School; Queen's College, Cambridge (BA Natural Sciences)",University,"Director, Confederation of British Industry",,, +887,S2A-024,1,A,,yes,Lecturer,Vanags,Patsy,26-45,female,British,London,,University,Part-time lecturer,,, +888,S2A-025,1,A,,yes,Lecturer,Chandler,A.,26-45,male,British,London,,University,Lecturer in Engineering,,, +891,S2A-028,1,A,,yes,Lecturer,Johnstone,Wyndham,26-45,male,British,London,"BSc Physics, PhD",University,Research Scientist,,None, +893,S2A-028,3,A,,yes,Lecturer,Roberts,Derek,46-65,male,British,London,PhD,University,"Provost, UCL; ex-businessman",,, +896,S2A-029,3,A,,yes,Lecturer,Newton,Andrew,26-45,male,British,London,"BSc Physics, MSc Information Technology",University,Research Fellow,,French, +902,S2A-033,2,A,,yes,Lecturer,Edwards,D.R.L.,26-45,male,British,London,"M.B.B.S., M.R.C. Psych.",University,Associate Research Fellow in Psychiatry,,"French, some Danish & Russian", +908,S2A-035,1,A,,yes,Lecturer,Spencer,Sharon,26-45,female,British,London,"BSc, PhD Biochemistry",University,Associate Research Assistant,,None, +911,S2A-036,1,A,,yes,Lecturer,Weitzmann,Michael,26-45,male,British,London,,University,Lecturer in Jewish & Hebrew Studies,,Hebrew, +912,S2A-037,1,A,,yes,Lecturer,Roberts,Derek,46-65,male,British,London,PhD,University,"Provost, UCL; ex-businessman",,, +913,S2A-038,1,A,,yes,Lecturer,Laslett,Sir Peter,76,male,British,London,Grammar School; Cambridge,University,"Reader in Politics & Hist. Soc. Struct, 1966-83, Cambridge","FBA, 1979",, +916,S2A-041,1,A,,yes,Lecturer,Cullen,A.L.,46-65,male,British,London,,University,Professor of Electrical Engineering,,, +917,S2A-042,1,A,,yes,Lecturer,Elkins,R.P.,46-65,male,British,London,,University,Professor of Endocrinology,,, +918,S2A-043,1,A,,yes,Lecturer,Rapley,C.G.,46-65,male,British,London,,University,Professor of Physics & Astronomy,,, +919,S2A-044,1,A,,yes,Lecturer,Twining,W.L.,46-65,male,British,London,,University,Professor of Laws,,, +920,S2A-045,1,A,,yes,Lecturer,Grosvenor,Gerald,40,male,British,London,Harrow School; military training,Secondary,Businessman,,,6th Duke of Westminster +925,S2A-048,1,A,,yes,Lecturer,Tait,W.,46-65,male,British,London,,University,Lecturer in Egyptology,,, +927,S2A-050,1,A,,yes,Interviewee,McCullin,Don,46-65,male,British,London,,Secondary,Photojournalist,,, +928,S2A-050,2,A,,yes,Interviewee,McCullin,Don,46-65,male,British,London,,Secondary,Photojournalist,,, +929,S2A-051,1,A,,yes,,King,C.A.,55,male,British,London,"BSc (Zoology), MSc, PhD (Biochemistry)",University,Lecturer in Biology,,None, +930,S2A-052,1,A,,yes,,Hart,George,26-45,male,British,London,,University,Archaeologist,, +937,S2A-056,1,A,,yes,,Ball,Ginny,26-45,female,British,London,BSc (Hons),University,Lecturer,,"French, some German" +938,S2A-056,2,A,,yes,,Ball,Ginny,26-45,female,British,London,BSc (Hons),University,Lecturer,,"French, some German" +939,S2A-057,1,A,,yes,,Bindman,David,46-65,male,British,London,,University,Professor of the History of Art,, +940,S2A-057,2,A,,yes,,Bindman,David,46-65,male,British,London,,University,Professor of the History of Art,, +942,S2A-058,2,A,,yes,,Walton,Nick,26-45,male,British,London,"BSc, PhD",University,Astronomer,,Dutch +943,S2A-058,3,A,,yes,,Burt,Avril,46-65,female,British,London,BSc (Hons),University,Medical Research Assistant,,None +960,S2B-001,1,B,,yes,,Gowing,Nick,40,male,British,London,Bristol University,University,"Broadcaster, journalist",,, +973,S2B-002,1,J,,yes,,Major,John,47,male,British,London,,Secondary,Politician,,, +974,S2B-002,1,K,,yes,,Biffin,John,61,male,British,London,"Jesus College, Cambridge (BA)",University,Politician,,, +977,S2B-003,1,C,,yes,,Major,John,47,male,British,London,,Secondary,Politician,,, +978,S2B-003,1,D,,yes,,Mellor,David,42,male,British,London,"Swanage Grammar School; Christ's College, Cambridge (BA Hons, 1970)",University,"Politician, barrister",,, +990,S2B-003,1,P,,yes,,Allen,Peter,45,male,British,London,,,Broadcaster,,,Worked in Australia +991,S2B-003,1,Q,,yes,,Thatcher,Carol,26-45,female,British,London,,,Freelance journalist,,,Worked in Australia +998,S2B-004,1,E,,yes,,Major,John,47,male,British,London,,Secondary,Politician +1009,S2B-005,1,G,,yes,,Major,John,47,male,British,London,,Secondary,Politician +1017,S2B-007,1,A,,yes,Presenter,Naughtie,James,40,male,British,Scotland,Grammar School; Aberdeen University; Syracuse University,University,Broadcaster +1023,S2B-007,1,G,,yes,,Mellor,David,42,male,British,London,"Swanage Grammar School; Christ's College, Cambridge (BA Hons, 1970)",University,"Politician, barrister" +1028,S2B-008,1,A,,yes,,Naughtie,James,40,male,British,Scotland,Grammar School; Aberdeen University; Syracuse University,University,Broadcaster +1045,S2B-009,1,H,,yes,,Fletcher,Winston,54,male,British,London,"Westminster City School; St John's College, Cambridge (MA)",University,"Businessman; Visiting Professor, Lancaster Management School","Member, The Royal Society of Arts",, +1058,S2B-011,1,H,,yes,,Archer,Geoffrey,45,female,British,London,,University,"Broadcaster, journalist",,,Former solicitor's articled clerk +1060,S2B-011,1,J,,yes,,Allen,Bob,26-45,male,British,Scotland,,,"Representative, Scottish Fishermen's Association",,, +1062,S2B-011,1,L,,yes,,Foulkes,George,49,male,British,Scotland,"Keith Grammar School, Scotland; Edinburgh University (BSc 1964)",University,Politician,,, +1068,S2B-012,1,D,,yes,,Singleton,Valerie,54,female,British,London,"Royal Academy of Dramatic Art, London",University,"Broadcaster, journalist, ex-actress",,, +1079,S2B-014,1,B,,yes,,Major,John,47,male,British,London,,Secondary,Politician +1097,S2B-015,2,C,,yes,,Hamilton,Archie,50,male,British,Scotland,Eton,Secondary,Politician +1110,S2B-016,4,B,,yes,,Windsor,Elisabeth,46-65,female,British,London,,Secondary,HM The Queen,,, +1113,S2B-017,1,A,,yes,Presenter,Kershaw,Richard,26-45,male,British,London,Cambridge University; University of Virginia Graduate School,University,"Broadcaster, journalist",,, +1122,S2B-019,1,A,,yes,Presenter,Naughtie,James,40,male,British,Scotland,Grammar School; Aberdeen University; Syracuse University,University,"Broadcaster, journalist",,, +1131,S2B-020,1,C,,yes,,Patten,Chris,47,male,British,London,"Balliol College, Oxford",University,Politician,,, +1148,S2B-023,1,A,,yes,Presenter,Tong,Pete,26-45,male,British,London,,Secondary,"Broadcaster, musician" +1150,S2B-023,3,A,,yes,Presenter,Byalls,Peter,26-45,male,British,London,,,"Broadcaster, journalist" +1157,S2B-028,2,A,,yes,Presenter,Naughtie,James,40,male,British,Scotland,"Grammar School, Aberdeen Univ, Syracuse Univ",University,"Broadcaster, journalist",,, +1158,S2B-029,1,A,,yes,Presenter,Sacks,Jonathon,43,male,British,London,"Oxford, University of London, Jew's College London",University,Chief Rabbi,,, +1159,S2B-030,1,A,,yes,,Major,John,48,male,British,London,,Secondary,Politician,,,Prime Minister +1168,S2B-033,1,A,,yes,Presenter,Norman,Barry,58,male,British,London,Highgate School,Secondary,"Broadcaster, film critic",,, +1170,S2B-035,1,A,,yes,Debater,Redwood,John,40,male,British,London,"Kent College, Canterbury; Oxford (MA, DPhil)",University,Politician,,, +1174,S2B-037,1,A,,yes,Presenter,Scarman,Leslie,80,male,British,London,Oxford; Middle Temple,University,High Court Judge (retired),,,Lord Scarman +1184,S2B-041,1,A,,yes,,Queen Elizabeth II,,46-65,female,British,London,,Secondary,,,, +1186,S2B-042,1,A,,yes,Lecturer,Denman,Hugh,55,male,British,London,"BA, MA, Dip Soc Sci (Oxford)",University,Lecturer,,"French, German, Italian, Russian, Yiddish" diff --git a/ice/sspeaker-londonscotlandshuffle.csv b/ice/sspeaker-londonscotlandshuffle.csv new file mode 100644 index 0000000..88d98c9 --- /dev/null +++ b/ice/sspeaker-londonscotlandshuffle.csv @@ -0,0 +1,337 @@ +59,S1A-018,1,C,,yes,,Debenham,Simon,28,male,British,Ldonon,,University,Accountant,,, +573,S1B-035,1,A,,yes,Chairman,Dimbleby,Jonathan,47,male,British,Ldonon,UCL (BA Philosophy),University,Broadcaster,,, +22,S1A-008,1,B,,yes,,Tollfree,Laura,18-25,male,British,Ldonon,"BA Linguistics, UCL",University,Student,,, +479,S1B-017,1,D,,yes,,,,18-25,male,British,Ldonon,,Secondary,Student +303,S1A-080,1,B,,yes,,,Isobel,26-45,female,British,Ldonon,,University, +215,S1A-058,3,A,,yes,,,,26-45,male,British,Ldonon,,University,Engineer +163,S1A-048,1,B,,yes,,,,26-45,female,British,Ldonon,,Secondary,Nursery Nurse +779,S1B-074,1,B,,yes,,,Ross,27,male,British,Ldonon,,University,Insurance salesman,, +336,S1A-090,1,C,,yes,,,Caroline,46-65,female,British,Ldonon,"Undergraduate student, UCL",Secondary,Student +893,S2A-028,3,A,,yes,Lecturer,Roberts,Derek,46-65,male,British,Ldonon,PhD,University,"Provost, UCL; ex-businessman",,, +918,S2A-043,1,A,,yes,Lecturer,Rapley,C.G.,46-65,male,British,Ldonon,,University,Professor of Physics & Astronomy,,, +990,S2B-003,1,P,,yes,,Allen,Peter,45,male,British,Ldonon,,,Broadcaster,,,Worked in Australia +806,S1B-078,1,C,,yes,,,Chris,26-45,female,British,Ldonon,,Secondary,Student +134,S1A-039,1,B,,yes,,,Danielle,21,female,British,Ldonon,"BSc Engineering, Edinburgh University",University,"PhD student, Cambridge",,, +289,S1A-078,1,A,,yes,,,,26-45,female,British,Ldonon,,University,Student union officer,,, +305,S1A-081,1,B,,yes,,,Caroline,29,female,British,Ldonon,O-Levels,Secondary,"Secretary, Thames Water Co." +886,S2A-023,1,A,,yes,Lecturer,Banham,John,51,male,British,Ldonon,"Charterhouse School; Queen's College, Cambridge (BA Natural Sciences)",University,"Director, Confederation of British Industry",,, +16,S1A-007,1,A,,yes,,Tollfree,Laura,46-65,male,British,Ldonon,,,,,, +928,S2A-050,2,A,,yes,Interviewee,McCullin,Don,46-65,male,British,Ldonon,,Secondary,Photojournalist,,, +515,S1B-024,1,F,,yes,,Dobbs,Michael,46-65,male,British,Ldonon,,University,"Politician, novelist",,, +821,S1B-080,2,A,,yes,,,Ross,27,male,British,Ldonon,,University,Insurance salesman,, +124,S1A-035,1,A,,yes,,,,26-45,female,British,Ldonon,,University,Career counsellor,,, +423,S1B-007,1,B,,yes,,,Barbara,18-25,female,British,Ldonon,,Secondary,Student +355,S1A-095,4,A,,yes,,Debenham,Susan,48,female,British,Ldonon,,,,,, +782,S1B-074,3,A,,yes,,,Ross,27,male,British,Ldonon,,University,Insurance salesman,, +1009,S2B-005,1,G,,yes,,Major,John,47,male,British,Ldonon,,Secondary,Politician +645,S1B-052,1,O,,yes,,Salmond,Alex,37,male,British,Ldonon,St Andrew's,University,"Politician, economist",,, +165,S1A-049,1,A,,yes,,,Karen,30,female,British,Ldonon,O-Levels,Secondary,"Administrator, interior design company" +485,S1B-018,1,E,,yes,,,Chris,18-25,male,British,Ldonon,,Secondary,Student,, +315,S1A-085,1,B,,yes,,Scott,Kate,18-25,female,British,Ldonon,"Undergraduate in English, UCL",Secondary,Student,,, +82,S1A-023,1,A,,yes,,,,46-65,male,British,Ldonon,,Secondary,Journalist,,, +1159,S2B-030,1,A,,yes,,Major,John,48,male,British,Ldonon,,Secondary,Politician,,,Prime Minister +603,S1B-043,1,B,,yes,Interviewee,Major,John,47,male,British,Ldonon,,Secondary,"Politician, accountant",,, +1158,S2B-029,1,A,,yes,Presenter,Sacks,Jonathon,43,male,British,Ldonon,"Oxford, University of London, Jew's College London",University,Chief Rabbi,,, +530,S1B-028,1,A,,yes,Chairman,MacIntyre,Ian,60,male,British,Ldonon,"Cambridge (MA); College of Europe, Bruges",University,Broadcaster,,"French, Norwegian, Russian, Italian", +601,S1B-042,2,B,,yes,Interviewee,Mortimer,John,58,male,British,Ldonon,Harrow School; Brasenose Coll. Oxford; Inner Temple,University,"Barrister, novelist, playwright",,,"QC, 1966" +329,S1A-089,2,B,,yes,,,,18-25,female,British,Ldonon,"Undergraduate student, UCL",Secondary,Student +415,S1B-005,1,C,,yes,,,Rebecca,18-25,female,British,Ldonon,,Secondary,Student +393,S1B-003,1,B,,yes,,,Colin,23,male,British,Ldonon,,Secondary,Student +58,S1A-018,1,B,,yes,,Cage,Liz,20,female,British,Ldonon,,,,,, +513,S1B-024,1,D,,yes,,Couper,Heather,42,female,British,Ldonon,Grammar Sch; Univ. of Leicester (BSc Physics & Astronomy),University,Prof. of Astronomy; science broadcaster/writer,"FRAS, 1970","French, Latin, German", +643,S1B-052,1,M,,yes,,Fraser,John,57,male,British,Ldonon,"Grammar School, Chelsea; Loughborough Univ.",University,"Politician, solicitor",,, +32,S1A-012,1,A,,yes,,Scales,Rob,26-45,male,British,Ldonon,,University,Teacher +815,S1B-079,1,G,,yes,,,Joe,18-25,male,British,Ldonon,,Secondary,Student +265,S1A-074,2,A,,yes,,,Paul,23,male,British,Ldonon,,University,Travel officer,,, +451,S1B-011,1,B,,yes,,,,18-25,male,British,Ldonon,,Secondary,Student +698,S1B-057,1,L,,yes,,Kirkwood,Archy,45,male,British,Ldonon,Heriot-Watt University (BSc Pharmacy),University,Politician,, +885,S2A-022,1,A,,yes,Lecturer,James,Simon,26-45,male,British,Ldonon,MA(Oxon),University,Military Archaeologist,,Italian, +512,S1B-024,1,C,,yes,,Mortimer,John,58,male,British,Ldonon,Harrow School; Brasenose Coll. Oxford; Inner Temple,University,"Barrister, novelist, playwright",,,"QC, 1966" +1184,S2B-041,1,A,,yes,,Queen Elizabeth II,,46-65,female,British,Ldonon,,Secondary,,,, +471,S1B-015,1,C,,yes,,,Rebecca,18-25,female,British,Ldonon,,Secondary,Student +705,S1B-058,1,D,,yes,,Wallace,James,37,male,British,Ldonon,Edinburgh Univeristy,University,Politician,, +756,S1B-067,1,B,,yes,Defence witness,Tarburn,,18-25,female,British,Ldonon,,,Travel company representative,,, +467,S1B-014,1,B,,yes,,,,18-25,male,British,Ldonon,,Secondary,Student +232,S1A-065,1,A,,yes,,,,26-45,female,British,Ldonon,,University,Student,,, +744,S1B-064,1,B,,yes,Prosecution witness,Lehrer,Michael,,male,British,Ldonon,,,Businessman +264,S1A-074,1,C,,yes,,,Paul,23,male,British,Ldonon,,University,Travel officer,,, +1097,S2B-015,2,C,,yes,,Hamilton,Archie,50,male,British,Ldonon,Eton,Secondary,Politician +35,S1A-012,1,D,,yes,,King-Smith,Gavin,26-45,male,British,Ldonon,,University,Management consultant +553,S1B-032,1,C,,yes,,Thomson,Bryden,46-65,male,British,Ldonon,"Ayr Academy; Royal Scottish Academy of Music; Staatliche Hochschule fur Musik, Hamburg",University,Composer,"Fellow, Royal Scottish Acad. of Music & Drama",German, +1148,S2B-023,1,A,,yes,Presenter,Tong,Pete,26-45,male,British,Ldonon,,Secondary,"Broadcaster, musician" +353,S1A-095,3,A,,yes,,Debenham,Giles,25,male,British,Ldonon,,, +630,S1B-051,1,I,,yes,,Livingstone,Ken,46,male,British,Ldonon,Fawcett College of Education,University,"Politician, lab technician",,, +346,S1A-093,1,B,,yes,,Tollfree,Eleanor,20,female,British,Ldonon,,Secondary,Student +598,S1B-042,1,A,,yes,Interviewer,Aspel,Michael,57,male,British,Ldonon,London,University,Broadcaster,,, +812,S1B-079,1,D,,yes,,,,18-25,male,British,Ldonon,,Secondary,Student +674,S1B-055,1,N,,yes,,Reid,John,44,male,British,Ldonon,Stirling Univ (PhD),University,"Politician, researcher",,, +263,S1A-074,1,B,,yes,,,Tom,21,male,British,Ldonon,,Secondary,Travel officer,,, +503,S1B-022,1,C,,yes,,Mortimer,John,58,male,British,Ldonon,Harrow School; Brasenose Coll. Oxford; Inner Temple,University,"Barrister, novelist, playwright",,,"QC, 1966" +633,S1B-052,1,C,,yes,,Major,John,47,male,British,Ldonon,,Secondary,Politician,,, +396,S1B-003,1,E,,yes,,,Melanie,18-25,female,British,Ldonon,,Secondary,Student +153,S1A-045,3,A,,yes,,White,Ashley,31,male,British,Ldonon,,University,"Tennis coach, PhD student" +126,S1A-036,1,A,,yes,,,Caroline,29,female,British,Ldonon,O-Levels,Secondary,"Secretary, Thames Water Co.",,, +1157,S2B-028,2,A,,yes,Presenter,Naughtie,James,40,male,British,Ldonon,"Grammar School, Aberdeen Univ, Syracuse Univ",University,"Broadcaster, journalist",,, +314,S1A-085,1,A,,yes,,,,18-25,male,British,Ldonon,,Secondary,Student,,, +927,S2A-050,1,A,,yes,Interviewee,McCullin,Don,46-65,male,British,Ldonon,,Secondary,Photojournalist,,, +561,S1B-034,1,A,,yes,Chairman,Dimbleby,David,53,male,British,Ldonon,Charterhouse School; Oxford (MA); University of Paris,University,Broadcaster,,, +168,S1A-050,1,A,,yes,,Neustein,,46-65,male,British,Ldonon,PhD,University,Student Counsellor +152,S1A-045,2,B,,yes,,White,Ashley,31,male,British,Ldonon,,University,"Tennis coach, PhD student" +340,S1A-090,2,C,,yes,,,,18-25,female,British,Ldonon,"Undergraduate student, UCL",Secondary,Student +520,S1B-026,1,A,,yes,Chairman,Purves,Libby,26-45,female,British,Ldonon,"Oxford University, English 1971",University,Broadcaster,,French, +854,S2A-008,5,A,,yes,,Neil,Andrew,42,male,British,Ldonon,"Paisley Grammar School; University of Glasgow (MA Politics & Economics, 1971)",University,"Journalist, editor `The Sunday Times'",, +425,S1B-007,1,D,,yes,,,James,18-25,male,British,Ldonon,,Secondary,Student +84,S1A-024,1,A,,yes,,Sidney,Greenbaum,46-65,male,British,Ldonon,"MA, PhD",University,Professor of English,,Hebrew,"Director, Survey of English Usage" +652,S1B-053,1,G,,yes,,Tebbit,Norman,60,male,British,Ldonon,Edmonton County Grammar School,Secondary,"Politician, businessman",,, +1062,S2B-011,1,L,,yes,,Foulkes,George,49,male,British,Ldonon,"Keith Grammar School, Scotland; Edinburgh University (BSc 1964)",University,Politician,,, +491,S1B-019,1,E,,yes,,,Eleanor,18-25,female,British,Ldonon,,Secondary,Student,, +925,S2A-048,1,A,,yes,Lecturer,Tait,W.,46-65,male,British,Ldonon,,University,Lecturer in Egyptology,,, +577,S1B-036,1,A,,yes,Chairman,Naughtie,James,40,male,British,Ldonon,Grammar School; Aberdeen University; Syracuse University,University,Broadcaster,,, +1068,S2B-012,1,D,,yes,,Singleton,Valerie,54,female,British,Ldonon,"Royal Academy of Dramatic Art, London",University,"Broadcaster, journalist, ex-actress",,, +859,S2A-011,1,A,,yes,,Dimbleby,Jonathan,47,male,British,Ldonon,,University,"Journalist, broadcaster",, +852,S2A-008,3,A,,yes,,Neil,Andrew,42,male,British,Ldonon,"Paisley Grammar School; University of Glasgow (MA Politics & Economics, 1971)",University,"Journalist, editor `The Sunday Times'",, +179,S1A-052,1,B,,yes,,,,46-65,male,British,Ldonon,,Secondary,Photojournalist,, +1122,S2B-019,1,A,,yes,Presenter,Naughtie,James,40,male,British,Ldonon,Grammar School; Aberdeen University; Syracuse University,University,"Broadcaster, journalist",,, +23,S1A-009,1,A,,yes,,Sayce,Oonagh,46-65,female,British,Ldonon,MA English,University,Part-time University teacher,,"French, Italian","Researcher, Survey of English Usage" +916,S2A-041,1,A,,yes,Lecturer,Cullen,A.L.,46-65,male,British,Ldonon,,University,Professor of Electrical Engineering,,, +55,S1A-017,1,C,,yes,,Tollfree,Laura,18-25,female,British,Ldonon,"BA Linguistics, UCL",University,Student,,, +913,S2A-038,1,A,,yes,Lecturer,Laslett,Sir Peter,76,male,British,Ldonon,Grammar School; Cambridge,University,"Reader in Politics & Hist. Soc. Struct, 1966-83, Cambridge","FBA, 1979",, +160,S1A-047,1,B,,yes,,,,26-45,female,British,Ldonon,"Undergraduate student, UCL",Secondary,Student +133,S1A-039,1,A,,yes,,Tollfree,Laura,18-25,female,British,Ldonon,BA Linguistics,University,"PhD student (Linguistics), Cambridge",,, +141,S1A-041,1,B,,yes,,,Jim,23,male,British,Ldonon,"Degree in Geography, Lampeter (Wales)",University,"MPhil student in Glaciology, Cambridge",,, +103,S1A-029,1,B,,yes,,,Andrew,24,male,British,Ldonon,BA,University,Computer programmer,,, +475,S1B-016,1,D,,yes,,,Esther,18-25,female,British,Ldonon,,Secondary,Student +88,S1A-026,1,A,,yes,,Carpenter,Roger,26-45,male,British,Ldonon,,University,Teacher,,, +887,S2A-024,1,A,,yes,Lecturer,Vanags,Patsy,26-45,female,British,Ldonon,,University,Part-time lecturer,,, +266,S1A-074,2,B,,yes,,,,22,male,British,Ldonon,,Secondary,Student,,, +462,S1B-013,1,B,,yes,,,,18-25,male,British,Ldonon,,Secondary,Student +159,S1A-047,1,A,,yes,,,,26-45,male,British,Ldonon,,University,Computer Operator/Programmer +237,S1A-065,1,F,,yes,,,,18-25,male,British,Ldonon,,University,Student,,, +366,S1A-098,3,B,,yes,,Peters,Roz,27,female,British,Ldonon,,University,Civil servant,,, +456,S1B-011,1,G,,yes,,,,18-25,male,British,Ldonon,,Secondary,Student +810,S1B-079,1,B,,yes,,,Carol,18-25,male,British,Ldonon,,Secondary,Student +465,S1B-013,1,E,,yes,,,,18-25,female,British,Ldonon,,Secondary,Student +468,S1B-014,1,C,,yes,,,,18-25,female,British,Ldonon,,Secondary,Student +351,S1A-095,2,A,,yes,,Debenham,Susan,48,female,British,Ldonon,,, +888,S2A-025,1,A,,yes,Lecturer,Chandler,A.,26-45,male,British,Ldonon,,University,Lecturer in Engineering,,, +602,S1B-043,1,A,,yes,Interviewer,Dimbleby,Jonathan,47,male,British,Ldonon,UCL (BA Philosophy),University,Broadcaster,,, +822,S1B-080,2,B,,yes,,,,32,male,British,Ldonon,,University,Lecturer,, +297,S1A-078,4,B,,yes,,,,26-45,female,British,Ldonon,,University,Student union officer +187,S1A-054,1,A,,yes,,Beaumann,Nicola,46-65,female,British,Ldonon,,University,Writer,, +819,S1B-080,1,A,,yes,,,Ross,27,male,British,Ldonon,,University,Insurance salesman,, +221,S1A-061,1,A,,yes,,Sayce,Peter,26-45,male,British,Ldonon,,Secondary,Government executive +262,S1A-074,1,A,,yes,,,,21,female,British,Ldonon,,Secondary,Student,,, +920,S2A-045,1,A,,yes,Lecturer,Grosvenor,Gerald,40,male,British,Ldonon,Harrow School; military training,Secondary,Businessman,,,6th Duke of Westminster +268,S1A-074,3,B,,yes,,,,21,male,British,Ldonon,,Secondary,Student,,, +760,S1B-068,1,C,,yes,Judge,MacPherson,,65,male,British,Ldonon,"Wellington Coll., Berkshire; Trinity Coll., Oxford",University,High Court Judge,,, +809,S1B-079,1,A,,yes,Chairman,,Andy,18-25,male,British,Ldonon,,Secondary,Student +464,S1B-013,1,D,,yes,,,,18-25,female,British,Ldonon,,Secondary,Student +1045,S2B-009,1,H,,yes,,Fletcher,Winston,54,male,British,Ldonon,"Westminster City School; St John's College, Cambridge (MA)",University,"Businessman; Visiting Professor, Lancaster Management School","Member, The Royal Society of Arts",, +1131,S2B-020,1,C,,yes,,Patten,Chris,47,male,British,Ldonon,"Balliol College, Oxford",University,Politician,,, +378,S1B-001,1,B,,yes,,Turner,Mary,46-65,female,British,Ldonon,,Secondary,Student,,Hebrew, +298,S1A-078,4,C,,yes,,,,18-25,female,British,Ldonon,,Secondary,Student +668,S1B-055,1,H,,yes,,Lamond,James,63,male,British,Ldonon,Burrelton School,Secondary,"Politician, engineering draughtsman",,, +222,S1A-061,1,B,,yes,,Busby,Derek Charles,46-65,male,British,Ldonon,,University,Government official +363,S1A-098,2,A,,yes,,Dowell,John,26-45,male,British,Ldonon,PhD,University,Employed at UCL,,, +454,S1B-011,1,E,,yes,,,,18-25,male,British,Ldonon,,Secondary,Student +912,S2A-037,1,A,,yes,Lecturer,Roberts,Derek,46-65,male,British,Ldonon,PhD,University,"Provost, UCL; ex-businessman",,, +13,S1A-005,1,B,,yes,,Tollfree,Laura,18-25,female,British,Ldonon,"BA Linguistics, UCL",University,Student,,, +807,S1B-078,1,D,,yes,,,Ted,46-65,male,British,Ldonon,,Secondary,Student +54,S1A-017,1,B,,yes,,,Zara,26,female,British,Ldonon,A-levels,University,Accountant,,,Indian ethnic origin +193,S1A-055,1,E,,yes,,,,26-45,male,British,Ldonon,,University,Lexicographer,, +345,S1A-093,1,A,,yes,,Tollfree,Laura,18-25,female,British,Ldonon,"Degree in Linguistics, UCL",University,Student +192,S1A-055,1,D,,yes,,,,18-25,female,British,Ldonon,,University,Secretary,, +270,S1A-074,4,A,,yes,,,Tom,21,male,British,Ldonon,,Secondary,Travel officer,,, +1150,S2B-023,3,A,,yes,Presenter,Byalls,Peter,26-45,male,British,Ldonon,,,"Broadcaster, journalist" +1170,S2B-035,1,A,,yes,Debater,Redwood,John,40,male,British,Ldonon,"Kent College, Canterbury; Oxford (MA, DPhil)",University,Politician,,, +480,S1B-017,1,E,,yes,,,,18-25,female,British,Ldonon,,Secondary,Student +533,S1B-028,1,D,,yes,,McDade,John,26-45,male,British,Ldonon,,University,Clergyman,,, +145,S1A-043,1,A,,yes,,White,Ashley,31,male,British,Ldonon,,University,"Tennis coach, PhD student",,, +110,S1A-031,1,A,,yes,,Beaumann,Nicola,46-65,female,British,Ldonon,,University,Writer,,, +817,S1B-079,1,I,,yes,,,,18-25,female,British,Ldonon,,Secondary,Student +813,S1B-079,1,E,,yes,,,Katherine,18-25,female,British,Ldonon,,Secondary,Student +675,S1B-055,1,O,,yes,,Hicks,Maureen,43,female,British,Ldonon,"Furzedown College of Education, London",University,"Politician, lecturer",,, +312,S1A-084,1,B,,yes,,Scott,Kate,18-25,female,British,Ldonon,"Undergraduate in English, UCL",Secondary,Student,,, +128,S1A-037,1,A,,yes,,,Jenny,18-25,female,British,Ldonon,,University,Student,,, +25,S1A-010,1,A,,yes,,Moore,Nina,66+,female,British,Ldonon,,Secondary,Welfare officer (retired),,, +122,S1A-034,1,A,,yes,,,,26-45,female,British,Ldonon,,University,Career counsellor,,, +632,S1B-052,1,B,,yes,,Clark,William,74,male,British,Ldonon,,Secondary,"Politician, accountant",,, +70,S1A-021,1,A,,yes,,,,26-45,male,British,Ldonon,,University,Musician,,, +493,S1B-020,1,B,,yes,,,Victor,18-25,male,British,Ldonon,,Secondary,Student,, +302,S1A-080,1,A,,yes,,,Jenny,18-25,female,British,Ldonon,,University, +715,S1B-059,1,I,,yes,,Stern,Michael,49,male,British,Ldonon,,University,"Politician, accountant", +18,S1A-007,1,C,,yes,,Tollfree,Laura,18-25,female,British,Ldonon,"BA Linguistics, UCL",University,Student,,, +511,S1B-024,1,B,,yes,,Lawson,Mark,26-45,male,British,Ldonon,UCL (BA English),University,Journalist,,, +260,S1A-073,1,C,,yes,,,,26-45,female,British,Ldonon,,University,"Writer, housewife",,, +896,S2A-029,3,A,,yes,Lecturer,Newton,Andrew,26-45,male,British,Ldonon,"BSc Physics, MSc Information Technology",University,Research Fellow,,French, +589,S1B-039,1,A,,yes,Chairman,Neil,Andrew,42,male,British,Ldonon,Grammar School; University of Glasgow,University,"Journalist, Editor, `The Sunday Times'",,, +729,S1B-060,1,D,,yes,,Henderson,Doug,42,male,British,Ldonon,"Waid Academy, Fife; Central College, Glasgow; Strathclyde University (BA)",University,Politician,,, +1060,S2B-011,1,J,,yes,,Allen,Bob,26-45,male,British,Ldonon,,,"Representative, Scottish Fishermen's Association",,, +973,S2B-002,1,J,,yes,,Major,John,47,male,British,Ldonon,,Secondary,Politician,,, +162,S1A-048,1,A,,yes,,,,26-45,female,British,Ldonon,,University,Antique Dealer +531,S1B-028,1,B,,yes,,Sacks,Jonathan,43,male,British,Ldonon,"Cambridge (MA); Oxford (PhD); Jews' College, London",University,Chief Rabbi,,, +473,S1B-016,1,B,,yes,,,,18-25,male,British,Ldonon,,Secondary,Student +296,S1A-078,4,A,,yes,,,,26-45,male,British,Ldonon,,University,Student union officer +611,S1B-045,1,B,,yes,Interviewee,Jarman,Derek,49,male,British,Ldonon,"King's College, London; Slade School of Art",University,"Painter, film director",,, +523,S1B-026,1,D,,yes,,Dickens,Monica,66+,female,British,Ldonon,"St Paul's School, Hammersmith, London",Secondary,Novelist,,, +452,S1B-011,1,C,,yes,,,,18-25,female,British,Ldonon,,Secondary,Student +14,S1A-006,1,A,,yes,,,Sandra,18-25,female,British,Ldonon,,University,,,, +942,S2A-058,2,A,,yes,,Walton,Nick,26-45,male,British,Ldonon,"BSc, PhD",University,Astronomer,,Dutch +551,S1B-032,1,A,,yes,,Baker,Richard,66,male,British,Ldonon,"Peterhouse, Cambridge",University,"Broadcaster, ex-actor",,, +42,S1A-014,1,A,,yes,,Tollfree,Laura,18-25,female,British,Ldonon,"BA Linguistics, UCL",University,Student +177,S1A-051,4,B,,yes,,,,18-25,male,British,Ldonon,,Secondary,Student +349,S1A-095,1,A,,yes,,Debenham,Giles,25,male,British,Ldonon,,, +414,S1B-005,1,B,,yes,,,Michael,18-25,male,British,Ldonon,,Secondary,Student +507,S1B-023,1,A,,yes,Chairman,Baker,Richard,66,male,British,Ldonon,"Peterhouse, Cambridge",University,"Broadcaster, ex-actor",,, +188,S1A-054,1,B,,yes,,Boase,Sue,26-45,female,British,Ldonon,,University,"Researcher, lecturer",, +498,S1B-021,2,A,,yes,Chairman,Neil,Andrew,42,male,British,Ldonon,Paisley Grammar School; Glasgow University (MA),University,"Editor, The Sunday Times",,, +19,S1A-007,1,D,,yes,,,,46-65,male,British,Ldonon,,,,,, +459,S1B-012,1,A,,yes,,Tollfree,Laura,18-25,female,British,Ldonon,BA Linguistics,University,Student (PhD) +482,S1B-018,1,B,,yes,Tutor,,,46-65,male,British,Ldonon,,University,University Lecturer,, +65,S1A-019,1,F,,yes,,,,18-25,female,British,Ldonon,UCL BA in Linguistics,University,Student,,, +579,S1B-036,1,C,,yes,,Robertson,George,45,male,British,Ldonon,"Dunoon Grammar School; University of Dundee (MA Hons, 1968)",University,Politician,,, +294,S1A-078,3,A,,yes,,,,26-45,female,British,Ldonon,,University,Student union officer +494,S1B-020,1,C,,yes,,,,18-25,male,British,Ldonon,,Secondary,Student,, +587,S1B-038,1,B,,yes,Chairman,Dimbleby,Jonathan,47,male,British,Ldonon,UCL (BA Philosophy),University,Broadcaster,,, +86,S1A-025,1,A,,yes,,,,26-45,male,British,Ldonon,,Secondary,,,,Brother of $B +658,S1B-054,1,C,,yes,,Wells,Bowen,56,male,British,Ldonon,"St Paul's School, London, Exeter University",University,Politician,,, +422,S1B-007,1,A,,yes,Tutor,Agnew,Clive,26-45,male,British,Ldonon,PhD,University,Lecturer in Geography +181,S1A-052,2,A,,yes,,,,46-65,male,British,Ldonon,,Secondary,Photojournalist,, +149,S1A-045,1,A,,yes,,White,Ashley,31,male,British,Ldonon,,University,"Tennis coach, PhD student" +1017,S2B-007,1,A,,yes,Presenter,Naughtie,James,40,male,British,Ldonon,Grammar School; Aberdeen University; Syracuse University,University,Broadcaster +816,S1B-079,1,H,,yes,,,Emma,18-25,female,British,Ldonon,,Secondary,Student +87,S1A-025,1,B,,yes,,,,26-45,female,British,Ldonon,,Secondary,Secretary,,,Sister of $A +352,S1A-095,2,B,,yes,,Debenham,Simon,28,male,British,Ldonon,,University,Accountant +104,S1A-029,1,C,,yes,,,Andy,21,male,British,Ldonon,BA,University,Computer programmer,,, +338,S1A-090,2,A,,yes,,,,18-25,female,British,Ldonon,"Undergraduate student, UCL",Secondary,Student +991,S2B-003,1,Q,,yes,,Thatcher,Carol,26-45,female,British,Ldonon,,,Freelance journalist,,,Worked in Australia +161,S1A-047,1,C,,yes,,,,66+,female,British,Ldonon,,Secondary,Ex-secretary (retired) +651,S1B-053,1,F,,yes,,Lamond,James,63,male,British,Ldonon,Burrelton School,Secondary,"Politician, engineering draughtsman",,, +1058,S2B-011,1,H,,yes,,Archer,Geoffrey,45,female,British,Ldonon,,University,"Broadcaster, journalist",,,Former solicitor's articled clerk +583,S1B-037,1,B,,yes,,Aslet,Clive,36,male,British,Ldonon,"Peterhouse, Cambridge",University,"Deputy Editor, Country Life",,, +974,S2B-002,1,K,,yes,,Biffin,John,61,male,British,Ldonon,"Jesus College, Cambridge (BA)",University,Politician,,, +234,S1A-065,1,C,,yes,,,,46-65,male,British,Ldonon,,University,Student,,, +684,S1B-056,1,I,,yes,,Bennett,Nicholas,42,male,British,Ldonon,Polytechnic of N.London (BA Philosophy); Univ. of London Inst of Educ (PGCE); Univ. of Sussex (MA),University,Politician,,, +386,S1B-002,1,G,,yes,,,Georgina,18-25,female,British,Ldonon,,Secondary,Student +272,S1A-074,4,C,,yes,,,Louise,22,female,British,Ldonon,,University,Travel officer,,, +337,S1A-090,1,D,,yes,,,Joan,66+,female,British,Ldonon,"Undergraduate student, UCL",Secondary,"Student, retired nurse" +377,S1B-001,1,A,,yes,Tutor,Weitzman,Michael,46-65,male,British,Ldonon,,University,University Lecturer,,Hebrew, +350,S1A-095,1,B,,yes,,Debenham,Simon,28,male,British,Ldonon,,University,Accountant +429,S1B-008,1,C,,yes,,,Miriam,18-25,female,British,Ldonon,,Secondary,Student +911,S2A-036,1,A,,yes,Lecturer,Weitzmann,Michael,26-45,male,British,Ldonon,,University,Lecturer in Jewish & Hebrew Studies,,Hebrew, +1113,S2B-017,1,A,,yes,Presenter,Kershaw,Richard,26-45,male,British,Ldonon,Cambridge University; University of Virginia Graduate School,University,"Broadcaster, journalist",,, +258,S1A-073,1,A,,yes,,,,46-65,male,British,Ldonon,,University,Industrial chemist,,,"Also lived: Oxford, Epping area, Montpellier" +618,S1B-049,1,A,,yes,Interviewer,Cuffe,Jenny,26-45,female,British,Ldonon,,University,Broadcaster,,"French, Spanish, Italian", +275,S1A-074,5,C,,yes,,,,27,male,British,Ldonon,,University,Student union officer,,, +939,S2A-057,1,A,,yes,,Bindman,David,46-65,male,British,Ldonon,,University,Professor of the History of Art,, +288,S1A-077,1,D,,yes,,,James,18-25,male,British,Ldonon,,Secondary,Student,,, +460,S1B-012,1,B,,yes,Tutor,,April,28,female,British,Ldonon,PhD Phonology,University,University Lecturer +908,S2A-035,1,A,,yes,Lecturer,Spencer,Sharon,26-45,female,British,Ldonon,"BSc, PhD Biochemistry",University,Associate Research Assistant,,None, +442,S1B-009,1,B,,yes,,,,18-25,male,British,Ldonon,,Secondary,Student +783,S1B-074,3,B,,yes,,Kalman,Anthony,27,male,British,Ldonon,,University,Chef,, +978,S2B-003,1,D,,yes,,Mellor,David,42,male,British,Ldonon,"Swanage Grammar School; Christ's College, Cambridge (BA Hons, 1970)",University,"Politician, barrister",,, +717,S1B-059,1,K,,yes,,Dickens,Sir Geoffrey,60,male,British,Ldonon,"Easthome School, Wembley; Harrow Technical College; Acton Technical College",University,"Politician, businessman", +477,S1B-017,1,B,,yes,,,,46-65,male,British,Ldonon,,Secondary,Student +384,S1B-002,1,E,,yes,,,Vincent,18-25,male,British,Ldonon,,Secondary,Student,,, +148,S1A-044,1,B,,yes,,White,Ashley,31,male,British,Ldonon,,University,"Tennis coach, PhD student" +238,S1A-065,1,G,,yes,,,,18-25,male,British,Ldonon,,University,Student,,, +282,S1A-075,1,B,,yes,,,James,26-45,male,British,Ldonon,,University,Businessman,,,Speaker is partially deaf +17,S1A-007,1,B,,yes,,Tollfree,Laura,46-65,female,British,Ldonon,,,,,, +428,S1B-008,1,B,,yes,,,David,23,male,British,Ldonon,,Secondary,Student +354,S1A-095,3,B,,yes,,Debenham,Simon,28,male,British,Ldonon,,University,Accountant,,, +300,S1A-079,1,B,,yes,,,Tony,26-45,male,British,Ldonon,,University,Student union officer +614,S1B-047,1,A,,yes,Interviewer,MacIntyre,Ian,60,male,British,Ldonon,"Prescot Grammar School; St John's College, Cambridge; College of Europe, Bruges",University,Broadcaster,,"French, Norwegian, Russian, Italian", +290,S1A-078,1,B,,yes,,,,18-25,male,British,Ldonon,,Secondary,Student +650,S1B-053,1,E,,yes,,Squire,Robin,47,male,British,Ldonon,"Tiffin School, Kingston-upon Thames; Accountancy training",University,"Politician, chartered accountant",FCA,, +716,S1B-059,1,J,,yes,,Madden,Max,50,male,British,Ldonon,Grammar School,Secondary,Politician, +552,S1B-032,1,B,,yes,,Handley,Vernon,61,male,British,Ldonon,"Enfield School; Balliol College, Oxford; Guildhall School of Music",University,"Conductor, Royal Liverpool Philharmonic Orchestra",,, +335,S1A-090,1,B,,yes,,,Maureen,46-65,female,British,Ldonon,"Undergraduate student, UCL",Secondary,Student +1028,S2B-008,1,A,,yes,,Naughtie,James,40,male,British,Ldonon,Grammar School; Aberdeen University; Syracuse University,University,Broadcaster +57,S1A-018,1,A,,yes,,Tollfree,Eleanor,20,female,British,Ldonon,,Secondary,Student,,, +940,S2A-057,2,A,,yes,,Bindman,David,46-65,male,British,Ldonon,,University,Professor of the History of Art,, +130,S1A-038,1,A,,yes,,,Danielle,21,female,British,Ldonon,"BSc Engineering, Edinburgh University",University,"PhD student, Engineering, Cambridge",,, +635,S1B-052,1,E,,yes,,Higgins,Terence,63,male,British,Ldonon,Cambridge; Yale,University,"Politician, economist",,, +605,S1B-044,1,B,,yes,Interviewee,Walker,Lynn,26-45,female,British,Ldonon,,University,Critic,,None, +672,S1B-055,1,L,,yes,,Fyfe,Maria,53,female,British,Ldonon,"High School, Glasgow; Strathclyde Univ",University,"Politician, lecturer",,, +167,S1A-049,1,C,,yes,,,Caroline,29,female,British,Ldonon,O-Levels,Secondary,"Secretary, Thames Water Co." +977,S2B-003,1,C,,yes,,Major,John,47,male,British,Ldonon,,Secondary,Politician,,, +778,S1B-074,1,A,,yes,,,,32,male,British,Ldonon,,University,Lecturer,,Spanish +597,S1B-041,1,B,,yes,Interviewee,Runcie,Robert,66,male,British,Ldonon,Merchant Taylor's School; Oxford; Cambridge,University,Former Archbishop of Canterbury,,, +75,S1A-021,2,B,,yes,,,,26-45,male,British,Ldonon,,University,Musician,,, +186,S1A-053,1,C,,yes,,,,46-65,male,British,Ldonon,,Secondary,Computer management,, +379,S1B-001,1,C,,yes,,Smith,John,18-25,male,British,Ldonon,,Secondary,,,, +483,S1B-018,1,C,,yes,,,,25,male,British,Ldonon,,Secondary,Student,, +902,S2A-033,2,A,,yes,Lecturer,Edwards,D.R.L.,26-45,male,British,Ldonon,"M.B.B.S., M.R.C. Psych.",University,Associate Research Fellow in Psychiatry,,"French, some Danish & Russian", +1168,S2B-033,1,A,,yes,Presenter,Norman,Barry,58,male,British,Ldonon,Highgate School,Secondary,"Broadcaster, film critic",,, +236,S1A-065,1,E,,yes,,,,46-65,male,British,Ldonon,,University,Farmer,,, +571,S1B-034,1,K,,yes,,,,46-65,male,British,Ldonon,,,County Councillor,,, +814,S1B-079,1,F,,yes,,Thompson,Katherine,18-25,female,British,Ldonon,,Secondary,Student +369,S1A-099,2,A,,yes,,,,18-25,female,British,Ldonon,B-Techs,University,Shop assistant,,, +291,S1A-078,2,A,,yes,,,,26-45,male,British,Ldonon,,University,Student union officer +292,S1A-078,2,B,,yes,,,,26-45,female,British,Ldonon,,University,Student union officer +1023,S2B-007,1,G,,yes,,Mellor,David,42,male,British,Ldonon,"Swanage Grammar School; Christ's College, Cambridge (BA Hons, 1970)",University,"Politician, barrister" +382,S1B-002,1,C,,yes,,,Vicky,18-25,female,British,Ldonon,,Secondary,Student,,, +304,S1A-081,1,A,,yes,,White,Ashley,31,male,British,Ldonon,,University,"Tennis coach, PhD student" +554,S1B-033,1,A,,yes,Chairman,Northam,Gerry,26-45,male,British,Ldonon,,University,Broadcaster,,, +441,S1B-009,1,A,,yes,Tutor,Fitzgerald,M.,26-45,female,British,Ldonon,PhD Anatomy,University,University lecturer +426,S1B-007,1,E,,yes,,,Duncan,18-25,male,British,Ldonon,,Secondary,Student +1110,S2B-016,4,B,,yes,,Windsor,Elisabeth,46-65,female,British,Ldonon,,Secondary,HM The Queen,,, +938,S2A-056,2,A,,yes,,Ball,Ginny,26-45,female,British,Ldonon,BSc (Hons),University,Lecturer,,"French, some German" +721,S1B-059,1,O,,yes,,Forth,Eric,47,male,British,Ldonon,"Jordanhill College School, Glasgow; Glasgow University",University,"Politician, businessman", +395,S1B-003,1,D,,yes,,,Jill,18-25,female,British,Ldonon,,Secondary,Student +1186,S2B-042,1,A,,yes,Lecturer,Denman,Hugh,55,male,British,Ldonon,"BA, MA, Dip Soc Sci (Oxford)",University,Lecturer,,"French, German, Italian, Russian, Yiddish" +306,S1A-082,1,A,,yes,,,,26-45,female,British,Ldonon,,University,Lecturer,,, +269,S1A-074,3,C,,yes,,,,27,female,British,Ldonon,,University,Travel officer,,, +627,S1B-051,1,F,,yes,,Holt,Richard,60,male,British,Ldonon,Wembley Technical College,University,Politician,,, +917,S2A-042,1,A,,yes,Lecturer,Elkins,R.P.,46-65,male,British,Ldonon,,University,Professor of Endocrinology,,, +891,S2A-028,1,A,,yes,Lecturer,Johnstone,Wyndham,26-45,male,British,Ldonon,"BSc Physics, PhD",University,Research Scientist,,None, +348,S1A-094,1,B,,yes,,Tollfree,Laura,18-25,female,British,Ldonon,"Degree in Linguistics, UCL",University,Student +575,S1B-035,1,C,,yes,,Rifkind,Malcolm,45,male,British,Ldonon,"Edinburgh University (LLB, MSc)",University,Politician,,,"Lectured at University of Rhodesia, 1967-8" +594,S1B-040,1,C,,yes,,Pimlott,Ben,46,male,British,Ldonon,"Rokeby School, Wimbledon; Marlborough Coll.; Worcester Coll.; Oxford (MA, BPhil); Newcastle (PhD)",University,Professor of Politics & Contemporary History,,, +356,S1A-095,4,B,,yes,,Debenham,Simon,28,male,British,Stolcnad,,University,Accountant,,, +469,S1B-015,1,A,,yes,Tutor,Wolf,J.,26-45,male,British,Stolcnad,PhD,University,University Lecturer +339,S1A-090,2,B,,yes,,,Maureen,46-65,female,British,Stolcnad,"Undergraduate student, UCL",Secondary,Student +808,S1B-078,1,E,,yes,,,,46-65,female,British,Stolcnad,,Secondary,Student +581,S1B-036,1,E,,yes,,Patten,John,46,male,British,Stolcnad,"Wimbledon College; Sidney Sussex College, Cambridge (PhD 1972)",University,Politician,,,Former university lecturer +883,S2A-020,2,A,,yes,,McLellan,Andrew,46-65,male,British,Stolcnad,,University,Broadcaster,,"Latin, Greek, Hebrew, French, German", +309,S1A-083,1,A,,yes,,,Paquita,44,female,British,Stolcnad,O-Levels,Secondary,"Tennis coach, guitarist",,, +617,S1B-048,1,B,,yes,Interviewee,Stewart,Mary,75,female,British,Stolcnad,"Skellfield School, Ripon, Yorks; Durham University",University,Novelist,,,Former lecturer in English +998,S2B-004,1,E,,yes,,Major,John,47,male,British,Stolcnad,,Secondary,Politician +763,S1B-068,2,C,,yes,Judge,MacPherson,,65,male,British,Stolcnad,"Wellington Coll., Berkshire; Trinity Coll., Oxford",University,High Court Judge,,, +784,S1B-074,3,C,,yes,,Lawrence,Jane,20,female,British,Stolcnad,,Secondary,Student,, +218,S1A-059,1,B,,yes,,,,18-25,male,British,Stolcnad,,Secondary,Student +780,S1B-074,2,A,,yes,,,Ross,27,male,British,Stolcnad,,University,Insurance salesman,, +26,S1A-010,1,B,,yes,,Moore,Miranda,26-45,female,British,Stolcnad,,Secondary,Writer,,, +286,S1A-077,1,B,,yes,,,Gill,26-45,female,British,Stolcnad,,University,Careers counsellor,,, +639,S1B-052,1,I,,yes,,Stewart,Ian,56,male,British,Stolcnad,"Jesus College, Cambridge (MA, LittD (1978))",University,Politician,,, +267,S1A-074,3,A,,yes,,,Louise,22,female,British,Stolcnad,,University,Travel officer,,, +285,S1A-077,1,A,,yes,,,Mike,26-45,male,British,Stolcnad,,University,Careers counsellor,,, +34,S1A-012,1,C,,yes,,Carpenter,Roger,26-45,male,British,Stolcnad,,University,Teacher +127,S1A-036,1,B,,yes,,,Alice,29,female,British,Stolcnad,O-Levels,Secondary,"Secretary, Consumers' Association",,, +747,S1B-065,1,B,,yes,Defence witness,Lampitt,Robert,46-65,male,British,Stolcnad,,,Businessman +91,S1A-026,1,D,,yes,,Scales,Rob,26-45,male,British,Stolcnad,,University,Teacher,,, +166,S1A-049,1,B,,yes,,,Alice,29,female,British,Stolcnad,O-Levels,Secondary,"Secretary, Consumers' Association" +419,S1B-006,1,B,,yes,,,Jackie,18-25,female,British,Stolcnad,,Secondary,student +919,S2A-044,1,A,,yes,Lecturer,Twining,W.L.,46-65,male,British,Stolcnad,,University,Professor of Laws,,, +137,S1A-040,1,C,,yes,,,Louisa,24,female,British,Stolcnad,"Degree Modern Languages, Cambridge, PGCE",University,"Teacher of Modern Languages, Cambridge",,Greek, +930,S2A-052,1,A,,yes,,Hart,George,26-45,male,British,Stolcnad,,University,Archaeologist,, +686,S1B-056,1,K,,yes,,Walker,Bill,62,male,British,Stolcnad,"Logie School, Dundee; Trades College, Dundee; College for Distributive Trades",University,Politician,"FIPM, FBIM",, +424,S1B-007,1,C,,yes,,,Colin,18-25,male,British,Stolcnad,,Secondary,Student +476,S1B-017,1,A,,yes,Tutor,Orton,Clive,26-45,male,British,Stolcnad,,University,Lecturer in Archaeology +24,S1A-009,1,B,,yes,,Sayce,Peter,26-45,male,British,Stolcnad,,Secondary,Government executive,,, +239,S1A-066,1,A,,yes,,,,46,male,British,Stolcnad,,University,Careers counsellor,,, +1174,S2B-037,1,A,,yes,Presenter,Scarman,Leslie,80,male,British,Stolcnad,Oxford; Middle Temple,University,High Court Judge (retired),,,Lord Scarman +342,S1A-091,1,B,,yes,,,Jenny,26-45,female,British,Stolcnad,,Secondary,Student +1079,S2B-014,1,B,,yes,,Major,John,47,male,British,Stolcnad,,Secondary,Politician +455,S1B-011,1,F,,yes,,,,18-25,female,British,Stolcnad,,Secondary,Student +937,S2A-056,1,A,,yes,,Ball,Ginny,26-45,female,British,Stolcnad,BSc (Hons),University,Lecturer,,"French, some German" +929,S2A-051,1,A,,yes,,King,C.A.,55,male,British,Stolcnad,"BSc (Zoology), MSc, PhD (Biochemistry)",University,Lecturer in Biology,,None, +943,S2A-058,3,A,,yes,,Burt,Avril,46-65,female,British,Stolcnad,BSc (Hons),University,Medical Research Assistant,,None +129,S1A-037,1,B,,yes,,,Isobel,29,female,British,Stolcnad,,University,,,, +600,S1B-042,2,A,,yes,Interviewer,Morley,Sheridan,46-65,male,British,Stolcnad,,University,Broadcaster,,French, +299,S1A-079,1,A,,yes,,,,26-45,female,British,Stolcnad,,University,Student union officer +322,S1A-087,2,B,,yes,,,,18-25,male,British,Stolcnad,"Undergraduate student, UCL",Secondary,Student +960,S2B-001,1,B,,yes,,Gowing,Nick,40,male,British,Stolcnad,Bristol University,University,"Broadcaster, journalist",,, +175,S1A-051,3,B,,yes,,,,26-45,female,British,Stolcnad,,Secondary,Student +164,S1A-048,1,C,,yes,,,,26-45,female,British,Stolcnad,"Undergraduate student, UCL",Secondary,Student +593,S1B-040,1,B,,yes,,Haines,Joe,63,male,British,Stolcnad,,Secondary,Journalist,,,Former Press Officer to the Prime Minister diff --git a/ice/sspeaker-merge.csv b/ice/sspeaker-merge.csv new file mode 100644 index 0000000..5595539 --- /dev/null +++ b/ice/sspeaker-merge.csv @@ -0,0 +1,1194 @@ +speakers,Textcode,Subtextno,Speaker,Original Spkr,Aware,Role,Surname,Forenames,Age,Gender,Nationality,Birthplace,Education,Educlevel,Occupation,Affiliations,Other languages,Comments +1,S1A-001,1,A,,yes,,,Sam,26-45,male,British,,,University,Teacher,,, +2,S1A-001,1,B,,yes,,,Adam,18-25,male,British,,,Secondary,Student,,, +3,S1A-002,1,A,,yes,,,Sam,26-45,male,British,,,University,Teacher,,, +4,S1A-002,1,B,,yes,,,Kate,18-25,female,British,,,Secondary,Student,,, +5,S1A-002,1,C,,yes,,,Helen,18-25,female,British,,,Secondary,Student,,, +6,S1A-002,2,A,,yes,,,Sam,26-45,male,British,,,University,Teacher,,, +7,S1A-002,2,B,,yes,,,Vicky,18-25,female,British,,,Secondary,Student,,, +8,S1A-003,1,A,,yes,,,Richard,26-45,male,British,,,University,Teacher,,, +9,S1A-003,1,B,,yes,,,Celeste,18-25,female,British,,,Secondary,Student,,, +10,S1A-004,1,A,,yes,,,Richard,26-45,male,British,,,University,Teacher,,, +11,S1A-004,1,B,,yes,,,Adam,18-25,male,British,,,Secondary,Student,,, +12,S1A-005,1,A,,yes,,Broadbent,Judith,18-25,female,British,Yorkshire,"BA Linguistics, UCL",University,Student,,, +13,S1A-005,1,B,,yes,,Tollfree,Laura,18-25,female,British,London,"BA Linguistics, UCL",University,Student,,, +14,S1A-006,1,A,,yes,,,Sandra,18-25,female,British,London,,University,,,, +15,S1A-006,1,B,,yes,,,Andrew,18-25,male,British,,,University,,,, +16,S1A-007,1,A,,yes,,Tollfree,Laura,46-65,male,British,London,,,,,, +17,S1A-007,1,B,,yes,,Tollfree,Laura,46-65,female,British,London,,,,,, +18,S1A-007,1,C,,yes,,Tollfree,Laura,18-25,female,British,London,"BA Linguistics, UCL",University,Student,,, +19,S1A-007,1,D,,yes,,,,46-65,male,British,London,,,,,, +20,S1A-007,1,E,,yes,,,,,male,,,,,,,, +21,S1A-008,1,A,,yes,,,Andrew,18-25,male,British,,,University,,,, +22,S1A-008,1,B,,yes,,Tollfree,Laura,18-25,male,British,London,"BA Linguistics, UCL",University,Student,,, +23,S1A-009,1,A,,yes,,Sayce,Oonagh,46-65,female,British,London,MA English,University,Part-time University teacher,,"French, Italian","Researcher, Survey of English Usage" +24,S1A-009,1,B,,yes,,Sayce,Peter,26-45,male,British,London,,Secondary,Government executive,,, +25,S1A-010,1,A,,yes,,Moore,Nina,66+,female,British,London,,Secondary,Welfare officer (retired),,, +26,S1A-010,1,B,,yes,,Moore,Miranda,26-45,female,British,London,,Secondary,Writer,,, +27,S1A-011,1,A,,yes,,,,26-45,female,British,SE England,,University,Teacher,,, +28,S1A-011,1,B,,yes,,Boase,Sue,26-45,female,British,SE England,,University,"Lecturer, researcher",,,"Researcher, Survey of English Usage" +29,S1A-011,1,C,,yes,,,,26-45,male,British,SE England,Training as solicitor,University,Trainee solicitor,,, +30,S1A-011,2,A,,yes,,Woodford,Kate,26,female,British,Middle England,,University,Lexicographer,,"French, Spanish", +31,S1A-011,2,B,,yes,,,,26-45,female,British,,,University,Lexicographer,,, +32,S1A-012,1,A,,yes,,Scales,Rob,26-45,male,British,London,,University,Teacher +33,S1A-012,1,B,,yes,,Boase,Sue,26-45,female,British,SE England,,University,"Lecturer, researcher" +34,S1A-012,1,C,,yes,,Carpenter,Roger,26-45,male,British,London,,University,Teacher +35,S1A-012,1,D,,yes,,King-Smith,Gavin,26-45,male,British,London,,University,Management consultant +36,S1A-012,1,E,,yes,,Colborn,Tim,26-45,male,British,SE England,,University,Accountant +37,S1A-013,1,A,,yes,,,,26-45,male,British,,,University,Researcher +38,S1A-013,1,B,,yes,,,,46-65,female,British,Middle England,,Secondary,Housewife +39,S1A-013,1,C,,yes,,,,46-65,male,British,Middle England,,Secondary,Housewife +40,S1A-013,1,D,,yes,,,,,female,British,,,, +41,S1A-013,1,E,,yes,,,,,male,British,,,, +41,S1A-013,1,F,,yes,,,,,male,British,,,, +42,S1A-014,1,A,,yes,,Tollfree,Laura,18-25,female,British,London,"BA Linguistics, UCL",University,Student +43,S1A-014,1,B,,yes,,,Amanda,26-45,female,British,,,University,University Secretary +44,S1A-014,1,C,,yes,,,Neil,18-25,male,British,,"BSc Computer Science, UCL",University,Student +45,S1A-015,1,A,,yes,,Rosta,Andrew,18-25,male,British,NW England,"BA English, UCL",University,Student +46,S1A-015,1,B,,yes,,,,18-25,female,British,,,University,Student +47,S1A-016,1,A,,yes,,,,26-45,male,British,,,University,Researcher,,, +48,S1A-016,1,B,,yes,,,,,male,,,,,,,, +49,S1A-016,1,C,,yes,,,,,male,,,,,,,, +50,S1A-016,1,D,,yes,,,,,female,,,,,,,, +51,S1A-016,1,E,,yes,,,,,female,,,,,,,, +53,S1A-017,1,A,,yes,,Durant,Ian,27,male,British,SE England,,University,Accountant,,, +54,S1A-017,1,B,,yes,,,Zara,26,female,British,London,A-levels,University,Accountant,,,Indian ethnic origin +55,S1A-017,1,C,,yes,,Tollfree,Laura,18-25,female,British,London,"BA Linguistics, UCL",University,Student,,, +57,S1A-018,1,A,,yes,,Tollfree,Eleanor,20,female,British,London,,Secondary,Student,,, +58,S1A-018,1,B,,yes,,Cage,Liz,20,female,British,London,,,,,, +59,S1A-018,1,C,,yes,,Debenham,Simon,28,male,British,London,,University,Accountant,,, +60,S1A-019,1,A,,yes,,,,18-25,female,British,,,University,Student,,, +61,S1A-019,1,B,,yes,,,Richard,18-25,male,British,,,University,Student,,, +62,S1A-019,1,C,,yes,,,,26-45,female,British,,,University,Student,,, +63,S1A-019,1,D,,yes,,,,18-25,female,British,,,Secondary,Student,,, +64,S1A-019,1,E,,yes,,,,18-25,female,British,,,Secondary,Student,,, +65,S1A-019,1,F,,yes,,,,18-25,female,British,London,UCL BA in Linguistics,University,Student,,, +66,S1A-020,1,A,,yes,,,,,male,,,,,,,, +67,S1A-020,1,B,,yes,,,,,male,,,,,,,, +68,S1A-020,1,C,,yes,,,,,male,,,,,,,, +69,S1A-020,1,D,,yes,,Boase,Sue,26-45,female,British,SE England,,University,"Lecturer, researcher",,, +70,S1A-021,1,A,,yes,,,,26-45,male,British,London,,University,Musician,,, +71,S1A-021,1,B,,yes,,,,26-45,female,British,SE England,,University,Teacher,,, +72,S1A-021,1,C,,yes,,,,26-45,male,British,SE England,,University,Teacher,,, +73,S1A-021,1,D,,yes,,,,26-45,female,British,SE England,,University,Teacher,,, +74,S1A-021,2,A,,yes,,,,26-45,female,British,SE England,,University,Teacher,,, +75,S1A-021,2,B,,yes,,,,26-45,male,British,London,,University,Musician,,, +76,S1A-021,2,C,,yes,,,,26-45,female,British,SE England,,University,Teacher,,, +77,S1A-021,2,D,,yes,,,,26-45,male,British,SE England,,University,Teacher,,, +78,S1A-022,1,A,,yes,,Clift,Naomi,21,female,British,China,,Secondary,Student,,,Adopted in infancy; born Mauritian Chinese +79,S1A-022,1,B,,yes,,Clift,Jean,61,female,British,West England,,University,Teacher of English as a Second Language,,, +80,S1A-022,1,C,,yes,,Clift,Marc,65,male,British,Australia,,,Ex-British Council officer,,,Spent most of life in UK +81,S1A-022,1,D,,yes,,Clift,Rebecca,25,female,British,China,Cambridge,University,Postgraduate student,,,Adopted in infancy; born Mauritian Chinese +82,S1A-023,1,A,,yes,,,,46-65,male,British,London,,Secondary,Journalist,,, +83,S1A-023,1,B,,yes,,,,46-65,female,British,SE England,,Secondary,Writer,,, +84,S1A-024,1,A,,yes,,Sidney,Greenbaum,46-65,male,British,London,"MA, PhD",University,Professor of English,,Hebrew,"Director, Survey of English Usage" +85,S1A-024,1,B,,yes,,Howe,James,46-65,male,British,,,University,PhD Student; former civil servant,,, +86,S1A-025,1,A,,yes,,,,26-45,male,British,London,,Secondary,,,,Brother of $B +87,S1A-025,1,B,,yes,,,,26-45,female,British,London,,Secondary,Secretary,,,Sister of $A +88,S1A-026,1,A,,yes,,Carpenter,Roger,26-45,male,British,London,,University,Teacher,,, +89,S1A-026,1,B,,yes,,Colborn,Tim,26-45,male,British,SE England,,University,Accountant,,, +90,S1A-026,1,C,,yes,,King-Smith,Gavin,26-45,male,British,SE England,,University,Management Consultant,,, +91,S1A-026,1,D,,yes,,Scales,Rob,26-45,male,British,London,,University,Teacher,,, +92,S1A-027,1,A,,yes,,Boase,Sue,26-45,female,British,SE England,,University,"Lecturer, researcher",,, +93,S1A-027,1,B,,yes,,Peppe,A.H.,26-45,male,British,SE England,,University,Greengrocer,,, +94,S1A-027,1,C,,yes,,King-Smith,Gavin,26-45,male,British,SE England,,University,Management Consultant,,, +95,S1A-027,1,D,,yes,,Lanner,J.E.,26-45,female,British,SE England,,University,Nurse,,, +96,S1A-028,1,A,,yes,,,Fred,92,male,British,West England,,Secondary,Ex-shopkeeper,,, +97,S1A-028,1,B,,yes,,Clift,Marc,65,male,British,Australia,,,Ex-British Council officer,,,Spent most of life in UK +98,S1A-028,1,C,,yes,,Clift,Rebecca,25,female,British,China,Cambridge,University,Postgraduate student,,,Adopted in infancy; born Mauritian Chinese +99,S1A-028,1,D,,yes,,Clift,Naomi,21,female,British,China,,Secondary,Student,,,Adopted in infancy; born Mauritian Chinese +100,S1A-028,1,E,,yes,,,,80,female,British,West England,,Secondary,,,, +102,S1A-029,1,A,,yes,,Procter,Paul,46-65,male,British,,BA,University,Lexicographer,,, +103,S1A-029,1,B,,yes,,,Andrew,24,male,British,London,BA,University,Computer programmer,,, +104,S1A-029,1,C,,yes,,,Andy,21,male,British,London,BA,University,Computer programmer,,, +105,S1A-029,1,D,,yes,,Porter,Nick,22,male,British,Worcs,MSc,University,Computer programmer,,, +106,S1A-030,1,A,,yes,,,,,male,,,,,,,, +107,S1A-030,1,B,,yes,,,,,male,,,,,,,, +108,S1A-030,1,C,,yes,,,,,male,,,,,,,, +109,S1A-030,1,D,,yes,,,,,male,,,,,,,, +110,S1A-031,1,A,,yes,,Beaumann,Nicola,46-65,female,British,London,,University,Writer,,, +111,S1A-031,1,B,,yes,,Boase,Sue,26-45,female,British,SE England,,University,"Lecturer, researcher",,, +112,S1A-032,1,A,,yes,,Clift,Rebecca,18-25,female,British,,,University,"Student, researcher",,, +113,S1A-032,1,B,,yes,,Clift,Jean,61,female,British,West England,,University,Teacher of English as a Second Language,,, +114,S1A-032,1,C,,yes,,Clift,Marc,65,male,British,Australia,,,Ex-British Council officer,,,Spent most of life in UK +115,S1A-032,1,D,,yes,,Clift,Naomi,21,female,British,China,,Secondary,Student,,,Adopted in infancy; born Mauritian Chinese +116,S1A-032,2,A,,yes,,Clift,Rebecca,25,female,British,China,,University,Postgraduate student,,,Adopted in infancy; born Mauritian Chinese +117,S1A-032,2,B,,yes,,Clift,Naomi,21,female,British,China,,Secondary,Student,,,Adopted in infancy; born Mauritian Chinese +118,S1A-032,2,C,,yes,,Clift,Jean,61,female,British,West England,,University,Teacher of English as a Second Language,,, +119,S1A-032,2,D,,yes,,Clift,Marc,65,male,British,Australia,,,Ex-British Council officer,,,Spent most of life in UK +120,S1A-033,1,A,,yes,,Tiley,Mike,26-45,male,British,,MA,University,Careers counsellor,,, +121,S1A-033,1,B,,yes,,,,18-25,male,British,,,Secondary,Student (of philosophy),,, +122,S1A-034,1,A,,yes,,,,26-45,female,British,London,,University,Career counsellor,,, +123,S1A-034,1,B,,yes,,,,18-25,male,British,NW England,,Secondary,Student,,, +124,S1A-035,1,A,,yes,,,,26-45,female,British,London,,University,Career counsellor,,, +125,S1A-035,1,B,,yes,,,,18-25,female,British,East Anglia,,Secondary,Student,,, +126,S1A-036,1,A,,yes,,,Caroline,29,female,British,London,O-Levels,Secondary,"Secretary, Thames Water Co.",,, +127,S1A-036,1,B,,yes,,,Alice,29,female,British,London,O-Levels,Secondary,"Secretary, Consumers' Association",,, +128,S1A-037,1,A,,yes,,,Jenny,18-25,female,British,London,,University,Student,,, +129,S1A-037,1,B,,yes,,,Isobel,29,female,British,London,,University,,,, +130,S1A-038,1,A,,yes,,,Danielle,21,female,British,Scotland,"BSc Engineering, Edinburgh University",University,"PhD student, Engineering, Cambridge",,, +131,S1A-038,1,B,,yes,,,,18-25,female,British,,,University,Postgraduate student,,, +132,S1A-038,1,C,,yes,,,Moses,24,male,British,Portugal,"BA Social Science, Canterbury",University,"MPhil student, International Relations, Cambridge",,,Moved to UK age 5 +133,S1A-039,1,A,,yes,,Tollfree,Laura,18-25,female,British,London,BA Linguistics,University,"PhD student (Linguistics), Cambridge",,, +134,S1A-039,1,B,,yes,,,Danielle,21,female,British,Scotland,"BSc Engineering, Edinburgh University",University,"PhD student, Cambridge",,, +135,S1A-040,1,A,,yes,,,Vicky,25,female,British,SE England,"Degree in History, London",University,"PGCE student, Cambridge",,, +136,S1A-040,1,B,,yes,,,Caroline,23,female,British,Yorkshire,"Degree Modern Languages, Cambridge",University,"PGCE student, Cambridge; ex-EFL teacher",,, +137,S1A-040,1,C,,yes,,,Louisa,24,female,British,London,"Degree Modern Languages, Cambridge, PGCE",University,"Teacher of Modern Languages, Cambridge",,Greek, +138,S1A-040,1,D,,yes,,,Vanessa,22,female,British,SE England,"Degree English, Durham University",University,"PGCE student, Cambridge",,, +139,S1A-040,1,E,,yes,,,Brandon,25,male,British,SE England,"Degree, Cambridge",University,Social worker,,, +140,S1A-041,1,A,,yes,,,Moses,24,male,British,Portugal,"BA Social Science, Canterbury",University,"MPhil student, International Relations, Cambridge",,,Moved to London age 5 +141,S1A-041,1,B,,yes,,,Jim,23,male,British,London,"Degree in Geography, Lampeter (Wales)",University,"MPhil student in Glaciology, Cambridge",,, +142,S1A-042,1,A,,yes,,,Vicky,25,female,British,SE England,"Degree in History, London",University,"PGCE student, Cambridge",,, +143,S1A-042,1,B,,yes,,,Caroline,23,female,British,Yorkshire,"Degree in Modern Languages, Cambridge",University,"PGCE student, Cambridge; ex-EFL teacher",,, +144,S1A-042,1,C,,yes,,,Vanessa,22,female,British,SE England,"Degree in English, Durham University",University,"PGCE student, Cambridge",,, +145,S1A-043,1,A,,yes,,White,Ashley,31,male,British,London,,University,"Tennis coach, PhD student",,, +146,S1A-043,1,B,,yes,,,,28,male,British,NW England,,Secondary,Musician +147,S1A-044,1,A,,yes,,,,55,female,British,NW England,Music degree,University,Singing teacher +148,S1A-044,1,B,,yes,,White,Ashley,31,male,British,London,,University,"Tennis coach, PhD student" +149,S1A-045,1,A,,yes,,White,Ashley,31,male,British,London,,University,"Tennis coach, PhD student" +150,S1A-045,1,B,,yes,,,,55,female,British,NW England,Music degree,University,Singing teacher +151,S1A-045,2,A,,yes,,,,28,male,British,NW England,Manchester University,University, +152,S1A-045,2,B,,yes,,White,Ashley,31,male,British,London,,University,"Tennis coach, PhD student" +153,S1A-045,3,A,,yes,,White,Ashley,31,male,British,London,,University,"Tennis coach, PhD student" +154,S1A-045,3,B,,yes,,,,28,male,British,NW England,Manchester University,University, +155,S1A-046,1,A,,yes,,Clift,Rebecca,18-25,female,British,,,, +156,S1A-046,1,B,,yes,,Clift,Marc,65,male,British,,,, +157,S1A-046,1,C,,yes,,Clift,Naomi,18-25,female,British,,,, +158,S1A-046,1,D,,yes,,Clift,Jean,61,female,British,,,, +159,S1A-047,1,A,,yes,,,,26-45,male,British,London,,University,Computer Operator/Programmer +160,S1A-047,1,B,,yes,,,,26-45,female,British,London,"Undergraduate student, UCL",Secondary,Student +161,S1A-047,1,C,,yes,,,,66+,female,British,London,,Secondary,Ex-secretary (retired) +162,S1A-048,1,A,,yes,,,,26-45,female,British,London,,University,Antique Dealer +163,S1A-048,1,B,,yes,,,,26-45,female,British,London,,Secondary,Nursery Nurse +164,S1A-048,1,C,,yes,,,,26-45,female,British,London,"Undergraduate student, UCL",Secondary,Student +165,S1A-049,1,A,,yes,,,Karen,30,female,British,London,O-Levels,Secondary,"Administrator, interior design company" +166,S1A-049,1,B,,yes,,,Alice,29,female,British,London,O-Levels,Secondary,"Secretary, Consumers' Association" +167,S1A-049,1,C,,yes,,,Caroline,29,female,British,London,O-Levels,Secondary,"Secretary, Thames Water Co." +168,S1A-050,1,A,,yes,,Neustein,,46-65,male,British,London,PhD,University,Student Counsellor +169,S1A-050,1,B,,yes,,,Stella,18-25,female,British,Northumbria,,Secondary,Student +170,S1A-051,1,A,,yes,,Andersen,P.A.,46-65,male,British,,,University,Doctor +171,S1A-051,1,B,,yes,,,,66+,female,British,SE England,,Secondary,Housewife +172,S1A-051,2,A,,yes,,Andersen,P.A.,46-65,male,British,,,University,Doctor +173,S1A-051,2,B,,yes,,,,18-25,male,British,East Anglia,,Secondary,Student +174,S1A-051,3,A,,yes,,Andersen,P.A.,46-65,male,British,,,University,Doctor +175,S1A-051,3,B,,yes,,,,26-45,female,British,London,,Secondary,Student +176,S1A-051,4,A,,yes,,Andersen,P.A.,46-65,male,British,,,University,Doctor +177,S1A-051,4,B,,yes,,,,18-25,male,British,London,,Secondary,Student +178,S1A-052,1,A,,yes,,,,26-45,male,British,,,University,,, +179,S1A-052,1,B,,yes,,,,46-65,male,British,London,,Secondary,Photojournalist,, +180,S1A-052,1,C,,yes,,Thaine,Alasdair,30,male,British,,,University,Photographer,, +181,S1A-052,2,A,,yes,,,,46-65,male,British,London,,Secondary,Photojournalist,, +182,S1A-052,2,B,,yes,,Thaine,Alasdair,30,male,British,,,University,Photographer,, +183,S1A-052,2,C,,yes,,,,26-45,male,British,,,University,,, +184,S1A-053,1,A,,yes,,,,26-45,male,British,Heart of England,,University,Student,, +185,S1A-053,1,B,,yes,,,,26-45,female,British,West England,,University,Student,, +186,S1A-053,1,C,,yes,,,,46-65,male,British,London,,Secondary,Computer management,, +187,S1A-054,1,A,,yes,,Beaumann,Nicola,46-65,female,British,London,,University,Writer,, +188,S1A-054,1,B,,yes,,Boase,Sue,26-45,female,British,London,,University,"Researcher, lecturer",, +189,S1A-055,1,A,,yes,,,Darryl,26-45,male,British,,,,,, +190,S1A-055,1,B,,yes,,,Helen,26-45,female,British,,,,,, +191,S1A-055,1,C,,yes,,Woodford,Kate,26,female,British,Middle England,,University,Lexicographer,,"French, Spanish" +192,S1A-055,1,D,,yes,,,,18-25,female,British,London,,University,Secretary,, +193,S1A-055,1,E,,yes,,,,26-45,male,British,London,,University,Lexicographer,, +194,S1A-056,1,A,,yes,,,,26-45,male,British,SE England,,University,Teacher of EFL,,, +195,S1A-056,1,B,,yes,,Boase,Sue,26-45,female,British,SE England,,University,"Lecturer, researcher",,, +196,S1A-056,1,C,,yes,,King-Smith,Gavin,26-45,male,British,SE England,,University,Management consultant,,, +197,S1A-056,2,A,,yes,,Boase,Sue,26-45,female,British,SE England,,University,"Lecturer, researcher",,, +198,S1A-056,2,B,,yes,,,,26-45,male,British,SE England,,University,Teacher of EFL,,, +199,S1A-056,2,C,,yes,,King-Smith,Gavin,26-45,male,British,SE England,,University,Management consultant,,, +200,S1A-056,3,A,,yes,,Boase,Sue,26-45,female,British,SE England,,University,"Lecturer, researcher",,, +201,S1A-056,3,B,,yes,,King-Smith,Gavin,26-45,male,British,SE England,,University,Management consultant,,, +202,S1A-056,3,C,,yes,,,,26-45,male,British,SE England,,University,Teacher of EFL,,, +203,S1A-056,4,A,,yes,,,,26-45,male,British,SE England,,University,Teacher of EFL,,, +204,S1A-056,4,B,,yes,,Boase,Sue,26-45,female,British,SE England,,University,"Lecturer, researcher",,, +205,S1A-056,4,C,,yes,,King-Smith,Gavin,26-45,male,British,SE England,,University,Management consultant,,, +206,S1A-057,1,A,,yes,,,,26-45,female,British,SE England,,University,"Lecturer, researcher",,, +207,S1A-057,1,B,,yes,,,,66+,male,British,SE England,,University,Retired engineer,,,Father of speaker C +208,S1A-057,1,C,,yes,,King-Smith,Gavin,26-45,male,British,SE England,,University,Management consultant,,, +209,S1A-058,1,A,,yes,,Thaine,Alasdair,26-45,male,British,,,,,,, +210,S1A-058,1,B,,yes,,,Christopher,26-45,male,British,,,, +211,S1A-058,1,C,,yes,,,Cheryl,32,female,British,USA,UK secondary education and degree,University,"Actress, writer" +212,S1A-058,2,A,,yes,,,Christopher,26-45,male,British,,,, +213,S1A-058,2,B,,yes,,Thaine,Alasdair,26-45,male,British,,,, +214,S1A-058,2,C,,yes,,,Cheryl,32,female,British,USA,UK secondary education and degree,University,"Actress, writer" +215,S1A-058,3,A,,yes,,,,26-45,male,British,London,,University,Engineer +216,S1A-058,3,B,,yes,,,Cheryl,32,female,British,USA,UK secondary education and degree,University,"Actress, writer" +217,S1A-059,1,A,,yes,,Greenberg,,46-65,male,British,,,University,Student counsellor +218,S1A-059,1,B,,yes,,,,18-25,male,British,London,,Secondary,Student +219,S1A-060,1,A,,yes,,,,,male,,,,, +220,S1A-060,1,B,,yes,,,,,female,,,,, +221,S1A-061,1,A,,yes,,Sayce,Peter,26-45,male,British,London,,Secondary,Government executive +222,S1A-061,1,B,,yes,,Busby,Derek Charles,46-65,male,British,London,,University,Government official +223,S1A-062,1,A,,yes,,Greenberg,,46-65,male,British,,,University,Student counsellor +224,S1A-062,1,B,,yes,,,,18-25,female,British,SE England,,Secondary,Student +225,S1A-063,1,A,,yes,,,,26-45,male,British,SE England,,University,Doctor +226,S1A-063,1,B,,yes,,Boase,Sue,26-45,female,British,SE England,,University,"Researcher, lecturer",,, +227,S1A-063,1,C,,yes,,King-Smith,Gavin,26-45,male,British,SE England,,University,Management consultant,,, +228,S1A-063,1,D,,yes,,,,26-45,female,British,SE England,,Secondary,Nurse,,, +229,S1A-064,1,A,,yes,,,Pat,18-25,female,British,,,Secondary,Student of drama,,, +230,S1A-064,1,B,,yes,,,Danny,18-25,male,British,,,Secondary,Student of drama,,, +231,S1A-064,1,C,,yes,,,Patricia,18-25,female,British,,,Secondary,Student of drama,,, +232,S1A-065,1,A,,yes,,,,26-45,female,British,London,,University,Student,,, +233,S1A-065,1,B,,yes,,,,26-45,female,British,East Anglia,,Secondary,Housewife,,,Spent part of life in Scotland +234,S1A-065,1,C,,yes,,,,46-65,male,British,London,,University,Student,,, +235,S1A-065,1,D,,yes,,,,18-25,male,British,Northumbria,,University,Student,,, +236,S1A-065,1,E,,yes,,,,46-65,male,British,Scotland,,University,Farmer,,, +237,S1A-065,1,F,,yes,,,,18-25,male,British,London,,University,Student,,, +238,S1A-065,1,G,,yes,,,,18-25,male,British,Scotland,,University,Student,,, +239,S1A-066,1,A,,yes,,,,46,male,British,London,,University,Careers counsellor,,, +240,S1A-066,1,B,,yes,,,,29,female,British,SE England,PhD,University,Student,,, +241,S1A-067,1,A,,yes,,Ruskin,Sheila,26-45,female,British,India,,University,"Actress, trainee holistic massage practitioner",,,Lived most of life in Sevenoaks and London W1 +242,S1A-067,1,B,,yes,,,,26-45,female,British,SE England,,University,"Writer, housewife" +243,S1A-068,1,A,,yes,,Jones,Aled D.,18-25,male,British,Wales,,Secondary,"Student, student union officer" +244,S1A-068,1,B,,yes,,,,24,female,British,Middle England,,Secondary,Student +245,S1A-068,1,C,,yes,,Taylor,Neil,24,male,British,,,Secondary,Student +246,S1A-069,1,A,,yes,,Jones,Aled D.,18-25,male,British,Wales,,Secondary,"Student, student union officer" +247,S1A-069,1,B,,yes,,,,24,female,British,Middle England,,Secondary,Student +248,S1A-069,2,A,,yes,,Jones,Aled D.,18-25,male,British,Wales,,Secondary,"Student, student union officer" +249,S1A-069,2,B,,yes,,,,18-25,female,British,Middle England,Chemistry student,Secondary,Student +250,S1A-070,1,A,,yes,,Jones,Aled D.,18-25,male,British,Wales,,Secondary,"Student, student union officer" +251,S1A-070,1,B,,yes,,Taylor,Neil,24,male,British,,,Secondary,Student +252,S1A-071,1,A,,yes,,,Ruth,18-25,female,,,,, +253,S1A-071,1,B,,yes,,Buckley,Justin,21,male,British,SE England,"BA English, UCL",University,Student +254,S1A-071,1,C,,yes,,,Mark,18-25,male,British,,,, +255,S1A-071,1,D,,yes,,,Laura,18-25,female,British,,,, +256,S1A-072,1,A,,yes,,,,26-45,female,British,,,University, +257,S1A-072,1,B,,yes,,,Tom,26-45,male,British,,,, +258,S1A-073,1,A,,yes,,,,46-65,male,British,London,,University,Industrial chemist,,,"Also lived: Oxford, Epping area, Montpellier" +259,S1A-073,1,B,,yes,,,,46-65,male,British,Heart of England,,University,Opthalmic surgeon,,,"Also lived: Isle of Wight, Plymouth, London, Kent" +260,S1A-073,1,C,,yes,,,,26-45,female,British,London,,University,"Writer, housewife",,, +261,S1A-073,1,D,,yes,,,,26-45,female,British,SE England,,University,"Research chemist, housewife",,,"Also lived: St Albans, Epping" +262,S1A-074,1,A,,yes,,,,21,female,British,London,,Secondary,Student,,, +263,S1A-074,1,B,,yes,,,Tom,21,male,British,London,,Secondary,Travel officer,,, +264,S1A-074,1,C,,yes,,,Paul,23,male,British,London,,University,Travel officer,,, +265,S1A-074,2,A,,yes,,,Paul,23,male,British,London,,University,Travel officer,,, +266,S1A-074,2,B,,yes,,,,22,male,British,London,,Secondary,Student,,, +267,S1A-074,3,A,,yes,,,Louise,22,female,British,London,,University,Travel officer,,, +268,S1A-074,3,B,,yes,,,,21,male,British,London,,Secondary,Student,,, +269,S1A-074,3,C,,yes,,,,27,female,British,London,,University,Travel officer,,, +270,S1A-074,4,A,,yes,,,Tom,21,male,British,London,,Secondary,Travel officer,,, +271,S1A-074,4,B,,yes,,,,26-45,male,British,SE England,,Secondary,Student,,, +272,S1A-074,4,C,,yes,,,Louise,22,female,British,London,,University,Travel officer,,, +273,S1A-074,5,A,,yes,,,Angela,26-45,female,British,,,University,Student union officer,,, +274,S1A-074,5,B,,yes,,,Dana,18-25,female,British,,,University,Student union officer,,, +275,S1A-074,5,C,,yes,,,,27,male,British,London,,University,Student union officer,,, +276,S1A-074,6,A,,yes,,,Dana,18-25,female,British,,,University,Student union officer,,, +277,S1A-074,6,B,,yes,,,Nick,28,male,British,West England,,Secondary,Student,,, +278,S1A-074,7,A,,yes,,,,18-25,male,British,Northumbria,,Secondary,Student,,, +279,S1A-074,7,B,,yes,,,Dana,18-25,female,British,,,University,Student union officer,,, +280,S1A-074,7,C,,yes,,,,18-25,male,British,,,University,Student union officer,,, +281,S1A-075,1,A,,yes,,,,26-45,female,British,,,University,,,, +282,S1A-075,1,B,,yes,,,James,26-45,male,British,London,,University,Businessman,,,Speaker is partially deaf +283,S1A-076,1,A,,yes,,,,26-45,female,British,,,University,,,, +284,S1A-076,1,B,,yes,,,,26-45,male,British,,,University,,,, +285,S1A-077,1,A,,yes,,,Mike,26-45,male,British,London,,University,Careers counsellor,,, +286,S1A-077,1,B,,yes,,,Gill,26-45,female,British,London,,University,Careers counsellor,,, +287,S1A-077,1,C,,yes,,,Elizabeth,18-25,female,British,SE England,,Secondary,Student,,, +288,S1A-077,1,D,,yes,,,James,18-25,male,British,London,,Secondary,Student,,, +289,S1A-078,1,A,,yes,,,,26-45,female,British,London,,University,Student union officer,,, +290,S1A-078,1,B,,yes,,,,18-25,male,British,London,,Secondary,Student +291,S1A-078,2,A,,yes,,,,26-45,male,British,London,,University,Student union officer +292,S1A-078,2,B,,yes,,,,26-45,female,British,London,,University,Student union officer +293,S1A-078,2,C,,yes,,,,18-25,female,British,SE England,,Secondary,Student +294,S1A-078,3,A,,yes,,,,26-45,female,British,London,,University,Student union officer +295,S1A-078,3,B,,yes,,,,18-25,male,British,SE England,,Secondary,Student +296,S1A-078,4,A,,yes,,,,26-45,male,British,London,,University,Student union officer +297,S1A-078,4,B,,yes,,,,26-45,female,British,London,,University,Student union officer +298,S1A-078,4,C,,yes,,,,18-25,female,British,London,,Secondary,Student +299,S1A-079,1,A,,yes,,,,26-45,female,British,London,,University,Student union officer +300,S1A-079,1,B,,yes,,,Tony,26-45,male,British,London,,University,Student union officer +301,S1A-079,1,C,,yes,,,,26-45,female,British,SE England,"Degree, UCL",University,Student +302,S1A-080,1,A,,yes,,,Jenny,18-25,female,British,London,,University, +303,S1A-080,1,B,,yes,,,Isobel,26-45,female,British,London,,University, +304,S1A-081,1,A,,yes,,White,Ashley,31,male,British,London,,University,"Tennis coach, PhD student" +305,S1A-081,1,B,,yes,,,Caroline,29,female,British,London,O-Levels,Secondary,"Secretary, Thames Water Co." +306,S1A-082,1,A,,yes,,,,26-45,female,British,London,,University,Lecturer,,, +307,S1A-082,1,B,,yes,,,,18-25,male,British,SE England,,Secondary,Student,,, +308,S1A-082,1,C,,yes,,,,18-25,female,British,,,Secondary,Student,,, +309,S1A-083,1,A,,yes,,,Paquita,44,female,British,London,O-Levels,Secondary,"Tennis coach, guitarist",,, +310,S1A-083,1,B,,yes,,,Sandra,46-65,female,British,Spain,O-Levels,Secondary,Flamenco dancing teacher,,,Father: Spanish; Mother: Gipsy. In UK since child +311,S1A-084,1,A,,yes,,Buckley,Justin,21,male,British,SE England,"English degree, UCL",University,"Researcher, Survey of English Usage",,, +312,S1A-084,1,B,,yes,,Scott,Kate,18-25,female,British,London,"Undergraduate in English, UCL",Secondary,Student,,, +313,S1A-084,1,C,,yes,,,,18-25,female,British,Northumbria,"Undergraduate in English, UCL",Secondary,Student,,, +314,S1A-085,1,A,,yes,,,,18-25,male,British,London,,Secondary,Student,,, +315,S1A-085,1,B,,yes,,Scott,Kate,18-25,female,British,London,"Undergraduate in English, UCL",Secondary,Student,,, +316,S1A-086,1,A,,yes,,,,,female,,,,,,,, +317,S1A-086,1,B,,yes,,Boase,Sue,26-45,female,British,SE England,,University,"Lecturer, researcher",,, +318,S1A-086,1,C,,yes,,,,,female,,,,,,,, +319,S1A-087,1,A,,yes,,Dytham,,46-65,male,British,SE England,,University,Dentist,,, +320,S1A-087,1,B,,yes,,,,26-45,male,British,SE England,,University,Physicist,,, +321,S1A-087,2,A,,yes,,Dytham,,46-65,male,British,SE England,,University,Dentist,,, +322,S1A-087,2,B,,yes,,,,18-25,male,British,London,"Undergraduate student, UCL",Secondary,Student +323,S1A-088,1,A,,yes,,Dytham,,46-65,male,British,SE England,,University,Dentist +324,S1A-088,1,B,,yes,,,,26-45,male,British,SE England,,University,Physicist +325,S1A-088,1,C,,yes,,,,26-45,female,British,,,University,Dental Assistant +326,S1A-089,1,A,,yes,,Dytham,,46-65,male,British,SE England,,University,Dentist +327,S1A-089,1,B,,yes,,,,26-45,male,British,SE England,,University,Physicist +328,S1A-089,2,A,,yes,,Andersen,P.A.,46-65,male,British,,,University,Doctor +329,S1A-089,2,B,,yes,,,,18-25,female,British,London,"Undergraduate student, UCL",Secondary,Student +330,S1A-089,3,A,,yes,,Andersen,P.A.,46-65,male,British,,,University,Doctor +331,S1A-089,3,B,,yes,,,,26-45,female,British,,,University,"Student, midwife" +332,S1A-089,4,A,,yes,,Andersen,P.A.,46-65,male,British,,,University,Doctor +333,S1A-089,4,B,,yes,,,,18-25,female,British,Northumbria,"Undergraduate student, UCL",Secondary,Student +334,S1A-090,1,A,,yes,,,Billy,18-25,male,British,,"Undergraduate student, UCL",Secondary,Student +335,S1A-090,1,B,,yes,,,Maureen,46-65,female,British,Scotland,"Undergraduate student, UCL",Secondary,Student +336,S1A-090,1,C,,yes,,,Caroline,46-65,female,British,London,"Undergraduate student, UCL",Secondary,Student +337,S1A-090,1,D,,yes,,,Joan,66+,female,British,London,"Undergraduate student, UCL",Secondary,"Student, retired nurse" +338,S1A-090,2,A,,yes,,,,18-25,female,British,London,"Undergraduate student, UCL",Secondary,Student +339,S1A-090,2,B,,yes,,,Maureen,46-65,female,British,Scotland,"Undergraduate student, UCL",Secondary,Student +340,S1A-090,2,C,,yes,,,,18-25,female,British,London?,"Undergraduate student, UCL",Secondary,Student +341,S1A-091,1,A,,yes,,,Isobel,29,female,British,Spain,,University, +342,S1A-091,1,B,,yes,,,Jenny,26-45,female,British,London,,Secondary,Student +343,S1A-092,1,A,,yes,,,Isobel,29,female,British,Spain,,University, +344,S1A-092,1,B,,yes,,Mason,David,27,male,British,SE England,,University, +345,S1A-093,1,A,,yes,,Tollfree,Laura,18-25,female,British,London,"Degree in Linguistics, UCL",University,Student +346,S1A-093,1,B,,yes,,Tollfree,Eleanor,20,female,British,London,,Secondary,Student +347,S1A-094,1,A,,yes,,Wagner,Mary,66+,female,British,SE England,,Secondary,Retired +348,S1A-094,1,B,,yes,,Tollfree,Laura,18-25,female,British,London,"Degree in Linguistics, UCL",University,Student +349,S1A-095,1,A,,yes,,Debenham,Giles,25,male,British,London,,, +350,S1A-095,1,B,,yes,,Debenham,Simon,28,male,British,London,,University,Accountant +351,S1A-095,2,A,,yes,,Debenham,Susan,48,female,British,London,,, +352,S1A-095,2,B,,yes,,Debenham,Simon,28,male,British,London,,University,Accountant +353,S1A-095,3,A,,yes,,Debenham,Giles,25,male,British,London,,, +354,S1A-095,3,B,,yes,,Debenham,Simon,28,male,British,London,,University,Accountant,,, +355,S1A-095,4,A,,yes,,Debenham,Susan,48,female,British,London,,,,,, +356,S1A-095,4,B,,yes,,Debenham,Simon,28,male,British,London,,University,Accountant,,, +357,S1A-096,1,A,,yes,,,Bill,26-45,male,British,,,Secondary,"Poet, unemployed cleaner",,, +358,S1A-096,1,B,,yes,,,Cheryl,32,female,British,USA,BA Development Psychology,University,"Actress, poet",,, +359,S1A-097,1,A,,yes,,Rosta,Andrew,18-25,male,British,NW England,"UCL, Linguistics",University,"PhD student, Linguistics",,,"Researcher, Survey of English Usage" +360,S1A-097,1,B,,yes,,,,18-25,male,British,,,University,Student,,, +361,S1A-098,1,A,,yes,,Woodford,Kate,26,female,British,Middle England,,University,Lexicographer,,"French, Spanish", +362,S1A-098,1,B,,yes,,Howells,Sian,25,female,British,Wales,,University,Personal Assistant in German bank,,"French, German", +363,S1A-098,2,A,,yes,,Dowell,John,26-45,male,British,London,PhD,University,Employed at UCL,,, +364,S1A-098,2,B,,yes,,Woodford,Kate,26,female,British,Middle England,,University,Lexicographer,,"French, Spanish", +365,S1A-098,3,A,,yes,,Woodford,Kate,26,female,British,Middle England,,University,Lexicographer,,"French, Spanish", +366,S1A-098,3,B,,yes,,Peters,Roz,27,female,British,London,,University,Civil servant,,, +367,S1A-099,1,A,,yes,,,,18-25,female,British,Wales,,University,Nurse,,, +368,S1A-099,1,B,,yes,,Buckley,Justin,21,male,British,SE England,"BA English, UCL",University,"Student, researcher",,,"Researcher, Survey of English Usage" +369,S1A-099,2,A,,yes,,,,18-25,female,British,London,B-Techs,University,Shop assistant,,, +370,S1A-099,2,B,,yes,,Buckley,Justin,21,male,British,SE England,"BA English, UCL",University,"Student, researcher",,,"Researcher, Survey of English Usage" +371,S1A-100,1,A,,yes,,Gibney,Marie,46-65,female,British,NW England,,University,University secretary,,,"Secretary, Survey of English Usage" +372,S1A-100,1,B,,yes,,,,26-45,male,,,,University,Lawyer,,, +373,S1A-100,2,A,,yes,,Williamson,Valerie,26-45,female,British,,,University,University secretary,,, +374,S1A-100,2,B,,yes,,Gibney,Marie,46-65,female,British,NW England,,University,University secretary,,,"Secretary, Survey of English Usage" +375,S1A-100,3,A,,yes,,,Sean,26-45,male,British,Middle England,,University,"Artist, journalist",,, +376,S1A-100,3,B,,yes,,Buckley,Justin,21,male,British,SE England,"BA English, UCL",University,"Student, researcher",,,"Researcher, Survey of English Usage" +377,S1B-001,1,A,,yes,Tutor,Weitzman,Michael,46-65,male,British,London,,University,University Lecturer,,Hebrew, +378,S1B-001,1,B,,yes,,Turner,Mary,46-65,female,British,London,,Secondary,Student,,Hebrew, +379,S1B-001,1,C,,yes,,Smith,John,18-25,male,British,London,,Secondary,,,, +380,S1B-002,1,A,,yes,Tutor,Smith,Neil,46-65,male,British,,"MA, PhD",University,Professor of Linguistics,,, +381,S1B-002,1,B,,yes,,,Susan,18-25,female,British,East Anglia,,Secondary,Student,,, +382,S1B-002,1,C,,yes,,,Vicky,18-25,female,British,London,,Secondary,Student,,, +383,S1B-002,1,D,,yes,,,Phillip,18-25,male,British,SE England,,Secondary,Student,,, +384,S1B-002,1,E,,yes,,,Vincent,18-25,male,British,London,,Secondary,Student,,, +385,S1B-002,1,F,,yes,,,Jeremy,18-25,male,British,Middle England,,Secondary,Student,,, +386,S1B-002,1,G,,yes,,,Georgina,18-25,female,British,London,,Secondary,Student +387,S1B-002,1,H,,yes,,,Ilianna,18-25,female,British,,,Secondary,Student +388,S1B-002,1,I,,yes,,,Jason,18-25,male,British,,,Secondary,Student +389,S1B-002,1,J,,yes,,,Jo,18-25,female,British,,,Secondary,Student +390,S1B-002,1,K,,yes,,,Jason,18-25,male,British,,,Secondary,Student +391,S1B-002,1,L,,yes,,,Thomas,18-25,male,British,,,Secondary,Student +392,S1B-003,1,A,,yes,Tutor,Houghton,George,26-45,male,British,Merseyside,"MA, PhD",University,University Lecturer +393,S1B-003,1,B,,yes,,,Colin,23,male,British,London,,Secondary,Student +394,S1B-003,1,C,,yes,,,,18-25,male,British,,,Secondary,Student +395,S1B-003,1,D,,yes,,,Jill,18-25,female,British,London,,Secondary,Student +396,S1B-003,1,E,,yes,,,Melanie,18-25,female,British,London,,Secondary,Student +397,S1B-004,1,A,,yes,Tutor,Fuller,J.H.,46-65,male,British,,,University,Medical doctor and lectuer +398,S1B-004,1,B,,yes,,,,18-25,male,British,,,, +399,S1B-004,1,C,,yes,,,,18-25,female,British,,,, +400,S1B-004,1,D,,yes,,,,18-25,male,British,,,, +401,S1B-004,1,E,,yes,,,,18-25,male,British,,,, +402,S1B-004,1,F,,yes,,,,18-25,female,British,,,, +403,S1B-004,1,G,,yes,,,,18-25,male,British,,,, +404,S1B-004,1,H,,yes,,,,18-25,female,British,,,, +405,S1B-004,1,I,,yes,,,,18-25,male,British,,,, +406,S1B-004,1,J,,yes,,,,18-25,male,British,,,, +407,S1B-004,1,K,,yes,,,,18-25,male,British,,,, +408,S1B-004,1,L,,yes,,,,18-25,male,British,,,, +409,S1B-004,1,M,,yes,,,,18-25,male,British,,,, +410,S1B-004,1,N,,yes,,,,18-25,male,British,,,, +411,S1B-004,1,O,,yes,,,,18-25,male,British,,,, +412,S1B-004,1,P,,yes,,,,18-25,male,British,,,, +413,S1B-005,1,A,,yes,Tutor,Stokes,B.,46-65,male,British,,"MA, PhD",University,University Lecturer +414,S1B-005,1,B,,yes,,,Michael,18-25,male,British,London,,Secondary,Student +415,S1B-005,1,C,,yes,,,Rebecca,18-25,female,British,London,,Secondary,Student +416,S1B-005,1,D,,yes,,,Joanna,18-25,female,British,SE England,,Secondary,Student +417,S1B-005,1,E,,yes,,,Michael,18-25,male,British,SE England,,Secondary,Student +418,S1B-006,1,A,,yes,Tutor,Hall,,46-65,male,British,,PhD,University,University Lecturer +419,S1B-006,1,B,,yes,,,Jackie,18-25,female,British,London,,Secondary,student +420,S1B-006,1,C,,yes,,,Susan,18-25,female,British,,,Secondary,student +421,S1B-006,1,D,,yes,,,Roger,18-25,male,British,,,Secondary,student +422,S1B-007,1,A,,yes,Tutor,Agnew,Clive,26-45,male,British,London,PhD,University,Lecturer in Geography +423,S1B-007,1,B,,yes,,,Barbara,18-25,female,British,London,,Secondary,Student +424,S1B-007,1,C,,yes,,,Colin,18-25,male,British,London,,Secondary,Student +425,S1B-007,1,D,,yes,,,James,18-25,male,British,London,,Secondary,Student +426,S1B-007,1,E,,yes,,,Duncan,18-25,male,British,London,,Secondary,Student +427,S1B-008,1,A,,yes,Tutor,,,34,male,British,,MA in Fine Art,University,University Tutor +428,S1B-008,1,B,,yes,,,David,23,male,British,London,,Secondary,Student +429,S1B-008,1,C,,yes,,,Miriam,18-25,female,British,Scotland,,Secondary,Student +430,S1B-008,1,D,,yes,,,Anne-Marie,18-25,female,,,,Secondary,Student +431,S1B-008,2,A,,yes,,,,,male,,,,,University Lecturer +432,S1B-008,2,B,,yes,,,,,male,,,,, +433,S1B-008,2,C,,yes,,,,,male,,,,, +434,S1B-008,2,D,,yes,,,,,female,,,,, +435,S1B-008,2,E,,yes,,,,,female,,,,, +436,S1B-008,3,A,,yes,,,,,male,,,,,University Lecturer +437,S1B-008,3,B,,yes,,,,,female,,,,, +438,S1B-008,3,C,,yes,,,,,female,,,,, +439,S1B-008,3,D,,yes,,,,,male,,,,, +440,S1B-008,3,E,,yes,,,,,male,,,,, +441,S1B-009,1,A,,yes,Tutor,Fitzgerald,M.,26-45,female,British,London,PhD Anatomy,University,University lecturer +442,S1B-009,1,B,,yes,,,,18-25,male,British,London,,Secondary,Student +443,S1B-009,1,C,,yes,,,,18-25,male,British,,,Secondary,Student +444,S1B-009,1,D,,yes,,,,18-25,male,British,,,Secondary,Student +445,S1B-010,1,A,,yes,,Hobsley,Michael,46-65,male,British,,,University,Professor of Surgery +446,S1B-010,1,B,,yes,,,,18-25,female,British,,,Secondary,Student +447,S1B-010,1,C,,yes,,,,18-25,male,British,,,Secondary,Student +448,S1B-010,1,D,,yes,,,,18-25,male,British,,,Secondary,Student +449,S1B-010,1,E,,yes,,,,18-25,female,British,,,Secondary,Student +450,S1B-011,1,A,,yes,Tutor,Austin,R.C.,46-65,male,British,SE England,,University,Lecturer in Public Law +451,S1B-011,1,B,,yes,,,,18-25,male,British,London,,Secondary,Student +452,S1B-011,1,C,,yes,,,,18-25,female,British,London,,Secondary,Student +453,S1B-011,1,D,,yes,,,,18-25,male,British,SE England,,Secondary,Student +454,S1B-011,1,E,,yes,,,,18-25,male,British,London,,Secondary,Student +455,S1B-011,1,F,,yes,,,,18-25,female,British,London,,Secondary,Student +456,S1B-011,1,G,,yes,,,,18-25,male,British,London,,Secondary,Student +457,S1B-011,1,H,,yes,,,,18-25,female,British,SE England,,Secondary,Student +458,S1B-011,1,I,,yes,,,,18-25,male,British,,,Secondary,Student +459,S1B-012,1,A,,yes,,Tollfree,Laura,18-25,female,British,London,BA Linguistics,University,Student (PhD) +460,S1B-012,1,B,,yes,Tutor,,April,28,female,British,Scotland,PhD Phonology,University,University Lecturer +461,S1B-013,1,A,,yes,Tutor,Stephenson,William,46-65,male,British,,PhD Mathematics,University,University Lecturer +462,S1B-013,1,B,,yes,,,,18-25,male,British,London,,Secondary,Student +463,S1B-013,1,C,,yes,,,,18-25,female,British,SE England,,Secondary,Student +464,S1B-013,1,D,,yes,,,,18-25,female,British,London,,Secondary,Student +465,S1B-013,1,E,,yes,,,,18-25,female,British,London,,Secondary,Student +466,S1B-014,1,A,,yes,Tutor,Bindman,David,46-65,male,British,,PhD,University,Professor of the History of Art +467,S1B-014,1,B,,yes,,,,18-25,male,British,London,,Secondary,Student +468,S1B-014,1,C,,yes,,,,18-25,female,British,London,,Secondary,Student +469,S1B-015,1,A,,yes,Tutor,Wolf,J.,26-45,male,British,London,PhD,University,University Lecturer +470,S1B-015,1,B,,yes,,,John,18-25,male,British,Heart of England,,Secondary,Student +471,S1B-015,1,C,,yes,,,Rebecca,18-25,female,British,London,,Secondary,Student +472,S1B-016,1,A,,yes,Tutor,Houghton,George,26-45,male,British,Merseyside,PhD,University,University Lecturer +473,S1B-016,1,B,,yes,,,,18-25,male,British,London,,Secondary,Student +474,S1B-016,1,C,,yes,,,Matt,18-25,male,British,SE England,,Secondary,Student +475,S1B-016,1,D,,yes,,,Esther,18-25,female,British,London,,Secondary,Student +476,S1B-017,1,A,,yes,Tutor,Orton,Clive,26-45,male,British,London,,University,Lecturer in Archaeology +477,S1B-017,1,B,,yes,,,,46-65,male,British,London,,Secondary,Student +478,S1B-017,1,C,,yes,,,,18-25,female,British,,,Secondary,Student +479,S1B-017,1,D,,yes,,,,18-25,male,British,London,,Secondary,Student +480,S1B-017,1,E,,yes,,,,18-25,female,British,London,,Secondary,Student +481,S1B-018,1,A,,yes,,,,24,male,British,Middle England,,Secondary,Student +482,S1B-018,1,B,,yes,Tutor,,,46-65,male,British,London,,University,University Lecturer,, +483,S1B-018,1,C,,yes,,,,25,male,British,London,,Secondary,Student,, +484,S1B-018,1,D,,yes,Tutor,,,34,male,British,SE England,,University,University tutor,, +485,S1B-018,1,E,,yes,,,Chris,18-25,male,British,London,,Secondary,Student,, +486,S1B-018,1,F,,yes,,,,18-25,male,British,,,Secondary,Student,, +487,S1B-019,1,A,,yes,Tutor,Easterling,P.,46-65,female,British,,Phd,University,Professor of Greek & Latin,, +488,S1B-019,1,B,,yes,,,,18-25,female,British,,,Secondary,Student,, +489,S1B-019,1,C,,yes,,,Michael,18-25,male,British,Middle England,,Secondary,Student,, +490,S1B-019,1,D,,yes,,,,18-25,female,British,,,Secondary,Student,, +491,S1B-019,1,E,,yes,,,Eleanor,18-25,female,British,London,,Secondary,Student,, +492,S1B-020,1,A,,yes,Tutor,Titchener-Hooker,M.,26-45,male,British,,PhD,University,University Lecturer in Biochemistry,, +493,S1B-020,1,B,,yes,,,Victor,18-25,male,British,London,,Secondary,Student,, +494,S1B-020,1,C,,yes,,,,18-25,male,British,London,,Secondary,Student,, +495,S1B-021,1,A,,yes,Chairman,Morgan,Cliff,61,male,British,Wales,Grammar School,Secondary,"Broadcaster, ex-rugby player",,Welsh +496,S1B-021,1,B,,yes,,Heyhoe-Flint,Rachael,52,female,British,Heart of England,Wolverhampton High School; Dartford College of Physical Education,University,"Ex-cricketer, broadcaster, writer",,None +497,S1B-021,1,C,,yes,,Wooller,Wilfred,66+,male,British,Wales,Cambridge (MA),University,Justice of the Peace,,Some French +498,S1B-021,2,A,,yes,Chairman,Neil,Andrew,42,male,British,Scotland,Paisley Grammar School; Glasgow University (MA),University,"Editor, The Sunday Times",,, +499,S1B-021,2,B,,yes,,Soutier,Janank,26-45,male,British,,,University,Economist,,, +500,S1B-021,2,C,,yes,,Ginane,Jackie,26-45,female,British,,,University,Economist,,, +501,S1B-022,1,A,,yes,Chairman,,,,male,British,,,,,,, +502,S1B-022,1,B,,yes,,Bragg,Melvyn,52,male,British,Cumbria,"Wadham College, Oxford",University,"Broadcaster, novelist",,, +503,S1B-022,1,C,,yes,,Mortimer,John,58,male,British,London,Harrow School; Brasenose Coll. Oxford; Inner Temple,University,"Barrister, novelist, playwright",,,"QC, 1966" +504,S1B-022,1,D,,yes,,Jackson,Glenda,55,female,British,NW England,"West Kirby Grammar School; Royal Academy of Dramatic Arts, London",University,"Political candidate, actress",,, +505,S1B-022,1,E,,yes,,Renton,Tim,59,male,British,,"Eton College; Magdalen College, Oxford (MA History)",University,Politician,,, +506,S1B-022,1,F,,yes,,Fielderson,Russell,,male,British,,,,,,, +507,S1B-023,1,A,,yes,Chairman,Baker,Richard,66,male,British,London,"Peterhouse, Cambridge",University,"Broadcaster, ex-actor",,, +508,S1B-023,1,B,,yes,,Woolfenden,Guy,54,male,British,,"Westminster Abbey Choir School; Christ's College, Cambridge (MA); Guildhall School of Music (LGSM)",University,Orchestra conductor,,, +509,S1B-023,1,C,,yes,,Nunn,Trevor,51,male,British,East Anglia,"Downing College, Cambridge (BA)",University,"Associate Director, The Royal Shakespeare Company",,, +510,S1B-024,1,A,,yes,Chairman,Bragg,Melvyn,52,male,British,Cumbria,"Wadham College, Oxford (MA)",University,"Broadcaster, novelist",,, +511,S1B-024,1,B,,yes,,Lawson,Mark,26-45,male,British,London,UCL (BA English),University,Journalist,,, +512,S1B-024,1,C,,yes,,Mortimer,John,58,male,British,London,Harrow School; Brasenose Coll. Oxford; Inner Temple,University,"Barrister, novelist, playwright",,,"QC, 1966" +513,S1B-024,1,D,,yes,,Couper,Heather,42,female,British,London,Grammar Sch; Univ. of Leicester (BSc Physics & Astronomy),University,Prof. of Astronomy; science broadcaster/writer,"FRAS, 1970","French, Latin, German", +514,S1B-024,1,E,,yes,,Davies,Peter,26-45,male,British,"Stroud, Glos.",,University,,,"French, some German", +515,S1B-024,1,F,,yes,,Dobbs,Michael,46-65,male,British,London,,University,"Politician, novelist",,, +516,S1B-025,1,A,,yes,Chairman,Jones,Clay,66+,male,British,Wales,,University,Broadcaster,,Welsh, +517,S1B-025,1,B,,yes,,Ledward,Daphne,26-45,female,British,Yorkshire,,Secondary,Horticulturalist,,"French, Latin", +518,S1B-025,1,C,,yes,,Downham,Fred,46-65,male,British,NW England,,Secondary,Horticulturalist,,None, +519,S1B-025,1,D,,yes,,Buczacki,Stefan,26-45,male,British,Middle England,PhD,University,Horticulturalist,,"French, Russian", +520,S1B-026,1,A,,yes,Chairman,Purves,Libby,26-45,female,British,London,"Oxford University, English 1971",University,Broadcaster,,French, +521,S1B-026,1,B,,yes,,Horrocks,Stella,46-65,female,British,Yorkshire,Teachers' Training College,University,Ex-teacher,,None, +522,S1B-026,1,C,,yes,,Hayes,Brian,46-65,male,British,Australia,,University,Broadcaster,,, +523,S1B-026,1,D,,yes,,Dickens,Monica,66+,female,British,London,"St Paul's School, Hammersmith, London",Secondary,Novelist,,, +524,S1B-026,1,E,,yes,,Pheloung,Barrington,26-45,male,British,,,University,"Musician, composer",,, +525,S1B-027,1,A,,yes,Chairman,Sissons,Peter,49,male,British,NW England,Oxford University (MA),University,Broadcaster,,, +526,S1B-027,1,B,,yes,,Clarke,Kenneth,51,male,British,Middle England,"Nottingham High School; Gonville & Caius College, Cambridge (BA, LLB)",University,Politician,,, +527,S1B-027,1,C,,yes,,Hattersley,Roy,59,male,British,Middle England,Sheffield Grammar School; Hull University,University,"Politician, journalist",,, +528,S1B-027,1,D,,yes,,Ashdown,Paddy,41,male,British,India,Bedfordshire Public School; Hong Kong University,University,"Politician, ex-soldier",,Chinese,Moved to Britain aged 4 +529,S1B-027,1,E,,yes,,Sheppard,David,62,male,British,,Cambridge (MA); Theological College,University,Bishop of Liverpool,,, +530,S1B-028,1,A,,yes,Chairman,MacIntyre,Ian,60,male,British,Kincardineshire,"Cambridge (MA); College of Europe, Bruges",University,Broadcaster,,"French, Norwegian, Russian, Italian", +531,S1B-028,1,B,,yes,,Sacks,Jonathan,43,male,British,London,"Cambridge (MA); Oxford (PhD); Jews' College, London",University,Chief Rabbi,,, +532,S1B-028,1,C,,yes,,Halsey,A.H.,68,male,British,Middle England,"London School of Economics (BSC Econ, PhD), MA Oxon",University,"Professorial Fellow, Nuffield College, Oxford",,,Former Professor of Social & Admin. Studies +533,S1B-028,1,D,,yes,,McDade,John,26-45,male,British,Scotland,,University,Clergyman,,, +534,S1B-028,1,E,,yes,,Harrison,Anne,46-65,female,British,,,,,,, +535,S1B-029,1,A,,yes,,Hannan,Patrick,46-65,male,British,Wales,,University,Broadcaster,,, +536,S1B-029,1,B,,yes,,Parris,Matthew,42,male,British,South Africa,"Waterford School, Swaziland; Cambridge (BA); Yale University",University,"Journalist, ex-politician",,Spanish, +537,S1B-029,1,C,,yes,,Thomas,Daffyd Elis,45,male,British,Wales,University College North Wales,University,Politician; Ex-tutor in Celtic Studies,,,"Ex-lecturer in English, Univ. Coll. North Wales" +538,S1B-029,1,D,,yes,,Hawkes,Terence,46-65,male,British,,,University,Professor of English,,, +539,S1B-030,1,A,,yes,Chairman,Buerk,Michael,45,male,British,,Solihull School,Secondary,"Broadcaster, journalist",,, +540,S1B-030,1,B,,yes,,Dawson,Judith,26-45,female,British,,,,,,, +541,S1B-030,1,C,,yes,,Daley,Janet,46-65,female,,USA,,University,Journalist,,, +542,S1B-030,1,D,,yes,,Scruton,Roger,47,male,British,,"Cambridge (MA, PhD)",University,"Professor of Aesthetics, Birkbeck College, London",,, +543,S1B-030,1,E,,yes,,Amphlett,Sue,26-45,female,British,,,,,,, +544,S1B-030,1,F,,yes,,Pearce,Edward,52,male,British,Northumbria,Grammar School; Oxford (MA); University of Stockholm,University,"Political commentator, writer",,, +545,S1B-031,1,A,,yes,Chairman,Buerk,Michael,45,male,British,,Solihull School,Secondary,"Broadcaster, journalist",,, +546,S1B-031,1,B,,yes,,Scruton,Roger,47,male,British,,"Cambridge (MA, PhD)",University,"Professor of Aesthetics, Birkbeck College, London",,, +547,S1B-031,1,C,,yes,,Pearce,Edward,52,male,British,Northumbria,Grammar School; Oxford (MA); University of Stockholm,University,"Political commentator, writer",,, +548,S1B-031,1,D,,yes,,Daley,Janet,26-45,female,,USA,,University,Journalist,,, +549,S1B-031,1,E,,yes,,Farrar-Hockley,Gen. Sir Anthony,67,male,British,,Exeter School,Secondary,"British Army General, military historian, writer",,, +550,S1B-031,1,F,,yes,,Foot,Paul,54,male,British,,,,Journalist,,, +551,S1B-032,1,A,,yes,,Baker,Richard,66,male,British,London,"Peterhouse, Cambridge",University,"Broadcaster, ex-actor",,, +552,S1B-032,1,B,,yes,,Handley,Vernon,61,male,British,London,"Enfield School; Balliol College, Oxford; Guildhall School of Music",University,"Conductor, Royal Liverpool Philharmonic Orchestra",,, +553,S1B-032,1,C,,yes,,Thomson,Bryden,46-65,male,British,Scotland,"Ayr Academy; Royal Scottish Academy of Music; Staatliche Hochschule fur Musik, Hamburg",University,Composer,"Fellow, Royal Scottish Acad. of Music & Drama",German, +554,S1B-033,1,A,,yes,Chairman,Northam,Gerry,26-45,male,British,London,,University,Broadcaster,,, +555,S1B-033,1,B,,yes,,Wheeler,Sir John,51,male,British,East Anglia,"Staff College, Wakefield",University,Politician,,, +556,S1B-033,1,C,,yes,,Owen,David,46-65,male,British,Wales,,University,"President, Association of Chief Police Officers; ex-detective",,, +557,S1B-033,1,D,,yes,,Hattersley,Roy,59,male,British,Middle England,Sheffield Grammar School; Hull University,University,Politician,,, +558,S1B-033,1,E,,yes,,McClelland,Robert,26-45,male,British,,,,Politician,,, +559,S1B-033,1,F,,yes,,Alderson,John,46-65,male,British,,,University,"Honorary Research Fellow, Exeter University; ex-Chief Constable",,, +560,S1B-033,1,G,,yes,,Puddephatt,Andrew,41,male,British,,"Sidney Sussex College, Cambridge (BA 1971)",University,"General Secretary, National Council for Civil Liberties",,,Former teacher and computer programmer +561,S1B-034,1,A,,yes,Chairman,Dimbleby,David,53,male,British,London,Charterhouse School; Oxford (MA); University of Paris,University,Broadcaster,,, +562,S1B-034,1,B,,yes,,Thomson,Ken,46-65,male,British,,,,"Leader, Nottingham County Council",,, +563,S1B-034,1,C,,yes,,Bradbury,,46-65,male,British,Middle England,,,County Councillor,,, +564,S1B-034,1,D,,yes,,,,26-45,male,British,,,,,,, +565,S1B-034,1,E,,yes,,Higgins,Bertha,46-65,female,British,Middle England,,University,County Councillor,,, +566,S1B-034,1,F,,yes,,Morton,David,46-65,male,British,,,,County Councillor,,, +567,S1B-034,1,G,,yes,,Travis,Tony,26-45,male,British,,,,County Councillor,,, +568,S1B-034,1,H,,yes,,Hodge,Margaret,46-65,female,British,,,,County Councillor,,, +569,S1B-034,1,I,,yes,,Watson,,46-65,male,British,,,,County Councillor,,, +570,S1B-034,1,J,,yes,,Braver,Brandon,46-65,male,British,,,,County Councillor,,, +571,S1B-034,1,K,,yes,,,,46-65,male,British,Scotland,,,County Councillor,,, +572,S1B-034,1,L,,yes,,Wendt,Robin,46-65,male,British,,,,,,, +573,S1B-035,1,A,,yes,Chairman,Dimbleby,Jonathan,47,male,British,London,UCL (BA Philosophy),University,Broadcaster,,, +574,S1B-035,1,B,,yes,,Sawyer,Tom,46-65,male,British,,,,Trade Unionist,,, +575,S1B-035,1,C,,yes,,Rifkind,Malcolm,45,male,British,Scotland,"Edinburgh University (LLB, MSc)",University,Politician,,,"Lectured at University of Rhodesia, 1967-8" +576,S1B-035,1,D,,yes,,Wilkinson,Paul,54,male,British,Wales,"University College Swansea; University of Wales (BA History & Politics, MA)",University,Professor of International Relations,,, +577,S1B-036,1,A,,yes,Chairman,Naughtie,James,40,male,British,Scotland,Grammar School; Aberdeen University; Syracuse University,University,Broadcaster,,, +578,S1B-036,1,B,,yes,,Wallace,William,50,male,British,,"King's College, Cambridge; Nuffield College, Oxford; Cornell University (PhD, 1968)",University,"Sen. Research Fellow in European Studies, Oxford",,, +579,S1B-036,1,C,,yes,,Robertson,George,45,male,British,Scotland,"Dunoon Grammar School; University of Dundee (MA Hons, 1968)",University,Politician,,, +580,S1B-036,1,D,,yes,,Kaldor,Mary,46-65,female,British,,,University,"Sen. Fellow, Science Policy Research Unit, Sussex",,, +581,S1B-036,1,E,,yes,,Patten,John,46,male,British,London,"Wimbledon College; Sidney Sussex College, Cambridge (PhD 1972)",University,Politician,,,Former university lecturer +582,S1B-037,1,A,,yes,Chairman,Hewison,Robert,46-65,male,British,,,University,Broadcaster,,, +583,S1B-037,1,B,,yes,,Aslet,Clive,36,male,British,London,"Peterhouse, Cambridge",University,"Deputy Editor, Country Life",,, +584,S1B-037,1,C,,yes,,Legge,Rodney,,male,British,,,,,,, +585,S1B-037,1,D,,yes,,Gourlay,Sir Simon,57,male,British,,Winchester School; Royal Agricultural College,University,"President, National Farmers' Union",,, +586,S1B-038,1,A,,yes,,,,,male,British,,,,Military Analyst,,, +587,S1B-038,1,B,,yes,Chairman,Dimbleby,Jonathan,47,male,British,London,UCL (BA Philosophy),University,Broadcaster,,, +588,S1B-038,1,C,,yes,,Groves,Eric,,male,British,,,,Naval specialist,,, +589,S1B-039,1,A,,yes,Chairman,Neil,Andrew,42,male,British,Scotland,Grammar School; University of Glasgow,University,"Journalist, Editor, `The Sunday Times'",,, +590,S1B-039,1,B,,yes,,McIntyre,Donald,26-45,male,British,,,University,Journalist,,, +591,S1B-039,1,C,,yes,,Campbell,Alastair,26-45,male,British,,,University,Journalist,,, +592,S1B-040,1,A,,yes,Chairman,,,,male,British,,,,,,, +593,S1B-040,1,B,,yes,,Haines,Joe,63,male,British,London,,Secondary,Journalist,,,Former Press Officer to the Prime Minister +594,S1B-040,1,C,,yes,,Pimlott,Ben,46,male,British,London,"Rokeby School, Wimbledon; Marlborough Coll.; Worcester Coll.; Oxford (MA, BPhil); Newcastle (PhD)",University,Professor of Politics & Contemporary History,,, +595,S1B-040,1,D,,yes,,Jenkins,Roy,71,male,British,Wales,"Abersychan Grammar School; University College Cardiff; Balliol College, Oxford",University,Politician,,, +596,S1B-041,1,A,,yes,Interviewer,Nicholson,Mavis,61,female,British,Wales,,University,Broadcaster,,, +597,S1B-041,1,B,,yes,Interviewee,Runcie,Robert,66,male,British,London,Merchant Taylor's School; Oxford; Cambridge,University,Former Archbishop of Canterbury,,, +598,S1B-042,1,A,,yes,Interviewer,Aspel,Michael,57,male,British,London,London,University,Broadcaster,,, +599,S1B-042,1,B,,yes,Interviewee,Laurie,Hugh,26-45,male,British,SE England,Eton; Cambridge (Archaeology),University,"Comedian, actor",,, +600,S1B-042,2,A,,yes,Interviewer,Morley,Sheridan,46-65,male,British,London,,University,Broadcaster,,French, +601,S1B-042,2,B,,yes,Interviewee,Mortimer,John,58,male,British,London,Harrow School; Brasenose Coll. Oxford; Inner Temple,University,"Barrister, novelist, playwright",,,"QC, 1966" +602,S1B-043,1,A,,yes,Interviewer,Dimbleby,Jonathan,47,male,British,London,UCL (BA Philosophy),University,Broadcaster,,, +603,S1B-043,1,B,,yes,Interviewee,Major,John,47,male,British,London,,Secondary,"Politician, accountant",,, +604,S1B-044,1,A,,yes,Interviewer,Allen,Paul,26-45,male,British,,,University,Broadcaster,,, +605,S1B-044,1,B,,yes,Interviewee,Walker,Lynn,26-45,female,British,Scotland,,University,Critic,,None, +606,S1B-044,2,A,,yes,Interviewer,Allen,Paul,26-45,male,British,,,University,Broadcaster,,, +607,S1B-044,2,B,,yes,Interviewee,Tomalin,Claire,58,female,British,,Hitchin Grammar School; Cambridge (MA),University,"Novelist, biographer",,, +608,S1B-044,3,A,,yes,Interviewer,Watts,Geoff,,male,British,,,,Broadcaster,,, +609,S1B-044,3,B,,yes,Interviewee,Bird,Anne,26-45,female,British,,,,Nurse,,, +610,S1B-045,1,A,,yes,Interviewer,Andrews,Nigel,26-45,male,British,,,,Broadcaster,,, +611,S1B-045,1,B,,yes,Interviewee,Jarman,Derek,49,male,British,London,"King's College, London; Slade School of Art",University,"Painter, film director",,, +612,S1B-046,1,A,,yes,Interviewer,Lawley,Sue,45,female,British,Worcestershire,Bristol University (BA Modern Languages),University,Broadcaster,,, +613,S1B-046,1,B,,yes,Interviewee,Byatt,A.S.,55,female,British,Middle England,"Cambridge; Bryn Mawr College, Pa., USA; Somerville Coll., Oxford",University,Novelist,,,Former lecturer in English +614,S1B-047,1,A,,yes,Interviewer,MacIntyre,Ian,60,male,British,Kincardineshire,"Prescot Grammar School; St John's College, Cambridge; College of Europe, Bruges",University,Broadcaster,,"French, Norwegian, Russian, Italian", +615,S1B-047,1,B,,yes,Interviewee,Sacks,Jonathan,43,male,British,,"Cambridge (MA); Oxford (PhD); Jews' College, London",University,Chief Rabbi,,, +616,S1B-048,1,A,,yes,Interviewer,Forde,Nigel,26-45,male,British,,,,Broadcaster,,, +617,S1B-048,1,B,,yes,Interviewee,Stewart,Mary,75,female,British,London,"Skellfield School, Ripon, Yorks; Durham University",University,Novelist,,,Former lecturer in English +618,S1B-049,1,A,,yes,Interviewer,Cuffe,Jenny,26-45,female,British,London,,University,Broadcaster,,"French, Spanish, Italian", +619,S1B-049,1,B,,yes,Interviewee,Mottley,Shiela,46-65,female,British,NW England,,Secondary,,,None, +620,S1B-050,1,A,,yes,Interviewer,Billington,Michael,52,male,British,Heart of England,Oxford (BA),University,"Drama critic, journalist",,, +621,S1B-050,1,B,,yes,Interviewee,Brickman,Mark,,male,British,,,,,,, +622,S1B-051,1,A,,yes,,Summerson,Hugo,41,male,British,Heart of England,Agricultural College,University,"Politician, surveyor",,, +623,S1B-051,1,B,,yes,,Battle,John,40,male,British,Yorkshire,"Upholland College, Leeds",University,Politician,,,Trained for R.C. Church +624,S1B-051,1,C,,yes,Speaker of the House,Dean,Sir Paul,67,male,British,,"Ellesmere College, Shropshire; Exeter College, Oxford",University,"Deputy Speaker, House of Commons; businessman",,, +625,S1B-051,1,D,,yes,,Skinner,Denis,58,male,British,Middle England,"Sheffield University; Ruskin College, Oxford",University,"Politician, miner",,, +626,S1B-051,1,E,,yes,,Rogers,Allan,59,male,British,Wales,University College Swansea (BSc Geology),University,"Politician, geologist",,,"Worked in USA, Canada, Australia, 1956-63" +627,S1B-051,1,F,,yes,,Holt,Richard,60,male,British,London,Wembley Technical College,University,Politician,,, +628,S1B-051,1,G,,yes,,Boyes,Roland,54,male,British,,,,"Politician, social services director",,, +629,S1B-051,1,H,,yes,,Mahon,Alice,54,female,British,Canada,Bradford University,University,"Politician, lecturer",,, +630,S1B-051,1,I,,yes,,Livingstone,Ken,46,male,British,London,Fawcett College of Education,University,"Politician, lab technician",,, +631,S1B-052,1,A,,yes,Speaker of the House,Weatherill,Bernard,71,male,British,,Malvern College,Secondary,Speaker of the House of Commons,,, +632,S1B-052,1,B,,yes,,Clark,William,74,male,British,London,,Secondary,"Politician, accountant",,, +633,S1B-052,1,C,,yes,,Major,John,47,male,British,London,,Secondary,Politician,,, +634,S1B-052,1,D,,yes,,Beith,Alan,47,male,British,SE England,"King's School, Macclesfield; Balliol College Oxf.",University,"Politician, lecturer",,, +635,S1B-052,1,E,,yes,,Higgins,Terence,63,male,British,London,Cambridge; Yale,University,"Politician, economist",,, +636,S1B-052,1,F,,yes,,Sheldon,Robert,68,male,British,NW England,Technical College; London University,University,"Politician, engineer",,, +637,S1B-052,1,G,,yes,,Wardle,Charles,62,male,British,SE England,"Lincoln Coll, Oxford; Harvard Business School",University,Politician,,, +638,S1B-052,1,H,,yes,,Radice,Giles,55,male,British,,"Magdalen College, Oxford; LSE",University,"Politician, writer",,, +639,S1B-052,1,I,,yes,,Stewart,Ian,56,male,British,London,"Jesus College, Cambridge (MA, LittD (1978))",University,Politician,,, +640,S1B-052,1,J,,yes,,Smith,Tim,44,male,British,,"Harrow School; St Peter's College, Oxford (MA)",University,Politician,FCA,, +641,S1B-052,1,K,,yes,,Leadbetter,Ted,72,male,British,,Teacher Training College,University,"Politician, teacher",,, +642,S1B-052,1,L,,yes,,Nelson,Anthony,43,male,British,,Harrow; Christ's College Cambridge,University,"Politician, banker",,, +643,S1B-052,1,M,,yes,,Fraser,John,57,male,British,London,"Grammar School, Chelsea; Loughborough Univ.",University,"Politician, solicitor",,, +644,S1B-052,1,N,,yes,,Budgen,Nicholson,54,male,British,,Oxford; Cambridge,University,"Politician, barrister",,, +645,S1B-052,1,O,,yes,,Salmond,Alex,37,male,British,Scotland,St Andrew's,University,"Politician, economist",,, +646,S1B-053,1,A,,yes,,Ridley,Nicholas,62,male,British,,Eton; Oxford,University,"Politician, engineer",,, +647,S1B-053,1,B,,yes,,Thatcher,Margaret,65,female,British,Middle England,Oxford; Lincoln's Inn,University,Politician,,, +648,S1B-053,1,C,,yes,Speaker of the House,Weatherill,Bernard,71,male,British,,Malvern College,University,Speaker of the House of Commons,,, +649,S1B-053,1,D,,yes,,Ashdown,Paddy,41,male,British,India,Bedfordshire Public School; Hong Kong University,University,"Politician, ex-soldier",,Chinese,Moved to Britain aged 4 +650,S1B-053,1,E,,yes,,Squire,Robin,47,male,British,London,"Tiffin School, Kingston-upon Thames; Accountancy training",University,"Politician, chartered accountant",FCA,, +651,S1B-053,1,F,,yes,,Lamond,James,63,male,British,Scotland,Burrelton School,Secondary,"Politician, engineering draughtsman",,, +652,S1B-053,1,G,,yes,,Tebbit,Norman,60,male,British,London,Edmonton County Grammar School,Secondary,"Politician, businessman",,, +653,S1B-053,1,H,,yes,,Norris,Steve,46,male,British,NW England,"Worcester College, Oxford",University,Politician,,, +654,S1B-053,1,I,,yes,,Quin,Joyce,47,female,British,,London School of Economics,University,"Politician, lecturer",,French, +655,S1B-053,1,J,,yes,,Onslow,Cranley,65,male,British,SE England,"Harrow School; Oriel College, Oxford; Geneva University",University,Politician,,, +656,S1B-054,1,A,,yes,Speaker of the House,Weatherill,Bernard,71,male,British,,Malvern College,Secondary,Speaker of the House of Commons,,, +657,S1B-054,1,B,,yes,,Chalker,Lynda,51,female,British,,Heidelberg University; Westfield College; Central London Polytechnic,University,"Politician, statistician",,, +658,S1B-054,1,C,,yes,,Wells,Bowen,56,male,British,London,"St Paul's School, London, Exeter University",University,Politician,,, +659,S1B-054,1,D,,yes,,Budgeon,Nicholas,54,male,British,SE England,Cambridge,University,"Politician, barrister",,, +660,S1B-054,1,E,,yes,,Cryer,Bob,56,male,British,Yorkshire,"Salt School, Shipley; Hull University",University,"Politician, teacher",,, +661,S1B-055,1,A,,yes,Speaker of the House,Weatherill,Bernard,71,male,British,,Malvern College,Secondary,Speaker of the House of Commons,,, +662,S1B-055,1,B,,yes,,Nicholls,Patrick,43,male,British,,"College of Law, Guildford",University,"Politician, solicitor",,, +663,S1B-055,1,C,,yes,,Eastham,Ken,63,male,British,NW England,Openslaw Technical College,University,"Politician, engineer",,, +664,S1B-055,1,D,,yes,,Lloyd,Tony,41,male,British,NW England,Stretford Grammar School; Nottingham University (BSc); Manchester Business School (DipBA),University,"Politician, Lecturer in Business Studies",,, +665,S1B-055,1,E,,yes,,,,,male,,,,,,,,Clerk of the House of Commons +666,S1B-055,1,F,,yes,,Howard,Michael,50,male,British,Wales,"Grammar School; Peterhouse, Cambridge; Inner Temple",University,"Politician, barrister",,, +667,S1B-055,1,G,,yes,,Thompson,Patrick,56,male,British,,"Felsted School, Essex; Emmanuel College, Cambridge (MA)",University,Politician,MInstP,, +668,S1B-055,1,H,,yes,,Lamond,James,63,male,British,Scotland,Burrelton School,Secondary,"Politician, engineering draughtsman",,, +669,S1B-055,1,I,,yes,,Riddick,Graham,36,male,British,,"Stowe School, Buckingham; University of Warwick",University,Politician,,, +670,S1B-055,1,J,,yes,,Short,Claire,45,female,British,,Grammar School; Keele Univ; Leeds Univ,University,Politician,,, +671,S1B-055,1,K,,yes,,Thurnham,Peter,53,male,British,,Cambridge; Harvard Business School,University,"Politician, engineer, businessman, farmer",,, +672,S1B-055,1,L,,yes,,Fyfe,Maria,53,female,British,Scotland,"High School, Glasgow; Strathclyde Univ",University,"Politician, lecturer",,, +673,S1B-055,1,M,,yes,,Porter,Barry,43,male,British,,"College of Speech and Drama, London",University,"Politician, drama teacher",,, +674,S1B-055,1,N,,yes,,Reid,John,44,male,British,Scotland,Stirling Univ (PhD),University,"Politician, researcher",,, +675,S1B-055,1,O,,yes,,Hicks,Maureen,43,female,British,London,"Furzedown College of Education, London",University,"Politician, lecturer",,, +676,S1B-056,1,A,,yes,Speaker of the House,Weatherill,Bernard,71,male,British,,Malvern College,Secondary,Speaker of the House of Commons,,, +677,S1B-056,1,B,,yes,,Grist,Ian,53,male,British,Wales,"Jesus College, Oxford",University,Politician,,, +678,S1B-056,1,C,,yes,,Powell,Ray,63,male,British,Wales,London School of Economics,University,Politician,,, +679,S1B-056,1,D,,yes,,Howells,Kim,44,male,British,,College of Advanced Technology; Warwick Iniv,University,"Politician, lecturer",,, +680,S1B-056,1,E,,yes,,Griffiths,Win,48,male,British,Wales,Grammar School; Univ of Wales,University,"Politician, teacher",,, +681,S1B-056,1,F,,yes,,Jones,Barry,53,male,British,Wales,Bangor College of Education,University,"Politician, teacher of English",,, +682,S1B-056,1,G,,yes,,Michael,Alun,48,male,British,Wales,Colwyn Bay Grammar School; Keele University (BA English & Philos.),University,Politician,,,Former journalist +683,S1B-056,1,H,,yes,,Davies,Ron,45,male,British,,Portsmouth Poly; Univ of Wales; London Univ,University,"Politician, teacher of further education",,, +684,S1B-056,1,I,,yes,,Bennett,Nicholas,42,male,British,London,Polytechnic of N.London (BA Philosophy); Univ. of London Inst of Educ (PGCE); Univ. of Sussex (MA),University,Politician,,, +685,S1B-056,1,J,,yes,,Livsey,Richard,56,male,British,,Agricultural College,University,"Politician, farmer",,, +686,S1B-056,1,K,,yes,,Walker,Bill,62,male,British,Scotland,"Logie School, Dundee; Trades College, Dundee; College for Distributive Trades",University,Politician,"FIPM, FBIM",, +687,S1B-057,1,A,,yes,Speaker of the House,Weatherill,Bernard,71,male,British,,Malvern College,Secondary,Speaker of the House of Commons,,, +688,S1B-057,1,B,,yes,,,,,male,British,,,,Clerk of the House of Commons,,, +689,S1B-057,1,C,,yes,,Jackson,Robert,45,male,British,,"St Edmund's Hall, Oxford",University,Politician,,, +690,S1B-057,1,D,,yes,,Wigley,Daffyd,47,male,British,Wales,Manchester University,University,"Politician, economist",, +691,S1B-057,1,E,,yes,,Thurnham,Peter,53,male,British,,"Peterhouse, Cambridge; Harvard Business School",University,"Politician, engineer, businessman, farmer",, +692,S1B-057,1,F,,yes,,Howard,Michael,50,male,British,Wales,"Peterhouse, Cambridge; Inner Temple",University,"Politician, barrister",, +693,S1B-057,1,G,,yes,,Thompson,Jack,63,male,British,,Bothal School; Ashington Mining College,University,"Politician, Electrical Engineer",, +694,S1B-057,1,H,,yes,,Bruce,Ian,44,male,British,,Chelmsford Technical School; Bradford Univ,University,"Politician, businessman",, +695,S1B-057,1,I,,yes,,Leighton,Ron,61,male,British,,"Ruskin College, Oxford",University,"Politician, printer",, +696,S1B-057,1,J,,yes,,Mitchell,Andrew,35,male,British,,"Rugby School; Jesus College, Cambridge (MA Hons History)",University,Politician,, +697,S1B-057,1,K,,yes,,Knapman,Roger,47,male,British,,"Royal Agricultural College, Cirencester",University,"Politician, surveyor",, +698,S1B-057,1,L,,yes,,Kirkwood,Archy,45,male,British,Scotland,Heriot-Watt University (BSc Pharmacy),University,Politician,, +699,S1B-057,1,M,,yes,,Batiste,Spencer,46,male,British,,"Sorbonne, Paris; Cambridge (MA)",University,"Politician, solicitor",,French +700,S1B-057,1,N,,yes,,Eastham,Ken,64,male,British,NW England,Openslaw Technical College,University,"Politician, engineer",, +701,S1B-057,1,O,,yes,,,,,male,British,,,,Politician,, +702,S1B-058,1,A,,yes,,Short,Clare,45,female,British,,Keele University; Leeds University (BA Political Science),University,Politician,, +703,S1B-058,1,B,,yes,,Newton,Tony,54,male,British,,Oxford,University,Politician,, +704,S1B-058,1,C,,yes,,Nelson,Anthony,43,male,British,,"Harrow School; Christ's College, Cambridge (MA Economics & Law)",University,"Politician, banker",, +705,S1B-058,1,D,,yes,,Wallace,James,37,male,British,Scotland,Edinburgh Univeristy,University,Politician,, +706,S1B-058,1,E,,yes,,Meacher,Michael,61,male,British,,"New College, Oxford; LSE",University,"Politician, lecturer", +707,S1B-059,1,A,,yes,,Hicks,Maureen,43,female,British,,"Brokenhurst Grammar School; Furzedown College of Education, London",University,"Politician, lecturer", +708,S1B-059,1,B,,yes,,Howard,Michael,50,male,British,Wales,"Grammar School; Peterhouse, Cambridge",University,Politician (Sec. of State for Employment), +709,S1B-059,1,C,,yes,Speaker of the House,Weatherill,Bernard,71,male,British,,Malvern College,Secondary,Speaker of the House of Commons, +710,S1B-059,1,D,,yes,,Leighton,Ron,61,male,British,,"Ruskin College, Oxford",University,"Politician, printer", +711,S1B-059,1,E,,yes,,Mitchell,Andrew,35,male,British,,"Rugby School; Jesus College, Cambridge (MA Hons History)",University,Politician, +712,S1B-059,1,F,,yes,,Blair,Tony,38,male,British,Northumbria,"St John's College, Oxford",University,Politician, +713,S1B-059,1,G,,yes,,,,,male,British,,,,"Clerk, House of Commons", +714,S1B-059,1,H,,yes,,Jackson,Robert,45,male,British,,"St Edmund's Hall, Oxford",University,Politician, +715,S1B-059,1,I,,yes,,Stern,Michael,49,male,British,London,,University,"Politician, accountant", +716,S1B-059,1,J,,yes,,Madden,Max,50,male,British,London,Grammar School,Secondary,Politician, +717,S1B-059,1,K,,yes,,Dickens,Sir Geoffrey,60,male,British,London,"Easthome School, Wembley; Harrow Technical College; Acton Technical College",University,"Politician, businessman", +718,S1B-059,1,L,,yes,,Archer,Peter,65,male,British,,Wednesbury High School; London School of Economics; UCL,University,"Politician, solicitor",Fellow of University College London +719,S1B-059,1,M,,yes,,Coombs,Simon,44,male,British,,"Wycliffe College, Stroud; Reading University",University,"Politician, businessman", +720,S1B-059,1,N,,yes,,Lloyd,Tony,41,male,British,NW England,Stretford Grammar Sch.; Nottingham University (BSc); Manchester Business School (DipBA),University,"Politician, Lecturer in Business Studies", +721,S1B-059,1,O,,yes,,Forth,Eric,47,male,British,Scotland,"Jordanhill College School, Glasgow; Glasgow University",University,"Politician, businessman", +722,S1B-059,1,P,,yes,,Boswell,Tim,49,male,British,,"Marlborough College; New College, Oxford",University,"Politician, farmer",,, +723,S1B-059,1,Q,,yes,,Short,Clare,45,female,British,,Keele University; Leeds University (BA Political Science),University,Politician,,, +724,S1B-059,1,R,,yes,,Butler,Christopher,41,male,British,Wales,"Cardiff High School; Emmanuel College, Cambridge",University,"Politician, Market Researcher",,, +725,S1B-059,1,S,,yes,,Ashley,Jack,69,male,British,NW England,"Ruskin College, Oxford; Gonville & Caius College, Cambridge",University,Politician,,,Partially deaf +726,S1B-060,1,A,,yes,,Duffy,Patrick,71,male,British,,"London School of Economics; Columbia University, New York",University,"Politician, economist",,, +727,S1B-060,1,B,,yes,,Tredinnick,David,41,male,British,,"Eton; Graduate School of Business, Cape Town; St John's College, Oxford",University,Politician,,, +728,S1B-060,1,C,,yes,,Peacock,Elizabeth,54,female,British,Yorkshire,"Secondary School, Skipton, Yorkshire",Secondary,Politician,,, +729,S1B-060,1,D,,yes,,Henderson,Doug,42,male,British,Scotland,"Waid Academy, Fife; Central College, Glasgow; Strathclyde University (BA)",University,Politician,,, +730,S1B-060,2,A,,yes,,Arbuthnot,James,39,male,British,,"Eton; Trinity College, Cambridge (MA)",University,"Politician, barrister",,, +731,S1B-060,2,B,,yes,,Hogg,Douglas,46,male,British,,"Eton; Christ Church, Oxford; Lincoln's Inn",University,Politician,,, +732,S1B-060,2,C,,yes,Speaker of the House,Weatherill,Bernard,71,male,British,,Malvern College,Secondary,Speaker of the House of Commons,,, +733,S1B-060,2,D,,yes,,Dunwoody,Gwyneth,61,female,British,,Convent of Notre Dame,Secondary,"Politician, actress, writer",,, +734,S1B-060,2,E,,yes,,Adley,Robert,56,male,British,,Uppingham School,Secondary,"Politician, businessman",,,"Lived & worked in Thailand, Singapore, Malaya" +735,S1B-061,1,A,,yes,Defence counsel,Nugee,Edward,64,male,British,Brambletye,Worcester College; Oxford,University,Barrister (QC),,, +736,S1B-061,1,B,,yes,Plaintiff,Hill,John,26-45,male,British,SE England,,,Businessman,,, +737,S1B-062,1,A,,yes,Plaintiff's counsel,Wilson-Smith,C.,46-65,male,British,,,University,Lawyer,,, +738,S1B-062,1,B,,yes,Judge,Ogden,Sir Michael,65,male,British,,"Downside School; Jesus College, Cambridge (MA)",University,High Court Judge +739,S1B-062,1,C,,yes,Prosecution witness,Carter,Keith William,26-45,male,British,,"Degree in Sociology, MA in Industrial Sociology",University,Employment consultant +740,S1B-063,1,A,,yes,Judge,Hirst,David,65,male,British,East Anglia,"Eton; Trinity College, Cambridge (MA)",University,High Court Judge +741,S1B-063,1,B,,yes,Plaintiff's counsel,Pickup,James,,male,British,,,University,Lawyer +742,S1B-063,1,C,,yes,Defence witness,Maynard,John,,male,British,,,,Businessman +743,S1B-064,1,A,,yes,Defence counsel,Ekland,Graham,,male,British,,,University,Lawyer +744,S1B-064,1,B,,yes,Prosecution witness,Lehrer,Michael,,male,British,London,,,Businessman +745,S1B-064,1,C,,yes,Judge,Brooke,Sir Henry,55,male,British,,"Radley College; Worcester College, Oxford",University,High Court Judge +746,S1B-065,1,A,,yes,Plaintiff's counsel,Lamb,Robert,46-65,male,British,,,University,Lawyer +747,S1B-065,1,B,,yes,Defence witness,Lampitt,Robert,46-65,male,British,London,,,Businessman +748,S1B-065,1,C,,yes,Judge,Brooke,Sir Henry,55,male,British,,"Radley College; Worcester College, Oxford",University,High Court Judge +749,S1B-066,1,A,,yes,Defence counsel,Wrigley,John,,male,British,,,University,Lawyer +750,S1B-066,1,B,,yes,Plaintiff,Hoffman,Heidi,18-25,female,British,SE England,,, +751,S1B-066,1,C,,yes,Judge,Escott-Cox,Brian Robert,61,male,British,,"Rugby School; Oriel College, Oxford (MA)",University,High Court Judge +752,S1B-066,2,A,,yes,Plaintiff's counsel,Eccles,,,male,British,,,University,Lawyer +753,S1B-066,2,B,,yes,Plaintiff's witness,White,Lorraine,18-25,female,British,Northumbria,,, +754,S1B-066,2,C,,yes,Judge,Escott-Cox,Brian Robert,61,male,British,,"Rugby School; Oriel College, Oxford (MA)",University,High Court Judge,,, +755,S1B-067,1,A,,yes,Plaintiff's counsel,Eccles,,,male,British,,,University,Lawyer,,, +756,S1B-067,1,B,,yes,Defence witness,Tarburn,,18-25,female,British,Scotland,,,Travel company representative,,, +757,S1B-067,1,C,,yes,Judge,Escott-Cox,Brian Robert,61,male,British,,"Rugby School; Oriel College, Oxford (MA)",University,High Court Judge,,, +758,S1B-068,1,A,,yes,Defence counsel,Barrett,,,male,British,,,University,Lawyer,,, +759,S1B-068,1,B,,yes,Witness,Campbell,,32,male,British,,,University,Police officer,,, +760,S1B-068,1,C,,yes,Judge,MacPherson,,65,male,British,Scotland,"Wellington Coll., Berkshire; Trinity Coll., Oxford",University,High Court Judge,,, +761,S1B-068,2,A,,yes,Defence counsel,Barrett,,,male,British,,,University,Barrister,,, +762,S1B-068,2,B,,yes,Expert witness,Gardiner,,60,male,British,,,University,Surgeon,,, +763,S1B-068,2,C,,yes,Judge,MacPherson,,65,male,British,Scotland,"Wellington Coll., Berkshire; Trinity Coll., Oxford",University,High Court Judge,,, +764,S1B-068,2,D,,yes,Defence counsel,Glasgow,,,male,British,,,University,"Lawyer, Queen's Counsel",,, +765,S1B-069,1,A,,yes,Plaintiff's counsel,Goldblatt,Simon,46-65,male,British,,,University,"Barrister, Queen's Counsel",,,"Called to the Bar, 1953" +766,S1B-069,1,B,,yes,Defence witness,Basnett,,,male,British,Heart of England,,,Businessman,,, +767,S1B-070,1,A,,yes,Judge,Ogden,Sir Michael,65,male,British,,"Downside School; Jesus College, Cambridge (MA)",University,High Court Judge,,, +768,S1B-070,1,B,,yes,Expert witness,Hieroms,Raymond,46-65,male,British,,,University,Surgeon,,, +769,S1B-070,1,C,,yes,Defence counsel,Barrett,,,male,British,,,University,Barrister,,, +770,S1B-071,1,A,,yes,,Wharton,John,26-45,male,British,SE England,,University,Architect,, +771,S1B-071,1,B,,yes,,Boase,Sue,26-45,female,British,SE England,,University,"Lecturer, researcher",, +772,S1B-071,1,C,,yes,,King-Smith,Gavin,26-45,male,British,SE England,,University,Management consultant,, +773,S1B-072,1,A,,yes,,Boase,Sue,26-45,female,British,SE England,,University,"Lecturer, researcher",, +774,S1B-072,1,B,,yes,,,,26-45,female,British,SE England,,University,Solicitor,, +775,S1B-073,1,A,,yes,,Boase,Sue,26-45,female,British,SE England,,University,"Lecturer, researcher",, +776,S1B-073,1,B,,yes,,Salano,Michael,26-45,male,British,SE England,,University,Building contractor,, +777,S1B-073,1,C,,yes,,King-Smith,Gavin,26-45,male,British,SE England,,University,Management consultant,, +778,S1B-074,1,A,,yes,,,,32,male,British,London,,University,Lecturer,,Spanish +779,S1B-074,1,B,,yes,,,Ross,27,male,British,Scotland,,University,Insurance salesman,, +780,S1B-074,2,A,,yes,,,Ross,27,male,British,Scotland,,University,Insurance salesman,, +781,S1B-074,2,B,,yes,,,,18-25,male,British,West England,,Secondary,Student,,Some French +782,S1B-074,3,A,,yes,,,Ross,27,male,British,Scotland,,University,Insurance salesman,, +783,S1B-074,3,B,,yes,,Kalman,Anthony,27,male,British,London,,University,Chef,, +784,S1B-074,3,C,,yes,,Lawrence,Jane,20,female,British,London,,Secondary,Student,, +785,S1B-075,1,A,,yes,Chairman,,,26-45,male,British,,,University,"Dean of Arts Faculty, UCL",, +786,S1B-075,1,B,,yes,,,,,male,,,,University,Academic,,, +787,S1B-075,1,C,,yes,,,,,female,,,,University,Academic,,, +788,S1B-075,1,D,,yes,,,,,male,,,,University,Academic,,, +789,S1B-075,1,E,,yes,,Hudson,Dick,26-45,male,British,,,University,Lecturer in Linguistics,,, +790,S1B-075,1,F,,yes,,,,,male,,,,University,Academic,,, +791,S1B-075,1,G,,yes,,,,,male,,,,University,Academic,,, +792,S1B-075,1,H,,yes,,,,,male,,,,University,Academic,,, +793,S1B-075,1,I,,yes,,Guppy,Dave,26-45,male,British,,,University,Computer operator,,, +794,S1B-075,1,J,,yes,,,,,male,,,,University,Academic,,, +795,S1B-076,1,A,,yes,,Procter,Paul,46-65,male,British,,BA,University,Lexicographer,,, +796,S1B-076,1,B,,yes,,Rosta,And,18-25,male,British,NW England,"BA in Linguistics, UCL",University,PhD student,,, +797,S1B-076,1,C,,yes,,,Paul,18-25,male,British,,,University,Computer programmer,,, +798,S1B-077,1,A,,yes,Chairman,Donoghue,Helen,26-45,female,British,SE England,Grammar School; Bristol University,University,Senior Lecturer in Microbiology,,,"Lived in Bristol, Bradford, London" +799,S1B-077,1,B,,yes,,,Rachel,26-45,female,British,,,University,Academic,,, +800,S1B-077,1,C,,yes,,,,,female,,,,,,,, +801,S1B-077,1,D,,yes,,,,,male,,,,,,,, +802,S1B-077,1,E,,yes,,,Marjorie,,female,,,,, +803,S1B-077,1,F,,yes,,Agnew,Clive,26-45,male,British,,PhD,University,Lecturer in Geography +804,S1B-078,1,A,,yes,Chairman,,Carol,46-65,female,British,,,Secondary,Student +805,S1B-078,1,B,,yes,,,Denis,66+,male,British,Northumbria,,Secondary,Student +806,S1B-078,1,C,,yes,,,Chris,26-45,female,British,London,,Secondary,Student +807,S1B-078,1,D,,yes,,,Ted,46-65,male,British,London,,Secondary,Student +808,S1B-078,1,E,,yes,,,,46-65,female,British,London,,Secondary,Student +809,S1B-079,1,A,,yes,Chairman,,Andy,18-25,male,British,London,,Secondary,Student +810,S1B-079,1,B,,yes,,,Carol,18-25,male,British,London,,Secondary,Student +811,S1B-079,1,C,,yes,,,,18-25,male,British,Heart of England,,Secondary,Student +812,S1B-079,1,D,,yes,,,,18-25,male,British,London,,Secondary,Student +813,S1B-079,1,E,,yes,,,Katherine,18-25,female,British,London,,Secondary,Student +814,S1B-079,1,F,,yes,,Thompson,Katherine,18-25,female,British,London,,Secondary,Student +815,S1B-079,1,G,,yes,,,Joe,18-25,male,British,London,,Secondary,Student +816,S1B-079,1,H,,yes,,,Emma,18-25,female,British,London,,Secondary,Student +817,S1B-079,1,I,,yes,,,,18-25,female,British,London,,Secondary,Student +818,S1B-079,1,J,,yes,,,,18-25,male,British,Middle England,,Secondary,Student,, +819,S1B-080,1,A,,yes,,,Ross,27,male,British,Scotland,,University,Insurance salesman,, +820,S1B-080,1,B,,yes,,,,25,female,British,SE England,,Secondary,Student,, +821,S1B-080,2,A,,yes,,,Ross,27,male,British,Scotland,,University,Insurance salesman,, +822,S1B-080,2,B,,yes,,,,32,male,British,London,,University,Lecturer,, +823,S2A-001,1,A,,yes,,Ingham,Mike,26-45,male,British,,,,,, +824,S2A-002,1,A,,yes,,Robertson,Ian,26-45,male,British,,,,,, +825,S2A-003,1,A,,yes,,Green,Alan,26-45,male,British,Ireland,,,,, +826,S2A-004,1,A,,yes,,French,Ray,46-65,male,British,NW England,University of Leeds,University,Sports reporter,,"French, Latin, Russian" +827,S2A-005,1,A,,yes,,Bromley,Peter,46-65,male,British,NW England,,Secondary,Sports reporter,,None +828,S2A-005,2,A,,yes,,McKenzie,Lee,26-45,male,British,SE England,,University,Sports reporter,,French +829,S2A-005,3,A,,yes,,Bromley,Peter,46-65,male,British,NW England,,Secondary,Sports reporter,,None +830,S2A-005,4,A,,yes,,McKenzie,Lee,26-45,male,British,SE England,,University,Sports reporter,,French +831,S2A-005,5,A,,yes,,Bromley,Peter,46-65,male,British,NW England,,Secondary,Sports reporter,,None +832,S2A-006,1,A,,yes,,Bromley,Peter,46-65,male,British,NW England,,Secondary,Sports reporter,,None +833,S2A-006,2,A,,yes,,Gardner,Graham,46-65,male,British,,,,,, +834,S2A-006,3,A,,yes,,Gardner,Graham,46-65,male,British,,,, +835,S2A-006,4,A,,yes,,Gardner,Graham,46-65,male,British,,,, +836,S2A-006,5,A,,yes,,Gardner,Graham,46-65,male,British,,,, +837,S2A-007,1,A,,yes,,Parry,Alan,46-65,male,British,,,, +838,S2A-007,2,A,,yes,,Matthews,Peter,,male,British,,,, +839,S2A-007,3,A,,yes,,Parry,Alan,46-65,male,British,,,, +840,S2A-007,4,A,,yes,,Matthews,Peter,,male,British,,,, +841,S2A-007,5,A,,yes,,Parry,Alan,46-65,male,British,,,, +842,S2A-007,6,A,,yes,,Ovett,Steve,36,male,British,SE England,,Secondary,Former athlete +843,S2A-007,7,A,,yes,,Matthews,Peter,,male,British,,,, +844,S2A-007,8,A,,yes,,Parry,Alan,46-65,male,British,,,, +845,S2A-007,9,A,,yes,,Ovett,Steve,36,male,British,SE England,,Secondary,Former athlete +846,S2A-007,10,A,,yes,,Parry,Alan,46-65,male,British,,,, +847,S2A-007,11,A,,yes,,Ovett,Steve,36,male,British,SE England,,Secondary,Former athlete +848,S2A-007,12,A,,yes,,Parry,Alan,46-65,male,British,,,, +849,S2A-007,13,A,,yes,,Ovett,Steve,36,male,British,SE England,,Secondary,Former athlete +850,S2A-008,1,A,,yes,,Spencer,John,46-65,male,British,,,,Sports reporter,, +851,S2A-008,2,A,,yes,,Bays,James,,male,British,,,,,, +852,S2A-008,3,A,,yes,,Neil,Andrew,42,male,British,Scotland,"Paisley Grammar School; University of Glasgow (MA Politics & Economics, 1971)",University,"Journalist, editor `The Sunday Times'",, +853,S2A-008,4,A,,yes,,Bays,James,,male,British,,,,,, +854,S2A-008,5,A,,yes,,Neil,Andrew,42,male,British,Scotland,"Paisley Grammar School; University of Glasgow (MA Politics & Economics, 1971)",University,"Journalist, editor `The Sunday Times'",, +855,S2A-008,6,A,,yes,,Bays,James,,male,British,,,,,, +856,S2A-008,7,A,,yes,,Parry,Alan,46-65,male,British,,,,Sports reporter,, +857,S2A-009,1,A,,yes,,Darke,Ian,26-45,male,British,SE England,,Secondary,Sports reporter,,None +858,S2A-010,1,A,,yes,,Hawthorne,Rob,,male,British,,,,,, +859,S2A-011,1,A,,yes,,Dimbleby,Jonathan,47,male,British,London,,University,"Journalist, broadcaster",, +860,S2A-012,1,A,,yes,,Hawthorne,Rob,,male,British,,,,Sports reporter,, +861,S2A-012,2,A,,yes,,Harris,Nick,26-45,male,British,SE England,,Secondary,Sports reporter,,None +862,S2A-012,3,A,,yes,,Smith,Andy,26-45,male,British,,,,,, +863,S2A-012,4,A,,yes,,Hawthorne,Rob,,male,British,,,,Sports reporter,, +864,S2A-012,5,A,,yes,,,,,male,,,,,,, +865,S2A-012,6,A,,yes,,,,,male,,,,,,, +866,S2A-012,7,A,,yes,,,,,male,,,,, +867,S2A-013,1,A,,yes,,,,,male,,,,, +868,S2A-013,2,A,,yes,,,,,male,,,,, +869,S2A-013,3,A,,yes,,,,,male,,,,, +870,S2A-013,4,A,,yes,,,,,male,,,,, +871,S2A-013,5,A,,yes,,,,,male,,,,, +872,S2A-014,1,A,,yes,,Green,Alan,26-45,male,British,Ireland,,University,Broadcaster +873,S2A-015,1,A,,yes,,,,,male,,,,, +874,S2A-016,1,A,,yes,,,,,male,,,,, +875,S2A-016,2,A,,yes,,,,,male,,,,, +876,S2A-016,3,A,,yes,,,,,male,,,,, +877,S2A-016,4,A,,yes,,,,,male,,,,, +878,S2A-016,5,A,,yes,,,,,male,,,,, +879,S2A-017,1,A,,yes,,,,,male,,,,, +880,S2A-018,1,A,,yes,,Lockwood,Tony,26-45,male,British,,,, +881,S2A-019,1,A,,yes,,Dimbleby,Jonathan,47,male,British,SE England,,University,Broadcaster +882,S2A-020,1,A,,yes,,Hosken,John,46-65,male,British,West England,,Secondary,Broadcaster,,"Spanish, French", +883,S2A-020,2,A,,yes,,McLellan,Andrew,46-65,male,British,Scotland,,University,Broadcaster,,"Latin, Greek, Hebrew, French, German", +884,S2A-021,1,A,,yes,Lecturer,Newsam,Sir Peter,63,male,British,Yorkshire,"Clifton College, Yorks; Queen's College, Oxford (MA, DipEd)",University,"Director, London Institute of Education",,, +885,S2A-022,1,A,,yes,Lecturer,James,Simon,26-45,male,British,London,MA(Oxon),University,Military Archaeologist,,Italian, +886,S2A-023,1,A,,yes,Lecturer,Banham,John,51,male,British,London,"Charterhouse School; Queen's College, Cambridge (BA Natural Sciences)",University,"Director, Confederation of British Industry",,, +887,S2A-024,1,A,,yes,Lecturer,Vanags,Patsy,26-45,female,British,London,,University,Part-time lecturer,,, +888,S2A-025,1,A,,yes,Lecturer,Chandler,A.,26-45,male,British,London,,University,Lecturer in Engineering,,, +889,S2A-026,1,A,,yes,Lecturer,Jeffreys,David,26-45,male,British,Heart of England,,University,Lecturer in Egyptology,,, +890,S2A-027,1,A,,yes,Lecturer,Steinberg,Hannah,46-65,female,British,Germany,PhD,University,Professor of Pharmacology,,German,Moved to Britain aged c.7 +891,S2A-028,1,A,,yes,Lecturer,Johnstone,Wyndham,26-45,male,British,London,"BSc Physics, PhD",University,Research Scientist,,None, +892,S2A-028,2,A,,yes,Lecturer,Abbott,David,26-45,male,British,NW England,B.Eng. (Hons),University,Network Administrator,,,Lives in Greater Manchester +893,S2A-028,3,A,,yes,Lecturer,Roberts,Derek,46-65,male,British,London,PhD,University,"Provost, UCL; ex-businessman",,, +894,S2A-029,1,A,,yes,Lecturer,Gower,Nicole,26-45,female,British,SE England,BSc Hons Human Biology,University,Research Assistant/Trial Coordinator,,French, +895,S2A-029,2,A,,yes,Lecturer,Betts,Andy,26-45,male,British,SE England,"BSc, PhD",University,Lecturer,,"French, German", +896,S2A-029,3,A,,yes,Lecturer,Newton,Andrew,26-45,male,British,London,"BSc Physics, MSc Information Technology",University,Research Fellow,,French, +897,S2A-030,1,A,,yes,Lecturer,Local,John,46-65,male,British,,PhD,University,"Lecturer in Linguistics, Univ. of York",,, +898,S2A-031,1,A,,yes,Lecturer,Steedman,Hilary,46-65,female,British,,,,,,, +899,S2A-031,2,A,,yes,Lecturer,Cassells,Sir John,64,male,British,Yorkshire,"Sedbergh School, Yorks.; Trinity Colege, Cambridge (Classics, 1951)",University,"Dir., National Committee on Education",,,Former Civil Servant +900,S2A-032,1,A,,yes,Lecturer,Hutchins,John,46-65,male,British,SE England,,University,University lecturer,,, +901,S2A-033,1,A,,yes,Lecturer,Ash,Katy,26-45,female,British,SE England,BSc,University,Clinical Trial Data Manager,,None, +902,S2A-033,2,A,,yes,Lecturer,Edwards,D.R.L.,26-45,male,British,London,"M.B.B.S., M.R.C. Psych.",University,Associate Research Fellow in Psychiatry,,"French, some Danish & Russian", +903,S2A-033,3,A,,yes,Lecturer,Lansbury,A.N.,26-45,female,British,SE England,"BSc, PhD",University,Physicist,,, +904,S2A-034,1,A,,yes,Lecturer,Wood,Andrew,18-25,male,British,Yorkshire,"BSc Applied Chemistry, MSc",University,PhD Student,,None, +905,S2A-034,2,A,,yes,Lecturer,Morrissey,Mark,18-25,male,British,Heart of England,BSc Computer Science & Electronic Engineering,University,Computer Systems Administration,,, +906,S2A-034,3,A,,yes,Lecturer,Ramsay,R.,26-45,female,British,SE England,"MA, MRBS",University,Doctor,,"French, German", +907,S2A-034,4,A,,yes,Lecturer,Stutchfield,,26-45,female,British,,,,,,, +908,S2A-035,1,A,,yes,Lecturer,Spencer,Sharon,26-45,female,British,London,"BSc, PhD Biochemistry",University,Associate Research Assistant,,None, +909,S2A-035,2,A,,yes,Lecturer,James,Lindsay,26-45,female,British,UK,BSc Social Science,University,"Registered General Nurse, Research Assistant",,None, +910,S2A-035,3,A,,yes,Lecturer,Lang,Harriet,18-25,female,British,SE England,BSc Speech Communication,University,Research Assistant,,French, +911,S2A-036,1,A,,yes,Lecturer,Weitzmann,Michael,26-45,male,British,London,,University,Lecturer in Jewish & Hebrew Studies,,Hebrew, +912,S2A-037,1,A,,yes,Lecturer,Roberts,Derek,46-65,male,British,London,PhD,University,"Provost, UCL; ex-businessman",,, +913,S2A-038,1,A,,yes,Lecturer,Laslett,Sir Peter,76,male,British,London,Grammar School; Cambridge,University,"Reader in Politics & Hist. Soc. Struct, 1966-83, Cambridge","FBA, 1979",, +914,S2A-039,1,A,,yes,Lecturer,Philips,Andrew,46,male,British,Wales,Reading University (BA),University,"Director, Humanities & Soc. Sci., British Library",ALA,, +915,S2A-040,1,A,,yes,Lecturer,Cook,Peter,46-65,male,British,Canada,,University,Professor of Architecture,,, +916,S2A-041,1,A,,yes,Lecturer,Cullen,A.L.,46-65,male,British,London,,University,Professor of Electrical Engineering,,, +917,S2A-042,1,A,,yes,Lecturer,Elkins,R.P.,46-65,male,British,London,,University,Professor of Endocrinology,,, +918,S2A-043,1,A,,yes,Lecturer,Rapley,C.G.,46-65,male,British,London,,University,Professor of Physics & Astronomy,,, +919,S2A-044,1,A,,yes,Lecturer,Twining,W.L.,46-65,male,British,London,,University,Professor of Laws,,, +920,S2A-045,1,A,,yes,Lecturer,Grosvenor,Gerald,40,male,British,London,Harrow School; military training,Secondary,Businessman,,,6th Duke of Westminster +921,S2A-046,1,A,,yes,Lecturer,Rose,Graham,18-25,male,British,Northumbria,"BSc Geography, MSc Micropalaeontology",University,Student,,Indonesian, +922,S2A-046,2,A,,yes,Lecturer,Shaw,Andrew,26-45,male,British,East Anglia,BSc Toxicology & Pharmacology; PhD,University,Lecturer in Toxicology,,None, +923,S2A-046,3,A,,yes,Lecturer,Cope,Mark,26-45,male,British,NW England,"BSc (Eng), PhD",University,Lecturer in Medical Physics & Bioengineering,,None, +924,S2A-047,1,A,,yes,Lecturer,Macaskill,C.,26-45,female,British,Middle England,"MSc, PhD Medical Demography",University,Lecturer,,"French, Tamasheq", +925,S2A-048,1,A,,yes,Lecturer,Tait,W.,46-65,male,British,London,,University,Lecturer in Egyptology,,, +926,S2A-049,1,A,,yes,Lecturer,Burgoyne,John,46-65,male,British,Cumbria,,University,,,, +927,S2A-050,1,A,,yes,Interviewee,McCullin,Don,46-65,male,British,London,,Secondary,Photojournalist,,, +928,S2A-050,2,A,,yes,Interviewee,McCullin,Don,46-65,male,British,London,,Secondary,Photojournalist,,, +929,S2A-051,1,A,,yes,,King,C.A.,55,male,British,London,"BSc (Zoology), MSc, PhD (Biochemistry)",University,Lecturer in Biology,,None, +930,S2A-052,1,A,,yes,,Hart,George,26-45,male,British,London,,University,Archaeologist,, +931,S2A-053,1,A,,yes,,Delpy,C.,46-65,male,British,,PhD,University,University Lecturer,, +932,S2A-054,1,A,,yes,,,,,male,,,,,,, +933,S2A-054,2,A,,yes,,,,,male,,,,,,, +934,S2A-055,1,A,,yes,,Baker,Sue,26-45,female,British,SE England,,University,Broadcaster,,French +935,S2A-055,2,A,,yes,,Clarkson,Jeremy,26-45,male,British,Yorkshire,Public School,Secondary,Broadcaster,, +936,S2A-055,3,A,,yes,,Clarkson,Jeremy,26-45,male,British,Yorkshire,Public School,Secondary,Broadcaster,, +937,S2A-056,1,A,,yes,,Ball,Ginny,26-45,female,British,London,BSc (Hons),University,Lecturer,,"French, some German" +938,S2A-056,2,A,,yes,,Ball,Ginny,26-45,female,British,London,BSc (Hons),University,Lecturer,,"French, some German" +939,S2A-057,1,A,,yes,,Bindman,David,46-65,male,British,London,,University,Professor of the History of Art,, +940,S2A-057,2,A,,yes,,Bindman,David,46-65,male,British,London,,University,Professor of the History of Art,, +941,S2A-058,1,A,,yes,,Agnew,Clive,26-45,male,British,,,University,Lecturer in Geography,, +942,S2A-058,2,A,,yes,,Walton,Nick,26-45,male,British,London,"BSc, PhD",University,Astronomer,,Dutch +943,S2A-058,3,A,,yes,,Burt,Avril,46-65,female,British,London,BSc (Hons),University,Medical Research Assistant,,None +944,S2A-059,1,A,,yes,,Brend,Barbara,50,female,British,,"BA French, MA Old French, MPhil, PhD (SOAS)",University,Freelance lecturer in Islamic Art,, +945,S2A-060,1,A,,yes,,Loverance,Rowena,37,female,British,,"BA Modern History, Somerville College, Oxford",University,"Lecturer, archaeologist",, +946,S2A-061,1,A,,yes,,Davis,Michael,46-65,male,British,,,University,Judge,,, +947,S2A-062,1,A,,yes,,Martin,J.,,male,British,,,University,Queen's Counsel,,, +948,S2A-063,1,A,,yes,,Davis,Michael,,male,British,,,University,Judge,,, +949,S2A-064,1,A,,yes,,,,,male,,,,University,Judge,,, +950,S2A-064,2,A,,yes,,Browne,Desmond,,male,British,,,University,Queen's Counsel,,, +951,S2A-065,1,A,,yes,,Evans,John Field,63,male,British,Wales,"Cardiff High School; Exeter College, Oxford (MA)",University,High Court Judge,,, +952,S2A-066,1,A,,yes,,Hoffman,Sir Leonard,57,male,British,South Africa,"University of Cape Town (BA); Oxford (MA,BCL)",University,High Court Judge,,,"Rhodes Scholar to Queen's College, Oxford, 1950s" +953,S2A-066,2,A,,yes,,Hirst,David,65,male,British,East Anglia,"Eton; Trinity College, Cambridge (MA)",University,High Court Judge,,, +954,S2A-067,1,A,,yes,,Cox,P.J.,46-65,male,British,,,University,High Court Judge,,, +955,S2A-068,1,A,,yes,,Pickup,James,46-65,male,British,,,University,Lawyer,,, +956,S2A-068,2,A,,yes,,Pickup,James,46-65,male,British,,,University,Lawyer,,, +957,S2A-069,1,A,,yes,,Knox,Sir John Leonard,65,male,British,,"Radley College; Worcester College, Oxford",University,High Court Judge,,, +958,S2A-070,1,A,,yes,,Brooke,Sir Henry,55,male,British,,"Marlborough College; Balliol College, Oxford",University,High Court Judge,,, +959,S2B-001,1,A,,yes,Newscaster,Snow,John,53,male,,Ireland,"Wellington College; Balliol College, Oxford",University,"Broadcaster, journalist",,, +960,S2B-001,1,B,,yes,,Gowing,Nick,40,male,British,London,Bristol University,University,"Broadcaster, journalist",,, +961,S2B-001,1,C,,yes,,Irving,Niall,26-45,male,British,,,,"Group Captain, Royal Air Force",,, +962,S2B-001,1,D,,yes,,Veetch,Andrew,26-45,male,British,,,University,Broadcaster (Science Correspondent),,, +963,S2B-001,1,E,,yes,,Hay,Alastair,26-45,male,British,,,University,"Scientist, Leeds University",,, +964,S2B-002,1,A,,yes,Newscaster,Snow,John,53,male,British,Ireland,"Wellington College, Somerset; Balliol College, Oxford (BA Hons)",University,Broadcaster,,, +965,S2B-002,1,B,,yes,,Neild,Paul,26-45,male,British,NW England,,University,"Broadcaster, journalist",,, +966,S2B-002,1,C,,yes,,Graham,Martin,26-45,male,British,,,,Businessman,,,"Representative, British Chambers of Commerce" +967,S2B-002,1,D,,yes,,Abbotts,Bill,46-65,male,British,,,,Businessman,,, +968,S2B-002,1,E,,yes,,Wells,John,46-65,male,British,,PhD,University,"Academic, University of Cambridge",,, +969,S2B-002,1,F,,yes,,Ross,Ian,46-65,male,British,,,,Broadcaster (Industrial Correspondent),,, +970,S2B-002,1,G,,yes,,Grantham,Roy,46-65,male,British,,,,Trade Union Representative,,, +971,S2B-002,1,H,,yes,,Young,Mark,46-65,male,British,,,,Airline Pilot,,, +972,S2B-002,1,I,,yes,,Goodman,Eleanor,26-45,female,British,,,,"Braodcaster, journalist",,, +973,S2B-002,1,J,,yes,,Major,John,47,male,British,London,,Secondary,Politician,,, +974,S2B-002,1,K,,yes,,Biffin,John,61,male,British,London,"Jesus College, Cambridge (BA)",University,Politician,,, +975,S2B-003,1,A,,yes,Newscaster,MacDonald,Trevor,52,male,,Trinidad,,University,"Broadcaster, journalist",,, +976,S2B-003,1,B,,yes,,Brunson,Michael,51,male,British,East Anglia,"Queen's College, Oxford",University,"Broadcaster, journalist",,, +977,S2B-003,1,C,,yes,,Major,John,47,male,British,London,,Secondary,Politician,,, +978,S2B-003,1,D,,yes,,Mellor,David,42,male,British,London,"Swanage Grammar School; Christ's College, Cambridge (BA Hons, 1970)",University,"Politician, barrister",,, +979,S2B-003,1,E,,yes,,Hurd,Douglas,61,male,British,,"Eton, Trinity College Cambridge",University,Politician,,, +980,S2B-003,1,F,,yes,,Yeo,Tim,46,male,British,,"Charterhouse School; Emmanuel College, Cambridge",University,"Politician, businessman",,, +981,S2B-003,1,G,,yes,,Heseltine,Michael,58,male,British,,"Shrewsbury School; Pembroke College, Oxford",University,"Politician, businessman",,, +982,S2B-003,1,H,,yes,,Temple-Morris,Peter,53,male,British,,"Hillstone School, Malvern; Malvern College; St Catherine's College, Cambridge",University,"Politician, solicitor",,, +983,S2B-003,1,I,,yes,,Somerville,Julia,26-45,female,British,,,University,Broadcaster,,, +984,S2B-003,1,J,,yes,,Bennett-Powell,Jane,26-45,female,British,,,University,Broadcaster,,, +985,S2B-003,1,K,,yes,,Oppenheim,Phillip,35,male,British,,"Harrow School; Oriel College, Oxford",University,"Politician, company director",,, +986,S2B-003,1,L,,yes,,Bartlett,Peter,26-45,male,British,,,,Businessman,,, +987,S2B-003,1,M,,yes,,Neal,Jill,26-45,female,British,,,,Company owner,,, +988,S2B-003,1,N,,yes,,Spencer,Alan,46-65,male,British,,,,Marketing Manager,,, +989,S2B-003,1,O,,yes,,Eley,Brian,46-65,male,British,,,,Constituency agent,,, +990,S2B-003,1,P,,yes,,Allen,Peter,45,male,British,London,,,Broadcaster,,,Worked in Australia +991,S2B-003,1,Q,,yes,,Thatcher,Carol,26-45,female,British,London,,,Freelance journalist,,,Worked in Australia +992,S2B-003,1,R,,yes,,Thirkettle,Joan,26-45,female,British,,,University,Journalist,,, +993,S2B-003,1,S,,yes,,Heseltine,Anne,46-65,female,British,,,,,,, +994,S2B-004,1,A,,yes,Newscaster,Martin,Brian,46-65,male,British,,,,Broadcaster +995,S2B-004,1,B,,yes,,Frei,Matt,46-65,male,British,,,University,Broadcaster (Foreign Affairs Correspondent) +996,S2B-004,1,C,,yes,,Laity,Mark,26-45,male,British,,,University,Broadcaster (Defence Correspondent) +997,S2B-004,1,D,,yes,,King,Tom,58,male,British,,"Rugby School; Emmanuel College, Oxford",University,Politician +998,S2B-004,1,E,,yes,,Major,John,47,male,British,London,,Secondary,Politician +999,S2B-004,1,F,,yes,,Sacker,Stephen,26-45,male,British,,,University,Broadcaster +1000,S2B-004,1,G,,yes,,Carver,Tom,26-45,male,British,,,University,Broadcaster +1001,S2B-004,1,H,,yes,,Simpson,Bob,46-65,male,British,,,University,Broadcaster +1002,S2B-004,1,I,,yes,,Kelly,June,26-45,female,British,,,University,Broadcaster +1003,S2B-005,1,A,,yes,Newscaster,Perkins,Brian,46-65,male,British,,,,Broadcaster +1004,S2B-005,1,B,,yes,,Sinkinson,Bob,,male,British,,,,"Braodcaster, journalist" +1005,S2B-005,1,C,,yes,,Irving,Niall,26-45,male,British,,,,"Group Captain, Royal Air Force" +1006,S2B-005,1,D,,yes,,Laity,Mark,26-45,male,British,,,University,Broadcaster (Defence Correspondent) +1007,S2B-005,1,E,,yes,,Little,Alan,26-45,male,British,,,,"Broadcaster, journalist" +1008,S2B-005,1,F,,yes,,Harris,John,,male,British,,,,"Broadcaster, journalist" +1009,S2B-005,1,G,,yes,,Major,John,47,male,British,London,,Secondary,Politician +1010,S2B-006,1,A,,yes,Presenter,Redhead,Brian,62,male,British,Northumbria,Grammar School; Cambridge,University,Broadcaster +1011,S2B-006,1,B,,yes,Newscaster,Macmillan,Laurie,26-45,female,British,,,,Broadcaster +1012,S2B-006,1,C,,yes,,MacNeill,David,26-45,male,British,,,,Broadcaster (Washington Correspondent) +1013,S2B-006,1,D,,yes,,Dowell,Martin,,male,British,,,,Broadcaster +1014,S2B-006,1,E,,yes,,Hawkesley,Humphrey,,male,British,,,,Broadcaster +1015,S2B-006,1,F,,yes,,Connolly,Kevin,,male,British,,,University,Broadcaster +1016,S2B-006,1,G,,yes,,Johnson-Smith,Geoffrey,67,male,British,,"Charterhouse Sch.; Lincoln College, Oxford (BA Hons Politics, Philosophy, Economics, 1949)",University,Politician +1017,S2B-007,1,A,,yes,Presenter,Naughtie,James,40,male,British,Scotland,Grammar School; Aberdeen University; Syracuse University,University,Broadcaster +1018,S2B-007,1,B,,yes,Newscaster,Roper,Alison,26-45,female,British,,,,Broadcaster +1019,S2B-007,1,C,,yes,,Harrison,John,,male,British,,,,Broadcaster +1020,S2B-007,1,D,,yes,,Hurd,Douglas,58,male,British,,"Eton; Trinity College, Cambridge",University,Politician +1021,S2B-007,1,E,,yes,,Lawson,Nigel,59,male,British,,"Christchurch, Oxford",University,Politician +1022,S2B-007,1,F,,yes,,Douglas,Torin,,male,British,,,,Broadcaster +1023,S2B-007,1,G,,yes,,Mellor,David,42,male,British,London,"Swanage Grammar School; Christ's College, Cambridge (BA Hons, 1970)",University,"Politician, barrister" +1024,S2B-007,1,H,,yes,,Moncross,David,,male,British,,,,Broadcaster +1025,S2B-007,1,I,,yes,,Tully,Mark,56,male,British,,"Twyford School, Winchester; Cambridge (MA)",University,Broadcaster. BBC Correspondent in India +1026,S2B-007,1,J,,yes,,Lees,David,,male,,,,, +1027,S2B-007,1,K,,yes,,Harrod,Dominic,,male,,,,,Broadcaster +1028,S2B-008,1,A,,yes,,Naughtie,James,40,male,British,Scotland,Grammar School; Aberdeen University; Syracuse University,University,Broadcaster +1029,S2B-008,1,B,,yes,,Green,Charlotte,26-45,female,British,,,,Broadcaster +1030,S2B-008,1,C,,yes,,King,Tom,58,male,British,,"Rugby School; Emmanuel College, Oxford",University,Politician +1031,S2B-008,1,D,,yes,,Laity,Mark,26-45,male,British,,,University,Broadcaster (Defence Correspondent) +1032,S2B-008,1,E,,yes,,Jones,Phillip,,male,British,,,,Broadcaster +1033,S2B-008,1,F,,yes,,Harris,Jeremy,,male,British,,,University,Broadcaster +1034,S2B-008,1,G,,yes,,Simpson,Bob,46-65,male,British,,,University,Broadcaster +1035,S2B-008,1,H,,yes,,Birchall,Jonathan,,male,British,,,,Broadcaster +1036,S2B-008,1,I,,yes,,Paley,Joe,,male,British,,,University,Broadcaster +1037,S2B-008,1,J,,yes,,Hearing,Roger,26-45,male,British,,,,Broadcaster +1038,S2B-009,1,A,,yes,Newscaster,Corfield,Corrie,26-45,female,British,,,,Broadcaster +1039,S2B-009,1,B,,yes,,Orchard,Robert,46-65,male,British,,,,Broadcaster (Political Correspondent) +1040,S2B-009,1,C,,yes,,Brodie,Alex,26-45,male,British,,,,Broadcaster +1041,S2B-009,1,D,,yes,,Thomas,Anne,26-45,female,British,,,,Broadcaster +1042,S2B-009,1,E,,yes,,,,,,,,,,,,, +1043,S2B-009,1,F,,yes,,Whitelaw,William,46-65,male,British,,,University,Politician,,, +1044,S2B-009,1,G,,yes,,Curtice,John,46-65,male,British,,,University,Academic,,, +1045,S2B-009,1,H,,yes,,Fletcher,Winston,54,male,British,London,"Westminster City School; St John's College, Cambridge (MA)",University,"Businessman; Visiting Professor, Lancaster Management School","Member, The Royal Society of Arts",, +1046,S2B-009,1,I,,yes,,Hurd,Douglas,61,male,British,,"Eton; Trinity College, Cambridge",University,Politician,,, +1047,S2B-010,1,A,,yes,Newscaster,Paxman,Jeremy,41,male,British,Yorkshire,Cambridge University,University,Broadcaster,,, +1048,S2B-010,1,B,,yes,,Wheeler,Charles,68,male,British,,Cranbrook School,Secondary,"Broadcaster, journalist",,, +1049,S2B-010,1,C,,yes,,Hannay,Sir David,56,male,British,,"Winchester College; New College, Oxford",University,British Ambassador to the UN,,,"Served in Tehran, Kabul, Brussels, Washington" +1050,S2B-010,1,D,,yes,,Stock,Francine,26-45,female,British,,,,Broadcaster,,, +1051,S2B-011,1,A,,yes,Newscaster,McDonald,Trevor,52,male,,Trinidad,,,Broadcaster,,, +1052,S2B-011,1,B,,yes,,Harris,Simon,,male,British,,,,"Broadcaster, journalist",,, +1053,S2B-011,1,C,,yes,,Attenborough,Liz,26-45,female,British,,,,Publisher,,, +1054,S2B-011,1,D,,yes,,Somerville,Julia,26-45,female,British,,,,Broadcaster,,, +1055,S2B-011,1,E,,yes,,Weiner,Libby,26-45,female,British,,,,Broadcaster,,, +1056,S2B-011,1,F,,yes,,Finley,Fiona,26-45,female,British,,,University,Medical doctor,,, +1057,S2B-011,1,G,,yes,,,,26-45,female,British,,,University,Hospital registrar,,, +1058,S2B-011,1,H,,yes,,Archer,Geoffrey,45,female,British,London,,University,"Broadcaster, journalist",,,Former solicitor's articled clerk +1059,S2B-011,1,I,,yes,,Dunlop,Alistair,46-65,male,British,,,University,Clergyman,,, +1060,S2B-011,1,J,,yes,,Allen,Bob,26-45,male,British,Scotland,,,"Representative, Scottish Fishermen's Association",,, +1061,S2B-011,1,K,,yes,,Hamilton,Archie,50,male,British,,Eton College,Secondary,Politician,,, +1062,S2B-011,1,L,,yes,,Foulkes,George,49,male,British,Scotland,"Keith Grammar School, Scotland; Edinburgh University (BSc 1964)",University,Politician,,, +1063,S2B-011,1,M,,yes,,Marshall,Penny,26-45,female,British,,,,"Broadcaster, journalist",,, +1064,S2B-011,1,N,,yes,,Hurd,Douglas,61,male,British,,"Eton College; Trinity College, Cambridge",University,Politician,,, +1065,S2B-012,1,A,,yes,Newscaster,Perkins,Brian,26-45,male,British,,,,Broadcaster,,, +1066,S2B-012,1,B,,yes,,Sykes,Hugh,26-45,male,British,,,,"Broadcaster, journalist",,, +1067,S2B-012,1,C,,yes,,Sharp,Richard,46-65,,British,,,University,"Editor, Jane's Fighting Ships",,, +1068,S2B-012,1,D,,yes,,Singleton,Valerie,54,female,British,London,"Royal Academy of Dramatic Art, London",University,"Broadcaster, journalist, ex-actress",,, +1069,S2B-012,1,E,,yes,,,,,female,British,,,,BBC World Service announcer,,, +1070,S2B-012,1,F,,yes,,Seal,Patrick,26-45,male,British,,,,"Broadcaster, journalist",,, +1071,S2B-012,1,G,,yes,,Reynolds,Paul,26-45,male,British,,,,"Broadcaster, journalist",,, +1072,S2B-012,1,H,,yes,,Smith,Norman,46-65,male,British,,,,"Broadcaster, journalist",,, +1073,S2B-013,1,A,,yes,Newscaster,Snow,Jon ,46-65,male,British,,,,Broadcaster,,, +1074,S2B-013,1,B,,yes,,Goodman,Eleanor,,female,British,,,,"Broadcaster, journalist" +1075,S2B-013,1,C,,yes,,,,,male,British,,,,"Broadcaster, journalist" +1076,S2B-013,1,D,,yes,,Hurd,Douglas,46-65,male,British,,,,Politician +1077,S2B-013,1,E,,yes,,Ridley,Nicholas,46-65,male,British,,,,Politician +1078,S2B-014,1,A,,yes,Newscaster,Clarke,Nick,,male,British,,,,Broadcaster +1079,S2B-014,1,B,,yes,,Major,John,47,male,British,London,,Secondary,Politician +1080,S2B-014,1,C,,yes,,Laity,Mark,26-45,male,British,,,,Broadcaster (Defence Correspondent) +1081,S2B-014,1,D,,yes,,Tye,Andrew,,male,British,,,,Broadcaster +1082,S2B-014,1,E,,yes,,Webb,Justin,,male,British,,,,Broadcaster +1083,S2B-014,1,F,,yes,,Kendal,Bridget,26-45,female,British,,,,Broadcaster +1084,S2B-014,1,G,,yes,,Reynolds,Paul,26-45,male,British,,,,Broadcaster +1085,S2B-015,1,A,,yes,Newscaster,Lang,Jackie,26-45,female,British,,,,Broadcaster +1086,S2B-015,1,B,,yes,,Hearing,Roger,,male,British,,,,Broadcaster +1087,S2B-015,1,C,,yes,,Reynolds,Paul,26-45,male,British,,,,Broadcaster (Diplomatic Correspondent) +1088,S2B-015,1,D,,yes,,Harris,Jeremy,,male,British,,,,Broadcaster +1089,S2B-015,1,E,,yes,,Simpson,Bob,46-65,male,British,,,,"Broadcaster, journalist" +1090,S2B-015,1,F,,yes,,Werrell,Tim,,male,,,,,"Broadcaster, journalist" +1091,S2B-015,1,G,,yes,,Quest,Richard,,male,,,,,Broadcaster (BBC Business Correspondent in USA) +1092,S2B-015,1,H,,yes,,Tomkys,Sarah,26-45,female,British,,,,"Broadcaster, journalist" +1093,S2B-015,1,I,,yes,,,Heather,,female,British,,,,County Education Officer +1094,S2B-015,1,J,,yes,,McNally,,,male,British,,,,County Councillor +1095,S2B-015,2,A,,yes,Newscaster,Campbell,David,26-45,male,British,,,,Broadcaster +1096,S2B-015,2,B,,yes,,Brodie,Alex,26-45,male,British,,,,Broadcaster +1097,S2B-015,2,C,,yes,,Hamilton,Archie,50,male,British,Scotland,Eton,Secondary,Politician +1098,S2B-015,2,D,,yes,,Laity,Mark,,male,British,,,,"Broadcaster, journalist" +1099,S2B-016,1,A,,yes,Newscaster,Hughes,Howard,,male,British,,,,Barrister +1100,S2B-016,1,B,,yes,,Muirhead,Patrick,,male,British,,,,"Broadcaster, journalist" +1101,S2B-016,1,C,,yes,,Lorimer,James,,male,British,,,,"Broadcaster, journalist" +1102,S2B-016,2,A,,yes,Newscaster,,,,male,,,,,"Broadcaster, journalist" +1103,S2B-016,2,B,,yes,,Atkinson,Caroline,26-45,female,British,,,,"Broadcaster, journalist" +1104,S2B-016,2,C,,yes,,Murphy,Peter,,male,,,,,"Broadcaster, journalist" +1105,S2B-016,2,D,,yes,,Farrar-Hockley,Gen. Sir Anthony,67,male,British,,Exeter School,Secondary,British Army General (retired); military historian +1106,S2B-016,3,A,,yes,Newscaster,Hughes,Howard,,male,British,,,,Broadcaster,,, +1107,S2B-016,3,B,,yes,,Ashdown,Paddy,45,male,British,India,Bedfordshire Public School; Hong Kong University,University,"Politician, ex-soldier",,Chinese,Moved to Britain age 4 +1108,S2B-016,3,C,,yes,,Ridley,Nicholas,62,male,British,,"Eton; Balliol College, Oxford",University,"Politician, Civil Engineer",,, +1109,S2B-016,4,A,,yes,Newscaster,Cambourne,David,26-45,male,British,,,,"Broadcaster, journalist",,, +1110,S2B-016,4,B,,yes,,Windsor,Elisabeth,46-65,female,British,London,,Secondary,HM The Queen,,, +1111,S2B-016,4,C,,yes,,Connolly,Kevin,26-45,male,British,,,,Broadcaster,,, +1112,S2B-016,4,D,,yes,,Peacock,Matt,26-45,male,British,,,,Broadcaster,,, +1113,S2B-017,1,A,,yes,Presenter,Kershaw,Richard,26-45,male,British,London,Cambridge University; University of Virginia Graduate School,University,"Broadcaster, journalist",,, +1114,S2B-017,1,B,,yes,Newscaster,Crawford,Andrew,26-45,male,British,,,,"Broadcaster, journalist",,, +1115,S2B-017,1,C,,yes,,MacNeill,David,26-45,male,British,,,,Broadcaster (Washington Correspondent),,, +1116,S2B-017,1,D,,yes,,Orchard,Robert,46-65,male,British,,,,Broadcaster (Political Correspondent),,, +1117,S2B-018,1,A,,yes,Newscaster,Buerk,Michael,45,male,British,,Solihull School,Secondary,"Broadcaster, journalist",,, +1118,S2B-018,2,A,,yes,Newscaster,Clarke,Nick,,male,British,,,,Broadcaster,,, +1119,S2B-018,2,B,,yes,,Llewellyn,Tim,,male,British,,,,"Broadcaster, journalist",,, +1120,S2B-018,2,C,,yes,,Kinnock,Neil,49,male,British,Wales,University of Wales,University,Politician,,, +1121,S2B-018,2,D,,yes,,Richards,Stephen,,male,British,,,,"Broadcaster, journalist",,, +1122,S2B-019,1,A,,yes,Presenter,Naughtie,James,40,male,British,Scotland,Grammar School; Aberdeen University; Syracuse University,University,"Broadcaster, journalist",,, +1123,S2B-019,1,B,,yes,Newscaster,Green,Charlotte,26-45,female,British,,,,"Broadcaster, journalist",,, +1124,S2B-019,1,C,,yes,,Peel,Jane,26-45,female,British,,,University,Broadcaster (Legal Affairs Correspondent),,, +1125,S2B-019,1,D,,yes,,Smith,Peter,,male,British,,,,Broadcaster (Business Affairs Correspondent),,, +1126,S2B-019,1,E,,yes,,Simpson,Bob,46-65,male,British,,,,Broadcaster,,, +1127,S2B-019,1,F,,yes,,Willis,David,,male,British,,,,"Broadcaster, journalist",,, +1128,S2B-019,1,G,,yes,,Hoggett,Brenda,46,female,British,Yorkshire,"Richmond High School, Yorkshire; Girton College, Cambridge (MA); Gray's Inn",University,Law Commissioner,,,"Visiting Professor, King's College, London" +1129,S2B-020,1,A,,yes,,Hayton,Phillip,44,male,British,Yorkshire,,Secondary,"Broadcaster, journalist",,, +1130,S2B-020,1,B,,yes,,Price,Lance,26-45,male,British,,,,Broadcaster (Political Affairs Correspondent),,, +1131,S2B-020,1,C,,yes,,Patten,Chris,47,male,British,London,"Balliol College, Oxford",University,Politician,,, +1132,S2B-020,1,D,,yes,,,,,male,,,,,Broadcaster,,, +1133,S2B-020,1,E,,yes,,Hurd,Douglas,61,male,British,,Eton; Trinity College Cambridge,University,Politician,,, +1134,S2B-020,1,F,,yes,,,,,male,,,,,Broadcaster,,,Unnamed +1135,S2B-020,1,G,,yes,,Heseltine,Michael,58,male,British,,"Shrewsbury School; Pembroke College, Oxford",University,"Politician, businessman",,, +1136,S2B-020,2,A,,yes,Newscaster,Lithgo,Lynette,26-45,female,British,,,,"Broadcaster, journalist",,, +1137,S2B-020,2,B,,yes,,Sopel,David,,male,British,,,,"Broadcaster, journalist (Political Correspondent)",,, +1138,S2B-020,2,C,,yes,,Heseltine,Michael,58,male,British,,"Shrewsbury School; Pembroke College, Oxford",University,"Politician, businessman" +1139,S2B-020,2,D,,yes,,Newton,Tony,56,male,British,,"Trinity College, Oxford",University,Politician +1140,S2B-020,2,E,,yes,,Hurd,Douglas,61,male,British,,"Eton; Trinity College, Cambridge",University,Politician +1141,S2B-020,2,F,,yes,,Cunningham,John,52,male,British,Yorkshire,Jarrow Grammar School; Durham University (PhD),University,"Politician, chemist, lecturer" +1142,S2B-021,1,A,,yes,,Woodley,Paul,26-45,male,British,,,,Journalist +1143,S2B-021,2,A,,yes,,Jameson,Sue,26-45,female,British,,,,Journalist +1144,S2B-021,3,A,,yes,,Knight,Tim,26-45,male,British,,,,Journalist +1145,S2B-021,4,A,,yes,,Field,Catherine,26-45,female,British,,,,Journalist +1146,S2B-022,1,A,,yes,Narrator,Weightman,Gavin,26-45,male,British,,,,Broadcaster +1147,S2B-022,2,A,,yes,Narrator,Buerk,Michael,45,male,British,,Solihull School,Secondary,"Broadcaster, journalist" +1148,S2B-023,1,A,,yes,Presenter,Tong,Pete,26-45,male,British,London,,Secondary,"Broadcaster, musician" +1149,S2B-023,2,A,,yes,Presenter,,,,male,British,,,, +1150,S2B-023,3,A,,yes,Presenter,Byalls,Peter,26-45,male,British,London,,,"Broadcaster, journalist" +1151,S2B-024,1,A,,yes,,,,,male,British,,,, +1152,S2B-024,2,A,,yes,,,,,male,British,,,, +1153,S2B-025,1,A,,yes,Presenter,Arnold-Baker,Charles,73,male,British,Poland,"Winchester College, Oxford, Inner Temple",University,"Visiting Professor, City University" +1154,S2B-026,1,A,,yes,Presenter,Richards,Jeffrey,26-45,male,British,,,University,Historian,,French, +1155,S2B-027,1,A,,yes,,,,,male,British,,,,,,, +1156,S2B-028,1,A,,yes,Presenter,Priestland,Gerald,64,male,British,,Oxford (BA),University,"Broadcaster, journalist",,, +1157,S2B-028,2,A,,yes,Presenter,Naughtie,James,40,male,British,Scotland,"Grammar School, Aberdeen Univ, Syracuse Univ",University,"Broadcaster, journalist",,, +1158,S2B-029,1,A,,yes,Presenter,Sacks,Jonathon,43,male,British,London,"Oxford, University of London, Jew's College London",University,Chief Rabbi,,, +1159,S2B-030,1,A,,yes,,Major,John,48,male,British,London,,Secondary,Politician,,,Prime Minister +1160,S2B-030,2,A,,yes,,Kinnock,Neil,49,male,British,Wales,University College Cardiff,University,Politician,,Welsh,Leader of the Opposition +1161,S2B-030,3,A,,yes,,Kinnock,Neil,49,male,British,Wales,University College Cardiff,University,Politician,,Welsh,Leader of the Opposition +1162,S2B-030,4,A,,yes,,Barnes,Rosie,45,female,British,Heart of England,Birmingham University (B Soc Sci),University,Politician,,, +1163,S2B-031,1,A,,yes,Debater,Alderson,John,69,male,British,Yorkshire,Middle Temple,University,Chief Constable (retired),,, +1164,S2B-031,2,A,,yes,Debater,Owen,David,58,male,British,Wales,"Harrow, Cambridge, Grays Inn",University,Barrister,,, +1165,S2B-031,3,A,,yes,Presenter,Durrell,Gerald,66,male,British,India,Educated by private tutors in Greece,Secondary,"Naturalist, writer",,, +1166,S2B-032,1,A,,yes,Presenter,Wilson,Edgar,46-65,male,British,Northumbria,,University,Writer,,, +1167,S2B-032,2,A,,yes,Presenter,Redhead,Brian,62,male,British,Northumbria,Grammar School; Cambridge,University,Broadcaster,,, +1168,S2B-033,1,A,,yes,Presenter,Norman,Barry,58,male,British,London,Highgate School,Secondary,"Broadcaster, film critic",,, +1169,S2B-034,1,A,,yes,Presenter,Hennessy,Peter,46-65,male,British,Heart of England,Stroud School; Cambridge; Harvard; LSE,University,"Visiting Prof of Government, Strathclyde Univ.",,, +1170,S2B-035,1,A,,yes,Debater,Redwood,John,40,male,British,London,"Kent College, Canterbury; Oxford (MA, DPhil)",University,Politician,,, +1171,S2B-035,2,A,,yes,Debater,Sked,Alan,46-65,male,British,,,University,,,, +1172,S2B-036,1,A,,yes,Debater,Gould,Bryan,52,male,,New Zealand,"Auckland University; Oxford (BA, LLB, MA, BCL)",University,Politician,,, +1173,S2B-036,2,A,,yes,Debater,Foot,Paul,54,male,British,,,University,Journalist,,, +1174,S2B-037,1,A,,yes,Presenter,Scarman,Leslie,80,male,British,London,Oxford; Middle Temple,University,High Court Judge (retired),,,Lord Scarman +1175,S2B-038,1,A,,yes,Presenter,Watts,Geoffrey,,male,British,,,,Broadcaster,,, +1176,S2B-038,2,A,,yes,Presenter,Watts,Geoffrey,,male,British,,,,Broadcaster,,, +1177,S2B-038,3,A,,yes,Presenter,Lapotaire,Jane,47,female,British,East Anglia,"Grammar School; Theatre School, Bristol",University,Actress,,, +1178,S2B-039,1,A,,yes,Presenter,Connolly,Kevin,26-45,male,British,,,,"Broadcaster, journalist",,, +1179,S2B-039,2,A,,yes,Presenter,Short,Phillip,26-45,male,British,,,,"Broadcaster, journalist",,, +1180,S2B-039,3,A,,yes,Presenter,Jessell,Stephen,26-45,male,British,,,,"Broadcaster, journalist",,, +1181,S2B-040,1,A,,yes,Presenter,Sacker,Stephen,26-45,male,British,,,,"Broadcaster, journalist",,, +1182,S2B-040,2,A,,yes,Presenter,Kendall,Bridget,26-45,female,British,,,,"Broadcaster, journalist",,, +1183,S2B-040,3,A,,yes,Presenter,Leech,Graham,26-45,male,British,,,,"Broadcaster, journalist",,, +1184,S2B-041,1,A,,yes,,Queen Elizabeth II,,46-65,female,British,London,,Secondary,,,, +1185,S2B-041,2,A,,yes,,Lamont,Norman,50,male,British,Shetland,Cambridge (BA),University,Politician,,, +1186,S2B-042,1,A,,yes,Lecturer,Denman,Hugh,55,male,British,London,"BA, MA, Dip Soc Sci (Oxford)",University,Lecturer,,"French, German, Italian, Russian, Yiddish" +1187,S2B-043,1,A,,yes,Lecturer,Charles,Wendy,46-65,female,British,,,University,Lecturer in History,, +1188,S2B-044,1,A,,yes,,,,,male,British,,,,Actor,, +1189,S2B-044,2,A,,yes,,,,26-45,male,British,,,University,Teacher,, +1190,S2B-045,1,A,,yes,Lecturer,McMaster,Peter,46-65,male,British,,,University,"Director General, Ordnance Survey","Fellow, Royal Inst. of Chartered Surveyors", +1191,S2B-046,1,A,,yes,Lecturer,Freeman,Michael,46-65,male,British,,,University,Professor of Laws,, +1192,S2B-047,1,A,,yes,Lecturer,Williams,Shirley,46-65,female,British,,Oxford University; Columbia University,University,"Politician, lecturer, broadcaster",, +1193,S2B-048,1,A,,yes,Lecturer,Baldwin,Peter,46-65,male,British,,,University,Businessman,, +1194,S2B-049,1,A,,yes,Lecturer,Palmer,,46-65,male,British,,,University,University Professor,, +1195,S2B-050,1,A,,yes,,Howe,Sir Geoffrey,64,male,British,Wales,"Winchester, Cambridge, Middle Temple (MA, LLB)",University,"Politician, Barrister",, diff --git a/ice/sspeaker-original.csv b/ice/sspeaker-original.csv new file mode 100644 index 0000000..c22be1a --- /dev/null +++ b/ice/sspeaker-original.csv @@ -0,0 +1,1194 @@ +speakers,Textcode,Subtextno,Speaker,Original Spkr,Aware,Role,Surname,Forenames,Age,Gender,Nationality,Birthplace,Education,Educlevel,Occupation,Affiliations,Other languages,Comments +1,S1A-001,1,A,,yes,,,Sam,26-45,male,British,,,University,Teacher,,, +2,S1A-001,1,B,,yes,,,Adam,18-25,male,British,,,Secondary,Student,,, +3,S1A-002,1,A,,yes,,,Sam,26-45,male,British,,,University,Teacher,,, +4,S1A-002,1,B,,yes,,,Kate,18-25,female,British,,,Secondary,Student,,, +5,S1A-002,1,C,,yes,,,Helen,18-25,female,British,,,Secondary,Student,,, +6,S1A-002,2,A,,yes,,,Sam,26-45,male,British,,,University,Teacher,,, +7,S1A-002,2,B,,yes,,,Vicky,18-25,female,British,,,Secondary,Student,,, +8,S1A-003,1,A,,yes,,,Richard,26-45,male,British,,,University,Teacher,,, +9,S1A-003,1,B,,yes,,,Celeste,18-25,female,British,,,Secondary,Student,,, +10,S1A-004,1,A,,yes,,,Richard,26-45,male,British,,,University,Teacher,,, +11,S1A-004,1,B,,yes,,,Adam,18-25,male,British,,,Secondary,Student,,, +12,S1A-005,1,A,,yes,,Broadbent,Judith,18-25,female,British,Leeds,"BA Linguistics, UCL",University,Student,,, +13,S1A-005,1,B,,yes,,Tollfree,Laura,18-25,female,British,London,"BA Linguistics, UCL",University,Student,,, +14,S1A-006,1,A,,yes,,,Sandra,18-25,female,British,London,,University,,,, +15,S1A-006,1,B,,yes,,,Andrew,18-25,male,British,,,University,,,, +16,S1A-007,1,A,,yes,,Tollfree,Laura,46-65,male,British,London,,,,,, +17,S1A-007,1,B,,yes,,Tollfree,Laura,46-65,female,British,London,,,,,, +18,S1A-007,1,C,,yes,,Tollfree,Laura,18-25,female,British,London,"BA Linguistics, UCL",University,Student,,, +19,S1A-007,1,D,,yes,,,,46-65,male,British,London,,,,,, +20,S1A-007,1,E,,yes,,,,,male,,,,,,,, +21,S1A-008,1,A,,yes,,,Andrew,18-25,male,British,,,University,,,, +22,S1A-008,1,B,,yes,,Tollfree,Laura,18-25,male,British,London,"BA Linguistics, UCL",University,Student,,, +23,S1A-009,1,A,,yes,,Sayce,Oonagh,46-65,female,British,London,MA English,University,Part-time University teacher,,"French, Italian","Researcher, Survey of English Usage" +24,S1A-009,1,B,,yes,,Sayce,Peter,26-45,male,British,London,,Secondary,Government executive,,, +25,S1A-010,1,A,,yes,,Moore,Nina,66+,female,British,London,,Secondary,Welfare officer (retired),,, +26,S1A-010,1,B,,yes,,Moore,Miranda,26-45,female,British,London,,Secondary,Writer,,, +27,S1A-011,1,A,,yes,,,,26-45,female,British,UK South,,University,Teacher,,, +28,S1A-011,1,B,,yes,,Boase,Sue,26-45,female,British,UK South,,University,"Lecturer, researcher",,,"Researcher, Survey of English Usage" +29,S1A-011,1,C,,yes,,,,26-45,male,British,UK South,Training as solicitor,University,Trainee solicitor,,, +30,S1A-011,2,A,,yes,,Woodford,Kate,26,female,British,Coventry,,University,Lexicographer,,"French, Spanish", +31,S1A-011,2,B,,yes,,,,26-45,female,British,,,University,Lexicographer,,, +32,S1A-012,1,A,,yes,,Scales,Rob,26-45,male,British,London,,University,Teacher +33,S1A-012,1,B,,yes,,Boase,Sue,26-45,female,British,UK south,,University,"Lecturer, researcher" +34,S1A-012,1,C,,yes,,Carpenter,Roger,26-45,male,British,London,,University,Teacher +35,S1A-012,1,D,,yes,,King-Smith,Gavin,26-45,male,British,London,,University,Management consultant +36,S1A-012,1,E,,yes,,Colborn,Tim,26-45,male,British,Amesbury,,University,Accountant +37,S1A-013,1,A,,yes,,,,26-45,male,British,,,University,Researcher +38,S1A-013,1,B,,yes,,,,46-65,female,British,Midlands,,Secondary,Housewife +39,S1A-013,1,C,,yes,,,,46-65,male,British,Midlands,,Secondary,Housewife +40,S1A-013,1,D,,yes,,,,,female,British,,,, +41,S1A-013,1,E,,yes,,,,,male,British,,,, +41,S1A-013,1,F,,yes,,,,,male,British,,,, +42,S1A-014,1,A,,yes,,Tollfree,Laura,18-25,female,British,London,"BA Linguistics, UCL",University,Student +43,S1A-014,1,B,,yes,,,Amanda,26-45,female,British,,,University,University Secretary +44,S1A-014,1,C,,yes,,,Neil,18-25,male,British,,"BSc Computer Science, UCL",University,Student +45,S1A-015,1,A,,yes,,Rosta,Andrew,18-25,male,British,Liverpool,"BA English, UCL",University,Student +46,S1A-015,1,B,,yes,,,,18-25,female,British,,,University,Student +47,S1A-016,1,A,,yes,,,,26-45,male,British,,,University,Researcher,,, +48,S1A-016,1,B,,yes,,,,,male,,,,,,,, +49,S1A-016,1,C,,yes,,,,,male,,,,,,,, +50,S1A-016,1,D,,yes,,,,,female,,,,,,,, +51,S1A-016,1,E,,yes,,,,,female,,,,,,,, +53,S1A-017,1,A,,yes,,Durant,Ian,27,male,British,UK South,,University,Accountant,,, +54,S1A-017,1,B,,yes,,,Zara,26,female,British,London,A-levels,University,Accountant,,,Indian ethnic origin +55,S1A-017,1,C,,yes,,Tollfree,Laura,18-25,female,British,London,"BA Linguistics, UCL",University,Student,,, +57,S1A-018,1,A,,yes,,Tollfree,Eleanor,20,female,British,London,,Secondary,Student,,, +58,S1A-018,1,B,,yes,,Cage,Liz,20,female,British,London,,,,,, +59,S1A-018,1,C,,yes,,Debenham,Simon,28,male,British,London,,University,Accountant,,, +60,S1A-019,1,A,,yes,,,,18-25,female,British,,,University,Student,,, +61,S1A-019,1,B,,yes,,,Richard,18-25,male,British,,,University,Student,,, +62,S1A-019,1,C,,yes,,,,26-45,female,British,,,University,Student,,, +63,S1A-019,1,D,,yes,,,,18-25,female,British,,,Secondary,Student,,, +64,S1A-019,1,E,,yes,,,,18-25,female,British,,,Secondary,Student,,, +65,S1A-019,1,F,,yes,,,,18-25,female,British,London,UCL BA in Linguistics,University,Student,,, +66,S1A-020,1,A,,yes,,,,,male,,,,,,,, +67,S1A-020,1,B,,yes,,,,,male,,,,,,,, +68,S1A-020,1,C,,yes,,,,,male,,,,,,,, +69,S1A-020,1,D,,yes,,Boase,Sue,26-45,female,British,UK South,,University,"Lecturer, researcher",,, +70,S1A-021,1,A,,yes,,,,26-45,male,British,London,,University,Musician,,, +71,S1A-021,1,B,,yes,,,,26-45,female,British,Surrey/Kent,,University,Teacher,,, +72,S1A-021,1,C,,yes,,,,26-45,male,British,Kent,,University,Teacher,,, +73,S1A-021,1,D,,yes,,,,26-45,female,British,Surrey,,University,Teacher,,, +74,S1A-021,2,A,,yes,,,,26-45,female,British,Surrey,,University,Teacher,,, +75,S1A-021,2,B,,yes,,,,26-45,male,British,London,,University,Musician,,, +76,S1A-021,2,C,,yes,,,,26-45,female,British,Surrey,,University,Teacher,,, +77,S1A-021,2,D,,yes,,,,26-45,male,British,Kent,,University,Teacher,,, +78,S1A-022,1,A,,yes,,Clift,Naomi,21,female,British,China,,Secondary,Student,,,Adopted in infancy; born Mauritian Chinese +79,S1A-022,1,B,,yes,,Clift,Jean,61,female,British,Devon,,University,Teacher of English as a Second Language,,, +80,S1A-022,1,C,,yes,,Clift,Marc,65,male,British,Australia,,,Ex-British Council officer,,,Spent most of life in UK +81,S1A-022,1,D,,yes,,Clift,Rebecca,25,female,British,China,Cambridge,University,Postgraduate student,,,Adopted in infancy; born Mauritian Chinese +82,S1A-023,1,A,,yes,,,,46-65,male,British,London,,Secondary,Journalist,,, +83,S1A-023,1,B,,yes,,,,46-65,female,British,UK South,,Secondary,Writer,,, +84,S1A-024,1,A,,yes,,Sidney,Greenbaum,46-65,male,British,London,"MA, PhD",University,Professor of English,,Hebrew,"Director, Survey of English Usage" +85,S1A-024,1,B,,yes,,Howe,James,46-65,male,British,,,University,PhD Student; former civil servant,,, +86,S1A-025,1,A,,yes,,,,26-45,male,British,London,,Secondary,,,,Brother of $B +87,S1A-025,1,B,,yes,,,,26-45,female,British,London,,Secondary,Secretary,,,Sister of $A +88,S1A-026,1,A,,yes,,Carpenter,Roger,26-45,male,British,London,,University,Teacher,,, +89,S1A-026,1,B,,yes,,Colborn,Tim,26-45,male,British,Amesbury,,University,Accountant,,, +90,S1A-026,1,C,,yes,,King-Smith,Gavin,26-45,male,British,UK South,,University,Management Consultant,,, +91,S1A-026,1,D,,yes,,Scales,Rob,26-45,male,British,London,,University,Teacher,,, +92,S1A-027,1,A,,yes,,Boase,Sue,26-45,female,British,UK South,,University,"Lecturer, researcher",,, +93,S1A-027,1,B,,yes,,Peppe,A.H.,26-45,male,British,UK South,,University,Greengrocer,,, +94,S1A-027,1,C,,yes,,King-Smith,Gavin,26-45,male,British,UK South,,University,Management Consultant,,, +95,S1A-027,1,D,,yes,,Lanner,J.E.,26-45,female,British,UK South,,University,Nurse,,, +96,S1A-028,1,A,,yes,,,Fred,92,male,British,Devon,,Secondary,Ex-shopkeeper,,, +97,S1A-028,1,B,,yes,,Clift,Marc,65,male,British,Australia,,,Ex-British Council officer,,,Spent most of life in UK +98,S1A-028,1,C,,yes,,Clift,Rebecca,25,female,British,China,Cambridge,University,Postgraduate student,,,Adopted in infancy; born Mauritian Chinese +99,S1A-028,1,D,,yes,,Clift,Naomi,21,female,British,China,,Secondary,Student,,,Adopted in infancy; born Mauritian Chinese +100,S1A-028,1,E,,yes,,,,80,female,British,Devon,,Secondary,,,, +102,S1A-029,1,A,,yes,,Procter,Paul,46-65,male,British,,BA,University,Lexicographer,,, +103,S1A-029,1,B,,yes,,,Andrew,24,male,British,Hammersmith,BA,University,Computer programmer,,, +104,S1A-029,1,C,,yes,,,Andy,21,male,British,Nr Guildford,BA,University,Computer programmer,,, +105,S1A-029,1,D,,yes,,Porter,Nick,22,male,British,Worcs,MSc,University,Computer programmer,,, +106,S1A-030,1,A,,yes,,,,,male,,,,,,,, +107,S1A-030,1,B,,yes,,,,,male,,,,,,,, +108,S1A-030,1,C,,yes,,,,,male,,,,,,,, +109,S1A-030,1,D,,yes,,,,,male,,,,,,,, +110,S1A-031,1,A,,yes,,Beaumann,Nicola,46-65,female,British,London,,University,Writer,,, +111,S1A-031,1,B,,yes,,Boase,Sue,26-45,female,British,UK South,,University,"Lecturer, researcher",,, +112,S1A-032,1,A,,yes,,Clift,Rebecca,18-25,female,British,,,University,"Student, researcher",,, +113,S1A-032,1,B,,yes,,Clift,Jean,61,female,British,Devon,,University,Teacher of English as a Second Language,,, +114,S1A-032,1,C,,yes,,Clift,Marc,65,male,British,Australia,,,Ex-British Council officer,,,Spent most of life in UK +115,S1A-032,1,D,,yes,,Clift,Naomi,21,female,British,China,,Secondary,Student,,,Adopted in infancy; born Mauritian Chinese +116,S1A-032,2,A,,yes,,Clift,Rebecca,25,female,British,China,,University,Postgraduate student,,,Adopted in infancy; born Mauritian Chinese +117,S1A-032,2,B,,yes,,Clift,Naomi,21,female,British,China,,Secondary,Student,,,Adopted in infancy; born Mauritian Chinese +118,S1A-032,2,C,,yes,,Clift,Jean,61,female,British,Devon,,University,Teacher of English as a Second Language,,, +119,S1A-032,2,D,,yes,,Clift,Marc,65,male,British,Australia,,,Ex-British Council officer,,,Spent most of life in UK +120,S1A-033,1,A,,yes,,Tiley,Mike,26-45,male,British,,MA,University,Careers counsellor,,, +121,S1A-033,1,B,,yes,,,,18-25,male,British,,,Secondary,Student (of philosophy),,, +122,S1A-034,1,A,,yes,,,,26-45,female,British,London,,University,Career counsellor,,, +123,S1A-034,1,B,,yes,,,,18-25,male,British,Manchester,,Secondary,Student,,, +124,S1A-035,1,A,,yes,,,,26-45,female,British,London,,University,Career counsellor,,, +125,S1A-035,1,B,,yes,,,,18-25,female,British,Norwich,,Secondary,Student,,, +126,S1A-036,1,A,,yes,,,Caroline,29,female,British,London,O-Levels,Secondary,"Secretary, Thames Water Co.",,, +127,S1A-036,1,B,,yes,,,Alice,29,female,British,London,O-Levels,Secondary,"Secretary, Consumers' Association",,, +128,S1A-037,1,A,,yes,,,Jenny,18-25,female,British,London,,University,Student,,, +129,S1A-037,1,B,,yes,,,Isobel,29,female,British,London,,University,,,, +130,S1A-038,1,A,,yes,,,Danielle,21,female,British,Dumfries,"BSc Engineering, Edinburgh University",University,"PhD student, Engineering, Cambridge",,, +131,S1A-038,1,B,,yes,,,,18-25,female,British,,,University,Postgraduate student,,, +132,S1A-038,1,C,,yes,,,Moses,24,male,British,Portugal,"BA Social Science, Canterbury",University,"MPhil student, International Relations, Cambridge",,,Moved to UK age 5 +133,S1A-039,1,A,,yes,,Tollfree,Laura,18-25,female,British,London,BA Linguistics,University,"PhD student (Linguistics), Cambridge",,, +134,S1A-039,1,B,,yes,,,Danielle,21,female,British,Dumfries,"BSc Engineering, Edinburgh University",University,"PhD student, Cambridge",,, +135,S1A-040,1,A,,yes,,,Vicky,25,female,British,Sussex,"Degree in History, London",University,"PGCE student, Cambridge",,, +136,S1A-040,1,B,,yes,,,Caroline,23,female,British,York,"Degree Modern Languages, Cambridge",University,"PGCE student, Cambridge; ex-EFL teacher",,, +137,S1A-040,1,C,,yes,,,Louisa,24,female,British,London,"Degree Modern Languages, Cambridge, PGCE",University,"Teacher of Modern Languages, Cambridge",,Greek, +138,S1A-040,1,D,,yes,,,Vanessa,22,female,British,Surrey,"Degree English, Durham University",University,"PGCE student, Cambridge",,, +139,S1A-040,1,E,,yes,,,Brandon,25,male,British,Surrey,"Degree, Cambridge",University,Social worker,,, +140,S1A-041,1,A,,yes,,,Moses,24,male,British,Portugal,"BA Social Science, Canterbury",University,"MPhil student, International Relations, Cambridge",,,Moved to London age 5 +141,S1A-041,1,B,,yes,,,Jim,23,male,British,London,"Degree in Geography, Lampeter (Wales)",University,"MPhil student in Glaciology, Cambridge",,, +142,S1A-042,1,A,,yes,,,Vicky,25,female,British,Sussex,"Degree in History, London",University,"PGCE student, Cambridge",,, +143,S1A-042,1,B,,yes,,,Caroline,23,female,British,York,"Degree in Modern Languages, Cambridge",University,"PGCE student, Cambridge; ex-EFL teacher",,, +144,S1A-042,1,C,,yes,,,Vanessa,22,female,British,Surrey,"Degree in English, Durham University",University,"PGCE student, Cambridge",,, +145,S1A-043,1,A,,yes,,White,Ashley,31,male,British,London,,University,"Tennis coach, PhD student",,, +146,S1A-043,1,B,,yes,,,,28,male,British,Manchester,,Secondary,Musician +147,S1A-044,1,A,,yes,,,,55,female,British,Lancashire,Music degree,University,Singing teacher +148,S1A-044,1,B,,yes,,White,Ashley,31,male,British,London,,University,"Tennis coach, PhD student" +149,S1A-045,1,A,,yes,,White,Ashley,31,male,British,London,,University,"Tennis coach, PhD student" +150,S1A-045,1,B,,yes,,,,55,female,British,Lancashire,Music degree,University,Singing teacher +151,S1A-045,2,A,,yes,,,,28,male,British,Manchester,Manchester University,University, +152,S1A-045,2,B,,yes,,White,Ashley,31,male,British,London,,University,"Tennis coach, PhD student" +153,S1A-045,3,A,,yes,,White,Ashley,31,male,British,London,,University,"Tennis coach, PhD student" +154,S1A-045,3,B,,yes,,,,28,male,British,Manchester,Manchester University,University, +155,S1A-046,1,A,,yes,,Clift,Rebecca,18-25,female,British,,,, +156,S1A-046,1,B,,yes,,Clift,Marc,65,male,British,,,, +157,S1A-046,1,C,,yes,,Clift,Naomi,18-25,female,British,,,, +158,S1A-046,1,D,,yes,,Clift,Jean,61,female,British,,,, +159,S1A-047,1,A,,yes,,,,26-45,male,British,Harrow,,University,Computer Operator/Programmer +160,S1A-047,1,B,,yes,,,,26-45,female,British,Harrow,"Undergraduate student, UCL",Secondary,Student +161,S1A-047,1,C,,yes,,,,66+,female,British,Harrow,,Secondary,Ex-secretary (retired) +162,S1A-048,1,A,,yes,,,,26-45,female,British,Harrow,,University,Antique Dealer +163,S1A-048,1,B,,yes,,,,26-45,female,British,Harrow,,Secondary,Nursery Nurse +164,S1A-048,1,C,,yes,,,,26-45,female,British,Harrow,"Undergraduate student, UCL",Secondary,Student +165,S1A-049,1,A,,yes,,,Karen,30,female,British,London,O-Levels,Secondary,"Administrator, interior design company" +166,S1A-049,1,B,,yes,,,Alice,29,female,British,London,O-Levels,Secondary,"Secretary, Consumers' Association" +167,S1A-049,1,C,,yes,,,Caroline,29,female,British,London,O-Levels,Secondary,"Secretary, Thames Water Co." +168,S1A-050,1,A,,yes,,Neustein,,46-65,male,British,London,PhD,University,Student Counsellor +169,S1A-050,1,B,,yes,,,Stella,18-25,female,British,Hartlepool,,Secondary,Student +170,S1A-051,1,A,,yes,,Andersen,P.A.,46-65,male,British,,,University,Doctor +171,S1A-051,1,B,,yes,,,,66+,female,British,Surrey,,Secondary,Housewife +172,S1A-051,2,A,,yes,,Andersen,P.A.,46-65,male,British,,,University,Doctor +173,S1A-051,2,B,,yes,,,,18-25,male,British,Cambridge,,Secondary,Student +174,S1A-051,3,A,,yes,,Andersen,P.A.,46-65,male,British,,,University,Doctor +175,S1A-051,3,B,,yes,,,,26-45,female,British,London,,Secondary,Student +176,S1A-051,4,A,,yes,,Andersen,P.A.,46-65,male,British,,,University,Doctor +177,S1A-051,4,B,,yes,,,,18-25,male,British,London,,Secondary,Student +178,S1A-052,1,A,,yes,,,,26-45,male,British,,,University,,, +179,S1A-052,1,B,,yes,,,,46-65,male,British,London,,Secondary,Photojournalist,, +180,S1A-052,1,C,,yes,,Thaine,Alasdair,30,male,British,,,University,Photographer,, +181,S1A-052,2,A,,yes,,,,46-65,male,British,London,,Secondary,Photojournalist,, +182,S1A-052,2,B,,yes,,Thaine,Alasdair,30,male,British,,,University,Photographer,, +183,S1A-052,2,C,,yes,,,,26-45,male,British,,,University,,, +184,S1A-053,1,A,,yes,,,,26-45,male,British,Shropshire,,University,Student,, +185,S1A-053,1,B,,yes,,,,26-45,female,British,Wiltshire,,University,Student,, +186,S1A-053,1,C,,yes,,,,46-65,male,British,London,,Secondary,Computer management,, +187,S1A-054,1,A,,yes,,Beaumann,Nicola,46-65,female,British,London,,University,Writer,, +188,S1A-054,1,B,,yes,,Boase,Sue,26-45,female,British,London,,University,"Researcher, lecturer",, +189,S1A-055,1,A,,yes,,,Darryl,26-45,male,British,,,,,, +190,S1A-055,1,B,,yes,,,Helen,26-45,female,British,,,,,, +191,S1A-055,1,C,,yes,,Woodford,Kate,26,female,British,Coventry,,University,Lexicographer,,"French, Spanish" +192,S1A-055,1,D,,yes,,,,18-25,female,British,Watford,,University,Secretary,, +193,S1A-055,1,E,,yes,,,,26-45,male,British,London,,University,Lexicographer,, +194,S1A-056,1,A,,yes,,,,26-45,male,British,UK South,,University,Teacher of EFL,,, +195,S1A-056,1,B,,yes,,Boase,Sue,26-45,female,British,UK South,,University,"Lecturer, researcher",,, +196,S1A-056,1,C,,yes,,King-Smith,Gavin,26-45,male,British,UK South,,University,Management consultant,,, +197,S1A-056,2,A,,yes,,Boase,Sue,26-45,female,British,UK South,,University,"Lecturer, researcher",,, +198,S1A-056,2,B,,yes,,,,26-45,male,British,UK South,,University,Teacher of EFL,,, +199,S1A-056,2,C,,yes,,King-Smith,Gavin,26-45,male,British,UK South,,University,Management consultant,,, +200,S1A-056,3,A,,yes,,Boase,Sue,26-45,female,British,UK South,,University,"Lecturer, researcher",,, +201,S1A-056,3,B,,yes,,King-Smith,Gavin,26-45,male,British,UK South,,University,Management consultant,,, +202,S1A-056,3,C,,yes,,,,26-45,male,British,UK South,,University,Teacher of EFL,,, +203,S1A-056,4,A,,yes,,,,26-45,male,British,UK South,,University,Teacher of EFL,,, +204,S1A-056,4,B,,yes,,Boase,Sue,26-45,female,British,UK South,,University,"Lecturer, researcher",,, +205,S1A-056,4,C,,yes,,King-Smith,Gavin,26-45,male,British,UK South,,University,Management consultant,,, +206,S1A-057,1,A,,yes,,,,26-45,female,British,UK South,,University,"Lecturer, researcher",,, +207,S1A-057,1,B,,yes,,,,66+,male,British,UK South,,University,Retired engineer,,,Father of speaker C +208,S1A-057,1,C,,yes,,King-Smith,Gavin,26-45,male,British,UK South,,University,Management consultant,,, +209,S1A-058,1,A,,yes,,Thaine,Alasdair,26-45,male,British,,,,,,, +210,S1A-058,1,B,,yes,,,Christopher,26-45,male,British,,,, +211,S1A-058,1,C,,yes,,,Cheryl,32,female,British,USA,UK secondary education and degree,University,"Actress, writer" +212,S1A-058,2,A,,yes,,,Christopher,26-45,male,British,,,, +213,S1A-058,2,B,,yes,,Thaine,Alasdair,26-45,male,British,,,, +214,S1A-058,2,C,,yes,,,Cheryl,32,female,British,USA,UK secondary education and degree,University,"Actress, writer" +215,S1A-058,3,A,,yes,,,,26-45,male,British,London,,University,Engineer +216,S1A-058,3,B,,yes,,,Cheryl,32,female,British,USA,UK secondary education and degree,University,"Actress, writer" +217,S1A-059,1,A,,yes,,Greenberg,,46-65,male,British,,,University,Student counsellor +218,S1A-059,1,B,,yes,,,,18-25,male,British,London,,Secondary,Student +219,S1A-060,1,A,,yes,,,,,male,,,,, +220,S1A-060,1,B,,yes,,,,,female,,,,, +221,S1A-061,1,A,,yes,,Sayce,Peter,26-45,male,British,London,,Secondary,Government executive +222,S1A-061,1,B,,yes,,Busby,Derek Charles,46-65,male,British,London,,University,Government official +223,S1A-062,1,A,,yes,,Greenberg,,46-65,male,British,,,University,Student counsellor +224,S1A-062,1,B,,yes,,,,18-25,female,British,Kent,,Secondary,Student +225,S1A-063,1,A,,yes,,,,26-45,male,British,UK south east,,University,Doctor +226,S1A-063,1,B,,yes,,Boase,Sue,26-45,female,British,UK south east,,University,"Researcher, lecturer",,, +227,S1A-063,1,C,,yes,,King-Smith,Gavin,26-45,male,British,UK south east,,University,Management consultant,,, +228,S1A-063,1,D,,yes,,,,26-45,female,British,UK south east,,Secondary,Nurse,,, +229,S1A-064,1,A,,yes,,,Pat,18-25,female,British,,,Secondary,Student of drama,,, +230,S1A-064,1,B,,yes,,,Danny,18-25,male,British,,,Secondary,Student of drama,,, +231,S1A-064,1,C,,yes,,,Patricia,18-25,female,British,,,Secondary,Student of drama,,, +232,S1A-065,1,A,,yes,,,,26-45,female,British,London,,University,Student,,, +233,S1A-065,1,B,,yes,,,,26-45,female,British,Suffolk,,Secondary,Housewife,,,Spent part of life in Scotland +234,S1A-065,1,C,,yes,,,,46-65,male,British,London,,University,Student,,, +235,S1A-065,1,D,,yes,,,,18-25,male,British,Herefordshire,,University,Student,,, +236,S1A-065,1,E,,yes,,,,46-65,male,British,Scotland,,University,Farmer,,, +237,S1A-065,1,F,,yes,,,,18-25,male,British,London,,University,Student,,, +238,S1A-065,1,G,,yes,,,,18-25,male,British,Scotland,,University,Student,,, +239,S1A-066,1,A,,yes,,,,46,male,British,London,,University,Careers counsellor,,, +240,S1A-066,1,B,,yes,,,,29,female,British,UK south,PhD,University,Student,,, +241,S1A-067,1,A,,yes,,Ruskin,Sheila,26-45,female,British,India,,University,"Actress, trainee holistic massage practitioner",,,Lived most of life in Sevenoaks and London W1 +242,S1A-067,1,B,,yes,,,,26-45,female,British,West Kent,,University,"Writer, housewife" +243,S1A-068,1,A,,yes,,Jones,Aled D.,18-25,male,British,Wales,,Secondary,"Student, student union officer" +244,S1A-068,1,B,,yes,,,,24,female,British,Nottingham,,Secondary,Student +245,S1A-068,1,C,,yes,,Taylor,Neil,24,male,British,,,Secondary,Student +246,S1A-069,1,A,,yes,,Jones,Aled D.,18-25,male,British,Wales,,Secondary,"Student, student union officer" +247,S1A-069,1,B,,yes,,,,24,female,British,Nottingham,,Secondary,Student +248,S1A-069,2,A,,yes,,Jones,Aled D.,18-25,male,British,Wales,,Secondary,"Student, student union officer" +249,S1A-069,2,B,,yes,,,,18-25,female,British,Midlands,Chemistry student,Secondary,Student +250,S1A-070,1,A,,yes,,Jones,Aled D.,18-25,male,British,Wales,,Secondary,"Student, student union officer" +251,S1A-070,1,B,,yes,,Taylor,Neil,24,male,British,,,Secondary,Student +252,S1A-071,1,A,,yes,,,Ruth,18-25,female,,,,, +253,S1A-071,1,B,,yes,,Buckley,Justin,21,male,British,UK south,"BA English, UCL",University,Student +254,S1A-071,1,C,,yes,,,Mark,18-25,male,British,,,, +255,S1A-071,1,D,,yes,,,Laura,18-25,female,British,,,, +256,S1A-072,1,A,,yes,,,,26-45,female,British,,,University, +257,S1A-072,1,B,,yes,,,Tom,26-45,male,British,,,, +258,S1A-073,1,A,,yes,,,,46-65,male,British,South London,,University,Industrial chemist,,,"Also lived: Oxford, Epping area, Montpellier" +259,S1A-073,1,B,,yes,,,,46-65,male,British,Shropshire,,University,Opthalmic surgeon,,,"Also lived: Isle of Wight, Plymouth, London, Kent" +260,S1A-073,1,C,,yes,,,,26-45,female,British,Sevenoaks,,University,"Writer, housewife",,, +261,S1A-073,1,D,,yes,,,,26-45,female,British,Oxford,,University,"Research chemist, housewife",,,"Also lived: St Albans, Epping" +262,S1A-074,1,A,,yes,,,,21,female,British,London,,Secondary,Student,,, +263,S1A-074,1,B,,yes,,,Tom,21,male,British,London,,Secondary,Travel officer,,, +264,S1A-074,1,C,,yes,,,Paul,23,male,British,London,,University,Travel officer,,, +265,S1A-074,2,A,,yes,,,Paul,23,male,British,London,,University,Travel officer,,, +266,S1A-074,2,B,,yes,,,,22,male,British,London,,Secondary,Student,,, +267,S1A-074,3,A,,yes,,,Louise,22,female,British,London,,University,Travel officer,,, +268,S1A-074,3,B,,yes,,,,21,male,British,London,,Secondary,Student,,, +269,S1A-074,3,C,,yes,,,,27,female,British,London,,University,Travel officer,,, +270,S1A-074,4,A,,yes,,,Tom,21,male,British,London,,Secondary,Travel officer,,, +271,S1A-074,4,B,,yes,,,,26-45,male,British,Surrey,,Secondary,Student,,, +272,S1A-074,4,C,,yes,,,Louise,22,female,British,London,,University,Travel officer,,, +273,S1A-074,5,A,,yes,,,Angela,26-45,female,British,,,University,Student union officer,,, +274,S1A-074,5,B,,yes,,,Dana,18-25,female,British,,,University,Student union officer,,, +275,S1A-074,5,C,,yes,,,,27,male,British,London,,University,Student union officer,,, +276,S1A-074,6,A,,yes,,,Dana,18-25,female,British,,,University,Student union officer,,, +277,S1A-074,6,B,,yes,,,Nick,28,male,British,Dorset,,Secondary,Student,,, +278,S1A-074,7,A,,yes,,,,18-25,male,British,North England,,Secondary,Student,,, +279,S1A-074,7,B,,yes,,,Dana,18-25,female,British,,,University,Student union officer,,, +280,S1A-074,7,C,,yes,,,,18-25,male,British,,,University,Student union officer,,, +281,S1A-075,1,A,,yes,,,,26-45,female,British,,,University,,,, +282,S1A-075,1,B,,yes,,,James,26-45,male,British,London,,University,Businessman,,,Speaker is partially deaf +283,S1A-076,1,A,,yes,,,,26-45,female,British,,,University,,,, +284,S1A-076,1,B,,yes,,,,26-45,male,British,,,University,,,, +285,S1A-077,1,A,,yes,,,Mike,26-45,male,British,London,,University,Careers counsellor,,, +286,S1A-077,1,B,,yes,,,Gill,26-45,female,British,London,,University,Careers counsellor,,, +287,S1A-077,1,C,,yes,,,Elizabeth,18-25,female,British,Kent,,Secondary,Student,,, +288,S1A-077,1,D,,yes,,,James,18-25,male,British,South London,,Secondary,Student,,, +289,S1A-078,1,A,,yes,,,,26-45,female,British,London,,University,Student union officer,,, +290,S1A-078,1,B,,yes,,,,18-25,male,British,St Albans,,Secondary,Student +291,S1A-078,2,A,,yes,,,,26-45,male,British,London,,University,Student union officer +292,S1A-078,2,B,,yes,,,,26-45,female,British,London,,University,Student union officer +293,S1A-078,2,C,,yes,,,,18-25,female,British,UK south,,Secondary,Student +294,S1A-078,3,A,,yes,,,,26-45,female,British,London,,University,Student union officer +295,S1A-078,3,B,,yes,,,,18-25,male,British,Oxford,,Secondary,Student +296,S1A-078,4,A,,yes,,,,26-45,male,British,London,,University,Student union officer +297,S1A-078,4,B,,yes,,,,26-45,female,British,London,,University,Student union officer +298,S1A-078,4,C,,yes,,,,18-25,female,British,London,,Secondary,Student +299,S1A-079,1,A,,yes,,,,26-45,female,British,London,,University,Student union officer +300,S1A-079,1,B,,yes,,,Tony,26-45,male,British,London,,University,Student union officer +301,S1A-079,1,C,,yes,,,,26-45,female,British,UK south,"Degree, UCL",University,Student +302,S1A-080,1,A,,yes,,,Jenny,18-25,female,British,London,,University, +303,S1A-080,1,B,,yes,,,Isobel,26-45,female,British,Croydon,,University, +304,S1A-081,1,A,,yes,,White,Ashley,31,male,British,London,,University,"Tennis coach, PhD student" +305,S1A-081,1,B,,yes,,,Caroline,29,female,British,London,O-Levels,Secondary,"Secretary, Thames Water Co." +306,S1A-082,1,A,,yes,,,,26-45,female,British,London,,University,Lecturer,,, +307,S1A-082,1,B,,yes,,,,18-25,male,British,Southampton,,Secondary,Student,,, +308,S1A-082,1,C,,yes,,,,18-25,female,British,,,Secondary,Student,,, +309,S1A-083,1,A,,yes,,,Paquita,44,female,British,South London,O-Levels,Secondary,"Tennis coach, guitarist",,, +310,S1A-083,1,B,,yes,,,Sandra,46-65,female,British,Spain,O-Levels,Secondary,Flamenco dancing teacher,,,Father: Spanish; Mother: Gipsy. In UK since child +311,S1A-084,1,A,,yes,,Buckley,Justin,21,male,British,UK south,"English degree, UCL",University,"Researcher, Survey of English Usage",,, +312,S1A-084,1,B,,yes,,Scott,Kate,18-25,female,British,London,"Undergraduate in English, UCL",Secondary,Student,,, +313,S1A-084,1,C,,yes,,,,18-25,female,British,North England,"Undergraduate in English, UCL",Secondary,Student,,, +314,S1A-085,1,A,,yes,,,,18-25,male,British,London,,Secondary,Student,,, +315,S1A-085,1,B,,yes,,Scott,Kate,18-25,female,British,London,"Undergraduate in English, UCL",Secondary,Student,,, +316,S1A-086,1,A,,yes,,,,,female,,,,,,,, +317,S1A-086,1,B,,yes,,Boase,Sue,26-45,female,British,UK South,,University,"Lecturer, researcher",,, +318,S1A-086,1,C,,yes,,,,,female,,,,,,,, +319,S1A-087,1,A,,yes,,Dytham,,46-65,male,British,UK south,,University,Dentist,,, +320,S1A-087,1,B,,yes,,,,26-45,male,British,UK south,,University,Physicist,,, +321,S1A-087,2,A,,yes,,Dytham,,46-65,male,British,UK south,,University,Dentist,,, +322,S1A-087,2,B,,yes,,,,18-25,male,British,London,"Undergraduate student, UCL",Secondary,Student +323,S1A-088,1,A,,yes,,Dytham,,46-65,male,British,UK south,,University,Dentist +324,S1A-088,1,B,,yes,,,,26-45,male,British,UK south,,University,Physicist +325,S1A-088,1,C,,yes,,,,26-45,female,British,,,University,Dental Assistant +326,S1A-089,1,A,,yes,,Dytham,,46-65,male,British,UK south,,University,Dentist +327,S1A-089,1,B,,yes,,,,26-45,male,British,UK south,,University,Physicist +328,S1A-089,2,A,,yes,,Andersen,P.A.,46-65,male,British,,,University,Doctor +329,S1A-089,2,B,,yes,,,,18-25,female,British,London,"Undergraduate student, UCL",Secondary,Student +330,S1A-089,3,A,,yes,,Andersen,P.A.,46-65,male,British,,,University,Doctor +331,S1A-089,3,B,,yes,,,,26-45,female,British,,,University,"Student, midwife" +332,S1A-089,4,A,,yes,,Andersen,P.A.,46-65,male,British,,,University,Doctor +333,S1A-089,4,B,,yes,,,,18-25,female,British,North England,"Undergraduate student, UCL",Secondary,Student +334,S1A-090,1,A,,yes,,,Billy,18-25,male,British,,"Undergraduate student, UCL",Secondary,Student +335,S1A-090,1,B,,yes,,,Maureen,46-65,female,British,Glasgow,"Undergraduate student, UCL",Secondary,Student +336,S1A-090,1,C,,yes,,,Caroline,46-65,female,British,London,"Undergraduate student, UCL",Secondary,Student +337,S1A-090,1,D,,yes,,,Joan,66+,female,British,London,"Undergraduate student, UCL",Secondary,"Student, retired nurse" +338,S1A-090,2,A,,yes,,,,18-25,female,British,London,"Undergraduate student, UCL",Secondary,Student +339,S1A-090,2,B,,yes,,,Maureen,46-65,female,British,Glasgow,"Undergraduate student, UCL",Secondary,Student +340,S1A-090,2,C,,yes,,,,18-25,female,British,London?,"Undergraduate student, UCL",Secondary,Student +341,S1A-091,1,A,,yes,,,Isobel,29,female,British,Spain,,University, +342,S1A-091,1,B,,yes,,,Jenny,26-45,female,British,London,,Secondary,Student +343,S1A-092,1,A,,yes,,,Isobel,29,female,British,Spain,,University, +344,S1A-092,1,B,,yes,,Mason,David,27,male,British,Surrey,,University, +345,S1A-093,1,A,,yes,,Tollfree,Laura,18-25,female,British,London,"Degree in Linguistics, UCL",University,Student +346,S1A-093,1,B,,yes,,Tollfree,Eleanor,20,female,British,London,,Secondary,Student +347,S1A-094,1,A,,yes,,Wagner,Mary,66+,female,British,UK south,,Secondary,Retired +348,S1A-094,1,B,,yes,,Tollfree,Laura,18-25,female,British,London,"Degree in Linguistics, UCL",University,Student +349,S1A-095,1,A,,yes,,Debenham,Giles,25,male,British,London,,, +350,S1A-095,1,B,,yes,,Debenham,Simon,28,male,British,London,,University,Accountant +351,S1A-095,2,A,,yes,,Debenham,Susan,48,female,British,London,,, +352,S1A-095,2,B,,yes,,Debenham,Simon,28,male,British,London,,University,Accountant +353,S1A-095,3,A,,yes,,Debenham,Giles,25,male,British,London,,, +354,S1A-095,3,B,,yes,,Debenham,Simon,28,male,British,London,,University,Accountant,,, +355,S1A-095,4,A,,yes,,Debenham,Susan,48,female,British,London,,,,,, +356,S1A-095,4,B,,yes,,Debenham,Simon,28,male,British,London,,University,Accountant,,, +357,S1A-096,1,A,,yes,,,Bill,26-45,male,British,,,Secondary,"Poet, unemployed cleaner",,, +358,S1A-096,1,B,,yes,,,Cheryl,32,female,British,USA,BA Development Psychology,University,"Actress, poet",,, +359,S1A-097,1,A,,yes,,Rosta,Andrew,18-25,male,British,Liverpool,"UCL, Linguistics",University,"PhD student, Linguistics",,,"Researcher, Survey of English Usage" +360,S1A-097,1,B,,yes,,,,18-25,male,British,,,University,Student,,, +361,S1A-098,1,A,,yes,,Woodford,Kate,26,female,British,Coventry,,University,Lexicographer,,"French, Spanish", +362,S1A-098,1,B,,yes,,Howells,Sian,25,female,British,"Port Talbot, Wales",,University,Personal Assistant in German bank,,"French, German", +363,S1A-098,2,A,,yes,,Dowell,John,26-45,male,British,London,PhD,University,Employed at UCL,,, +364,S1A-098,2,B,,yes,,Woodford,Kate,26,female,British,Coventry,,University,Lexicographer,,"French, Spanish", +365,S1A-098,3,A,,yes,,Woodford,Kate,26,female,British,Coventry,,University,Lexicographer,,"French, Spanish", +366,S1A-098,3,B,,yes,,Peters,Roz,27,female,British,London,,University,Civil servant,,, +367,S1A-099,1,A,,yes,,,,18-25,female,British,South Wales,,University,Nurse,,, +368,S1A-099,1,B,,yes,,Buckley,Justin,21,male,British,UK South,"BA English, UCL",University,"Student, researcher",,,"Researcher, Survey of English Usage" +369,S1A-099,2,A,,yes,,,,18-25,female,British,London,B-Techs,University,Shop assistant,,, +370,S1A-099,2,B,,yes,,Buckley,Justin,21,male,British,UK South,"BA English, UCL",University,"Student, researcher",,,"Researcher, Survey of English Usage" +371,S1A-100,1,A,,yes,,Gibney,Marie,46-65,female,British,Liverpool,,University,University secretary,,,"Secretary, Survey of English Usage" +372,S1A-100,1,B,,yes,,,,26-45,male,,,,University,Lawyer,,, +373,S1A-100,2,A,,yes,,Williamson,Valerie,26-45,female,British,,,University,University secretary,,, +374,S1A-100,2,B,,yes,,Gibney,Marie,46-65,female,British,Liverpool,,University,University secretary,,,"Secretary, Survey of English Usage" +375,S1A-100,3,A,,yes,,,Sean,26-45,male,British,Midlands,,University,"Artist, journalist",,, +376,S1A-100,3,B,,yes,,Buckley,Justin,21,male,British,UK South,"BA English, UCL",University,"Student, researcher",,,"Researcher, Survey of English Usage" +377,S1B-001,1,A,,yes,Tutor,Weitzman,Michael,46-65,male,British,London,,University,University Lecturer,,Hebrew, +378,S1B-001,1,B,,yes,,Turner,Mary,46-65,female,British,London,,Secondary,Student,,Hebrew, +379,S1B-001,1,C,,yes,,Smith,John,18-25,male,British,London,,Secondary,,,, +380,S1B-002,1,A,,yes,Tutor,Smith,Neil,46-65,male,British,,"MA, PhD",University,Professor of Linguistics,,, +381,S1B-002,1,B,,yes,,,Susan,18-25,female,British,Norwich,,Secondary,Student,,, +382,S1B-002,1,C,,yes,,,Vicky,18-25,female,British,London,,Secondary,Student,,, +383,S1B-002,1,D,,yes,,,Phillip,18-25,male,British,Croxley,,Secondary,Student,,, +384,S1B-002,1,E,,yes,,,Vincent,18-25,male,British,London,,Secondary,Student,,, +385,S1B-002,1,F,,yes,,,Jeremy,18-25,male,British,Midlands,,Secondary,Student,,, +386,S1B-002,1,G,,yes,,,Georgina,18-25,female,British,London,,Secondary,Student +387,S1B-002,1,H,,yes,,,Ilianna,18-25,female,British,,,Secondary,Student +388,S1B-002,1,I,,yes,,,Jason,18-25,male,British,,,Secondary,Student +389,S1B-002,1,J,,yes,,,Jo,18-25,female,British,,,Secondary,Student +390,S1B-002,1,K,,yes,,,Jason,18-25,male,British,,,Secondary,Student +391,S1B-002,1,L,,yes,,,Thomas,18-25,male,British,,,Secondary,Student +392,S1B-003,1,A,,yes,Tutor,Houghton,George,26-45,male,British,Merseyside,"MA, PhD",University,University Lecturer +393,S1B-003,1,B,,yes,,,Colin,23,male,British,London,,Secondary,Student +394,S1B-003,1,C,,yes,,,,18-25,male,British,,,Secondary,Student +395,S1B-003,1,D,,yes,,,Jill,18-25,female,British,Watford,,Secondary,Student +396,S1B-003,1,E,,yes,,,Melanie,18-25,female,British,London,,Secondary,Student +397,S1B-004,1,A,,yes,Tutor,Fuller,J.H.,46-65,male,British,,,University,Medical doctor and lectuer +398,S1B-004,1,B,,yes,,,,18-25,male,British,,,, +399,S1B-004,1,C,,yes,,,,18-25,female,British,,,, +400,S1B-004,1,D,,yes,,,,18-25,male,British,,,, +401,S1B-004,1,E,,yes,,,,18-25,male,British,,,, +402,S1B-004,1,F,,yes,,,,18-25,female,British,,,, +403,S1B-004,1,G,,yes,,,,18-25,male,British,,,, +404,S1B-004,1,H,,yes,,,,18-25,female,British,,,, +405,S1B-004,1,I,,yes,,,,18-25,male,British,,,, +406,S1B-004,1,J,,yes,,,,18-25,male,British,,,, +407,S1B-004,1,K,,yes,,,,18-25,male,British,,,, +408,S1B-004,1,L,,yes,,,,18-25,male,British,,,, +409,S1B-004,1,M,,yes,,,,18-25,male,British,,,, +410,S1B-004,1,N,,yes,,,,18-25,male,British,,,, +411,S1B-004,1,O,,yes,,,,18-25,male,British,,,, +412,S1B-004,1,P,,yes,,,,18-25,male,British,,,, +413,S1B-005,1,A,,yes,Tutor,Stokes,B.,46-65,male,British,,"MA, PhD",University,University Lecturer +414,S1B-005,1,B,,yes,,,Michael,18-25,male,British,South London,,Secondary,Student +415,S1B-005,1,C,,yes,,,Rebecca,18-25,female,British,London,,Secondary,Student +416,S1B-005,1,D,,yes,,,Joanna,18-25,female,British,Oxfordshire,,Secondary,Student +417,S1B-005,1,E,,yes,,,Michael,18-25,male,British,UK south,,Secondary,Student +418,S1B-006,1,A,,yes,Tutor,Hall,,46-65,male,British,,PhD,University,University Lecturer +419,S1B-006,1,B,,yes,,,Jackie,18-25,female,British,London,,Secondary,student +420,S1B-006,1,C,,yes,,,Susan,18-25,female,British,,,Secondary,student +421,S1B-006,1,D,,yes,,,Roger,18-25,male,British,,,Secondary,student +422,S1B-007,1,A,,yes,Tutor,Agnew,Clive,26-45,male,British,London,PhD,University,Lecturer in Geography +423,S1B-007,1,B,,yes,,,Barbara,18-25,female,British,London,,Secondary,Student +424,S1B-007,1,C,,yes,,,Colin,18-25,male,British,Essex,,Secondary,Student +425,S1B-007,1,D,,yes,,,James,18-25,male,British,London,,Secondary,Student +426,S1B-007,1,E,,yes,,,Duncan,18-25,male,British,London,,Secondary,Student +427,S1B-008,1,A,,yes,Tutor,,,34,male,British,,MA in Fine Art,University,University Tutor +428,S1B-008,1,B,,yes,,,David,23,male,British,London,,Secondary,Student +429,S1B-008,1,C,,yes,,,Miriam,18-25,female,British,Scotland,,Secondary,Student +430,S1B-008,1,D,,yes,,,Anne-Marie,18-25,female,,,,Secondary,Student +431,S1B-008,2,A,,yes,,,,,male,,,,,University Lecturer +432,S1B-008,2,B,,yes,,,,,male,,,,, +433,S1B-008,2,C,,yes,,,,,male,,,,, +434,S1B-008,2,D,,yes,,,,,female,,,,, +435,S1B-008,2,E,,yes,,,,,female,,,,, +436,S1B-008,3,A,,yes,,,,,male,,,,,University Lecturer +437,S1B-008,3,B,,yes,,,,,female,,,,, +438,S1B-008,3,C,,yes,,,,,female,,,,, +439,S1B-008,3,D,,yes,,,,,male,,,,, +440,S1B-008,3,E,,yes,,,,,male,,,,, +441,S1B-009,1,A,,yes,Tutor,Fitzgerald,M.,26-45,female,British,London,PhD Anatomy,University,University lecturer +442,S1B-009,1,B,,yes,,,,18-25,male,British,London,,Secondary,Student +443,S1B-009,1,C,,yes,,,,18-25,male,British,,,Secondary,Student +444,S1B-009,1,D,,yes,,,,18-25,male,British,,,Secondary,Student +445,S1B-010,1,A,,yes,,Hobsley,Michael,46-65,male,British,,,University,Professor of Surgery +446,S1B-010,1,B,,yes,,,,18-25,female,British,,,Secondary,Student +447,S1B-010,1,C,,yes,,,,18-25,male,British,,,Secondary,Student +448,S1B-010,1,D,,yes,,,,18-25,male,British,,,Secondary,Student +449,S1B-010,1,E,,yes,,,,18-25,female,British,,,Secondary,Student +450,S1B-011,1,A,,yes,Tutor,Austin,R.C.,46-65,male,British,UK south,,University,Lecturer in Public Law +451,S1B-011,1,B,,yes,,,,18-25,male,British,London,,Secondary,Student +452,S1B-011,1,C,,yes,,,,18-25,female,British,London,,Secondary,Student +453,S1B-011,1,D,,yes,,,,18-25,male,British,Sussex,,Secondary,Student +454,S1B-011,1,E,,yes,,,,18-25,male,British,London,,Secondary,Student +455,S1B-011,1,F,,yes,,,,18-25,female,British,London,,Secondary,Student +456,S1B-011,1,G,,yes,,,,18-25,male,British,London,,Secondary,Student +457,S1B-011,1,H,,yes,,,,18-25,female,British,UK south,,Secondary,Student +458,S1B-011,1,I,,yes,,,,18-25,male,British,,,Secondary,Student +459,S1B-012,1,A,,yes,,Tollfree,Laura,18-25,female,British,London,BA Linguistics,University,Student (PhD) +460,S1B-012,1,B,,yes,Tutor,,April,28,female,British,Edinburgh,PhD Phonology,University,University Lecturer +461,S1B-013,1,A,,yes,Tutor,Stephenson,William,46-65,male,British,,PhD Mathematics,University,University Lecturer +462,S1B-013,1,B,,yes,,,,18-25,male,British,London,,Secondary,Student +463,S1B-013,1,C,,yes,,,,18-25,female,British,Kent,,Secondary,Student +464,S1B-013,1,D,,yes,,,,18-25,female,British,London,,Secondary,Student +465,S1B-013,1,E,,yes,,,,18-25,female,British,Essex,,Secondary,Student +466,S1B-014,1,A,,yes,Tutor,Bindman,David,46-65,male,British,,PhD,University,Professor of the History of Art +467,S1B-014,1,B,,yes,,,,18-25,male,British,London,,Secondary,Student +468,S1B-014,1,C,,yes,,,,18-25,female,British,London,,Secondary,Student +469,S1B-015,1,A,,yes,Tutor,Wolf,J.,26-45,male,British,London,PhD,University,University Lecturer +470,S1B-015,1,B,,yes,,,John,18-25,male,British,Birmingham,,Secondary,Student +471,S1B-015,1,C,,yes,,,Rebecca,18-25,female,British,London (south),,Secondary,Student +472,S1B-016,1,A,,yes,Tutor,Houghton,George,26-45,male,British,Merseyside,PhD,University,University Lecturer +473,S1B-016,1,B,,yes,,,,18-25,male,British,London,,Secondary,Student +474,S1B-016,1,C,,yes,,,Matt,18-25,male,British,Kent,,Secondary,Student +475,S1B-016,1,D,,yes,,,Esther,18-25,female,British,London,,Secondary,Student +476,S1B-017,1,A,,yes,Tutor,Orton,Clive,26-45,male,British,London,,University,Lecturer in Archaeology +477,S1B-017,1,B,,yes,,,,46-65,male,British,London,,Secondary,Student +478,S1B-017,1,C,,yes,,,,18-25,female,British,,,Secondary,Student +479,S1B-017,1,D,,yes,,,,18-25,male,British,London south,,Secondary,Student +480,S1B-017,1,E,,yes,,,,18-25,female,British,London,,Secondary,Student +481,S1B-018,1,A,,yes,,,,24,male,British,Nottingham,,Secondary,Student +482,S1B-018,1,B,,yes,Tutor,,,46-65,male,British,London,,University,University Lecturer,, +483,S1B-018,1,C,,yes,,,,25,male,British,London,,Secondary,Student,, +484,S1B-018,1,D,,yes,Tutor,,,34,male,British,South east UK,,University,University tutor,, +485,S1B-018,1,E,,yes,,,Chris,18-25,male,British,London (south),,Secondary,Student,, +486,S1B-018,1,F,,yes,,,,18-25,male,British,,,Secondary,Student,, +487,S1B-019,1,A,,yes,Tutor,Easterling,P.,46-65,female,British,,Phd,University,Professor of Greek & Latin,, +488,S1B-019,1,B,,yes,,,,18-25,female,British,,,Secondary,Student,, +489,S1B-019,1,C,,yes,,,Michael,18-25,male,British,Midlands,,Secondary,Student,, +490,S1B-019,1,D,,yes,,,,18-25,female,British,,,Secondary,Student,, +491,S1B-019,1,E,,yes,,,Eleanor,18-25,female,British,London,,Secondary,Student,, +492,S1B-020,1,A,,yes,Tutor,Titchener-Hooker,M.,26-45,male,British,,PhD,University,University Lecturer in Biochemistry,, +493,S1B-020,1,B,,yes,,,Victor,18-25,male,British,London,,Secondary,Student,, +494,S1B-020,1,C,,yes,,,,18-25,male,British,London,,Secondary,Student,, +495,S1B-021,1,A,,yes,Chairman,Morgan,Cliff,61,male,British,Wales,Grammar School,Secondary,"Broadcaster, ex-rugby player",,Welsh +496,S1B-021,1,B,,yes,,Heyhoe-Flint,Rachael,52,female,British,Wolverhampton,Wolverhampton High School; Dartford College of Physical Education,University,"Ex-cricketer, broadcaster, writer",,None +497,S1B-021,1,C,,yes,,Wooller,Wilfred,66+,male,British,"Colwyn Bay, Wales",Cambridge (MA),University,Justice of the Peace,,Some French +498,S1B-021,2,A,,yes,Chairman,Neil,Andrew,42,male,British,"Paisley, Scotland",Paisley Grammar School; Glasgow University (MA),University,"Editor, The Sunday Times",,, +499,S1B-021,2,B,,yes,,Soutier,Janank,26-45,male,British,,,University,Economist,,, +500,S1B-021,2,C,,yes,,Ginane,Jackie,26-45,female,British,,,University,Economist,,, +501,S1B-022,1,A,,yes,Chairman,,,,male,British,,,,,,, +502,S1B-022,1,B,,yes,,Bragg,Melvyn,52,male,British,Cumbria,"Wadham College, Oxford",University,"Broadcaster, novelist",,, +503,S1B-022,1,C,,yes,,Mortimer,John,58,male,British,London,Harrow School; Brasenose Coll. Oxford; Inner Temple,University,"Barrister, novelist, playwright",,,"QC, 1966" +504,S1B-022,1,D,,yes,,Jackson,Glenda,55,female,British,Birkenhead,"West Kirby Grammar School; Royal Academy of Dramatic Arts, London",University,"Political candidate, actress",,, +505,S1B-022,1,E,,yes,,Renton,Tim,59,male,British,,"Eton College; Magdalen College, Oxford (MA History)",University,Politician,,, +506,S1B-022,1,F,,yes,,Fielderson,Russell,,male,British,,,,,,, +507,S1B-023,1,A,,yes,Chairman,Baker,Richard,66,male,British,"Willesden, London","Peterhouse, Cambridge",University,"Broadcaster, ex-actor",,, +508,S1B-023,1,B,,yes,,Woolfenden,Guy,54,male,British,,"Westminster Abbey Choir School; Christ's College, Cambridge (MA); Guildhall School of Music (LGSM)",University,Orchestra conductor,,, +509,S1B-023,1,C,,yes,,Nunn,Trevor,51,male,British,Ipswich,"Downing College, Cambridge (BA)",University,"Associate Director, The Royal Shakespeare Company",,, +510,S1B-024,1,A,,yes,Chairman,Bragg,Melvyn,52,male,British,Cumbria,"Wadham College, Oxford (MA)",University,"Broadcaster, novelist",,, +511,S1B-024,1,B,,yes,,Lawson,Mark,26-45,male,British,London,UCL (BA English),University,Journalist,,, +512,S1B-024,1,C,,yes,,Mortimer,John,58,male,British,London,Harrow School; Brasenose Coll. Oxford; Inner Temple,University,"Barrister, novelist, playwright",,,"QC, 1966" +513,S1B-024,1,D,,yes,,Couper,Heather,42,female,British,Middlesex,Grammar Sch; Univ. of Leicester (BSc Physics & Astronomy),University,Prof. of Astronomy; science broadcaster/writer,"FRAS, 1970","French, Latin, German", +514,S1B-024,1,E,,yes,,Davies,Peter,26-45,male,British,"Stroud, Glos.",,University,,,"French, some German", +515,S1B-024,1,F,,yes,,Dobbs,Michael,46-65,male,British,London,,University,"Politician, novelist",,, +516,S1B-025,1,A,,yes,Chairman,Jones,Clay,66+,male,British,"Cardigan, Wales",,University,Broadcaster,,Welsh, +517,S1B-025,1,B,,yes,,Ledward,Daphne,26-45,female,British,Bradford,,Secondary,Horticulturalist,,"French, Latin", +518,S1B-025,1,C,,yes,,Downham,Fred,46-65,male,British,"Galgate, Lancaster",,Secondary,Horticulturalist,,None, +519,S1B-025,1,D,,yes,,Buczacki,Stefan,26-45,male,British,Derby,PhD,University,Horticulturalist,,"French, Russian", +520,S1B-026,1,A,,yes,Chairman,Purves,Libby,26-45,female,British,London,"Oxford University, English 1971",University,Broadcaster,,French, +521,S1B-026,1,B,,yes,,Horrocks,Stella,46-65,female,British,Bradford,Teachers' Training College,University,Ex-teacher,,None, +522,S1B-026,1,C,,yes,,Hayes,Brian,46-65,male,British,"Perth, Australia",,University,Broadcaster,,, +523,S1B-026,1,D,,yes,,Dickens,Monica,66+,female,British,London,"St Paul's School, Hammersmith, London",Secondary,Novelist,,, +524,S1B-026,1,E,,yes,,Pheloung,Barrington,26-45,male,British,,,University,"Musician, composer",,, +525,S1B-027,1,A,,yes,Chairman,Sissons,Peter,49,male,British,Liverpool,Oxford University (MA),University,Broadcaster,,, +526,S1B-027,1,B,,yes,,Clarke,Kenneth,51,male,British,Nottingham,"Nottingham High School; Gonville & Caius College, Cambridge (BA, LLB)",University,Politician,,, +527,S1B-027,1,C,,yes,,Hattersley,Roy,59,male,British,Sheffield,Sheffield Grammar School; Hull University,University,"Politician, journalist",,, +528,S1B-027,1,D,,yes,,Ashdown,Paddy,41,male,British,India,Bedfordshire Public School; Hong Kong University,University,"Politician, ex-soldier",,Chinese,Moved to Britain aged 4 +529,S1B-027,1,E,,yes,,Sheppard,David,62,male,British,,Cambridge (MA); Theological College,University,Bishop of Liverpool,,, +530,S1B-028,1,A,,yes,Chairman,MacIntyre,Ian,60,male,British,Kincardineshire,"Cambridge (MA); College of Europe, Bruges",University,Broadcaster,,"French, Norwegian, Russian, Italian", +531,S1B-028,1,B,,yes,,Sacks,Jonathan,43,male,British,London,"Cambridge (MA); Oxford (PhD); Jews' College, London",University,Chief Rabbi,,, +532,S1B-028,1,C,,yes,,Halsey,A.H.,68,male,British,Kettering,"London School of Economics (BSC Econ, PhD), MA Oxon",University,"Professorial Fellow, Nuffield College, Oxford",,,Former Professor of Social & Admin. Studies +533,S1B-028,1,D,,yes,,McDade,John,26-45,male,British,Glasgow,,University,Clergyman,,, +534,S1B-028,1,E,,yes,,Harrison,Anne,46-65,female,British,,,,,,, +535,S1B-029,1,A,,yes,,Hannan,Patrick,46-65,male,British,"Glamorgan, Wales",,University,Broadcaster,,, +536,S1B-029,1,B,,yes,,Parris,Matthew,42,male,British,South Africa,"Waterford School, Swaziland; Cambridge (BA); Yale University",University,"Journalist, ex-politician",,Spanish, +537,S1B-029,1,C,,yes,,Thomas,Daffyd Elis,45,male,British,Wales,University College North Wales,University,Politician; Ex-tutor in Celtic Studies,,,"Ex-lecturer in English, Univ. Coll. North Wales" +538,S1B-029,1,D,,yes,,Hawkes,Terence,46-65,male,British,,,University,Professor of English,,, +539,S1B-030,1,A,,yes,Chairman,Buerk,Michael,45,male,British,,Solihull School,Secondary,"Broadcaster, journalist",,, +540,S1B-030,1,B,,yes,,Dawson,Judith,26-45,female,British,,,,,,, +541,S1B-030,1,C,,yes,,Daley,Janet,46-65,female,,USA,,University,Journalist,,, +542,S1B-030,1,D,,yes,,Scruton,Roger,47,male,British,,"Cambridge (MA, PhD)",University,"Professor of Aesthetics, Birkbeck College, London",,, +543,S1B-030,1,E,,yes,,Amphlett,Sue,26-45,female,British,,,,,,, +544,S1B-030,1,F,,yes,,Pearce,Edward,52,male,British,Darlington,Grammar School; Oxford (MA); University of Stockholm,University,"Political commentator, writer",,, +545,S1B-031,1,A,,yes,Chairman,Buerk,Michael,45,male,British,,Solihull School,Secondary,"Broadcaster, journalist",,, +546,S1B-031,1,B,,yes,,Scruton,Roger,47,male,British,,"Cambridge (MA, PhD)",University,"Professor of Aesthetics, Birkbeck College, London",,, +547,S1B-031,1,C,,yes,,Pearce,Edward,52,male,British,Darlington,Grammar School; Oxford (MA); University of Stockholm,University,"Political commentator, writer",,, +548,S1B-031,1,D,,yes,,Daley,Janet,26-45,female,,USA,,University,Journalist,,, +549,S1B-031,1,E,,yes,,Farrar-Hockley,Gen. Sir Anthony,67,male,British,,Exeter School,Secondary,"British Army General, military historian, writer",,, +550,S1B-031,1,F,,yes,,Foot,Paul,54,male,British,,,,Journalist,,, +551,S1B-032,1,A,,yes,,Baker,Richard,66,male,British,"Willesden, London","Peterhouse, Cambridge",University,"Broadcaster, ex-actor",,, +552,S1B-032,1,B,,yes,,Handley,Vernon,61,male,British,London,"Enfield School; Balliol College, Oxford; Guildhall School of Music",University,"Conductor, Royal Liverpool Philharmonic Orchestra",,, +553,S1B-032,1,C,,yes,,Thomson,Bryden,46-65,male,British,"Ayr, Scotland","Ayr Academy; Royal Scottish Academy of Music; Staatliche Hochschule fur Musik, Hamburg",University,Composer,"Fellow, Royal Scottish Acad. of Music & Drama",German, +554,S1B-033,1,A,,yes,Chairman,Northam,Gerry,26-45,male,British,London,,University,Broadcaster,,, +555,S1B-033,1,B,,yes,,Wheeler,Sir John,51,male,British,Suffolk,"Staff College, Wakefield",University,Politician,,, +556,S1B-033,1,C,,yes,,Owen,David,46-65,male,British,North Wales,,University,"President, Association of Chief Police Officers; ex-detective",,, +557,S1B-033,1,D,,yes,,Hattersley,Roy,59,male,British,Sheffield,Sheffield Grammar School; Hull University,University,Politician,,, +558,S1B-033,1,E,,yes,,McClelland,Robert,26-45,male,British,,,,Politician,,, +559,S1B-033,1,F,,yes,,Alderson,John,46-65,male,British,,,University,"Honorary Research Fellow, Exeter University; ex-Chief Constable",,, +560,S1B-033,1,G,,yes,,Puddephatt,Andrew,41,male,British,,"Sidney Sussex College, Cambridge (BA 1971)",University,"General Secretary, National Council for Civil Liberties",,,Former teacher and computer programmer +561,S1B-034,1,A,,yes,Chairman,Dimbleby,David,53,male,British,London,Charterhouse School; Oxford (MA); University of Paris,University,Broadcaster,,, +562,S1B-034,1,B,,yes,,Thomson,Ken,46-65,male,British,,,,"Leader, Nottingham County Council",,, +563,S1B-034,1,C,,yes,,Bradbury,,46-65,male,British,Nottingham,,,County Councillor,,, +564,S1B-034,1,D,,yes,,,,26-45,male,British,,,,,,, +565,S1B-034,1,E,,yes,,Higgins,Bertha,46-65,female,British,Nottingham,,University,County Councillor,,, +566,S1B-034,1,F,,yes,,Morton,David,46-65,male,British,,,,County Councillor,,, +567,S1B-034,1,G,,yes,,Travis,Tony,26-45,male,British,,,,County Councillor,,, +568,S1B-034,1,H,,yes,,Hodge,Margaret,46-65,female,British,,,,County Councillor,,, +569,S1B-034,1,I,,yes,,Watson,,46-65,male,British,,,,County Councillor,,, +570,S1B-034,1,J,,yes,,Braver,Brandon,46-65,male,British,,,,County Councillor,,, +571,S1B-034,1,K,,yes,,,,46-65,male,British,Scotland,,,County Councillor,,, +572,S1B-034,1,L,,yes,,Wendt,Robin,46-65,male,British,,,,,,, +573,S1B-035,1,A,,yes,Chairman,Dimbleby,Jonathan,47,male,British,London,UCL (BA Philosophy),University,Broadcaster,,, +574,S1B-035,1,B,,yes,,Sawyer,Tom,46-65,male,British,,,,Trade Unionist,,, +575,S1B-035,1,C,,yes,,Rifkind,Malcolm,45,male,British,Scotland,"Edinburgh University (LLB, MSc)",University,Politician,,,"Lectured at University of Rhodesia, 1967-8" +576,S1B-035,1,D,,yes,,Wilkinson,Paul,54,male,British,Wales,"University College Swansea; University of Wales (BA History & Politics, MA)",University,Professor of International Relations,,, +577,S1B-036,1,A,,yes,Chairman,Naughtie,James,40,male,British,Scotland,Grammar School; Aberdeen University; Syracuse University,University,Broadcaster,,, +578,S1B-036,1,B,,yes,,Wallace,William,50,male,British,,"King's College, Cambridge; Nuffield College, Oxford; Cornell University (PhD, 1968)",University,"Sen. Research Fellow in European Studies, Oxford",,, +579,S1B-036,1,C,,yes,,Robertson,George,45,male,British,"Dunoon, Scotland","Dunoon Grammar School; University of Dundee (MA Hons, 1968)",University,Politician,,, +580,S1B-036,1,D,,yes,,Kaldor,Mary,46-65,female,British,,,University,"Sen. Fellow, Science Policy Research Unit, Sussex",,, +581,S1B-036,1,E,,yes,,Patten,John,46,male,British,London,"Wimbledon College; Sidney Sussex College, Cambridge (PhD 1972)",University,Politician,,,Former university lecturer +582,S1B-037,1,A,,yes,Chairman,Hewison,Robert,46-65,male,British,,,University,Broadcaster,,, +583,S1B-037,1,B,,yes,,Aslet,Clive,36,male,British,London,"Peterhouse, Cambridge",University,"Deputy Editor, Country Life",,, +584,S1B-037,1,C,,yes,,Legge,Rodney,,male,British,,,,,,, +585,S1B-037,1,D,,yes,,Gourlay,Sir Simon,57,male,British,,Winchester School; Royal Agricultural College,University,"President, National Farmers' Union",,, +586,S1B-038,1,A,,yes,,,,,male,British,,,,Military Analyst,,, +587,S1B-038,1,B,,yes,Chairman,Dimbleby,Jonathan,47,male,British,London,UCL (BA Philosophy),University,Broadcaster,,, +588,S1B-038,1,C,,yes,,Groves,Eric,,male,British,,,,Naval specialist,,, +589,S1B-039,1,A,,yes,Chairman,Neil,Andrew,42,male,British,"Paisley, Scotland",Grammar School; University of Glasgow,University,"Journalist, Editor, `The Sunday Times'",,, +590,S1B-039,1,B,,yes,,McIntyre,Donald,26-45,male,British,,,University,Journalist,,, +591,S1B-039,1,C,,yes,,Campbell,Alastair,26-45,male,British,,,University,Journalist,,, +592,S1B-040,1,A,,yes,Chairman,,,,male,British,,,,,,, +593,S1B-040,1,B,,yes,,Haines,Joe,63,male,British,Rotherhithe,,Secondary,Journalist,,,Former Press Officer to the Prime Minister +594,S1B-040,1,C,,yes,,Pimlott,Ben,46,male,British,London,"Rokeby School, Wimbledon; Marlborough Coll.; Worcester Coll.; Oxford (MA, BPhil); Newcastle (PhD)",University,Professor of Politics & Contemporary History,,, +595,S1B-040,1,D,,yes,,Jenkins,Roy,71,male,British,Wales,"Abersychan Grammar School; University College Cardiff; Balliol College, Oxford",University,Politician,,, +596,S1B-041,1,A,,yes,Interviewer,Nicholson,Mavis,61,female,British,Wales,,University,Broadcaster,,, +597,S1B-041,1,B,,yes,Interviewee,Runcie,Robert,66,male,British,London,Merchant Taylor's School; Oxford; Cambridge,University,Former Archbishop of Canterbury,,, +598,S1B-042,1,A,,yes,Interviewer,Aspel,Michael,57,male,British,London,London,University,Broadcaster,,, +599,S1B-042,1,B,,yes,Interviewee,Laurie,Hugh,26-45,male,British,UK south,Eton; Cambridge (Archaeology),University,"Comedian, actor",,, +600,S1B-042,2,A,,yes,Interviewer,Morley,Sheridan,46-65,male,British,Ascot,,University,Broadcaster,,French, +601,S1B-042,2,B,,yes,Interviewee,Mortimer,John,58,male,British,London,Harrow School; Brasenose Coll. Oxford; Inner Temple,University,"Barrister, novelist, playwright",,,"QC, 1966" +602,S1B-043,1,A,,yes,Interviewer,Dimbleby,Jonathan,47,male,British,London,UCL (BA Philosophy),University,Broadcaster,,, +603,S1B-043,1,B,,yes,Interviewee,Major,John,47,male,British,London,,Secondary,"Politician, accountant",,, +604,S1B-044,1,A,,yes,Interviewer,Allen,Paul,26-45,male,British,,,University,Broadcaster,,, +605,S1B-044,1,B,,yes,Interviewee,Walker,Lynn,26-45,female,British,Edinburgh,,University,Critic,,None, +606,S1B-044,2,A,,yes,Interviewer,Allen,Paul,26-45,male,British,,,University,Broadcaster,,, +607,S1B-044,2,B,,yes,Interviewee,Tomalin,Claire,58,female,British,,Hitchin Grammar School; Cambridge (MA),University,"Novelist, biographer",,, +608,S1B-044,3,A,,yes,Interviewer,Watts,Geoff,,male,British,,,,Broadcaster,,, +609,S1B-044,3,B,,yes,Interviewee,Bird,Anne,26-45,female,British,,,,Nurse,,, +610,S1B-045,1,A,,yes,Interviewer,Andrews,Nigel,26-45,male,British,,,,Broadcaster,,, +611,S1B-045,1,B,,yes,Interviewee,Jarman,Derek,49,male,British,London,"King's College, London; Slade School of Art",University,"Painter, film director",,, +612,S1B-046,1,A,,yes,Interviewer,Lawley,Sue,45,female,British,Worcestershire,Bristol University (BA Modern Languages),University,Broadcaster,,, +613,S1B-046,1,B,,yes,Interviewee,Byatt,A.S.,55,female,British,Sheffield,"Cambridge; Bryn Mawr College, Pa., USA; Somerville Coll., Oxford",University,Novelist,,,Former lecturer in English +614,S1B-047,1,A,,yes,Interviewer,MacIntyre,Ian,60,male,British,Kincardineshire,"Prescot Grammar School; St John's College, Cambridge; College of Europe, Bruges",University,Broadcaster,,"French, Norwegian, Russian, Italian", +615,S1B-047,1,B,,yes,Interviewee,Sacks,Jonathan,43,male,British,,"Cambridge (MA); Oxford (PhD); Jews' College, London",University,Chief Rabbi,,, +616,S1B-048,1,A,,yes,Interviewer,Forde,Nigel,26-45,male,British,,,,Broadcaster,,, +617,S1B-048,1,B,,yes,Interviewee,Stewart,Mary,75,female,British,Cumberland,"Skellfield School, Ripon, Yorks; Durham University",University,Novelist,,,Former lecturer in English +618,S1B-049,1,A,,yes,Interviewer,Cuffe,Jenny,26-45,female,British,London,,University,Broadcaster,,"French, Spanish, Italian", +619,S1B-049,1,B,,yes,Interviewee,Mottley,Shiela,46-65,female,British,Manchester,,Secondary,,,None, +620,S1B-050,1,A,,yes,Interviewer,Billington,Michael,52,male,British,Warwickshire,Oxford (BA),University,"Drama critic, journalist",,, +621,S1B-050,1,B,,yes,Interviewee,Brickman,Mark,,male,British,,,,,,, +622,S1B-051,1,A,,yes,,Summerson,Hugo,41,male,British,Cirencester,Agricultural College,University,"Politician, surveyor",,, +623,S1B-051,1,B,,yes,,Battle,John,40,male,British,Leeds,"Upholland College, Leeds",University,Politician,,,Trained for R.C. Church +624,S1B-051,1,C,,yes,Speaker of the House,Dean,Sir Paul,67,male,British,,"Ellesmere College, Shropshire; Exeter College, Oxford",University,"Deputy Speaker, House of Commons; businessman",,, +625,S1B-051,1,D,,yes,,Skinner,Denis,58,male,British,Sheffield,"Sheffield University; Ruskin College, Oxford",University,"Politician, miner",,, +626,S1B-051,1,E,,yes,,Rogers,Allan,59,male,British,Wales,University College Swansea (BSc Geology),University,"Politician, geologist",,,"Worked in USA, Canada, Australia, 1956-63" +627,S1B-051,1,F,,yes,,Holt,Richard,60,male,British,London,Wembley Technical College,University,Politician,,, +628,S1B-051,1,G,,yes,,Boyes,Roland,54,male,British,,,,"Politician, social services director",,, +629,S1B-051,1,H,,yes,,Mahon,Alice,54,female,British,Halifax,Bradford University,University,"Politician, lecturer",,, +630,S1B-051,1,I,,yes,,Livingstone,Ken,46,male,British,London,Fawcett College of Education,University,"Politician, lab technician",,, +631,S1B-052,1,A,,yes,Speaker of the House,Weatherill,Bernard,71,male,British,,Malvern College,Secondary,Speaker of the House of Commons,,, +632,S1B-052,1,B,,yes,,Clark,William,74,male,British,London,,Secondary,"Politician, accountant",,, +633,S1B-052,1,C,,yes,,Major,John,47,male,British,London,,Secondary,Politician,,, +634,S1B-052,1,D,,yes,,Beith,Alan,47,male,British,Berwick,"King's School, Macclesfield; Balliol College Oxf.",University,"Politician, lecturer",,, +635,S1B-052,1,E,,yes,,Higgins,Terence,63,male,British,Dulwich,Cambridge; Yale,University,"Politician, economist",,, +636,S1B-052,1,F,,yes,,Sheldon,Robert,68,male,British,Burnley,Technical College; London University,University,"Politician, engineer",,, +637,S1B-052,1,G,,yes,,Wardle,Charles,62,male,British,Tunbridge Wells,"Lincoln Coll, Oxford; Harvard Business School",University,Politician,,, +638,S1B-052,1,H,,yes,,Radice,Giles,55,male,British,,"Magdalen College, Oxford; LSE",University,"Politician, writer",,, +639,S1B-052,1,I,,yes,,Stewart,Ian,56,male,British,Haileybury,"Jesus College, Cambridge (MA, LittD (1978))",University,Politician,,, +640,S1B-052,1,J,,yes,,Smith,Tim,44,male,British,,"Harrow School; St Peter's College, Oxford (MA)",University,Politician,FCA,, +641,S1B-052,1,K,,yes,,Leadbetter,Ted,72,male,British,,Teacher Training College,University,"Politician, teacher",,, +642,S1B-052,1,L,,yes,,Nelson,Anthony,43,male,British,,Harrow; Christ's College Cambridge,University,"Politician, banker",,, +643,S1B-052,1,M,,yes,,Fraser,John,57,male,British,London,"Grammar School, Chelsea; Loughborough Univ.",University,"Politician, solicitor",,, +644,S1B-052,1,N,,yes,,Budgen,Nicholson,54,male,British,,Oxford; Cambridge,University,"Politician, barrister",,, +645,S1B-052,1,O,,yes,,Salmond,Alex,37,male,British,Scotland,St Andrew's,University,"Politician, economist",,, +646,S1B-053,1,A,,yes,,Ridley,Nicholas,62,male,British,,Eton; Oxford,University,"Politician, engineer",,, +647,S1B-053,1,B,,yes,,Thatcher,Margaret,65,female,British,Grantham,Oxford; Lincoln's Inn,University,Politician,,, +648,S1B-053,1,C,,yes,Speaker of the House,Weatherill,Bernard,71,male,British,,Malvern College,University,Speaker of the House of Commons,,, +649,S1B-053,1,D,,yes,,Ashdown,Paddy,41,male,British,India,Bedfordshire Public School; Hong Kong University,University,"Politician, ex-soldier",,Chinese,Moved to Britain aged 4 +650,S1B-053,1,E,,yes,,Squire,Robin,47,male,British,London,"Tiffin School, Kingston-upon Thames; Accountancy training",University,"Politician, chartered accountant",FCA,, +651,S1B-053,1,F,,yes,,Lamond,James,63,male,British,Scotland,Burrelton School,Secondary,"Politician, engineering draughtsman",,, +652,S1B-053,1,G,,yes,,Tebbit,Norman,60,male,British,London,Edmonton County Grammar School,Secondary,"Politician, businessman",,, +653,S1B-053,1,H,,yes,,Norris,Steve,46,male,British,Liverpool,"Worcester College, Oxford",University,Politician,,, +654,S1B-053,1,I,,yes,,Quin,Joyce,47,female,British,,London School of Economics,University,"Politician, lecturer",,French, +655,S1B-053,1,J,,yes,,Onslow,Cranley,65,male,British,Bexhill,"Harrow School; Oriel College, Oxford; Geneva University",University,Politician,,, +656,S1B-054,1,A,,yes,Speaker of the House,Weatherill,Bernard,71,male,British,,Malvern College,Secondary,Speaker of the House of Commons,,, +657,S1B-054,1,B,,yes,,Chalker,Lynda,51,female,British,,Heidelberg University; Westfield College; Central London Polytechnic,University,"Politician, statistician",,, +658,S1B-054,1,C,,yes,,Wells,Bowen,56,male,British,London,"St Paul's School, London, Exeter University",University,Politician,,, +659,S1B-054,1,D,,yes,,Budgeon,Nicholas,54,male,British,Oxfordshire,Cambridge,University,"Politician, barrister",,, +660,S1B-054,1,E,,yes,,Cryer,Bob,56,male,British,Yorkshire,"Salt School, Shipley; Hull University",University,"Politician, teacher",,, +661,S1B-055,1,A,,yes,Speaker of the House,Weatherill,Bernard,71,male,British,,Malvern College,Secondary,Speaker of the House of Commons,,, +662,S1B-055,1,B,,yes,,Nicholls,Patrick,43,male,British,,"College of Law, Guildford",University,"Politician, solicitor",,, +663,S1B-055,1,C,,yes,,Eastham,Ken,63,male,British,Manchester,Openslaw Technical College,University,"Politician, engineer",,, +664,S1B-055,1,D,,yes,,Lloyd,Tony,41,male,British,Stretford,Stretford Grammar School; Nottingham University (BSc); Manchester Business School (DipBA),University,"Politician, Lecturer in Business Studies",,, +665,S1B-055,1,E,,yes,,,,,male,,,,,,,,Clerk of the House of Commons +666,S1B-055,1,F,,yes,,Howard,Michael,50,male,British,Wales,"Grammar School; Peterhouse, Cambridge; Inner Temple",University,"Politician, barrister",,, +667,S1B-055,1,G,,yes,,Thompson,Patrick,56,male,British,,"Felsted School, Essex; Emmanuel College, Cambridge (MA)",University,Politician,MInstP,, +668,S1B-055,1,H,,yes,,Lamond,James,63,male,British,Scotland,Burrelton School,Secondary,"Politician, engineering draughtsman",,, +669,S1B-055,1,I,,yes,,Riddick,Graham,36,male,British,,"Stowe School, Buckingham; University of Warwick",University,Politician,,, +670,S1B-055,1,J,,yes,,Short,Claire,45,female,British,,Grammar School; Keele Univ; Leeds Univ,University,Politician,,, +671,S1B-055,1,K,,yes,,Thurnham,Peter,53,male,British,,Cambridge; Harvard Business School,University,"Politician, engineer, businessman, farmer",,, +672,S1B-055,1,L,,yes,,Fyfe,Maria,53,female,British,Glasgow,"High School, Glasgow; Strathclyde Univ",University,"Politician, lecturer",,, +673,S1B-055,1,M,,yes,,Porter,Barry,43,male,British,,"College of Speech and Drama, London",University,"Politician, drama teacher",,, +674,S1B-055,1,N,,yes,,Reid,John,44,male,British,Scotland,Stirling Univ (PhD),University,"Politician, researcher",,, +675,S1B-055,1,O,,yes,,Hicks,Maureen,43,female,British,London,"Furzedown College of Education, London",University,"Politician, lecturer",,, +676,S1B-056,1,A,,yes,Speaker of the House,Weatherill,Bernard,71,male,British,,Malvern College,Secondary,Speaker of the House of Commons,,, +677,S1B-056,1,B,,yes,,Grist,Ian,53,male,British,Wales,"Jesus College, Oxford",University,Politician,,, +678,S1B-056,1,C,,yes,,Powell,Ray,63,male,British,Wales,London School of Economics,University,Politician,,, +679,S1B-056,1,D,,yes,,Howells,Kim,44,male,British,,College of Advanced Technology; Warwick Iniv,University,"Politician, lecturer",,, +680,S1B-056,1,E,,yes,,Griffiths,Win,48,male,British,Wales,Grammar School; Univ of Wales,University,"Politician, teacher",,, +681,S1B-056,1,F,,yes,,Jones,Barry,53,male,British,Wales,Bangor College of Education,University,"Politician, teacher of English",,, +682,S1B-056,1,G,,yes,,Michael,Alun,48,male,British,Wales,Colwyn Bay Grammar School; Keele University (BA English & Philos.),University,Politician,,,Former journalist +683,S1B-056,1,H,,yes,,Davies,Ron,45,male,British,,Portsmouth Poly; Univ of Wales; London Univ,University,"Politician, teacher of further education",,, +684,S1B-056,1,I,,yes,,Bennett,Nicholas,42,male,British,London,Polytechnic of N.London (BA Philosophy); Univ. of London Inst of Educ (PGCE); Univ. of Sussex (MA),University,Politician,,, +685,S1B-056,1,J,,yes,,Livsey,Richard,56,male,British,,Agricultural College,University,"Politician, farmer",,, +686,S1B-056,1,K,,yes,,Walker,Bill,62,male,British,Scotland,"Logie School, Dundee; Trades College, Dundee; College for Distributive Trades",University,Politician,"FIPM, FBIM",, +687,S1B-057,1,A,,yes,Speaker of the House,Weatherill,Bernard,71,male,British,,Malvern College,Secondary,Speaker of the House of Commons,,, +688,S1B-057,1,B,,yes,,,,,male,British,,,,Clerk of the House of Commons,,, +689,S1B-057,1,C,,yes,,Jackson,Robert,45,male,British,,"St Edmund's Hall, Oxford",University,Politician,,, +690,S1B-057,1,D,,yes,,Wigley,Daffyd,47,male,British,Wales,Manchester University,University,"Politician, economist",, +691,S1B-057,1,E,,yes,,Thurnham,Peter,53,male,British,,"Peterhouse, Cambridge; Harvard Business School",University,"Politician, engineer, businessman, farmer",, +692,S1B-057,1,F,,yes,,Howard,Michael,50,male,British,Wales,"Peterhouse, Cambridge; Inner Temple",University,"Politician, barrister",, +693,S1B-057,1,G,,yes,,Thompson,Jack,63,male,British,,Bothal School; Ashington Mining College,University,"Politician, Electrical Engineer",, +694,S1B-057,1,H,,yes,,Bruce,Ian,44,male,British,,Chelmsford Technical School; Bradford Univ,University,"Politician, businessman",, +695,S1B-057,1,I,,yes,,Leighton,Ron,61,male,British,,"Ruskin College, Oxford",University,"Politician, printer",, +696,S1B-057,1,J,,yes,,Mitchell,Andrew,35,male,British,,"Rugby School; Jesus College, Cambridge (MA Hons History)",University,Politician,, +697,S1B-057,1,K,,yes,,Knapman,Roger,47,male,British,,"Royal Agricultural College, Cirencester",University,"Politician, surveyor",, +698,S1B-057,1,L,,yes,,Kirkwood,Archy,45,male,British,Scotland,Heriot-Watt University (BSc Pharmacy),University,Politician,, +699,S1B-057,1,M,,yes,,Batiste,Spencer,46,male,British,,"Sorbonne, Paris; Cambridge (MA)",University,"Politician, solicitor",,French +700,S1B-057,1,N,,yes,,Eastham,Ken,64,male,British,Manchester,Openslaw Technical College,University,"Politician, engineer",, +701,S1B-057,1,O,,yes,,,,,male,British,,,,Politician,, +702,S1B-058,1,A,,yes,,Short,Clare,45,female,British,,Keele University; Leeds University (BA Political Science),University,Politician,, +703,S1B-058,1,B,,yes,,Newton,Tony,54,male,British,,Oxford,University,Politician,, +704,S1B-058,1,C,,yes,,Nelson,Anthony,43,male,British,,"Harrow School; Christ's College, Cambridge (MA Economics & Law)",University,"Politician, banker",, +705,S1B-058,1,D,,yes,,Wallace,James,37,male,British,Scotland,Edinburgh Univeristy,University,Politician,, +706,S1B-058,1,E,,yes,,Meacher,Michael,61,male,British,,"New College, Oxford; LSE",University,"Politician, lecturer", +707,S1B-059,1,A,,yes,,Hicks,Maureen,43,female,British,,"Brokenhurst Grammar School; Furzedown College of Education, London",University,"Politician, lecturer", +708,S1B-059,1,B,,yes,,Howard,Michael,50,male,British,Wales,"Grammar School; Peterhouse, Cambridge",University,Politician (Sec. of State for Employment), +709,S1B-059,1,C,,yes,Speaker of the House,Weatherill,Bernard,71,male,British,,Malvern College,Secondary,Speaker of the House of Commons, +710,S1B-059,1,D,,yes,,Leighton,Ron,61,male,British,,"Ruskin College, Oxford",University,"Politician, printer", +711,S1B-059,1,E,,yes,,Mitchell,Andrew,35,male,British,,"Rugby School; Jesus College, Cambridge (MA Hons History)",University,Politician, +712,S1B-059,1,F,,yes,,Blair,Tony,38,male,British,Durham,"St John's College, Oxford",University,Politician, +713,S1B-059,1,G,,yes,,,,,male,British,,,,"Clerk, House of Commons", +714,S1B-059,1,H,,yes,,Jackson,Robert,45,male,British,,"St Edmund's Hall, Oxford",University,Politician, +715,S1B-059,1,I,,yes,,Stern,Michael,49,male,British,London,,University,"Politician, accountant", +716,S1B-059,1,J,,yes,,Madden,Max,50,male,British,"Pinner, Middlesex",Grammar School,Secondary,Politician, +717,S1B-059,1,K,,yes,,Dickens,Sir Geoffrey,60,male,British,Middlesex,"Easthome School, Wembley; Harrow Technical College; Acton Technical College",University,"Politician, businessman", +718,S1B-059,1,L,,yes,,Archer,Peter,65,male,British,,Wednesbury High School; London School of Economics; UCL,University,"Politician, solicitor",Fellow of University College London +719,S1B-059,1,M,,yes,,Coombs,Simon,44,male,British,,"Wycliffe College, Stroud; Reading University",University,"Politician, businessman", +720,S1B-059,1,N,,yes,,Lloyd,Tony,41,male,British,Stretford,Stretford Grammar Sch.; Nottingham University (BSc); Manchester Business School (DipBA),University,"Politician, Lecturer in Business Studies", +721,S1B-059,1,O,,yes,,Forth,Eric,47,male,British,Glasgow,"Jordanhill College School, Glasgow; Glasgow University",University,"Politician, businessman", +722,S1B-059,1,P,,yes,,Boswell,Tim,49,male,British,,"Marlborough College; New College, Oxford",University,"Politician, farmer",,, +723,S1B-059,1,Q,,yes,,Short,Clare,45,female,British,,Keele University; Leeds University (BA Political Science),University,Politician,,, +724,S1B-059,1,R,,yes,,Butler,Christopher,41,male,British,Wales,"Cardiff High School; Emmanuel College, Cambridge",University,"Politician, Market Researcher",,, +725,S1B-059,1,S,,yes,,Ashley,Jack,69,male,British,Lancashire,"Ruskin College, Oxford; Gonville & Caius College, Cambridge",University,Politician,,,Partially deaf +726,S1B-060,1,A,,yes,,Duffy,Patrick,71,male,British,,"London School of Economics; Columbia University, New York",University,"Politician, economist",,, +727,S1B-060,1,B,,yes,,Tredinnick,David,41,male,British,,"Eton; Graduate School of Business, Cape Town; St John's College, Oxford",University,Politician,,, +728,S1B-060,1,C,,yes,,Peacock,Elizabeth,54,female,British,Yorkshire,"Secondary School, Skipton, Yorkshire",Secondary,Politician,,, +729,S1B-060,1,D,,yes,,Henderson,Doug,42,male,British,Scotland,"Waid Academy, Fife; Central College, Glasgow; Strathclyde University (BA)",University,Politician,,, +730,S1B-060,2,A,,yes,,Arbuthnot,James,39,male,British,,"Eton; Trinity College, Cambridge (MA)",University,"Politician, barrister",,, +731,S1B-060,2,B,,yes,,Hogg,Douglas,46,male,British,,"Eton; Christ Church, Oxford; Lincoln's Inn",University,Politician,,, +732,S1B-060,2,C,,yes,Speaker of the House,Weatherill,Bernard,71,male,British,,Malvern College,Secondary,Speaker of the House of Commons,,, +733,S1B-060,2,D,,yes,,Dunwoody,Gwyneth,61,female,British,,Convent of Notre Dame,Secondary,"Politician, actress, writer",,, +734,S1B-060,2,E,,yes,,Adley,Robert,56,male,British,,Uppingham School,Secondary,"Politician, businessman",,,"Lived & worked in Thailand, Singapore, Malaya" +735,S1B-061,1,A,,yes,Defence counsel,Nugee,Edward,64,male,British,Brambletye,Worcester College; Oxford,University,Barrister (QC),,, +736,S1B-061,1,B,,yes,Plaintiff,Hill,John,26-45,male,British,Sussex,,,Businessman,,, +737,S1B-062,1,A,,yes,Plaintiff's counsel,Wilson-Smith,C.,46-65,male,British,,,University,Lawyer,,, +738,S1B-062,1,B,,yes,Judge,Ogden,Sir Michael,65,male,British,,"Downside School; Jesus College, Cambridge (MA)",University,High Court Judge +739,S1B-062,1,C,,yes,Prosecution witness,Carter,Keith William,26-45,male,British,,"Degree in Sociology, MA in Industrial Sociology",University,Employment consultant +740,S1B-063,1,A,,yes,Judge,Hirst,David,65,male,British,Norfolk,"Eton; Trinity College, Cambridge (MA)",University,High Court Judge +741,S1B-063,1,B,,yes,Plaintiff's counsel,Pickup,James,,male,British,,,University,Lawyer +742,S1B-063,1,C,,yes,Defence witness,Maynard,John,,male,British,,,,Businessman +743,S1B-064,1,A,,yes,Defence counsel,Ekland,Graham,,male,British,,,University,Lawyer +744,S1B-064,1,B,,yes,Prosecution witness,Lehrer,Michael,,male,British,Stanmore,,,Businessman +745,S1B-064,1,C,,yes,Judge,Brooke,Sir Henry,55,male,British,,"Radley College; Worcester College, Oxford",University,High Court Judge +746,S1B-065,1,A,,yes,Plaintiff's counsel,Lamb,Robert,46-65,male,British,,,University,Lawyer +747,S1B-065,1,B,,yes,Defence witness,Lampitt,Robert,46-65,male,British,Weybridge,,,Businessman +748,S1B-065,1,C,,yes,Judge,Brooke,Sir Henry,55,male,British,,"Radley College; Worcester College, Oxford",University,High Court Judge +749,S1B-066,1,A,,yes,Defence counsel,Wrigley,John,,male,British,,,University,Lawyer +750,S1B-066,1,B,,yes,Plaintiff,Hoffman,Heidi,18-25,female,British,Oxfordshire,,, +751,S1B-066,1,C,,yes,Judge,Escott-Cox,Brian Robert,61,male,British,,"Rugby School; Oriel College, Oxford (MA)",University,High Court Judge +752,S1B-066,2,A,,yes,Plaintiff's counsel,Eccles,,,male,British,,,University,Lawyer +753,S1B-066,2,B,,yes,Plaintiff's witness,White,Lorraine,18-25,female,British,Tyne & Wear,,, +754,S1B-066,2,C,,yes,Judge,Escott-Cox,Brian Robert,61,male,British,,"Rugby School; Oriel College, Oxford (MA)",University,High Court Judge,,, +755,S1B-067,1,A,,yes,Plaintiff's counsel,Eccles,,,male,British,,,University,Lawyer,,, +756,S1B-067,1,B,,yes,Defence witness,Tarburn,,18-25,female,British,Scotland,,,Travel company representative,,, +757,S1B-067,1,C,,yes,Judge,Escott-Cox,Brian Robert,61,male,British,,"Rugby School; Oriel College, Oxford (MA)",University,High Court Judge,,, +758,S1B-068,1,A,,yes,Defence counsel,Barrett,,,male,British,,,University,Lawyer,,, +759,S1B-068,1,B,,yes,Witness,Campbell,,32,male,British,,,University,Police officer,,, +760,S1B-068,1,C,,yes,Judge,MacPherson,,65,male,British,Scotland,"Wellington Coll., Berkshire; Trinity Coll., Oxford",University,High Court Judge,,, +761,S1B-068,2,A,,yes,Defence counsel,Barrett,,,male,British,,,University,Barrister,,, +762,S1B-068,2,B,,yes,Expert witness,Gardiner,,60,male,British,,,University,Surgeon,,, +763,S1B-068,2,C,,yes,Judge,MacPherson,,65,male,British,Scotland,"Wellington Coll., Berkshire; Trinity Coll., Oxford",University,High Court Judge,,, +764,S1B-068,2,D,,yes,Defence counsel,Glasgow,,,male,British,,,University,"Lawyer, Queen's Counsel",,, +765,S1B-069,1,A,,yes,Plaintiff's counsel,Goldblatt,Simon,46-65,male,British,,,University,"Barrister, Queen's Counsel",,,"Called to the Bar, 1953" +766,S1B-069,1,B,,yes,Defence witness,Basnett,,,male,British,Cheltenham,,,Businessman,,, +767,S1B-070,1,A,,yes,Judge,Ogden,Sir Michael,65,male,British,,"Downside School; Jesus College, Cambridge (MA)",University,High Court Judge,,, +768,S1B-070,1,B,,yes,Expert witness,Hieroms,Raymond,46-65,male,British,,,University,Surgeon,,, +769,S1B-070,1,C,,yes,Defence counsel,Barrett,,,male,British,,,University,Barrister,,, +770,S1B-071,1,A,,yes,,Wharton,John,26-45,male,British,UK South,,University,Architect,, +771,S1B-071,1,B,,yes,,Boase,Sue,26-45,female,British,UK South,,University,"Lecturer, researcher",, +772,S1B-071,1,C,,yes,,King-Smith,Gavin,26-45,male,British,UK South,,University,Management consultant,, +773,S1B-072,1,A,,yes,,Boase,Sue,26-45,female,British,UK South,,University,"Lecturer, researcher",, +774,S1B-072,1,B,,yes,,,,26-45,female,British,UK South,,University,Solicitor,, +775,S1B-073,1,A,,yes,,Boase,Sue,26-45,female,British,UK South,,University,"Lecturer, researcher",, +776,S1B-073,1,B,,yes,,Salano,Michael,26-45,male,British,UK South,,University,Building contractor,, +777,S1B-073,1,C,,yes,,King-Smith,Gavin,26-45,male,British,UK South,,University,Management consultant,, +778,S1B-074,1,A,,yes,,,,32,male,British,London,,University,Lecturer,,Spanish +779,S1B-074,1,B,,yes,,,Ross,27,male,British,Scotland,,University,Insurance salesman,, +780,S1B-074,2,A,,yes,,,Ross,27,male,British,Scotland,,University,Insurance salesman,, +781,S1B-074,2,B,,yes,,,,18-25,male,British,Plymouth,,Secondary,Student,,Some French +782,S1B-074,3,A,,yes,,,Ross,27,male,British,Scotland,,University,Insurance salesman,, +783,S1B-074,3,B,,yes,,Kalman,Anthony,27,male,British,London,,University,Chef,, +784,S1B-074,3,C,,yes,,Lawrence,Jane,20,female,British,London,,Secondary,Student,, +785,S1B-075,1,A,,yes,Chairman,,,26-45,male,British,,,University,"Dean of Arts Faculty, UCL",, +786,S1B-075,1,B,,yes,,,,,male,,,,University,Academic,,, +787,S1B-075,1,C,,yes,,,,,female,,,,University,Academic,,, +788,S1B-075,1,D,,yes,,,,,male,,,,University,Academic,,, +789,S1B-075,1,E,,yes,,Hudson,Dick,26-45,male,British,,,University,Lecturer in Linguistics,,, +790,S1B-075,1,F,,yes,,,,,male,,,,University,Academic,,, +791,S1B-075,1,G,,yes,,,,,male,,,,University,Academic,,, +792,S1B-075,1,H,,yes,,,,,male,,,,University,Academic,,, +793,S1B-075,1,I,,yes,,Guppy,Dave,26-45,male,British,,,University,Computer operator,,, +794,S1B-075,1,J,,yes,,,,,male,,,,University,Academic,,, +795,S1B-076,1,A,,yes,,Procter,Paul,46-65,male,British,,BA,University,Lexicographer,,, +796,S1B-076,1,B,,yes,,Rosta,And,18-25,male,British,Liverpool,"BA in Linguistics, UCL",University,PhD student,,, +797,S1B-076,1,C,,yes,,,Paul,18-25,male,British,,,University,Computer programmer,,, +798,S1B-077,1,A,,yes,Chairman,Donoghue,Helen,26-45,female,British,N. Kent,Grammar School; Bristol University,University,Senior Lecturer in Microbiology,,,"Lived in Bristol, Bradford, London" +799,S1B-077,1,B,,yes,,,Rachel,26-45,female,British,,,University,Academic,,, +800,S1B-077,1,C,,yes,,,,,female,,,,,,,, +801,S1B-077,1,D,,yes,,,,,male,,,,,,,, +802,S1B-077,1,E,,yes,,,Marjorie,,female,,,,, +803,S1B-077,1,F,,yes,,Agnew,Clive,26-45,male,British,,PhD,University,Lecturer in Geography +804,S1B-078,1,A,,yes,Chairman,,Carol,46-65,female,British,,,Secondary,Student +805,S1B-078,1,B,,yes,,,Denis,66+,male,British,North England,,Secondary,Student +806,S1B-078,1,C,,yes,,,Chris,26-45,female,British,London,,Secondary,Student +807,S1B-078,1,D,,yes,,,Ted,46-65,male,British,London,,Secondary,Student +808,S1B-078,1,E,,yes,,,,46-65,female,British,London,,Secondary,Student +809,S1B-079,1,A,,yes,Chairman,,Andy,18-25,male,British,South London,,Secondary,Student +810,S1B-079,1,B,,yes,,,Carol,18-25,male,British,London,,Secondary,Student +811,S1B-079,1,C,,yes,,,,18-25,male,British,Birmingham,,Secondary,Student +812,S1B-079,1,D,,yes,,,,18-25,male,British,London,,Secondary,Student +813,S1B-079,1,E,,yes,,,Katherine,18-25,female,British,London,,Secondary,Student +814,S1B-079,1,F,,yes,,Thompson,Katherine,18-25,female,British,London,,Secondary,Student +815,S1B-079,1,G,,yes,,,Joe,18-25,male,British,South London,,Secondary,Student +816,S1B-079,1,H,,yes,,,Emma,18-25,female,British,London,,Secondary,Student +817,S1B-079,1,I,,yes,,,,18-25,female,British,London,,Secondary,Student +818,S1B-079,1,J,,yes,,,,18-25,male,British,Coventry,,Secondary,Student,, +819,S1B-080,1,A,,yes,,,Ross,27,male,British,Scotland,,University,Insurance salesman,, +820,S1B-080,1,B,,yes,,,,25,female,British,Oxfordshire,,Secondary,Student,, +821,S1B-080,2,A,,yes,,,Ross,27,male,British,Scotland,,University,Insurance salesman,, +822,S1B-080,2,B,,yes,,,,32,male,British,London,,University,Lecturer,, +823,S2A-001,1,A,,yes,,Ingham,Mike,26-45,male,British,,,,,, +824,S2A-002,1,A,,yes,,Robertson,Ian,26-45,male,British,,,,,, +825,S2A-003,1,A,,yes,,Green,Alan,26-45,male,British,Belfast,,,,, +826,S2A-004,1,A,,yes,,French,Ray,46-65,male,British,St Helens,University of Leeds,University,Sports reporter,,"French, Latin, Russian" +827,S2A-005,1,A,,yes,,Bromley,Peter,46-65,male,British,Cheshire,,Secondary,Sports reporter,,None +828,S2A-005,2,A,,yes,,McKenzie,Lee,26-45,male,British,Southampton,,University,Sports reporter,,French +829,S2A-005,3,A,,yes,,Bromley,Peter,46-65,male,British,Cheshire,,Secondary,Sports reporter,,None +830,S2A-005,4,A,,yes,,McKenzie,Lee,26-45,male,British,Southampton,,University,Sports reporter,,French +831,S2A-005,5,A,,yes,,Bromley,Peter,46-65,male,British,Cheshire,,Secondary,Sports reporter,,None +832,S2A-006,1,A,,yes,,Bromley,Peter,46-65,male,British,Cheshire,,Secondary,Sports reporter,,None +833,S2A-006,2,A,,yes,,Gardner,Graham,46-65,male,British,,,,,, +834,S2A-006,3,A,,yes,,Gardner,Graham,46-65,male,British,,,, +835,S2A-006,4,A,,yes,,Gardner,Graham,46-65,male,British,,,, +836,S2A-006,5,A,,yes,,Gardner,Graham,46-65,male,British,,,, +837,S2A-007,1,A,,yes,,Parry,Alan,46-65,male,British,,,, +838,S2A-007,2,A,,yes,,Matthews,Peter,,male,British,,,, +839,S2A-007,3,A,,yes,,Parry,Alan,46-65,male,British,,,, +840,S2A-007,4,A,,yes,,Matthews,Peter,,male,British,,,, +841,S2A-007,5,A,,yes,,Parry,Alan,46-65,male,British,,,, +842,S2A-007,6,A,,yes,,Ovett,Steve,36,male,British,Brighton,,Secondary,Former athlete +843,S2A-007,7,A,,yes,,Matthews,Peter,,male,British,,,, +844,S2A-007,8,A,,yes,,Parry,Alan,46-65,male,British,,,, +845,S2A-007,9,A,,yes,,Ovett,Steve,36,male,British,Brighton,,Secondary,Former athlete +846,S2A-007,10,A,,yes,,Parry,Alan,46-65,male,British,,,, +847,S2A-007,11,A,,yes,,Ovett,Steve,36,male,British,Brighton,,Secondary,Former athlete +848,S2A-007,12,A,,yes,,Parry,Alan,46-65,male,British,,,, +849,S2A-007,13,A,,yes,,Ovett,Steve,36,male,British,Brighton,,Secondary,Former athlete +850,S2A-008,1,A,,yes,,Spencer,John,46-65,male,British,,,,Sports reporter,, +851,S2A-008,2,A,,yes,,Bays,James,,male,British,,,,,, +852,S2A-008,3,A,,yes,,Neil,Andrew,42,male,British,"Paisley, Scotland","Paisley Grammar School; University of Glasgow (MA Politics & Economics, 1971)",University,"Journalist, editor `The Sunday Times'",, +853,S2A-008,4,A,,yes,,Bays,James,,male,British,,,,,, +854,S2A-008,5,A,,yes,,Neil,Andrew,42,male,British,"Paisley, Scotland","Paisley Grammar School; University of Glasgow (MA Politics & Economics, 1971)",University,"Journalist, editor `The Sunday Times'",, +855,S2A-008,6,A,,yes,,Bays,James,,male,British,,,,,, +856,S2A-008,7,A,,yes,,Parry,Alan,46-65,male,British,,,,Sports reporter,, +857,S2A-009,1,A,,yes,,Darke,Ian,26-45,male,British,Portsmouth,,Secondary,Sports reporter,,None +858,S2A-010,1,A,,yes,,Hawthorne,Rob,,male,British,,,,,, +859,S2A-011,1,A,,yes,,Dimbleby,Jonathan,47,male,British,London,,University,"Journalist, broadcaster",, +860,S2A-012,1,A,,yes,,Hawthorne,Rob,,male,British,,,,Sports reporter,, +861,S2A-012,2,A,,yes,,Harris,Nick,26-45,male,British,Oxford,,Secondary,Sports reporter,,None +862,S2A-012,3,A,,yes,,Smith,Andy,26-45,male,British,,,,,, +863,S2A-012,4,A,,yes,,Hawthorne,Rob,,male,British,,,,Sports reporter,, +864,S2A-012,5,A,,yes,,,,,male,,,,,,, +865,S2A-012,6,A,,yes,,,,,male,,,,,,, +866,S2A-012,7,A,,yes,,,,,male,,,,, +867,S2A-013,1,A,,yes,,,,,male,,,,, +868,S2A-013,2,A,,yes,,,,,male,,,,, +869,S2A-013,3,A,,yes,,,,,male,,,,, +870,S2A-013,4,A,,yes,,,,,male,,,,, +871,S2A-013,5,A,,yes,,,,,male,,,,, +872,S2A-014,1,A,,yes,,Green,Alan,26-45,male,British,Belfast,,University,Broadcaster +873,S2A-015,1,A,,yes,,,,,male,,,,, +874,S2A-016,1,A,,yes,,,,,male,,,,, +875,S2A-016,2,A,,yes,,,,,male,,,,, +876,S2A-016,3,A,,yes,,,,,male,,,,, +877,S2A-016,4,A,,yes,,,,,male,,,,, +878,S2A-016,5,A,,yes,,,,,male,,,,, +879,S2A-017,1,A,,yes,,,,,male,,,,, +880,S2A-018,1,A,,yes,,Lockwood,Tony,26-45,male,British,,,, +881,S2A-019,1,A,,yes,,Dimbleby,Jonathan,47,male,British,Aylesbury,,University,Broadcaster +882,S2A-020,1,A,,yes,,Hosken,John,46-65,male,British,Truro,,Secondary,Broadcaster,,"Spanish, French", +883,S2A-020,2,A,,yes,,McLellan,Andrew,46-65,male,British,Glasgow,,University,Broadcaster,,"Latin, Greek, Hebrew, French, German", +884,S2A-021,1,A,,yes,Lecturer,Newsam,Sir Peter,63,male,British,Yorkshire,"Clifton College, Yorks; Queen's College, Oxford (MA, DipEd)",University,"Director, London Institute of Education",,, +885,S2A-022,1,A,,yes,Lecturer,James,Simon,26-45,male,British,London,MA(Oxon),University,Military Archaeologist,,Italian, +886,S2A-023,1,A,,yes,Lecturer,Banham,John,51,male,British,London,"Charterhouse School; Queen's College, Cambridge (BA Natural Sciences)",University,"Director, Confederation of British Industry",,, +887,S2A-024,1,A,,yes,Lecturer,Vanags,Patsy,26-45,female,British,London,,University,Part-time lecturer,,, +888,S2A-025,1,A,,yes,Lecturer,Chandler,A.,26-45,male,British,London,,University,Lecturer in Engineering,,, +889,S2A-026,1,A,,yes,Lecturer,Jeffreys,David,26-45,male,British,Northampton,,University,Lecturer in Egyptology,,, +890,S2A-027,1,A,,yes,Lecturer,Steinberg,Hannah,46-65,female,British,Germany,PhD,University,Professor of Pharmacology,,German,Moved to Britain aged c.7 +891,S2A-028,1,A,,yes,Lecturer,Johnstone,Wyndham,26-45,male,British,London,"BSc Physics, PhD",University,Research Scientist,,None, +892,S2A-028,2,A,,yes,Lecturer,Abbott,David,26-45,male,British,"Hyde, Cheshire",B.Eng. (Hons),University,Network Administrator,,,Lives in Greater Manchester +893,S2A-028,3,A,,yes,Lecturer,Roberts,Derek,46-65,male,British,London,PhD,University,"Provost, UCL; ex-businessman",,, +894,S2A-029,1,A,,yes,Lecturer,Gower,Nicole,26-45,female,British,Tunbridge Wells,BSc Hons Human Biology,University,Research Assistant/Trial Coordinator,,French, +895,S2A-029,2,A,,yes,Lecturer,Betts,Andy,26-45,male,British,"Horsham, Essex","BSc, PhD",University,Lecturer,,"French, German", +896,S2A-029,3,A,,yes,Lecturer,Newton,Andrew,26-45,male,British,Hemel Hempstead,"BSc Physics, MSc Information Technology",University,Research Fellow,,French, +897,S2A-030,1,A,,yes,Lecturer,Local,John,46-65,male,British,,PhD,University,"Lecturer in Linguistics, Univ. of York",,, +898,S2A-031,1,A,,yes,Lecturer,Steedman,Hilary,46-65,female,British,,,,,,, +899,S2A-031,2,A,,yes,Lecturer,Cassells,Sir John,64,male,British,Yorkshire,"Sedbergh School, Yorks.; Trinity Colege, Cambridge (Classics, 1951)",University,"Dir., National Committee on Education",,,Former Civil Servant +900,S2A-032,1,A,,yes,Lecturer,Hutchins,John,46-65,male,British,UK south,,University,University lecturer,,, +901,S2A-033,1,A,,yes,Lecturer,Ash,Katy,26-45,female,British,Kent,BSc,University,Clinical Trial Data Manager,,None, +902,S2A-033,2,A,,yes,Lecturer,Edwards,D.R.L.,26-45,male,British,Essex,"M.B.B.S., M.R.C. Psych.",University,Associate Research Fellow in Psychiatry,,"French, some Danish & Russian", +903,S2A-033,3,A,,yes,Lecturer,Lansbury,A.N.,26-45,female,British,Oxford,"BSc, PhD",University,Physicist,,, +904,S2A-034,1,A,,yes,Lecturer,Wood,Andrew,18-25,male,British,West Yorkshire,"BSc Applied Chemistry, MSc",University,PhD Student,,None, +905,S2A-034,2,A,,yes,Lecturer,Morrissey,Mark,18-25,male,British,Birmingham,BSc Computer Science & Electronic Engineering,University,Computer Systems Administration,,, +906,S2A-034,3,A,,yes,Lecturer,Ramsay,R.,26-45,female,British,Oxford,"MA, MRBS",University,Doctor,,"French, German", +907,S2A-034,4,A,,yes,Lecturer,Stutchfield,,26-45,female,British,,,,,,, +908,S2A-035,1,A,,yes,Lecturer,Spencer,Sharon,26-45,female,British,London,"BSc, PhD Biochemistry",University,Associate Research Assistant,,None, +909,S2A-035,2,A,,yes,Lecturer,James,Lindsay,26-45,female,British,UK,BSc Social Science,University,"Registered General Nurse, Research Assistant",,None, +910,S2A-035,3,A,,yes,Lecturer,Lang,Harriet,18-25,female,British,Reading,BSc Speech Communication,University,Research Assistant,,French, +911,S2A-036,1,A,,yes,Lecturer,Weitzmann,Michael,26-45,male,British,London,,University,Lecturer in Jewish & Hebrew Studies,,Hebrew, +912,S2A-037,1,A,,yes,Lecturer,Roberts,Derek,46-65,male,British,London,PhD,University,"Provost, UCL; ex-businessman",,, +913,S2A-038,1,A,,yes,Lecturer,Laslett,Sir Peter,76,male,British,Watford,Grammar School; Cambridge,University,"Reader in Politics & Hist. Soc. Struct, 1966-83, Cambridge","FBA, 1979",, +914,S2A-039,1,A,,yes,Lecturer,Philips,Andrew,46,male,British,Newport,Reading University (BA),University,"Director, Humanities & Soc. Sci., British Library",ALA,, +915,S2A-040,1,A,,yes,Lecturer,Cook,Peter,46-65,male,British,Halifax,,University,Professor of Architecture,,, +916,S2A-041,1,A,,yes,Lecturer,Cullen,A.L.,46-65,male,British,London,,University,Professor of Electrical Engineering,,, +917,S2A-042,1,A,,yes,Lecturer,Elkins,R.P.,46-65,male,British,London,,University,Professor of Endocrinology,,, +918,S2A-043,1,A,,yes,Lecturer,Rapley,C.G.,46-65,male,British,London,,University,Professor of Physics & Astronomy,,, +919,S2A-044,1,A,,yes,Lecturer,Twining,W.L.,46-65,male,British,London,,University,Professor of Laws,,, +920,S2A-045,1,A,,yes,Lecturer,Grosvenor,Gerald,40,male,British,London,Harrow School; military training,Secondary,Businessman,,,6th Duke of Westminster +921,S2A-046,1,A,,yes,Lecturer,Rose,Graham,18-25,male,British,Newcastle,"BSc Geography, MSc Micropalaeontology",University,Student,,Indonesian, +922,S2A-046,2,A,,yes,Lecturer,Shaw,Andrew,26-45,male,British,Peterborough,BSc Toxicology & Pharmacology; PhD,University,Lecturer in Toxicology,,None, +923,S2A-046,3,A,,yes,Lecturer,Cope,Mark,26-45,male,British,Cheshire,"BSc (Eng), PhD",University,Lecturer in Medical Physics & Bioengineering,,None, +924,S2A-047,1,A,,yes,Lecturer,Macaskill,C.,26-45,female,British,Leicester,"MSc, PhD Medical Demography",University,Lecturer,,"French, Tamasheq", +925,S2A-048,1,A,,yes,Lecturer,Tait,W.,46-65,male,British,London,,University,Lecturer in Egyptology,,, +926,S2A-049,1,A,,yes,Lecturer,Burgoyne,John,46-65,male,British,Cumbria,,University,,,, +927,S2A-050,1,A,,yes,Interviewee,McCullin,Don,46-65,male,British,South London,,Secondary,Photojournalist,,, +928,S2A-050,2,A,,yes,Interviewee,McCullin,Don,46-65,male,British,South London,,Secondary,Photojournalist,,, +929,S2A-051,1,A,,yes,,King,C.A.,55,male,British,London,"BSc (Zoology), MSc, PhD (Biochemistry)",University,Lecturer in Biology,,None, +930,S2A-052,1,A,,yes,,Hart,George,26-45,male,British,London,,University,Archaeologist,, +931,S2A-053,1,A,,yes,,Delpy,C.,46-65,male,British,,PhD,University,University Lecturer,, +932,S2A-054,1,A,,yes,,,,,male,,,,,,, +933,S2A-054,2,A,,yes,,,,,male,,,,,,, +934,S2A-055,1,A,,yes,,Baker,Sue,26-45,female,British,Kent,,University,Broadcaster,,French +935,S2A-055,2,A,,yes,,Clarkson,Jeremy,26-45,male,British,York,Public School,Secondary,Broadcaster,, +936,S2A-055,3,A,,yes,,Clarkson,Jeremy,26-45,male,British,York,Public School,Secondary,Broadcaster,, +937,S2A-056,1,A,,yes,,Ball,Ginny,26-45,female,British,Hertfordshire,BSc (Hons),University,Lecturer,,"French, some German" +938,S2A-056,2,A,,yes,,Ball,Ginny,26-45,female,British,Hertfordshire,BSc (Hons),University,Lecturer,,"French, some German" +939,S2A-057,1,A,,yes,,Bindman,David,46-65,male,British,London,,University,Professor of the History of Art,, +940,S2A-057,2,A,,yes,,Bindman,David,46-65,male,British,London,,University,Professor of the History of Art,, +941,S2A-058,1,A,,yes,,Agnew,Clive,26-45,male,British,,,University,Lecturer in Geography,, +942,S2A-058,2,A,,yes,,Walton,Nick,26-45,male,British,London,"BSc, PhD",University,Astronomer,,Dutch +943,S2A-058,3,A,,yes,,Burt,Avril,46-65,female,British,London,BSc (Hons),University,Medical Research Assistant,,None +944,S2A-059,1,A,,yes,,Brend,Barbara,50,female,British,,"BA French, MA Old French, MPhil, PhD (SOAS)",University,Freelance lecturer in Islamic Art,, +945,S2A-060,1,A,,yes,,Loverance,Rowena,37,female,British,,"BA Modern History, Somerville College, Oxford",University,"Lecturer, archaeologist",, +946,S2A-061,1,A,,yes,,Davis,Michael,46-65,male,British,,,University,Judge,,, +947,S2A-062,1,A,,yes,,Martin,J.,,male,British,,,University,Queen's Counsel,,, +948,S2A-063,1,A,,yes,,Davis,Michael,,male,British,,,University,Judge,,, +949,S2A-064,1,A,,yes,,,,,male,,,,University,Judge,,, +950,S2A-064,2,A,,yes,,Browne,Desmond,,male,British,,,University,Queen's Counsel,,, +951,S2A-065,1,A,,yes,,Evans,John Field,63,male,British,Wales,"Cardiff High School; Exeter College, Oxford (MA)",University,High Court Judge,,, +952,S2A-066,1,A,,yes,,Hoffman,Sir Leonard,57,male,British,Cape Town,"University of Cape Town (BA); Oxford (MA,BCL)",University,High Court Judge,,,"Rhodes Scholar to Queen's College, Oxford, 1950s" +953,S2A-066,2,A,,yes,,Hirst,David,65,male,British,Norfolk,"Eton; Trinity College, Cambridge (MA)",University,High Court Judge,,, +954,S2A-067,1,A,,yes,,Cox,P.J.,46-65,male,British,,,University,High Court Judge,,, +955,S2A-068,1,A,,yes,,Pickup,James,46-65,male,British,,,University,Lawyer,,, +956,S2A-068,2,A,,yes,,Pickup,James,46-65,male,British,,,University,Lawyer,,, +957,S2A-069,1,A,,yes,,Knox,Sir John Leonard,65,male,British,,"Radley College; Worcester College, Oxford",University,High Court Judge,,, +958,S2A-070,1,A,,yes,,Brooke,Sir Henry,55,male,British,,"Marlborough College; Balliol College, Oxford",University,High Court Judge,,, +959,S2B-001,1,A,,yes,Newscaster,Snow,John,53,male,,Dublin,"Wellington College; Balliol College, Oxford",University,"Broadcaster, journalist",,, +960,S2B-001,1,B,,yes,,Gowing,Nick,40,male,British,London,Bristol University,University,"Broadcaster, journalist",,, +961,S2B-001,1,C,,yes,,Irving,Niall,26-45,male,British,,,,"Group Captain, Royal Air Force",,, +962,S2B-001,1,D,,yes,,Veetch,Andrew,26-45,male,British,,,University,Broadcaster (Science Correspondent),,, +963,S2B-001,1,E,,yes,,Hay,Alastair,26-45,male,British,,,University,"Scientist, Leeds University",,, +964,S2B-002,1,A,,yes,Newscaster,Snow,John,53,male,British,Dublin,"Wellington College, Somerset; Balliol College, Oxford (BA Hons)",University,Broadcaster,,, +965,S2B-002,1,B,,yes,,Neild,Paul,26-45,male,British,Lancashire,,University,"Broadcaster, journalist",,, +966,S2B-002,1,C,,yes,,Graham,Martin,26-45,male,British,,,,Businessman,,,"Representative, British Chambers of Commerce" +967,S2B-002,1,D,,yes,,Abbotts,Bill,46-65,male,British,,,,Businessman,,, +968,S2B-002,1,E,,yes,,Wells,John,46-65,male,British,,PhD,University,"Academic, University of Cambridge",,, +969,S2B-002,1,F,,yes,,Ross,Ian,46-65,male,British,,,,Broadcaster (Industrial Correspondent),,, +970,S2B-002,1,G,,yes,,Grantham,Roy,46-65,male,British,,,,Trade Union Representative,,, +971,S2B-002,1,H,,yes,,Young,Mark,46-65,male,British,,,,Airline Pilot,,, +972,S2B-002,1,I,,yes,,Goodman,Eleanor,26-45,female,British,,,,"Braodcaster, journalist",,, +973,S2B-002,1,J,,yes,,Major,John,47,male,British,London,,Secondary,Politician,,, +974,S2B-002,1,K,,yes,,Biffin,John,61,male,British,Bridgewater,"Jesus College, Cambridge (BA)",University,Politician,,, +975,S2B-003,1,A,,yes,Newscaster,MacDonald,Trevor,52,male,,Trinidad,,University,"Broadcaster, journalist",,, +976,S2B-003,1,B,,yes,,Brunson,Michael,51,male,British,Norwich,"Queen's College, Oxford",University,"Broadcaster, journalist",,, +977,S2B-003,1,C,,yes,,Major,John,47,male,British,London,,Secondary,Politician,,, +978,S2B-003,1,D,,yes,,Mellor,David,42,male,British,London,"Swanage Grammar School; Christ's College, Cambridge (BA Hons, 1970)",University,"Politician, barrister",,, +979,S2B-003,1,E,,yes,,Hurd,Douglas,61,male,British,,"Eton, Trinity College Cambridge",University,Politician,,, +980,S2B-003,1,F,,yes,,Yeo,Tim,46,male,British,,"Charterhouse School; Emmanuel College, Cambridge",University,"Politician, businessman",,, +981,S2B-003,1,G,,yes,,Heseltine,Michael,58,male,British,,"Shrewsbury School; Pembroke College, Oxford",University,"Politician, businessman",,, +982,S2B-003,1,H,,yes,,Temple-Morris,Peter,53,male,British,,"Hillstone School, Malvern; Malvern College; St Catherine's College, Cambridge",University,"Politician, solicitor",,, +983,S2B-003,1,I,,yes,,Somerville,Julia,26-45,female,British,,,University,Broadcaster,,, +984,S2B-003,1,J,,yes,,Bennett-Powell,Jane,26-45,female,British,,,University,Broadcaster,,, +985,S2B-003,1,K,,yes,,Oppenheim,Phillip,35,male,British,,"Harrow School; Oriel College, Oxford",University,"Politician, company director",,, +986,S2B-003,1,L,,yes,,Bartlett,Peter,26-45,male,British,,,,Businessman,,, +987,S2B-003,1,M,,yes,,Neal,Jill,26-45,female,British,,,,Company owner,,, +988,S2B-003,1,N,,yes,,Spencer,Alan,46-65,male,British,,,,Marketing Manager,,, +989,S2B-003,1,O,,yes,,Eley,Brian,46-65,male,British,,,,Constituency agent,,, +990,S2B-003,1,P,,yes,,Allen,Peter,45,male,British,Essex,,,Broadcaster,,,Worked in Australia +991,S2B-003,1,Q,,yes,,Thatcher,Carol,26-45,female,British,London,,,Freelance journalist,,,Worked in Australia +992,S2B-003,1,R,,yes,,Thirkettle,Joan,26-45,female,British,,,University,Journalist,,, +993,S2B-003,1,S,,yes,,Heseltine,Anne,46-65,female,British,,,,,,, +994,S2B-004,1,A,,yes,Newscaster,Martin,Brian,46-65,male,British,,,,Broadcaster +995,S2B-004,1,B,,yes,,Frei,Matt,46-65,male,British,,,University,Broadcaster (Foreign Affairs Correspondent) +996,S2B-004,1,C,,yes,,Laity,Mark,26-45,male,British,,,University,Broadcaster (Defence Correspondent) +997,S2B-004,1,D,,yes,,King,Tom,58,male,British,,"Rugby School; Emmanuel College, Oxford",University,Politician +998,S2B-004,1,E,,yes,,Major,John,47,male,British,London,,Secondary,Politician +999,S2B-004,1,F,,yes,,Sacker,Stephen,26-45,male,British,,,University,Broadcaster +1000,S2B-004,1,G,,yes,,Carver,Tom,26-45,male,British,,,University,Broadcaster +1001,S2B-004,1,H,,yes,,Simpson,Bob,46-65,male,British,,,University,Broadcaster +1002,S2B-004,1,I,,yes,,Kelly,June,26-45,female,British,,,University,Broadcaster +1003,S2B-005,1,A,,yes,Newscaster,Perkins,Brian,46-65,male,British,,,,Broadcaster +1004,S2B-005,1,B,,yes,,Sinkinson,Bob,,male,British,,,,"Braodcaster, journalist" +1005,S2B-005,1,C,,yes,,Irving,Niall,26-45,male,British,,,,"Group Captain, Royal Air Force" +1006,S2B-005,1,D,,yes,,Laity,Mark,26-45,male,British,,,University,Broadcaster (Defence Correspondent) +1007,S2B-005,1,E,,yes,,Little,Alan,26-45,male,British,,,,"Broadcaster, journalist" +1008,S2B-005,1,F,,yes,,Harris,John,,male,British,,,,"Broadcaster, journalist" +1009,S2B-005,1,G,,yes,,Major,John,47,male,British,London,,Secondary,Politician +1010,S2B-006,1,A,,yes,Presenter,Redhead,Brian,62,male,British,Newcastle-upon-Tyne,Grammar School; Cambridge,University,Broadcaster +1011,S2B-006,1,B,,yes,Newscaster,Macmillan,Laurie,26-45,female,British,,,,Broadcaster +1012,S2B-006,1,C,,yes,,MacNeill,David,26-45,male,British,,,,Broadcaster (Washington Correspondent) +1013,S2B-006,1,D,,yes,,Dowell,Martin,,male,British,,,,Broadcaster +1014,S2B-006,1,E,,yes,,Hawkesley,Humphrey,,male,British,,,,Broadcaster +1015,S2B-006,1,F,,yes,,Connolly,Kevin,,male,British,,,University,Broadcaster +1016,S2B-006,1,G,,yes,,Johnson-Smith,Geoffrey,67,male,British,,"Charterhouse Sch.; Lincoln College, Oxford (BA Hons Politics, Philosophy, Economics, 1949)",University,Politician +1017,S2B-007,1,A,,yes,Presenter,Naughtie,James,40,male,British,Scotland,Grammar School; Aberdeen University; Syracuse University,University,Broadcaster +1018,S2B-007,1,B,,yes,Newscaster,Roper,Alison,26-45,female,British,,,,Broadcaster +1019,S2B-007,1,C,,yes,,Harrison,John,,male,British,,,,Broadcaster +1020,S2B-007,1,D,,yes,,Hurd,Douglas,58,male,British,,"Eton; Trinity College, Cambridge",University,Politician +1021,S2B-007,1,E,,yes,,Lawson,Nigel,59,male,British,,"Christchurch, Oxford",University,Politician +1022,S2B-007,1,F,,yes,,Douglas,Torin,,male,British,,,,Broadcaster +1023,S2B-007,1,G,,yes,,Mellor,David,42,male,British,London,"Swanage Grammar School; Christ's College, Cambridge (BA Hons, 1970)",University,"Politician, barrister" +1024,S2B-007,1,H,,yes,,Moncross,David,,male,British,,,,Broadcaster +1025,S2B-007,1,I,,yes,,Tully,Mark,56,male,British,,"Twyford School, Winchester; Cambridge (MA)",University,Broadcaster. BBC Correspondent in India +1026,S2B-007,1,J,,yes,,Lees,David,,male,,,,, +1027,S2B-007,1,K,,yes,,Harrod,Dominic,,male,,,,,Broadcaster +1028,S2B-008,1,A,,yes,,Naughtie,James,40,male,British,Scotland,Grammar School; Aberdeen University; Syracuse University,University,Broadcaster +1029,S2B-008,1,B,,yes,,Green,Charlotte,26-45,female,British,,,,Broadcaster +1030,S2B-008,1,C,,yes,,King,Tom,58,male,British,,"Rugby School; Emmanuel College, Oxford",University,Politician +1031,S2B-008,1,D,,yes,,Laity,Mark,26-45,male,British,,,University,Broadcaster (Defence Correspondent) +1032,S2B-008,1,E,,yes,,Jones,Phillip,,male,British,,,,Broadcaster +1033,S2B-008,1,F,,yes,,Harris,Jeremy,,male,British,,,University,Broadcaster +1034,S2B-008,1,G,,yes,,Simpson,Bob,46-65,male,British,,,University,Broadcaster +1035,S2B-008,1,H,,yes,,Birchall,Jonathan,,male,British,,,,Broadcaster +1036,S2B-008,1,I,,yes,,Paley,Joe,,male,British,,,University,Broadcaster +1037,S2B-008,1,J,,yes,,Hearing,Roger,26-45,male,British,,,,Broadcaster +1038,S2B-009,1,A,,yes,Newscaster,Corfield,Corrie,26-45,female,British,,,,Broadcaster +1039,S2B-009,1,B,,yes,,Orchard,Robert,46-65,male,British,,,,Broadcaster (Political Correspondent) +1040,S2B-009,1,C,,yes,,Brodie,Alex,26-45,male,British,,,,Broadcaster +1041,S2B-009,1,D,,yes,,Thomas,Anne,26-45,female,British,,,,Broadcaster +1042,S2B-009,1,E,,yes,,,,,,,,,,,,, +1043,S2B-009,1,F,,yes,,Whitelaw,William,46-65,male,British,,,University,Politician,,, +1044,S2B-009,1,G,,yes,,Curtice,John,46-65,male,British,,,University,Academic,,, +1045,S2B-009,1,H,,yes,,Fletcher,Winston,54,male,British,London,"Westminster City School; St John's College, Cambridge (MA)",University,"Businessman; Visiting Professor, Lancaster Management School","Member, The Royal Society of Arts",, +1046,S2B-009,1,I,,yes,,Hurd,Douglas,61,male,British,,"Eton; Trinity College, Cambridge",University,Politician,,, +1047,S2B-010,1,A,,yes,Newscaster,Paxman,Jeremy,41,male,British,Leeds,Cambridge University,University,Broadcaster,,, +1048,S2B-010,1,B,,yes,,Wheeler,Charles,68,male,British,,Cranbrook School,Secondary,"Broadcaster, journalist",,, +1049,S2B-010,1,C,,yes,,Hannay,Sir David,56,male,British,,"Winchester College; New College, Oxford",University,British Ambassador to the UN,,,"Served in Tehran, Kabul, Brussels, Washington" +1050,S2B-010,1,D,,yes,,Stock,Francine,26-45,female,British,,,,Broadcaster,,, +1051,S2B-011,1,A,,yes,Newscaster,McDonald,Trevor,52,male,,Trinidad,,,Broadcaster,,, +1052,S2B-011,1,B,,yes,,Harris,Simon,,male,British,,,,"Broadcaster, journalist",,, +1053,S2B-011,1,C,,yes,,Attenborough,Liz,26-45,female,British,,,,Publisher,,, +1054,S2B-011,1,D,,yes,,Somerville,Julia,26-45,female,British,,,,Broadcaster,,, +1055,S2B-011,1,E,,yes,,Weiner,Libby,26-45,female,British,,,,Broadcaster,,, +1056,S2B-011,1,F,,yes,,Finley,Fiona,26-45,female,British,,,University,Medical doctor,,, +1057,S2B-011,1,G,,yes,,,,26-45,female,British,,,University,Hospital registrar,,, +1058,S2B-011,1,H,,yes,,Archer,Geoffrey,45,female,British,London,,University,"Broadcaster, journalist",,,Former solicitor's articled clerk +1059,S2B-011,1,I,,yes,,Dunlop,Alistair,46-65,male,British,,,University,Clergyman,,, +1060,S2B-011,1,J,,yes,,Allen,Bob,26-45,male,British,Scotland,,,"Representative, Scottish Fishermen's Association",,, +1061,S2B-011,1,K,,yes,,Hamilton,Archie,50,male,British,,Eton College,Secondary,Politician,,, +1062,S2B-011,1,L,,yes,,Foulkes,George,49,male,British,Scotland,"Keith Grammar School, Scotland; Edinburgh University (BSc 1964)",University,Politician,,, +1063,S2B-011,1,M,,yes,,Marshall,Penny,26-45,female,British,,,,"Broadcaster, journalist",,, +1064,S2B-011,1,N,,yes,,Hurd,Douglas,61,male,British,,"Eton College; Trinity College, Cambridge",University,Politician,,, +1065,S2B-012,1,A,,yes,Newscaster,Perkins,Brian,26-45,male,British,,,,Broadcaster,,, +1066,S2B-012,1,B,,yes,,Sykes,Hugh,26-45,male,British,,,,"Broadcaster, journalist",,, +1067,S2B-012,1,C,,yes,,Sharp,Richard,46-65,,British,,,University,"Editor, Jane's Fighting Ships",,, +1068,S2B-012,1,D,,yes,,Singleton,Valerie,54,female,British,Bromley,"Royal Academy of Dramatic Art, London",University,"Broadcaster, journalist, ex-actress",,, +1069,S2B-012,1,E,,yes,,,,,female,British,,,,BBC World Service announcer,,, +1070,S2B-012,1,F,,yes,,Seal,Patrick,26-45,male,British,,,,"Broadcaster, journalist",,, +1071,S2B-012,1,G,,yes,,Reynolds,Paul,26-45,male,British,,,,"Broadcaster, journalist",,, +1072,S2B-012,1,H,,yes,,Smith,Norman,46-65,male,British,,,,"Broadcaster, journalist",,, +1073,S2B-013,1,A,,yes,Newscaster,Snow,Jon ,46-65,male,British,,,,Broadcaster,,, +1074,S2B-013,1,B,,yes,,Goodman,Eleanor,,female,British,,,,"Broadcaster, journalist" +1075,S2B-013,1,C,,yes,,,,,male,British,,,,"Broadcaster, journalist" +1076,S2B-013,1,D,,yes,,Hurd,Douglas,46-65,male,British,,,,Politician +1077,S2B-013,1,E,,yes,,Ridley,Nicholas,46-65,male,British,,,,Politician +1078,S2B-014,1,A,,yes,Newscaster,Clarke,Nick,,male,British,,,,Broadcaster +1079,S2B-014,1,B,,yes,,Major,John,47,male,British,London,,Secondary,Politician +1080,S2B-014,1,C,,yes,,Laity,Mark,26-45,male,British,,,,Broadcaster (Defence Correspondent) +1081,S2B-014,1,D,,yes,,Tye,Andrew,,male,British,,,,Broadcaster +1082,S2B-014,1,E,,yes,,Webb,Justin,,male,British,,,,Broadcaster +1083,S2B-014,1,F,,yes,,Kendal,Bridget,26-45,female,British,,,,Broadcaster +1084,S2B-014,1,G,,yes,,Reynolds,Paul,26-45,male,British,,,,Broadcaster +1085,S2B-015,1,A,,yes,Newscaster,Lang,Jackie,26-45,female,British,,,,Broadcaster +1086,S2B-015,1,B,,yes,,Hearing,Roger,,male,British,,,,Broadcaster +1087,S2B-015,1,C,,yes,,Reynolds,Paul,26-45,male,British,,,,Broadcaster (Diplomatic Correspondent) +1088,S2B-015,1,D,,yes,,Harris,Jeremy,,male,British,,,,Broadcaster +1089,S2B-015,1,E,,yes,,Simpson,Bob,46-65,male,British,,,,"Broadcaster, journalist" +1090,S2B-015,1,F,,yes,,Werrell,Tim,,male,,,,,"Broadcaster, journalist" +1091,S2B-015,1,G,,yes,,Quest,Richard,,male,,,,,Broadcaster (BBC Business Correspondent in USA) +1092,S2B-015,1,H,,yes,,Tomkys,Sarah,26-45,female,British,,,,"Broadcaster, journalist" +1093,S2B-015,1,I,,yes,,,Heather,,female,British,,,,County Education Officer +1094,S2B-015,1,J,,yes,,McNally,,,male,British,,,,County Councillor +1095,S2B-015,2,A,,yes,Newscaster,Campbell,David,26-45,male,British,,,,Broadcaster +1096,S2B-015,2,B,,yes,,Brodie,Alex,26-45,male,British,,,,Broadcaster +1097,S2B-015,2,C,,yes,,Hamilton,Archie,50,male,British,Scotland,Eton,Secondary,Politician +1098,S2B-015,2,D,,yes,,Laity,Mark,,male,British,,,,"Broadcaster, journalist" +1099,S2B-016,1,A,,yes,Newscaster,Hughes,Howard,,male,British,,,,Barrister +1100,S2B-016,1,B,,yes,,Muirhead,Patrick,,male,British,,,,"Broadcaster, journalist" +1101,S2B-016,1,C,,yes,,Lorimer,James,,male,British,,,,"Broadcaster, journalist" +1102,S2B-016,2,A,,yes,Newscaster,,,,male,,,,,"Broadcaster, journalist" +1103,S2B-016,2,B,,yes,,Atkinson,Caroline,26-45,female,British,,,,"Broadcaster, journalist" +1104,S2B-016,2,C,,yes,,Murphy,Peter,,male,,,,,"Broadcaster, journalist" +1105,S2B-016,2,D,,yes,,Farrar-Hockley,Gen. Sir Anthony,67,male,British,,Exeter School,Secondary,British Army General (retired); military historian +1106,S2B-016,3,A,,yes,Newscaster,Hughes,Howard,,male,British,,,,Broadcaster,,, +1107,S2B-016,3,B,,yes,,Ashdown,Paddy,45,male,British,India,Bedfordshire Public School; Hong Kong University,University,"Politician, ex-soldier",,Chinese,Moved to Britain age 4 +1108,S2B-016,3,C,,yes,,Ridley,Nicholas,62,male,British,,"Eton; Balliol College, Oxford",University,"Politician, Civil Engineer",,, +1109,S2B-016,4,A,,yes,Newscaster,Cambourne,David,26-45,male,British,,,,"Broadcaster, journalist",,, +1110,S2B-016,4,B,,yes,,Windsor,Elisabeth,46-65,female,British,London,,Secondary,HM The Queen,,, +1111,S2B-016,4,C,,yes,,Connolly,Kevin,26-45,male,British,,,,Broadcaster,,, +1112,S2B-016,4,D,,yes,,Peacock,Matt,26-45,male,British,,,,Broadcaster,,, +1113,S2B-017,1,A,,yes,Presenter,Kershaw,Richard,26-45,male,British,London,Cambridge University; University of Virginia Graduate School,University,"Broadcaster, journalist",,, +1114,S2B-017,1,B,,yes,Newscaster,Crawford,Andrew,26-45,male,British,,,,"Broadcaster, journalist",,, +1115,S2B-017,1,C,,yes,,MacNeill,David,26-45,male,British,,,,Broadcaster (Washington Correspondent),,, +1116,S2B-017,1,D,,yes,,Orchard,Robert,46-65,male,British,,,,Broadcaster (Political Correspondent),,, +1117,S2B-018,1,A,,yes,Newscaster,Buerk,Michael,45,male,British,,Solihull School,Secondary,"Broadcaster, journalist",,, +1118,S2B-018,2,A,,yes,Newscaster,Clarke,Nick,,male,British,,,,Broadcaster,,, +1119,S2B-018,2,B,,yes,,Llewellyn,Tim,,male,British,,,,"Broadcaster, journalist",,, +1120,S2B-018,2,C,,yes,,Kinnock,Neil,49,male,British,Wales,University of Wales,University,Politician,,, +1121,S2B-018,2,D,,yes,,Richards,Stephen,,male,British,,,,"Broadcaster, journalist",,, +1122,S2B-019,1,A,,yes,Presenter,Naughtie,James,40,male,British,Scotland,Grammar School; Aberdeen University; Syracuse University,University,"Broadcaster, journalist",,, +1123,S2B-019,1,B,,yes,Newscaster,Green,Charlotte,26-45,female,British,,,,"Broadcaster, journalist",,, +1124,S2B-019,1,C,,yes,,Peel,Jane,26-45,female,British,,,University,Broadcaster (Legal Affairs Correspondent),,, +1125,S2B-019,1,D,,yes,,Smith,Peter,,male,British,,,,Broadcaster (Business Affairs Correspondent),,, +1126,S2B-019,1,E,,yes,,Simpson,Bob,46-65,male,British,,,,Broadcaster,,, +1127,S2B-019,1,F,,yes,,Willis,David,,male,British,,,,"Broadcaster, journalist",,, +1128,S2B-019,1,G,,yes,,Hoggett,Brenda,46,female,British,Yorkshire,"Richmond High School, Yorkshire; Girton College, Cambridge (MA); Gray's Inn",University,Law Commissioner,,,"Visiting Professor, King's College, London" +1129,S2B-020,1,A,,yes,,Hayton,Phillip,44,male,British,"Keighley, Yorkshire",,Secondary,"Broadcaster, journalist",,, +1130,S2B-020,1,B,,yes,,Price,Lance,26-45,male,British,,,,Broadcaster (Political Affairs Correspondent),,, +1131,S2B-020,1,C,,yes,,Patten,Chris,47,male,British,London,"Balliol College, Oxford",University,Politician,,, +1132,S2B-020,1,D,,yes,,,,,male,,,,,Broadcaster,,, +1133,S2B-020,1,E,,yes,,Hurd,Douglas,61,male,British,,Eton; Trinity College Cambridge,University,Politician,,, +1134,S2B-020,1,F,,yes,,,,,male,,,,,Broadcaster,,,Unnamed +1135,S2B-020,1,G,,yes,,Heseltine,Michael,58,male,British,,"Shrewsbury School; Pembroke College, Oxford",University,"Politician, businessman",,, +1136,S2B-020,2,A,,yes,Newscaster,Lithgo,Lynette,26-45,female,British,,,,"Broadcaster, journalist",,, +1137,S2B-020,2,B,,yes,,Sopel,David,,male,British,,,,"Broadcaster, journalist (Political Correspondent)",,, +1138,S2B-020,2,C,,yes,,Heseltine,Michael,58,male,British,,"Shrewsbury School; Pembroke College, Oxford",University,"Politician, businessman" +1139,S2B-020,2,D,,yes,,Newton,Tony,56,male,British,,"Trinity College, Oxford",University,Politician +1140,S2B-020,2,E,,yes,,Hurd,Douglas,61,male,British,,"Eton; Trinity College, Cambridge",University,Politician +1141,S2B-020,2,F,,yes,,Cunningham,John,52,male,British,Yorkshire,Jarrow Grammar School; Durham University (PhD),University,"Politician, chemist, lecturer" +1142,S2B-021,1,A,,yes,,Woodley,Paul,26-45,male,British,,,,Journalist +1143,S2B-021,2,A,,yes,,Jameson,Sue,26-45,female,British,,,,Journalist +1144,S2B-021,3,A,,yes,,Knight,Tim,26-45,male,British,,,,Journalist +1145,S2B-021,4,A,,yes,,Field,Catherine,26-45,female,British,,,,Journalist +1146,S2B-022,1,A,,yes,Narrator,Weightman,Gavin,26-45,male,British,,,,Broadcaster +1147,S2B-022,2,A,,yes,Narrator,Buerk,Michael,45,male,British,,Solihull School,Secondary,"Broadcaster, journalist" +1148,S2B-023,1,A,,yes,Presenter,Tong,Pete,26-45,male,British,London,,Secondary,"Broadcaster, musician" +1149,S2B-023,2,A,,yes,Presenter,,,,male,British,,,, +1150,S2B-023,3,A,,yes,Presenter,Byalls,Peter,26-45,male,British,London,,,"Broadcaster, journalist" +1151,S2B-024,1,A,,yes,,,,,male,British,,,, +1152,S2B-024,2,A,,yes,,,,,male,British,,,, +1153,S2B-025,1,A,,yes,Presenter,Arnold-Baker,Charles,73,male,British,Poland,"Winchester College, Oxford, Inner Temple",University,"Visiting Professor, City University" +1154,S2B-026,1,A,,yes,Presenter,Richards,Jeffrey,26-45,male,British,,,University,Historian,,French, +1155,S2B-027,1,A,,yes,,,,,male,British,,,,,,, +1156,S2B-028,1,A,,yes,Presenter,Priestland,Gerald,64,male,British,,Oxford (BA),University,"Broadcaster, journalist",,, +1157,S2B-028,2,A,,yes,Presenter,Naughtie,James,40,male,British,Scotland,"Grammar School, Aberdeen Univ, Syracuse Univ",University,"Broadcaster, journalist",,, +1158,S2B-029,1,A,,yes,Presenter,Sacks,Jonathon,43,male,British,London,"Oxford, University of London, Jew's College London",University,Chief Rabbi,,, +1159,S2B-030,1,A,,yes,,Major,John,48,male,British,London,,Secondary,Politician,,,Prime Minister +1160,S2B-030,2,A,,yes,,Kinnock,Neil,49,male,British,Wales,University College Cardiff,University,Politician,,Welsh,Leader of the Opposition +1161,S2B-030,3,A,,yes,,Kinnock,Neil,49,male,British,Wales,University College Cardiff,University,Politician,,Welsh,Leader of the Opposition +1162,S2B-030,4,A,,yes,,Barnes,Rosie,45,female,British,Birmingham,Birmingham University (B Soc Sci),University,Politician,,, +1163,S2B-031,1,A,,yes,Debater,Alderson,John,69,male,British,Barnsley,Middle Temple,University,Chief Constable (retired),,, +1164,S2B-031,2,A,,yes,Debater,Owen,David,58,male,British,Wales,"Harrow, Cambridge, Grays Inn",University,Barrister,,, +1165,S2B-031,3,A,,yes,Presenter,Durrell,Gerald,66,male,British,India,Educated by private tutors in Greece,Secondary,"Naturalist, writer",,, +1166,S2B-032,1,A,,yes,Presenter,Wilson,Edgar,46-65,male,British,Durham,,University,Writer,,, +1167,S2B-032,2,A,,yes,Presenter,Redhead,Brian,62,male,British,Newcastle-upon-Tyne,Grammar School; Cambridge,University,Broadcaster,,, +1168,S2B-033,1,A,,yes,Presenter,Norman,Barry,58,male,British,London,Highgate School,Secondary,"Broadcaster, film critic",,, +1169,S2B-034,1,A,,yes,Presenter,Hennessy,Peter,46-65,male,British,Stroud,Stroud School; Cambridge; Harvard; LSE,University,"Visiting Prof of Government, Strathclyde Univ.",,, +1170,S2B-035,1,A,,yes,Debater,Redwood,John,40,male,British,London,"Kent College, Canterbury; Oxford (MA, DPhil)",University,Politician,,, +1171,S2B-035,2,A,,yes,Debater,Sked,Alan,46-65,male,British,,,University,,,, +1172,S2B-036,1,A,,yes,Debater,Gould,Bryan,52,male,,New Zealand,"Auckland University; Oxford (BA, LLB, MA, BCL)",University,Politician,,, +1173,S2B-036,2,A,,yes,Debater,Foot,Paul,54,male,British,,,University,Journalist,,, +1174,S2B-037,1,A,,yes,Presenter,Scarman,Leslie,80,male,British,London,Oxford; Middle Temple,University,High Court Judge (retired),,,Lord Scarman +1175,S2B-038,1,A,,yes,Presenter,Watts,Geoffrey,,male,British,,,,Broadcaster,,, +1176,S2B-038,2,A,,yes,Presenter,Watts,Geoffrey,,male,British,,,,Broadcaster,,, +1177,S2B-038,3,A,,yes,Presenter,Lapotaire,Jane,47,female,British,Ipswich,"Grammar School; Theatre School, Bristol",University,Actress,,, +1178,S2B-039,1,A,,yes,Presenter,Connolly,Kevin,26-45,male,British,,,,"Broadcaster, journalist",,, +1179,S2B-039,2,A,,yes,Presenter,Short,Phillip,26-45,male,British,,,,"Broadcaster, journalist",,, +1180,S2B-039,3,A,,yes,Presenter,Jessell,Stephen,26-45,male,British,,,,"Broadcaster, journalist",,, +1181,S2B-040,1,A,,yes,Presenter,Sacker,Stephen,26-45,male,British,,,,"Broadcaster, journalist",,, +1182,S2B-040,2,A,,yes,Presenter,Kendall,Bridget,26-45,female,British,,,,"Broadcaster, journalist",,, +1183,S2B-040,3,A,,yes,Presenter,Leech,Graham,26-45,male,British,,,,"Broadcaster, journalist",,, +1184,S2B-041,1,A,,yes,,Queen Elizabeth II,,46-65,female,British,London,,Secondary,,,, +1185,S2B-041,2,A,,yes,,Lamont,Norman,50,male,British,"Lerwick, Shetland",Cambridge (BA),University,Politician,,, +1186,S2B-042,1,A,,yes,Lecturer,Denman,Hugh,55,male,British,London,"BA, MA, Dip Soc Sci (Oxford)",University,Lecturer,,"French, German, Italian, Russian, Yiddish" +1187,S2B-043,1,A,,yes,Lecturer,Charles,Wendy,46-65,female,British,,,University,Lecturer in History,, +1188,S2B-044,1,A,,yes,,,,,male,British,,,,Actor,, +1189,S2B-044,2,A,,yes,,,,26-45,male,British,,,University,Teacher,, +1190,S2B-045,1,A,,yes,Lecturer,McMaster,Peter,46-65,male,British,,,University,"Director General, Ordnance Survey","Fellow, Royal Inst. of Chartered Surveyors", +1191,S2B-046,1,A,,yes,Lecturer,Freeman,Michael,46-65,male,British,,,University,Professor of Laws,, +1192,S2B-047,1,A,,yes,Lecturer,Williams,Shirley,46-65,female,British,,Oxford University; Columbia University,University,"Politician, lecturer, broadcaster",, +1193,S2B-048,1,A,,yes,Lecturer,Baldwin,Peter,46-65,male,British,,,University,Businessman,, +1194,S2B-049,1,A,,yes,Lecturer,Palmer,,46-65,male,British,,,University,University Professor,, +1195,S2B-050,1,A,,yes,,Howe,Sir Geoffrey,64,male,British,"Port Talbot, Wales","Winchester, Cambridge, Middle Temple (MA, LLB)",University,"Politician, Barrister",, diff --git a/ice/sspeaker-region.csv b/ice/sspeaker-region.csv new file mode 100644 index 0000000..7f0b74b --- /dev/null +++ b/ice/sspeaker-region.csv @@ -0,0 +1,657 @@ +speakers,Textcode,Subtextno,Speaker,Original Spkr,Aware,Role,Surname,Forenames,Age,Gender,Nationality,Birthplace,Education,Educlevel,Occupation,Affiliations,Other languages,Comments +12,S1A-005,1,A,,yes,,Broadbent,Judith,18-25,female,British,Yorkshire,"BA Linguistics, UCL",University,Student,,, +13,S1A-005,1,B,,yes,,Tollfree,Laura,18-25,female,British,London,"BA Linguistics, UCL",University,Student,,, +14,S1A-006,1,A,,yes,,,Sandra,18-25,female,British,London,,University,,,, +16,S1A-007,1,A,,yes,,Tollfree,Laura,46-65,male,British,London,,,,,, +17,S1A-007,1,B,,yes,,Tollfree,Laura,46-65,female,British,London,,,,,, +18,S1A-007,1,C,,yes,,Tollfree,Laura,18-25,female,British,London,"BA Linguistics, UCL",University,Student,,, +19,S1A-007,1,D,,yes,,,,46-65,male,British,London,,,,,, +22,S1A-008,1,B,,yes,,Tollfree,Laura,18-25,male,British,London,"BA Linguistics, UCL",University,Student,,, +23,S1A-009,1,A,,yes,,Sayce,Oonagh,46-65,female,British,London,MA English,University,Part-time University teacher,,"French, Italian","Researcher, Survey of English Usage" +24,S1A-009,1,B,,yes,,Sayce,Peter,26-45,male,British,London,,Secondary,Government executive,,, +25,S1A-010,1,A,,yes,,Moore,Nina,66+,female,British,London,,Secondary,Welfare officer (retired),,, +26,S1A-010,1,B,,yes,,Moore,Miranda,26-45,female,British,London,,Secondary,Writer,,, +27,S1A-011,1,A,,yes,,,,26-45,female,British,Southeast,,University,Teacher,,, +28,S1A-011,1,B,,yes,,Boase,Sue,26-45,female,British,Southeast,,University,"Lecturer, researcher",,,"Researcher, Survey of English Usage" +29,S1A-011,1,C,,yes,,,,26-45,male,British,Southeast,Training as solicitor,University,Trainee solicitor,,, +30,S1A-011,2,A,,yes,,Woodford,Kate,26,female,British,EastMidlands,,University,Lexicographer,,"French, Spanish", +32,S1A-012,1,A,,yes,,Scales,Rob,26-45,male,British,London,,University,Teacher +33,S1A-012,1,B,,yes,,Boase,Sue,26-45,female,British,Southeast,,University,"Lecturer, researcher" +34,S1A-012,1,C,,yes,,Carpenter,Roger,26-45,male,British,London,,University,Teacher +35,S1A-012,1,D,,yes,,King-Smith,Gavin,26-45,male,British,London,,University,Management consultant +36,S1A-012,1,E,,yes,,Colborn,Tim,26-45,male,British,Southeast,,University,Accountant +38,S1A-013,1,B,,yes,,,,46-65,female,British,EastMidlands,,Secondary,Housewife +39,S1A-013,1,C,,yes,,,,46-65,male,British,EastMidlands,,Secondary,Housewife +42,S1A-014,1,A,,yes,,Tollfree,Laura,18-25,female,British,London,"BA Linguistics, UCL",University,Student +45,S1A-015,1,A,,yes,,Rosta,Andrew,18-25,male,British,Northwest,"BA English, UCL",University,Student +53,S1A-017,1,A,,yes,,Durant,Ian,27,male,British,Southeast,,University,Accountant,,, +54,S1A-017,1,B,,yes,,,Zara,26,female,British,London,A-levels,University,Accountant,,,Indian ethnic origin +55,S1A-017,1,C,,yes,,Tollfree,Laura,18-25,female,British,London,"BA Linguistics, UCL",University,Student,,, +57,S1A-018,1,A,,yes,,Tollfree,Eleanor,20,female,British,London,,Secondary,Student,,, +58,S1A-018,1,B,,yes,,Cage,Liz,20,female,British,London,,,,,, +59,S1A-018,1,C,,yes,,Debenham,Simon,28,male,British,London,,University,Accountant,,, +65,S1A-019,1,F,,yes,,,,18-25,female,British,London,UCL BA in Linguistics,University,Student,,, +69,S1A-020,1,D,,yes,,Boase,Sue,26-45,female,British,Southeast,,University,"Lecturer, researcher",,, +70,S1A-021,1,A,,yes,,,,26-45,male,British,London,,University,Musician,,, +71,S1A-021,1,B,,yes,,,,26-45,female,British,Southeast,,University,Teacher,,, +72,S1A-021,1,C,,yes,,,,26-45,male,British,Southeast,,University,Teacher,,, +73,S1A-021,1,D,,yes,,,,26-45,female,British,Southeast,,University,Teacher,,, +74,S1A-021,2,A,,yes,,,,26-45,female,British,Southeast,,University,Teacher,,, +75,S1A-021,2,B,,yes,,,,26-45,male,British,London,,University,Musician,,, +76,S1A-021,2,C,,yes,,,,26-45,female,British,Southeast,,University,Teacher,,, +77,S1A-021,2,D,,yes,,,,26-45,male,British,Southeast,,University,Teacher,,, +78,S1A-022,1,A,,yes,,Clift,Naomi,21,female,British,China,,Secondary,Student,,,Adopted in infancy; born Mauritian Chinese +79,S1A-022,1,B,,yes,,Clift,Jean,61,female,British,Southwest,,University,Teacher of English as a Second Language,,, +80,S1A-022,1,C,,yes,,Clift,Marc,65,male,British,Australia,,,Ex-British Council officer,,,Spent most of life in UK +81,S1A-022,1,D,,yes,,Clift,Rebecca,25,female,British,China,Cambridge,University,Postgraduate student,,,Adopted in infancy; born Mauritian Chinese +82,S1A-023,1,A,,yes,,,,46-65,male,British,London,,Secondary,Journalist,,, +83,S1A-023,1,B,,yes,,,,46-65,female,British,Southeast,,Secondary,Writer,,, +84,S1A-024,1,A,,yes,,Sidney,Greenbaum,46-65,male,British,London,"MA, PhD",University,Professor of English,,Hebrew,"Director, Survey of English Usage" +86,S1A-025,1,A,,yes,,,,26-45,male,British,London,,Secondary,,,,Brother of $B +87,S1A-025,1,B,,yes,,,,26-45,female,British,London,,Secondary,Secretary,,,Sister of $A +88,S1A-026,1,A,,yes,,Carpenter,Roger,26-45,male,British,London,,University,Teacher,,, +89,S1A-026,1,B,,yes,,Colborn,Tim,26-45,male,British,Southeast,,University,Accountant,,, +90,S1A-026,1,C,,yes,,King-Smith,Gavin,26-45,male,British,Southeast,,University,Management Consultant,,, +91,S1A-026,1,D,,yes,,Scales,Rob,26-45,male,British,London,,University,Teacher,,, +92,S1A-027,1,A,,yes,,Boase,Sue,26-45,female,British,Southeast,,University,"Lecturer, researcher",,, +93,S1A-027,1,B,,yes,,Peppe,A.H.,26-45,male,British,Southeast,,University,Greengrocer,,, +94,S1A-027,1,C,,yes,,King-Smith,Gavin,26-45,male,British,Southeast,,University,Management Consultant,,, +95,S1A-027,1,D,,yes,,Lanner,J.E.,26-45,female,British,Southeast,,University,Nurse,,, +96,S1A-028,1,A,,yes,,,Fred,92,male,British,Southwest,,Secondary,Ex-shopkeeper,,, +97,S1A-028,1,B,,yes,,Clift,Marc,65,male,British,Australia,,,Ex-British Council officer,,,Spent most of life in UK +98,S1A-028,1,C,,yes,,Clift,Rebecca,25,female,British,China,Cambridge,University,Postgraduate student,,,Adopted in infancy; born Mauritian Chinese +99,S1A-028,1,D,,yes,,Clift,Naomi,21,female,British,China,,Secondary,Student,,,Adopted in infancy; born Mauritian Chinese +100,S1A-028,1,E,,yes,,,,80,female,British,Southwest,,Secondary,,,, +103,S1A-029,1,B,,yes,,,Andrew,24,male,British,London,BA,University,Computer programmer,,, +104,S1A-029,1,C,,yes,,,Andy,21,male,British,London,BA,University,Computer programmer,,, +105,S1A-029,1,D,,yes,,Porter,Nick,22,male,British,WestMidlands,MSc,University,Computer programmer,,, +110,S1A-031,1,A,,yes,,Beaumann,Nicola,46-65,female,British,London,,University,Writer,,, +111,S1A-031,1,B,,yes,,Boase,Sue,26-45,female,British,Southeast,,University,"Lecturer, researcher",,, +113,S1A-032,1,B,,yes,,Clift,Jean,61,female,British,Southwest,,University,Teacher of English as a Second Language,,, +114,S1A-032,1,C,,yes,,Clift,Marc,65,male,British,Australia,,,Ex-British Council officer,,,Spent most of life in UK +115,S1A-032,1,D,,yes,,Clift,Naomi,21,female,British,China,,Secondary,Student,,,Adopted in infancy; born Mauritian Chinese +116,S1A-032,2,A,,yes,,Clift,Rebecca,25,female,British,China,,University,Postgraduate student,,,Adopted in infancy; born Mauritian Chinese +117,S1A-032,2,B,,yes,,Clift,Naomi,21,female,British,China,,Secondary,Student,,,Adopted in infancy; born Mauritian Chinese +118,S1A-032,2,C,,yes,,Clift,Jean,61,female,British,Southwest,,University,Teacher of English as a Second Language,,, +119,S1A-032,2,D,,yes,,Clift,Marc,65,male,British,Australia,,,Ex-British Council officer,,,Spent most of life in UK +122,S1A-034,1,A,,yes,,,,26-45,female,British,London,,University,Career counsellor,,, +123,S1A-034,1,B,,yes,,,,18-25,male,British,Northwest,,Secondary,Student,,, +124,S1A-035,1,A,,yes,,,,26-45,female,British,London,,University,Career counsellor,,, +125,S1A-035,1,B,,yes,,,,18-25,female,British,East,,Secondary,Student,,, +126,S1A-036,1,A,,yes,,,Caroline,29,female,British,London,O-Levels,Secondary,"Secretary, Thames Water Co.",,, +127,S1A-036,1,B,,yes,,,Alice,29,female,British,London,O-Levels,Secondary,"Secretary, Consumers' Association",,, +128,S1A-037,1,A,,yes,,,Jenny,18-25,female,British,London,,University,Student,,, +129,S1A-037,1,B,,yes,,,Isobel,29,female,British,London,,University,,,, +130,S1A-038,1,A,,yes,,,Danielle,21,female,British,Scotland,"BSc Engineering, Edinburgh University",University,"PhD student, Engineering, Cambridge",,, +132,S1A-038,1,C,,yes,,,Moses,24,male,British,Portugal,"BA Social Science, Canterbury",University,"MPhil student, International Relations, Cambridge",,,Moved to UK age 5 +133,S1A-039,1,A,,yes,,Tollfree,Laura,18-25,female,British,London,BA Linguistics,University,"PhD student (Linguistics), Cambridge",,, +134,S1A-039,1,B,,yes,,,Danielle,21,female,British,Scotland,"BSc Engineering, Edinburgh University",University,"PhD student, Cambridge",,, +135,S1A-040,1,A,,yes,,,Vicky,25,female,British,Southeast,"Degree in History, London",University,"PGCE student, Cambridge",,, +136,S1A-040,1,B,,yes,,,Caroline,23,female,British,Yorkshire,"Degree Modern Languages, Cambridge",University,"PGCE student, Cambridge; ex-EFL teacher",,, +137,S1A-040,1,C,,yes,,,Louisa,24,female,British,London,"Degree Modern Languages, Cambridge, PGCE",University,"Teacher of Modern Languages, Cambridge",,Greek, +138,S1A-040,1,D,,yes,,,Vanessa,22,female,British,Southeast,"Degree English, Durham University",University,"PGCE student, Cambridge",,, +139,S1A-040,1,E,,yes,,,Brandon,25,male,British,Southeast,"Degree, Cambridge",University,Social worker,,, +140,S1A-041,1,A,,yes,,,Moses,24,male,British,Portugal,"BA Social Science, Canterbury",University,"MPhil student, International Relations, Cambridge",,,Moved to London age 5 +141,S1A-041,1,B,,yes,,,Jim,23,male,British,London,"Degree in Geography, Lampeter (Wales)",University,"MPhil student in Glaciology, Cambridge",,, +142,S1A-042,1,A,,yes,,,Vicky,25,female,British,Southeast,"Degree in History, London",University,"PGCE student, Cambridge",,, +143,S1A-042,1,B,,yes,,,Caroline,23,female,British,Yorkshire,"Degree in Modern Languages, Cambridge",University,"PGCE student, Cambridge; ex-EFL teacher",,, +144,S1A-042,1,C,,yes,,,Vanessa,22,female,British,Southeast,"Degree in English, Durham University",University,"PGCE student, Cambridge",,, +145,S1A-043,1,A,,yes,,White,Ashley,31,male,British,London,,University,"Tennis coach, PhD student",,, +146,S1A-043,1,B,,yes,,,,28,male,British,Northwest,,Secondary,Musician +147,S1A-044,1,A,,yes,,,,55,female,British,Northwest,Music degree,University,Singing teacher +148,S1A-044,1,B,,yes,,White,Ashley,31,male,British,London,,University,"Tennis coach, PhD student" +149,S1A-045,1,A,,yes,,White,Ashley,31,male,British,London,,University,"Tennis coach, PhD student" +150,S1A-045,1,B,,yes,,,,55,female,British,Northwest,Music degree,University,Singing teacher +151,S1A-045,2,A,,yes,,,,28,male,British,Northwest,Manchester University,University, +152,S1A-045,2,B,,yes,,White,Ashley,31,male,British,London,,University,"Tennis coach, PhD student" +153,S1A-045,3,A,,yes,,White,Ashley,31,male,British,London,,University,"Tennis coach, PhD student" +154,S1A-045,3,B,,yes,,,,28,male,British,Northwest,Manchester University,University, +159,S1A-047,1,A,,yes,,,,26-45,male,British,London,,University,Computer Operator/Programmer +160,S1A-047,1,B,,yes,,,,26-45,female,British,London,"Undergraduate student, UCL",Secondary,Student +161,S1A-047,1,C,,yes,,,,66+,female,British,London,,Secondary,Ex-secretary (retired) +162,S1A-048,1,A,,yes,,,,26-45,female,British,London,,University,Antique Dealer +163,S1A-048,1,B,,yes,,,,26-45,female,British,London,,Secondary,Nursery Nurse +164,S1A-048,1,C,,yes,,,,26-45,female,British,London,"Undergraduate student, UCL",Secondary,Student +165,S1A-049,1,A,,yes,,,Karen,30,female,British,London,O-Levels,Secondary,"Administrator, interior design company" +166,S1A-049,1,B,,yes,,,Alice,29,female,British,London,O-Levels,Secondary,"Secretary, Consumers' Association" +167,S1A-049,1,C,,yes,,,Caroline,29,female,British,London,O-Levels,Secondary,"Secretary, Thames Water Co." +168,S1A-050,1,A,,yes,,Neustein,,46-65,male,British,London,PhD,University,Student Counsellor +169,S1A-050,1,B,,yes,,,Stella,18-25,female,British,Northeast,,Secondary,Student +171,S1A-051,1,B,,yes,,,,66+,female,British,Southeast,,Secondary,Housewife +173,S1A-051,2,B,,yes,,,,18-25,male,British,East,,Secondary,Student +175,S1A-051,3,B,,yes,,,,26-45,female,British,London,,Secondary,Student +177,S1A-051,4,B,,yes,,,,18-25,male,British,London,,Secondary,Student +179,S1A-052,1,B,,yes,,,,46-65,male,British,London,,Secondary,Photojournalist,, +181,S1A-052,2,A,,yes,,,,46-65,male,British,London,,Secondary,Photojournalist,, +184,S1A-053,1,A,,yes,,,,26-45,male,British,WestMidlands,,University,Student,, +185,S1A-053,1,B,,yes,,,,26-45,female,British,Southwest,,University,Student,, +186,S1A-053,1,C,,yes,,,,46-65,male,British,London,,Secondary,Computer management,, +187,S1A-054,1,A,,yes,,Beaumann,Nicola,46-65,female,British,London,,University,Writer,, +188,S1A-054,1,B,,yes,,Boase,Sue,26-45,female,British,London,,University,"Researcher, lecturer",, +191,S1A-055,1,C,,yes,,Woodford,Kate,26,female,British,EastMidlands,,University,Lexicographer,,"French, Spanish" +192,S1A-055,1,D,,yes,,,,18-25,female,British,London,,University,Secretary,, +193,S1A-055,1,E,,yes,,,,26-45,male,British,London,,University,Lexicographer,, +194,S1A-056,1,A,,yes,,,,26-45,male,British,Southeast,,University,Teacher of EFL,,, +195,S1A-056,1,B,,yes,,Boase,Sue,26-45,female,British,Southeast,,University,"Lecturer, researcher",,, +196,S1A-056,1,C,,yes,,King-Smith,Gavin,26-45,male,British,Southeast,,University,Management consultant,,, +197,S1A-056,2,A,,yes,,Boase,Sue,26-45,female,British,Southeast,,University,"Lecturer, researcher",,, +198,S1A-056,2,B,,yes,,,,26-45,male,British,Southeast,,University,Teacher of EFL,,, +199,S1A-056,2,C,,yes,,King-Smith,Gavin,26-45,male,British,Southeast,,University,Management consultant,,, +200,S1A-056,3,A,,yes,,Boase,Sue,26-45,female,British,Southeast,,University,"Lecturer, researcher",,, +201,S1A-056,3,B,,yes,,King-Smith,Gavin,26-45,male,British,Southeast,,University,Management consultant,,, +202,S1A-056,3,C,,yes,,,,26-45,male,British,Southeast,,University,Teacher of EFL,,, +203,S1A-056,4,A,,yes,,,,26-45,male,British,Southeast,,University,Teacher of EFL,,, +204,S1A-056,4,B,,yes,,Boase,Sue,26-45,female,British,Southeast,,University,"Lecturer, researcher",,, +205,S1A-056,4,C,,yes,,King-Smith,Gavin,26-45,male,British,Southeast,,University,Management consultant,,, +206,S1A-057,1,A,,yes,,,,26-45,female,British,Southeast,,University,"Lecturer, researcher",,, +207,S1A-057,1,B,,yes,,,,66+,male,British,Southeast,,University,Retired engineer,,,Father of speaker C +208,S1A-057,1,C,,yes,,King-Smith,Gavin,26-45,male,British,Southeast,,University,Management consultant,,, +211,S1A-058,1,C,,yes,,,Cheryl,32,female,British,USA,UK secondary education and degree,University,"Actress, writer" +214,S1A-058,2,C,,yes,,,Cheryl,32,female,British,USA,UK secondary education and degree,University,"Actress, writer" +215,S1A-058,3,A,,yes,,,,26-45,male,British,London,,University,Engineer +216,S1A-058,3,B,,yes,,,Cheryl,32,female,British,USA,UK secondary education and degree,University,"Actress, writer" +218,S1A-059,1,B,,yes,,,,18-25,male,British,London,,Secondary,Student +221,S1A-061,1,A,,yes,,Sayce,Peter,26-45,male,British,London,,Secondary,Government executive +222,S1A-061,1,B,,yes,,Busby,Derek Charles,46-65,male,British,London,,University,Government official +224,S1A-062,1,B,,yes,,,,18-25,female,British,Southeast,,Secondary,Student +225,S1A-063,1,A,,yes,,,,26-45,male,British,Southeast,,University,Doctor +226,S1A-063,1,B,,yes,,Boase,Sue,26-45,female,British,Southeast,,University,"Researcher, lecturer",,, +227,S1A-063,1,C,,yes,,King-Smith,Gavin,26-45,male,British,Southeast,,University,Management consultant,,, +228,S1A-063,1,D,,yes,,,,26-45,female,British,Southeast,,Secondary,Nurse,,, +232,S1A-065,1,A,,yes,,,,26-45,female,British,London,,University,Student,,, +233,S1A-065,1,B,,yes,,,,26-45,female,British,East,,Secondary,Housewife,,,Spent part of life in Scotland +234,S1A-065,1,C,,yes,,,,46-65,male,British,London,,University,Student,,, +235,S1A-065,1,D,,yes,,,,18-25,male,British,Northeast,,University,Student,,, +236,S1A-065,1,E,,yes,,,,46-65,male,British,Scotland,,University,Farmer,,, +237,S1A-065,1,F,,yes,,,,18-25,male,British,London,,University,Student,,, +238,S1A-065,1,G,,yes,,,,18-25,male,British,Scotland,,University,Student,,, +239,S1A-066,1,A,,yes,,,,46,male,British,London,,University,Careers counsellor,,, +240,S1A-066,1,B,,yes,,,,29,female,British,Southeast,PhD,University,Student,,, +241,S1A-067,1,A,,yes,,Ruskin,Sheila,26-45,female,British,India,,University,"Actress, trainee holistic massage practitioner",,,Lived most of life in Sevenoaks and London W1 +242,S1A-067,1,B,,yes,,,,26-45,female,British,Southeast,,University,"Writer, housewife" +243,S1A-068,1,A,,yes,,Jones,Aled D.,18-25,male,British,Wales,,Secondary,"Student, student union officer" +244,S1A-068,1,B,,yes,,,,24,female,British,EastMidlands,,Secondary,Student +246,S1A-069,1,A,,yes,,Jones,Aled D.,18-25,male,British,Wales,,Secondary,"Student, student union officer" +247,S1A-069,1,B,,yes,,,,24,female,British,EastMidlands,,Secondary,Student +248,S1A-069,2,A,,yes,,Jones,Aled D.,18-25,male,British,Wales,,Secondary,"Student, student union officer" +249,S1A-069,2,B,,yes,,,,18-25,female,British,EastMidlands,Chemistry student,Secondary,Student +250,S1A-070,1,A,,yes,,Jones,Aled D.,18-25,male,British,Wales,,Secondary,"Student, student union officer" +253,S1A-071,1,B,,yes,,Buckley,Justin,21,male,British,Southeast,"BA English, UCL",University,Student +258,S1A-073,1,A,,yes,,,,46-65,male,British,London,,University,Industrial chemist,,,"Also lived: Oxford, Epping area, Montpellier" +259,S1A-073,1,B,,yes,,,,46-65,male,British,WestMidlands,,University,Opthalmic surgeon,,,"Also lived: Isle of Wight, Plymouth, London, Kent" +260,S1A-073,1,C,,yes,,,,26-45,female,British,London,,University,"Writer, housewife",,, +261,S1A-073,1,D,,yes,,,,26-45,female,British,Southeast,,University,"Research chemist, housewife",,,"Also lived: St Albans, Epping" +262,S1A-074,1,A,,yes,,,,21,female,British,London,,Secondary,Student,,, +263,S1A-074,1,B,,yes,,,Tom,21,male,British,London,,Secondary,Travel officer,,, +264,S1A-074,1,C,,yes,,,Paul,23,male,British,London,,University,Travel officer,,, +265,S1A-074,2,A,,yes,,,Paul,23,male,British,London,,University,Travel officer,,, +266,S1A-074,2,B,,yes,,,,22,male,British,London,,Secondary,Student,,, +267,S1A-074,3,A,,yes,,,Louise,22,female,British,London,,University,Travel officer,,, +268,S1A-074,3,B,,yes,,,,21,male,British,London,,Secondary,Student,,, +269,S1A-074,3,C,,yes,,,,27,female,British,London,,University,Travel officer,,, +270,S1A-074,4,A,,yes,,,Tom,21,male,British,London,,Secondary,Travel officer,,, +271,S1A-074,4,B,,yes,,,,26-45,male,British,Southeast,,Secondary,Student,,, +272,S1A-074,4,C,,yes,,,Louise,22,female,British,London,,University,Travel officer,,, +275,S1A-074,5,C,,yes,,,,27,male,British,London,,University,Student union officer,,, +277,S1A-074,6,B,,yes,,,Nick,28,male,British,Southwest,,Secondary,Student,,, +278,S1A-074,7,A,,yes,,,,18-25,male,British,Northeast,,Secondary,Student,,, +282,S1A-075,1,B,,yes,,,James,26-45,male,British,London,,University,Businessman,,,Speaker is partially deaf +285,S1A-077,1,A,,yes,,,Mike,26-45,male,British,London,,University,Careers counsellor,,, +286,S1A-077,1,B,,yes,,,Gill,26-45,female,British,London,,University,Careers counsellor,,, +287,S1A-077,1,C,,yes,,,Elizabeth,18-25,female,British,Southeast,,Secondary,Student,,, +288,S1A-077,1,D,,yes,,,James,18-25,male,British,London,,Secondary,Student,,, +289,S1A-078,1,A,,yes,,,,26-45,female,British,London,,University,Student union officer,,, +290,S1A-078,1,B,,yes,,,,18-25,male,British,London,,Secondary,Student +291,S1A-078,2,A,,yes,,,,26-45,male,British,London,,University,Student union officer +292,S1A-078,2,B,,yes,,,,26-45,female,British,London,,University,Student union officer +293,S1A-078,2,C,,yes,,,,18-25,female,British,Southeast,,Secondary,Student +294,S1A-078,3,A,,yes,,,,26-45,female,British,London,,University,Student union officer +295,S1A-078,3,B,,yes,,,,18-25,male,British,Southeast,,Secondary,Student +296,S1A-078,4,A,,yes,,,,26-45,male,British,London,,University,Student union officer +297,S1A-078,4,B,,yes,,,,26-45,female,British,London,,University,Student union officer +298,S1A-078,4,C,,yes,,,,18-25,female,British,London,,Secondary,Student +299,S1A-079,1,A,,yes,,,,26-45,female,British,London,,University,Student union officer +300,S1A-079,1,B,,yes,,,Tony,26-45,male,British,London,,University,Student union officer +301,S1A-079,1,C,,yes,,,,26-45,female,British,Southeast,"Degree, UCL",University,Student +302,S1A-080,1,A,,yes,,,Jenny,18-25,female,British,London,,University, +303,S1A-080,1,B,,yes,,,Isobel,26-45,female,British,London,,University, +304,S1A-081,1,A,,yes,,White,Ashley,31,male,British,London,,University,"Tennis coach, PhD student" +305,S1A-081,1,B,,yes,,,Caroline,29,female,British,London,O-Levels,Secondary,"Secretary, Thames Water Co." +306,S1A-082,1,A,,yes,,,,26-45,female,British,London,,University,Lecturer,,, +307,S1A-082,1,B,,yes,,,,18-25,male,British,Southeast,,Secondary,Student,,, +309,S1A-083,1,A,,yes,,,Paquita,44,female,British,London,O-Levels,Secondary,"Tennis coach, guitarist",,, +310,S1A-083,1,B,,yes,,,Sandra,46-65,female,British,Spain,O-Levels,Secondary,Flamenco dancing teacher,,,Father: Spanish; Mother: Gipsy. In UK since child +311,S1A-084,1,A,,yes,,Buckley,Justin,21,male,British,Southeast,"English degree, UCL",University,"Researcher, Survey of English Usage",,, +312,S1A-084,1,B,,yes,,Scott,Kate,18-25,female,British,London,"Undergraduate in English, UCL",Secondary,Student,,, +313,S1A-084,1,C,,yes,,,,18-25,female,British,Northeast,"Undergraduate in English, UCL",Secondary,Student,,, +314,S1A-085,1,A,,yes,,,,18-25,male,British,London,,Secondary,Student,,, +315,S1A-085,1,B,,yes,,Scott,Kate,18-25,female,British,London,"Undergraduate in English, UCL",Secondary,Student,,, +317,S1A-086,1,B,,yes,,Boase,Sue,26-45,female,British,Southeast,,University,"Lecturer, researcher",,, +319,S1A-087,1,A,,yes,,Dytham,,46-65,male,British,Southeast,,University,Dentist,,, +320,S1A-087,1,B,,yes,,,,26-45,male,British,Southeast,,University,Physicist,,, +321,S1A-087,2,A,,yes,,Dytham,,46-65,male,British,Southeast,,University,Dentist,,, +322,S1A-087,2,B,,yes,,,,18-25,male,British,London,"Undergraduate student, UCL",Secondary,Student +323,S1A-088,1,A,,yes,,Dytham,,46-65,male,British,Southeast,,University,Dentist +324,S1A-088,1,B,,yes,,,,26-45,male,British,Southeast,,University,Physicist +326,S1A-089,1,A,,yes,,Dytham,,46-65,male,British,Southeast,,University,Dentist +327,S1A-089,1,B,,yes,,,,26-45,male,British,Southeast,,University,Physicist +329,S1A-089,2,B,,yes,,,,18-25,female,British,London,"Undergraduate student, UCL",Secondary,Student +333,S1A-089,4,B,,yes,,,,18-25,female,British,Northeast,"Undergraduate student, UCL",Secondary,Student +335,S1A-090,1,B,,yes,,,Maureen,46-65,female,British,Scotland,"Undergraduate student, UCL",Secondary,Student +336,S1A-090,1,C,,yes,,,Caroline,46-65,female,British,London,"Undergraduate student, UCL",Secondary,Student +337,S1A-090,1,D,,yes,,,Joan,66+,female,British,London,"Undergraduate student, UCL",Secondary,"Student, retired nurse" +338,S1A-090,2,A,,yes,,,,18-25,female,British,London,"Undergraduate student, UCL",Secondary,Student +339,S1A-090,2,B,,yes,,,Maureen,46-65,female,British,Scotland,"Undergraduate student, UCL",Secondary,Student +340,S1A-090,2,C,,yes,,,,18-25,female,British,London,"Undergraduate student, UCL",Secondary,Student +341,S1A-091,1,A,,yes,,,Isobel,29,female,British,Spain,,University, +342,S1A-091,1,B,,yes,,,Jenny,26-45,female,British,London,,Secondary,Student +343,S1A-092,1,A,,yes,,,Isobel,29,female,British,Spain,,University, +344,S1A-092,1,B,,yes,,Mason,David,27,male,British,Southeast,,University, +345,S1A-093,1,A,,yes,,Tollfree,Laura,18-25,female,British,London,"Degree in Linguistics, UCL",University,Student +346,S1A-093,1,B,,yes,,Tollfree,Eleanor,20,female,British,London,,Secondary,Student +347,S1A-094,1,A,,yes,,Wagner,Mary,66+,female,British,Southeast,,Secondary,Retired +348,S1A-094,1,B,,yes,,Tollfree,Laura,18-25,female,British,London,"Degree in Linguistics, UCL",University,Student +349,S1A-095,1,A,,yes,,Debenham,Giles,25,male,British,London,,, +350,S1A-095,1,B,,yes,,Debenham,Simon,28,male,British,London,,University,Accountant +351,S1A-095,2,A,,yes,,Debenham,Susan,48,female,British,London,,, +352,S1A-095,2,B,,yes,,Debenham,Simon,28,male,British,London,,University,Accountant +353,S1A-095,3,A,,yes,,Debenham,Giles,25,male,British,London,,, +354,S1A-095,3,B,,yes,,Debenham,Simon,28,male,British,London,,University,Accountant,,, +355,S1A-095,4,A,,yes,,Debenham,Susan,48,female,British,London,,,,,, +356,S1A-095,4,B,,yes,,Debenham,Simon,28,male,British,London,,University,Accountant,,, +358,S1A-096,1,B,,yes,,,Cheryl,32,female,British,USA,BA Development Psychology,University,"Actress, poet",,, +359,S1A-097,1,A,,yes,,Rosta,Andrew,18-25,male,British,Northwest,"UCL, Linguistics",University,"PhD student, Linguistics",,,"Researcher, Survey of English Usage" +361,S1A-098,1,A,,yes,,Woodford,Kate,26,female,British,EastMidlands,,University,Lexicographer,,"French, Spanish", +362,S1A-098,1,B,,yes,,Howells,Sian,25,female,British,Wales,,University,Personal Assistant in German bank,,"French, German", +363,S1A-098,2,A,,yes,,Dowell,John,26-45,male,British,London,PhD,University,Employed at UCL,,, +364,S1A-098,2,B,,yes,,Woodford,Kate,26,female,British,EastMidlands,,University,Lexicographer,,"French, Spanish", +365,S1A-098,3,A,,yes,,Woodford,Kate,26,female,British,EastMidlands,,University,Lexicographer,,"French, Spanish", +366,S1A-098,3,B,,yes,,Peters,Roz,27,female,British,London,,University,Civil servant,,, +367,S1A-099,1,A,,yes,,,,18-25,female,British,Wales,,University,Nurse,,, +368,S1A-099,1,B,,yes,,Buckley,Justin,21,male,British,Southeast,"BA English, UCL",University,"Student, researcher",,,"Researcher, Survey of English Usage" +369,S1A-099,2,A,,yes,,,,18-25,female,British,London,B-Techs,University,Shop assistant,,, +370,S1A-099,2,B,,yes,,Buckley,Justin,21,male,British,Southeast,"BA English, UCL",University,"Student, researcher",,,"Researcher, Survey of English Usage" +371,S1A-100,1,A,,yes,,Gibney,Marie,46-65,female,British,Northwest,,University,University secretary,,,"Secretary, Survey of English Usage" +374,S1A-100,2,B,,yes,,Gibney,Marie,46-65,female,British,Northwest,,University,University secretary,,,"Secretary, Survey of English Usage" +375,S1A-100,3,A,,yes,,,Sean,26-45,male,British,EastMidlands,,University,"Artist, journalist",,, +376,S1A-100,3,B,,yes,,Buckley,Justin,21,male,British,Southeast,"BA English, UCL",University,"Student, researcher",,,"Researcher, Survey of English Usage" +377,S1B-001,1,A,,yes,Tutor,Weitzman,Michael,46-65,male,British,London,,University,University Lecturer,,Hebrew, +378,S1B-001,1,B,,yes,,Turner,Mary,46-65,female,British,London,,Secondary,Student,,Hebrew, +379,S1B-001,1,C,,yes,,Smith,John,18-25,male,British,London,,Secondary,,,, +381,S1B-002,1,B,,yes,,,Susan,18-25,female,British,East,,Secondary,Student,,, +382,S1B-002,1,C,,yes,,,Vicky,18-25,female,British,London,,Secondary,Student,,, +383,S1B-002,1,D,,yes,,,Phillip,18-25,male,British,Southeast,,Secondary,Student,,, +384,S1B-002,1,E,,yes,,,Vincent,18-25,male,British,London,,Secondary,Student,,, +385,S1B-002,1,F,,yes,,,Jeremy,18-25,male,British,EastMidlands,,Secondary,Student,,, +386,S1B-002,1,G,,yes,,,Georgina,18-25,female,British,London,,Secondary,Student +392,S1B-003,1,A,,yes,Tutor,Houghton,George,26-45,male,British,Northwest,"MA, PhD",University,University Lecturer +393,S1B-003,1,B,,yes,,,Colin,23,male,British,London,,Secondary,Student +395,S1B-003,1,D,,yes,,,Jill,18-25,female,British,London,,Secondary,Student +396,S1B-003,1,E,,yes,,,Melanie,18-25,female,British,London,,Secondary,Student +414,S1B-005,1,B,,yes,,,Michael,18-25,male,British,London,,Secondary,Student +415,S1B-005,1,C,,yes,,,Rebecca,18-25,female,British,London,,Secondary,Student +416,S1B-005,1,D,,yes,,,Joanna,18-25,female,British,Southeast,,Secondary,Student +417,S1B-005,1,E,,yes,,,Michael,18-25,male,British,Southeast,,Secondary,Student +419,S1B-006,1,B,,yes,,,Jackie,18-25,female,British,London,,Secondary,student +422,S1B-007,1,A,,yes,Tutor,Agnew,Clive,26-45,male,British,London,PhD,University,Lecturer in Geography +423,S1B-007,1,B,,yes,,,Barbara,18-25,female,British,London,,Secondary,Student +424,S1B-007,1,C,,yes,,,Colin,18-25,male,British,London,,Secondary,Student +425,S1B-007,1,D,,yes,,,James,18-25,male,British,London,,Secondary,Student +426,S1B-007,1,E,,yes,,,Duncan,18-25,male,British,London,,Secondary,Student +428,S1B-008,1,B,,yes,,,David,23,male,British,London,,Secondary,Student +429,S1B-008,1,C,,yes,,,Miriam,18-25,female,British,Scotland,,Secondary,Student +441,S1B-009,1,A,,yes,Tutor,Fitzgerald,M.,26-45,female,British,London,PhD Anatomy,University,University lecturer +442,S1B-009,1,B,,yes,,,,18-25,male,British,London,,Secondary,Student +450,S1B-011,1,A,,yes,Tutor,Austin,R.C.,46-65,male,British,Southeast,,University,Lecturer in Public Law +451,S1B-011,1,B,,yes,,,,18-25,male,British,London,,Secondary,Student +452,S1B-011,1,C,,yes,,,,18-25,female,British,London,,Secondary,Student +453,S1B-011,1,D,,yes,,,,18-25,male,British,Southeast,,Secondary,Student +454,S1B-011,1,E,,yes,,,,18-25,male,British,London,,Secondary,Student +455,S1B-011,1,F,,yes,,,,18-25,female,British,London,,Secondary,Student +456,S1B-011,1,G,,yes,,,,18-25,male,British,London,,Secondary,Student +457,S1B-011,1,H,,yes,,,,18-25,female,British,Southeast,,Secondary,Student +459,S1B-012,1,A,,yes,,Tollfree,Laura,18-25,female,British,London,BA Linguistics,University,Student (PhD) +460,S1B-012,1,B,,yes,Tutor,,April,28,female,British,Scotland,PhD Phonology,University,University Lecturer +462,S1B-013,1,B,,yes,,,,18-25,male,British,London,,Secondary,Student +463,S1B-013,1,C,,yes,,,,18-25,female,British,Southeast,,Secondary,Student +464,S1B-013,1,D,,yes,,,,18-25,female,British,London,,Secondary,Student +465,S1B-013,1,E,,yes,,,,18-25,female,British,London,,Secondary,Student +467,S1B-014,1,B,,yes,,,,18-25,male,British,London,,Secondary,Student +468,S1B-014,1,C,,yes,,,,18-25,female,British,London,,Secondary,Student +469,S1B-015,1,A,,yes,Tutor,Wolf,J.,26-45,male,British,London,PhD,University,University Lecturer +470,S1B-015,1,B,,yes,,,John,18-25,male,British,WestMidlands,,Secondary,Student +471,S1B-015,1,C,,yes,,,Rebecca,18-25,female,British,London,,Secondary,Student +472,S1B-016,1,A,,yes,Tutor,Houghton,George,26-45,male,British,Northwest,PhD,University,University Lecturer +473,S1B-016,1,B,,yes,,,,18-25,male,British,London,,Secondary,Student +474,S1B-016,1,C,,yes,,,Matt,18-25,male,British,Southeast,,Secondary,Student +475,S1B-016,1,D,,yes,,,Esther,18-25,female,British,London,,Secondary,Student +476,S1B-017,1,A,,yes,Tutor,Orton,Clive,26-45,male,British,London,,University,Lecturer in Archaeology +477,S1B-017,1,B,,yes,,,,46-65,male,British,London,,Secondary,Student +479,S1B-017,1,D,,yes,,,,18-25,male,British,London,,Secondary,Student +480,S1B-017,1,E,,yes,,,,18-25,female,British,London,,Secondary,Student +481,S1B-018,1,A,,yes,,,,24,male,British,EastMidlands,,Secondary,Student +482,S1B-018,1,B,,yes,Tutor,,,46-65,male,British,London,,University,University Lecturer,, +483,S1B-018,1,C,,yes,,,,25,male,British,London,,Secondary,Student,, +484,S1B-018,1,D,,yes,Tutor,,,34,male,British,Southeast,,University,University tutor,, +485,S1B-018,1,E,,yes,,,Chris,18-25,male,British,London,,Secondary,Student,, +489,S1B-019,1,C,,yes,,,Michael,18-25,male,British,EastMidlands,,Secondary,Student,, +491,S1B-019,1,E,,yes,,,Eleanor,18-25,female,British,London,,Secondary,Student,, +493,S1B-020,1,B,,yes,,,Victor,18-25,male,British,London,,Secondary,Student,, +494,S1B-020,1,C,,yes,,,,18-25,male,British,London,,Secondary,Student,, +495,S1B-021,1,A,,yes,Chairman,Morgan,Cliff,61,male,British,Wales,Grammar School,Secondary,"Broadcaster, ex-rugby player",,Welsh +496,S1B-021,1,B,,yes,,Heyhoe-Flint,Rachael,52,female,British,WestMidlands,Wolverhampton High School; Dartford College of Physical Education,University,"Ex-cricketer, broadcaster, writer",,None +497,S1B-021,1,C,,yes,,Wooller,Wilfred,66+,male,British,Wales,Cambridge (MA),University,Justice of the Peace,,Some French +498,S1B-021,2,A,,yes,Chairman,Neil,Andrew,42,male,British,Scotland,Paisley Grammar School; Glasgow University (MA),University,"Editor, The Sunday Times",,, +502,S1B-022,1,B,,yes,,Bragg,Melvyn,52,male,British,Cumbria,"Wadham College, Oxford",University,"Broadcaster, novelist",,, +503,S1B-022,1,C,,yes,,Mortimer,John,58,male,British,London,Harrow School; Brasenose Coll. Oxford; Inner Temple,University,"Barrister, novelist, playwright",,,"QC, 1966" +504,S1B-022,1,D,,yes,,Jackson,Glenda,55,female,British,Northwest,"West Kirby Grammar School; Royal Academy of Dramatic Arts, London",University,"Political candidate, actress",,, +507,S1B-023,1,A,,yes,Chairman,Baker,Richard,66,male,British,London,"Peterhouse, Cambridge",University,"Broadcaster, ex-actor",,, +509,S1B-023,1,C,,yes,,Nunn,Trevor,51,male,British,East,"Downing College, Cambridge (BA)",University,"Associate Director, The Royal Shakespeare Company",,, +510,S1B-024,1,A,,yes,Chairman,Bragg,Melvyn,52,male,British,Cumbria,"Wadham College, Oxford (MA)",University,"Broadcaster, novelist",,, +511,S1B-024,1,B,,yes,,Lawson,Mark,26-45,male,British,London,UCL (BA English),University,Journalist,,, +512,S1B-024,1,C,,yes,,Mortimer,John,58,male,British,London,Harrow School; Brasenose Coll. Oxford; Inner Temple,University,"Barrister, novelist, playwright",,,"QC, 1966" +513,S1B-024,1,D,,yes,,Couper,Heather,42,female,British,London,Grammar Sch; Univ. of Leicester (BSc Physics & Astronomy),University,Prof. of Astronomy; science broadcaster/writer,"FRAS, 1970","French, Latin, German", +514,S1B-024,1,E,,yes,,Davies,Peter,26-45,male,British,Southwest,,University,,,"French, some German", +515,S1B-024,1,F,,yes,,Dobbs,Michael,46-65,male,British,London,,University,"Politician, novelist",,, +516,S1B-025,1,A,,yes,Chairman,Jones,Clay,66+,male,British,Wales,,University,Broadcaster,,Welsh, +517,S1B-025,1,B,,yes,,Ledward,Daphne,26-45,female,British,Yorkshire,,Secondary,Horticulturalist,,"French, Latin", +518,S1B-025,1,C,,yes,,Downham,Fred,46-65,male,British,Northwest,,Secondary,Horticulturalist,,None, +519,S1B-025,1,D,,yes,,Buczacki,Stefan,26-45,male,British,EastMidlands,PhD,University,Horticulturalist,,"French, Russian", +520,S1B-026,1,A,,yes,Chairman,Purves,Libby,26-45,female,British,London,"Oxford University, English 1971",University,Broadcaster,,French, +521,S1B-026,1,B,,yes,,Horrocks,Stella,46-65,female,British,Yorkshire,Teachers' Training College,University,Ex-teacher,,None, +522,S1B-026,1,C,,yes,,Hayes,Brian,46-65,male,British,Australia,,University,Broadcaster,,, +523,S1B-026,1,D,,yes,,Dickens,Monica,66+,female,British,London,"St Paul's School, Hammersmith, London",Secondary,Novelist,,, +525,S1B-027,1,A,,yes,Chairman,Sissons,Peter,49,male,British,Northwest,Oxford University (MA),University,Broadcaster,,, +526,S1B-027,1,B,,yes,,Clarke,Kenneth,51,male,British,EastMidlands,"Nottingham High School; Gonville & Caius College, Cambridge (BA, LLB)",University,Politician,,, +527,S1B-027,1,C,,yes,,Hattersley,Roy,59,male,British,EastMidlands,Sheffield Grammar School; Hull University,University,"Politician, journalist",,, +528,S1B-027,1,D,,yes,,Ashdown,Paddy,41,male,British,India,Bedfordshire Public School; Hong Kong University,University,"Politician, ex-soldier",,Chinese,Moved to Britain aged 4 +530,S1B-028,1,A,,yes,Chairman,MacIntyre,Ian,60,male,British,Scotland,"Cambridge (MA); College of Europe, Bruges",University,Broadcaster,,"French, Norwegian, Russian, Italian", +531,S1B-028,1,B,,yes,,Sacks,Jonathan,43,male,British,London,"Cambridge (MA); Oxford (PhD); Jews' College, London",University,Chief Rabbi,,, +532,S1B-028,1,C,,yes,,Halsey,A.H.,68,male,British,EastMidlands,"London School of Economics (BSC Econ, PhD), MA Oxon",University,"Professorial Fellow, Nuffield College, Oxford",,,Former Professor of Social & Admin. Studies +533,S1B-028,1,D,,yes,,McDade,John,26-45,male,British,Scotland,,University,Clergyman,,, +535,S1B-029,1,A,,yes,,Hannan,Patrick,46-65,male,British,Wales,,University,Broadcaster,,, +536,S1B-029,1,B,,yes,,Parris,Matthew,42,male,British,South Africa,"Waterford School, Swaziland; Cambridge (BA); Yale University",University,"Journalist, ex-politician",,Spanish, +537,S1B-029,1,C,,yes,,Thomas,Daffyd Elis,45,male,British,Wales,University College North Wales,University,Politician; Ex-tutor in Celtic Studies,,,"Ex-lecturer in English, Univ. Coll. North Wales" +541,S1B-030,1,C,,yes,,Daley,Janet,46-65,female,,USA,,University,Journalist,,, +544,S1B-030,1,F,,yes,,Pearce,Edward,52,male,British,Northeast,Grammar School; Oxford (MA); University of Stockholm,University,"Political commentator, writer",,, +547,S1B-031,1,C,,yes,,Pearce,Edward,52,male,British,Northeast,Grammar School; Oxford (MA); University of Stockholm,University,"Political commentator, writer",,, +548,S1B-031,1,D,,yes,,Daley,Janet,26-45,female,,USA,,University,Journalist,,, +551,S1B-032,1,A,,yes,,Baker,Richard,66,male,British,London,"Peterhouse, Cambridge",University,"Broadcaster, ex-actor",,, +552,S1B-032,1,B,,yes,,Handley,Vernon,61,male,British,London,"Enfield School; Balliol College, Oxford; Guildhall School of Music",University,"Conductor, Royal Liverpool Philharmonic Orchestra",,, +553,S1B-032,1,C,,yes,,Thomson,Bryden,46-65,male,British,Scotland,"Ayr Academy; Royal Scottish Academy of Music; Staatliche Hochschule fur Musik, Hamburg",University,Composer,"Fellow, Royal Scottish Acad. of Music & Drama",German, +554,S1B-033,1,A,,yes,Chairman,Northam,Gerry,26-45,male,British,London,,University,Broadcaster,,, +555,S1B-033,1,B,,yes,,Wheeler,Sir John,51,male,British,East,"Staff College, Wakefield",University,Politician,,, +556,S1B-033,1,C,,yes,,Owen,David,46-65,male,British,Wales,,University,"President, Association of Chief Police Officers; ex-detective",,, +557,S1B-033,1,D,,yes,,Hattersley,Roy,59,male,British,EastMidlands,Sheffield Grammar School; Hull University,University,Politician,,, +561,S1B-034,1,A,,yes,Chairman,Dimbleby,David,53,male,British,London,Charterhouse School; Oxford (MA); University of Paris,University,Broadcaster,,, +563,S1B-034,1,C,,yes,,Bradbury,,46-65,male,British,EastMidlands,,,County Councillor,,, +565,S1B-034,1,E,,yes,,Higgins,Bertha,46-65,female,British,EastMidlands,,University,County Councillor,,, +571,S1B-034,1,K,,yes,,,,46-65,male,British,Scotland,,,County Councillor,,, +573,S1B-035,1,A,,yes,Chairman,Dimbleby,Jonathan,47,male,British,London,UCL (BA Philosophy),University,Broadcaster,,, +575,S1B-035,1,C,,yes,,Rifkind,Malcolm,45,male,British,Scotland,"Edinburgh University (LLB, MSc)",University,Politician,,,"Lectured at University of Rhodesia, 1967-8" +576,S1B-035,1,D,,yes,,Wilkinson,Paul,54,male,British,Wales,"University College Swansea; University of Wales (BA History & Politics, MA)",University,Professor of International Relations,,, +577,S1B-036,1,A,,yes,Chairman,Naughtie,James,40,male,British,Scotland,Grammar School; Aberdeen University; Syracuse University,University,Broadcaster,,, +579,S1B-036,1,C,,yes,,Robertson,George,45,male,British,Scotland,"Dunoon Grammar School; University of Dundee (MA Hons, 1968)",University,Politician,,, +581,S1B-036,1,E,,yes,,Patten,John,46,male,British,London,"Wimbledon College; Sidney Sussex College, Cambridge (PhD 1972)",University,Politician,,,Former university lecturer +583,S1B-037,1,B,,yes,,Aslet,Clive,36,male,British,London,"Peterhouse, Cambridge",University,"Deputy Editor, Country Life",,, +587,S1B-038,1,B,,yes,Chairman,Dimbleby,Jonathan,47,male,British,London,UCL (BA Philosophy),University,Broadcaster,,, +589,S1B-039,1,A,,yes,Chairman,Neil,Andrew,42,male,British,Scotland,Grammar School; University of Glasgow,University,"Journalist, Editor, `The Sunday Times'",,, +593,S1B-040,1,B,,yes,,Haines,Joe,63,male,British,London,,Secondary,Journalist,,,Former Press Officer to the Prime Minister +594,S1B-040,1,C,,yes,,Pimlott,Ben,46,male,British,London,"Rokeby School, Wimbledon; Marlborough Coll.; Worcester Coll.; Oxford (MA, BPhil); Newcastle (PhD)",University,Professor of Politics & Contemporary History,,, +595,S1B-040,1,D,,yes,,Jenkins,Roy,71,male,British,Wales,"Abersychan Grammar School; University College Cardiff; Balliol College, Oxford",University,Politician,,, +596,S1B-041,1,A,,yes,Interviewer,Nicholson,Mavis,61,female,British,Wales,,University,Broadcaster,,, +597,S1B-041,1,B,,yes,Interviewee,Runcie,Robert,66,male,British,London,Merchant Taylor's School; Oxford; Cambridge,University,Former Archbishop of Canterbury,,, +598,S1B-042,1,A,,yes,Interviewer,Aspel,Michael,57,male,British,London,London,University,Broadcaster,,, +599,S1B-042,1,B,,yes,Interviewee,Laurie,Hugh,26-45,male,British,Southeast,Eton; Cambridge (Archaeology),University,"Comedian, actor",,, +600,S1B-042,2,A,,yes,Interviewer,Morley,Sheridan,46-65,male,British,London,,University,Broadcaster,,French, +601,S1B-042,2,B,,yes,Interviewee,Mortimer,John,58,male,British,London,Harrow School; Brasenose Coll. Oxford; Inner Temple,University,"Barrister, novelist, playwright",,,"QC, 1966" +602,S1B-043,1,A,,yes,Interviewer,Dimbleby,Jonathan,47,male,British,London,UCL (BA Philosophy),University,Broadcaster,,, +603,S1B-043,1,B,,yes,Interviewee,Major,John,47,male,British,London,,Secondary,"Politician, accountant",,, +605,S1B-044,1,B,,yes,Interviewee,Walker,Lynn,26-45,female,British,Scotland,,University,Critic,,None, +611,S1B-045,1,B,,yes,Interviewee,Jarman,Derek,49,male,British,London,"King's College, London; Slade School of Art",University,"Painter, film director",,, +612,S1B-046,1,A,,yes,Interviewer,Lawley,Sue,45,female,British,WestMidlands,Bristol University (BA Modern Languages),University,Broadcaster,,, +613,S1B-046,1,B,,yes,Interviewee,Byatt,A.S.,55,female,British,EastMidlands,"Cambridge; Bryn Mawr College, Pa., USA; Somerville Coll., Oxford",University,Novelist,,,Former lecturer in English +614,S1B-047,1,A,,yes,Interviewer,MacIntyre,Ian,60,male,British,Scotland,"Prescot Grammar School; St John's College, Cambridge; College of Europe, Bruges",University,Broadcaster,,"French, Norwegian, Russian, Italian", +617,S1B-048,1,B,,yes,Interviewee,Stewart,Mary,75,female,British,London,"Skellfield School, Ripon, Yorks; Durham University",University,Novelist,,,Former lecturer in English +618,S1B-049,1,A,,yes,Interviewer,Cuffe,Jenny,26-45,female,British,London,,University,Broadcaster,,"French, Spanish, Italian", +619,S1B-049,1,B,,yes,Interviewee,Mottley,Shiela,46-65,female,British,Northwest,,Secondary,,,None, +620,S1B-050,1,A,,yes,Interviewer,Billington,Michael,52,male,British,WestMidlands,Oxford (BA),University,"Drama critic, journalist",,, +622,S1B-051,1,A,,yes,,Summerson,Hugo,41,male,British,WestMidlands,Agricultural College,University,"Politician, surveyor",,, +623,S1B-051,1,B,,yes,,Battle,John,40,male,British,Yorkshire,"Upholland College, Leeds",University,Politician,,,Trained for R.C. Church +625,S1B-051,1,D,,yes,,Skinner,Denis,58,male,British,EastMidlands,"Sheffield University; Ruskin College, Oxford",University,"Politician, miner",,, +626,S1B-051,1,E,,yes,,Rogers,Allan,59,male,British,Wales,University College Swansea (BSc Geology),University,"Politician, geologist",,,"Worked in USA, Canada, Australia, 1956-63" +627,S1B-051,1,F,,yes,,Holt,Richard,60,male,British,London,Wembley Technical College,University,Politician,,, +629,S1B-051,1,H,,yes,,Mahon,Alice,54,female,British,Canada,Bradford University,University,"Politician, lecturer",,, +630,S1B-051,1,I,,yes,,Livingstone,Ken,46,male,British,London,Fawcett College of Education,University,"Politician, lab technician",,, +632,S1B-052,1,B,,yes,,Clark,William,74,male,British,London,,Secondary,"Politician, accountant",,, +633,S1B-052,1,C,,yes,,Major,John,47,male,British,London,,Secondary,Politician,,, +634,S1B-052,1,D,,yes,,Beith,Alan,47,male,British,Southeast,"King's School, Macclesfield; Balliol College Oxf.",University,"Politician, lecturer",,, +635,S1B-052,1,E,,yes,,Higgins,Terence,63,male,British,London,Cambridge; Yale,University,"Politician, economist",,, +636,S1B-052,1,F,,yes,,Sheldon,Robert,68,male,British,Northwest,Technical College; London University,University,"Politician, engineer",,, +637,S1B-052,1,G,,yes,,Wardle,Charles,62,male,British,Southeast,"Lincoln Coll, Oxford; Harvard Business School",University,Politician,,, +639,S1B-052,1,I,,yes,,Stewart,Ian,56,male,British,London,"Jesus College, Cambridge (MA, LittD (1978))",University,Politician,,, +643,S1B-052,1,M,,yes,,Fraser,John,57,male,British,London,"Grammar School, Chelsea; Loughborough Univ.",University,"Politician, solicitor",,, +645,S1B-052,1,O,,yes,,Salmond,Alex,37,male,British,Scotland,St Andrew's,University,"Politician, economist",,, +647,S1B-053,1,B,,yes,,Thatcher,Margaret,65,female,British,EastMidlands,Oxford; Lincoln's Inn,University,Politician,,, +649,S1B-053,1,D,,yes,,Ashdown,Paddy,41,male,British,India,Bedfordshire Public School; Hong Kong University,University,"Politician, ex-soldier",,Chinese,Moved to Britain aged 4 +650,S1B-053,1,E,,yes,,Squire,Robin,47,male,British,London,"Tiffin School, Kingston-upon Thames; Accountancy training",University,"Politician, chartered accountant",FCA,, +651,S1B-053,1,F,,yes,,Lamond,James,63,male,British,Scotland,Burrelton School,Secondary,"Politician, engineering draughtsman",,, +652,S1B-053,1,G,,yes,,Tebbit,Norman,60,male,British,London,Edmonton County Grammar School,Secondary,"Politician, businessman",,, +653,S1B-053,1,H,,yes,,Norris,Steve,46,male,British,Northwest,"Worcester College, Oxford",University,Politician,,, +655,S1B-053,1,J,,yes,,Onslow,Cranley,65,male,British,Southeast,"Harrow School; Oriel College, Oxford; Geneva University",University,Politician,,, +658,S1B-054,1,C,,yes,,Wells,Bowen,56,male,British,London,"St Paul's School, London, Exeter University",University,Politician,,, +659,S1B-054,1,D,,yes,,Budgeon,Nicholas,54,male,British,Southeast,Cambridge,University,"Politician, barrister",,, +660,S1B-054,1,E,,yes,,Cryer,Bob,56,male,British,Yorkshire,"Salt School, Shipley; Hull University",University,"Politician, teacher",,, +663,S1B-055,1,C,,yes,,Eastham,Ken,63,male,British,Northwest,Openslaw Technical College,University,"Politician, engineer",,, +664,S1B-055,1,D,,yes,,Lloyd,Tony,41,male,British,Northwest,Stretford Grammar School; Nottingham University (BSc); Manchester Business School (DipBA),University,"Politician, Lecturer in Business Studies",,, +666,S1B-055,1,F,,yes,,Howard,Michael,50,male,British,Wales,"Grammar School; Peterhouse, Cambridge; Inner Temple",University,"Politician, barrister",,, +668,S1B-055,1,H,,yes,,Lamond,James,63,male,British,Scotland,Burrelton School,Secondary,"Politician, engineering draughtsman",,, +672,S1B-055,1,L,,yes,,Fyfe,Maria,53,female,British,Scotland,"High School, Glasgow; Strathclyde Univ",University,"Politician, lecturer",,, +674,S1B-055,1,N,,yes,,Reid,John,44,male,British,Scotland,Stirling Univ (PhD),University,"Politician, researcher",,, +675,S1B-055,1,O,,yes,,Hicks,Maureen,43,female,British,London,"Furzedown College of Education, London",University,"Politician, lecturer",,, +677,S1B-056,1,B,,yes,,Grist,Ian,53,male,British,Wales,"Jesus College, Oxford",University,Politician,,, +678,S1B-056,1,C,,yes,,Powell,Ray,63,male,British,Wales,London School of Economics,University,Politician,,, +680,S1B-056,1,E,,yes,,Griffiths,Win,48,male,British,Wales,Grammar School; Univ of Wales,University,"Politician, teacher",,, +681,S1B-056,1,F,,yes,,Jones,Barry,53,male,British,Wales,Bangor College of Education,University,"Politician, teacher of English",,, +682,S1B-056,1,G,,yes,,Michael,Alun,48,male,British,Wales,Colwyn Bay Grammar School; Keele University (BA English & Philos.),University,Politician,,,Former journalist +684,S1B-056,1,I,,yes,,Bennett,Nicholas,42,male,British,London,Polytechnic of N.London (BA Philosophy); Univ. of London Inst of Educ (PGCE); Univ. of Sussex (MA),University,Politician,,, +686,S1B-056,1,K,,yes,,Walker,Bill,62,male,British,Scotland,"Logie School, Dundee; Trades College, Dundee; College for Distributive Trades",University,Politician,"FIPM, FBIM",, +690,S1B-057,1,D,,yes,,Wigley,Daffyd,47,male,British,Wales,Manchester University,University,"Politician, economist",, +692,S1B-057,1,F,,yes,,Howard,Michael,50,male,British,Wales,"Peterhouse, Cambridge; Inner Temple",University,"Politician, barrister",, +698,S1B-057,1,L,,yes,,Kirkwood,Archy,45,male,British,Scotland,Heriot-Watt University (BSc Pharmacy),University,Politician,, +700,S1B-057,1,N,,yes,,Eastham,Ken,64,male,British,Northwest,Openslaw Technical College,University,"Politician, engineer",, +705,S1B-058,1,D,,yes,,Wallace,James,37,male,British,Scotland,Edinburgh Univeristy,University,Politician,, +708,S1B-059,1,B,,yes,,Howard,Michael,50,male,British,Wales,"Grammar School; Peterhouse, Cambridge",University,Politician (Sec. of State for Employment), +712,S1B-059,1,F,,yes,,Blair,Tony,38,male,British,Northeast,"St John's College, Oxford",University,Politician, +715,S1B-059,1,I,,yes,,Stern,Michael,49,male,British,London,,University,"Politician, accountant", +716,S1B-059,1,J,,yes,,Madden,Max,50,male,British,London,Grammar School,Secondary,Politician, +717,S1B-059,1,K,,yes,,Dickens,Sir Geoffrey,60,male,British,London,"Easthome School, Wembley; Harrow Technical College; Acton Technical College",University,"Politician, businessman", +720,S1B-059,1,N,,yes,,Lloyd,Tony,41,male,British,Northwest,Stretford Grammar Sch.; Nottingham University (BSc); Manchester Business School (DipBA),University,"Politician, Lecturer in Business Studies", +721,S1B-059,1,O,,yes,,Forth,Eric,47,male,British,Scotland,"Jordanhill College School, Glasgow; Glasgow University",University,"Politician, businessman", +724,S1B-059,1,R,,yes,,Butler,Christopher,41,male,British,Wales,"Cardiff High School; Emmanuel College, Cambridge",University,"Politician, Market Researcher",,, +725,S1B-059,1,S,,yes,,Ashley,Jack,69,male,British,Northwest,"Ruskin College, Oxford; Gonville & Caius College, Cambridge",University,Politician,,,Partially deaf +728,S1B-060,1,C,,yes,,Peacock,Elizabeth,54,female,British,Yorkshire,"Secondary School, Skipton, Yorkshire",Secondary,Politician,,, +729,S1B-060,1,D,,yes,,Henderson,Doug,42,male,British,Scotland,"Waid Academy, Fife; Central College, Glasgow; Strathclyde University (BA)",University,Politician,,, +735,S1B-061,1,A,,yes,Defence counsel,Nugee,Edward,64,male,British,Unknown,Worcester College; Oxford,University,Barrister (QC),,, +736,S1B-061,1,B,,yes,Plaintiff,Hill,John,26-45,male,British,Southeast,,,Businessman,,, +740,S1B-063,1,A,,yes,Judge,Hirst,David,65,male,British,East,"Eton; Trinity College, Cambridge (MA)",University,High Court Judge +744,S1B-064,1,B,,yes,Prosecution witness,Lehrer,Michael,,male,British,London,,,Businessman +747,S1B-065,1,B,,yes,Defence witness,Lampitt,Robert,46-65,male,British,London,,,Businessman +750,S1B-066,1,B,,yes,Plaintiff,Hoffman,Heidi,18-25,female,British,Southeast,,, +753,S1B-066,2,B,,yes,Plaintiff's witness,White,Lorraine,18-25,female,British,Northeast,,, +756,S1B-067,1,B,,yes,Defence witness,Tarburn,,18-25,female,British,Scotland,,,Travel company representative,,, +760,S1B-068,1,C,,yes,Judge,MacPherson,,65,male,British,Scotland,"Wellington Coll., Berkshire; Trinity Coll., Oxford",University,High Court Judge,,, +763,S1B-068,2,C,,yes,Judge,MacPherson,,65,male,British,Scotland,"Wellington Coll., Berkshire; Trinity Coll., Oxford",University,High Court Judge,,, +766,S1B-069,1,B,,yes,Defence witness,Basnett,,,male,British,WestMidlands,,,Businessman,,, +770,S1B-071,1,A,,yes,,Wharton,John,26-45,male,British,Southeast,,University,Architect,, +771,S1B-071,1,B,,yes,,Boase,Sue,26-45,female,British,Southeast,,University,"Lecturer, researcher",, +772,S1B-071,1,C,,yes,,King-Smith,Gavin,26-45,male,British,Southeast,,University,Management consultant,, +773,S1B-072,1,A,,yes,,Boase,Sue,26-45,female,British,Southeast,,University,"Lecturer, researcher",, +774,S1B-072,1,B,,yes,,,,26-45,female,British,Southeast,,University,Solicitor,, +775,S1B-073,1,A,,yes,,Boase,Sue,26-45,female,British,Southeast,,University,"Lecturer, researcher",, +776,S1B-073,1,B,,yes,,Salano,Michael,26-45,male,British,Southeast,,University,Building contractor,, +777,S1B-073,1,C,,yes,,King-Smith,Gavin,26-45,male,British,Southeast,,University,Management consultant,, +778,S1B-074,1,A,,yes,,,,32,male,British,London,,University,Lecturer,,Spanish +779,S1B-074,1,B,,yes,,,Ross,27,male,British,Scotland,,University,Insurance salesman,, +780,S1B-074,2,A,,yes,,,Ross,27,male,British,Scotland,,University,Insurance salesman,, +781,S1B-074,2,B,,yes,,,,18-25,male,British,Southwest,,Secondary,Student,,Some French +782,S1B-074,3,A,,yes,,,Ross,27,male,British,Scotland,,University,Insurance salesman,, +783,S1B-074,3,B,,yes,,Kalman,Anthony,27,male,British,London,,University,Chef,, +784,S1B-074,3,C,,yes,,Lawrence,Jane,20,female,British,London,,Secondary,Student,, +796,S1B-076,1,B,,yes,,Rosta,And,18-25,male,British,Northwest,"BA in Linguistics, UCL",University,PhD student,,, +798,S1B-077,1,A,,yes,Chairman,Donoghue,Helen,26-45,female,British,Southeast,Grammar School; Bristol University,University,Senior Lecturer in Microbiology,,,"Lived in Bristol, Bradford, London" +805,S1B-078,1,B,,yes,,,Denis,66+,male,British,Northeast,,Secondary,Student +806,S1B-078,1,C,,yes,,,Chris,26-45,female,British,London,,Secondary,Student +807,S1B-078,1,D,,yes,,,Ted,46-65,male,British,London,,Secondary,Student +808,S1B-078,1,E,,yes,,,,46-65,female,British,London,,Secondary,Student +809,S1B-079,1,A,,yes,Chairman,,Andy,18-25,male,British,London,,Secondary,Student +810,S1B-079,1,B,,yes,,,Carol,18-25,male,British,London,,Secondary,Student +811,S1B-079,1,C,,yes,,,,18-25,male,British,WestMidlands,,Secondary,Student +812,S1B-079,1,D,,yes,,,,18-25,male,British,London,,Secondary,Student +813,S1B-079,1,E,,yes,,,Katherine,18-25,female,British,London,,Secondary,Student +814,S1B-079,1,F,,yes,,Thompson,Katherine,18-25,female,British,London,,Secondary,Student +815,S1B-079,1,G,,yes,,,Joe,18-25,male,British,London,,Secondary,Student +816,S1B-079,1,H,,yes,,,Emma,18-25,female,British,London,,Secondary,Student +817,S1B-079,1,I,,yes,,,,18-25,female,British,London,,Secondary,Student +818,S1B-079,1,J,,yes,,,,18-25,male,British,EastMidlands,,Secondary,Student,, +819,S1B-080,1,A,,yes,,,Ross,27,male,British,Scotland,,University,Insurance salesman,, +820,S1B-080,1,B,,yes,,,,25,female,British,Southeast,,Secondary,Student,, +821,S1B-080,2,A,,yes,,,Ross,27,male,British,Scotland,,University,Insurance salesman,, +822,S1B-080,2,B,,yes,,,,32,male,British,London,,University,Lecturer,, +825,S2A-003,1,A,,yes,,Green,Alan,26-45,male,British,Ireland,,,,, +826,S2A-004,1,A,,yes,,French,Ray,46-65,male,British,Northwest,University of Leeds,University,Sports reporter,,"French, Latin, Russian" +827,S2A-005,1,A,,yes,,Bromley,Peter,46-65,male,British,Northwest,,Secondary,Sports reporter,,None +828,S2A-005,2,A,,yes,,McKenzie,Lee,26-45,male,British,Southeast,,University,Sports reporter,,French +829,S2A-005,3,A,,yes,,Bromley,Peter,46-65,male,British,Northwest,,Secondary,Sports reporter,,None +830,S2A-005,4,A,,yes,,McKenzie,Lee,26-45,male,British,Southeast,,University,Sports reporter,,French +831,S2A-005,5,A,,yes,,Bromley,Peter,46-65,male,British,Northwest,,Secondary,Sports reporter,,None +832,S2A-006,1,A,,yes,,Bromley,Peter,46-65,male,British,Northwest,,Secondary,Sports reporter,,None +842,S2A-007,6,A,,yes,,Ovett,Steve,36,male,British,Southeast,,Secondary,Former athlete +845,S2A-007,9,A,,yes,,Ovett,Steve,36,male,British,Southeast,,Secondary,Former athlete +847,S2A-007,11,A,,yes,,Ovett,Steve,36,male,British,Southeast,,Secondary,Former athlete +849,S2A-007,13,A,,yes,,Ovett,Steve,36,male,British,Southeast,,Secondary,Former athlete +852,S2A-008,3,A,,yes,,Neil,Andrew,42,male,British,Scotland,"Paisley Grammar School; University of Glasgow (MA Politics & Economics, 1971)",University,"Journalist, editor `The Sunday Times'",, +854,S2A-008,5,A,,yes,,Neil,Andrew,42,male,British,Scotland,"Paisley Grammar School; University of Glasgow (MA Politics & Economics, 1971)",University,"Journalist, editor `The Sunday Times'",, +857,S2A-009,1,A,,yes,,Darke,Ian,26-45,male,British,Southeast,,Secondary,Sports reporter,,None +859,S2A-011,1,A,,yes,,Dimbleby,Jonathan,47,male,British,London,,University,"Journalist, broadcaster",, +861,S2A-012,2,A,,yes,,Harris,Nick,26-45,male,British,Southeast,,Secondary,Sports reporter,,None +872,S2A-014,1,A,,yes,,Green,Alan,26-45,male,British,Ireland,,University,Broadcaster +881,S2A-019,1,A,,yes,,Dimbleby,Jonathan,47,male,British,Southeast,,University,Broadcaster +882,S2A-020,1,A,,yes,,Hosken,John,46-65,male,British,Southwest,,Secondary,Broadcaster,,"Spanish, French", +883,S2A-020,2,A,,yes,,McLellan,Andrew,46-65,male,British,Scotland,,University,Broadcaster,,"Latin, Greek, Hebrew, French, German", +884,S2A-021,1,A,,yes,Lecturer,Newsam,Sir Peter,63,male,British,Yorkshire,"Clifton College, Yorks; Queen's College, Oxford (MA, DipEd)",University,"Director, London Institute of Education",,, +885,S2A-022,1,A,,yes,Lecturer,James,Simon,26-45,male,British,London,MA(Oxon),University,Military Archaeologist,,Italian, +886,S2A-023,1,A,,yes,Lecturer,Banham,John,51,male,British,London,"Charterhouse School; Queen's College, Cambridge (BA Natural Sciences)",University,"Director, Confederation of British Industry",,, +887,S2A-024,1,A,,yes,Lecturer,Vanags,Patsy,26-45,female,British,London,,University,Part-time lecturer,,, +888,S2A-025,1,A,,yes,Lecturer,Chandler,A.,26-45,male,British,London,,University,Lecturer in Engineering,,, +889,S2A-026,1,A,,yes,Lecturer,Jeffreys,David,26-45,male,British,WestMidlands,,University,Lecturer in Egyptology,,, +890,S2A-027,1,A,,yes,Lecturer,Steinberg,Hannah,46-65,female,British,Germany,PhD,University,Professor of Pharmacology,,German,Moved to Britain aged c.7 +891,S2A-028,1,A,,yes,Lecturer,Johnstone,Wyndham,26-45,male,British,London,"BSc Physics, PhD",University,Research Scientist,,None, +892,S2A-028,2,A,,yes,Lecturer,Abbott,David,26-45,male,British,Northwest,B.Eng. (Hons),University,Network Administrator,,,Lives in Greater Manchester +893,S2A-028,3,A,,yes,Lecturer,Roberts,Derek,46-65,male,British,London,PhD,University,"Provost, UCL; ex-businessman",,, +894,S2A-029,1,A,,yes,Lecturer,Gower,Nicole,26-45,female,British,Southeast,BSc Hons Human Biology,University,Research Assistant/Trial Coordinator,,French, +895,S2A-029,2,A,,yes,Lecturer,Betts,Andy,26-45,male,British,Southeast,"BSc, PhD",University,Lecturer,,"French, German", +896,S2A-029,3,A,,yes,Lecturer,Newton,Andrew,26-45,male,British,London,"BSc Physics, MSc Information Technology",University,Research Fellow,,French, +899,S2A-031,2,A,,yes,Lecturer,Cassells,Sir John,64,male,British,Yorkshire,"Sedbergh School, Yorks.; Trinity Colege, Cambridge (Classics, 1951)",University,"Dir., National Committee on Education",,,Former Civil Servant +900,S2A-032,1,A,,yes,Lecturer,Hutchins,John,46-65,male,British,Southeast,,University,University lecturer,,, +901,S2A-033,1,A,,yes,Lecturer,Ash,Katy,26-45,female,British,Southeast,BSc,University,Clinical Trial Data Manager,,None, +902,S2A-033,2,A,,yes,Lecturer,Edwards,D.R.L.,26-45,male,British,London,"M.B.B.S., M.R.C. Psych.",University,Associate Research Fellow in Psychiatry,,"French, some Danish & Russian", +903,S2A-033,3,A,,yes,Lecturer,Lansbury,A.N.,26-45,female,British,Southeast,"BSc, PhD",University,Physicist,,, +904,S2A-034,1,A,,yes,Lecturer,Wood,Andrew,18-25,male,British,Yorkshire,"BSc Applied Chemistry, MSc",University,PhD Student,,None, +905,S2A-034,2,A,,yes,Lecturer,Morrissey,Mark,18-25,male,British,WestMidlands,BSc Computer Science & Electronic Engineering,University,Computer Systems Administration,,, +906,S2A-034,3,A,,yes,Lecturer,Ramsay,R.,26-45,female,British,Southeast,"MA, MRBS",University,Doctor,,"French, German", +908,S2A-035,1,A,,yes,Lecturer,Spencer,Sharon,26-45,female,British,London,"BSc, PhD Biochemistry",University,Associate Research Assistant,,None, +909,S2A-035,2,A,,yes,Lecturer,James,Lindsay,26-45,female,British,Unknown,BSc Social Science,University,"Registered General Nurse, Research Assistant",,None, +910,S2A-035,3,A,,yes,Lecturer,Lang,Harriet,18-25,female,British,Southeast,BSc Speech Communication,University,Research Assistant,,French, +911,S2A-036,1,A,,yes,Lecturer,Weitzmann,Michael,26-45,male,British,London,,University,Lecturer in Jewish & Hebrew Studies,,Hebrew, +912,S2A-037,1,A,,yes,Lecturer,Roberts,Derek,46-65,male,British,London,PhD,University,"Provost, UCL; ex-businessman",,, +913,S2A-038,1,A,,yes,Lecturer,Laslett,Sir Peter,76,male,British,London,Grammar School; Cambridge,University,"Reader in Politics & Hist. Soc. Struct, 1966-83, Cambridge","FBA, 1979",, +914,S2A-039,1,A,,yes,Lecturer,Philips,Andrew,46,male,British,Wales,Reading University (BA),University,"Director, Humanities & Soc. Sci., British Library",ALA,, +915,S2A-040,1,A,,yes,Lecturer,Cook,Peter,46-65,male,British,Canada,,University,Professor of Architecture,,, +916,S2A-041,1,A,,yes,Lecturer,Cullen,A.L.,46-65,male,British,London,,University,Professor of Electrical Engineering,,, +917,S2A-042,1,A,,yes,Lecturer,Elkins,R.P.,46-65,male,British,London,,University,Professor of Endocrinology,,, +918,S2A-043,1,A,,yes,Lecturer,Rapley,C.G.,46-65,male,British,London,,University,Professor of Physics & Astronomy,,, +919,S2A-044,1,A,,yes,Lecturer,Twining,W.L.,46-65,male,British,London,,University,Professor of Laws,,, +920,S2A-045,1,A,,yes,Lecturer,Grosvenor,Gerald,40,male,British,London,Harrow School; military training,Secondary,Businessman,,,6th Duke of Westminster +921,S2A-046,1,A,,yes,Lecturer,Rose,Graham,18-25,male,British,Northeast,"BSc Geography, MSc Micropalaeontology",University,Student,,Indonesian, +922,S2A-046,2,A,,yes,Lecturer,Shaw,Andrew,26-45,male,British,East,BSc Toxicology & Pharmacology; PhD,University,Lecturer in Toxicology,,None, +923,S2A-046,3,A,,yes,Lecturer,Cope,Mark,26-45,male,British,Northwest,"BSc (Eng), PhD",University,Lecturer in Medical Physics & Bioengineering,,None, +924,S2A-047,1,A,,yes,Lecturer,Macaskill,C.,26-45,female,British,EastMidlands,"MSc, PhD Medical Demography",University,Lecturer,,"French, Tamasheq", +925,S2A-048,1,A,,yes,Lecturer,Tait,W.,46-65,male,British,London,,University,Lecturer in Egyptology,,, +926,S2A-049,1,A,,yes,Lecturer,Burgoyne,John,46-65,male,British,Cumbria,,University,,,, +927,S2A-050,1,A,,yes,Interviewee,McCullin,Don,46-65,male,British,London,,Secondary,Photojournalist,,, +928,S2A-050,2,A,,yes,Interviewee,McCullin,Don,46-65,male,British,London,,Secondary,Photojournalist,,, +929,S2A-051,1,A,,yes,,King,C.A.,55,male,British,London,"BSc (Zoology), MSc, PhD (Biochemistry)",University,Lecturer in Biology,,None, +930,S2A-052,1,A,,yes,,Hart,George,26-45,male,British,London,,University,Archaeologist,, +934,S2A-055,1,A,,yes,,Baker,Sue,26-45,female,British,Southeast,,University,Broadcaster,,French +935,S2A-055,2,A,,yes,,Clarkson,Jeremy,26-45,male,British,Yorkshire,Public School,Secondary,Broadcaster,, +936,S2A-055,3,A,,yes,,Clarkson,Jeremy,26-45,male,British,Yorkshire,Public School,Secondary,Broadcaster,, +937,S2A-056,1,A,,yes,,Ball,Ginny,26-45,female,British,London,BSc (Hons),University,Lecturer,,"French, some German" +938,S2A-056,2,A,,yes,,Ball,Ginny,26-45,female,British,London,BSc (Hons),University,Lecturer,,"French, some German" +939,S2A-057,1,A,,yes,,Bindman,David,46-65,male,British,London,,University,Professor of the History of Art,, +940,S2A-057,2,A,,yes,,Bindman,David,46-65,male,British,London,,University,Professor of the History of Art,, +942,S2A-058,2,A,,yes,,Walton,Nick,26-45,male,British,London,"BSc, PhD",University,Astronomer,,Dutch +943,S2A-058,3,A,,yes,,Burt,Avril,46-65,female,British,London,BSc (Hons),University,Medical Research Assistant,,None +951,S2A-065,1,A,,yes,,Evans,John Field,63,male,British,Wales,"Cardiff High School; Exeter College, Oxford (MA)",University,High Court Judge,,, +952,S2A-066,1,A,,yes,,Hoffman,Sir Leonard,57,male,British,South Africa,"University of Cape Town (BA); Oxford (MA,BCL)",University,High Court Judge,,,"Rhodes Scholar to Queen's College, Oxford, 1950s" +953,S2A-066,2,A,,yes,,Hirst,David,65,male,British,East,"Eton; Trinity College, Cambridge (MA)",University,High Court Judge,,, +959,S2B-001,1,A,,yes,Newscaster,Snow,John,53,male,,Ireland,"Wellington College; Balliol College, Oxford",University,"Broadcaster, journalist",,, +960,S2B-001,1,B,,yes,,Gowing,Nick,40,male,British,London,Bristol University,University,"Broadcaster, journalist",,, +964,S2B-002,1,A,,yes,Newscaster,Snow,John,53,male,British,Ireland,"Wellington College, Somerset; Balliol College, Oxford (BA Hons)",University,Broadcaster,,, +965,S2B-002,1,B,,yes,,Neild,Paul,26-45,male,British,Northwest,,University,"Broadcaster, journalist",,, +973,S2B-002,1,J,,yes,,Major,John,47,male,British,London,,Secondary,Politician,,, +974,S2B-002,1,K,,yes,,Biffin,John,61,male,British,London,"Jesus College, Cambridge (BA)",University,Politician,,, +975,S2B-003,1,A,,yes,Newscaster,MacDonald,Trevor,52,male,,Trinidad,,University,"Broadcaster, journalist",,, +976,S2B-003,1,B,,yes,,Brunson,Michael,51,male,British,East,"Queen's College, Oxford",University,"Broadcaster, journalist",,, +977,S2B-003,1,C,,yes,,Major,John,47,male,British,London,,Secondary,Politician,,, +978,S2B-003,1,D,,yes,,Mellor,David,42,male,British,London,"Swanage Grammar School; Christ's College, Cambridge (BA Hons, 1970)",University,"Politician, barrister",,, +990,S2B-003,1,P,,yes,,Allen,Peter,45,male,British,London,,,Broadcaster,,,Worked in Australia +991,S2B-003,1,Q,,yes,,Thatcher,Carol,26-45,female,British,London,,,Freelance journalist,,,Worked in Australia +998,S2B-004,1,E,,yes,,Major,John,47,male,British,London,,Secondary,Politician +1009,S2B-005,1,G,,yes,,Major,John,47,male,British,London,,Secondary,Politician +1010,S2B-006,1,A,,yes,Presenter,Redhead,Brian,62,male,British,Northeast,Grammar School; Cambridge,University,Broadcaster +1017,S2B-007,1,A,,yes,Presenter,Naughtie,James,40,male,British,Scotland,Grammar School; Aberdeen University; Syracuse University,University,Broadcaster +1023,S2B-007,1,G,,yes,,Mellor,David,42,male,British,London,"Swanage Grammar School; Christ's College, Cambridge (BA Hons, 1970)",University,"Politician, barrister" +1028,S2B-008,1,A,,yes,,Naughtie,James,40,male,British,Scotland,Grammar School; Aberdeen University; Syracuse University,University,Broadcaster +1045,S2B-009,1,H,,yes,,Fletcher,Winston,54,male,British,London,"Westminster City School; St John's College, Cambridge (MA)",University,"Businessman; Visiting Professor, Lancaster Management School","Member, The Royal Society of Arts",, +1047,S2B-010,1,A,,yes,Newscaster,Paxman,Jeremy,41,male,British,Yorkshire,Cambridge University,University,Broadcaster,,, +1051,S2B-011,1,A,,yes,Newscaster,McDonald,Trevor,52,male,,Trinidad,,,Broadcaster,,, +1058,S2B-011,1,H,,yes,,Archer,Geoffrey,45,female,British,London,,University,"Broadcaster, journalist",,,Former solicitor's articled clerk +1060,S2B-011,1,J,,yes,,Allen,Bob,26-45,male,British,Scotland,,,"Representative, Scottish Fishermen's Association",,, +1062,S2B-011,1,L,,yes,,Foulkes,George,49,male,British,Scotland,"Keith Grammar School, Scotland; Edinburgh University (BSc 1964)",University,Politician,,, +1068,S2B-012,1,D,,yes,,Singleton,Valerie,54,female,British,London,"Royal Academy of Dramatic Art, London",University,"Broadcaster, journalist, ex-actress",,, +1079,S2B-014,1,B,,yes,,Major,John,47,male,British,London,,Secondary,Politician +1097,S2B-015,2,C,,yes,,Hamilton,Archie,50,male,British,Scotland,Eton,Secondary,Politician +1107,S2B-016,3,B,,yes,,Ashdown,Paddy,45,male,British,India,Bedfordshire Public School; Hong Kong University,University,"Politician, ex-soldier",,Chinese,Moved to Britain age 4 +1110,S2B-016,4,B,,yes,,Windsor,Elisabeth,46-65,female,British,London,,Secondary,HM The Queen,,, +1113,S2B-017,1,A,,yes,Presenter,Kershaw,Richard,26-45,male,British,London,Cambridge University; University of Virginia Graduate School,University,"Broadcaster, journalist",,, +1120,S2B-018,2,C,,yes,,Kinnock,Neil,49,male,British,Wales,University of Wales,University,Politician,,, +1122,S2B-019,1,A,,yes,Presenter,Naughtie,James,40,male,British,Scotland,Grammar School; Aberdeen University; Syracuse University,University,"Broadcaster, journalist",,, +1128,S2B-019,1,G,,yes,,Hoggett,Brenda,46,female,British,Yorkshire,"Richmond High School, Yorkshire; Girton College, Cambridge (MA); Gray's Inn",University,Law Commissioner,,,"Visiting Professor, King's College, London" +1129,S2B-020,1,A,,yes,,Hayton,Phillip,44,male,British,Yorkshire,,Secondary,"Broadcaster, journalist",,, +1131,S2B-020,1,C,,yes,,Patten,Chris,47,male,British,London,"Balliol College, Oxford",University,Politician,,, +1141,S2B-020,2,F,,yes,,Cunningham,John,52,male,British,Yorkshire,Jarrow Grammar School; Durham University (PhD),University,"Politician, chemist, lecturer" +1148,S2B-023,1,A,,yes,Presenter,Tong,Pete,26-45,male,British,London,,Secondary,"Broadcaster, musician" +1150,S2B-023,3,A,,yes,Presenter,Byalls,Peter,26-45,male,British,London,,,"Broadcaster, journalist" +1153,S2B-025,1,A,,yes,Presenter,Arnold-Baker,Charles,73,male,British,Poland,"Winchester College, Oxford, Inner Temple",University,"Visiting Professor, City University" +1157,S2B-028,2,A,,yes,Presenter,Naughtie,James,40,male,British,Scotland,"Grammar School, Aberdeen Univ, Syracuse Univ",University,"Broadcaster, journalist",,, +1158,S2B-029,1,A,,yes,Presenter,Sacks,Jonathon,43,male,British,London,"Oxford, University of London, Jew's College London",University,Chief Rabbi,,, +1159,S2B-030,1,A,,yes,,Major,John,48,male,British,London,,Secondary,Politician,,,Prime Minister +1160,S2B-030,2,A,,yes,,Kinnock,Neil,49,male,British,Wales,University College Cardiff,University,Politician,,Welsh,Leader of the Opposition +1161,S2B-030,3,A,,yes,,Kinnock,Neil,49,male,British,Wales,University College Cardiff,University,Politician,,Welsh,Leader of the Opposition +1162,S2B-030,4,A,,yes,,Barnes,Rosie,45,female,British,WestMidlands,Birmingham University (B Soc Sci),University,Politician,,, +1163,S2B-031,1,A,,yes,Debater,Alderson,John,69,male,British,Yorkshire,Middle Temple,University,Chief Constable (retired),,, +1164,S2B-031,2,A,,yes,Debater,Owen,David,58,male,British,Wales,"Harrow, Cambridge, Grays Inn",University,Barrister,,, +1165,S2B-031,3,A,,yes,Presenter,Durrell,Gerald,66,male,British,India,Educated by private tutors in Greece,Secondary,"Naturalist, writer",,, +1166,S2B-032,1,A,,yes,Presenter,Wilson,Edgar,46-65,male,British,Northeast,,University,Writer,,, +1167,S2B-032,2,A,,yes,Presenter,Redhead,Brian,62,male,British,Northeast,Grammar School; Cambridge,University,Broadcaster,,, +1168,S2B-033,1,A,,yes,Presenter,Norman,Barry,58,male,British,London,Highgate School,Secondary,"Broadcaster, film critic",,, +1169,S2B-034,1,A,,yes,Presenter,Hennessy,Peter,46-65,male,British,WestMidlands,Stroud School; Cambridge; Harvard; LSE,University,"Visiting Prof of Government, Strathclyde Univ.",,, +1170,S2B-035,1,A,,yes,Debater,Redwood,John,40,male,British,London,"Kent College, Canterbury; Oxford (MA, DPhil)",University,Politician,,, +1172,S2B-036,1,A,,yes,Debater,Gould,Bryan,52,male,,New Zealand,"Auckland University; Oxford (BA, LLB, MA, BCL)",University,Politician,,, +1174,S2B-037,1,A,,yes,Presenter,Scarman,Leslie,80,male,British,London,Oxford; Middle Temple,University,High Court Judge (retired),,,Lord Scarman +1177,S2B-038,3,A,,yes,Presenter,Lapotaire,Jane,47,female,British,East,"Grammar School; Theatre School, Bristol",University,Actress,,, +1184,S2B-041,1,A,,yes,,Queen Elizabeth II,,46-65,female,British,London,,Secondary,,,, +1185,S2B-041,2,A,,yes,,Lamont,Norman,50,male,British,Shetland,Cambridge (BA),University,Politician,,, +1186,S2B-042,1,A,,yes,Lecturer,Denman,Hugh,55,male,British,London,"BA, MA, Dip Soc Sci (Oxford)",University,Lecturer,,"French, German, Italian, Russian, Yiddish" +1195,S2B-050,1,A,,yes,,Howe,Sir Geoffrey,64,male,British,Wales,"Winchester, Cambridge, Middle Temple (MA, LLB)",University,"Politician, Barrister",, diff --git a/ice/sspeaker.txt b/ice/sspeaker.txt new file mode 100755 index 0000000..89dad73 --- /dev/null +++ b/ice/sspeaker.txt @@ -0,0 +1,1194 @@ +speakers Textcode Subtextno Speaker Original Spkr Aware Role Surname Forenames Age Gender Nationality Birthplace Education Educlevel Occupation Affiliations Other languages Comments +1 S1A-001 1 A yes Sam 26-45 male British University Teacher +2 S1A-001 1 B yes Adam 18-25 male British Secondary Student +3 S1A-002 1 A yes Sam 26-45 male British University Teacher +4 S1A-002 1 B yes Kate 18-25 female British Secondary Student +5 S1A-002 1 C yes Helen 18-25 female British Secondary Student +6 S1A-002 2 A yes Sam 26-45 male British University Teacher +7 S1A-002 2 B yes Vicky 18-25 female British Secondary Student +8 S1A-003 1 A yes Richard 26-45 male British University Teacher +9 S1A-003 1 B yes Celeste 18-25 female British Secondary Student +10 S1A-004 1 A yes Richard 26-45 male British University Teacher +11 S1A-004 1 B yes Adam 18-25 male British Secondary Student +12 S1A-005 1 A yes Broadbent Judith 18-25 female British Leeds "BA Linguistics, UCL" University Student +13 S1A-005 1 B yes Tollfree Laura 18-25 female British London "BA Linguistics, UCL" University Student +14 S1A-006 1 A yes Sandra 18-25 female British London University +15 S1A-006 1 B yes Andrew 18-25 male British University +16 S1A-007 1 A yes Tollfree Laura 46-65 male British London +17 S1A-007 1 B yes Tollfree Laura 46-65 female British London +18 S1A-007 1 C yes Tollfree Laura 18-25 female British London "BA Linguistics, UCL" University Student +19 S1A-007 1 D yes 46-65 male British London +20 S1A-007 1 E yes male +21 S1A-008 1 A yes Andrew 18-25 male British University +22 S1A-008 1 B yes Tollfree Laura 18-25 male British London "BA Linguistics, UCL" University Student +23 S1A-009 1 A yes Sayce Oonagh 46-65 female British London MA English University Part-time University teacher "French, Italian" "Researcher, Survey of English Usage" +24 S1A-009 1 B yes Sayce Peter 26-45 male British London Secondary Government executive +25 S1A-010 1 A yes Moore Nina 66+ female British London Secondary Welfare officer (retired) +26 S1A-010 1 B yes Moore Miranda 26-45 female British London Secondary Writer +27 S1A-011 1 A yes 26-45 female British UK South University Teacher +28 S1A-011 1 B yes Boase Sue 26-45 female British UK South University "Lecturer, researcher" "Researcher, Survey of English Usage" +29 S1A-011 1 C yes 26-45 male British UK South Training as solicitor University Trainee solicitor +30 S1A-011 2 A yes Woodford Kate 26 female British Coventry University Lexicographer "French, Spanish" +31 S1A-011 2 B yes 26-45 female British University Lexicographer +32 S1A-012 1 A yes Scales Rob 26-45 male British London University Teacher +33 S1A-012 1 B yes Boase Sue 26-45 female British UK south University "Lecturer, researcher" +34 S1A-012 1 C yes Carpenter Roger 26-45 male British London University Teacher +35 S1A-012 1 D yes King-Smith Gavin 26-45 male British London University Management consultant +36 S1A-012 1 E yes Colborn Tim 26-45 male British Amesbury University Accountant +37 S1A-013 1 A yes 26-45 male British University Researcher +38 S1A-013 1 B yes 46-65 female British Midlands Secondary Housewife +39 S1A-013 1 C yes 46-65 male British Midlands Secondary Housewife +40 S1A-013 1 D yes female British +41 S1A-013 1 E yes male British +41 S1A-013 1 F yes male British +42 S1A-014 1 A yes Tollfree Laura 18-25 female British London "BA Linguistics, UCL" University Student +43 S1A-014 1 B yes Amanda 26-45 female British University University Secretary +44 S1A-014 1 C yes Neil 18-25 male British "BSc Computer Science, UCL" University Student +45 S1A-015 1 A yes Rosta Andrew 18-25 male British Liverpool "BA English, UCL" University Student +46 S1A-015 1 B yes 18-25 female British University Student +47 S1A-016 1 A yes 26-45 male British University Researcher +48 S1A-016 1 B yes male +49 S1A-016 1 C yes male +50 S1A-016 1 D yes female +51 S1A-016 1 E yes female +53 S1A-017 1 A yes Durant Ian 27 male British UK South University Accountant +54 S1A-017 1 B yes Zara 26 female British London A-levels University Accountant Indian ethnic origin +55 S1A-017 1 C yes Tollfree Laura 18-25 female British London "BA Linguistics, UCL" University Student +57 S1A-018 1 A yes Tollfree Eleanor 20 female British London Secondary Student +58 S1A-018 1 B yes Cage Liz 20 female British London +59 S1A-018 1 C yes Debenham Simon 28 male British London University Accountant +60 S1A-019 1 A yes 18-25 female British University Student +61 S1A-019 1 B yes Richard 18-25 male British University Student +62 S1A-019 1 C yes 26-45 female British University Student +63 S1A-019 1 D yes 18-25 female British Secondary Student +64 S1A-019 1 E yes 18-25 female British Secondary Student +65 S1A-019 1 F yes 18-25 female British London UCL BA in Linguistics University Student +66 S1A-020 1 A yes male +67 S1A-020 1 B yes male +68 S1A-020 1 C yes male +69 S1A-020 1 D yes Boase Sue 26-45 female British UK South University "Lecturer, researcher" +70 S1A-021 1 A yes 26-45 male British London University Musician +71 S1A-021 1 B yes 26-45 female British Surrey/Kent University Teacher +72 S1A-021 1 C yes 26-45 male British Kent University Teacher +73 S1A-021 1 D yes 26-45 female British Surrey University Teacher +74 S1A-021 2 A yes 26-45 female British Surrey University Teacher +75 S1A-021 2 B yes 26-45 male British London University Musician +76 S1A-021 2 C yes 26-45 female British Surrey University Teacher +77 S1A-021 2 D yes 26-45 male British Kent University Teacher +78 S1A-022 1 A yes Clift Naomi 21 female British China Secondary Student Adopted in infancy; born Mauritian Chinese +79 S1A-022 1 B yes Clift Jean 61 female British Devon University Teacher of English as a Second Language +80 S1A-022 1 C yes Clift Marc 65 male British Australia Ex-British Council officer Spent most of life in UK +81 S1A-022 1 D yes Clift Rebecca 25 female British China Cambridge University Postgraduate student Adopted in infancy; born Mauritian Chinese +82 S1A-023 1 A yes 46-65 male British London Secondary Journalist +83 S1A-023 1 B yes 46-65 female British UK South Secondary Writer +84 S1A-024 1 A yes Sidney Greenbaum 46-65 male British London "MA, PhD" University Professor of English Hebrew "Director, Survey of English Usage" +85 S1A-024 1 B yes Howe James 46-65 male British University PhD Student; former civil servant +86 S1A-025 1 A yes 26-45 male British London Secondary Brother of $B +87 S1A-025 1 B yes 26-45 female British London Secondary Secretary Sister of $A +88 S1A-026 1 A yes Carpenter Roger 26-45 male British London University Teacher +89 S1A-026 1 B yes Colborn Tim 26-45 male British Amesbury University Accountant +90 S1A-026 1 C yes King-Smith Gavin 26-45 male British UK South University Management Consultant +91 S1A-026 1 D yes Scales Rob 26-45 male British London University Teacher +92 S1A-027 1 A yes Boase Sue 26-45 female British UK South University "Lecturer, researcher" +93 S1A-027 1 B yes Peppe A.H. 26-45 male British UK South University Greengrocer +94 S1A-027 1 C yes King-Smith Gavin 26-45 male British UK South University Management Consultant +95 S1A-027 1 D yes Lanner J.E. 26-45 female British UK South University Nurse +96 S1A-028 1 A yes Fred 92 male British Devon Secondary Ex-shopkeeper +97 S1A-028 1 B yes Clift Marc 65 male British Australia Ex-British Council officer Spent most of life in UK +98 S1A-028 1 C yes Clift Rebecca 25 female British China Cambridge University Postgraduate student Adopted in infancy; born Mauritian Chinese +99 S1A-028 1 D yes Clift Naomi 21 female British China Secondary Student Adopted in infancy; born Mauritian Chinese +100 S1A-028 1 E yes 80 female British Devon Secondary +102 S1A-029 1 A yes Procter Paul 46-65 male British BA University Lexicographer +103 S1A-029 1 B yes Andrew 24 male British Hammersmith BA University Computer programmer +104 S1A-029 1 C yes Andy 21 male British Nr Guildford BA University Computer programmer +105 S1A-029 1 D yes Porter Nick 22 male British Worcs MSc University Computer programmer +106 S1A-030 1 A yes male +107 S1A-030 1 B yes male +108 S1A-030 1 C yes male +109 S1A-030 1 D yes male +110 S1A-031 1 A yes Beaumann Nicola 46-65 female British London University Writer +111 S1A-031 1 B yes Boase Sue 26-45 female British UK South University "Lecturer, researcher" +112 S1A-032 1 A yes Clift Rebecca 18-25 female British University "Student, researcher" +113 S1A-032 1 B yes Clift Jean 61 female British Devon University Teacher of English as a Second Language +114 S1A-032 1 C yes Clift Marc 65 male British Australia Ex-British Council officer Spent most of life in UK +115 S1A-032 1 D yes Clift Naomi 21 female British China Secondary Student Adopted in infancy; born Mauritian Chinese +116 S1A-032 2 A yes Clift Rebecca 25 female British China University Postgraduate student Adopted in infancy; born Mauritian Chinese +117 S1A-032 2 B yes Clift Naomi 21 female British China Secondary Student Adopted in infancy; born Mauritian Chinese +118 S1A-032 2 C yes Clift Jean 61 female British Devon University Teacher of English as a Second Language +119 S1A-032 2 D yes Clift Marc 65 male British Australia Ex-British Council officer Spent most of life in UK +120 S1A-033 1 A yes Tiley Mike 26-45 male British MA University Careers counsellor +121 S1A-033 1 B yes 18-25 male British Secondary Student (of philosophy) +122 S1A-034 1 A yes 26-45 female British London University Career counsellor +123 S1A-034 1 B yes 18-25 male British Manchester Secondary Student +124 S1A-035 1 A yes 26-45 female British London University Career counsellor +125 S1A-035 1 B yes 18-25 female British Norwich Secondary Student +126 S1A-036 1 A yes Caroline 29 female British London O-Levels Secondary "Secretary, Thames Water Co." +127 S1A-036 1 B yes Alice 29 female British London O-Levels Secondary "Secretary, Consumers' Association" +128 S1A-037 1 A yes Jenny 18-25 female British London University Student +129 S1A-037 1 B yes Isobel 29 female British London University +130 S1A-038 1 A yes Danielle 21 female British Dumfries "BSc Engineering, Edinburgh University" University "PhD student, Engineering, Cambridge" +131 S1A-038 1 B yes 18-25 female British University Postgraduate student +132 S1A-038 1 C yes Moses 24 male British Portugal "BA Social Science, Canterbury" University "MPhil student, International Relations, Cambridge" Moved to UK age 5 +133 S1A-039 1 A yes Tollfree Laura 18-25 female British London BA Linguistics University "PhD student (Linguistics), Cambridge" +134 S1A-039 1 B yes Danielle 21 female British Dumfries "BSc Engineering, Edinburgh University" University "PhD student, Cambridge" +135 S1A-040 1 A yes Vicky 25 female British Sussex "Degree in History, London" University "PGCE student, Cambridge" +136 S1A-040 1 B yes Caroline 23 female British York "Degree Modern Languages, Cambridge" University "PGCE student, Cambridge; ex-EFL teacher" +137 S1A-040 1 C yes Louisa 24 female British London "Degree Modern Languages, Cambridge, PGCE" University "Teacher of Modern Languages, Cambridge" Greek +138 S1A-040 1 D yes Vanessa 22 female British Surrey "Degree English, Durham University" University "PGCE student, Cambridge" +139 S1A-040 1 E yes Brandon 25 male British Surrey "Degree, Cambridge" University Social worker +140 S1A-041 1 A yes Moses 24 male British Portugal "BA Social Science, Canterbury" University "MPhil student, International Relations, Cambridge" Moved to London age 5 +141 S1A-041 1 B yes Jim 23 male British London "Degree in Geography, Lampeter (Wales)" University "MPhil student in Glaciology, Cambridge" +142 S1A-042 1 A yes Vicky 25 female British Sussex "Degree in History, London" University "PGCE student, Cambridge" +143 S1A-042 1 B yes Caroline 23 female British York "Degree in Modern Languages, Cambridge" University "PGCE student, Cambridge; ex-EFL teacher" +144 S1A-042 1 C yes Vanessa 22 female British Surrey "Degree in English, Durham University" University "PGCE student, Cambridge" +145 S1A-043 1 A yes White Ashley 31 male British London University "Tennis coach, PhD student" +146 S1A-043 1 B yes 28 male British Manchester Secondary Musician +147 S1A-044 1 A yes 55 female British Lancashire Music degree University Singing teacher +148 S1A-044 1 B yes White Ashley 31 male British London University "Tennis coach, PhD student" +149 S1A-045 1 A yes White Ashley 31 male British London University "Tennis coach, PhD student" +150 S1A-045 1 B yes 55 female British Lancashire Music degree University Singing teacher +151 S1A-045 2 A yes 28 male British Manchester Manchester University University +152 S1A-045 2 B yes White Ashley 31 male British London University "Tennis coach, PhD student" +153 S1A-045 3 A yes White Ashley 31 male British London University "Tennis coach, PhD student" +154 S1A-045 3 B yes 28 male British Manchester Manchester University University +155 S1A-046 1 A yes Clift Rebecca 18-25 female British +156 S1A-046 1 B yes Clift Marc 65 male British +157 S1A-046 1 C yes Clift Naomi 18-25 female British +158 S1A-046 1 D yes Clift Jean 61 female British +159 S1A-047 1 A yes 26-45 male British Harrow University Computer Operator/Programmer +160 S1A-047 1 B yes 26-45 female British Harrow "Undergraduate student, UCL" Secondary Student +161 S1A-047 1 C yes 66+ female British Harrow Secondary Ex-secretary (retired) +162 S1A-048 1 A yes 26-45 female British Harrow University Antique Dealer +163 S1A-048 1 B yes 26-45 female British Harrow Secondary Nursery Nurse +164 S1A-048 1 C yes 26-45 female British Harrow "Undergraduate student, UCL" Secondary Student +165 S1A-049 1 A yes Karen 30 female British London O-Levels Secondary "Administrator, interior design company" +166 S1A-049 1 B yes Alice 29 female British London O-Levels Secondary "Secretary, Consumers' Association" +167 S1A-049 1 C yes Caroline 29 female British London O-Levels Secondary "Secretary, Thames Water Co." +168 S1A-050 1 A yes Neustein 46-65 male British London PhD University Student Counsellor +169 S1A-050 1 B yes Stella 18-25 female British Hartlepool Secondary Student +170 S1A-051 1 A yes Andersen P.A. 46-65 male British University Doctor +171 S1A-051 1 B yes 66+ female British Surrey Secondary Housewife +172 S1A-051 2 A yes Andersen P.A. 46-65 male British University Doctor +173 S1A-051 2 B yes 18-25 male British Cambridge Secondary Student +174 S1A-051 3 A yes Andersen P.A. 46-65 male British University Doctor +175 S1A-051 3 B yes 26-45 female British London Secondary Student +176 S1A-051 4 A yes Andersen P.A. 46-65 male British University Doctor +177 S1A-051 4 B yes 18-25 male British London Secondary Student +178 S1A-052 1 A yes 26-45 male British University +179 S1A-052 1 B yes 46-65 male British London Secondary Photojournalist +180 S1A-052 1 C yes Thaine Alasdair 30 male British University Photographer +181 S1A-052 2 A yes 46-65 male British London Secondary Photojournalist +182 S1A-052 2 B yes Thaine Alasdair 30 male British University Photographer +183 S1A-052 2 C yes 26-45 male British University +184 S1A-053 1 A yes 26-45 male British Shropshire University Student +185 S1A-053 1 B yes 26-45 female British Wiltshire University Student +186 S1A-053 1 C yes 46-65 male British London Secondary Computer management +187 S1A-054 1 A yes Beaumann Nicola 46-65 female British London University Writer +188 S1A-054 1 B yes Boase Sue 26-45 female British London University "Researcher, lecturer" +189 S1A-055 1 A yes Darryl 26-45 male British +190 S1A-055 1 B yes Helen 26-45 female British +191 S1A-055 1 C yes Woodford Kate 26 female British Coventry University Lexicographer "French, Spanish" +192 S1A-055 1 D yes 18-25 female British Watford University Secretary +193 S1A-055 1 E yes 26-45 male British London University Lexicographer +194 S1A-056 1 A yes 26-45 male British UK South University Teacher of EFL +195 S1A-056 1 B yes Boase Sue 26-45 female British UK South University "Lecturer, researcher" +196 S1A-056 1 C yes King-Smith Gavin 26-45 male British UK South University Management consultant +197 S1A-056 2 A yes Boase Sue 26-45 female British UK South University "Lecturer, researcher" +198 S1A-056 2 B yes 26-45 male British UK South University Teacher of EFL +199 S1A-056 2 C yes King-Smith Gavin 26-45 male British UK South University Management consultant +200 S1A-056 3 A yes Boase Sue 26-45 female British UK South University "Lecturer, researcher" +201 S1A-056 3 B yes King-Smith Gavin 26-45 male British UK South University Management consultant +202 S1A-056 3 C yes 26-45 male British UK South University Teacher of EFL +203 S1A-056 4 A yes 26-45 male British UK South University Teacher of EFL +204 S1A-056 4 B yes Boase Sue 26-45 female British UK South University "Lecturer, researcher" +205 S1A-056 4 C yes King-Smith Gavin 26-45 male British UK South University Management consultant +206 S1A-057 1 A yes 26-45 female British UK South University "Lecturer, researcher" +207 S1A-057 1 B yes 66+ male British UK South University Retired engineer Father of speaker C +208 S1A-057 1 C yes King-Smith Gavin 26-45 male British UK South University Management consultant +209 S1A-058 1 A yes Thaine Alasdair 26-45 male British +210 S1A-058 1 B yes Christopher 26-45 male British +211 S1A-058 1 C yes Cheryl 32 female British USA UK secondary education and degree University "Actress, writer" +212 S1A-058 2 A yes Christopher 26-45 male British +213 S1A-058 2 B yes Thaine Alasdair 26-45 male British +214 S1A-058 2 C yes Cheryl 32 female British USA UK secondary education and degree University "Actress, writer" +215 S1A-058 3 A yes 26-45 male British London University Engineer +216 S1A-058 3 B yes Cheryl 32 female British USA UK secondary education and degree University "Actress, writer" +217 S1A-059 1 A yes Greenberg 46-65 male British University Student counsellor +218 S1A-059 1 B yes 18-25 male British London Secondary Student +219 S1A-060 1 A yes male +220 S1A-060 1 B yes female +221 S1A-061 1 A yes Sayce Peter 26-45 male British London Secondary Government executive +222 S1A-061 1 B yes Busby Derek Charles 46-65 male British London University Government official +223 S1A-062 1 A yes Greenberg 46-65 male British University Student counsellor +224 S1A-062 1 B yes 18-25 female British Kent Secondary Student +225 S1A-063 1 A yes 26-45 male British UK south east University Doctor +226 S1A-063 1 B yes Boase Sue 26-45 female British UK south east University "Researcher, lecturer" +227 S1A-063 1 C yes King-Smith Gavin 26-45 male British UK south east University Management consultant +228 S1A-063 1 D yes 26-45 female British UK south east Secondary Nurse +229 S1A-064 1 A yes Pat 18-25 female British Secondary Student of drama +230 S1A-064 1 B yes Danny 18-25 male British Secondary Student of drama +231 S1A-064 1 C yes Patricia 18-25 female British Secondary Student of drama +232 S1A-065 1 A yes 26-45 female British London University Student +233 S1A-065 1 B yes 26-45 female British Suffolk Secondary Housewife Spent part of life in Scotland +234 S1A-065 1 C yes 46-65 male British London University Student +235 S1A-065 1 D yes 18-25 male British Herefordshire University Student +236 S1A-065 1 E yes 46-65 male British Scotland University Farmer +237 S1A-065 1 F yes 18-25 male British London University Student +238 S1A-065 1 G yes 18-25 male British Scotland University Student +239 S1A-066 1 A yes 46 male British London University Careers counsellor +240 S1A-066 1 B yes 29 female British UK south PhD University Student +241 S1A-067 1 A yes Ruskin Sheila 26-45 female British India University "Actress, trainee holistic massage practitioner" Lived most of life in Sevenoaks and London W1 +242 S1A-067 1 B yes 26-45 female British West Kent University "Writer, housewife" +243 S1A-068 1 A yes Jones Aled D. 18-25 male British Wales Secondary "Student, student union officer" +244 S1A-068 1 B yes 24 female British Nottingham Secondary Student +245 S1A-068 1 C yes Taylor Neil 24 male British Secondary Student +246 S1A-069 1 A yes Jones Aled D. 18-25 male British Wales Secondary "Student, student union officer" +247 S1A-069 1 B yes 24 female British Nottingham Secondary Student +248 S1A-069 2 A yes Jones Aled D. 18-25 male British Wales Secondary "Student, student union officer" +249 S1A-069 2 B yes 18-25 female British Midlands Chemistry student Secondary Student +250 S1A-070 1 A yes Jones Aled D. 18-25 male British Wales Secondary "Student, student union officer" +251 S1A-070 1 B yes Taylor Neil 24 male British Secondary Student +252 S1A-071 1 A yes Ruth 18-25 female +253 S1A-071 1 B yes Buckley Justin 21 male British UK south "BA English, UCL" University Student +254 S1A-071 1 C yes Mark 18-25 male British +255 S1A-071 1 D yes Laura 18-25 female British +256 S1A-072 1 A yes 26-45 female British University +257 S1A-072 1 B yes Tom 26-45 male British +258 S1A-073 1 A yes 46-65 male British South London University Industrial chemist "Also lived: Oxford, Epping area, Montpellier" +259 S1A-073 1 B yes 46-65 male British Shropshire University Opthalmic surgeon "Also lived: Isle of Wight, Plymouth, London, Kent" +260 S1A-073 1 C yes 26-45 female British Sevenoaks University "Writer, housewife" +261 S1A-073 1 D yes 26-45 female British Oxford University "Research chemist, housewife" "Also lived: St Albans, Epping" +262 S1A-074 1 A yes 21 female British London Secondary Student +263 S1A-074 1 B yes Tom 21 male British London Secondary Travel officer +264 S1A-074 1 C yes Paul 23 male British London University Travel officer +265 S1A-074 2 A yes Paul 23 male British London University Travel officer +266 S1A-074 2 B yes 22 male British London Secondary Student +267 S1A-074 3 A yes Louise 22 female British London University Travel officer +268 S1A-074 3 B yes 21 male British London Secondary Student +269 S1A-074 3 C yes 27 female British London University Travel officer +270 S1A-074 4 A yes Tom 21 male British London Secondary Travel officer +271 S1A-074 4 B yes 26-45 male British Surrey Secondary Student +272 S1A-074 4 C yes Louise 22 female British London University Travel officer +273 S1A-074 5 A yes Angela 26-45 female British University Student union officer +274 S1A-074 5 B yes Dana 18-25 female British University Student union officer +275 S1A-074 5 C yes 27 male British London University Student union officer +276 S1A-074 6 A yes Dana 18-25 female British University Student union officer +277 S1A-074 6 B yes Nick 28 male British Dorset Secondary Student +278 S1A-074 7 A yes 18-25 male British North England Secondary Student +279 S1A-074 7 B yes Dana 18-25 female British University Student union officer +280 S1A-074 7 C yes 18-25 male British University Student union officer +281 S1A-075 1 A yes 26-45 female British University +282 S1A-075 1 B yes James 26-45 male British London University Businessman Speaker is partially deaf +283 S1A-076 1 A yes 26-45 female British University +284 S1A-076 1 B yes 26-45 male British University +285 S1A-077 1 A yes Mike 26-45 male British London University Careers counsellor +286 S1A-077 1 B yes Gill 26-45 female British London University Careers counsellor +287 S1A-077 1 C yes Elizabeth 18-25 female British Kent Secondary Student +288 S1A-077 1 D yes James 18-25 male British South London Secondary Student +289 S1A-078 1 A yes 26-45 female British London University Student union officer +290 S1A-078 1 B yes 18-25 male British St Albans Secondary Student +291 S1A-078 2 A yes 26-45 male British London University Student union officer +292 S1A-078 2 B yes 26-45 female British London University Student union officer +293 S1A-078 2 C yes 18-25 female British UK south Secondary Student +294 S1A-078 3 A yes 26-45 female British London University Student union officer +295 S1A-078 3 B yes 18-25 male British Oxford Secondary Student +296 S1A-078 4 A yes 26-45 male British London University Student union officer +297 S1A-078 4 B yes 26-45 female British London University Student union officer +298 S1A-078 4 C yes 18-25 female British London Secondary Student +299 S1A-079 1 A yes 26-45 female British London University Student union officer +300 S1A-079 1 B yes Tony 26-45 male British London University Student union officer +301 S1A-079 1 C yes 26-45 female British UK south "Degree, UCL" University Student +302 S1A-080 1 A yes Jenny 18-25 female British London University +303 S1A-080 1 B yes Isobel 26-45 female British Croydon University +304 S1A-081 1 A yes White Ashley 31 male British London University "Tennis coach, PhD student" +305 S1A-081 1 B yes Caroline 29 female British London O-Levels Secondary "Secretary, Thames Water Co." +306 S1A-082 1 A yes 26-45 female British London University Lecturer +307 S1A-082 1 B yes 18-25 male British Southampton Secondary Student +308 S1A-082 1 C yes 18-25 female British Secondary Student +309 S1A-083 1 A yes Paquita 44 female British South London O-Levels Secondary "Tennis coach, guitarist" +310 S1A-083 1 B yes Sandra 46-65 female British Spain O-Levels Secondary Flamenco dancing teacher Father: Spanish; Mother: Gipsy. In UK since child +311 S1A-084 1 A yes Buckley Justin 21 male British UK south "English degree, UCL" University "Researcher, Survey of English Usage" +312 S1A-084 1 B yes Scott Kate 18-25 female British London "Undergraduate in English, UCL" Secondary Student +313 S1A-084 1 C yes 18-25 female British North England "Undergraduate in English, UCL" Secondary Student +314 S1A-085 1 A yes 18-25 male British London Secondary Student +315 S1A-085 1 B yes Scott Kate 18-25 female British London "Undergraduate in English, UCL" Secondary Student +316 S1A-086 1 A yes female +317 S1A-086 1 B yes Boase Sue 26-45 female British UK South University "Lecturer, researcher" +318 S1A-086 1 C yes female +319 S1A-087 1 A yes Dytham 46-65 male British UK south University Dentist +320 S1A-087 1 B yes 26-45 male British UK south University Physicist +321 S1A-087 2 A yes Dytham 46-65 male British UK south University Dentist +322 S1A-087 2 B yes 18-25 male British London "Undergraduate student, UCL" Secondary Student +323 S1A-088 1 A yes Dytham 46-65 male British UK south University Dentist +324 S1A-088 1 B yes 26-45 male British UK south University Physicist +325 S1A-088 1 C yes 26-45 female British University Dental Assistant +326 S1A-089 1 A yes Dytham 46-65 male British UK south University Dentist +327 S1A-089 1 B yes 26-45 male British UK south University Physicist +328 S1A-089 2 A yes Andersen P.A. 46-65 male British University Doctor +329 S1A-089 2 B yes 18-25 female British London "Undergraduate student, UCL" Secondary Student +330 S1A-089 3 A yes Andersen P.A. 46-65 male British University Doctor +331 S1A-089 3 B yes 26-45 female British University "Student, midwife" +332 S1A-089 4 A yes Andersen P.A. 46-65 male British University Doctor +333 S1A-089 4 B yes 18-25 female British North England "Undergraduate student, UCL" Secondary Student +334 S1A-090 1 A yes Billy 18-25 male British "Undergraduate student, UCL" Secondary Student +335 S1A-090 1 B yes Maureen 46-65 female British Glasgow "Undergraduate student, UCL" Secondary Student +336 S1A-090 1 C yes Caroline 46-65 female British London "Undergraduate student, UCL" Secondary Student +337 S1A-090 1 D yes Joan 66+ female British London "Undergraduate student, UCL" Secondary "Student, retired nurse" +338 S1A-090 2 A yes 18-25 female British London "Undergraduate student, UCL" Secondary Student +339 S1A-090 2 B yes Maureen 46-65 female British Glasgow "Undergraduate student, UCL" Secondary Student +340 S1A-090 2 C yes 18-25 female British London? "Undergraduate student, UCL" Secondary Student +341 S1A-091 1 A yes Isobel 29 female British Spain University +342 S1A-091 1 B yes Jenny 26-45 female British London Secondary Student +343 S1A-092 1 A yes Isobel 29 female British Spain University +344 S1A-092 1 B yes Mason David 27 male British Surrey University +345 S1A-093 1 A yes Tollfree Laura 18-25 female British London "Degree in Linguistics, UCL" University Student +346 S1A-093 1 B yes Tollfree Eleanor 20 female British London Secondary Student +347 S1A-094 1 A yes Wagner Mary 66+ female British UK south Secondary Retired +348 S1A-094 1 B yes Tollfree Laura 18-25 female British London "Degree in Linguistics, UCL" University Student +349 S1A-095 1 A yes Debenham Giles 25 male British London +350 S1A-095 1 B yes Debenham Simon 28 male British London University Accountant +351 S1A-095 2 A yes Debenham Susan 48 female British London +352 S1A-095 2 B yes Debenham Simon 28 male British London University Accountant +353 S1A-095 3 A yes Debenham Giles 25 male British London +354 S1A-095 3 B yes Debenham Simon 28 male British London University Accountant +355 S1A-095 4 A yes Debenham Susan 48 female British London +356 S1A-095 4 B yes Debenham Simon 28 male British London University Accountant +357 S1A-096 1 A yes Bill 26-45 male British Secondary "Poet, unemployed cleaner" +358 S1A-096 1 B yes Cheryl 32 female British USA BA Development Psychology University "Actress, poet" +359 S1A-097 1 A yes Rosta Andrew 18-25 male British Liverpool "UCL, Linguistics" University "PhD student, Linguistics" "Researcher, Survey of English Usage" +360 S1A-097 1 B yes 18-25 male British University Student +361 S1A-098 1 A yes Woodford Kate 26 female British Coventry University Lexicographer "French, Spanish" +362 S1A-098 1 B yes Howells Sian 25 female British "Port Talbot, Wales" University Personal Assistant in German bank "French, German" +363 S1A-098 2 A yes Dowell John 26-45 male British London PhD University Employed at UCL +364 S1A-098 2 B yes Woodford Kate 26 female British Coventry University Lexicographer "French, Spanish" +365 S1A-098 3 A yes Woodford Kate 26 female British Coventry University Lexicographer "French, Spanish" +366 S1A-098 3 B yes Peters Roz 27 female British London University Civil servant +367 S1A-099 1 A yes 18-25 female British South Wales University Nurse +368 S1A-099 1 B yes Buckley Justin 21 male British UK South "BA English, UCL" University "Student, researcher" "Researcher, Survey of English Usage" +369 S1A-099 2 A yes 18-25 female British London B-Techs University Shop assistant +370 S1A-099 2 B yes Buckley Justin 21 male British UK South "BA English, UCL" University "Student, researcher" "Researcher, Survey of English Usage" +371 S1A-100 1 A yes Gibney Marie 46-65 female British Liverpool University University secretary "Secretary, Survey of English Usage" +372 S1A-100 1 B yes 26-45 male University Lawyer +373 S1A-100 2 A yes Williamson Valerie 26-45 female British University University secretary +374 S1A-100 2 B yes Gibney Marie 46-65 female British Liverpool University University secretary "Secretary, Survey of English Usage" +375 S1A-100 3 A yes Sean 26-45 male British Midlands University "Artist, journalist" +376 S1A-100 3 B yes Buckley Justin 21 male British UK South "BA English, UCL" University "Student, researcher" "Researcher, Survey of English Usage" +377 S1B-001 1 A yes Tutor Weitzman Michael 46-65 male British London University University Lecturer Hebrew +378 S1B-001 1 B yes Turner Mary 46-65 female British London Secondary Student Hebrew +379 S1B-001 1 C yes Smith John 18-25 male British London Secondary +380 S1B-002 1 A yes Tutor Smith Neil 46-65 male British "MA, PhD" University Professor of Linguistics +381 S1B-002 1 B yes Susan 18-25 female British Norwich Secondary Student +382 S1B-002 1 C yes Vicky 18-25 female British London Secondary Student +383 S1B-002 1 D yes Phillip 18-25 male British Croxley Secondary Student +384 S1B-002 1 E yes Vincent 18-25 male British London Secondary Student +385 S1B-002 1 F yes Jeremy 18-25 male British Midlands Secondary Student +386 S1B-002 1 G yes Georgina 18-25 female British London Secondary Student +387 S1B-002 1 H yes Ilianna 18-25 female British Secondary Student +388 S1B-002 1 I yes Jason 18-25 male British Secondary Student +389 S1B-002 1 J yes Jo 18-25 female British Secondary Student +390 S1B-002 1 K yes Jason 18-25 male British Secondary Student +391 S1B-002 1 L yes Thomas 18-25 male British Secondary Student +392 S1B-003 1 A yes Tutor Houghton George 26-45 male British Merseyside "MA, PhD" University University Lecturer +393 S1B-003 1 B yes Colin 23 male British London Secondary Student +394 S1B-003 1 C yes 18-25 male British Secondary Student +395 S1B-003 1 D yes Jill 18-25 female British Watford Secondary Student +396 S1B-003 1 E yes Melanie 18-25 female British London Secondary Student +397 S1B-004 1 A yes Tutor Fuller J.H. 46-65 male British University Medical doctor and lectuer +398 S1B-004 1 B yes 18-25 male British +399 S1B-004 1 C yes 18-25 female British +400 S1B-004 1 D yes 18-25 male British +401 S1B-004 1 E yes 18-25 male British +402 S1B-004 1 F yes 18-25 female British +403 S1B-004 1 G yes 18-25 male British +404 S1B-004 1 H yes 18-25 female British +405 S1B-004 1 I yes 18-25 male British +406 S1B-004 1 J yes 18-25 male British +407 S1B-004 1 K yes 18-25 male British +408 S1B-004 1 L yes 18-25 male British +409 S1B-004 1 M yes 18-25 male British +410 S1B-004 1 N yes 18-25 male British +411 S1B-004 1 O yes 18-25 male British +412 S1B-004 1 P yes 18-25 male British +413 S1B-005 1 A yes Tutor Stokes B. 46-65 male British "MA, PhD" University University Lecturer +414 S1B-005 1 B yes Michael 18-25 male British South London Secondary Student +415 S1B-005 1 C yes Rebecca 18-25 female British London Secondary Student +416 S1B-005 1 D yes Joanna 18-25 female British Oxfordshire Secondary Student +417 S1B-005 1 E yes Michael 18-25 male British UK south Secondary Student +418 S1B-006 1 A yes Tutor Hall 46-65 male British PhD University University Lecturer +419 S1B-006 1 B yes Jackie 18-25 female British London Secondary student +420 S1B-006 1 C yes Susan 18-25 female British Secondary student +421 S1B-006 1 D yes Roger 18-25 male British Secondary student +422 S1B-007 1 A yes Tutor Agnew Clive 26-45 male British London PhD University Lecturer in Geography +423 S1B-007 1 B yes Barbara 18-25 female British London Secondary Student +424 S1B-007 1 C yes Colin 18-25 male British Essex Secondary Student +425 S1B-007 1 D yes James 18-25 male British London Secondary Student +426 S1B-007 1 E yes Duncan 18-25 male British London Secondary Student +427 S1B-008 1 A yes Tutor 34 male British MA in Fine Art University University Tutor +428 S1B-008 1 B yes David 23 male British London Secondary Student +429 S1B-008 1 C yes Miriam 18-25 female British Scotland Secondary Student +430 S1B-008 1 D yes Anne-Marie 18-25 female Secondary Student +431 S1B-008 2 A yes male University Lecturer +432 S1B-008 2 B yes male +433 S1B-008 2 C yes male +434 S1B-008 2 D yes female +435 S1B-008 2 E yes female +436 S1B-008 3 A yes male University Lecturer +437 S1B-008 3 B yes female +438 S1B-008 3 C yes female +439 S1B-008 3 D yes male +440 S1B-008 3 E yes male +441 S1B-009 1 A yes Tutor Fitzgerald M. 26-45 female British London PhD Anatomy University University lecturer +442 S1B-009 1 B yes 18-25 male British London Secondary Student +443 S1B-009 1 C yes 18-25 male British Secondary Student +444 S1B-009 1 D yes 18-25 male British Secondary Student +445 S1B-010 1 A yes Hobsley Michael 46-65 male British University Professor of Surgery +446 S1B-010 1 B yes 18-25 female British Secondary Student +447 S1B-010 1 C yes 18-25 male British Secondary Student +448 S1B-010 1 D yes 18-25 male British Secondary Student +449 S1B-010 1 E yes 18-25 female British Secondary Student +450 S1B-011 1 A yes Tutor Austin R.C. 46-65 male British UK south University Lecturer in Public Law +451 S1B-011 1 B yes 18-25 male British London Secondary Student +452 S1B-011 1 C yes 18-25 female British London Secondary Student +453 S1B-011 1 D yes 18-25 male British Sussex Secondary Student +454 S1B-011 1 E yes 18-25 male British London Secondary Student +455 S1B-011 1 F yes 18-25 female British London Secondary Student +456 S1B-011 1 G yes 18-25 male British London Secondary Student +457 S1B-011 1 H yes 18-25 female British UK south Secondary Student +458 S1B-011 1 I yes 18-25 male British Secondary Student +459 S1B-012 1 A yes Tollfree Laura 18-25 female British London BA Linguistics University Student (PhD) +460 S1B-012 1 B yes Tutor April 28 female British Edinburgh PhD Phonology University University Lecturer +461 S1B-013 1 A yes Tutor Stephenson William 46-65 male British PhD Mathematics University University Lecturer +462 S1B-013 1 B yes 18-25 male British London Secondary Student +463 S1B-013 1 C yes 18-25 female British Kent Secondary Student +464 S1B-013 1 D yes 18-25 female British London Secondary Student +465 S1B-013 1 E yes 18-25 female British Essex Secondary Student +466 S1B-014 1 A yes Tutor Bindman David 46-65 male British PhD University Professor of the History of Art +467 S1B-014 1 B yes 18-25 male British London Secondary Student +468 S1B-014 1 C yes 18-25 female British London Secondary Student +469 S1B-015 1 A yes Tutor Wolf J. 26-45 male British London PhD University University Lecturer +470 S1B-015 1 B yes John 18-25 male British Birmingham Secondary Student +471 S1B-015 1 C yes Rebecca 18-25 female British London (south) Secondary Student +472 S1B-016 1 A yes Tutor Houghton George 26-45 male British Merseyside PhD University University Lecturer +473 S1B-016 1 B yes 18-25 male British London Secondary Student +474 S1B-016 1 C yes Matt 18-25 male British Kent Secondary Student +475 S1B-016 1 D yes Esther 18-25 female British London Secondary Student +476 S1B-017 1 A yes Tutor Orton Clive 26-45 male British London University Lecturer in Archaeology +477 S1B-017 1 B yes 46-65 male British London Secondary Student +478 S1B-017 1 C yes 18-25 female British Secondary Student +479 S1B-017 1 D yes 18-25 male British London south Secondary Student +480 S1B-017 1 E yes 18-25 female British London Secondary Student +481 S1B-018 1 A yes 24 male British Nottingham Secondary Student +482 S1B-018 1 B yes Tutor 46-65 male British London University University Lecturer +483 S1B-018 1 C yes 25 male British London Secondary Student +484 S1B-018 1 D yes Tutor 34 male British South east UK University University tutor +485 S1B-018 1 E yes Chris 18-25 male British London (south) Secondary Student +486 S1B-018 1 F yes 18-25 male British Secondary Student +487 S1B-019 1 A yes Tutor Easterling P. 46-65 female British Phd University Professor of Greek & Latin +488 S1B-019 1 B yes 18-25 female British Secondary Student +489 S1B-019 1 C yes Michael 18-25 male British Midlands Secondary Student +490 S1B-019 1 D yes 18-25 female British Secondary Student +491 S1B-019 1 E yes Eleanor 18-25 female British London Secondary Student +492 S1B-020 1 A yes Tutor Titchener-Hooker M. 26-45 male British PhD University University Lecturer in Biochemistry +493 S1B-020 1 B yes Victor 18-25 male British London Secondary Student +494 S1B-020 1 C yes 18-25 male British London Secondary Student +495 S1B-021 1 A yes Chairman Morgan Cliff 61 male British Wales Grammar School Secondary "Broadcaster, ex-rugby player" Welsh +496 S1B-021 1 B yes Heyhoe-Flint Rachael 52 female British Wolverhampton Wolverhampton High School; Dartford College of Physical Education University "Ex-cricketer, broadcaster, writer" None +497 S1B-021 1 C yes Wooller Wilfred 66+ male British "Colwyn Bay, Wales" Cambridge (MA) University Justice of the Peace Some French +498 S1B-021 2 A yes Chairman Neil Andrew 42 male British "Paisley, Scotland" Paisley Grammar School; Glasgow University (MA) University "Editor, The Sunday Times" +499 S1B-021 2 B yes Soutier Janank 26-45 male British University Economist +500 S1B-021 2 C yes Ginane Jackie 26-45 female British University Economist +501 S1B-022 1 A yes Chairman male British +502 S1B-022 1 B yes Bragg Melvyn 52 male British Cumbria "Wadham College, Oxford" University "Broadcaster, novelist" +503 S1B-022 1 C yes Mortimer John 58 male British London Harrow School; Brasenose Coll. Oxford; Inner Temple University "Barrister, novelist, playwright" "QC, 1966" +504 S1B-022 1 D yes Jackson Glenda 55 female British Birkenhead "West Kirby Grammar School; Royal Academy of Dramatic Arts, London" University "Political candidate, actress" +505 S1B-022 1 E yes Renton Tim 59 male British "Eton College; Magdalen College, Oxford (MA History)" University Politician +506 S1B-022 1 F yes Fielderson Russell male British +507 S1B-023 1 A yes Chairman Baker Richard 66 male British "Willesden, London" "Peterhouse, Cambridge" University "Broadcaster, ex-actor" +508 S1B-023 1 B yes Woolfenden Guy 54 male British "Westminster Abbey Choir School; Christ's College, Cambridge (MA); Guildhall School of Music (LGSM)" University Orchestra conductor +509 S1B-023 1 C yes Nunn Trevor 51 male British Ipswich "Downing College, Cambridge (BA)" University "Associate Director, The Royal Shakespeare Company" +510 S1B-024 1 A yes Chairman Bragg Melvyn 52 male British Cumbria "Wadham College, Oxford (MA)" University "Broadcaster, novelist" +511 S1B-024 1 B yes Lawson Mark 26-45 male British London UCL (BA English) University Journalist +512 S1B-024 1 C yes Mortimer John 58 male British London Harrow School; Brasenose Coll. Oxford; Inner Temple University "Barrister, novelist, playwright" "QC, 1966" +513 S1B-024 1 D yes Couper Heather 42 female British Middlesex Grammar Sch; Univ. of Leicester (BSc Physics & Astronomy) University Prof. of Astronomy; science broadcaster/writer "FRAS, 1970" "French, Latin, German" +514 S1B-024 1 E yes Davies Peter 26-45 male British "Stroud, Glos." University "French, some German" +515 S1B-024 1 F yes Dobbs Michael 46-65 male British London University "Politician, novelist" +516 S1B-025 1 A yes Chairman Jones Clay 66+ male British "Cardigan, Wales" University Broadcaster Welsh +517 S1B-025 1 B yes Ledward Daphne 26-45 female British Bradford Secondary Horticulturalist "French, Latin" +518 S1B-025 1 C yes Downham Fred 46-65 male British "Galgate, Lancaster" Secondary Horticulturalist None +519 S1B-025 1 D yes Buczacki Stefan 26-45 male British Derby PhD University Horticulturalist "French, Russian" +520 S1B-026 1 A yes Chairman Purves Libby 26-45 female British London "Oxford University, English 1971" University Broadcaster French +521 S1B-026 1 B yes Horrocks Stella 46-65 female British Bradford Teachers' Training College University Ex-teacher None +522 S1B-026 1 C yes Hayes Brian 46-65 male British "Perth, Australia" University Broadcaster +523 S1B-026 1 D yes Dickens Monica 66+ female British London "St Paul's School, Hammersmith, London" Secondary Novelist +524 S1B-026 1 E yes Pheloung Barrington 26-45 male British University "Musician, composer" +525 S1B-027 1 A yes Chairman Sissons Peter 49 male British Liverpool Oxford University (MA) University Broadcaster +526 S1B-027 1 B yes Clarke Kenneth 51 male British Nottingham "Nottingham High School; Gonville & Caius College, Cambridge (BA, LLB)" University Politician +527 S1B-027 1 C yes Hattersley Roy 59 male British Sheffield Sheffield Grammar School; Hull University University "Politician, journalist" +528 S1B-027 1 D yes Ashdown Paddy 41 male British India Bedfordshire Public School; Hong Kong University University "Politician, ex-soldier" Chinese Moved to Britain aged 4 +529 S1B-027 1 E yes Sheppard David 62 male British Cambridge (MA); Theological College University Bishop of Liverpool +530 S1B-028 1 A yes Chairman MacIntyre Ian 60 male British Kincardineshire "Cambridge (MA); College of Europe, Bruges" University Broadcaster "French, Norwegian, Russian, Italian" +531 S1B-028 1 B yes Sacks Jonathan 43 male British London "Cambridge (MA); Oxford (PhD); Jews' College, London" University Chief Rabbi +532 S1B-028 1 C yes Halsey A.H. 68 male British Kettering "London School of Economics (BSC Econ, PhD), MA Oxon" University "Professorial Fellow, Nuffield College, Oxford" Former Professor of Social & Admin. Studies +533 S1B-028 1 D yes McDade John 26-45 male British Glasgow University Clergyman +534 S1B-028 1 E yes Harrison Anne 46-65 female British +535 S1B-029 1 A yes Hannan Patrick 46-65 male British "Glamorgan, Wales" University Broadcaster +536 S1B-029 1 B yes Parris Matthew 42 male British South Africa "Waterford School, Swaziland; Cambridge (BA); Yale University" University "Journalist, ex-politician" Spanish +537 S1B-029 1 C yes Thomas Daffyd Elis 45 male British Wales University College North Wales University Politician; Ex-tutor in Celtic Studies "Ex-lecturer in English, Univ. Coll. North Wales" +538 S1B-029 1 D yes Hawkes Terence 46-65 male British University Professor of English +539 S1B-030 1 A yes Chairman Buerk Michael 45 male British Solihull School Secondary "Broadcaster, journalist" +540 S1B-030 1 B yes Dawson Judith 26-45 female British +541 S1B-030 1 C yes Daley Janet 46-65 female USA University Journalist +542 S1B-030 1 D yes Scruton Roger 47 male British "Cambridge (MA, PhD)" University "Professor of Aesthetics, Birkbeck College, London" +543 S1B-030 1 E yes Amphlett Sue 26-45 female British +544 S1B-030 1 F yes Pearce Edward 52 male British Darlington Grammar School; Oxford (MA); University of Stockholm University "Political commentator, writer" +545 S1B-031 1 A yes Chairman Buerk Michael 45 male British Solihull School Secondary "Broadcaster, journalist" +546 S1B-031 1 B yes Scruton Roger 47 male British "Cambridge (MA, PhD)" University "Professor of Aesthetics, Birkbeck College, London" +547 S1B-031 1 C yes Pearce Edward 52 male British Darlington Grammar School; Oxford (MA); University of Stockholm University "Political commentator, writer" +548 S1B-031 1 D yes Daley Janet 26-45 female USA University Journalist +549 S1B-031 1 E yes Farrar-Hockley Gen. Sir Anthony 67 male British Exeter School Secondary "British Army General, military historian, writer" +550 S1B-031 1 F yes Foot Paul 54 male British Journalist +551 S1B-032 1 A yes Baker Richard 66 male British "Willesden, London" "Peterhouse, Cambridge" University "Broadcaster, ex-actor" +552 S1B-032 1 B yes Handley Vernon 61 male British London "Enfield School; Balliol College, Oxford; Guildhall School of Music" University "Conductor, Royal Liverpool Philharmonic Orchestra" +553 S1B-032 1 C yes Thomson Bryden 46-65 male British "Ayr, Scotland" "Ayr Academy; Royal Scottish Academy of Music; Staatliche Hochschule fur Musik, Hamburg" University Composer "Fellow, Royal Scottish Acad. of Music & Drama" German +554 S1B-033 1 A yes Chairman Northam Gerry 26-45 male British London University Broadcaster +555 S1B-033 1 B yes Wheeler Sir John 51 male British Suffolk "Staff College, Wakefield" University Politician +556 S1B-033 1 C yes Owen David 46-65 male British North Wales University "President, Association of Chief Police Officers; ex-detective" +557 S1B-033 1 D yes Hattersley Roy 59 male British Sheffield Sheffield Grammar School; Hull University University Politician +558 S1B-033 1 E yes McClelland Robert 26-45 male British Politician +559 S1B-033 1 F yes Alderson John 46-65 male British University "Honorary Research Fellow, Exeter University; ex-Chief Constable" +560 S1B-033 1 G yes Puddephatt Andrew 41 male British "Sidney Sussex College, Cambridge (BA 1971)" University "General Secretary, National Council for Civil Liberties" Former teacher and computer programmer +561 S1B-034 1 A yes Chairman Dimbleby David 53 male British London Charterhouse School; Oxford (MA); University of Paris University Broadcaster +562 S1B-034 1 B yes Thomson Ken 46-65 male British "Leader, Nottingham County Council" +563 S1B-034 1 C yes Bradbury 46-65 male British Nottingham County Councillor +564 S1B-034 1 D yes 26-45 male British +565 S1B-034 1 E yes Higgins Bertha 46-65 female British Nottingham University County Councillor +566 S1B-034 1 F yes Morton David 46-65 male British County Councillor +567 S1B-034 1 G yes Travis Tony 26-45 male British County Councillor +568 S1B-034 1 H yes Hodge Margaret 46-65 female British County Councillor +569 S1B-034 1 I yes Watson 46-65 male British County Councillor +570 S1B-034 1 J yes Braver Brandon 46-65 male British County Councillor +571 S1B-034 1 K yes 46-65 male British Scotland County Councillor +572 S1B-034 1 L yes Wendt Robin 46-65 male British +573 S1B-035 1 A yes Chairman Dimbleby Jonathan 47 male British London UCL (BA Philosophy) University Broadcaster +574 S1B-035 1 B yes Sawyer Tom 46-65 male British Trade Unionist +575 S1B-035 1 C yes Rifkind Malcolm 45 male British Scotland "Edinburgh University (LLB, MSc)" University Politician "Lectured at University of Rhodesia, 1967-8" +576 S1B-035 1 D yes Wilkinson Paul 54 male British Wales "University College Swansea; University of Wales (BA History & Politics, MA)" University Professor of International Relations +577 S1B-036 1 A yes Chairman Naughtie James 40 male British Scotland Grammar School; Aberdeen University; Syracuse University University Broadcaster +578 S1B-036 1 B yes Wallace William 50 male British "King's College, Cambridge; Nuffield College, Oxford; Cornell University (PhD, 1968)" University "Sen. Research Fellow in European Studies, Oxford" +579 S1B-036 1 C yes Robertson George 45 male British "Dunoon, Scotland" "Dunoon Grammar School; University of Dundee (MA Hons, 1968)" University Politician +580 S1B-036 1 D yes Kaldor Mary 46-65 female British University "Sen. Fellow, Science Policy Research Unit, Sussex" +581 S1B-036 1 E yes Patten John 46 male British London "Wimbledon College; Sidney Sussex College, Cambridge (PhD 1972)" University Politician Former university lecturer +582 S1B-037 1 A yes Chairman Hewison Robert 46-65 male British University Broadcaster +583 S1B-037 1 B yes Aslet Clive 36 male British London "Peterhouse, Cambridge" University "Deputy Editor, Country Life" +584 S1B-037 1 C yes Legge Rodney male British +585 S1B-037 1 D yes Gourlay Sir Simon 57 male British Winchester School; Royal Agricultural College University "President, National Farmers' Union" +586 S1B-038 1 A yes male British Military Analyst +587 S1B-038 1 B yes Chairman Dimbleby Jonathan 47 male British London UCL (BA Philosophy) University Broadcaster +588 S1B-038 1 C yes Groves Eric male British Naval specialist +589 S1B-039 1 A yes Chairman Neil Andrew 42 male British "Paisley, Scotland" Grammar School; University of Glasgow University "Journalist, Editor, `The Sunday Times'" +590 S1B-039 1 B yes McIntyre Donald 26-45 male British University Journalist +591 S1B-039 1 C yes Campbell Alastair 26-45 male British University Journalist +592 S1B-040 1 A yes Chairman male British +593 S1B-040 1 B yes Haines Joe 63 male British Rotherhithe Secondary Journalist Former Press Officer to the Prime Minister +594 S1B-040 1 C yes Pimlott Ben 46 male British London "Rokeby School, Wimbledon; Marlborough Coll.; Worcester Coll.; Oxford (MA, BPhil); Newcastle (PhD)" University Professor of Politics & Contemporary History +595 S1B-040 1 D yes Jenkins Roy 71 male British Wales "Abersychan Grammar School; University College Cardiff; Balliol College, Oxford" University Politician +596 S1B-041 1 A yes Interviewer Nicholson Mavis 61 female British Wales University Broadcaster +597 S1B-041 1 B yes Interviewee Runcie Robert 66 male British London Merchant Taylor's School; Oxford; Cambridge University Former Archbishop of Canterbury +598 S1B-042 1 A yes Interviewer Aspel Michael 57 male British London London University Broadcaster +599 S1B-042 1 B yes Interviewee Laurie Hugh 26-45 male British UK south Eton; Cambridge (Archaeology) University "Comedian, actor" +600 S1B-042 2 A yes Interviewer Morley Sheridan 46-65 male British Ascot University Broadcaster French +601 S1B-042 2 B yes Interviewee Mortimer John 58 male British London Harrow School; Brasenose Coll. Oxford; Inner Temple University "Barrister, novelist, playwright" "QC, 1966" +602 S1B-043 1 A yes Interviewer Dimbleby Jonathan 47 male British London UCL (BA Philosophy) University Broadcaster +603 S1B-043 1 B yes Interviewee Major John 47 male British London Secondary "Politician, accountant" +604 S1B-044 1 A yes Interviewer Allen Paul 26-45 male British University Broadcaster +605 S1B-044 1 B yes Interviewee Walker Lynn 26-45 female British Edinburgh University Critic None +606 S1B-044 2 A yes Interviewer Allen Paul 26-45 male British University Broadcaster +607 S1B-044 2 B yes Interviewee Tomalin Claire 58 female British Hitchin Grammar School; Cambridge (MA) University "Novelist, biographer" +608 S1B-044 3 A yes Interviewer Watts Geoff male British Broadcaster +609 S1B-044 3 B yes Interviewee Bird Anne 26-45 female British Nurse +610 S1B-045 1 A yes Interviewer Andrews Nigel 26-45 male British Broadcaster +611 S1B-045 1 B yes Interviewee Jarman Derek 49 male British London "King's College, London; Slade School of Art" University "Painter, film director" +612 S1B-046 1 A yes Interviewer Lawley Sue 45 female British Worcestershire Bristol University (BA Modern Languages) University Broadcaster +613 S1B-046 1 B yes Interviewee Byatt A.S. 55 female British Sheffield "Cambridge; Bryn Mawr College, Pa., USA; Somerville Coll., Oxford" University Novelist Former lecturer in English +614 S1B-047 1 A yes Interviewer MacIntyre Ian 60 male British Kincardineshire "Prescot Grammar School; St John's College, Cambridge; College of Europe, Bruges" University Broadcaster "French, Norwegian, Russian, Italian" +615 S1B-047 1 B yes Interviewee Sacks Jonathan 43 male British "Cambridge (MA); Oxford (PhD); Jews' College, London" University Chief Rabbi +616 S1B-048 1 A yes Interviewer Forde Nigel 26-45 male British Broadcaster +617 S1B-048 1 B yes Interviewee Stewart Mary 75 female British Cumberland "Skellfield School, Ripon, Yorks; Durham University" University Novelist Former lecturer in English +618 S1B-049 1 A yes Interviewer Cuffe Jenny 26-45 female British London University Broadcaster "French, Spanish, Italian" +619 S1B-049 1 B yes Interviewee Mottley Shiela 46-65 female British Manchester Secondary None +620 S1B-050 1 A yes Interviewer Billington Michael 52 male British Warwickshire Oxford (BA) University "Drama critic, journalist" +621 S1B-050 1 B yes Interviewee Brickman Mark male British +622 S1B-051 1 A yes Summerson Hugo 41 male British Cirencester Agricultural College University "Politician, surveyor" +623 S1B-051 1 B yes Battle John 40 male British Leeds "Upholland College, Leeds" University Politician Trained for R.C. Church +624 S1B-051 1 C yes Speaker of the House Dean Sir Paul 67 male British "Ellesmere College, Shropshire; Exeter College, Oxford" University "Deputy Speaker, House of Commons; businessman" +625 S1B-051 1 D yes Skinner Denis 58 male British Sheffield "Sheffield University; Ruskin College, Oxford" University "Politician, miner" +626 S1B-051 1 E yes Rogers Allan 59 male British Wales University College Swansea (BSc Geology) University "Politician, geologist" "Worked in USA, Canada, Australia, 1956-63" +627 S1B-051 1 F yes Holt Richard 60 male British London Wembley Technical College University Politician +628 S1B-051 1 G yes Boyes Roland 54 male British "Politician, social services director" +629 S1B-051 1 H yes Mahon Alice 54 female British Halifax Bradford University University "Politician, lecturer" +630 S1B-051 1 I yes Livingstone Ken 46 male British London Fawcett College of Education University "Politician, lab technician" +631 S1B-052 1 A yes Speaker of the House Weatherill Bernard 71 male British Malvern College Secondary Speaker of the House of Commons +632 S1B-052 1 B yes Clark William 74 male British London Secondary "Politician, accountant" +633 S1B-052 1 C yes Major John 47 male British London Secondary Politician +634 S1B-052 1 D yes Beith Alan 47 male British Berwick "King's School, Macclesfield; Balliol College Oxf." University "Politician, lecturer" +635 S1B-052 1 E yes Higgins Terence 63 male British Dulwich Cambridge; Yale University "Politician, economist" +636 S1B-052 1 F yes Sheldon Robert 68 male British Burnley Technical College; London University University "Politician, engineer" +637 S1B-052 1 G yes Wardle Charles 62 male British Tunbridge Wells "Lincoln Coll, Oxford; Harvard Business School" University Politician +638 S1B-052 1 H yes Radice Giles 55 male British "Magdalen College, Oxford; LSE" University "Politician, writer" +639 S1B-052 1 I yes Stewart Ian 56 male British Haileybury "Jesus College, Cambridge (MA, LittD (1978))" University Politician +640 S1B-052 1 J yes Smith Tim 44 male British "Harrow School; St Peter's College, Oxford (MA)" University Politician FCA +641 S1B-052 1 K yes Leadbetter Ted 72 male British Teacher Training College University "Politician, teacher" +642 S1B-052 1 L yes Nelson Anthony 43 male British Harrow; Christ's College Cambridge University "Politician, banker" +643 S1B-052 1 M yes Fraser John 57 male British London "Grammar School, Chelsea; Loughborough Univ." University "Politician, solicitor" +644 S1B-052 1 N yes Budgen Nicholson 54 male British Oxford; Cambridge University "Politician, barrister" +645 S1B-052 1 O yes Salmond Alex 37 male British Scotland St Andrew's University "Politician, economist" +646 S1B-053 1 A yes Ridley Nicholas 62 male British Eton; Oxford University "Politician, engineer" +647 S1B-053 1 B yes Thatcher Margaret 65 female British Grantham Oxford; Lincoln's Inn University Politician +648 S1B-053 1 C yes Speaker of the House Weatherill Bernard 71 male British Malvern College University Speaker of the House of Commons +649 S1B-053 1 D yes Ashdown Paddy 41 male British India Bedfordshire Public School; Hong Kong University University "Politician, ex-soldier" Chinese Moved to Britain aged 4 +650 S1B-053 1 E yes Squire Robin 47 male British London "Tiffin School, Kingston-upon Thames; Accountancy training" University "Politician, chartered accountant" FCA +651 S1B-053 1 F yes Lamond James 63 male British Scotland Burrelton School Secondary "Politician, engineering draughtsman" +652 S1B-053 1 G yes Tebbit Norman 60 male British London Edmonton County Grammar School Secondary "Politician, businessman" +653 S1B-053 1 H yes Norris Steve 46 male British Liverpool "Worcester College, Oxford" University Politician +654 S1B-053 1 I yes Quin Joyce 47 female British London School of Economics University "Politician, lecturer" French +655 S1B-053 1 J yes Onslow Cranley 65 male British Bexhill "Harrow School; Oriel College, Oxford; Geneva University" University Politician +656 S1B-054 1 A yes Speaker of the House Weatherill Bernard 71 male British Malvern College Secondary Speaker of the House of Commons +657 S1B-054 1 B yes Chalker Lynda 51 female British Heidelberg University; Westfield College; Central London Polytechnic University "Politician, statistician" +658 S1B-054 1 C yes Wells Bowen 56 male British London "St Paul's School, London, Exeter University" University Politician +659 S1B-054 1 D yes Budgeon Nicholas 54 male British Oxfordshire Cambridge University "Politician, barrister" +660 S1B-054 1 E yes Cryer Bob 56 male British Yorkshire "Salt School, Shipley; Hull University" University "Politician, teacher" +661 S1B-055 1 A yes Speaker of the House Weatherill Bernard 71 male British Malvern College Secondary Speaker of the House of Commons +662 S1B-055 1 B yes Nicholls Patrick 43 male British "College of Law, Guildford" University "Politician, solicitor" +663 S1B-055 1 C yes Eastham Ken 63 male British Manchester Openslaw Technical College University "Politician, engineer" +664 S1B-055 1 D yes Lloyd Tony 41 male British Stretford Stretford Grammar School; Nottingham University (BSc); Manchester Business School (DipBA) University "Politician, Lecturer in Business Studies" +665 S1B-055 1 E yes male Clerk of the House of Commons +666 S1B-055 1 F yes Howard Michael 50 male British Wales "Grammar School; Peterhouse, Cambridge; Inner Temple" University "Politician, barrister" +667 S1B-055 1 G yes Thompson Patrick 56 male British "Felsted School, Essex; Emmanuel College, Cambridge (MA)" University Politician MInstP +668 S1B-055 1 H yes Lamond James 63 male British Scotland Burrelton School Secondary "Politician, engineering draughtsman" +669 S1B-055 1 I yes Riddick Graham 36 male British "Stowe School, Buckingham; University of Warwick" University Politician +670 S1B-055 1 J yes Short Claire 45 female British Grammar School; Keele Univ; Leeds Univ University Politician +671 S1B-055 1 K yes Thurnham Peter 53 male British Cambridge; Harvard Business School University "Politician, engineer, businessman, farmer" +672 S1B-055 1 L yes Fyfe Maria 53 female British Glasgow "High School, Glasgow; Strathclyde Univ" University "Politician, lecturer" +673 S1B-055 1 M yes Porter Barry 43 male British "College of Speech and Drama, London" University "Politician, drama teacher" +674 S1B-055 1 N yes Reid John 44 male British Scotland Stirling Univ (PhD) University "Politician, researcher" +675 S1B-055 1 O yes Hicks Maureen 43 female British London "Furzedown College of Education, London" University "Politician, lecturer" +676 S1B-056 1 A yes Speaker of the House Weatherill Bernard 71 male British Malvern College Secondary Speaker of the House of Commons +677 S1B-056 1 B yes Grist Ian 53 male British Wales "Jesus College, Oxford" University Politician +678 S1B-056 1 C yes Powell Ray 63 male British Wales London School of Economics University Politician +679 S1B-056 1 D yes Howells Kim 44 male British College of Advanced Technology; Warwick Iniv University "Politician, lecturer" +680 S1B-056 1 E yes Griffiths Win 48 male British Wales Grammar School; Univ of Wales University "Politician, teacher" +681 S1B-056 1 F yes Jones Barry 53 male British Wales Bangor College of Education University "Politician, teacher of English" +682 S1B-056 1 G yes Michael Alun 48 male British Wales Colwyn Bay Grammar School; Keele University (BA English & Philos.) University Politician Former journalist +683 S1B-056 1 H yes Davies Ron 45 male British Portsmouth Poly; Univ of Wales; London Univ University "Politician, teacher of further education" +684 S1B-056 1 I yes Bennett Nicholas 42 male British London Polytechnic of N.London (BA Philosophy); Univ. of London Inst of Educ (PGCE); Univ. of Sussex (MA) University Politician +685 S1B-056 1 J yes Livsey Richard 56 male British Agricultural College University "Politician, farmer" +686 S1B-056 1 K yes Walker Bill 62 male British Scotland "Logie School, Dundee; Trades College, Dundee; College for Distributive Trades" University Politician "FIPM, FBIM" +687 S1B-057 1 A yes Speaker of the House Weatherill Bernard 71 male British Malvern College Secondary Speaker of the House of Commons +688 S1B-057 1 B yes male British Clerk of the House of Commons +689 S1B-057 1 C yes Jackson Robert 45 male British "St Edmund's Hall, Oxford" University Politician +690 S1B-057 1 D yes Wigley Daffyd 47 male British Wales Manchester University University "Politician, economist" +691 S1B-057 1 E yes Thurnham Peter 53 male British "Peterhouse, Cambridge; Harvard Business School" University "Politician, engineer, businessman, farmer" +692 S1B-057 1 F yes Howard Michael 50 male British Wales "Peterhouse, Cambridge; Inner Temple" University "Politician, barrister" +693 S1B-057 1 G yes Thompson Jack 63 male British Bothal School; Ashington Mining College University "Politician, Electrical Engineer" +694 S1B-057 1 H yes Bruce Ian 44 male British Chelmsford Technical School; Bradford Univ University "Politician, businessman" +695 S1B-057 1 I yes Leighton Ron 61 male British "Ruskin College, Oxford" University "Politician, printer" +696 S1B-057 1 J yes Mitchell Andrew 35 male British "Rugby School; Jesus College, Cambridge (MA Hons History)" University Politician +697 S1B-057 1 K yes Knapman Roger 47 male British "Royal Agricultural College, Cirencester" University "Politician, surveyor" +698 S1B-057 1 L yes Kirkwood Archy 45 male British Scotland Heriot-Watt University (BSc Pharmacy) University Politician +699 S1B-057 1 M yes Batiste Spencer 46 male British "Sorbonne, Paris; Cambridge (MA)" University "Politician, solicitor" French +700 S1B-057 1 N yes Eastham Ken 64 male British Manchester Openslaw Technical College University "Politician, engineer" +701 S1B-057 1 O yes male British Politician +702 S1B-058 1 A yes Short Clare 45 female British Keele University; Leeds University (BA Political Science) University Politician +703 S1B-058 1 B yes Newton Tony 54 male British Oxford University Politician +704 S1B-058 1 C yes Nelson Anthony 43 male British "Harrow School; Christ's College, Cambridge (MA Economics & Law)" University "Politician, banker" +705 S1B-058 1 D yes Wallace James 37 male British Scotland Edinburgh Univeristy University Politician +706 S1B-058 1 E yes Meacher Michael 61 male British "New College, Oxford; LSE" University "Politician, lecturer" +707 S1B-059 1 A yes Hicks Maureen 43 female British "Brokenhurst Grammar School; Furzedown College of Education, London" University "Politician, lecturer" +708 S1B-059 1 B yes Howard Michael 50 male British Wales "Grammar School; Peterhouse, Cambridge" University Politician (Sec. of State for Employment) +709 S1B-059 1 C yes Speaker of the House Weatherill Bernard 71 male British Malvern College Secondary Speaker of the House of Commons +710 S1B-059 1 D yes Leighton Ron 61 male British "Ruskin College, Oxford" University "Politician, printer" +711 S1B-059 1 E yes Mitchell Andrew 35 male British "Rugby School; Jesus College, Cambridge (MA Hons History)" University Politician +712 S1B-059 1 F yes Blair Tony 38 male British Durham "St John's College, Oxford" University Politician +713 S1B-059 1 G yes male British "Clerk, House of Commons" +714 S1B-059 1 H yes Jackson Robert 45 male British "St Edmund's Hall, Oxford" University Politician +715 S1B-059 1 I yes Stern Michael 49 male British London University "Politician, accountant" +716 S1B-059 1 J yes Madden Max 50 male British "Pinner, Middlesex" Grammar School Secondary Politician +717 S1B-059 1 K yes Dickens Sir Geoffrey 60 male British Middlesex "Easthome School, Wembley; Harrow Technical College; Acton Technical College" University "Politician, businessman" +718 S1B-059 1 L yes Archer Peter 65 male British Wednesbury High School; London School of Economics; UCL University "Politician, solicitor" Fellow of University College London +719 S1B-059 1 M yes Coombs Simon 44 male British "Wycliffe College, Stroud; Reading University" University "Politician, businessman" +720 S1B-059 1 N yes Lloyd Tony 41 male British Stretford Stretford Grammar Sch.; Nottingham University (BSc); Manchester Business School (DipBA) University "Politician, Lecturer in Business Studies" +721 S1B-059 1 O yes Forth Eric 47 male British Glasgow "Jordanhill College School, Glasgow; Glasgow University" University "Politician, businessman" +722 S1B-059 1 P yes Boswell Tim 49 male British "Marlborough College; New College, Oxford" University "Politician, farmer" +723 S1B-059 1 Q yes Short Clare 45 female British Keele University; Leeds University (BA Political Science) University Politician +724 S1B-059 1 R yes Butler Christopher 41 male British Wales "Cardiff High School; Emmanuel College, Cambridge" University "Politician, Market Researcher" +725 S1B-059 1 S yes Ashley Jack 69 male British Lancashire "Ruskin College, Oxford; Gonville & Caius College, Cambridge" University Politician Partially deaf +726 S1B-060 1 A yes Duffy Patrick 71 male British "London School of Economics; Columbia University, New York" University "Politician, economist" +727 S1B-060 1 B yes Tredinnick David 41 male British "Eton; Graduate School of Business, Cape Town; St John's College, Oxford" University Politician +728 S1B-060 1 C yes Peacock Elizabeth 54 female British Yorkshire "Secondary School, Skipton, Yorkshire" Secondary Politician +729 S1B-060 1 D yes Henderson Doug 42 male British Scotland "Waid Academy, Fife; Central College, Glasgow; Strathclyde University (BA)" University Politician +730 S1B-060 2 A yes Arbuthnot James 39 male British "Eton; Trinity College, Cambridge (MA)" University "Politician, barrister" +731 S1B-060 2 B yes Hogg Douglas 46 male British "Eton; Christ Church, Oxford; Lincoln's Inn" University Politician +732 S1B-060 2 C yes Speaker of the House Weatherill Bernard 71 male British Malvern College Secondary Speaker of the House of Commons +733 S1B-060 2 D yes Dunwoody Gwyneth 61 female British Convent of Notre Dame Secondary "Politician, actress, writer" +734 S1B-060 2 E yes Adley Robert 56 male British Uppingham School Secondary "Politician, businessman" "Lived & worked in Thailand, Singapore, Malaya" +735 S1B-061 1 A yes Defence counsel Nugee Edward 64 male British Brambletye Worcester College; Oxford University Barrister (QC) +736 S1B-061 1 B yes Plaintiff Hill John 26-45 male British Sussex Businessman +737 S1B-062 1 A yes Plaintiff's counsel Wilson-Smith C. 46-65 male British University Lawyer +738 S1B-062 1 B yes Judge Ogden Sir Michael 65 male British "Downside School; Jesus College, Cambridge (MA)" University High Court Judge +739 S1B-062 1 C yes Prosecution witness Carter Keith William 26-45 male British "Degree in Sociology, MA in Industrial Sociology" University Employment consultant +740 S1B-063 1 A yes Judge Hirst David 65 male British Norfolk "Eton; Trinity College, Cambridge (MA)" University High Court Judge +741 S1B-063 1 B yes Plaintiff's counsel Pickup James male British University Lawyer +742 S1B-063 1 C yes Defence witness Maynard John male British Businessman +743 S1B-064 1 A yes Defence counsel Ekland Graham male British University Lawyer +744 S1B-064 1 B yes Prosecution witness Lehrer Michael male British Stanmore Businessman +745 S1B-064 1 C yes Judge Brooke Sir Henry 55 male British "Radley College; Worcester College, Oxford" University High Court Judge +746 S1B-065 1 A yes Plaintiff's counsel Lamb Robert 46-65 male British University Lawyer +747 S1B-065 1 B yes Defence witness Lampitt Robert 46-65 male British Weybridge Businessman +748 S1B-065 1 C yes Judge Brooke Sir Henry 55 male British "Radley College; Worcester College, Oxford" University High Court Judge +749 S1B-066 1 A yes Defence counsel Wrigley John male British University Lawyer +750 S1B-066 1 B yes Plaintiff Hoffman Heidi 18-25 female British Oxfordshire +751 S1B-066 1 C yes Judge Escott-Cox Brian Robert 61 male British "Rugby School; Oriel College, Oxford (MA)" University High Court Judge +752 S1B-066 2 A yes Plaintiff's counsel Eccles male British University Lawyer +753 S1B-066 2 B yes Plaintiff's witness White Lorraine 18-25 female British Tyne & Wear +754 S1B-066 2 C yes Judge Escott-Cox Brian Robert 61 male British "Rugby School; Oriel College, Oxford (MA)" University High Court Judge +755 S1B-067 1 A yes Plaintiff's counsel Eccles male British University Lawyer +756 S1B-067 1 B yes Defence witness Tarburn 18-25 female British Scotland Travel company representative +757 S1B-067 1 C yes Judge Escott-Cox Brian Robert 61 male British "Rugby School; Oriel College, Oxford (MA)" University High Court Judge +758 S1B-068 1 A yes Defence counsel Barrett male British University Lawyer +759 S1B-068 1 B yes Witness Campbell 32 male British University Police officer +760 S1B-068 1 C yes Judge MacPherson 65 male British Scotland "Wellington Coll., Berkshire; Trinity Coll., Oxford" University High Court Judge +761 S1B-068 2 A yes Defence counsel Barrett male British University Barrister +762 S1B-068 2 B yes Expert witness Gardiner 60 male British University Surgeon +763 S1B-068 2 C yes Judge MacPherson 65 male British Scotland "Wellington Coll., Berkshire; Trinity Coll., Oxford" University High Court Judge +764 S1B-068 2 D yes Defence counsel Glasgow male British University "Lawyer, Queen's Counsel" +765 S1B-069 1 A yes Plaintiff's counsel Goldblatt Simon 46-65 male British University "Barrister, Queen's Counsel" "Called to the Bar, 1953" +766 S1B-069 1 B yes Defence witness Basnett male British Cheltenham Businessman +767 S1B-070 1 A yes Judge Ogden Sir Michael 65 male British "Downside School; Jesus College, Cambridge (MA)" University High Court Judge +768 S1B-070 1 B yes Expert witness Hieroms Raymond 46-65 male British University Surgeon +769 S1B-070 1 C yes Defence counsel Barrett male British University Barrister +770 S1B-071 1 A yes Wharton John 26-45 male British UK South University Architect +771 S1B-071 1 B yes Boase Sue 26-45 female British UK South University "Lecturer, researcher" +772 S1B-071 1 C yes King-Smith Gavin 26-45 male British UK South University Management consultant +773 S1B-072 1 A yes Boase Sue 26-45 female British UK South University "Lecturer, researcher" +774 S1B-072 1 B yes 26-45 female British UK South University Solicitor +775 S1B-073 1 A yes Boase Sue 26-45 female British UK South University "Lecturer, researcher" +776 S1B-073 1 B yes Salano Michael 26-45 male British UK South University Building contractor +777 S1B-073 1 C yes King-Smith Gavin 26-45 male British UK South University Management consultant +778 S1B-074 1 A yes 32 male British London University Lecturer Spanish +779 S1B-074 1 B yes Ross 27 male British Scotland University Insurance salesman +780 S1B-074 2 A yes Ross 27 male British Scotland University Insurance salesman +781 S1B-074 2 B yes 18-25 male British Plymouth Secondary Student Some French +782 S1B-074 3 A yes Ross 27 male British Scotland University Insurance salesman +783 S1B-074 3 B yes Kalman Anthony 27 male British London University Chef +784 S1B-074 3 C yes Lawrence Jane 20 female British London Secondary Student +785 S1B-075 1 A yes Chairman 26-45 male British University "Dean of Arts Faculty, UCL" +786 S1B-075 1 B yes male University Academic +787 S1B-075 1 C yes female University Academic +788 S1B-075 1 D yes male University Academic +789 S1B-075 1 E yes Hudson Dick 26-45 male British University Lecturer in Linguistics +790 S1B-075 1 F yes male University Academic +791 S1B-075 1 G yes male University Academic +792 S1B-075 1 H yes male University Academic +793 S1B-075 1 I yes Guppy Dave 26-45 male British University Computer operator +794 S1B-075 1 J yes male University Academic +795 S1B-076 1 A yes Procter Paul 46-65 male British BA University Lexicographer +796 S1B-076 1 B yes Rosta And 18-25 male British Liverpool "BA in Linguistics, UCL" University PhD student +797 S1B-076 1 C yes Paul 18-25 male British University Computer programmer +798 S1B-077 1 A yes Chairman Donoghue Helen 26-45 female British N. Kent Grammar School; Bristol University University Senior Lecturer in Microbiology "Lived in Bristol, Bradford, London" +799 S1B-077 1 B yes Rachel 26-45 female British University Academic +800 S1B-077 1 C yes female +801 S1B-077 1 D yes male +802 S1B-077 1 E yes Marjorie female +803 S1B-077 1 F yes Agnew Clive 26-45 male British PhD University Lecturer in Geography +804 S1B-078 1 A yes Chairman Carol 46-65 female British Secondary Student +805 S1B-078 1 B yes Denis 66+ male British North England Secondary Student +806 S1B-078 1 C yes Chris 26-45 female British London Secondary Student +807 S1B-078 1 D yes Ted 46-65 male British London Secondary Student +808 S1B-078 1 E yes 46-65 female British London Secondary Student +809 S1B-079 1 A yes Chairman Andy 18-25 male British South London Secondary Student +810 S1B-079 1 B yes Carol 18-25 male British London Secondary Student +811 S1B-079 1 C yes 18-25 male British Birmingham Secondary Student +812 S1B-079 1 D yes 18-25 male British London Secondary Student +813 S1B-079 1 E yes Katherine 18-25 female British London Secondary Student +814 S1B-079 1 F yes Thompson Katherine 18-25 female British London Secondary Student +815 S1B-079 1 G yes Joe 18-25 male British South London Secondary Student +816 S1B-079 1 H yes Emma 18-25 female British London Secondary Student +817 S1B-079 1 I yes 18-25 female British London Secondary Student +818 S1B-079 1 J yes 18-25 male British Coventry Secondary Student +819 S1B-080 1 A yes Ross 27 male British Scotland University Insurance salesman +820 S1B-080 1 B yes 25 female British Oxfordshire Secondary Student +821 S1B-080 2 A yes Ross 27 male British Scotland University Insurance salesman +822 S1B-080 2 B yes 32 male British London University Lecturer +823 S2A-001 1 A yes Ingham Mike 26-45 male British +824 S2A-002 1 A yes Robertson Ian 26-45 male British +825 S2A-003 1 A yes Green Alan 26-45 male British Belfast +826 S2A-004 1 A yes French Ray 46-65 male British St Helens University of Leeds University Sports reporter "French, Latin, Russian" +827 S2A-005 1 A yes Bromley Peter 46-65 male British Cheshire Secondary Sports reporter None +828 S2A-005 2 A yes McKenzie Lee 26-45 male British Southampton University Sports reporter French +829 S2A-005 3 A yes Bromley Peter 46-65 male British Cheshire Secondary Sports reporter None +830 S2A-005 4 A yes McKenzie Lee 26-45 male British Southampton University Sports reporter French +831 S2A-005 5 A yes Bromley Peter 46-65 male British Cheshire Secondary Sports reporter None +832 S2A-006 1 A yes Bromley Peter 46-65 male British Cheshire Secondary Sports reporter None +833 S2A-006 2 A yes Gardner Graham 46-65 male British +834 S2A-006 3 A yes Gardner Graham 46-65 male British +835 S2A-006 4 A yes Gardner Graham 46-65 male British +836 S2A-006 5 A yes Gardner Graham 46-65 male British +837 S2A-007 1 A yes Parry Alan 46-65 male British +838 S2A-007 2 A yes Matthews Peter male British +839 S2A-007 3 A yes Parry Alan 46-65 male British +840 S2A-007 4 A yes Matthews Peter male British +841 S2A-007 5 A yes Parry Alan 46-65 male British +842 S2A-007 6 A yes Ovett Steve 36 male British Brighton Secondary Former athlete +843 S2A-007 7 A yes Matthews Peter male British +844 S2A-007 8 A yes Parry Alan 46-65 male British +845 S2A-007 9 A yes Ovett Steve 36 male British Brighton Secondary Former athlete +846 S2A-007 10 A yes Parry Alan 46-65 male British +847 S2A-007 11 A yes Ovett Steve 36 male British Brighton Secondary Former athlete +848 S2A-007 12 A yes Parry Alan 46-65 male British +849 S2A-007 13 A yes Ovett Steve 36 male British Brighton Secondary Former athlete +850 S2A-008 1 A yes Spencer John 46-65 male British Sports reporter +851 S2A-008 2 A yes Bays James male British +852 S2A-008 3 A yes Neil Andrew 42 male British "Paisley, Scotland" "Paisley Grammar School; University of Glasgow (MA Politics & Economics, 1971)" University "Journalist, editor `The Sunday Times'" +853 S2A-008 4 A yes Bays James male British +854 S2A-008 5 A yes Neil Andrew 42 male British "Paisley, Scotland" "Paisley Grammar School; University of Glasgow (MA Politics & Economics, 1971)" University "Journalist, editor `The Sunday Times'" +855 S2A-008 6 A yes Bays James male British +856 S2A-008 7 A yes Parry Alan 46-65 male British Sports reporter +857 S2A-009 1 A yes Darke Ian 26-45 male British Portsmouth Secondary Sports reporter None +858 S2A-010 1 A yes Hawthorne Rob male British +859 S2A-011 1 A yes Dimbleby Jonathan 47 male British London University "Journalist, broadcaster" +860 S2A-012 1 A yes Hawthorne Rob male British Sports reporter +861 S2A-012 2 A yes Harris Nick 26-45 male British Oxford Secondary Sports reporter None +862 S2A-012 3 A yes Smith Andy 26-45 male British +863 S2A-012 4 A yes Hawthorne Rob male British Sports reporter +864 S2A-012 5 A yes male +865 S2A-012 6 A yes male +866 S2A-012 7 A yes male +867 S2A-013 1 A yes male +868 S2A-013 2 A yes male +869 S2A-013 3 A yes male +870 S2A-013 4 A yes male +871 S2A-013 5 A yes male +872 S2A-014 1 A yes Green Alan 26-45 male British Belfast University Broadcaster +873 S2A-015 1 A yes male +874 S2A-016 1 A yes male +875 S2A-016 2 A yes male +876 S2A-016 3 A yes male +877 S2A-016 4 A yes male +878 S2A-016 5 A yes male +879 S2A-017 1 A yes male +880 S2A-018 1 A yes Lockwood Tony 26-45 male British +881 S2A-019 1 A yes Dimbleby Jonathan 47 male British Aylesbury University Broadcaster +882 S2A-020 1 A yes Hosken John 46-65 male British Truro Secondary Broadcaster "Spanish, French" +883 S2A-020 2 A yes McLellan Andrew 46-65 male British Glasgow University Broadcaster "Latin, Greek, Hebrew, French, German" +884 S2A-021 1 A yes Lecturer Newsam Sir Peter 63 male British Yorkshire "Clifton College, Yorks; Queen's College, Oxford (MA, DipEd)" University "Director, London Institute of Education" +885 S2A-022 1 A yes Lecturer James Simon 26-45 male British London MA(Oxon) University Military Archaeologist Italian +886 S2A-023 1 A yes Lecturer Banham John 51 male British London "Charterhouse School; Queen's College, Cambridge (BA Natural Sciences)" University "Director, Confederation of British Industry" +887 S2A-024 1 A yes Lecturer Vanags Patsy 26-45 female British London University Part-time lecturer +888 S2A-025 1 A yes Lecturer Chandler A. 26-45 male British London University Lecturer in Engineering +889 S2A-026 1 A yes Lecturer Jeffreys David 26-45 male British Northampton University Lecturer in Egyptology +890 S2A-027 1 A yes Lecturer Steinberg Hannah 46-65 female British Germany PhD University Professor of Pharmacology German Moved to Britain aged c.7 +891 S2A-028 1 A yes Lecturer Johnstone Wyndham 26-45 male British London "BSc Physics, PhD" University Research Scientist None +892 S2A-028 2 A yes Lecturer Abbott David 26-45 male British "Hyde, Cheshire" B.Eng. (Hons) University Network Administrator Lives in Greater Manchester +893 S2A-028 3 A yes Lecturer Roberts Derek 46-65 male British London PhD University "Provost, UCL; ex-businessman" +894 S2A-029 1 A yes Lecturer Gower Nicole 26-45 female British Tunbridge Wells BSc Hons Human Biology University Research Assistant/Trial Coordinator French +895 S2A-029 2 A yes Lecturer Betts Andy 26-45 male British "Horsham, Essex" "BSc, PhD" University Lecturer "French, German" +896 S2A-029 3 A yes Lecturer Newton Andrew 26-45 male British Hemel Hempstead "BSc Physics, MSc Information Technology" University Research Fellow French +897 S2A-030 1 A yes Lecturer Local John 46-65 male British PhD University "Lecturer in Linguistics, Univ. of York" +898 S2A-031 1 A yes Lecturer Steedman Hilary 46-65 female British +899 S2A-031 2 A yes Lecturer Cassells Sir John 64 male British Yorkshire "Sedbergh School, Yorks.; Trinity Colege, Cambridge (Classics, 1951)" University "Dir., National Committee on Education" Former Civil Servant +900 S2A-032 1 A yes Lecturer Hutchins John 46-65 male British UK south University University lecturer +901 S2A-033 1 A yes Lecturer Ash Katy 26-45 female British Kent BSc University Clinical Trial Data Manager None +902 S2A-033 2 A yes Lecturer Edwards D.R.L. 26-45 male British Essex "M.B.B.S., M.R.C. Psych." University Associate Research Fellow in Psychiatry "French, some Danish & Russian" +903 S2A-033 3 A yes Lecturer Lansbury A.N. 26-45 female British Oxford "BSc, PhD" University Physicist +904 S2A-034 1 A yes Lecturer Wood Andrew 18-25 male British West Yorkshire "BSc Applied Chemistry, MSc" University PhD Student None +905 S2A-034 2 A yes Lecturer Morrissey Mark 18-25 male British Birmingham BSc Computer Science & Electronic Engineering University Computer Systems Administration +906 S2A-034 3 A yes Lecturer Ramsay R. 26-45 female British Oxford "MA, MRBS" University Doctor "French, German" +907 S2A-034 4 A yes Lecturer Stutchfield 26-45 female British +908 S2A-035 1 A yes Lecturer Spencer Sharon 26-45 female British London "BSc, PhD Biochemistry" University Associate Research Assistant None +909 S2A-035 2 A yes Lecturer James Lindsay 26-45 female British UK BSc Social Science University "Registered General Nurse, Research Assistant" None +910 S2A-035 3 A yes Lecturer Lang Harriet 18-25 female British Reading BSc Speech Communication University Research Assistant French +911 S2A-036 1 A yes Lecturer Weitzmann Michael 26-45 male British London University Lecturer in Jewish & Hebrew Studies Hebrew +912 S2A-037 1 A yes Lecturer Roberts Derek 46-65 male British London PhD University "Provost, UCL; ex-businessman" +913 S2A-038 1 A yes Lecturer Laslett Sir Peter 76 male British Watford Grammar School; Cambridge University "Reader in Politics & Hist. Soc. Struct, 1966-83, Cambridge" "FBA, 1979" +914 S2A-039 1 A yes Lecturer Philips Andrew 46 male British Newport Reading University (BA) University "Director, Humanities & Soc. Sci., British Library" ALA +915 S2A-040 1 A yes Lecturer Cook Peter 46-65 male British Halifax University Professor of Architecture +916 S2A-041 1 A yes Lecturer Cullen A.L. 46-65 male British London University Professor of Electrical Engineering +917 S2A-042 1 A yes Lecturer Elkins R.P. 46-65 male British London University Professor of Endocrinology +918 S2A-043 1 A yes Lecturer Rapley C.G. 46-65 male British London University Professor of Physics & Astronomy +919 S2A-044 1 A yes Lecturer Twining W.L. 46-65 male British London University Professor of Laws +920 S2A-045 1 A yes Lecturer Grosvenor Gerald 40 male British London Harrow School; military training Secondary Businessman 6th Duke of Westminster +921 S2A-046 1 A yes Lecturer Rose Graham 18-25 male British Newcastle "BSc Geography, MSc Micropalaeontology" University Student Indonesian +922 S2A-046 2 A yes Lecturer Shaw Andrew 26-45 male British Peterborough BSc Toxicology & Pharmacology; PhD University Lecturer in Toxicology None +923 S2A-046 3 A yes Lecturer Cope Mark 26-45 male British Cheshire "BSc (Eng), PhD" University Lecturer in Medical Physics & Bioengineering None +924 S2A-047 1 A yes Lecturer Macaskill C. 26-45 female British Leicester "MSc, PhD Medical Demography" University Lecturer "French, Tamasheq" +925 S2A-048 1 A yes Lecturer Tait W. 46-65 male British London University Lecturer in Egyptology +926 S2A-049 1 A yes Lecturer Burgoyne John 46-65 male British Cumbria University +927 S2A-050 1 A yes Interviewee McCullin Don 46-65 male British South London Secondary Photojournalist +928 S2A-050 2 A yes Interviewee McCullin Don 46-65 male British South London Secondary Photojournalist +929 S2A-051 1 A yes King C.A. 55 male British London "BSc (Zoology), MSc, PhD (Biochemistry)" University Lecturer in Biology None +930 S2A-052 1 A yes Hart George 26-45 male British London University Archaeologist +931 S2A-053 1 A yes Delpy C. 46-65 male British PhD University University Lecturer +932 S2A-054 1 A yes male +933 S2A-054 2 A yes male +934 S2A-055 1 A yes Baker Sue 26-45 female British Kent University Broadcaster French +935 S2A-055 2 A yes Clarkson Jeremy 26-45 male British York Public School Secondary Broadcaster +936 S2A-055 3 A yes Clarkson Jeremy 26-45 male British York Public School Secondary Broadcaster +937 S2A-056 1 A yes Ball Ginny 26-45 female British Hertfordshire BSc (Hons) University Lecturer "French, some German" +938 S2A-056 2 A yes Ball Ginny 26-45 female British Hertfordshire BSc (Hons) University Lecturer "French, some German" +939 S2A-057 1 A yes Bindman David 46-65 male British London University Professor of the History of Art +940 S2A-057 2 A yes Bindman David 46-65 male British London University Professor of the History of Art +941 S2A-058 1 A yes Agnew Clive 26-45 male British University Lecturer in Geography +942 S2A-058 2 A yes Walton Nick 26-45 male British London "BSc, PhD" University Astronomer Dutch +943 S2A-058 3 A yes Burt Avril 46-65 female British London BSc (Hons) University Medical Research Assistant None +944 S2A-059 1 A yes Brend Barbara 50 female British "BA French, MA Old French, MPhil, PhD (SOAS)" University Freelance lecturer in Islamic Art +945 S2A-060 1 A yes Loverance Rowena 37 female British "BA Modern History, Somerville College, Oxford" University "Lecturer, archaeologist" +946 S2A-061 1 A yes Davis Michael 46-65 male British University Judge +947 S2A-062 1 A yes Martin J. male British University Queen's Counsel +948 S2A-063 1 A yes Davis Michael male British University Judge +949 S2A-064 1 A yes male University Judge +950 S2A-064 2 A yes Browne Desmond male British University Queen's Counsel +951 S2A-065 1 A yes Evans John Field 63 male British Wales "Cardiff High School; Exeter College, Oxford (MA)" University High Court Judge +952 S2A-066 1 A yes Hoffman Sir Leonard 57 male British Cape Town "University of Cape Town (BA); Oxford (MA,BCL)" University High Court Judge "Rhodes Scholar to Queen's College, Oxford, 1950s" +953 S2A-066 2 A yes Hirst David 65 male British Norfolk "Eton; Trinity College, Cambridge (MA)" University High Court Judge +954 S2A-067 1 A yes Cox P.J. 46-65 male British University High Court Judge +955 S2A-068 1 A yes Pickup James 46-65 male British University Lawyer +956 S2A-068 2 A yes Pickup James 46-65 male British University Lawyer +957 S2A-069 1 A yes Knox Sir John Leonard 65 male British "Radley College; Worcester College, Oxford" University High Court Judge +958 S2A-070 1 A yes Brooke Sir Henry 55 male British "Marlborough College; Balliol College, Oxford" University High Court Judge +959 S2B-001 1 A yes Newscaster Snow John 53 male Dublin "Wellington College; Balliol College, Oxford" University "Broadcaster, journalist" +960 S2B-001 1 B yes Gowing Nick 40 male British London Bristol University University "Broadcaster, journalist" +961 S2B-001 1 C yes Irving Niall 26-45 male British "Group Captain, Royal Air Force" +962 S2B-001 1 D yes Veetch Andrew 26-45 male British University Broadcaster (Science Correspondent) +963 S2B-001 1 E yes Hay Alastair 26-45 male British University "Scientist, Leeds University" +964 S2B-002 1 A yes Newscaster Snow John 53 male British Dublin "Wellington College, Somerset; Balliol College, Oxford (BA Hons)" University Broadcaster +965 S2B-002 1 B yes Neild Paul 26-45 male British Lancashire University "Broadcaster, journalist" +966 S2B-002 1 C yes Graham Martin 26-45 male British Businessman "Representative, British Chambers of Commerce" +967 S2B-002 1 D yes Abbotts Bill 46-65 male British Businessman +968 S2B-002 1 E yes Wells John 46-65 male British PhD University "Academic, University of Cambridge" +969 S2B-002 1 F yes Ross Ian 46-65 male British Broadcaster (Industrial Correspondent) +970 S2B-002 1 G yes Grantham Roy 46-65 male British Trade Union Representative +971 S2B-002 1 H yes Young Mark 46-65 male British Airline Pilot +972 S2B-002 1 I yes Goodman Eleanor 26-45 female British "Braodcaster, journalist" +973 S2B-002 1 J yes Major John 47 male British London Secondary Politician +974 S2B-002 1 K yes Biffin John 61 male British Bridgewater "Jesus College, Cambridge (BA)" University Politician +975 S2B-003 1 A yes Newscaster MacDonald Trevor 52 male Trinidad University "Broadcaster, journalist" +976 S2B-003 1 B yes Brunson Michael 51 male British Norwich "Queen's College, Oxford" University "Broadcaster, journalist" +977 S2B-003 1 C yes Major John 47 male British London Secondary Politician +978 S2B-003 1 D yes Mellor David 42 male British London "Swanage Grammar School; Christ's College, Cambridge (BA Hons, 1970)" University "Politician, barrister" +979 S2B-003 1 E yes Hurd Douglas 61 male British "Eton, Trinity College Cambridge" University Politician +980 S2B-003 1 F yes Yeo Tim 46 male British "Charterhouse School; Emmanuel College, Cambridge" University "Politician, businessman" +981 S2B-003 1 G yes Heseltine Michael 58 male British "Shrewsbury School; Pembroke College, Oxford" University "Politician, businessman" +982 S2B-003 1 H yes Temple-Morris Peter 53 male British "Hillstone School, Malvern; Malvern College; St Catherine's College, Cambridge" University "Politician, solicitor" +983 S2B-003 1 I yes Somerville Julia 26-45 female British University Broadcaster +984 S2B-003 1 J yes Bennett-Powell Jane 26-45 female British University Broadcaster +985 S2B-003 1 K yes Oppenheim Phillip 35 male British "Harrow School; Oriel College, Oxford" University "Politician, company director" +986 S2B-003 1 L yes Bartlett Peter 26-45 male British Businessman +987 S2B-003 1 M yes Neal Jill 26-45 female British Company owner +988 S2B-003 1 N yes Spencer Alan 46-65 male British Marketing Manager +989 S2B-003 1 O yes Eley Brian 46-65 male British Constituency agent +990 S2B-003 1 P yes Allen Peter 45 male British Essex Broadcaster Worked in Australia +991 S2B-003 1 Q yes Thatcher Carol 26-45 female British London Freelance journalist Worked in Australia +992 S2B-003 1 R yes Thirkettle Joan 26-45 female British University Journalist +993 S2B-003 1 S yes Heseltine Anne 46-65 female British +994 S2B-004 1 A yes Newscaster Martin Brian 46-65 male British Broadcaster +995 S2B-004 1 B yes Frei Matt 46-65 male British University Broadcaster (Foreign Affairs Correspondent) +996 S2B-004 1 C yes Laity Mark 26-45 male British University Broadcaster (Defence Correspondent) +997 S2B-004 1 D yes King Tom 58 male British "Rugby School; Emmanuel College, Oxford" University Politician +998 S2B-004 1 E yes Major John 47 male British London Secondary Politician +999 S2B-004 1 F yes Sacker Stephen 26-45 male British University Broadcaster +1000 S2B-004 1 G yes Carver Tom 26-45 male British University Broadcaster +1001 S2B-004 1 H yes Simpson Bob 46-65 male British University Broadcaster +1002 S2B-004 1 I yes Kelly June 26-45 female British University Broadcaster +1003 S2B-005 1 A yes Newscaster Perkins Brian 46-65 male British Broadcaster +1004 S2B-005 1 B yes Sinkinson Bob male British "Braodcaster, journalist" +1005 S2B-005 1 C yes Irving Niall 26-45 male British "Group Captain, Royal Air Force" +1006 S2B-005 1 D yes Laity Mark 26-45 male British University Broadcaster (Defence Correspondent) +1007 S2B-005 1 E yes Little Alan 26-45 male British "Broadcaster, journalist" +1008 S2B-005 1 F yes Harris John male British "Broadcaster, journalist" +1009 S2B-005 1 G yes Major John 47 male British London Secondary Politician +1010 S2B-006 1 A yes Presenter Redhead Brian 62 male British Newcastle-upon-Tyne Grammar School; Cambridge University Broadcaster +1011 S2B-006 1 B yes Newscaster Macmillan Laurie 26-45 female British Broadcaster +1012 S2B-006 1 C yes MacNeill David 26-45 male British Broadcaster (Washington Correspondent) +1013 S2B-006 1 D yes Dowell Martin male British Broadcaster +1014 S2B-006 1 E yes Hawkesley Humphrey male British Broadcaster +1015 S2B-006 1 F yes Connolly Kevin male British University Broadcaster +1016 S2B-006 1 G yes Johnson-Smith Geoffrey 67 male British "Charterhouse Sch.; Lincoln College, Oxford (BA Hons Politics, Philosophy, Economics, 1949)" University Politician +1017 S2B-007 1 A yes Presenter Naughtie James 40 male British Scotland Grammar School; Aberdeen University; Syracuse University University Broadcaster +1018 S2B-007 1 B yes Newscaster Roper Alison 26-45 female British Broadcaster +1019 S2B-007 1 C yes Harrison John male British Broadcaster +1020 S2B-007 1 D yes Hurd Douglas 58 male British "Eton; Trinity College, Cambridge" University Politician +1021 S2B-007 1 E yes Lawson Nigel 59 male British "Christchurch, Oxford" University Politician +1022 S2B-007 1 F yes Douglas Torin male British Broadcaster +1023 S2B-007 1 G yes Mellor David 42 male British London "Swanage Grammar School; Christ's College, Cambridge (BA Hons, 1970)" University "Politician, barrister" +1024 S2B-007 1 H yes Moncross David male British Broadcaster +1025 S2B-007 1 I yes Tully Mark 56 male British "Twyford School, Winchester; Cambridge (MA)" University Broadcaster. BBC Correspondent in India +1026 S2B-007 1 J yes Lees David male +1027 S2B-007 1 K yes Harrod Dominic male Broadcaster +1028 S2B-008 1 A yes Naughtie James 40 male British Scotland Grammar School; Aberdeen University; Syracuse University University Broadcaster +1029 S2B-008 1 B yes Green Charlotte 26-45 female British Broadcaster +1030 S2B-008 1 C yes King Tom 58 male British "Rugby School; Emmanuel College, Oxford" University Politician +1031 S2B-008 1 D yes Laity Mark 26-45 male British University Broadcaster (Defence Correspondent) +1032 S2B-008 1 E yes Jones Phillip male British Broadcaster +1033 S2B-008 1 F yes Harris Jeremy male British University Broadcaster +1034 S2B-008 1 G yes Simpson Bob 46-65 male British University Broadcaster +1035 S2B-008 1 H yes Birchall Jonathan male British Broadcaster +1036 S2B-008 1 I yes Paley Joe male British University Broadcaster +1037 S2B-008 1 J yes Hearing Roger 26-45 male British Broadcaster +1038 S2B-009 1 A yes Newscaster Corfield Corrie 26-45 female British Broadcaster +1039 S2B-009 1 B yes Orchard Robert 46-65 male British Broadcaster (Political Correspondent) +1040 S2B-009 1 C yes Brodie Alex 26-45 male British Broadcaster +1041 S2B-009 1 D yes Thomas Anne 26-45 female British Broadcaster +1042 S2B-009 1 E yes +1043 S2B-009 1 F yes Whitelaw William 46-65 male British University Politician +1044 S2B-009 1 G yes Curtice John 46-65 male British University Academic +1045 S2B-009 1 H yes Fletcher Winston 54 male British London "Westminster City School; St John's College, Cambridge (MA)" University "Businessman; Visiting Professor, Lancaster Management School" "Member, The Royal Society of Arts" +1046 S2B-009 1 I yes Hurd Douglas 61 male British "Eton; Trinity College, Cambridge" University Politician +1047 S2B-010 1 A yes Newscaster Paxman Jeremy 41 male British Leeds Cambridge University University Broadcaster +1048 S2B-010 1 B yes Wheeler Charles 68 male British Cranbrook School Secondary "Broadcaster, journalist" +1049 S2B-010 1 C yes Hannay Sir David 56 male British "Winchester College; New College, Oxford" University British Ambassador to the UN "Served in Tehran, Kabul, Brussels, Washington" +1050 S2B-010 1 D yes Stock Francine 26-45 female British Broadcaster +1051 S2B-011 1 A yes Newscaster McDonald Trevor 52 male Trinidad Broadcaster +1052 S2B-011 1 B yes Harris Simon male British "Broadcaster, journalist" +1053 S2B-011 1 C yes Attenborough Liz 26-45 female British Publisher +1054 S2B-011 1 D yes Somerville Julia 26-45 female British Broadcaster +1055 S2B-011 1 E yes Weiner Libby 26-45 female British Broadcaster +1056 S2B-011 1 F yes Finley Fiona 26-45 female British University Medical doctor +1057 S2B-011 1 G yes 26-45 female British University Hospital registrar +1058 S2B-011 1 H yes Archer Geoffrey 45 female British London University "Broadcaster, journalist" Former solicitor's articled clerk +1059 S2B-011 1 I yes Dunlop Alistair 46-65 male British University Clergyman +1060 S2B-011 1 J yes Allen Bob 26-45 male British Scotland "Representative, Scottish Fishermen's Association" +1061 S2B-011 1 K yes Hamilton Archie 50 male British Eton College Secondary Politician +1062 S2B-011 1 L yes Foulkes George 49 male British Scotland "Keith Grammar School, Scotland; Edinburgh University (BSc 1964)" University Politician +1063 S2B-011 1 M yes Marshall Penny 26-45 female British "Broadcaster, journalist" +1064 S2B-011 1 N yes Hurd Douglas 61 male British "Eton College; Trinity College, Cambridge" University Politician +1065 S2B-012 1 A yes Newscaster Perkins Brian 26-45 male British Broadcaster +1066 S2B-012 1 B yes Sykes Hugh 26-45 male British "Broadcaster, journalist" +1067 S2B-012 1 C yes Sharp Richard 46-65 British University "Editor, Jane's Fighting Ships" +1068 S2B-012 1 D yes Singleton Valerie 54 female British Bromley "Royal Academy of Dramatic Art, London" University "Broadcaster, journalist, ex-actress" +1069 S2B-012 1 E yes female British BBC World Service announcer +1070 S2B-012 1 F yes Seal Patrick 26-45 male British "Broadcaster, journalist" +1071 S2B-012 1 G yes Reynolds Paul 26-45 male British "Broadcaster, journalist" +1072 S2B-012 1 H yes Smith Norman 46-65 male British "Broadcaster, journalist" +1073 S2B-013 1 A yes Newscaster Snow Jon 46-65 male British Broadcaster +1074 S2B-013 1 B yes Goodman Eleanor female British "Broadcaster, journalist" +1075 S2B-013 1 C yes male British "Broadcaster, journalist" +1076 S2B-013 1 D yes Hurd Douglas 46-65 male British Politician +1077 S2B-013 1 E yes Ridley Nicholas 46-65 male British Politician +1078 S2B-014 1 A yes Newscaster Clarke Nick male British Broadcaster +1079 S2B-014 1 B yes Major John 47 male British London Secondary Politician +1080 S2B-014 1 C yes Laity Mark 26-45 male British Broadcaster (Defence Correspondent) +1081 S2B-014 1 D yes Tye Andrew male British Broadcaster +1082 S2B-014 1 E yes Webb Justin male British Broadcaster +1083 S2B-014 1 F yes Kendal Bridget 26-45 female British Broadcaster +1084 S2B-014 1 G yes Reynolds Paul 26-45 male British Broadcaster +1085 S2B-015 1 A yes Newscaster Lang Jackie 26-45 female British Broadcaster +1086 S2B-015 1 B yes Hearing Roger male British Broadcaster +1087 S2B-015 1 C yes Reynolds Paul 26-45 male British Broadcaster (Diplomatic Correspondent) +1088 S2B-015 1 D yes Harris Jeremy male British Broadcaster +1089 S2B-015 1 E yes Simpson Bob 46-65 male British "Broadcaster, journalist" +1090 S2B-015 1 F yes Werrell Tim male "Broadcaster, journalist" +1091 S2B-015 1 G yes Quest Richard male Broadcaster (BBC Business Correspondent in USA) +1092 S2B-015 1 H yes Tomkys Sarah 26-45 female British "Broadcaster, journalist" +1093 S2B-015 1 I yes Heather female British County Education Officer +1094 S2B-015 1 J yes McNally male British County Councillor +1095 S2B-015 2 A yes Newscaster Campbell David 26-45 male British Broadcaster +1096 S2B-015 2 B yes Brodie Alex 26-45 male British Broadcaster +1097 S2B-015 2 C yes Hamilton Archie 50 male British Scotland Eton Secondary Politician +1098 S2B-015 2 D yes Laity Mark male British "Broadcaster, journalist" +1099 S2B-016 1 A yes Newscaster Hughes Howard male British Barrister +1100 S2B-016 1 B yes Muirhead Patrick male British "Broadcaster, journalist" +1101 S2B-016 1 C yes Lorimer James male British "Broadcaster, journalist" +1102 S2B-016 2 A yes Newscaster male "Broadcaster, journalist" +1103 S2B-016 2 B yes Atkinson Caroline 26-45 female British "Broadcaster, journalist" +1104 S2B-016 2 C yes Murphy Peter male "Broadcaster, journalist" +1105 S2B-016 2 D yes Farrar-Hockley Gen. Sir Anthony 67 male British Exeter School Secondary British Army General (retired); military historian +1106 S2B-016 3 A yes Newscaster Hughes Howard male British Broadcaster +1107 S2B-016 3 B yes Ashdown Paddy 45 male British India Bedfordshire Public School; Hong Kong University University "Politician, ex-soldier" Chinese Moved to Britain age 4 +1108 S2B-016 3 C yes Ridley Nicholas 62 male British "Eton; Balliol College, Oxford" University "Politician, Civil Engineer" +1109 S2B-016 4 A yes Newscaster Cambourne David 26-45 male British "Broadcaster, journalist" +1110 S2B-016 4 B yes Windsor Elisabeth 46-65 female British London Secondary HM The Queen +1111 S2B-016 4 C yes Connolly Kevin 26-45 male British Broadcaster +1112 S2B-016 4 D yes Peacock Matt 26-45 male British Broadcaster +1113 S2B-017 1 A yes Presenter Kershaw Richard 26-45 male British London Cambridge University; University of Virginia Graduate School University "Broadcaster, journalist" +1114 S2B-017 1 B yes Newscaster Crawford Andrew 26-45 male British "Broadcaster, journalist" +1115 S2B-017 1 C yes MacNeill David 26-45 male British Broadcaster (Washington Correspondent) +1116 S2B-017 1 D yes Orchard Robert 46-65 male British Broadcaster (Political Correspondent) +1117 S2B-018 1 A yes Newscaster Buerk Michael 45 male British Solihull School Secondary "Broadcaster, journalist" +1118 S2B-018 2 A yes Newscaster Clarke Nick male British Broadcaster +1119 S2B-018 2 B yes Llewellyn Tim male British "Broadcaster, journalist" +1120 S2B-018 2 C yes Kinnock Neil 49 male British Wales University of Wales University Politician +1121 S2B-018 2 D yes Richards Stephen male British "Broadcaster, journalist" +1122 S2B-019 1 A yes Presenter Naughtie James 40 male British Scotland Grammar School; Aberdeen University; Syracuse University University "Broadcaster, journalist" +1123 S2B-019 1 B yes Newscaster Green Charlotte 26-45 female British "Broadcaster, journalist" +1124 S2B-019 1 C yes Peel Jane 26-45 female British University Broadcaster (Legal Affairs Correspondent) +1125 S2B-019 1 D yes Smith Peter male British Broadcaster (Business Affairs Correspondent) +1126 S2B-019 1 E yes Simpson Bob 46-65 male British Broadcaster +1127 S2B-019 1 F yes Willis David male British "Broadcaster, journalist" +1128 S2B-019 1 G yes Hoggett Brenda 46 female British Yorkshire "Richmond High School, Yorkshire; Girton College, Cambridge (MA); Gray's Inn" University Law Commissioner "Visiting Professor, King's College, London" +1129 S2B-020 1 A yes Hayton Phillip 44 male British "Keighley, Yorkshire" Secondary "Broadcaster, journalist" +1130 S2B-020 1 B yes Price Lance 26-45 male British Broadcaster (Political Affairs Correspondent) +1131 S2B-020 1 C yes Patten Chris 47 male British London "Balliol College, Oxford" University Politician +1132 S2B-020 1 D yes male Broadcaster +1133 S2B-020 1 E yes Hurd Douglas 61 male British Eton; Trinity College Cambridge University Politician +1134 S2B-020 1 F yes male Broadcaster Unnamed +1135 S2B-020 1 G yes Heseltine Michael 58 male British "Shrewsbury School; Pembroke College, Oxford" University "Politician, businessman" +1136 S2B-020 2 A yes Newscaster Lithgo Lynette 26-45 female British "Broadcaster, journalist" +1137 S2B-020 2 B yes Sopel David male British "Broadcaster, journalist (Political Correspondent)" +1138 S2B-020 2 C yes Heseltine Michael 58 male British "Shrewsbury School; Pembroke College, Oxford" University "Politician, businessman" +1139 S2B-020 2 D yes Newton Tony 56 male British "Trinity College, Oxford" University Politician +1140 S2B-020 2 E yes Hurd Douglas 61 male British "Eton; Trinity College, Cambridge" University Politician +1141 S2B-020 2 F yes Cunningham John 52 male British Yorkshire Jarrow Grammar School; Durham University (PhD) University "Politician, chemist, lecturer" +1142 S2B-021 1 A yes Woodley Paul 26-45 male British Journalist +1143 S2B-021 2 A yes Jameson Sue 26-45 female British Journalist +1144 S2B-021 3 A yes Knight Tim 26-45 male British Journalist +1145 S2B-021 4 A yes Field Catherine 26-45 female British Journalist +1146 S2B-022 1 A yes Narrator Weightman Gavin 26-45 male British Broadcaster +1147 S2B-022 2 A yes Narrator Buerk Michael 45 male British Solihull School Secondary "Broadcaster, journalist" +1148 S2B-023 1 A yes Presenter Tong Pete 26-45 male British London Secondary "Broadcaster, musician" +1149 S2B-023 2 A yes Presenter male British +1150 S2B-023 3 A yes Presenter Byalls Peter 26-45 male British London "Broadcaster, journalist" +1151 S2B-024 1 A yes male British +1152 S2B-024 2 A yes male British +1153 S2B-025 1 A yes Presenter Arnold-Baker Charles 73 male British Poland "Winchester College, Oxford, Inner Temple" University "Visiting Professor, City University" +1154 S2B-026 1 A yes Presenter Richards Jeffrey 26-45 male British University Historian French +1155 S2B-027 1 A yes male British +1156 S2B-028 1 A yes Presenter Priestland Gerald 64 male British Oxford (BA) University "Broadcaster, journalist" +1157 S2B-028 2 A yes Presenter Naughtie James 40 male British Scotland "Grammar School, Aberdeen Univ, Syracuse Univ" University "Broadcaster, journalist" +1158 S2B-029 1 A yes Presenter Sacks Jonathon 43 male British London "Oxford, University of London, Jew's College London" University Chief Rabbi +1159 S2B-030 1 A yes Major John 48 male British London Secondary Politician Prime Minister +1160 S2B-030 2 A yes Kinnock Neil 49 male British Wales University College Cardiff University Politician Welsh Leader of the Opposition +1161 S2B-030 3 A yes Kinnock Neil 49 male British Wales University College Cardiff University Politician Welsh Leader of the Opposition +1162 S2B-030 4 A yes Barnes Rosie 45 female British Birmingham Birmingham University (B Soc Sci) University Politician +1163 S2B-031 1 A yes Debater Alderson John 69 male British Barnsley Middle Temple University Chief Constable (retired) +1164 S2B-031 2 A yes Debater Owen David 58 male British Wales "Harrow, Cambridge, Grays Inn" University Barrister +1165 S2B-031 3 A yes Presenter Durrell Gerald 66 male British India Educated by private tutors in Greece Secondary "Naturalist, writer" +1166 S2B-032 1 A yes Presenter Wilson Edgar 46-65 male British Durham University Writer +1167 S2B-032 2 A yes Presenter Redhead Brian 62 male British Newcastle-upon-Tyne Grammar School; Cambridge University Broadcaster +1168 S2B-033 1 A yes Presenter Norman Barry 58 male British London Highgate School Secondary "Broadcaster, film critic" +1169 S2B-034 1 A yes Presenter Hennessy Peter 46-65 male British Stroud Stroud School; Cambridge; Harvard; LSE University "Visiting Prof of Government, Strathclyde Univ." +1170 S2B-035 1 A yes Debater Redwood John 40 male British London "Kent College, Canterbury; Oxford (MA, DPhil)" University Politician +1171 S2B-035 2 A yes Debater Sked Alan 46-65 male British University +1172 S2B-036 1 A yes Debater Gould Bryan 52 male New Zealand "Auckland University; Oxford (BA, LLB, MA, BCL)" University Politician +1173 S2B-036 2 A yes Debater Foot Paul 54 male British University Journalist +1174 S2B-037 1 A yes Presenter Scarman Leslie 80 male British London Oxford; Middle Temple University High Court Judge (retired) Lord Scarman +1175 S2B-038 1 A yes Presenter Watts Geoffrey male British Broadcaster +1176 S2B-038 2 A yes Presenter Watts Geoffrey male British Broadcaster +1177 S2B-038 3 A yes Presenter Lapotaire Jane 47 female British Ipswich "Grammar School; Theatre School, Bristol" University Actress +1178 S2B-039 1 A yes Presenter Connolly Kevin 26-45 male British "Broadcaster, journalist" +1179 S2B-039 2 A yes Presenter Short Phillip 26-45 male British "Broadcaster, journalist" +1180 S2B-039 3 A yes Presenter Jessell Stephen 26-45 male British "Broadcaster, journalist" +1181 S2B-040 1 A yes Presenter Sacker Stephen 26-45 male British "Broadcaster, journalist" +1182 S2B-040 2 A yes Presenter Kendall Bridget 26-45 female British "Broadcaster, journalist" +1183 S2B-040 3 A yes Presenter Leech Graham 26-45 male British "Broadcaster, journalist" +1184 S2B-041 1 A yes Queen Elizabeth II 46-65 female British London Secondary +1185 S2B-041 2 A yes Lamont Norman 50 male British "Lerwick, Shetland" Cambridge (BA) University Politician +1186 S2B-042 1 A yes Lecturer Denman Hugh 55 male British London "BA, MA, Dip Soc Sci (Oxford)" University Lecturer "French, German, Italian, Russian, Yiddish" +1187 S2B-043 1 A yes Lecturer Charles Wendy 46-65 female British University Lecturer in History +1188 S2B-044 1 A yes male British Actor +1189 S2B-044 2 A yes 26-45 male British University Teacher +1190 S2B-045 1 A yes Lecturer McMaster Peter 46-65 male British University "Director General, Ordnance Survey" "Fellow, Royal Inst. of Chartered Surveyors" +1191 S2B-046 1 A yes Lecturer Freeman Michael 46-65 male British University Professor of Laws +1192 S2B-047 1 A yes Lecturer Williams Shirley 46-65 female British Oxford University; Columbia University University "Politician, lecturer, broadcaster" +1193 S2B-048 1 A yes Lecturer Baldwin Peter 46-65 male British University Businessman +1194 S2B-049 1 A yes Lecturer Palmer 46-65 male British University University Professor +1195 S2B-050 1 A yes Howe Sir Geoffrey 64 male British "Port Talbot, Wales" "Winchester, Cambridge, Middle Temple (MA, LLB)" University "Politician, Barrister" diff --git a/ice/test.cpp b/ice/test.cpp new file mode 100644 index 0000000..f9baacb --- /dev/null +++ b/ice/test.cpp @@ -0,0 +1,187 @@ +#include +#include "icectrl.cpp" +strings fillstr(entry& e) { + // oh this is so stupid. Normalise requires strings, which it then countpaths + // for me. So I have to take my clean-room hashes and recreate the strings so + // that normalise can turn them back into hashes. + strings ss; + for(entry::const_iterator i = e.begin(); i!=e.end(); i++) { + for(int j = 0; j < (int)i->second; j++) { + ss.push_back(i->first); + } + } + return ss; +} + /** + * Tested so far: + * read_file + * count + * concat + * Though I should probably test them with real data and compare to + * Python-checked answers + * entry typedef + * zip_ref + * r, r_sq + * Have not tested: + * Major numerical imbalances (between large and small1 and small2) + * Major imbalance in number of zeros + * Specifically, the first question is relevant in deciding whether to cat + * the full corpora or to sample them (in icectrl.cpp:compare:166) + * + * The paper claims that the last 'variety' stage of normalisation is not + * necessary since it is a linear transformation and is only useful in ranking + * the most telling trigrams. I am not even sure it is helpful for that... + * This is run by the lines 105-108 and the expression + * 2.0 * n / total_n in 115,116 + * + * Hey! The r measure of normalise(concat(a), concat(b)) is really similar to + * The r of normalise(concat(shuffle(a,b,size=a), shuffle(a,b,size=b))) + * This is all wrong! It's like 247966 vs 247087. It's a tiny tiny bit lower + * when it should be much lower. If London and Scotland ARE different + * + * TODO: Test shuffle on a short list. If it works, then try to figure out + * another reason that compareshuffle gets the answer backward. + */ +int main(int argc, char** argv) { + /*pair test = readfile("test.dat"); + cout << test.first << endl; + cout << test.second[1][1] << endl; + for(dialect::const_iterator i=test.second.begin(); i!=test.second.end(); i++) { + cout << "***"; + for(vector::const_iterator j = i->begin(); j!=i->end(); j++) { + cout << "|" << *j << "|"; + } + } + cout << endl; + entry h; + h["a"] = 15.0; + h["b"] = 10.0; + //h["c"] = 5.0; + //h["d"] = 1.0; + entry d; + d["a"] = 90.0; + d["b"] = 10.0; + //d["c"] = 4.0; + //d["e"] = 2.0; + cout << "----zipped-----" << endl; + sample s = zip_ref(h,d); + for(sample::const_iterator i = s.begin(); i!=s.end(); i++) { + cout << i->second.first << "| |" << i->second.second << endl; + } + cout << "------r unscaled-------" << endl; + cout << r(s) << endl; + cout << "-----r^2 unscaled------" << endl; + cout << r_sq(s) << endl; + // normalisation: + double totalh = 22.0; + double totald = 27.0; + cout << "-----normalised-------" << endl; + sample hd = normalise(fillstr(d), fillstr(h)); + cout << r(hd) << endl; + for(sample::const_iterator i = hd.begin(); i!=hd.end(); i++) { + cout << i->first << ":" << i->second.first << "," + << i->second.second << endl; + } + // is,js = [1,2,3,4],[5,6,7] + vector is; + vector js; + is.push_back(1); + is.push_back(2); + is.push_back(3); + is.push_back(4); + js.push_back(5); + js.push_back(6); + js.push_back(7); + pair, vector > ijs = shuffle(is, js); + cout << "shuffled is"; + for(int i = 0; i < is.size(); i++) + cout << ijs.first[i]; + cout << "shuffled js"; + for(int i = 0; i < js.size(); i++) + cout << ijs.second[i]; + dialect maclisp; + dialect interlisp; + vector v; + v.push_back("a"); + v.push_back("b"); + v.push_back("b"); + v.push_back("a"); + v.push_back("c"); + maclisp.push_back(v); + v.clear(); + v.push_back("a"); + v.push_back("b"); + v.push_back("a"); + v.push_back("d"); + v.push_back("d"); + maclisp.push_back(v); + v.clear(); + v.push_back("a"); + v.push_back("b"); + v.push_back("b"); + v.push_back("c"); + v.push_back("c"); + interlisp.push_back(v); + v.clear(); + v.push_back("c"); + v.push_back("e"); + v.push_back("c"); + v.push_back("c"); + v.push_back("e"); + interlisp.push_back(v); + v.clear(); + cout << compareshuffle(maclisp, interlisp) << endl;*/ + pair scotlandpath = readfile("Scotland-path.dat"); + pair scotlandtrigram = readfile("Scotland-trigram.dat"); + pair stolcnadpath = readfile("Stolcnad-path.dat"); + pair stolcnadtrigram = readfile("Stolcnad-trigram.dat"); + pair londonpath = readfile("London-path.dat"); + pair londontrigram = readfile("London-trigram.dat"); + pair ldononpath = readfile("Ldonon-path.dat"); + pair ldonontrigram = readfile("Ldonon-trigram.dat"); + cout << "London vs Scotland: "; + cout << average_r(londonpath.second, scotlandpath.second) << endl; + /*cout << "compare = {"; + cout << " 'permutation-trigrams-original': ["; + cout << comparepermutation(londontrigram.second, scotlandtrigram.second) << endl; + cout << "]," << endl << " 'permutation-trigrams-mixed': ["; + cout << comparepermutation(ldonontrigram.second, stolcnadtrigram.second) << endl; + cout << "]," << endl << " 'permutation-paths-original': ["; + cout << comparepermutation(londonpath.second, scotlandpath.second) << endl; + cout << "]," << endl << " 'permutation-paths-mixed': ["; + cout << comparepermutation(ldononpath.second, stolcnadpath.second) << endl; + cout << "]," << endl << " 'shuffle-trigrams-original': ["; + cout << compareshuffle(londontrigram.second, scotlandtrigram.second) << endl; + cout << "]," << endl << " 'shuffle-trigrams-mixed': ["; + cout << compareshuffle(ldonontrigram.second, stolcnadtrigram.second) << endl; + cout << "]," << endl << " 'shuffle-paths-original': ["; + cout << compareshuffle(londonpath.second, scotlandpath.second) << endl; + cout << "]," << endl << " 'shuffle-paths-mixed': ["; + cout << compareshuffle(ldononpath.second, stolcnadpath.second) << endl; + cout << "]," << endl << " 'original-trigrams-original': ["; + cout << compare(londontrigram.second, scotlandtrigram.second) << endl; + cout << "]," << endl << " 'original-trigrams-mixed': ["; + cout << compare(ldonontrigram.second, stolcnadtrigram.second) << endl; + cout << "]," << endl << " 'original-paths-original': ["; + cout << compare(londonpath.second, scotlandpath.second) << endl; + cout << "]," << endl << " 'original-paths-mixed': ["; + cout << compare(ldononpath.second, stolcnadpath.second) << endl; + cout << "]}"; */ + + /* d2 = {'a': 0.33333333333333331, 'c': 0.14814814814814814, 'b': 0.44444444444444442, 'e': 0.07407407407407407} + * h2 = {'a': 0.45454545454545453, 'c': 0.22727272727272727, 'b': 0.27272727272727271, 'd': 0.045454545454545456} + * hd = dct.zip(d,h, default=0) + * hd2 = dct.zip(d2,h2, default=0) + * add = lambda (x,y): x+y + * hdsum = dct.map(add, hd) + * hd2sum = dct.map(add, hd2) + * sentence = dct.map(lambda ((fi,fj), t, tf):(fi*t/tf, fj*t/tf), dct.zip(hd2,hdsum, hd2sum)) + * sentence = {'a': (8.0384615384615383, 10.961538461538462), 'c': (3.551569506726457, 5.4484304932735421), 'b': (11.15492957746479, 6.8450704225352101), 'e': (2.0, 0.0), 'd': (0.0, 1.0)} + * variety = 2 * len(hd) / (sum(h.values()) + sum(d.values())) + * variety = 0.32653061224489793 + * normed = dct.map(lambda (ci,cj): (ci*variety,cj*variety), sentence) + * normed = {'a': (2.6248037676609104, 3.5792778649921506), 'c': (1.1596961654617002, 1.7790793447423809), 'b': (3.6424259844782982, 2.2351250359298644), 'e': (0.65306122448979587, 0.0), 'd': (0.0, 0.32653061224489793)} + * def r(mns): return sum(abs(m-n) for m,n in mns) + * r(normed.values()) = 3.96075 + */ +} diff --git a/ice/test.dat b/ice/test.dat new file mode 100644 index 0000000..a22bba5 --- /dev/null +++ b/ice/test.dat @@ -0,0 +1,20 @@ +Test +a +a +a +*** +b +b +a +a +*** +a +a +a +a +a +*** +b +b +b +b diff --git a/ice/test.py b/ice/test.py new file mode 100644 index 0000000..5fe996a --- /dev/null +++ b/ice/test.py @@ -0,0 +1,186 @@ +import tester +import iceread +import path +import extract +from util import dct +from util.lst import concat +from util.fnc import cur +tree = iceread.sentences('''[ <#X9987:1:A>] +root + A + 1 + 2 + 3 + B + i + ii + x + y + C + 1 + 2 + in + out +[ <#X9987:1:?>] +A + 1 + i + ii + 2 + x + y +[ totally missing!??] +root + A + arf + quad + quam + quim + B + neighbourhood'''.split('\n')) +acltree = iceread.sentences('''[ <#1:1:A>] +A + B + p + q + B + r + s +[ <#2:1:A>] +A + B + p + q + r + s'''.split('\n')) +palmtree = iceread.sentences('''[ <#1:1:A>] +S + Ns + the + closest + thing + P + to + Ns + a + home + Vsb + was + N + a + string + hammock + S+ + and + +, + Fa + Rq + when + Ni + it + Vd + rained + +, + Np + some + palm + fronds + Vd + draped + P + over + sticks'''.split('\n')) +def testPaths(self): + acls = map(path.paths, acltree["A"]) + test(acls, + [["A-[-B-p", "A-]-B-q", "A-B-[-r", "]-A-B-s"], + ["A-[-B-p", "A-B-q", "A-B-r", "]-A-B-s"]]) + ps = map(path.paths, palmtree["A"]) + test(ps, [['S-[-Ns-the', + 'S-Ns-closest', + 'S-Ns-thing', + 'S-Ns-P-[-to', + 'S-Ns-P-Ns-[-a', + 'S-]-Ns-P-Ns-home', + 'S-Vsb-was', + 'S-N-[-a', + 'S-N-string', + 'S-N-hammock', + 'S-N-S+-[-and', + 'S-N-S+-+,', + 'S-N-S+-Fa-[-Rq-when', + 'S-N-S+-Fa-Ni-it', + 'S-N-S+-]-Fa-Vd-rained', + 'S-N-S+-+,', + 'S-N-S+-Np-[-some', + 'S-N-S+-Np-palm', + 'S-N-S+-]-Np-fronds', + 'S-N-S+-Vd-draped', + 'S-N-S+-P-[-over', + ']-S-N-S+-P-sticks']]) + test({'hi-[-child-grandchild0':1, + ']-hi-child3': 1, + 'hi-child2':1, + 'hi-]-child-grandchild1':1}, + dct.count(path.paths(iceread.sentences('''[ <#1:1:A>] +hi + child + grandchild0 + grandchild1 + child2 + child3'''.split('\n'))['A'][0]))) +def testRead(self): + test(["A"], palmtree.keys()) + test(set(["A", "?", '']), set(tree.keys())) + test({'': [('root', + [('A', [('arf', []), ('quad', []), ('quam', []), ('quim', [])]), + ('B', [('neighbourhood', [])])])], + '?': [('A', [('1', [('i', []), ('ii', [])]), + ('2', [('x', []), ('y', [])])])], + 'A': [('root', + [('A', [('1', []), ('2', []), ('3', [])]), + ('B', [('i', []), ('ii', [('x', []), ('y', [])])]), + ('C', [('1', []), ('2', [('in', []), ('out', [])])])])]}, + tree) +def testFiltered(self): + test(194, len(list(open('sspeaker-filter.csv')))) +def testBirthplace(self): + ss = iceread.groupby('sspeaker-filter.csv', 12) + test(set(["Wales", "Scotland", "Southeast","West Midlands", + "Northeast","Southwest", "East Midlands", "East", "London", + "Yorkshire", "Northwest", "India", "China", "Spain"]), set(ss)) + #test({}, ss) +def testTinify(self): + regions = {'The Moon!':map(path.paths, concat(acltree.values())), + "Bikini Gulch":map(path.paths, concat(tree.values()))} + test([2,3], map(len, regions.values())) + test([['root-[-A-1', + 'root-A-2', + 'root-]-A-3', + 'root-B-[-i', + 'root-B-ii-[-x', + 'root-]-B-ii-y', + 'root-C-[-1', + 'root-C-2-[-in', + ']-root-C-2-out'], + ['root-[-A-arf', + 'root-A-quad', + 'root-A-quam', + 'root-]-A-quim', + ']-root-B-neighbourhood'], + ['A-[-1-i', + 'A-]-1-ii', + 'A-2-[-x', + ']-A-2-y']], + regions["Bikini Gulch"]) + neoregions = extract.tinify(regions) + test(2, len(neoregions)) + test({'The Moon!': [['7', '5', "'", '6'], ['7', '0', '.', '6']], + 'Bikini Gulch': [['"', ',', '+', '!', '*', '4', '-', '3', ')'], + ['1', '%', '(', '&', '$'], + ['/', ' ', '#', '2']]}, + neoregions) +def DONOTtestCorpus(self): + # this only works on jones since it actually slurps in the corpus files + pass +tester.runTest(__import__(__name__), locals()) diff --git a/qual.tex b/qual.tex new file mode 100644 index 0000000..76b701a --- /dev/null +++ b/qual.tex @@ -0,0 +1,901 @@ +% \usepackage{tipa} +% \usepackage{graphicx} +% \newcommand{\bibcorporate}[1]{#1} % stolen from Erik Meijer's apacite.tex +\documentclass[11pt]{article} +\usepackage{setspace} + +% \usepackage{acl07} +\usepackage{robbib} +\title{Comparison of Phonological and Syntactic Distance Measures} +\author{Nathan Sanders} +\begin{document} +\maketitle +%\doublespacing +\section{Introduction} + +I applied existing dialectometric techniques to the English of Britain +and introduced new techniques for measuring both phonological and +syntactic distance. Comparisons between distance have become rarer +since computational linguistics has taken over dialectometry. I also +compare the results of the two, although we will see that there is a +reason comparisons are rare; they are not very informative. + +The dominant phonological distance measure in computational +dialectometry is Levenshtein distance or a variant +thereof. Statistical methods are slowly being introduced, such as the +information measure of \cite{hinrichs07} and \cite{sanders08}. +I developed a statistical method that uses a naive Bayes +classifier, similar to language identification methods developed in +the early 90s. + +Syntactic distance has not been measured well in computational +dialectometry. Nerbonne and Wiersma have measured syntactic distance +statistically using a permutation test, with trigram features designed +to capture at least surface syntax. I tried the same test with +leaf-ancestor paths as features. + +\section{Background} +\subsection{S\'eguy} +Measurement of linguistic similarity has always been a part of +linguistics from its beginning, with various degrees of +respectability. Until 1973, when S\'eguy dubbed a new set of +approaches `dialectometry', these methods lagged behind the rest of +linguistics in formalisation. However, S\'eguy's quantitative analysis +of Gascogne French, while not aided by computer, was the predecessor +of more powerful statistical methods that essentially required the use +of computer as well as establishing the field's general dependence on +well-crafted dialect surveys that divide the incoming data along +traditional linguistic boundaries: phonology, morphology, syntax, etc. +This makes both collection and analysis easier, although it requires +much more work when trying to produce a complete picture of dialect +variation. + +The ALF project, which S\'eguy directed, begin in 195? to collect data +in a dialect survey which asked speakers from the towns of Gascogne +questions informed by different areas of linguistics. For our +purposes, the most interesting are the phonological data: these were +individual words designed to capture the already-studied variation in +the area in order to characterise its extent precisely. + +The atlases, as eventually published, contained not only annotated +maps, but some analysis as well. This analysis was what S\'eguy named +the dialectrometry. It was not primarily generated by an +algorithm executing on a computer, but by linguists +counting the collected data by hand. The analysis is accordingly +linguistically sophisticated and numerically naive: isoglosses were +posited from observations of type counts along with their arrangement +on the map. + +\subsection{Gersic} +At or just before the same time as the Atlas was finally published in +1973, Gersic proposed a computational method for measuring distance +between to phonological segments. Segments are specified as a vector +of features---consonants have +one feature set, while vowels have another. Features are given numeric +values. For example, a [+voice] segment will have $1$ in the third +position of the feature vector, while a [-voice] segment will have +$0$. Gersic then gives a +function $d$ that gives the distance between segments: +\[ d(i,j) = \sum_{k=1} |a_{i_k} - a_{j_k}|\] Where $a_i$ is the first +segment +being compared and $a_j$ the second. However, the equation is easier +to understand if summarised by the English prose ``count the number of +features with values that differ between segments''. Gersic did not +provide a way to compare vowels with consonants, or a way to combine +the segment distances into word distances, but those techniques would +be developed later. + +\subsection{Goebl} + +Later, Hans Goebl emerged as a leader in the field of dialectometry, +formalising the aims and methods of dialectometry. His primary +contribution was development of various methods to combine individual +distances into global distances and from there global clusters. These +methods were more sophisticated mathematically than previous +dialectometry, and operated with any features extracted from the data. His +analyses have mostly used the Atlas Linguistique de Francais +(ALF). + +In Goebl (2006), he provides a summary of his work, including +definitions of the measures Relative and Weighted Identity +Value. These measures are independent of the source, capable of +extracting distances from any set of features, which need not be +specified a priori, unlike Gersic's method. For example, Relative +Identity Value, when comparing any two segments, counts the number of +features which share the same value, and divides by the number of +shared features. This has the advantage that it is robust in the fact +of (1) unshared features and (2) missing data. The result is a single +percentage that indicates the relative similarity. Calculating this +distance between all pairs of things to be compared produces a matrix +which can be used for clustering or other purposes. The equation is +actually: + +\begin{equation} + \frac{\textrm{identical}_{jk}} {\textrm{identical}_{jk} - \textrm{unidentical}_{jk}} +\label{riv} +\end{equation} +For some items being compared $j$ and $k$. In this case +\textit{identical} is +\begin{equation} + \textrm{identical}_{jk} = |f \in \textrm{\~N}_{jk} : f_j = f_k| +\end{equation} +where $i$ is each feature shared by $j$ and $k$ (called +$\textrm{\~N}_{jk}$). \textit{unidentical} is defined similarly, except +that it looks at all features, not just the shared features. +\begin{equation} + \textrm{unidentical}_{jk} = |f \in \textrm{N} : f_j \neq f_k| +\end{equation} + +Additionally, Goebl +describes a refinement of the method called Weighted Identity +Value. This measure stems from the idea that some differences are +more important than others, in particular that more information arises +from feature values that only happen a few times rather than those +values that characterise a large number of the items being studied. +This idea shows up later in the permutation tests used by Nerbonne and Wiersma. + +The mathematical implementation of this idea is fairly simple. Goebl +is interested in feature values that occur only a few times. This is +because, if a feature has some value shared by all of the items being +compared, then it provides {\it no} useful information for +distinguishing the items---they all belong to the same group. +The situation improves if all but one item +share the same value for a feature; at least there are now two +groups, although the larger group is still not very informative. +The most information is available if each item being studied +has a different value for a feature; the items fall trivially into +singleton groups, one per item. + +Equation \ref{wiv-ident} works by discounting (lowering) +the \textit{identical} count from equation \ref{riv} by +the amount of information that feature value conveys. The +amount of information, as discussed above, is based on the number of +items that share a particular value for a feature. If +the worst case, in which all items share the same value for some +feature, then that feature is useless, so \textit{identical} should be +discounted all the way to zero. The equation for \textit{identical} now becomes +\begin{equation} + \textrm{identical} = \sum_f \left\{ + \begin{array}{ll} + 0 & \textrm{if} f_j \neq f_k \\ + 1 - \frac{\textrm{agree}f_{j}}{(Ni)w} & \textrm{if} f_j = f_k + \end{array} \right. +\label{wiv-ident} +\end{equation} + +\begin{equation} \sum_i \frac{\sum_f \left\{ + \begin{array}{ll} + 0 & \textrm{if} f_j \neq f_k \\ + 1 - \frac{\textrm{agree}f_j} {(Ni)w} & \textrm{if} f_j = f_k +\end{array} \right.} + {\sum_f \left\{ + \begin{array}{ll} + 0 & \textrm{if} f_j \neq f_k \\ + 1 - \frac{\textrm{agree}f_j} {(Ni)w} & \textrm{if} f_j = f_k + \end{array} \right. - |f \in \textrm{N} : f_j \neq f_k|} + \label{wiv-full} + \end{equation} + + where $\textrm{agree}f_{j}$ is the number of candidates that agree + with item $j$ on feature $f$ and $Ni$ is the total number of + candidates ($w$ is the weight, discussed below). Because of the + piecewise definition of \textit{identical}, this number is always at + least $1$ because $f_k$ agrees already with $f_j$. The effect of + this equation is to take the count of shared features and weight + them by the size of the sharing group. The features that are shared + with a large number of other items get larger fraction of the normal + count subtracted. + +For example, let $j$ and $k$ be some English segments /t/ and /s/, +respectively, which share the features \textit{place} and +\textit{voice}. Coronals +and voiceless sounds are both common in English, but assume for this +example that voiceless segments occur more often. There will be more +agreeing segments in lack of voicing than those agreeing in place. So the +total weight of \textit{place} between /t/ and /s/ will be more than +that of \textit{voice}: In equation \ref{wiv-place}, we see that 1000 +of the 2000 segments in the corpus agree with /s/ in place, while 1500 +agree in voice. + +\begin{equation} + 1 - \textrm{agree}place_{jk} = 1 - 1000/2000 = 1 - 0.5 = 0.5 + \label{wiv-place} + \end{equation} + +\begin{equation} + 1 - \textrm{agree}voice_{jk} = 1 - 1500/2000 = 1 - 0.75 = 0.25 + \label{wiv-voice} +\end{equation} + +So these two features, once weighted, will no longer contribute a full +$2.0$ to the amount of agreement between the two segments /s/ and /t/, +but only $1.0$. Their combined weight has been halved because both +features are so common as to not need further explanation. +Therefore, as \textit{agree} grows larger, it subtracts more and more +from the original value of 1. +The final value, $w$, which is what gives the name ``weighted identity +value'' to this measure, provides a way to control how much is +discounted. A high $w$ will subtract more from uninteresting groups, +so the contribution of the above two features might be discounted to +$0.6 + 0.3 = 0.9$ given a smaller $w$, for example. + +% William. Idsardi is an OT critic based on computability grounds + +% NOTE: This is a lot like avoiding excessive neutralisation in a +% paradigm---you don't want to overdo neutralisation because otherwise +% the underlying form becomes quite distant from the surface form. + +\subsection{Phonological Distance} + +It is at this point that the two types of analysis, phonological and +syntactic, diverge. Although Goebl's techniques are general enough to +operate over any set of features that can be extracted, later work +uses properties specific to the type of data in order to achieve +better results. Specifically, the application of computational +linguistics to dialectometry beginning in the 1990s introduced +methods from other fields. These methods, while generally giving more +accurate results quickly, are tied to the type of data on which they +operate. + +\subsubsection{Kessler} + +The most significant of these methods for phonological distance was +introduced to dialectometry by \namecite{kessler95}. Kessler used +Levenshtein distance \cite{lev65} to determine distance between +individual words and then just used simple addition to combine the +distances. Levenshtein distance is a simple idea---simply count the +number of differences between two strings. The intent is the same as +Goebl's Relative Identity Value, using single characters of a word as +features. However, since strings are an ordered sequence of characters +in this model, determining the best set of correspondences between two +strings is a non-trivial problem. This is the problem that +Levenshtein's algorithm solves. It tries all possible alignments and +remembers the best ones using a dynamic programming algorithm. The +alignment generated by the algorithm is guaranteed to have the most +possible correspondences between the two input strings. Like Goebl's +measures, Levenshtein distance is in principle applicable to any +ordered sequence and as such has been used in many fields +\cite{sankoff83}. However, its discovery of correspondence makes it +particularly suited for phonology. + +The Levenshtein distance algorithm models alignment +as the series of changes necessary to convert the first sequence to +the second. This means that input to the algorithm includes the cost +of changes, in addition to the two sequences. Three changes are +typically specified: insertion, deletion, and substitution. Others have +been proposed for use in phonology, +such as metathesis (see \cite{kondrak02} for an +example), but since metathesis can be modelled as an insertion and a +deletion, there is not much reason unless it is deemed to be very +common for some corpus. +Given these inputs, the algorithm calculates the number of each +operation necessary to convert the first sequence to the +second. Finding the lowest total operation cost produces the highest number of +correspondences. + +In a character-based model, insertion and deletion are the primitive operations, +with a cost of one each. Substitution is one insertion and one +deletion, giving it a cost of two. However, substitution of a character +for itself changes nothing and thus has zero cost. +%Given these functions, the +%Levenshtein algorithm will return the minimum number of insertions and +%deletions necessary for transforming the source to the target. + +The formal definition of the functions $ins$, $del$, and $sub$ +for characters is +\[ \begin{array}{l} + ins(t_j) = 1 \\ + del(s_i) = 1 \\ + sub(s_i,t_j) = \left\{ + \begin{array}{ll} + 0 & \textrm{if $s_i=t_j$} \\ + 2 & \textrm{otherwise} + \end{array} \right. + + \end{array} +\] + +For example, with these costs, the distance between \textit{sick} and +\textit{tick} is two---a substitution of t for s. The distance between +\textit{dog} and \textit{dog} is zero. The distance between +\textit{dog} and \textit{cat} is six because none of the characters +correspond, so three insertions and three deletions are needed to +convert \textit{dog} to \textit{cat}. Not all calculations are so +easy. The distance between \textit{realty} and \textit{reality} is a +single insertion. The distance between \textit{nonrelated} and +\textit{words} is 9, not 15 ($10 + 5$), because the characters `o-r-d' +are in correspondence. While a linguist can easily learn to calculate Levenshtein +distance, an algorithm does not learn and must have a systematic way +to choose the best alignment. + +To do this, Levenshtein's algorithm must provide a way to build up +the distance between two strings based on smaller substrings. +This leads to a recursive algorithm in which Levenshtein distance +between two strings is defined in terms of the cheapest of three +possible combinations of source/target substrings plus an operation to +produce the two strings. Let us take as an example the distance +between the source ``cab'' and the target ``cob''. The three cases are +as follows: + +\begin{enumerate} +\item Insertion of `b' to ``ca'' to produce +``cob''. Insertion costs 1, and the distance between ``ca'' and +``cob'' is 3, so the cost of this case is 4. +\item Deletion of `b' from ``cabb'' to produce ``cob''. Deletion costs + 1, and the distance between ``cabb'' and ``cob'' is 3, so the cost + of this case is 4. +\item Substitution of `b' to `b' in ``ca'' to produce + ``co''. Substitution of identical characters costs 0, and the distance + between ``ca'' and ``co'' is 2 because the substitution of `o' for + `a' already cost 2. The resulting cost of this case is 2. +\end{enumerate} + +For this example, the substitution case is the cheapest. It is notable +that the substrings in each of the three cases can be derived for any +pair of source/target strings. There is one case for each of the +operations specified above. This leads to the following formal +definition of Levenshtein's distance algorithm. + +For each character $s_i \in S$ and $t_j \in T$ for any word $S$ and $T$, +\[ \begin{array}{rl} + levenshtein(s_i,t_j) = minimum( & ins(s_i)+levenshtein(s_{i-1},t_j),\\ +& del(t_j)+levenshtein(s_i,t_{j-1}, \\ +& sub(s_i,t_j)+levenshtein(s_{i-1},t_{j-1})) + \end{array} +\] +The total distance is $levenshtein(S_{|S|},T_{|T|})$. + +This recursive definition of distance is most efficiently realised by +storing previous distances in a table. In addition, the table make a +nice visualisation of the algorithm's operation. +For example, finding +the Levenshtein distance from ``ART'' +to ``CAT'' creates the table in figure \ref{art2cattable}. In this +table, the substring cases for ``ART'' and ``CAT'' can be found in the +square above for insertion, the square to the left for deletion and +the diagonal above-left square for substitution. +In this +table, insertion corresponds to a downward move, deletion to a +rightward move, and substitution a diagonal move. The total +Levenshtein distance is found at the bottom-righthand corner, but the +distances to all intermediate forms are stored in the table as +well. The intermediate form ``CATART'', for example, is obtained by +inserting three times without any deletions or substitutions. Its +cost of 3 is found at the bottom of the first column. + +\begin{figure} +\caption{The distance table for ``ART'' to ``CAT''} + +\begin{center} +\begin{tabular}{c|c|c|c|c} +%\hline + & & A & R & T \\ +\hline + & $\mathbf{0}$ & 1 & 2 & 3 \\ +\hline +C & $\mathbf{1}$ & 2 & 3 & 4 \\ +\hline +A & 2 & $\mathbf{1}$ & $\mathbf{2}$ & 3 \\ +\hline +T & 3 & 2 & 3 & $\mathbf{2}$ +% \hline +\end{tabular} + +\end{center} + +\label{art2cattable} +\end{figure} + +The optimal path is shown in bold. Notice that it +follows the diagonal for free substitutions and propagates either down or right +in their absence. The final distance is two, indicating that two +primitive operators are required; that is, two insertions or deletions. +In fact, the table gives +them: insert `C' to obtain ``CART'', moving down in the table; then +delete `R' to obtain ``CAT'', moving left in the table. `A' and `T' +are common to both words and both produce a diagonal move. + +% example here +% then mention Gersic again (remember him?) +% then jump over to Dunning and all the language identification work +% that happened in the early 90s +\subsubsection{Heeringa} + +Variations on this theme have been explored, and best +described in Heeringa 2004. Starting with \cite{nerbonne97}, he +augmented the distance definition so that substitution cost was based +on the number of features that would have to change. This provides +more precision, and is based on phonological theory. Later, he also +tried weighting features by information gain (Nerbonne and Heeringa +1998?). In his dissertation, \namecite{heeringa04} tried an even more +phonetic method when he defined the substitution cost between segments +as the total distance between the first two formants, as measured in +barks. However, because he did not have access to the original speech +of the dialect data he was measuring, this substitution cost was +uniform across all instances of a particular segment. + +This section is still a summary. Some detail in the methods needs to +be added still. The following paragraphs were moved from the method +section were they are out of place. + +The most direct way to refine Levenshtein distance to take advantage +of linguistic knowledge is by +changing the definitions of $ins$, $del$, and $sub$ to take into +account phonetic +and phonological properties of segments. When segments are treated as +feature bundles instead of merely being atomic, \cite{nerbonne97} +propose that the substitution distance between two segments simply be +the number of features that are different. Two identical segments will +therefore have a substitution distance of zero; segments phonetically +similar will have a small distance. For example, [k] and [g] would +have a distance of one in this system. + +Although it increases precision, feature-based substitution causes a +number of complications. The first is that substitution distance +becomes complicated when not all features are specified for every segment. This is +the case, for example, between the vowels and consonants. +The minimum difference must be at least the number of unshared +features, such as \emph{Advanced Tongue Root} for vowels or +\emph{obstruent} for consonants. In other words, the minimum segment +distance will always be at least the sum of the non-shared +features. The distance of the shared features can then be added on to +this baseline. %This is known as the Hamming, or Manhattan distance +%(cite Kondrak and Nerbonne or Heeringa on this after verifying it). +For example, if a consonant with seven features shares only two +features with a five-feature vowel, the minimum distance will be eight: +\[ (7 - 2) + (5 - 2) = 5 + 3 = 8 \] As a result, the range of +distances possible will be have a minimum of 8 if all shared features +match and a maximum of 10 if none do. + +The second complication is obtaining definitions for $ins$ and $del$ +once $sub$ is defined. It would be best to retain the original +proportions---substitution should cost twice as much as insertion and +deletion. To deal with substitution's variable cost, then, insertion and +deletion should be averages. To find the average substitution cost, one can + take the average cost of substituting every character +for every other character. Then $ins$ and $del$ return half of this +average. With these three functions defined, the table-based algorithm +given above can combine feature distances to find the minimum word distance. + +\subsubsection{Statistical approaches} +Recent approaches to dialect distance have gone back almost to Goebl's +definitions, but with more emphasis on information theoretic measures +to help extract information. For example, \namecite{sanders08} gives a +method called Maximum Likelihood distance that uses a naive Bayes +classifier trained on bigrams. \namecite{hinrichs07} uses vector math or +something to do nearly the same thing. Maximum Likelihood distance is +described here. + +\label{dunningalgorithm} + +\cite{dunning94} gives a method for language classification that uses +a simple Markov-based bigram language model. Essentially, it addresses +the question ``How likely was the training corpus to have generated +the test corpus?''. The method starts with Bayes' Law in equation +\ref{bayes} and makes the maximum likelihood assumption to obtain the +na\"ive Bayes classifier in equation \ref{naivebayes}. The na\"ive +Bayes classifier assumes a uniform prior, and assumes that the test +data have a probability of one. + % or is it the training data? hmm +With the bigram Markov model, the maximum likelihood estimation (MLE) is +easily computed as in equation \ref{bigramprod}. + +\begin{equation} +\label{bayes} +P(training|test) = \frac{P(test|training) P(training)}{P(test)} +\end{equation} + +\begin{equation} +\label{naivebayes} +P(training|test) = P(test|training) +\end{equation} + +\begin{equation} +\label{bigramprod} +MLE = \prod_{i=1}^n P(bigram_i) +% ought to come up with a better name for the lhs. steal from Dunning k +\end{equation} + +Dunning then chooses the training language that maximizes the +likelihood for +the test word list. This modification alters only which side of +the comparison is being varied: Dunning has only one word list, which +is then compared to many possible languages. This method has only one +training language, the target, but estimates the distance from +multiple test word lists. + +% Essentially, this reverses the +% question by keeping the training corpus constant and testing against +% multiple sets of data. The likelihoods produced by this can be used as +% a distance measure. + +For example, assume the following +artificial training language ``ababcaaaaaa''. The bigrams of this +language are ``ab'', ``ba'', ``ab'', ``bc'', \ldots Then the frequency +of each bigram can be calculated: + +\begin{tabular}{ccc} +P(``aa'') = & $\frac{5\ occurrences}{10\ bigrams}$ & = 0.5 \\ +P(``ab'') = & $\frac{2}{10}$ & = 0.2 \\ +P(``ba'') = & $\frac{1}{10}$ & = 0.1 \\ +P(``bc'') = & $\frac{1}{10}$ & = 0.1 \\ +P(``ca'') = & $\frac{1}{10}$ & = 0.1 \\ +\end{tabular} + +If the estimator is asked to classify the test word ``abc'', it would +be broken into the bigrams ``ab'' and ``bc'', giving the likelihood +P(``ab'') $\cdot$ P(``bc'') $= 0.2 \cdot 0.1 = 0.02$. In comparison, +the string ``aab'' would have the likelihood P(``aa'') $\cdot$ +P(``ab''') $= 0.5 \cdot 0.2 = 0.1 $. ``aab'' is therefore closer to +the language that generated the training corpus, despite the fact that +``abc'' actually occurs in the training. + +Unfortunately, this estimator needs refinement in a several areas. The +worst problem is that it gives zero probability for any bigram that +does not occur in the training, such as ``ac'' in the example +above. This single factor, P(``ac'')$=0$, causes the estimated +probability of the entire test string to fall to zero---in other +words, saying that the distance between the two languages is +infinite. This is a real problem when the test corpora consist of +phonetically disordered speech, as in our experiments. + +The solution is to smooth the input, preventing the appearance of +zero probabilities. Smoothing allocates some of the probability space +to unseen bigrams. The smoothing method used here is the +Good-Turing method, first presented by \cite{good53}. +%and explained in \namecite{jurafskymartin}. +Good-Turing smoothing estimates the counts of bigrams seen N times +from the counts of bigrams seen N+1 times. The precise equation used to +determine the expected value for a bigram +seen a certain number of times is +$r^* = (r+1)(n_{r+1} / n_r)$. + +For the most interesting case, previously unseen bigrams, $r=0$ +because that is the number of times these bigrams have +appeared. Then $r+1=1$ and $n_1$ is the number of different +bigrams that have occurred only once. Finally, $n_0$ is the number of +bigrams that have never occurred, which can be found by subtracting +all bigrams seen any number of times from the total number of possible +bigrams. Of course, Good-Turing smoothing is applied to +higher numbers as well: for example, the number of bigrams seen six +times is estimated from the number of bigrams seen seven times by +using the appropriate values of $r, n_6, \textrm{and } n_7$. + +Two minor problems remain. First, longer words give lower likelihoods. To ensure +that likelihoods of different test corpora are +comparable, we scale the results of each test corpus by the length of +the corpus. +Second, it is more convenient for both human and computer to use +some other measure than raw likelihoods. Since likelihoods are just +probabilities, 1.0 means ``identical to training language'' and 0.0 means +``infinite distance from training language''. +To improve intuitive understanding of the results, we +would like a distance measure that is greater +for weaker matches between training and test. In addition, storing very small +probabilities can be problematic when using hardware-native floating +point numbers. +Taking the negative logarithm of the likelihoods solves both of these +problems: the logarithm converts a 0--1 range to a 0--$-\infty$ range, +which, when negated, produces a number that increases in a way that +corresponds nicely with intuitions of distance. + +\subsection{Syntactic Distance} +Recently some work in syntax has begun as well. The first steps in +this were Nerbonne and Wiersma's 2006 analysis of Finnish L2 learners +of English, followed by Sanders' 2007 analysis of British dialect +areas. Syntax distance must be approached in quite a different way than +phonological distance. First, syntactic data is extractable from raw +text, so there is usually much more available. But this has a +concomitant (or an associated) drop in reliability of the +data. + +% this paragraph explains the difference between syntactic corpora and +% phonological corpora, badly. +Second, the phonological data is pre-processed by the +transcriber. This important step reduces the dimensionality of a +complex phonetic waveform to a few binary features. While making +phonological algorithms easier to work with, it may introduce bias +from the transcriber---some dialect surveys have been known to exhibit +``field worker dialects'' (cite this, probably from Trudgill). A +similar bias can occur when text is hand-parsed, but with a +large enough corpus, one can use an automatic parse that should have +fewer biases, albeit at the cost of more random error. + +% This paragraph need an introducing paragraph +Finally, if computational methods are duplicating the results of +previous work, that's great, but it would be even better to have a +way of finding relationships between +the results of the various methods; this would tell us how well the +areas cohere at various linguistic levels, which is typically done by +hand or not at all by traditional dialectologists. + +\subsubsection{Nerbonne and Wiersma} +This section is too short (still a summary) and written +incorrectly--not as a summary of previous work. + +Syntax distance has been much less explored. At present, there is +really only one method used. (Although I need to try some others ... ) +Due to the larger corpora available for syntactic analysis and the +less careful selection of content of said corpora, a statistical +method that is resistant to error is more appropriate than the typical +low-data symbolic approach used in phonology. Beyond this, the +syntactically annotated corpora are not word- or sentence-aligned in +the same way that the available phonological data are. Hence a +syntactic distance measure will have to have counting as its basis by +default. + +One of the first methods was proposed by \namecite{nerbonne06}. +It models syntax by part-of-speech (POS) trigrams and +uses the trigram types in a permutation test of significance. This was +extended by \namecite{sanders07}, who used \quotecite{sampson00} leaf-ancestor +paths as the basis for building the model instead. Both approaches +essentially treated the representation of syntax as symbols for the +actual permutation test, however. + +The problem with this method is that it is just a statistical test for +significance; although it includes a simple distance measure, it is +impossible to normalise completely to account for effects of size +because the corpora are not aligned. A permutation test is needed to +determine if this distance is significant. But the permutation test +can only tell us whether the two corpora are unlike. + +Other ideas include training a +model on one area and comparing the entropy (compression) of other +areas. At this point it's unclear whether this would provide a +comparable measure, however. + +\subsubsection{Language models} +Part-of-speech trigrams are quite easy to obtain from a syntactically +annotated corpus. Nerbonne and Wiersma (2006) argue that POS trigrams +can accurately represent at least the important parts of syntax, +similar to the way chunk parsing can capture the most important +information about a sentence. POS +trigrams can be collected from a tree by +\verb+(window 3 (leaves tree))+ + +On the other hand, it would be nice to directly represent the upper +structure of trees. Sampson's leaf-ancestor paths provide one way to +do this: they simply append the path to the root to each POS in the +sentence. + +Wow. There is a lot more I could say about this. Probably another +paragraph of background before starting to talk about leaf-ancestor +paths, and then all the gory details from my ACL paper. That was at +least a page. + +Another idea is supertags rather than leaf-ancestor paths. This is +quite similar but might work better. + +\subsubsection{Permutation test} + +A permutation test works by determining if the distance between two +corpora is significant or just statistical error (this is the wrong +sense of statistical error). The first step is to calculate the distance between +two corpora. Then the corpora are combined and two subcorpora are +extracted from the combined corpus. This is repeated many times: if +the distance between the subcorpora is less than the distance between +the original corpora, we can see that combining the two corpora erased +the differences. Repeating this test enough times will show if the +difference is significant. Twenty times is the minimum for +significance, but usually the test is repeated one (ten?) thousand times or more. + +Of course, as a basis for the test, we first need a way to calculate +distance. The measure used here, called Recurrence, is due to Kessler +(2001). It is fairly simple: all POS tokens are sorted by type and +counted. Then for each POS type the count in both corpora is averaged +and the count of one is subtracted from the average. The measure is +designed to represent the amount of variation from each other is +exhibited by the two corpora. + +Afterward, the distance must be normalised to account for two things: +the length of sentences in the corpus and the amount of variety in the +corpus. If sentence length differs too much between corpora, there +will be consistently lower token counts in one corpus. So the counts +are re-allocated by relative sizes of two corpora. (More explanation +and an equation is needed here or perhaps later). If the number of +types differs too much between the two corpora, the corpus with more +tokens will consistently have lower token counts as well. To avoid +this all tokens are scaled by the average number of types per token +across both corpora: $2n/N$ where $n$ is the type count and $N$ is +the token count. The additional factor $2$ is necessary because we are +recombining the tokens from the two corpora. + +Once the distances have been normalised, the measures of the original +corpora and the sampled subcorpora should be comparable. It is a +simple matter to repeat this process enough times to ascertain whether +the two original corpora are statistically different. + +\subsubsection{Sanders (2007)} +A proper overview of leaf-ancestor paths. Something decent ok. + +\section{Methods} +\begin{enumerate} +\item \quotecite{nerbonne97} refinement, without information gain weighting. +\item \quotecite{nerbonne06} syntax distance. +\item Combined on the data gathered and analysed in \namecite{shackleton07}. +\item And the ICE data (with leaf-ancestor paths) of \namecite{sanders07}. +\item And dividing both sets of data according to the same Government + Office regions. +\end{enumerate} +\subsection{Levenshtein Distance Experiment} +\begin{enumerate} +\item Group the data of \cite{shackleton07} into government office + regions. +\item (TODO:Summarise the data set here.) +\item It's from the 50s, 50 single (double?) syllable words designed + for maximal dialect variation. +\item Compare each site in each region to each site in every other region. +\item Average the distances. +\item This forms a graph connecting the 11 regions by phonological distance. +\end{enumerate} +\subsection{Syntax Distance Experiment} +\begin{enumerate} +\item Group the ICE corpus into government office regions. +\item The ICE corpus consists of transcribed conversations and + monologues, parsed according to some syntactic standard. +\item The parsed sentences were split into leaf-ancestor paths and + part-of-speech trigrams. +\item The experiments were run with a variety of parameters. +\item Sample sizes of 1000 and 500, $r$ and $r^2$. +\item First, for each parameter setting, a preliminary test comparing + London and Scotland was carried out. +\item First, London and Scotland were compared. +\item Then they were shuffled together and split into two halves the + same size as London and Scotland themselves. +\item If the method is discriminating successfully, London and + Scotland should be significantly different and the shuffled London + and Scotland should {\em not} be significantly different. +\item This was true for only one parameter setting: distance measure + $r$ and sample size 1000, using leaf-ancestor paths. +\item For the rest, London and Scotland were not significantly + different at $p < 0.05$. +\item Although some parameter settings resulted in $p < 0.10$, in + particular $r$, 1000, trigrams. +\item I suspect this is a problem of corpus size. More on that below. +\item Finally, all government office regions were compared to each + other using the successful parameter settings of 1000, $r$, 1000, + paths. +\item The results are \ldots below? +\end{enumerate} +\subsection{Correlation} +\begin{enumerate} +\item The output of the syntax distance is too simple for anything but + coarse comparison to phonological distance. +\item It's just a significance test. +\item So we can look at the regions that were not significantly + different to see whether their distances were considerably less than + other regions. +\item There is no hard limit for this. +\item See the results below. +\end{enumerate} +The second question of this paper can now be answered: whether +multiple ways of measuring linguistic distance give the same +answer. As the answers provided by syntax distance are somewhat crude +at this point, the correlation will necessarily be crude as well, but +it should be possible to see if the syntax distance measure at least +agrees with the phonological measure. + +Ideally, this would be a simple matter of aligning distances and +running a correlation on them (see for example papers by Heeringa +2003-2005 or so.) However, given the yes/no data that is in addition +obscured by the requirement of corpus size, the best comparison is +simply that of agreement. Is the phonological distance between two corpora that +were significantly different according to the syntactic measure +significantly (not sure how to calculate this) higher than the average +distance? + +% experiment.. +In order to carry this out, the phonological distances of Shackleton +(2007) were grouped into the same areas as the corpora of Sanders +(2007). The group distances were the average of the constituent area distances. +\section{Results} +\begin{enumerate} +\item Phonogical distance was not surprising. It's also not done. +\item Syntax distance was mostly significant except between NW, SE, + London and EM. (that's a chain there) +\item The two correlated how? This isn't done. +\end{enumerate} +\section{Discussion} + +Discussion + \begin{enumerate} + \item What do these tell us? + \item Do the two distances correlate? + \item Do the distances correlate with any other distances, + particularly geographic distance? + \item The End. + \end{enumerate} + + +% \begin{enumerate} +% \item Introduction +% \begin{enumerate} +% \item talking about Seguy again. +% \item some similar work has been done with English +% \item Blah blah computers are great but stubborn +% \item Why not at least try though +% \item Hence: phonological distance and syntax distance +% \end{enumerate} +% \item Phonological distance +% \begin{enumerate} +% \item Cochlear data +% \begin{enumerate} +% \item 107 word list +% \item Pediatric cochlear implant users +% \item Collected for Steven B. Chin's research project +% \end{enumerate} +% \item British data +% \begin{enumerate} +% \item 1001 (just Long) word list +% \item Collected from NORM in the 1950s to capture British dialects +% before they were destroyed by mobility and mess media. +% \item This has happened only to some extent, however. There are +% still regional differences, but the regions are different and +% the differences have changed since the 1950s. +% \item Analysed by Shackleton (2007) in numerous ways. +% \item Correlation with my syntax results will follow. +% \end{enumerate} +% \item Some other stuff +% \end{enumerate} +% \item Syntax distance +% \begin{enumerate} +% \item No alignment, but massive corpora. +% \item Ergo, different methods : statistics. +% \item Current method only tells whether region is significantly +% different or not. That's not so great. +% \item But with a statistical method, the most you can hope for is +% distance---details of any differences will have to be extracted +% separately. +% \item You might be able to extract info from the data structures created along +% the way; naive bayes maximum entropy +% classifier gives quite good results for what bigrams are the most +% important to it. +% \item Some ideas include using supertags instead of leaf-ancestor +% paths, perhaps automatically extracted from the manual parse. +% \item Another idea is comparing entropy by compression. This seems +% pretty promising to me. +% \end{enumerate} + +% \item Discussion +% \begin{enumerate} +% \item What do these tell us? +% \item Do the two distances correlate? +% \item Do the distances correlate with any other distances, +% particularly geographic distance? +% \item The End. +% \end{enumerate} + +% Notes: +% Apparently one Clive Upton has something resembling a British dialect +% atlas that could be used the same way that Nerbonne and Heeringa +% did. But I wonder why they didn't already do it---Norwegian seems much +% less likely than English simply because one {\em expects} it to have +% larger corpora. + +% Actually the wikipedia has a nice overview of the survey project and links to +% the resulting +% works. + +% \verb+http://en.wikipedia.org/wiki/Survey_of_English_Dialects+ ; It is +% problematic in that the data were collected in the 50s from NORMs +% because they were interested in the traditional dialects, not the new +% ones that might arise. + +% Voices is in progress and will eventually provide a modern dialect survey. +% 1978. The linguistic atlas of England, edited by Orton, John +% Widdowson and Clive Upton. (probably the best) : PE1705.L56 + +% 1993. Survey of English Dialect: The Dictionary and Grammar : +% PE1704.U65 1994 +% 1996. An Atlas of English Dialects. 2nd edn. London: Routledge [with +% J.D.A.Widdowson]. : PE1705.U68 1996 +% 1994: PE1704.U65 1994 + +%\end{enumerate} +\bibliographystyle{robbib} % ACL is \bibliographystyle{acl} +\bibliography{central} +\end{document} +%%% Local Variables: +%%% mode: latex +%%% TeX-master: t +%%% End: diff --git a/rlist.py b/rlist.py new file mode 100644 index 0000000..2730ad3 --- /dev/null +++ b/rlist.py @@ -0,0 +1,40 @@ +import csv +from util.lst import group, transpose +from util import dct +short = {'East\n':'ee', + 'EastMidlands\n':'em', + 'London\n':'ld', + 'Northeast\n':'ne', + 'Northwest\n':'nw', + 'Southeast\n':'se', + 'Southwest\n':'sw', + 'WestMidlands\n':'wm', + 'Yorkshire\n':'yk'} +def sed2r(): + lists = csv.reader(open('sed_distances.txt'), delimiter='\t') + titles = lists.next()[1:] + d = {} + for i,row in enumerate(lists): + for j,n in enumerate(row[1:]): + if n and float(n): + d[titles[i],titles[j]] = float(n) + return d +def ice2r(): + return dict(((short[r1],short[r2]),float(value)) + for r1,r2,value in group(list(open('dist-11-100-1000-r-path-gor.txt')), 3) + if not any(r in ['Scotland\n', 'Wales\n'] for r in [r1,r2])) +def stringify(zipped): + print zipped + return '\n'.join('c(%s)' % ','.join(map(str,ns)) + for ns in transpose(zipped.values())) +def combine(sed, ice): + setify = lambda d: dct.map_keys(frozenset, d) + d = dct.zip(setify(sed), setify(ice)) + del d[frozenset(['ld', 'se'])] + del d[frozenset(['sw', 'se'])] + del d[frozenset(['nw', 'se'])] + del d[frozenset(['ld', 'nw'])] + del d[frozenset(['ld', 'em'])] + del d[frozenset(['yk', 'em'])] + return d +print stringify(combine(sed2r(), ice2r())) diff --git a/sed.csv b/sed.csv new file mode 100644 index 0000000..d849911 --- /dev/null +++ b/sed.csv @@ -0,0 +1,314 @@ +,applV1H,applV1L,applC1GL,applV2,applC2L,catcV1H,askMULT0MULT,askV1H,askV1B,askV1L,fathMULT0MULT,fathC1V,fathV1H,fathV1B,fathV1L,fathV2H,fathV2B,fathV2L,fathR0PL,fathR0MN,farmC1V,farmV1H,farmV1B,farmV1L,farmR0PL,farmR0MN,watrV1H,watrV1B,watrV1R,watrV1L,watrV2H,watrV2B,watrV2R,watrV2L,watrC2PV,watrC2GL,watrR0PL,watrR0MN,waspV1H,waspV1B,waspV1R,waspV1L,auntV1H,auntV1B,auntV1R,auntV1L,auntC2GL,yellV0H,yellV0B,yellV0R,yellC2L,yellV1H,yellV1B,yellV1R,yellV1L,yellV2H,yellV2B,yellR0PL,yellR0MN,foxC1V,foxV1H,foxV1B,foxV1R,foxV1L,yolkV1H,yolkV1B,yolkV1R,yolkV1L,yolkV2H,yolkV2B,yolkV2R,yolkV2L,yolkVC2L,crosR0PL,crosR0MN,crosV1H,crosV1B,crosV1R,crosV1L,fortC1V,fortV1H,fortV1B,fortV1R,fortV1L,fortV2H,fortV2B,fortV2R,fortV2L,fortR0PL,fortR0MN,fortC2PV,fortC2GL,coltV1H,coltV1B,coltV1R,coltV1L,coltV2H,coltV1B,coltV1R,coltC2GL,sunC1V,sunV1H,sunV1B,sunV1R,buttV1H,buttV1B,buttV1RH,buttC2PV,buttC2GL,buttR0PL,buttR0MN,hurtC1H,hurtV1H,hurtV1B,hurtV1R,hurtV1L,hurtR0PL,hurtR0MN,hurtC2PV,hurtC2GL,potaV1H,potaV1B,potaV1L,potaV2H,potaV2B,potaV2L,potaC3PV,potaC3GL,potaV3H,potaV3B,potaV3R,potaV3L,potaR0PL,potaR0MN,gateC1C,gateV1H,gateV1B,gateV1L,gateV2H,gateV2B,gateV2L,mareV1H,mareV1B,mareV1R,mareV1L,mareV2H,mareV2B,mareV2R,mareV2L,mareR0PL,mareR0MN,meatV1H,meatV1B,meatV1L,meatV2H,meatV2B,meatV2L,meatC2GL,peasV1H,peasV1B,peasV1L,peasV2H,peasV2B,peasV2L,hearC1C,hearV1H,hearV1B,hearV1L,hearV2H,hearV2B,hearV2R,hearV2L,hearR0PL,hearR0MN,cheeV1H,cheeV1B,cheeV1L,cheeV2H,cheeV2B,cheeV2L,wheeC1HW,wheeV1H,wheeV1B,wheeV1L,wheeV2H,wheeV2B,wheeV2R,wheeV2L,wheeC2L,whitC1HW,whitV1H,whitV1B,whitV1R,whitV1L,whitV2H,whitV2B,whitV2R,whitV2L,whitC2GL,blinV1H,blinV1B,blinV1R,blinV1L,blinV2H,blinV2B,blinV2R,blinV2L,nighV1H,nighV1B,nighV1R,nighV1L,nighV2H,nighV2B,nighV2R,nighV2L,fireC1V,fireV1H,fireV1B,fireV1R,fireV1L,fireV2H,fireV2B,fireV2R,fireV2L,fireR0PL,fireR0MN,combV1H,combV1B,combV1R,combV1L,combV2H,combV2B,combV2R,combV2L,noneV1H,noneV1B,noneV1R,noneV1L,noneV2H,noneV2B,noneV2R,noneV2L,loafV1H,loafV1B,loafV1R,loafV1L,loafV2H,loafV2B,loafV2R,loafV2L,loafC2VO,bothMULT0MULT,bothV1H,bothV1B,bothV1R,bothV1L,bothV2H,bothV2B,bothV2R,bothV2L,bothC2V,noseV1H,noseV1B,noseV1R,noseV1L,noseV2H,noseV2B,noseV2R,noseV2L,moreV1H,moreV1B,moreV1R,moreV1L,moreV2H,moreV2B,moreV2R,moreV2L,moreR0PL,moreR0MN,coldV1H,coldV1B,coldV1R,coldV1L,coldV2H,coldV2B,coldV2R,coldV2L,coldC2L,moonV1H,moonV1B,moonV1R,moonV1L,moonV2H,moonV2B,moonV2R,moonV2L,roofR0PL,roofR0MN,roofV1H,roofV1B,roofV1R,roofV1L,roofV2H,roofV2B,roofV2R,roofV2L,doorV1H,doorV1B,doorV1R,doorV1L,doorV2H,doorV2B,doorV2R,doorV2L,doorR0PL,doorR0MN,woolC1W,woolV1H,woolV1B,woolV1R,woolV1L,woolV2H,woolV2B,woolV2R,woolV2L,woolC2L,housC1C,housV1H,housV1B,housV1R,housV1L,housV2H,housV2B,housV2R,housV2L,housC2VO,hourV1H,hourV1B,hourV1R,hourV1L,hourV2H,hourV2B,hourV2R,hourV2L,hourR0PL,hourR0MN,wmenV1H,daisV1H,daisV1B,daisV1L,daisV2H,daisV2B,daisV2L,hairC1C,hairV1H,hairV1B,hairV1R,hairV1L,hairV2H,hairV2B,hairV2R,hairV2L,hairR0PL,hairR0MN,eighV1H,eighV1B,eighV1L,eighV2H,eighV2B,eighV2R,eighV2L,eighC2GL,voicC1W,voicV1H,voicV1B,voicV1R,voicV1L,straR0PL,straR0MN,straV1H,straV1B,straV1R,straV1L,straV2H,straV2B,straV2R,straV2L,straC2IR,thawC1V,thawV1H,thawV1B,thawV1R,thawV1L,thawV2H,thawV2B,thawV2R,thawV2L,thawC2IR,daugV1H,daugV1B,daugV1R,daugV1L,daugV2H,daugV2B,daugV2R,daugV2L,daugC2PV,daugC2GL,daugR0PL,daugR0MN,dewC1PL,dewV1H,dewV1B,dewV1R,dewV1L,dewV2H,dewV2B,dewV2R,dewV2L,tuesC1PL,tuesV1H,tuesV1B,tuesV1R,tuesV1L,tuesV2H,tuesV2B,tuesV2L,snowC1V,snowV1H,snowV1B,snowV1R,snowV1L,snowV2H,snowV2B,snowV2R,snowV2L,veryC1W,kittC2GL,kittC2V +Northumberland 1,1.0000,1.0000,0.0000,0.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,5.0000,1.0000,1.0000,0.0000,0.0000,0.0000,3.0000,1.5000,0.0000,1.0000,1.0000,1.0000,3.0000,1.5000,5.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.5000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,1.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,2.0000,2.0000,5.0000,1.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.5000,3.0000,1.0000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,3.0000,1.5000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,1.0000,0.0000,6.0000,2.5000,2.0000,3.0000,3.0000,1.0000,0.0000,0.0000,3.0000,1.5000,1.0000,3.0000,3.0000,2.0000,1.0000,3.0000,1.5000,0.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,1.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-3.0000,1.5000,1.0000,0.0000,3.0000,1.5000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.500,5.0000,1.0000,1.0000,1.0000,0.5000,0.0000,1.0000,6.0000,1.5000,1.0000,-3.0000,1.5000,1.0000,0.0000,3.0000,1.5000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,1.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,1.0000,2.5000,1.5000,1.0000,1.0000,3.5000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.5000,1.5000,1.0000,1.0000,3.5000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,3.0000,1.5000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,5.0000,1.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,5.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,1.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,4.5000,1.0000,1.0000,1.5000,-1.5000,2.0000,1.0000,-0.5000,3.0000,1.5000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,3.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.0000,-4.0000,0.0000,0.0000,0.0000,3.0000,1.5000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.5000,-4.0000,0.0000,0.0000,-0.5000,3.0000,1.5000,4.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,1.0000,5.0000,1.0000,1.0000,1.0000,-2.0000,2.0000,1.0000,0.0000,3.0000,1.5000,3.5000,1.5000,1.0000,3.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,1.5000,5.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,1.5000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Northumberland 2,1.0000,1.0000,0.0000,0.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,5.0000,1.0000,1.5000,0.0000,0.0000,0.0000,3.0000,1.5000,0.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,2.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,2.0000,2.0000,5.0000,1.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.5000,3.0000,3.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,-1.0000,-1.0000,0.0000,2.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,3.0000,1.5000,1.0000,3.0000,3.0000,2.0000,1.0000,3.0000,1.5000,0.0000,0.0000,5.0000,1.0000,2.0000,-1.0000,1.0000,-1.5000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,1.0000,5.5000,1.0000,1.5000,-1.5000,1.0000,-0.5000,3.5000,1.0000,1.0000,1.0000,-0.5000,2.0000,1.0000,0.0000,3.0000,1.5000,6.5000,1.5000,1.5000,0.0000,0.0000,0.0000,0.500,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,1.0000,6.0000,1.5000,1.0000,-3.0000,1.5000,1.0000,0.0000,3.0000,1.5000,6.0000,1.5000,1.5000,0.0000,0.0000,0.0000,1.0000,6.0000,1.5000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,1.0000,2.5000,1.5000,1.0000,1.0000,3.5000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.5000,1.5000,1.0000,1.0000,3.5000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,3.0000,1.5000,5.0000,1.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,5.0000,1.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,0.0000,5.0000,1.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.5000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,-0.5000,0.0000,6.0000,2.5000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,3.0000,1.5000,6.0000,2.5000,2.0000,1.0000,-6.0000,-2.5000,-2.0000,-1.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.5000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.5000,-4.0000,0.0000,0.0000,-0.5000,3.0000,1.5000,4.0000,5.0000,1.0000,1.0000,-1.0000,1.0000,0.0000,1.0000,5.0000,1.0000,1.0000,1.5000,-2.0000,2.0000,1.0000,-0.5000,3.0000,1.5000,3.5000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,1.5000,5.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,1.5000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,1.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,0.0000,3.5000,1.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Northumberland 3,1.0000,1.0000,0.0000,0.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.5000,0.0000,0.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,3.0000,1.5000,0.0000,1.0000,1.0000,1.0000,3.0000,1.5000,5.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.5000,1.0000,1.0000,1.0000,1.0000,1.5000,1.0000,1.0000,1.0000,0.0000,1.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,2.0000,2.0000,5.0000,1.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.5000,0.0000,0.0000,3.5000,3.0000,2.0000,1.0000,2.5000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,3.0000,1.5000,1.0000,3.0000,3.0000,2.0000,1.0000,3.0000,1.5000,0.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,1.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,6.0000,1.5000,1.0000,1.0000,-3.0000,1.5000,1.0000,0.0000,3.0000,1.5000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.500,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,1.0000,6.0000,1.5000,1.0000,-3.0000,1.5000,1.0000,0.0000,3.0000,1.5000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,1.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,2.5000,1.5000,1.0000,1.0000,3.5000,0.0000,0.0000,0.0000,0.5000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.5000,1.0000,1.0000,3.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,3.0000,1.5000,5.0000,1.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,5.0000,1.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,0.0000,5.0000,1.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.5000,-2.0000,0.0000,0.0000,-0.5000,3.0000,1.5000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.5000,6.0000,2.5000,2.0000,1.5000,-6.0000,-2.5000,-2.0000,-1.5000,7.0000,3.0000,2.0000,1.5000,-4.0000,0.0000,0.0000,-0.5000,3.0000,1.5000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.0000,-4.0000,0.0000,0.0000,0.0000,3.0000,1.5000,4.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,1.0000,5.0000,1.0000,1.0000,1.0000,-2.0000,2.0000,1.0000,0.0000,3.0000,1.5000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,1.5000,5.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,1.5000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,0.0000,1.5000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Northumberland 4,1.0000,1.0000,0.0000,0.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,3.0000,1.5000,0.0000,1.0000,1.0000,1.0000,3.0000,1.5000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.5000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,1.0000,1.0000,1.0000,2.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,3.0000,1.5000,0.0000,3.0000,1.0000,2.0000,1.0000,5.0000,1.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.5000,3.0000,1.0000,2.0000,1.5000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.5000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,5.0000,3.0000,1.0000,6.0000,2.5000,2.0000,0.0000,0.0000,3.0000,1.5000,1.0000,3.0000,3.0000,2.0000,1.0000,3.0000,1.5000,0.0000,0.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,1.0000,5.5000,1.0000,1.0000,-0.5000,1.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-3.0000,1.5000,1.0000,0.0000,3.0000,1.5000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,1.0000,6.0000,1.5000,1.0000,-3.0000,1.5000,1.0000,0.0000,3.0000,1.5000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,1.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,1.0000,3.0000,1.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,3.0000,1.5000,5.0000,1.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-5.0000,0.0000,0.0000,0.0000,5.0000,1.0000,2.0000,1.0000,-1.0000,1.0000,-1.0000,-0.5000,0.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-5.0000,0.0000,0.0000,0.0000,0.0000,5.0000,1.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,-2.0000,0.0000,0.0000,0.0000,3.0000,1.5000,2.0000,1.0000,1.0000,1.5000,2.0000,1.0000,0.0000,-1.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-1.0000,1.5000,0.0000,0.0000,3.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.0000,-4.0000,0.0000,0.0000,0.0000,3.0000,1.5000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,-4.0000,0.0000,0.0000,-1.0000,3.0000,1.5000,4.0000,5.5000,1.0000,1.0000,-1.5000,1.0000,0.0000,1.0000,5.5000,1.0000,1.0000,1.0000,-2.5000,2.0000,1.0000,0.0000,3.0000,1.5000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,1.5000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,1.5000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,1.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Northumberland 5,1.0000,1.0000,0.0000,0.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,3.0000,1.5000,0.0000,1.0000,1.0000,1.0000,3.0000,1.5000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.5000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,1.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,3.0000,1.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.5000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,3.0000,1.5000,1.0000,3.0000,3.0000,2.0000,1.0000,3.0000,1.5000,0.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,8.0000,1.0000,1.0000,-5.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-3.0000,1.5000,1.0000,0.0000,3.0000,1.5000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.500,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,1.0000,6.0000,1.5000,1.0000,-3.0000,1.5000,1.0000,0.0000,3.0000,1.5000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,1.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,1.0000,3.0000,1.5000,1.0000,1.0000,3.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.5000,1.0000,1.0000,3.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,3.0000,1.5000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,5.0000,3.0000,2.0000,1.0000,-2.0000,0.0000,0.0000,0.0000,3.0000,1.5000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,3.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.0000,-4.0000,0.0000,0.0000,0.0000,3.0000,1.5000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.0000,-4.0000,0.0000,0.0000,0.0000,3.0000,1.5000,4.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,1.0000,5.0000,1.0000,1.0000,1.5000,-2.0000,2.0000,1.0000,-0.5000,3.0000,1.5000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,1.5000,5.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,1.5000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Northumberland 6,1.0000,1.0000,0.0000,0.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,3.0000,1.5000,0.0000,1.0000,1.0000,1.0000,3.0000,1.5000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.5000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,1.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,2.0000,1.0000,3.0000,1.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,5.0000,3.0000,1.0000,6.0000,2.5000,2.0000,0.0000,0.0000,3.0000,1.5000,1.0000,3.0000,3.0000,2.0000,1.0000,3.0000,1.5000,0.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,1.0000,5.5000,1.0000,1.5000,-1.5000,1.0000,-0.5000,6.0000,1.5000,1.0000,1.0000,-3.0000,1.5000,1.0000,0.0000,3.0000,1.5000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.500,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,1.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,2.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-5.0000,0.0000,0.0000,0.5000,8.0000,1.0000,1.0000,1.0000,-5.0000,0.0000,0.0000,0.0000,5.0000,1.0000,2.0000,2.0000,-1.0000,1.0000,-1.0000,-1.5000,0.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-5.0000,0.0000,0.0000,0.0000,0.0000,5.0000,1.0000,2.0000,2.0000,-1.0000,1.0000,-1.0000,-1.5000,5.0000,3.0000,2.0000,1.0000,-2.0000,0.0000,0.0000,0.0000,3.0000,1.5000,2.0000,1.0000,1.0000,1.5000,2.0000,1.0000,0.0000,-1.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-3.0000,2.0000,0.0000,0.0000,3.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.5000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.5000,-3.0000,-1.0000,-1.0000,-0.5000,3.0000,1.5000,4.0000,5.5000,1.0000,2.0000,-1.5000,1.0000,-1.5000,1.0000,5.0000,1.0000,1.0000,1.0000,-2.0000,2.0000,1.0000,0.0000,3.0000,1.5000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,3.0000,1.5000,5.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,1.5000,0.0000,6.0000,1.5000,1.0000,1.0000,0.5000,1.5000,1.0000,1.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,0.0000,2.0000,1.0000,1.0000,2.0000,2.0000,1.0000,0.0000,-1.5000,0.0000,0.0000,0.0000 +Northumberland 7,1.0000,1.0000,0.0000,0.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.5000,1.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,3.0000,1.5000,0.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.5000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,1.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,3.0000,1.5000,1.0000,3.0000,3.0000,2.0000,1.0000,3.0000,1.5000,0.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,8.0000,1.0000,1.0000,-5.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-3.0000,1.5000,1.0000,0.0000,3.0000,1.5000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.500,5.0000,1.0000,1.0000,1.0000,0.5000,0.0000,1.0000,6.0000,1.5000,1.0000,-3.0000,1.5000,1.0000,0.0000,3.0000,1.5000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,1.0000,3.0000,1.5000,1.0000,1.0000,3.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,3.0000,1.5000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,3.0000,1.5000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,2.0000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,3.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.0000,-4.0000,0.0000,0.0000,0.0000,3.0000,1.5000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.0000,-4.0000,0.0000,0.0000,0.0000,3.0000,1.5000,4.0000,5.0000,1.0000,1.5000,-1.0000,1.0000,-0.5000,1.0000,5.0000,1.0000,1.0000,1.5000,-2.0000,2.0000,1.0000,-0.5000,3.0000,1.5000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,1.5000,5.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,1.5000,0.0000,5.5000,1.5000,1.0000,1.0000,1.5000,1.0000,1.0000,1.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,0.0000,5.0000,1.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Northumberland 8,1.0000,1.0000,0.0000,0.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,3.0000,1.5000,0.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,1.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,5.0000,1.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.5000,3.0000,2.5000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,1.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,3.0000,1.5000,1.0000,3.0000,3.0000,2.0000,1.0000,3.0000,1.5000,0.0000,0.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,1.0000,5.5000,1.5000,1.0000,-1.5000,0.5000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,1.0000,6.0000,1.5000,1.0000,-3.0000,1.5000,1.0000,0.0000,3.0000,1.5000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,1.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,1.0000,2.5000,1.5000,1.0000,1.0000,3.5000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,3.0000,1.5000,5.0000,1.0000,2.0000,1.0000,-1.0000,1.0000,-1.0000,0.0000,6.0000,1.5000,1.0000,0.5000,-3.0000,-0.5000,0.0000,0.5000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,0.0000,0.0000,5.0000,1.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,1.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,4.5000,1.0000,1.0000,1.5000,-1.5000,2.0000,1.0000,-0.5000,3.0000,1.5000,2.0000,1.0000,1.0000,1.5000,2.0000,1.0000,0.0000,-1.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-1.0000,-0.5000,1.0000,0.0000,3.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.5000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,-4.0000,0.0000,0.0000,-1.0000,3.0000,1.5000,4.0000,5.5000,1.5000,1.0000,-1.5000,0.5000,0.0000,1.0000,2.5000,1.0000,1.0000,1.0000,0.5000,2.0000,1.0000,0.0000,3.0000,1.5000,2.5000,1.5000,1.0000,4.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,1.5000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,1.5000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,0.0000,5.0000,1.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Northumberland 9,1.0000,1.0000,0.0000,0.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,1.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.5000,0.0000,2.0000,0.0000,1.0000,3.0000,3.0000,2.0000,2.0000,2.0000,0.0000,0.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,8.0000,1.0000,1.0000,-5.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,1.0000,6.0000,1.5000,1.0000,-3.0000,1.5000,1.0000,0.0000,3.0000,1.5000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,1.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,1.0000,3.0000,1.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,2.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,5.5000,3.0000,2.0000,1.0000,-1.5000,-1.0000,-1.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,0.0000,5.5000,3.0000,2.0000,1.0000,-1.5000,-1.0000,-1.0000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,4.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,1.0000,1.5000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,5.5000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.5000,-3.0000,-1.0000,-1.0000,-0.5000,2.0000,0.0000,4.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,1.0000,5.5000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,4.0000,7.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,4.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,7.0000,1.0000,1.0000,1.0000,0.0000,2.0000,0.5000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Cumberland 1,1.0000,1.0000,0.0000,0.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,1.0000,4.0000,0.0000,1.0000,1.0000,2.0000,1.0000,4.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.5000,0.0000,1.0000,4.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,1.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,4.0000,1.0000,3.0000,2.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,4.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.5000,0.0000,1.0000,4.0000,1.0000,6.0000,2.5000,2.0000,1.0000,1.0000,4.0000,0.0000,0.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,8.0000,1.0000,1.0000,-5.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,1.0000,4.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.500,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,1.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,1.0000,4.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,1.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,1.0000,4.0000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,7.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,1.0000,2.0000,-3.0000,1.0000,0.0000,-1.5000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,1.0000,4.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,4.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,1.0000,-1.0000,-1.0000,-1.5000,1.0000,4.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.5000,-3.0000,-1.0000,-1.0000,-0.5000,1.0000,4.0000,4.0000,5.5000,1.0000,2.0000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,4.0000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,-0.5000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,4.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Cumberland 2,1.0000,1.0000,0.0000,0.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.5000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,4.0000,1.0000,3.0000,2.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.5000,0.0000,2.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,1.0000,4.0000,0.0000,0.0000,3.5000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,8.0000,1.0000,1.0000,-5.0000,0.0000,0.0000,5.5000,1.5000,1.0000,1.0000,0.5000,0.0000,0.0000,0.0000,1.0000,4.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,2.0000,0.0000,8.0000,3.0000,2.0000,1.0000,-7.0000,0.0000,0.0000,0.0000,6.5000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-3.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.5000,2.5000,2.0000,1.0000,-1.5000,-0.5000,-1.0000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,6.0000,1.5000,1.0000,1.0000,0.0000,1.0000,1.0000,0.0000,1.0000,1.5000,6.0000,1.5000,1.0000,1.0000,0.0000,1.0000,1.0000,0.0000,7.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.5000,-3.0000,-1.0000,-1.0000,-0.5000,1.0000,1.5000,6.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,4.0000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.5000,0.0000,2.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Cumberland 3,1.0000,1.0000,0.0000,0.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.5000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,1.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,4.0000,1.0000,3.0000,2.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.5000,0.0000,2.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,2.0000,0.0000,0.0000,0.0000,4.5000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,8.0000,1.0000,1.0000,-7.0000,0.0000,0.0000,5.5000,1.5000,1.0000,1.0000,0.5000,0.0000,0.0000,0.5000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,1.0000,6.5000,1.5000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.5000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.5000,0.5000,-0.5000,0.0000,1.5000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.5000,1.0000,1.0000,1.0000,-4.5000,0.0000,0.0000,0.0000,0.0000,1.0000,6.0000,1.5000,1.0000,1.0000,-5.0000,-0.5000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,1.0000,4.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,6.0000,1.5000,1.0000,1.0000,0.0000,1.0000,1.0000,0.0000,1.0000,1.5000,6.0000,1.5000,1.0000,1.0000,0.0000,1.0000,1.0000,0.0000,7.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,3.0000,1.0000,1.0000,1.0000,1.0000,4.0000,6.0000,5.5000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,4.0000,6.0000,1.5000,1.0000,1.5000,-2.0000,0.5000,0.0000,-0.5000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.5000,0.0000,2.0000,0.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,1.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Cumberland 4,1.0000,1.0000,0.0000,0.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.5000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,1.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,2.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,0.0000,0.0000,4.0000,2.0000,1.0000,2.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,8.0000,1.0000,1.0000,-7.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,1.0000,1.5000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,4.5000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,2.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-5.0000,-0.5000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,1.0000,1.5000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,0.5000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,0.5000,1.0000,0.5000,0.0000,1.5000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,6.0000,3.5000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Cumberland 5,1.0000,1.0000,0.0000,0.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,1.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.5000,0.0000,2.0000,0.0000,1.0000,4.0000,2.0000,1.0000,1.5000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,8.0000,1.0000,1.0000,-5.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.500,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,1.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,2.0000,0.0000,5.5000,3.0000,2.0000,1.0000,-1.5000,-1.0000,-1.0000,0.0000,6.5000,1.5000,1.0000,1.5000,-2.5000,0.5000,0.0000,-1.0000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,3.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,1.0000,1.5000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,7.0000,3.0000,2.0000,1.5000,-3.0000,-1.0000,-1.0000,-0.5000,1.0000,1.5000,1.0000,6.5000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.5000,-3.0000,-1.0000,-1.0000,-0.5000,1.0000,1.5000,4.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.5000,0.0000,2.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Cumberland 6,1.0000,1.0000,0.0000,0.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.5000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,1.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.5000,0.0000,1.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,8.0000,1.0000,1.0000,-7.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.5000,1.0000,1.0000,2.5000,0.5000,0.0000,0.000,5.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,4.0000,2.0000,0.5000,2.0000,-0.5000,0.5000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.5000,1.0000,-0.5000,0.0000,1.5000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,2.0000,0.0000,4.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.5000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,1.0000,1.0000,1.5000,-4.0000,0.0000,0.0000,-0.5000,0.0000,0.0000,5.0000,1.0000,1.0000,2.0000,-4.0000,0.0000,0.0000,-1.0000,0.0000,4.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,6.0000,2.5000,2.0000,1.0000,1.0000,0.5000,0.0000,1.0000,1.0000,1.5000,6.0000,1.5000,1.0000,1.0000,-1.0000,1.5000,0.0000,0.0000,7.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,6.0000,2.5000,2.0000,0.5000,1.0000,0.5000,0.0000,1.5000,0.0000,0.0000,4.0000,2.0000,1.0000,0.5000,3.0000,1.0000,1.0000,1.5000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,2.0000,0.0000,6.0000,5.0000,1.0000,2.0000,-1.0000,1.0000,-1.5000,0.0000,8.0000,1.0000,1.0000,1.0000,-7.0000,0.0000,0.0000,1.0000,0.0000,0.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,3.0000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Durham 1,1.0000,1.0000,0.0000,0.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,1.0000,2.0000,1.0000,-1.0000,1.0000,-1.0000,-0.5000,0.0000,3.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,2.0000,1.0000,0.0000,1.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,3.0000,1.5000,1.0000,3.0000,3.0000,2.0000,1.0000,3.0000,1.5000,0.0000,0.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,1.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,1.0000,6.0000,1.5000,1.0000,-3.0000,1.5000,1.0000,0.0000,3.0000,1.5000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,3.0000,1.5000,5.0000,1.0000,2.0000,1.0000,-1.0000,1.0000,-1.0000,0.0000,3.0000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,-1.0000,5.0000,1.0000,2.0000,1.0000,-1.0000,1.0000,-1.0000,-0.5000,0.0000,1.0000,5.0000,1.0000,2.0000,1.0000,-1.0000,1.0000,-1.0000,-0.5000,0.0000,5.0000,1.0000,2.0000,1.0000,-1.0000,1.0000,-1.0000,-0.5000,3.0000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-2.0000,1.5000,1.0000,0.0000,3.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.5000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,-3.0000,-1.0000,-1.0000,-1.0000,3.0000,1.5000,4.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,1.0000,5.0000,1.0000,1.0000,1.0000,-2.0000,2.0000,1.0000,0.0000,3.0000,1.5000,2.5000,1.0000,1.0000,4.0000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,1.5000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,3.0000,1.5000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,1.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Durham 2,1.0000,1.0000,0.0000,0.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,3.0000,1.5000,0.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,1.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,2.0000,1.5000,5.0000,1.0000,2.0000,2.0000,-1.0000,1.0000,-1.0000,-1.0000,0.0000,3.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.5000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,3.0000,1.5000,1.0000,3.0000,3.0000,2.0000,1.0000,3.0000,1.5000,0.0000,0.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,1.0000,8.0000,1.0000,1.0000,-5.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,1.0000,6.0000,1.5000,1.0000,-3.0000,1.5000,1.0000,0.0000,3.0000,1.5000,7.0000,1.0000,2.0000,-3.0000,1.0000,-1.5000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,2.0000,0.0000,5.0000,1.0000,2.0000,1.0000,-1.0000,1.0000,-1.0000,-0.5000,8.0000,1.0000,1.0000,1.0000,-5.0000,0.0000,0.0000,0.0000,5.0000,1.0000,2.0000,2.0000,-1.0000,1.0000,-1.0000,-1.5000,0.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-5.0000,0.0000,0.0000,0.0000,0.0000,5.0000,1.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-1.0000,1.5000,0.0000,0.0000,3.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.5000,-4.0000,0.0000,0.0000,-0.5000,3.0000,1.5000,4.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,1.0000,3.0000,3.0000,3.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,1.5000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,1.5000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,1.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Durham 3,1.0000,1.0000,0.0000,0.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,1.0000,1.5000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,1.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,2.0000,-1.0000,-1.0000,-1.0000,-1.5000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,1.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.5000,0.0000,1.0000,4.0000,1.0000,5.5000,2.5000,2.0000,1.0000,2.0000,0.0000,0.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,8.0000,1.0000,1.0000,-5.0000,0.0000,0.0000,4.0000,2.0000,1.0000,0.5000,2.0000,-0.5000,0.0000,0.5000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,1.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,1.0000,1.5000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,1.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,1.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.5000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,3.0000,-1.0000,0.0000,1.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,2.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,7.0000,1.0000,1.0000,2.0000,-3.0000,1.0000,0.0000,-1.0000,7.0000,1.0000,1.0000,1.5000,-3.0000,1.0000,0.0000,-1.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,0.0000,4.5000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,3.0000,1.0000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,1.0000,2.0000,-3.0000,1.0000,0.0000,-1.5000,1.0000,1.5000,7.0000,1.0000,1.0000,2.0000,-3.0000,1.0000,0.0000,-1.5000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,1.0000,1.5000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,1.0000,4.0000,2.0000,1.0000,0.5000,3.0000,1.0000,1.0000,1.5000,0.0000,7.0000,3.0000,2.0000,2.0000,-3.0000,-1.0000,-1.0000,-1.0000,1.0000,1.5000,4.0000,5.0000,1.0000,1.0000,-1.0000,1.0000,0.0000,1.0000,3.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.5000,0.0000,1.0000,1.5000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Durham 4,1.0000,1.0000,0.0000,0.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,1.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,0.0000,0.0000,5.5000,2.5000,2.0000,1.0000,2.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,1.0000,8.0000,1.0000,1.0000,-5.0000,0.0000,0.0000,2.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.5000,1.5000,0.5000,1.0000,-0.5000,1.0000,0.500,5.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,3.0000,1.5000,1.0000,3.0000,0.0000,0.0000,0.0000,2.0000,0.0000,4.5000,1.5000,1.0000,1.5000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,2.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-5.0000,-0.5000,0.0000,0.0000,5.0000,1.0000,1.0000,1.5000,-4.0000,0.0000,0.0000,-0.5000,5.5000,3.0000,2.0000,2.0000,-1.5000,-1.0000,-1.0000,-1.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-3.0000,2.0000,0.0000,0.0000,1.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,1.0000,4.0000,2.0000,1.0000,0.5000,3.0000,1.0000,1.0000,1.5000,0.0000,4.0000,2.0000,1.0000,0.5000,3.0000,1.0000,1.0000,1.5000,2.0000,0.0000,4.0000,5.5000,1.0000,1.0000,-1.5000,1.0000,0.0000,0.0000,2.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,1.0000,1.0000,4.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,1.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Durham 5,1.0000,1.0000,0.0000,0.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,1.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,5.5000,1.0000,1.0000,-1.5000,1.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,1.0000,8.0000,1.0000,1.0000,-5.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,5.5000,1.5000,1.0000,0.5000,0.0000,0.0000,0.000,6.0000,1.5000,0.5000,1.0000,-0.5000,1.5000,1.0000,4.0000,2.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,0.5000,1.0000,-0.5000,0.0000,1.5000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,4.5000,1.5000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,2.0000,0.0000,5.5000,2.5000,2.0000,1.0000,-1.5000,-0.5000,-1.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-5.0000,-0.5000,0.0000,0.0000,5.0000,3.0000,2.0000,1.5000,-1.0000,-1.0000,-1.0000,-0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-5.0000,-0.5000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,-1.0000,-1.0000,-1.0000,-1.5000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-3.0000,2.0000,0.0000,0.0000,1.0000,1.5000,6.0000,1.5000,1.0000,1.0000,-1.0000,1.5000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,-3.0000,-1.0000,-1.0000,-1.0000,1.0000,1.5000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,1.0000,4.0000,2.0000,1.0000,0.5000,3.0000,1.0000,1.0000,1.5000,0.0000,4.0000,2.0000,1.0000,0.5000,3.0000,1.0000,1.0000,1.5000,2.0000,0.0000,4.0000,5.5000,1.0000,1.0000,-1.5000,1.0000,0.0000,1.0000,2.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,1.0000,1.0000,4.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,1.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Durham 6,1.0000,1.0000,0.0000,0.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,1.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,4.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,0.0000,1.0000,4.0000,2.0000,1.0000,2.0000,2.0000,0.0000,0.0000,0.0000,4.5000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,1.0000,5.5000,1.0000,1.5000,-1.5000,1.0000,-0.5000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,5.0000,1.0000,0.5000,1.5000,0.5000,1.0000,0.000,6.0000,1.5000,0.5000,1.0000,-0.5000,1.5000,1.0000,4.0000,2.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,2.0000,0.0000,6.0000,1.5000,0.5000,1.0000,-0.5000,1.5000,0.0000,6.0000,1.5000,0.5000,1.0000,-0.5000,0.0000,1.5000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.5000,1.0000,-0.5000,0.0000,1.5000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,2.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-5.0000,0.0000,0.0000,0.0000,5.0000,1.0000,1.0000,1.5000,-1.0000,1.0000,0.0000,-0.5000,5.5000,1.0000,1.0000,1.0000,-4.5000,0.0000,0.0000,0.0000,0.0000,1.0000,5.0000,1.0000,1.0000,1.0000,-4.0000,0.0000,0.0000,0.0000,0.0000,3.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,0.0000,1.0000,1.5000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,1.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,1.0000,4.0000,2.0000,1.0000,0.5000,3.0000,1.0000,1.0000,1.5000,0.0000,3.0000,3.0000,2.0000,0.5000,4.0000,0.0000,0.0000,1.5000,2.0000,0.0000,4.0000,5.5000,1.0000,2.0000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,1.0000,1.0000,5.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Westmoreland 1,1.0000,1.0000,0.0000,0.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,1.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,1.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,0.0000,1.0000,4.0000,2.0000,1.0000,2.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,8.0000,1.0000,1.0000,-7.0000,0.0000,0.0000,4.0000,2.0000,1.0000,0.5000,2.0000,-0.5000,0.0000,0.5000,1.0000,1.5000,6.0000,1.5000,0.5000,1.0000,-0.5000,1.5000,0.000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,1.0000,1.5000,6.0000,1.5000,0.5000,1.0000,-0.5000,1.5000,1.0000,6.0000,1.5000,0.5000,1.0000,-0.5000,0.0000,1.5000,2.0000,1.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,0.5000,3.0000,-1.0000,0.0000,1.5000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,2.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.5000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,1.0000,1.0000,1.5000,-4.0000,0.0000,0.0000,-0.5000,0.0000,1.0000,5.5000,1.0000,1.0000,1.5000,-4.5000,0.0000,0.0000,-0.5000,0.0000,5.5000,3.0000,2.0000,1.0000,-1.5000,-1.0000,-1.0000,0.0000,3.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,1.0000,1.5000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,6.0000,2.5000,2.0000,0.5000,1.0000,0.5000,0.0000,1.0000,1.0000,1.5000,1.0000,6.0000,2.5000,2.0000,0.5000,1.0000,0.5000,0.0000,1.5000,0.0000,1.0000,6.0000,2.5000,2.0000,0.5000,1.0000,0.5000,0.0000,1.5000,0.0000,6.0000,2.5000,2.0000,0.5000,1.0000,0.5000,0.0000,1.0000,2.0000,0.0000,6.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.5000,0.0000,1.0000,1.5000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Westmoreland 2,1.0000,1.0000,0.0000,0.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.5000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,1.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.5000,0.0000,2.0000,0.0000,1.0000,4.0000,2.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,8.0000,1.0000,1.0000,-7.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,1.0000,3.0000,6.0000,1.5000,0.5000,1.0000,-0.5000,1.5000,0.000,3.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,0.5000,3.0000,-1.0000,0.0000,1.5000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,2.0000,0.0000,8.0000,3.0000,2.0000,1.0000,-7.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.5000,1.0000,-0.5000,0.0000,1.5000,5.0000,1.0000,1.0000,1.0000,-4.0000,0.0000,0.0000,0.0000,0.0000,1.0000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,3.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.5000,1.0000,0.0000,1.0000,1.5000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,6.0000,2.5000,1.0000,1.0000,1.0000,0.5000,1.0000,1.0000,1.0000,4.0000,1.0000,6.0000,2.5000,2.0000,0.5000,1.0000,0.5000,0.0000,1.5000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.5000,-3.0000,-1.0000,-1.0000,-0.5000,1.0000,1.5000,6.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Westmoreland 3,1.0000,1.0000,0.0000,0.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,1.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,0.0000,1.0000,4.0000,2.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,8.0000,1.0000,1.0000,-7.0000,0.0000,0.0000,4.0000,2.0000,1.0000,0.5000,2.0000,-0.5000,0.0000,0.5000,2.0000,0.0000,6.0000,1.5000,0.5000,1.0000,-0.5000,1.5000,0.000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,6.0000,1.5000,0.5000,1.0000,-0.5000,1.5000,0.0000,6.0000,1.5000,0.5000,1.0000,-0.5000,0.0000,1.5000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.5000,1.0000,-0.5000,0.0000,1.5000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,5.5000,1.0000,1.0000,1.0000,-4.5000,0.0000,0.0000,0.0000,0.0000,1.0000,6.0000,1.5000,1.0000,1.0000,-5.0000,-0.5000,0.0000,0.0000,0.0000,5.5000,2.5000,2.0000,1.0000,-1.5000,-0.5000,-1.0000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,1.0000,1.5000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,6.0000,2.5000,2.0000,0.5000,1.0000,0.5000,0.0000,1.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,0.5000,1.0000,0.5000,0.0000,1.5000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,1.0000,0.5000,0.0000,1.0000,0.0000,6.0000,2.5000,2.0000,0.5000,1.0000,0.5000,0.0000,0.5000,2.0000,0.0000,6.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.5000,0.0000,2.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Westmoreland 4,1.0000,1.0000,0.0000,0.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.5000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.5000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,1.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.5000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.5000,0.0000,2.0000,0.0000,0.0000,4.0000,2.0000,1.0000,2.0000,2.0000,0.0000,0.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,1.0000,6.0000,1.0000,2.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,1.0000,1.5000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,4.0000,2.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,4.0000,2.0000,0.5000,2.0000,-0.5000,0.0000,0.5000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.5000,1.0000,-0.5000,0.0000,1.5000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,1.0000,1.5000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.5000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,5.5000,1.0000,1.0000,1.0000,-4.5000,0.0000,0.0000,0.0000,0.0000,6.5000,3.0000,2.0000,1.5000,-2.5000,-1.0000,-1.0000,-0.5000,4.5000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,6.0000,2.5000,2.0000,1.0000,1.0000,0.5000,0.0000,1.0000,1.0000,1.5000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,6.0000,2.5000,1.0000,1.0000,1.0000,0.5000,1.0000,1.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,0.5000,1.0000,0.5000,0.0000,1.5000,0.0000,0.0000,4.0000,2.0000,1.0000,0.5000,3.0000,1.0000,1.0000,1.5000,0.0000,4.0000,2.0000,1.0000,0.5000,3.0000,1.0000,1.0000,1.5000,1.0000,1.5000,6.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.5000,1.0000,1.0000,1.0000,-4.5000,0.0000,0.0000,0.0000,1.0000,1.5000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,4.0000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Lancashire 1,1.0000,1.0000,0.0000,0.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.5000,1.0000,1.0000,1.5000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.5000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,1.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,4.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.5000,2.5000,2.0000,0.5000,0.0000,2.0000,0.0000,0.0000,4.0000,2.0000,1.0000,2.0000,2.0000,0.0000,0.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,8.0000,1.0000,1.0000,-4.0000,1.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,2.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,5.0000,1.0000,1.0000,1.0000,-4.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,6.0000,2.5000,1.0000,1.0000,1.0000,0.5000,1.0000,1.0000,1.0000,1.5000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,1.0000,1.5000,6.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,1.0000,1.0000,1.0000,-1.0000,1.0000,0.0000,0.0000,1.0000,1.5000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,4.0000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Lancashire 2,1.0000,1.0000,0.0000,0.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.5000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.5000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,1.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,0.0000,0.0000,3.0000,2.0000,1.0000,1.0000,1.0000,1.5000,0.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,8.0000,1.0000,1.0000,-4.0000,1.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,0.5000,1.0000,-0.5000,0.0000,1.5000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,1.0000,1.5000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.5000,1.5000,1.0000,1.5000,-2.5000,0.5000,0.0000,-1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,6.0000,1.5000,1.0000,1.0000,-5.0000,-0.5000,0.0000,0.0000,0.0000,5.5000,2.5000,2.0000,1.0000,-1.5000,-0.5000,-1.0000,0.0000,5.0000,1.0000,1.0000,1.5000,-1.0000,1.0000,0.0000,-0.5000,1.0000,1.5000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,7.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.5000,-3.0000,-1.0000,-1.0000,-0.5000,1.0000,1.5000,6.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-7.0000,0.0000,0.0000,1.0000,1.0000,1.5000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Lancashire 3,1.0000,1.0000,0.0000,0.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.5000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,1.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,2.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,0.0000,0.0000,3.0000,2.0000,1.0000,1.0000,1.0000,1.5000,0.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,8.0000,1.0000,1.0000,-5.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,1.0000,1.5000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.500,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,1.0000,1.5000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,2.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,1.0000,1.5000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,7.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,2.0000,0.0000,6.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Lancashire 4,1.0000,1.0000,0.0000,0.0000,0.0000,1.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.5000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.5000,0.0000,1.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.5000,0.0000,1.0000,3.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,0.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,1.0000,5.0000,1.0000,1.5000,-2.0000,0.5000,-0.5000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.5000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,2.0000,0.0000,5.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,1.0000,1.5000,6.0000,5.0000,1.0000,1.0000,-1.0000,1.0000,0.0000,0.0000,3.0000,2.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Lancashire 5,1.0000,1.0000,0.0000,0.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,1.0000,1.5000,0.0000,1.0000,1.0000,1.0000,1.0000,1.5000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,1.0000,3.0000,2.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,-1.0000,-1.0000,0.0000,1.0000,1.5000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,1.0000,1.5000,0.0000,3.0000,3.0000,2.0000,1.0000,2.0000,0.0000,0.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,1.0000,1.5000,6.0000,1.5000,0.5000,1.0000,-0.5000,0.5000,0.0000,6.0000,1.5000,1.0000,1.0000,-0.5000,0.0000,0.0000,2.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,5.0000,2.5000,2.0000,1.0000,2.0000,0.5000,0.0000,0.0000,1.0000,1.5000,5.0000,2.5000,2.0000,1.0000,2.0000,0.5000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,1.0000,1.5000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,1.0000,1.5000,6.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,0.0000,5.0000,2.5000,1.0000,1.0000,2.0000,0.5000,1.0000,0.0000,0.0000,5.0000,2.5000,2.0000,1.0000,2.0000,0.5000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Lancashire 6,1.0000,1.0000,0.0000,0.0000,0.0000,1.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,1.0000,1.5000,0.0000,1.0000,1.0000,1.0000,1.0000,1.5000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.5000,0.0000,1.0000,1.5000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.5000,0.0000,1.0000,1.5000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,0.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,5.5000,1.0000,1.0000,-1.0000,1.0000,-0.5000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,1.0000,1.5000,6.0000,1.5000,0.5000,1.0000,-0.5000,0.5000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,7.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,1.0000,1.5000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,1.0000,1.5000,6.0000,5.5000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.5000,0.0000,1.0000,1.5000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Lancashire 7,1.0000,1.0000,0.0000,0.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,1.0000,1.5000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.5000,0.0000,1.0000,1.5000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.5000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.5000,0.0000,1.0000,1.5000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,0.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,5.0000,1.0000,2.0000,-1.0000,1.0000,-1.5000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,1.0000,1.5000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,1.0000,1.5000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,7.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,1.0000,1.5000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,1.5000,1.0000,0.0000,1.0000,1.5000,6.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Lancashire 8,1.0000,1.0000,0.0000,0.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,1.0000,1.5000,0.0000,1.0000,1.5000,1.0000,1.0000,1.5000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,1.0000,3.0000,2.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.5000,3.0000,2.0000,1.0000,-1.5000,-1.0000,-1.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,0.0000,0.0000,2.5000,1.5000,1.0000,1.0000,3.5000,1.0000,1.0000,1.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,1.0000,1.5000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,0.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,3.0000,2.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,1.0000,1.5000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,7.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,1.0000,1.5000,2.5000,1.0000,1.0000,1.0000,3.5000,1.5000,1.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,1.0000,0.5000,0.0000,0.0000,1.0000,1.5000,6.0000,2.5000,2.0000,0.5000,1.0000,0.0000,0.0000,1.5000,6.0000,2.5000,2.0000,0.5000,1.0000,0.0000,-1.0000,0.5000,1.0000,1.5000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,1.0000,1.5000,6.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Lancashire 9,1.0000,1.0000,0.0000,0.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,1.0000,1.5000,0.0000,1.0000,1.0000,1.0000,1.0000,1.5000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.5000,0.0000,1.0000,1.5000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,1.0000,-1.0000,-1.0000,-1.5000,1.0000,1.5000,0.0000,0.0000,3.0000,1.5000,1.0000,1.0000,3.0000,1.0000,1.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.5000,0.0000,1.0000,1.5000,0.0000,3.0000,2.0000,1.0000,1.0000,1.0000,1.5000,0.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,8.0000,1.0000,1.0000,-5.0000,1.0000,0.0000,0.0000,1.0000,1.5000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,7.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,1.0000,1.5000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,1.0000,1.5000,2.5000,1.5000,1.0000,1.0000,3.5000,1.0000,1.0000,0.0000,0.0000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,6.0000,2.5000,2.0000,0.5000,1.0000,0.0000,0.0000,1.5000,6.0000,1.5000,2.0000,2.0000,-2.0000,0.5000,-1.0000,-1.0000,1.0000,1.5000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,2.0000,1.0000,1.0000,1.5000,2.0000,1.0000,0.0000,-0.5000,0.0000,1.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,-1.0000,1.0000,1.5000,6.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.5000,1.0000,1.0000,1.0000,0.5000,1.0000,0.0000,0.0000,1.0000,1.5000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,0.0000,3.0000,1.5000,1.0000,1.0000,3.0000,1.0000,1.0000,0.0000,0.0000,6.0000,2.5000,2.0000,0.5000,1.0000,0.0000,0.5000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Lancashire 10,1.0000,1.0000,0.0000,0.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,1.0000,1.5000,0.0000,2.0000,1.0000,1.0000,1.0000,1.5000,5.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,2.0000,1.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,1.0000,1.5000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,0.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,3.0000,2.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,1.0000,1.5000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,7.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,1.0000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,1.0000,1.5000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,1.0000,1.5000,6.0000,5.0000,1.0000,1.5000,-1.0000,1.0000,-0.5000,0.0000,6.0000,2.5000,1.0000,1.0000,1.0000,0.5000,1.0000,1.0000,1.0000,1.5000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Lancashire 11,1.0000,1.0000,0.0000,0.0000,0.0000,1.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,3.0000,2.0000,1.0000,1.0000,1.5000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,1.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,4.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,0.0000,1.0000,3.0000,2.5000,2.0000,1.0000,3.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,1.0000,2.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,0.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,3.0000,2.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,1.0000,1.5000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,1.0000,1.5000,4.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,4.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,4.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,4.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,0.5000,1.0000,0.5000,0.0000,1.5000,1.0000,1.5000,3.0000,2.5000,2.0000,1.0000,3.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,6.0000,2.5000,2.0000,0.5000,1.0000,0.5000,0.0000,1.5000,6.0000,2.5000,1.0000,1.0000,-3.0000,0.5000,1.0000,0.0000,1.0000,1.5000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.5000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,6.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.5000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,3.0000,2.5000,1.0000,1.0000,3.0000,0.0000,1.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.5000,1.0000,1.0000,1.5000,0.0000,4.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Lancashire 12,1.0000,1.0000,0.0000,0.0000,2.0000,1.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,3.0000,2.0000,1.0000,1.0000,1.5000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.5000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,1.0000,1.0000,1.0000,2.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,0.0000,1.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,1.0000,1.0000,1.5000,0.0000,3.0000,2.0000,1.0000,1.0000,1.0000,1.5000,0.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,1.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,3.0000,2.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,8.0000,1.0000,1.0000,-5.0000,1.0000,0.0000,0.0000,1.0000,1.5000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,2.0000,2.0000,-2.0000,0.5000,-1.0000,-1.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,2.0000,1.5000,-2.0000,0.5000,-1.0000,-0.5000,1.0000,1.5000,2.0000,1.0000,1.0000,1.0000,4.0000,1.5000,1.0000,0.0000,0.0000,6.0000,1.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,6.0000,1.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.5000,-1.0000,-1.0000,-1.0000,-0.5000,2.0000,3.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,2.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,6.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,1.0000,0.0000,1.0000,6.0000,1.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Lancashire 13,1.0000,1.0000,0.0000,0.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.5000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,1.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,0.0000,0.0000,2.5000,1.0000,1.0000,1.0000,3.5000,1.5000,1.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,0.0000,0.0000,3.0000,2.0000,1.0000,1.0000,1.0000,1.5000,0.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,3.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,8.0000,1.0000,1.0000,-5.0000,1.0000,0.0000,0.0000,1.0000,1.5000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,7.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,2.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,6.0000,1.5000,2.0000,1.5000,-2.0000,0.5000,-1.0000,-0.5000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,6.0000,1.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,6.0000,1.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,2.0000,2.0000,-2.0000,0.5000,-1.0000,-1.0000,1.0000,1.5000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.5000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,1.0000,1.5000,6.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,7.0000,2.5000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,6.0000,1.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Lancashire 14,1.0000,1.0000,0.0000,0.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,1.0000,1.5000,0.0000,2.0000,1.0000,2.0000,1.0000,1.5000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,1.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,0.0000,0.0000,3.0000,2.0000,1.0000,1.0000,1.0000,1.5000,0.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,6.0000,1.0000,2.0000,0.0000,0.0000,0.0000,3.0000,2.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,1.0000,1.5000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,7.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,1.0000,1.5000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,-1.0000,-1.0000,-1.0000,0.0000,1.0000,1.5000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,2.0000,6.0000,2.5000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,1.0000,1.5000,6.0000,2.5000,2.0000,0.5000,1.0000,0.5000,0.0000,1.5000,6.0000,2.5000,2.0000,0.5000,1.0000,0.0000,0.0000,0.5000,1.0000,1.5000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,1.0000,1.5000,6.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.5000,1.5000,1.0000,0.0000,1.0000,1.5000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,2.5000,2.0000,1.0000,3.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,0.5000,1.0000,0.0000,-1.0000,1.5000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Yorkshire 1,1.0000,1.0000,0.0000,0.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,3.0000,1.0000,1.0000,0.0000,1.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,4.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-0.5000,1.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.5000,0.0000,2.0000,0.0000,0.0000,4.0000,2.0000,1.0000,2.0000,1.0000,1.5000,0.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,8.0000,1.0000,1.0000,-4.0000,1.0000,0.0000,6.0000,1.5000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,4.0000,2.0000,1.0000,2.0000,-0.5000,0.0000,0.000,4.0000,2.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,6.0000,1.5000,1.5000,-2.0000,0.5000,0.0000,-0.5000,1.0000,1.5000,4.0000,2.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,4.0000,2.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.5000,0.5000,0.0000,0.0000,2.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-5.0000,-0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-5.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-5.0000,-0.5000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,1.0000,1.0000,0.0000,1.0000,1.5000,6.0000,1.5000,1.0000,1.0000,0.0000,0.5000,1.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,1.5000,1.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,0.5000,1.0000,0.0000,2.0000,0.0000,6.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,1.0000,5.5000,-1.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,4.0000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-0.5000,1.0000,0.0000,1.0000,0.0000,2.0000,0.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,1.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,0.0000,1.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Yorkshire 2,1.0000,1.0000,0.0000,0.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,1.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,1.0000,1.5000,0.0000,1.0000,3.0000,2.0000,1.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,8.0000,1.0000,1.0000,-7.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.5000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,0.5000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.5000,1.0000,1.0000,1.0000,4.5000,0.5000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,-1.0000,-1.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,6.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.5000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Yorkshire 3,1.0000,1.0000,0.0000,0.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,1.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.5000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,8.0000,1.0000,1.0000,-7.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,6.0000,1.5000,1.0000,1.0000,-0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-0.5000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.5000,1.0000,1.0000,1.0000,4.5000,0.5000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,1.0000,1.0000,-1.0000,-1.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,1.0000,1.0000,0.0000,1.0000,1.5000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,6.0000,4.5000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,0.0000,1.0000,1.5000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Yorkshire 4,1.0000,1.0000,0.0000,0.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,1.0000,1.5000,0.0000,1.0000,3.0000,2.0000,1.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,8.0000,1.0000,1.0000,-7.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,1.0000,1.5000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.5000,1.0000,1.0000,1.0000,4.5000,0.5000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,6.0000,3.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.5000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,0.0000,1.0000,1.5000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,1.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,1.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Yorkshire 5,1.0000,1.0000,0.0000,0.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,1.0000,1.5000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.5000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,3.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,1.0000,5.0000,1.0000,1.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.5000,0.0000,1.0000,3.0000,0.0000,6.0000,2.5000,2.0000,1.0000,2.0000,0.0000,0.0000,0.0000,5.0000,1.0000,2.0000,-1.0000,1.0000,-1.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,8.0000,1.0000,1.0000,-4.0000,1.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,1.0000,1.5000,6.0000,1.5000,1.5000,-2.0000,0.5000,-0.5000,0.000,6.0000,1.5000,1.5000,-2.0000,0.5000,-0.5000,0.0000,6.0000,1.5000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,4.0000,2.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,4.0000,2.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.5000,-1.0000,-1.0000,-1.0000,-0.5000,0.0000,1.0000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-5.0000,-1.5000,-1.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.5000,1.0000,1.0000,5.0000,1.0000,1.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,1.0000,3.0000,6.0000,4.5000,1.0000,1.5000,-0.5000,1.0000,-0.5000,0.0000,6.0000,1.5000,1.0000,1.5000,-5.0000,-0.5000,0.0000,-0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,6.0000,1.5000,1.0000,1.0000,-5.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,1.0000,0.0000,2.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Yorkshire 6,1.0000,1.0000,0.0000,0.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.5000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,1.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.5000,3.0000,2.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.5000,0.0000,2.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,1.0000,1.5000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,8.0000,1.0000,1.0000,-7.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,1.0000,1.5000,3.5000,1.0000,1.0000,2.5000,0.5000,0.0000,0.0000,3.5000,1.0000,1.0000,2.5000,0.5000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.5000,1.0000,1.0000,3.0000,0.0000,0.0000,0.0000,0.0000,1.5000,1.0000,1.0000,1.0000,4.5000,0.5000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,0.0000,1.0000,1.5000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,0.0000,2.0000,0.0000,1.0000,3.0000,1.5000,1.0000,1.0000,3.0000,1.0000,1.0000,0.0000,2.0000,1.0000,4.0000,1.5000,1.0000,1.0000,3.0000,1.5000,1.0000,0.5000,0.0000,7.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,6.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,1.0000,3.5000,1.0000,1.0000,1.0000,0.5000,1.0000,0.0000,0.0000,1.0000,1.5000,3.5000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,0.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Yorkshire 7,1.0000,1.0000,0.0000,0.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.5000,0.0000,1.0000,1.5000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,1.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.5000,0.0000,1.0000,1.5000,0.0000,6.0000,2.5000,2.0000,1.0000,1.0000,1.5000,0.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,1.0000,5.0000,1.0000,1.0000,-1.0000,1.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,1.0000,1.5000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,1.0000,1.5000,4.0000,1.5000,1.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.5000,1.0000,3.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,1.0000,1.5000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,0.0000,1.0000,1.5000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,0.0000,1.0000,1.5000,1.0000,4.0000,2.0000,1.0000,1.0000,2.0000,0.5000,1.0000,0.0000,2.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,0.5000,1.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,1.0000,1.5000,6.0000,4.5000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.5000,3.0000,1.5000,1.0000,3.5000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,0.0000,1.0000,1.5000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,0.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Yorkshire 8,1.0000,1.0000,0.0000,0.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,1.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.5000,1.0000,1.0000,-0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,8.0000,1.0000,1.0000,-7.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,6.0000,1.5000,1.5000,-2.0000,0.5000,-0.5000,0.000,6.0000,1.5000,1.5000,-2.0000,0.5000,-0.5000,0.0000,6.0000,1.5000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,4.0000,2.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,4.0000,2.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,2.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.5000,-2.0000,0.5000,0.0000,-0.5000,6.0000,1.5000,1.0000,1.5000,-2.0000,0.5000,0.0000,-0.5000,0.0000,1.0000,3.0000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,-0.5000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,3.0000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,-0.5000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,1.0000,1.5000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,5.5000,1.5000,1.0000,1.0000,1.5000,-0.5000,0.0000,0.0000,1.0000,1.5000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,0.5000,1.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,0.5000,1.0000,0.0000,1.0000,1.5000,6.0000,3.0000,1.0000,1.5000,1.0000,1.0000,-0.5000,0.0000,3.0000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,-0.5000,1.0000,1.5000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-0.5000,1.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,0.0000,3.5000,3.0000,2.0000,1.5000,0.5000,-1.0000,-1.0000,-0.5000,0.0000,0.0000,0.0000 +Yorkshire 9,1.0000,1.0000,0.0000,0.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,1.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.5000,0.0000,1.0000,1.5000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,8.0000,1.0000,1.0000,-7.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.5000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,1.0000,1.5000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,2.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,0.5000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,-1.0000,-1.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,1.0000,1.5000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,1.0000,1.5000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,6.0000,3.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,3.5000,1.0000,1.0000,1.0000,0.5000,1.0000,0.0000,0.0000,1.0000,1.5000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-0.5000,1.0000,0.0000,0.0000,0.0000,1.0000,1.5000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Yorkshire 10,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,1.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,1.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,8.0000,1.0000,1.0000,-7.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,2.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,6.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,0.0000,1.0000,1.5000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,1.0000,1.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,1.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Yorkshire 11,1.0000,1.0000,0.0000,0.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,1.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,8.0000,1.0000,1.0000,-7.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,1.0000,1.5000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,0.5000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.5000,1.0000,1.0000,1.0000,4.5000,0.5000,0.0000,0.0000,2.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.5000,1.0000,-1.0000,-1.0000,-0.5000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.5000,1.0000,-1.0000,-1.0000,-0.5000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,6.0000,3.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,1.0000,1.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,1.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Yorkshire 12,1.0000,1.0000,0.0000,0.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.5000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,1.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,1.0000,1.5000,0.0000,4.0000,2.0000,1.0000,1.0000,1.0000,1.5000,0.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,1.0000,6.0000,1.5000,1.0000,-5.0000,-0.5000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,6.0000,1.5000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,4.0000,2.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,4.0000,2.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,2.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.0000,2.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,5.0000,3.0000,2.0000,0.5000,2.0000,0.0000,0.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,1.0000,0.5000,0.0000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,2.0000,0.0000,6.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,1.0000,1.0000,1.5000,-1.0000,1.0000,0.0000,-0.5000,1.0000,1.5000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,4.0000,6.0000,1.5000,1.0000,1.5000,-2.0000,0.5000,0.0000,-0.5000,0.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,6.0000,1.5000,1.0000,0.5000,1.0000,1.5000,1.5000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Yorkshire 13,1.0000,1.0000,0.0000,0.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,1.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,1.0000,1.5000,0.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,8.0000,1.0000,1.0000,-7.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,1.0000,1.5000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.500,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,6.0000,1.5000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,4.0000,2.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,4.0000,2.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,2.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-5.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,5.5000,2.5000,2.0000,1.0000,1.5000,0.5000,0.0000,0.0000,1.0000,1.5000,6.0000,2.5000,2.0000,1.0000,1.0000,0.5000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,1.0000,0.5000,0.0000,0.5000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,2.0000,0.0000,6.0000,3.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,4.5000,1.0000,1.0000,1.5000,-0.5000,1.0000,0.0000,-0.5000,1.0000,1.5000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Yorkshire 14,1.0000,1.0000,0.0000,0.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,1.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,5.0000,1.0000,1.0000,-1.0000,1.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,1.0000,5.0000,1.0000,1.0000,-1.0000,1.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,2.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,1.0000,1.5000,6.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,5.0000,1.0000,1.0000,1.5000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,1.0000,1.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.5000,1.0000,1.5000,1.5000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Yorkshire 15,1.0000,1.0000,0.0000,0.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,1.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.5000,0.0000,2.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,3.5000,1.0000,1.0000,0.5000,1.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,8.0000,1.0000,1.0000,-7.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,1.0000,1.5000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.000,4.0000,2.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,4.0000,2.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,4.0000,2.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,3.0000,-1.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,1.0000,1.5000,6.0000,1.5000,1.0000,1.5000,-2.0000,0.5000,0.0000,-0.5000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,0.0000,1.0000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,1.0000,1.5000,6.0000,2.5000,2.0000,1.0000,1.0000,0.5000,0.0000,1.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,0.5000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,6.0000,2.5000,2.0000,1.0000,1.0000,0.5000,0.0000,0.5000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,0.5000,1.0000,0.0000,1.0000,1.5000,6.0000,3.0000,1.0000,1.5000,1.0000,1.0000,-0.5000,0.0000,3.0000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,4.0000,2.0000,1.0000,2.5000,-0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Yorkshire 16,1.0000,1.0000,0.0000,0.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,8.0000,1.0000,1.0000,-7.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.5000,1.0000,1.0000,1.0000,4.5000,0.5000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,2.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.5000,1.0000,-1.0000,-1.0000,-0.5000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,6.0000,3.0000,1.0000,1.5000,1.0000,1.0000,-1.0000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,2.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,0.0000,1.0000,1.5000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,1.0000,1.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Yorkshire 17,1.0000,1.0000,0.0000,0.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,1.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,0.0000,0.0000,4.0000,2.0000,1.0000,2.0000,2.0000,0.0000,0.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,1.0000,5.5000,1.0000,1.5000,-1.5000,1.0000,-0.5000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.5000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,1.0000,1.5000,6.0000,1.5000,1.0000,1.0000,-0.5000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,2.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,1.0000,5.5000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,-1.0000,-1.0000,0.0000,1.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,1.0000,1.5000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,2.0000,0.0000,6.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Yorkshire 18,1.0000,1.0000,0.0000,0.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,1.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,8.0000,1.0000,1.0000,-7.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,1.0000,1.5000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,1.0000,1.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,6.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,1.0000,1.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,1.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Yorkshire 19,1.0000,1.0000,0.0000,0.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,1.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,8.0000,1.0000,1.0000,-7.0000,0.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,2.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,-1.0000,-1.0000,-1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,3.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,1.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,6.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,1.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,0.0000 +Yorkshire 20,1.0000,1.0000,0.0000,0.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.5000,0.0000,1.0000,1.5000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.5000,0.0000,1.0000,3.0000,2.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,8.0000,1.0000,1.0000,-7.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.5000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,1.0000,1.5000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,0.5000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,0.5000,0.0000,0.0000,1.0000,1.5000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.5000,1.0000,-1.0000,-1.0000,-0.5000,2.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,1.0000,1.5000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,1.0000,1.5000,6.0000,3.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.5000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-0.5000,1.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,1.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Yorkshire 21,1.0000,1.0000,0.0000,0.0000,2.0000,2.0000,0.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.5000,0.0000,1.0000,1.5000,1.0000,1.0000,1.0000,1.0000,1.0000,3.0000,2.0000,1.0000,0.0000,1.0000,3.0000,2.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,1.0000,1.5000,2.5000,3.0000,2.0000,2.0000,0.0000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.5000,0.0000,2.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,5.0000,1.0000,1.0000,-1.0000,1.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.5000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,8.0000,1.0000,1.0000,-4.0000,1.0000,0.0000,0.0000,1.0000,1.5000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,2.5000,1.0000,1.0000,5.0000,-1.0000,0.0000,0.0000,0.0000,1.0000,2.5000,1.0000,1.0000,5.0000,-1.0000,0.0000,0.0000,7.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,2.0000,5.0000,-1.5000,0.0000,-1.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,-1.0000,-1.0000,0.0000,1.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,1.5000,1.0000,0.0000,2.0000,0.0000,6.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,5.0000,0.0000,0.0000,0.0000,1.0000,1.5000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Yorkshire 22,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,3.0000,3.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,0.0000,0.0000,4.0000,2.0000,1.0000,2.0000,2.0000,0.0000,0.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,1.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,2.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,5.0000,3.0000,2.0000,1.0000,-1.0000,-1.0000,-1.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,-1.0000,-1.0000,0.0000,1.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,2.5000,1.0000,1.0000,4.0000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Yorkshire 23,1.0000,1.0000,0.0000,0.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,6.0000,1.5000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,2.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,-1.0000,-1.0000,0.0000,1.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,2.0000,0.0000,6.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Yorkshire 24,1.0000,1.0000,0.0000,0.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.5000,0.0000,1.0000,1.5000,1.0000,1.0000,1.0000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,2.0000,0.0000,0.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,1.0000,1.0000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,6.5000,1.5000,1.0000,-2.5000,0.5000,0.0000,0.000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,1.0000,1.5000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.5000,1.0000,1.0000,5.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,2.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.5000,3.0000,-0.5000,0.0000,-0.5000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,6.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.5000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Yorkshire 25,1.0000,1.0000,0.0000,0.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.5000,0.0000,2.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,8.0000,1.0000,1.0000,-7.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,2.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,1.0000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.5000,3.0000,-0.5000,0.0000,-0.5000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,6.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,2.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,1.0000,5.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,1.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Yorkshire 26,1.0000,1.0000,0.0000,0.0000,2.0000,2.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,1.0000,1.0000,1.0000,3.0000,3.0000,2.0000,1.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,4.5000,1.0000,1.5000,-0.5000,1.0000,-1.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,1.0000,5.5000,1.0000,1.5000,-1.5000,1.0000,-1.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,8.0000,1.0000,1.0000,-4.0000,1.0000,0.0000,0.0000,1.0000,1.5000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,2.0000,0.0000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,-1.0000,-1.0000,0.0000,1.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Yorkshire 27,1.0000,1.0000,0.0000,0.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,1.0000,1.5000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,2.0000,0.0000,5.5000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,-1.0000,-1.0000,0.0000,1.0000,1.5000,6.0000,2.5000,2.0000,0.5000,1.0000,0.5000,0.0000,1.5000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,1.0000,1.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,1.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Yorkshire 28,1.0000,1.0000,0.0000,0.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.5000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,1.0000,1.5000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,8.0000,1.0000,1.0000,-7.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.5000,1.0000,1.0000,1.0000,4.5000,0.5000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,2.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.5000,1.0000,-1.0000,-1.0000,-0.5000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,6.0000,3.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-0.5000,1.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,1.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Yorkshire 29,1.0000,1.0000,0.0000,0.0000,2.0000,1.5000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,1.0000,1.0000,1.0000,3.0000,3.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,0.0000,1.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,0.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,1.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,8.0000,1.0000,1.0000,-4.0000,1.0000,0.0000,0.0000,1.0000,1.5000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,2.0000,0.0000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,-1.0000,-1.0000,0.0000,1.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,3.5000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,6.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Yorkshire 30,1.0000,1.0000,0.0000,0.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,1.0000,3.0000,2.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,0.0000,1.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,1.0000,1.5000,0.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,8.0000,1.0000,1.0000,-3.0000,0.0000,1.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,8.0000,1.0000,1.0000,-5.0000,0.0000,0.0000,0.0000,1.0000,1.5000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.5000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,-1.0000,-1.0000,0.0000,1.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-7.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,-2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-0.5000,1.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Yorkshire 31,1.0000,1.0000,0.0000,0.0000,2.0000,2.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,2.5000,1.0000,1.5000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,1.0000,3.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,2.0000,0.0000,0.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,8.0000,1.0000,1.0000,-3.0000,0.0000,1.0000,3.0000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.500,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,8.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-0.5000,0.0000,1.0000,2.0000,0.0000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,-1.0000,-1.0000,0.0000,1.0000,1.5000,6.0000,2.5000,2.0000,1.0000,1.0000,0.5000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.5000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,2.0000,1.0000,1.0000,1.0000,3.0000,1.0000,0.0000,0.0000,0.0000,2.5000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,6.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Yorkshire 32,1.0000,1.0000,0.0000,0.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,2.0000,1.0000,1.0000,1.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,0.0000,0.0000,4.0000,2.0000,1.0000,2.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,2.0000,1.0000,1.0000,-1.5000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,1.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,7.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,2.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,5.5000,2.5000,2.0000,1.0000,0.5000,-1.0000,-1.0000,0.0000,1.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,2.0000,0.0000,6.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,1.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Yorkshire 33,1.0000,1.0000,0.0000,0.0000,2.0000,2.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,1.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,0.0000,0.0000,4.0000,2.0000,1.0000,2.0000,2.0000,0.0000,0.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,1.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,7.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,2.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,-1.0000,-1.0000,0.0000,1.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,2.0000,0.0000,6.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,6.0000,2.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Yorkshire 34,1.0000,1.0000,0.0000,0.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,1.0000,1.0000,1.0000,2.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,3.0000,3.0000,2.0000,1.5000,1.0000,-1.0000,-1.0000,-1.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,1.5000,1.0000,-1.0000,-1.0000,-1.0000,2.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,0.0000,0.0000,4.0000,2.0000,1.0000,2.0000,2.0000,0.0000,0.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,1.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,6.0000,1.5000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-0.5000,0.0000,1.0000,2.0000,0.0000,1.0000,3.0000,1.0000,1.5000,5.0000,-1.5000,0.0000,-0.5000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,7.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,2.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,1.0000,0.5000,0.0000,1.0000,1.0000,1.5000,6.0000,2.5000,2.0000,1.0000,1.0000,0.5000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,2.0000,0.0000,6.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.5000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Isle of Man1,2.0000,1.5000,0.0000,0.0000,2.0000,2.5000,0.0000,1.5000,1.0000,1.5000,0.0000,0.0000,2.5000,1.0000,1.5000,0.0000,0.0000,0.0000,1.0000,1.5000,0.0000,2.5000,1.0000,1.5000,2.0000,0.0000,3.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,1.0000,1.0000,1.0000,2.5000,1.0000,1.0000,1.5000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.5000,3.0000,2.0000,2.0000,5.0000,3.0000,2.0000,2.0000,-1.0000,-1.0000,-1.0000,-1.0000,0.0000,1.0000,4.0000,3.0000,3.0000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,3.0000,2.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,2.0000,1.0000,1.5000,0.0000,0.0000,5.0000,1.0000,1.0000,1.0000,0.5000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,1.0000,6.0000,1.5000,1.0000,-1.0000,-0.5000,0.0000,4.5000,1.0000,1.0000,1.0000,1.5000,0.5000,0.0000,0.0000,1.0000,1.5000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,1.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,1.0000,1.5000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,1.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,1.0000,5.5000,1.0000,1.0000,1.0000,0.5000,0.5000,0.0000,0.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,0.5000,0.0000,0.0000,5.5000,1.0000,1.0000,1.0000,0.5000,0.5000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,1.0000,1.5000,5.0000,3.0000,2.0000,1.5000,-1.0000,-1.0000,-1.0000,-1.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,-1.0000,-1.0000,-1.0000,-1.5000,0.0000,0.0000,5.0000,3.0000,2.0000,1.5000,2.0000,0.0000,0.0000,-0.5000,0.0000,3.0000,3.0000,2.0000,2.0000,1.0000,-1.0000,-1.0000,-1.5000,4.5000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,5.0000,3.0000,2.0000,1.5000,-1.0000,-1.0000,-1.0000,-1.0000,1.0000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,4.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.5000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,1.0000,1.0000,1.0000,1.0000,1.0000,5.5000,1.5000,1.0000,0.0000,0.0000,2.0000,1.0000,1.0000,1.0000,5.0000,2.0000,1.0000,0.0000,2.0000,0.0000,4.0000,5.5000,1.0000,1.0000,0.5000,0.5000,0.0000,1.0000,5.5000,1.0000,1.0000,1.0000,0.5000,0.5000,0.0000,0.0000,1.0000,1.5000,5.5000,1.0000,1.0000,1.0000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,4.0000,3.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,1.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,0.0000 +Isle of Man2,2.0000,1.0000,0.0000,0.0000,2.0000,2.0000,0.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,2.0000,1.2000,2.0000,2.0000,0.0000,2.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,2.0000,1.0000,1.0000,1.0000,2.0000,1.0000,1.0000,1.0000,0.0000,3.0000,1.0000,1.0000,2.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,3.0000,2.0000,2.0000,2.0000,0.0000,0.0000,-1.0000,0.0000,1.0000,4.0000,1.0000,2.5000,2.0000,1.0000,0.0000,1.0000,2.5000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,-1.0000,-1.0000,-1.0000,0.0000,0.0000,6.5000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,0.0000,1.0000,3.0000,2.0000,1.0000,2.0000,2.0000,0.0000,0.0000,0.0000,5.0000,1.0000,1.0000,1.0000,0.5000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,1.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,5.0000,1.0000,1.0000,1.0000,1.0000,0.5000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,1.0000,5.0000,1.0000,1.0000,1.0000,0.5000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,1.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,1.0000,4.5000,1.0000,1.0000,1.0000,1.5000,0.5000,0.0000,0.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,0.5000,0.0000,0.0000,5.0000,1.0000,1.0000,1.0000,1.0000,0.5000,0.0000,0.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,0.5000,0.0000,0.0000,1.0000,1.5000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.5000,2.0000,0.0000,0.0000,-0.5000,0.0000,1.0000,5.0000,3.0000,2.0000,1.0000,-1.0000,-1.0000,-1.0000,-0.5000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,5.0000,3.0000,2.0000,1.0000,-1.0000,-1.0000,-1.0000,-0.5000,2.0000,4.0000,2.0000,1.0000,0.5000,3.0000,0.5000,1.0000,1.5000,1.0000,4.0000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,2.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,1.0000,2.0000,1.5000,1.0000,0.5000,5.0000,1.0000,1.0000,0.5000,0.0000,1.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,4.0000,5.0000,1.0000,1.0000,1.0000,0.5000,0.0000,1.0000,6.0000,1.5000,1.0000,0.5000,1.0000,-0.5000,0.0000,0.5000,1.0000,1.5000,2.0000,1.5000,1.0000,4.5000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,1.0000,1.0000,4.0000,2.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,4.0000,2.0000,1.0000,0.5000,3.0000,0.5000,1.0000,1.5000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,0.0000 +Cheshire 1,1.0000,1.0000,0.0000,0.0000,2.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,5.5000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,1.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,1.0000,1.5000,0.0000,0.0000,5.5000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,1.0000,1.5000,1.0000,5.5000,1.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.5000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.5000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,2.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.5000,3.0000,2.0000,2.0000,-1.5000,-1.0000,-1.0000,-1.5000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,2.0000,2.0000,-2.0000,0.5000,-1.0000,-1.0000,1.0000,1.5000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,6.0000,1.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,6.0000,1.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,1.0000,1.5000,6.0000,5.5000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.5000,1.0000,1.0000,4.0000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-2.0000,0.5000,1.0000,1.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Cheshire 2,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,3.0000,2.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,1.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,6.0000,2.5000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,6.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,1.0000,1.5000,0.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,8.0000,1.0000,1.0000,-3.0000,0.0000,1.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,0.5000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,7.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,2.0000,0.0000,6.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,4.5000,2.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,1.5000,1.0000,0.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,1.5000,1.0000,0.0000,2.0000,0.0000,6.0000,6.0000,1.0000,5.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,1.0000,0.5000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,1.5000,1.0000,1.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,1.5000,1.0000,0.0000,5.5000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Cheshire 3,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,5.5000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,1.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.5000,1.0000,1.0000,3.0000,1.0000,1.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,1.0000,1.5000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,5.5000,1.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,2.0000,0.0000,5.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.5000,0.0000,0.0000,1.0000,1.5000,2.0000,0.0000,3.0000,1.5000,1.0000,1.0000,3.0000,1.0000,1.0000,0.0000,0.0000,6.0000,1.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,6.0000,1.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,2.0000,0.0000,6.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,1.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,6.0000,1.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Cheshire 4,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,5.5000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.5000,1.0000,2.0000,2.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,1.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,0.0000,0.0000,4.0000,2.0000,1.0000,2.0000,2.0000,0.0000,0.0000,0.0000,5.5000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,5.5000,1.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.5000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,4.0000,2.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,4.0000,2.0000,0.5000,2.0000,-0.5000,0.0000,0.5000,2.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,6.5000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,2.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,2.0000,-2.0000,0.5000,0.0000,-1.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.5000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-0.5000,1.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,6.0000,2.5000,2.0000,0.5000,1.0000,0.5000,0.0000,1.5000,7.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,2.0000,0.0000,6.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-2.0000,1.5000,1.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,1.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Cheshire 5,1.0000,1.0000,0.0000,0.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,1.0000,1.5000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,0.0000,0.0000,4.0000,2.0000,1.0000,2.0000,2.0000,0.0000,0.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,6.5000,1.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,2.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,2.0000,0.0000,5.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,6.5000,2.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,5.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.5000,6.0000,1.5000,1.0000,0.5000,0.0000,0.0000,1.0000,1.5000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,1.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,2.0000,0.0000,6.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,1.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,6.0000,1.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Cheshire 6,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,5.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,1.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,1.0000,1.5000,0.0000,0.0000,5.0000,1.0000,2.0000,-1.0000,1.0000,-1.5000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,5.5000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,2.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,-1.0000,-1.0000,-1.0000,-1.5000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,6.5000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,6.5000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,-1.0000,-1.0000,-1.0000,0.0000,1.0000,1.5000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,2.0000,0.0000,6.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.5000,1.0000,1.0000,4.0000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.5000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Derbyshire 1,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,1.0000,1.5000,0.0000,1.0000,1.0000,1.0000,1.0000,1.5000,5.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,1.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,1.0000,1.5000,0.0000,4.0000,2.0000,1.0000,1.0000,1.0000,1.5000,0.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,7.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,6.0000,1.5000,1.0000,1.5000,-2.0000,0.5000,0.0000,-0.5000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,2.0000,1.5000,-2.0000,0.5000,-1.0000,-0.5000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,1.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,6.0000,1.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,2.5000,1.0000,1.0000,1.0000,3.5000,1.5000,1.0000,0.0000,0.0000,2.5000,1.0000,1.0000,1.0000,3.5000,1.5000,1.0000,0.0000,1.0000,1.5000,4.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-2.0000,0.5000,1.0000,1.0000,1.0000,1.5000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,1.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,2.0000,0.0000,0.0000,-1.0000,0.0000,2.5000,1.0000,1.0000,1.0000,3.5000,1.5000,1.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,1.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,6.0000,1.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Derbyshire 2,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,3.0000,3.0000,2.0000,1.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,0.0000,0.0000,4.0000,2.0000,1.0000,2.0000,2.0000,0.0000,0.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,7.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,2.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,-1.0000,0.0000,0.0000,1.0000,1.5000,6.0000,2.5000,2.0000,0.5000,1.0000,0.5000,0.0000,1.5000,7.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,2.0000,0.0000,6.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,0.5000,2.0000,0.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Derbyshire 3,1.0000,1.0000,0.0000,0.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,3.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.5000,1.0000,1.0000,3.0000,1.0000,1.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,0.0000,0.0000,4.0000,2.0000,1.0000,2.0000,2.0000,0.0000,0.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,3.5000,1.0000,1.0000,2.5000,0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,7.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,2.0000,0.0000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.5000,1.0000,1.0000,3.0000,1.0000,1.0000,0.0000,0.0000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,2.5000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.5000,1.0000,1.0000,3.0000,1.0000,1.0000,0.0000,0.0000,3.0000,1.5000,1.0000,1.0000,3.0000,1.0000,1.0000,0.0000,2.0000,0.0000,6.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,1.0000,-0.5000,0.0000,-1.5000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,1.0000,-0.5000,0.0000,-1.5000,0.0000,0.0000,0.0000 +Derbyshire 4,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,3.0000,2.0000,1.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,1.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,0.0000,0.0000,4.0000,2.0000,1.0000,2.0000,2.0000,0.0000,0.0000,0.0000,6.5000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,2.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,2.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,0.5000,1.0000,-0.5000,0.0000,1.5000,0.0000,0.0000,6.0000,2.5000,2.0000,0.5000,1.0000,0.0000,0.0000,1.5000,0.0000,6.0000,2.5000,2.0000,0.5000,1.0000,0.0000,0.0000,1.5000,5.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,1.0000,1.5000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.5000,1.0000,1.0000,3.0000,1.0000,1.0000,0.0000,2.0000,0.0000,6.0000,6.5000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,1.0000,0.0000,1.0000,3.0000,1.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,6.0000,2.5000,2.0000,0.5000,1.0000,0.5000,0.0000,1.5000,0.0000,6.0000,2.5000,2.0000,0.5000,1.0000,0.0000,0.5000,0.0000,5.0000,3.0000,2.0000,2.0000,1.0000,-0.5000,0.0000,-1.5000,0.0000,0.0000,0.0000 +Derbyshire 5,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,1.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,5.0000,3.0000,2.0000,2.0000,-1.0000,-1.0000,-1.0000,-1.5000,2.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,2.0000,0.0000,0.0000,0.0000,5.0000,1.0000,2.0000,1.0000,0.5000,-1.5000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.500,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,-3.0000,1.0000,0.0000,-1.5000,1.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.5000,5.0000,-1.5000,0.0000,-0.5000,7.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,1.0000,-0.5000,0.0000,-1.5000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,1.0000,-0.5000,0.0000,-1.5000,0.0000,5.0000,3.0000,2.0000,2.0000,1.0000,-0.5000,0.0000,-1.5000,6.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.5000,1.0000,1.5000,1.0000,1.5000,1.0000,1.5000,6.0000,1.5000,1.0000,0.5000,1.0000,1.5000,1.0000,1.5000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,2.5000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.5000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,6.0000,2.5000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,1.0000,2.0000,1.5000,0.5000,0.0000,-1.5000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.5000,1.0000,1.5000,1.0000,1.5000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Derbyshire 6,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,5.0000,1.0000,2.0000,1.0000,0.5000,-1.5000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,2.0000,0.0000,1.0000,3.0000,2.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,2.0000,1.0000,-0.5000,0.0000,-1.5000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,1.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,5.0000,1.0000,2.0000,1.0000,0.5000,-1.5000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,5.0000,1.0000,2.0000,1.0000,0.5000,-1.5000,3.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,2.0000,0.0000,1.0000,3.0000,1.0000,1.5000,5.0000,-1.5000,0.0000,-0.5000,0.0000,1.0000,3.0000,1.0000,1.5000,5.0000,-1.5000,0.0000,-0.5000,3.0000,1.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,2.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,1.0000,-0.5000,0.0000,-1.5000,0.0000,0.0000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,1.0000,-0.5000,0.0000,-1.5000,7.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,1.0000,1.5000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,7.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,2.0000,0.0000,6.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,1.0000,-0.5000,0.0000,-1.5000,0.0000,0.0000,0.0000 +Derbyshire 7,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,5.0000,1.0000,1.5000,1.0000,0.5000,0.5000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,5.0000,1.0000,1.0000,1.5000,1.0000,0.5000,0.0000,-0.5000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,2.0000,0.0000,1.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,1.5000,1.0000,-0.5000,0.0000,-0.5000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,0.0000,0.0000,4.0000,2.0000,1.0000,2.0000,2.0000,0.0000,0.0000,0.0000,5.0000,1.0000,2.0000,1.0000,0.5000,-1.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,5.0000,1.0000,2.0000,1.0000,0.5000,-1.5000,3.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,1.0000,0.0000,1.0000,3.0000,1.0000,1.5000,5.0000,-1.5000,0.0000,-0.5000,0.0000,1.0000,3.0000,1.0000,1.5000,5.0000,-1.5000,0.0000,-0.5000,3.0000,1.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.5000,5.0000,-1.5000,0.0000,-0.5000,2.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,4.5000,3.0000,2.0000,1.5000,1.5000,-0.5000,0.0000,-1.5000,0.0000,0.0000,6.0000,2.5000,2.0000,0.5000,1.0000,0.0000,0.0000,1.5000,0.0000,4.5000,3.0000,2.0000,1.5000,1.5000,-0.5000,0.0000,-1.0000,5.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,1.0000,1.5000,6.0000,1.5000,1.0000,0.5000,1.0000,1.5000,1.0000,1.0000,5.0000,3.0000,2.0000,1.5000,1.0000,-0.5000,0.0000,-1.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,2.0000,0.0000,6.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.5000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.5000,1.0000,1.5000,1.0000,1.5000,0.0000,6.0000,2.5000,2.0000,0.5000,1.0000,0.0000,1.5000,0.0000,5.0000,3.0000,2.0000,1.5000,1.0000,-0.5000,0.0000,-0.5000,0.0000,0.0000,0.0000 +Shropshire 1,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,1.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.5000,0.0000,2.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,2.0000,0.0000,1.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.5000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,0.0000,5.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,3.0000,3.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-0.5000,0.0000,1.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,7.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,2.0000,3.0000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,2.0000,3.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,2.0000,0.0000,6.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,6.0000,1.5000,1.0000,0.5000,1.0000,1.5000,0.5000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Shropshire 2,2.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,1.0000,1.0000,2.0000,3.0000,5.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,1.5000,1.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,0.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,6.0000,1.5000,0.5000,-1.5000,-0.5000,1.5000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,2.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,1.5000,1.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.5000,1.0000,1.5000,1.0000,1.5000,1.0000,1.5000,6.0000,1.5000,2.0000,1.0000,1.0000,1.0000,0.0000,1.0000,5.0000,3.0000,2.0000,2.0000,-1.0000,-1.0000,-1.0000,-1.0000,2.0000,2.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,2.0000,0.0000,6.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-7.0000,0.0000,0.0000,0.0000,2.0000,3.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.5000,1.0000,1.5000,1.5000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Shropshire 3,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,1.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.5000,0.0000,2.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,3.0000,3.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,1.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-0.5000,0.0000,1.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,2.0000,3.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,1.0000,-1.0000,-1.0000,-1.0000,2.0000,3.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,1.0000,-1.0000,-1.0000,-1.0000,2.0000,3.0000,1.0000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,2.0000,3.0000,6.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,5.0000,1.0000,2.0000,1.5000,0.5000,0.0000,-1.5000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Shropshire 4,1.0000,1.5000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,1.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,1.0000,2.0000,1.0000,1.0000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,3.0000,3.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,5.0000,1.0000,2.0000,-1.0000,1.0000,-1.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-0.5000,0.0000,1.0000,2.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,2.0000,3.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,-1.0000,-1.0000,-1.0000,-1.5000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,1.0000,-1.0000,-1.0000,-1.0000,2.0000,3.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,1.0000,4.0000,2.0000,1.0000,1.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,2.0000,3.0000,6.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,5.0000,1.0000,5.0000,-5.0000,-1.0000,-1.0000,-5.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Shropshire 5,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,4.5000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,1.0000,1.0000,2.0000,3.0000,4.5000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,1.0000,1.0000,4.5000,1.0000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,5.0000,3.0000,2.0000,2.0000,-1.0000,-1.0000,-1.0000,-1.0000,2.0000,3.0000,1.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,4.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,4.5000,1.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,4.5000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,4.5000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,6.0000,1.5000,1.0000,1.0000,-0.5000,1.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-0.5000,0.0000,1.0000,2.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,-0.5000,0.0000,1.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,2.0000,3.0000,8.0000,3.0000,2.0000,1.0000,-7.0000,0.0000,0.0000,0.0000,6.5000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,-1.0000,-1.0000,-1.0000,-1.0000,2.0000,3.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,1.0000,1.0000,1.5000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,1.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,2.5000,1.0000,1.0000,1.0000,3.5000,1.5000,1.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,2.0000,3.0000,6.0000,4.5000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-7.0000,0.0000,0.0000,0.0000,2.0000,3.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,1.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Shropshire 6,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,1.0000,2.0000,1.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,1.0000,1.0000,2.0000,3.0000,5.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,3.0000,1.0000,1.0000,2.0000,5.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,5.0000,1.0000,2.0000,-1.0000,1.0000,-1.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,2.0000,3.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,2.0000,1.0000,-1.0000,0.0000,-1.0000,2.0000,3.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.5000,-1.0000,-1.0000,-1.0000,-0.5000,2.0000,3.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,2.0000,3.0000,6.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,5.0000,1.0000,2.0000,1.5000,0.5000,0.0000,-1.5000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Shropshire 7,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,5.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,2.0000,0.0000,1.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,5.0000,3.0000,2.0000,2.0000,-1.0000,-1.0000,-1.0000,-1.0000,2.0000,3.0000,1.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,3.0000,3.0000,1.0000,3.0000,3.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,0.0000,1.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,5.0000,1.0000,1.0000,2.0000,-1.0000,1.0000,0.0000,-1.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,2.0000,3.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,-1.0000,-1.0000,-1.0000,-1.0000,2.0000,3.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,-1.0000,-1.0000,-1.0000,-1.0000,2.0000,3.0000,1.0000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,2.0000,3.0000,4.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-7.0000,0.0000,0.0000,0.0000,2.0000,3.0000,5.0000,1.0000,2.0000,1.5000,0.5000,0.0000,-1.5000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000 +Shropshire 8,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,1.0000,1.0000,2.0000,3.0000,5.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,2.0000,0.0000,1.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,2.0000,1.0000,1.0000,0.0000,-1.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,4.0000,2.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,2.0000,3.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,-1.0000,-1.0000,-1.0000,0.0000,2.0000,3.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,-1.0000,-1.0000,-1.0000,-1.0000,2.0000,3.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,2.0000,3.0000,6.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,1.0000,1.0000,2.0000,-1.0000,1.0000,0.0000,-1.0000,2.0000,3.0000,5.0000,1.0000,2.0000,1.5000,0.5000,0.0000,-1.5000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,6.0000,2.5000,2.0000,0.5000,1.0000,0.5000,0.0000,1.5000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,0.0000 +Shropshire 9,2.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,2.0000,1.0000,2.0000,0.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,1.0000,1.0000,2.0000,3.0000,5.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,1.0000,1.0000,2.0000,1.0000,1.0000,2.0000,0.0000,1.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,3.0000,3.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,2.0000,3.0000,6.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,-1.0000,-1.0000,-1.0000,0.0000,2.0000,3.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,6.0000,2.5000,2.0000,0.5000,1.0000,0.5000,0.0000,1.5000,1.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,-1.0000,-1.0000,-1.0000,-1.0000,2.0000,3.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,2.0000,3.0000,6.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,5.0000,1.0000,2.0000,1.5000,0.5000,0.0000,-1.5000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Shropshire 10,2.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,1.0000,1.0000,2.0000,3.0000,5.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,2.0000,0.0000,1.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,5.0000,3.0000,2.0000,2.0000,-1.0000,-1.0000,-1.0000,-1.0000,2.0000,3.0000,1.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,3.0000,3.0000,1.0000,3.0000,3.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,5.0000,1.0000,1.0000,2.0000,-1.0000,1.0000,0.0000,-1.0000,2.0000,3.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,2.0000,3.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,-1.0000,-1.0000,-1.0000,0.0000,2.0000,3.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,1.0000,-1.0000,-1.0000,-1.0000,2.0000,3.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,2.0000,3.0000,6.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-7.0000,0.0000,0.0000,0.0000,2.0000,3.0000,5.0000,1.0000,2.0000,1.5000,0.5000,0.0000,-1.5000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Shropshire 11,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,1.0000,1.0000,2.0000,3.0000,5.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,2.0000,0.0000,1.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,5.0000,3.0000,2.0000,2.0000,-1.0000,-1.0000,-1.0000,-1.0000,2.0000,3.0000,1.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,3.0000,3.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,5.0000,1.0000,1.0000,2.0000,-1.0000,1.0000,0.0000,-1.0000,2.0000,3.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,2.0000,3.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,1.0000,1.0000,-1.0000,-1.0000,0.0000,1.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,-1.0000,-1.0000,-1.0000,-1.0000,2.0000,3.0000,0.0000,7.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,6.0000,2.0000,1.0000,1.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,2.0000,3.0000,6.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-7.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,1.0000,5.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Staffordshire 1,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,0.0000,0.0000,4.0000,2.0000,1.0000,2.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,5.0000,1.0000,2.0000,-1.0000,1.0000,-1.0000,3.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,2.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.5000,5.0000,1.5000,1.0000,-0.5000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,2.0000,0.0000,6.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.5000,1.0000,1.0000,4.0000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,0.0000 +Staffordshire 2,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,1.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,0.0000,0.0000,4.0000,2.0000,1.0000,2.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,3.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,2.0000,0.0000,6.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,6.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,1.0000,1.5000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,2.0000,0.0000,6.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.5000,1.0000,1.0000,4.0000,0.5000,0.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.5000,1.0000,1.5000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,1.5000,1.0000,1.0000,1.0000,4.5000,1.5000,1.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,0.0000 +Staffordshire 3,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,2.0000,0.0000,1.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,0.0000,0.0000,4.0000,2.0000,1.0000,2.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,8.0000,1.0000,1.0000,-5.0000,0.0000,0.0000,3.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,7.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,2.0000,5.0000,-1.5000,-1.0000,-1.0000,3.0000,1.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,2.0000,5.0000,-1.5000,-1.0000,-1.0000,2.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,1.5000,1.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,1.0000,1.5000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,2.0000,0.0000,6.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.5000,1.0000,1.0000,4.0000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,1.5000,1.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,1.0000,0.0000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Staffordshire 4,1.0000,1.0000,0.0000,0.0000,2.0000,2.5000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,0.0000,0.0000,4.0000,2.0000,1.0000,2.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,3.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,2.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,2.0000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,1.5000,1.0000,0.0000,2.0000,0.0000,6.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,1.0000,1.0000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,0.0000 +Staffordshire 5,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.0000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,0.0000,0.0000,4.0000,2.0000,1.0000,2.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,2.0000,0.0000,1.0000,3.0000,2.0000,2.0000,5.0000,-1.5000,-1.0000,-1.0000,0.0000,1.0000,3.0000,2.0000,2.0000,5.0000,-1.5000,-1.0000,-1.0000,3.0000,1.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,2.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.5000,1.0000,1.0000,1.0000,4.5000,1.5000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,2.0000,0.0000,6.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,2.5000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,1.5000,1.0000,1.0000,0.0000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,0.0000 +Staffordshire 6,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.0000,1.0000,2.0000,0.0000,1.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,0.0000,0.0000,4.0000,2.0000,1.0000,2.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,3.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,7.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,2.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,0.0000,1.5000,3.0000,2.0000,2.0000,4.5000,-1.5000,-1.0000,-1.0000,3.0000,1.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,2.0000,5.0000,-1.5000,-1.0000,-1.0000,2.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,6.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,1.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,2.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,2.0000,0.0000,6.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,0.0000,0.0000,0.0000 +Staffordshire 7,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.0000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,0.0000,0.0000,4.0000,2.0000,1.0000,2.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,3.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.5000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,2.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.5000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,1.5000,1.0000,0.0000,0.0000,0.0000,6.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,1.0000,0.0000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,0.0000 +Staffordshire 8,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.5000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,2.5000,2.0000,2.0000,0.0000,2.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,0.0000,0.0000,4.0000,2.0000,1.0000,2.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,3.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,1.0000,-3.0000,1.0000,0.0000,0.0000,2.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,7.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,2.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,2.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,2.0000,0.0000,6.0000,2.5000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.5000,1.0000,1.0000,4.0000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,1.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,0.0000 +Staffordshire 9,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,3.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.0000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,3.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,0.0000,0.0000,4.0000,2.0000,1.0000,2.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,3.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,2.5000,1.0000,1.0000,3.5000,0.5000,0.0000,0.000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,7.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,2.5000,1.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,2.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.5000,5.0000,1.5000,1.0000,-0.5000,2.0000,0.0000,6.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,2.0000,-3.0000,-1.0000,-1.0000,-2.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,0.0000,0.0000,6.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Staffordshire 10,1.0000,1.0000,0.0000,0.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.0000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,0.0000,0.0000,4.0000,2.0000,1.0000,2.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,3.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,1.0000,-3.0000,1.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.0000,3.5000,3.0000,2.0000,1.0000,2.5000,-1.5000,-1.0000,0.0000,1.0000,1.0000,1.0000,2.0000,5.0000,0.5000,0.0000,-1.0000,0.0000,1.0000,1.0000,1.0000,2.0000,5.0000,0.5000,0.0000,-1.0000,2.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,2.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,1.5000,1.0000,0.0000,2.0000,0.0000,6.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.5000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,1.5000,1.0000,1.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,1.5000,1.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,0.0000,0.0000,0.0000 +Staffordshire 11,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,2.5000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,2.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,2.5000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,3.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,0.0000,0.0000,4.0000,2.0000,1.0000,2.0000,2.0000,3.0000,0.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,3.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,-3.0000,1.0000,0.0000,-1.0000,2.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,0.0000,1.0000,1.5000,1.0000,1.0000,5.0000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,2.0000,2.0000,-1.5000,0.0000,-1.0000,0.0000,1.0000,1.0000,1.0000,2.0000,5.0000,0.5000,0.0000,-1.0000,2.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,4.5000,3.0000,2.0000,1.0000,1.5000,-0.5000,0.0000,0.0000,3.5000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,6.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,1.5000,1.0000,0.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,1.5000,1.0000,0.0000,1.0000,1.5000,6.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.5000,2.5000,1.0000,1.0000,4.0000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,1.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,2.5000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Herefordshire 1,2.0000,1.0000,0.0000,0.0000,1.0000,3.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,1.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,2.0000,1.0000,1.0000,1.0000,2.0000,1.0000,1.0000,1.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,3.0000,3.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,5.0000,1.0000,2.0000,1.0000,0.5000,-1.5000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,0.5000,0.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,0.5000,0.0000,0.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,0.5000,0.0000,0.0000,2.0000,3.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,-1.0000,-1.0000,-1.0000,-1.0000,2.0000,3.0000,2.0000,1.0000,1.0000,1.0000,4.0000,1.5000,1.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,1.0000,-1.0000,-1.0000,-1.0000,2.0000,3.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,1.5000,1.0000,0.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,1.5000,1.0000,0.0000,2.0000,3.0000,6.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,2.0000,1.0000,1.0000,4.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,6.0000,1.5000,1.0000,0.5000,1.0000,1.5000,1.0000,1.5000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000 +Herefordshire 2,2.0000,1.0000,0.0000,0.0000,1.0000,3.0000,0.0000,1.0000,1.0000,2.0000,1.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,1.0000,1.0000,2.0000,3.0000,5.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,2.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,2.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,1.5000,1.0000,0.0000,0.0000,3.0000,3.0000,1.0000,3.0000,3.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,5.0000,1.0000,2.0000,1.0000,0.5000,-1.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,0.5000,0.0000,0.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,0.5000,0.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,0.5000,0.0000,0.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,0.5000,0.0000,0.0000,2.0000,3.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,-1.0000,-1.0000,-1.0000,-1.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,-1.0000,-1.0000,-1.0000,-1.0000,2.0000,3.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,1.5000,1.0000,0.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,1.5000,1.0000,0.0000,2.0000,3.0000,6.0000,5.0000,1.0000,2.0000,1.0000,0.5000,-1.5000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,2.0000,1.0000,1.0000,4.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000 +Herefordshire 3,2.0000,1.0000,0.0000,0.0000,1.0000,3.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,1.0000,1.0000,2.0000,3.0000,5.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,2.0000,1.0000,1.0000,1.0000,2.0000,1.0000,1.0000,1.0000,0.0000,2.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,1.0000,2.0000,0.0000,1.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,5.0000,1.0000,2.0000,1.0000,0.5000,-1.0000,5.0000,1.0000,1.0000,2.0000,-1.0000,1.0000,0.0000,-1.0000,2.0000,3.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,-3.0000,1.0000,0.0000,-1.5000,1.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,2.0000,3.0000,6.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,-1.0000,-1.0000,-1.0000,-1.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,-1.0000,-1.0000,-1.0000,-1.0000,2.0000,3.0000,0.0000,6.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,2.0000,3.0000,4.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-7.0000,2.0000,0.0000,0.0000,2.0000,3.0000,2.0000,1.0000,1.0000,4.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000 +Herefordshire 4,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,3.0000,1.0000,2.0000,3.0000,5.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,2.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,2.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,1.0000,2.0000,0.0000,1.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,1.5000,1.0000,0.0000,0.0000,3.0000,3.0000,1.0000,3.0000,3.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,5.0000,1.0000,2.0000,1.0000,0.5000,-1.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,8.0000,1.0000,1.0000,-5.0000,2.0000,0.0000,5.0000,1.0000,1.0000,2.0000,-1.0000,1.0000,0.0000,-1.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,5.0000,1.0000,2.0000,1.0000,0.5000,-1.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,5.0000,1.0000,2.0000,1.0000,0.5000,-1.0000,0.0000,7.0000,1.0000,2.0000,-3.0000,1.0000,0.0000,-1.5000,1.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,1.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,2.0000,3.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,-1.0000,-1.0000,-1.0000,-1.0000,2.0000,3.0000,2.0000,1.0000,1.0000,1.0000,4.0000,1.5000,1.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.5000,-1.0000,-1.0000,-1.0000,-0.5000,2.0000,3.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,0.5000,1.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,0.5000,1.0000,0.0000,2.0000,3.0000,6.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-7.0000,2.0000,0.0000,0.0000,2.0000,3.0000,2.0000,1.0000,1.0000,4.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,1.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000 +Herefordshire 5,2.0000,1.0000,0.0000,0.0000,1.0000,3.0000,0.0000,2.0000,1.0000,1.0000,0.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,1.0000,1.0000,2.0000,3.0000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,2.0000,1.0000,1.0000,1.0000,1.0000,3.0000,2.0000,1.0000,0.0000,2.0000,1.0000,1.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,1.0000,2.0000,0.0000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,5.0000,1.0000,2.0000,1.0000,0.5000,-1.0000,5.0000,1.0000,1.0000,2.0000,-1.0000,1.0000,0.0000,-1.0000,2.0000,3.0000,2.0000,1.0000,1.0000,4.0000,0.5000,0.0000,0.000,2.0000,1.0000,1.0000,4.0000,0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,2.0000,1.0000,1.0000,4.0000,0.5000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,2.0000,3.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,-1.0000,-1.0000,-1.0000,-1.0000,2.0000,3.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,-1.0000,-1.0000,-1.0000,-1.0000,2.0000,3.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,2.0000,3.0000,6.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,2.0000,1.0000,1.0000,4.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Herefordshire 6,2.0000,1.0000,0.0000,0.0000,1.0000,3.0000,0.0000,2.0000,1.0000,1.5000,0.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,3.0000,1.0000,2.0000,3.0000,5.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,2.0000,1.0000,1.0000,1.0000,2.0000,1.0000,1.0000,1.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,1.0000,2.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,1.5000,1.0000,0.0000,1.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,8.0000,1.0000,1.0000,-4.0000,1.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,5.0000,1.0000,2.0000,1.0000,1.5000,-1.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,-3.0000,1.0000,0.0000,-1.5000,1.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,1.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,2.0000,3.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,8.0000,3.0000,2.0000,1.0000,-4.0000,-1.0000,-1.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,-1.0000,-1.0000,-1.0000,-1.0000,2.0000,3.0000,2.0000,1.0000,1.0000,1.0000,4.0000,1.5000,1.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,-1.0000,-1.0000,-1.0000,-1.0000,2.0000,3.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,0.5000,1.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,0.5000,1.0000,0.0000,2.0000,3.0000,6.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-5.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,3.0000,1.0000,5.5000,-1.5000,-1.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.5000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000 +Herefordshire 7,1.0000,1.0000,0.0000,0.0000,2.0000,1.0000,0.0000,1.0000,1.0000,2.0000,1.0000,0.0000,2.5000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,1.0000,1.0000,2.0000,3.0000,1.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,1.0000,2.0000,1.0000,1.0000,1.0000,1.0000,0.0000,3.0000,1.0000,1.0000,2.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,1.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,3.0000,3.0000,1.0000,0.0000,0.0000,1.0000,1.5000,0.0000,4.0000,2.0000,1.0000,1.0000,1.0000,1.5000,0.0000,0.0000,5.0000,1.0000,1.0000,1.0000,0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,1.0000,1.5000,1.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,3.5000,1.0000,1.0000,1.0000,0.5000,1.0000,0.0000,0.0000,1.0000,1.5000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,1.0000,1.5000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,1.0000,1.5000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,1.0000,-0.5000,0.0000,-1.5000,3.0000,3.0000,2.0000,1.0000,1.0000,-1.0000,-1.0000,0.0000,1.0000,1.5000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,2.0000,2.0000,1.5000,1.0000,0.0000,-1.0000,-0.5000,1.0000,1.5000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.5000,0.0000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,1.0000,1.5000,6.0000,5.0000,1.0000,1.0000,1.0000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,2.5000,1.0000,1.0000,4.0000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,1.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,0.0000 +Worcestershire 1,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,3.0000,2.0000,2.0000,0.0000,1.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.5000,1.0000,2.0000,0.0000,1.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,5.0000,1.0000,2.0000,1.0000,0.5000,-1.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,3.0000,1.0000,1.0000,1.0000,1.0000,0.0000,3.0000,1.0000,1.0000,2.0000,1.0000,1.0000,0.0000,-1.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,-3.0000,1.0000,0.0000,-1.5000,2.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,2.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,0.5000,1.0000,0.5000,0.0000,1.5000,1.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,2.0000,0.0000,6.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-7.0000,2.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,3.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,0.0000 +Worcestershire 2,1.0000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,3.0000,2.0000,0.0000,0.0000,5.0000,1.0000,2.0000,-1.0000,1.0000,-1.5000,2.0000,3.0000,0.0000,1.0000,1.0000,1.0000,2.0000,3.0000,1.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,1.0000,1.5000,1.0000,1.0000,1.0000,2.0000,0.0000,1.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,1.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,5.0000,1.0000,2.0000,1.0000,0.5000,-1.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,5.0000,1.0000,1.0000,2.0000,-1.0000,1.0000,0.0000,-1.0000,2.0000,3.0000,5.0000,1.0000,2.0000,1.0000,0.5000,-1.5000,0.000,7.0000,1.0000,2.0000,-3.0000,1.0000,-1.5000,0.0000,8.0000,1.0000,1.0000,-4.0000,1.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,-3.0000,1.0000,-1.5000,0.0000,7.0000,1.0000,2.0000,-3.0000,1.0000,0.0000,-1.5000,1.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,-0.5000,0.0000,1.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,2.0000,3.0000,5.0000,3.0000,2.0000,2.0000,1.0000,-0.5000,0.0000,-1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,-1.0000,-1.0000,-1.0000,-1.0000,2.0000,3.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,2.0000,3.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,2.0000,3.0000,6.0000,5.0000,1.0000,2.0000,1.0000,0.5000,-1.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-5.0000,0.0000,0.0000,1.0000,2.0000,3.0000,1.0000,1.0000,1.0000,5.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,3.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000 +Worcestershire 3,2.0000,1.0000,0.0000,0.0000,1.0000,3.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,3.0000,1.0000,2.0000,1.0000,1.0000,-1.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,2.0000,3.0000,3.0000,1.0000,1.0000,2.0000,1.0000,1.0000,0.0000,-1.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,1.0000,2.0000,1.0000,3.0000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,1.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,5.0000,1.0000,2.0000,1.0000,0.5000,-1.0000,3.0000,1.0000,1.0000,2.0000,1.0000,1.0000,0.0000,-1.0000,2.0000,3.0000,5.0000,1.0000,2.0000,0.0000,0.5000,-1.0000,0.000,5.0000,1.0000,2.0000,1.0000,0.5000,-1.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,3.0000,-1.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,3.0000,-1.0000,0.0000,1.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,1.0000,2.0000,3.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,-1.0000,-1.0000,-1.0000,-1.0000,2.0000,3.0000,3.0000,1.0000,1.0000,1.0000,4.0000,2.0000,1.0000,1.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,2.0000,3.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,3.0000,1.0000,1.0000,1.0000,4.0000,2.0000,1.0000,1.0000,0.0000,3.0000,1.0000,1.0000,1.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,6.0000,5.0000,1.0000,2.0000,1.0000,0.5000,-1.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,5.0000,1.0000,2.0000,1.5000,0.5000,0.0000,-1.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,6.0000,1.5000,1.0000,0.5000,1.0000,1.5000,1.0000,1.5000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000 +Worcestershire 4,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,1.0000,2.0000,1.0000,2.0000,0.0000,0.0000,5.0000,1.0000,2.0000,-1.0000,1.0000,-1.5000,2.0000,3.0000,0.0000,1.0000,1.0000,1.0000,2.0000,3.0000,5.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,2.0000,1.0000,1.0000,1.0000,2.0000,1.0000,1.0000,2.0000,0.0000,2.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,1.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,5.0000,1.0000,2.0000,1.0000,0.5000,-1.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,2.0000,3.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,-1.0000,-1.0000,-1.0000,0.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,-1.0000,-1.0000,-1.0000,-1.0000,2.0000,3.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,0.5000,1.0000,1.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,0.5000,1.0000,1.0000,2.0000,3.0000,6.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-4.0000,1.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,1.0000,5.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,3.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000 +Worcestershire 5,2.0000,1.0000,0.0000,0.0000,1.0000,3.0000,0.0000,2.0000,1.0000,2.0000,0.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,3.0000,1.0000,2.0000,3.0000,5.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,1.0000,2.0000,1.0000,1.0000,1.0000,2.0000,0.0000,2.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,3.0000,1.0000,2.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,1.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,6.0000,1.5000,0.5000,-4.0000,-0.5000,0.5000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,5.5000,1.0000,2.0000,0.0000,0.0000,0.0000,5.0000,1.0000,1.0000,2.0000,-1.0000,1.0000,0.0000,-1.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,2.0000,3.0000,6.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,8.0000,3.0000,2.0000,1.0000,-2.0000,-0.5000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,-1.0000,-1.0000,-1.0000,-1.0000,2.0000,3.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,-1.0000,-1.0000,-1.0000,-1.0000,2.0000,3.0000,1.0000,6.0000,2.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,4.0000,2.0000,1.0000,1.0000,1.0000,0.5000,1.0000,1.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,0.5000,1.0000,1.0000,2.0000,3.0000,6.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,5.0000,1.0000,1.0000,2.0000,-1.0000,1.0000,0.0000,-1.0000,2.0000,3.0000,1.0000,1.0000,1.0000,5.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,3.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000 +Worcestershire 6,2.0000,1.0000,0.0000,0.0000,1.0000,3.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,5.0000,1.0000,2.0000,1.0000,0.5000,-1.0000,2.0000,3.0000,0.0000,1.0000,3.0000,1.0000,2.0000,3.0000,5.0000,1.0000,1.0000,2.0000,1.0000,0.5000,0.0000,-1.5000,0.0000,0.0000,2.0000,3.0000,2.0000,1.0000,1.0000,1.0000,2.0000,1.0000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,1.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,5.0000,1.0000,2.0000,1.0000,0.5000,-1.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,5.0000,1.0000,2.0000,1.0000,0.5000,-1.0000,5.0000,1.0000,1.0000,2.0000,-1.0000,1.0000,0.0000,-1.0000,2.0000,3.0000,5.0000,1.0000,2.0000,1.0000,0.5000,-1.0000,0.000,5.0000,1.0000,2.0000,1.0000,0.5000,-1.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,-3.0000,1.0000,-1.5000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,2.0000,3.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,2.0000,3.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,2.0000,3.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,3.0000,1.0000,1.0000,1.0000,4.0000,2.0000,1.0000,1.0000,0.0000,3.0000,1.0000,1.0000,1.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,6.0000,5.0000,1.0000,2.0000,1.0000,0.5000,-1.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,2.0000,1.0000,1.0000,4.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,3.0000,1.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,1.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000 +Worcestershire 7,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,1.0000,2.0000,1.0000,0.0000,1.0000,3.0000,2.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,3.0000,1.0000,2.0000,1.0000,3.0000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,0.0000,0.0000,4.0000,2.0000,1.0000,2.0000,2.0000,0.0000,0.0000,0.0000,5.0000,1.0000,1.0000,1.0000,0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,5.0000,1.0000,1.0000,1.0000,0.5000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,2.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,-1.0000,-1.0000,-1.0000,0.0000,2.0000,3.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,2.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,1.5000,1.0000,0.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,1.5000,1.0000,0.0000,2.0000,3.0000,6.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,0.0000 +Warwickshire 1,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,3.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,4.5000,3.0000,2.0000,1.0000,1.5000,-0.5000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,4.5000,3.0000,2.0000,1.0000,1.5000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,0.0000,0.0000,4.5000,1.5000,1.0000,2.0000,2.0000,0.0000,0.0000,0.0000,3.5000,1.0000,1.0000,2.5000,0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,3.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,6.0000,1.5000,0.5000,1.0000,-0.5000,1.5000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,1.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,2.0000,0.0000,4.5000,3.0000,2.0000,1.0000,1.5000,-0.5000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,4.5000,3.0000,2.0000,1.0000,1.5000,-0.5000,0.0000,0.0000,0.0000,0.0000,4.5000,3.0000,2.0000,1.0000,1.5000,-0.5000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,2.5000,1.0000,1.0000,1.0000,3.5000,1.5000,1.0000,0.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,1.5000,1.0000,0.0000,2.0000,0.0000,6.0000,3.5000,1.0000,1.0000,2.5000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.5000,3.0000,2.0000,2.0000,2.5000,-0.5000,0.0000,-1.5000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.5000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,3.0000,1.5000,1.0000,1.0000,4.0000,1.5000,1.0000,1.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,4.5000,3.0000,2.0000,1.0000,1.5000,-0.5000,0.0000,0.0000,0.0000,0.0000,0.0000 +Warwickshire 2,1.0000,1.0000,0.0000,0.0000,2.0000,1.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.0000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,0.0000,0.0000,4.0000,2.0000,1.0000,2.0000,2.0000,0.0000,0.0000,0.0000,1.5000,1.0000,1.0000,4.5000,0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,5.0000,1.0000,1.0000,1.0000,0.5000,0.5000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,2.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,2.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,1.5000,1.0000,0.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,1.5000,1.0000,0.0000,2.0000,0.0000,6.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.5000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,1.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,0.0000 +Warwickshire 3,1.0000,1.0000,0.0000,0.0000,1.0000,2.0000,0.0000,1.0000,1.0000,1.5000,1.0000,0.0000,3.5000,1.0000,2.0000,0.5000,1.0000,-1.5000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.0000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,0.0000,0.0000,4.0000,2.0000,1.0000,2.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,3.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,1.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,2.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,4.5000,3.0000,2.0000,1.0000,1.5000,-0.5000,0.0000,0.0000,0.0000,0.0000,5.5000,2.5000,2.0000,1.0000,0.5000,0.0000,0.0000,0.0000,0.0000,4.5000,3.0000,2.0000,1.0000,1.5000,-0.5000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,4.5000,3.0000,2.0000,1.0000,1.5000,-0.5000,0.0000,0.0000,1.0000,4.0000,2.0000,1.0000,0.5000,3.0000,0.5000,1.0000,1.5000,1.0000,1.5000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,3.0000,1.5000,1.0000,1.0000,3.0000,1.0000,1.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,2.0000,0.0000,6.0000,3.5000,1.0000,1.0000,2.5000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.5000,1.0000,1.0000,1.0000,1.5000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,2.5000,2.0000,1.0000,5.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Warwickshire 4,1.0000,1.0000,0.0000,0.0000,2.0000,1.0000,0.0000,1.0000,1.0000,2.0000,1.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,1.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.0000,1.0000,2.0000,0.0000,1.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,2.5000,1.0000,1.0000,1.5000,1.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,3.5000,1.0000,1.0000,0.5000,1.0000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,-3.0000,1.0000,0.0000,-1.5000,1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,2.0000,3.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,5.5000,3.0000,2.0000,2.0000,-1.5000,-1.0000,-1.0000,-1.0000,0.0000,4.5000,3.0000,2.0000,1.0000,1.5000,-0.5000,0.0000,0.0000,5.5000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,1.0000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.0000,1.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,2.0000,3.0000,6.0000,3.5000,1.0000,1.0000,0.5000,1.0000,-0.5000,0.0000,3.0000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,-0.5000,2.0000,3.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,6.0000,1.5000,1.0000,0.5000,1.0000,1.0000,1.0000,1.5000,0.0000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,4.5000,3.0000,2.0000,1.0000,1.5000,-0.5000,0.0000,0.0000,0.0000,0.0000,0.0000 +Warwickshire 5,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,3.5000,1.0000,1.5000,0.5000,1.0000,-0.5000,2.0000,3.0000,0.0000,1.0000,1.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.0000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,5.0000,1.0000,2.0000,-1.0000,1.0000,-1.5000,3.5000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,2.0000,3.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,4.5000,3.0000,2.0000,1.0000,1.5000,-0.5000,0.0000,0.0000,0.0000,0.0000,4.5000,3.0000,2.0000,1.0000,1.5000,-0.5000,0.0000,0.0000,0.0000,4.5000,3.0000,2.0000,1.0000,1.5000,-0.5000,0.0000,0.0000,5.0000,3.0000,2.0000,1.5000,-1.0000,-1.0000,-1.0000,-0.5000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,2.0000,3.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,2.0000,3.0000,6.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,3.5000,1.0000,1.0000,1.5000,0.5000,1.0000,0.0000,-0.5000,2.0000,3.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,0.0000 +Warwickshire 6,1.0000,1.0000,0.0000,0.0000,1.0000,1.0000,0.0000,1.0000,1.0000,2.0000,1.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,1.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.0000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,4.5000,3.0000,2.0000,1.0000,1.5000,-0.5000,0.0000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,5.0000,1.0000,2.0000,-1.0000,1.0000,-1.5000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,-3.0000,1.0000,0.0000,-1.5000,1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,2.0000,3.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,4.5000,3.0000,2.0000,1.0000,1.5000,-0.5000,0.0000,0.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,4.5000,3.0000,2.0000,1.0000,1.5000,-0.5000,0.0000,0.0000,5.0000,3.0000,2.0000,1.5000,-1.0000,-1.0000,-1.0000,-0.5000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,2.0000,3.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,2.0000,3.0000,6.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,5.0000,1.0000,1.0000,2.0000,-1.0000,1.0000,0.0000,-1.0000,2.0000,3.0000,1.0000,1.0000,1.0000,5.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,3.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,1.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,0.0000 +Warwickshire 7,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,1.0000,1.0000,2.0000,3.0000,5.0000,1.0000,1.0000,2.0000,-1.0000,1.0000,0.0000,-1.5000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,1.0000,1.0000,1.0000,2.0000,0.0000,1.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,5.0000,1.0000,2.0000,-1.0000,1.0000,-1.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,3.0000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,-0.5000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,-3.0000,1.0000,0.0000,-1.5000,1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,2.0000,3.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,4.5000,3.0000,2.0000,1.0000,1.5000,-0.5000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,1.0000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,1.0000,-1.0000,-1.0000,-1.0000,2.0000,3.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,3.0000,1.5000,1.0000,1.0000,3.0000,1.0000,1.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,2.0000,3.0000,6.0000,3.0000,1.0000,2.0000,1.0000,1.0000,-1.5000,0.0000,3.0000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,-0.5000,2.0000,3.0000,2.5000,1.0000,1.0000,4.0000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,3.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,4.5000,3.0000,2.0000,1.0000,1.5000,-0.5000,0.0000,0.0000,0.0000,0.0000,0.0000 +Monmouth 1,2.0000,1.0000,0.0000,0.0000,1.0000,3.0000,0.0000,2.0000,1.0000,1.0000,0.0000,0.0000,5.0000,1.0000,2.0000,1.0000,0.5000,-1.0000,2.0000,3.0000,0.0000,1.0000,1.0000,1.0000,2.0000,3.0000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.5000,0.0000,2.0000,3.0000,2.0000,1.0000,1.0000,1.0000,2.0000,1.0000,1.0000,1.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,2.0000,1.0000,-0.5000,0.0000,-1.0000,0.0000,1.0000,1.5000,1.0000,3.0000,1.0000,2.0000,0.0000,1.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,3.0000,3.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,5.0000,1.0000,2.0000,1.0000,0.5000,-1.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,5.0000,1.0000,2.0000,1.0000,0.5000,-1.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,6.0000,1.5000,0.5000,1.0000,-0.5000,0.5000,0.000,6.0000,1.5000,1.0000,1.0000,-0.5000,1.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,6.0000,1.5000,0.5000,1.0000,-0.5000,0.5000,0.0000,6.0000,1.5000,0.5000,1.0000,-0.5000,0.0000,1.5000,1.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,0.5000,0.0000,0.0000,2.0000,3.0000,5.0000,3.0000,2.0000,2.0000,1.0000,-0.5000,0.0000,-1.5000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,1.0000,-0.5000,0.0000,-1.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,1.0000,-0.5000,0.0000,-1.0000,0.0000,5.0000,3.0000,2.0000,2.0000,1.0000,-0.5000,0.0000,-1.0000,5.0000,3.0000,2.0000,2.0000,-1.0000,-1.0000,-1.0000,-1.0000,2.0000,3.0000,5.0000,3.0000,2.0000,2.0000,1.0000,-0.5000,0.0000,-1.0000,1.0000,6.0000,2.5000,2.0000,1.0000,1.0000,0.5000,0.0000,1.0000,1.0000,1.5000,6.0000,2.5000,2.0000,0.5000,1.0000,0.5000,0.0000,1.5000,5.0000,3.0000,2.0000,2.0000,1.0000,-0.5000,0.0000,-1.5000,2.0000,3.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,2.0000,3.0000,6.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,2.0000,1.0000,1.0000,4.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,3.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,1.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000 +Monmouth 2,2.0000,1.0000,0.0000,0.0000,1.0000,3.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,2.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,2.0000,1.0000,1.0000,1.0000,2.0000,1.0000,1.0000,1.0000,0.0000,3.0000,1.0000,1.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,1.0000,2.0000,0.0000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,0.0000,1.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,0.5000,1.0000,-0.5000,0.0000,1.5000,1.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,2.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,-1.0000,-1.0000,-1.0000,-1.0000,2.0000,3.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,2.0000,3.0000,6.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,5.0000,1.0000,2.0000,-5.0000,-1.0000,-1.0000,-2.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Monmouth 3,2.0000,1.0000,0.0000,0.0000,1.0000,3.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.0000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,2.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,1.0000,2.0000,0.0000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,3.0000,3.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,3.0000,1.0000,2.0000,2.0000,2.0000,0.0000,0.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,8.0000,1.0000,1.0000,-5.0000,0.0000,1.0000,1.0000,0.0000,0.0000,7.0000,1.0000,2.0000,-3.0000,1.0000,-1.5000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,2.0000,3.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,-1.0000,-1.0000,-1.0000,-1.0000,2.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,0.5000,1.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,0.5000,1.0000,0.0000,2.0000,0.0000,6.0000,5.0000,1.0000,2.0000,1.0000,0.5000,-1.5000,0.0000,3.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,5.0000,1.0000,2.0000,-5.0000,-1.0000,-1.0000,-2.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,1.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Monmouth 4,1.0000,1.0000,0.0000,0.0000,2.0000,1.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,3.0000,1.0000,1.0000,2.0000,5.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.5000,2.5000,2.0000,1.0000,5.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,1.5000,0.0000,1.5000,1.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.5000,2.5000,1.0000,3.5000,2.5000,1.0000,0.0000,0.0000,2.0000,0.0000,0.0000,3.0000,1.0000,2.0000,2.0000,2.0000,0.0000,0.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.5000,3.0000,2.0000,2.0000,0.0000,0.0000,1.0000,5.0000,1.0000,2.0000,-1.0000,1.0000,-1.5000,3.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,6.5000,1.0000,2.0000,0.0000,0.0000,0.0000,1.0000,8.0000,1.0000,1.0000,-5.0000,0.0000,1.0000,1.0000,0.0000,0.0000,6.5000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.5000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,0.0000,3.5000,2.0000,1.0000,1.0000,3.5000,-1.0000,0.0000,0.0000,2.0000,0.0000,6.0000,2.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.5000,2.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.5500,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.5000,3.0000,2.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,4.0000,2.0000,1.0000,1.0000,3.0000,1.0000,1.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,3.0000,1.0000,1.0000,0.0000,2.0000,0.0000,6.0000,5.0000,1.0000,2.0000,1.0000,0.5000,-1.5000,1.0000,3.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,1.0000,1.0000,1.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.5000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,1.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,0.5000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Monmouth 5,1.0000,1.0000,0.0000,0.0000,1.0000,2.5000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.5000,2.5000,2.0000,1.0000,1.0000,1.0000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,2.0000,5.0000,3.0000,2.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.5000,2.5000,2.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.5000,2.5000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.5000,2.5000,1.0000,3.5000,2.5000,1.0000,0.0000,0.0000,2.0000,0.0000,0.0000,3.5000,1.5000,2.0000,2.0000,2.0000,0.0000,0.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,1.0000,5.0000,1.0000,2.0000,-1.0000,1.0000,-1.5000,3.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,7.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.000,7.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,8.0000,1.0000,1.0000,-4.5000,0.0000,1.0000,1.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.5000,-0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.5000,-0.5000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.5000,-0.5000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,1.0000,6.0000,-0.5000,0.0000,0.0000,2.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.5000,2.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,2.5000,2.0000,2.0000,1.0000,0.0000,0.0000,-1.5000,3.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.5000,3.0000,2.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,4.0000,2.0000,1.0000,1.0000,3.0000,1.0000,1.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,3.0000,1.0000,1.0000,0.0000,2.0000,0.0000,6.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,1.0000,1.0000,1.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.5000,2.5000,2.0000,1.0000,1.0000,1.5000,3.5000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,0.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,0.0000,5.0000,3.0000,2.0000,2.0000,2.0000,0.0000,0.0000,-1.0000,0.0000,0.0000,0.0000 +Monmouth 6,2.0000,1.0000,0.0000,0.0000,1.0000,3.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.5000,0.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.0000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,2.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,1.0000,2.0000,0.0000,1.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,3.0000,3.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,5.0000,1.0000,2.0000,1.0000,0.5000,-1.5000,5.0000,1.0000,1.0000,2.0000,-1.0000,1.0000,0.0000,-1.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,-3.0000,1.0000,0.0000,-1.5000,1.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,2.0000,3.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,-1.0000,-1.0000,-1.0000,-1.0000,2.0000,3.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,-1.0000,-1.0000,-1.0000,-1.0000,2.0000,3.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,0.5000,1.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,0.5000,1.0000,0.0000,2.0000,3.0000,6.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,1.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Monmouth 7,2.0000,1.0000,0.0000,0.0000,1.0000,3.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.5000,0.0000,2.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.0000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,2.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,1.0000,2.0000,0.0000,1.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,3.0000,3.0000,1.0000,0.0000,0.0000,2.0000,0.0000,1.0000,3.0000,1.0000,2.0000,2.0000,2.0000,0.0000,0.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,0.0000,0.0000,1.0000,5.0000,1.0000,2.0000,1.0000,0.5000,-1.5000,5.0000,1.0000,1.0000,2.0000,-1.0000,1.0000,0.0000,-1.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,1.0000,8.0000,1.0000,1.0000,-5.0000,0.0000,1.0000,1.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,-3.0000,1.0000,0.0000,-1.5000,1.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.5000,-0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.5000,-0.5000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,1.0000,5.5000,0.0000,0.0000,0.0000,2.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,-1.0000,-1.0000,-1.0000,-1.5000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,4.0000,2.0000,1.0000,1.0000,3.0000,1.0000,1.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,3.0000,1.0000,1.0000,0.0000,2.0000,0.0000,6.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,4.0000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,1.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Gloucestershire 1,2.0000,1.0000,0.0000,0.0000,1.0000,3.0000,0.0000,2.0000,1.0000,2.0000,1.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,1.0000,1.0000,2.0000,3.0000,5.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,2.0000,1.0000,1.0000,2.0000,2.0000,1.0000,1.0000,2.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,2.0000,1.0000,-0.5000,0.0000,-1.0000,0.0000,1.0000,1.5000,1.0000,3.0000,1.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,1.5000,1.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,5.0000,1.0000,1.0000,2.0000,-1.0000,1.0000,0.0000,-1.0000,2.0000,3.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,8.0000,1.0000,1.0000,-4.0000,1.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,-3.0000,1.0000,-1.5000,0.0000,7.0000,1.0000,2.0000,-3.0000,1.0000,0.0000,-1.5000,1.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,2.0000,3.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,2.0000,-2.0000,-0.5000,-1.0000,-1.5000,5.0000,3.0000,2.0000,2.0000,1.0000,-0.5000,0.0000,-1.0000,0.0000,1.0000,8.0000,3.0000,2.0000,1.0000,-4.0000,-1.0000,-1.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,1.0000,-0.5000,0.0000,-1.0000,5.0000,3.0000,2.0000,2.0000,-1.0000,-1.0000,-1.0000,-1.0000,2.0000,3.0000,2.0000,1.0000,1.0000,1.0000,4.0000,1.5000,1.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,-3.0000,-1.0000,-1.0000,-1.5000,1.0000,1.5000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,1.0000,-0.5000,0.0000,-1.0000,2.0000,3.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,0.5000,1.0000,1.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,0.5000,1.0000,0.0000,2.0000,3.0000,6.0000,2.0000,1.0000,1.0000,4.0000,0.5000,0.0000,0.0000,5.0000,1.0000,1.0000,2.0000,-1.0000,1.0000,0.0000,-1.0000,2.0000,3.0000,2.0000,1.0000,1.0000,4.5000,0.5000,0.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,1.0000,1.5000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,3.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000 +Gloucestershire 2,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,1.0000,1.0000,2.0000,3.0000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,2.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,2.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,1.0000,1.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,5.0000,1.0000,2.0000,1.0000,0.5000,-1.5000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,8.0000,1.0000,1.0000,-2.0000,1.5000,0.0000,5.0000,1.0000,1.0000,2.0000,-1.0000,1.0000,0.0000,-1.0000,2.0000,3.0000,6.0000,1.5000,0.5000,1.0000,-0.5000,1.5000,0.000,6.0000,1.5000,1.0000,1.0000,-0.5000,1.0000,0.0000,8.0000,1.0000,1.0000,-4.0000,1.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,-3.0000,1.0000,-1.0000,0.0000,6.0000,1.5000,0.5000,1.0000,-0.5000,0.0000,1.5000,1.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,2.0000,3.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,1.0000,-0.5000,0.0000,-1.0000,0.0000,0.0000,8.0000,3.0000,2.0000,0.5000,-4.0000,-1.0000,-1.0000,0.5000,0.0000,5.0000,3.0000,2.0000,2.0000,1.0000,-0.5000,0.0000,-1.5000,5.0000,3.0000,2.0000,2.0000,-1.0000,-1.0000,-1.0000,-1.0000,2.0000,3.0000,2.0000,1.0000,1.0000,1.0000,4.0000,1.5000,1.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,2.0000,1.0000,-1.0000,0.0000,-1.0000,2.0000,3.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,0.5000,1.0000,1.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,0.5000,1.0000,0.0000,2.0000,3.0000,6.0000,2.0000,1.0000,1.0000,4.0000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,2.0000,3.0000,2.0000,1.0000,1.0000,4.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,3.0000,1.0000,2.0000,1.0000,1.0000,1.0000,4.0000,1.5000,1.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000 +Gloucestershire 3,2.0000,1.0000,0.0000,0.0000,1.0000,3.0000,0.0000,2.0000,1.0000,2.0000,1.0000,1.0000,5.0000,1.0000,2.0000,1.0000,0.5000,-1.5000,2.0000,3.0000,1.0000,1.0000,1.0000,1.0000,2.0000,3.0000,5.0000,1.0000,1.0000,2.0000,1.0000,0.5000,0.0000,-1.5000,0.0000,0.0000,2.0000,3.0000,2.0000,1.0000,1.0000,1.0000,2.0000,1.0000,1.0000,1.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,2.0000,1.0000,-0.5000,0.0000,-1.0000,0.0000,1.0000,1.5000,1.0000,3.0000,1.0000,2.0000,1.0000,1.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,1.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,5.0000,1.0000,2.0000,1.0000,0.5000,-1.5000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,5.0000,1.0000,2.0000,1.0000,0.5000,-1.0000,5.0000,1.0000,1.0000,2.0000,1.0000,0.5000,0.0000,-1.0000,2.0000,3.0000,5.0000,1.0000,2.0000,1.0000,0.5000,-1.5000,0.000,5.0000,1.0000,2.0000,1.0000,0.5000,-1.5000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,-3.0000,1.0000,-1.5000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,1.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,2.0000,3.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,1.0000,-0.5000,0.0000,-1.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,1.0000,-0.5000,0.0000,-1.0000,0.0000,5.0000,3.0000,2.0000,2.0000,1.0000,-0.5000,0.0000,-1.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,1.0000,0.5000,0.0000,1.0000,1.0000,1.5000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,1.0000,-0.5000,0.0000,-1.0000,2.0000,3.0000,0.0000,6.0000,2.5000,2.0000,0.5000,1.0000,0.5000,0.0000,1.5000,1.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,0.5000,1.0000,0.0000,0.0000,4.0000,2.0000,1.0000,2.0000,2.0000,0.5000,1.0000,-1.0000,2.0000,3.0000,6.0000,2.0000,1.0000,1.0000,4.0000,0.5000,0.0000,0.0000,5.0000,1.0000,1.0000,2.0000,-1.0000,1.0000,0.0000,-1.0000,2.0000,3.0000,1.0000,3.0000,1.0000,5.5000,-1.5000,-1.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,6.0000,2.5000,2.0000,0.5000,1.0000,0.5000,0.0000,1.5000,1.0000,6.0000,2.5000,2.0000,0.5000,1.0000,0.5000,1.5000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000 +Gloucestershire 4,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,1.0000,1.0000,2.0000,3.0000,5.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.0000,1.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,1.0000,2.0000,1.0000,1.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,1.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,3.0000,0.0000,3.0000,1.0000,2.0000,2.0000,2.0000,0.0000,0.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,8.0000,1.0000,1.0000,-5.0000,0.0000,0.0000,5.0000,1.0000,1.0000,2.0000,-1.0000,1.0000,0.0000,-1.0000,2.0000,3.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,5.0000,1.0000,2.0000,-1.0000,1.0000,-1.5000,0.0000,7.0000,1.0000,2.0000,-3.0000,1.0000,0.0000,-1.5000,1.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,1.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,2.0000,3.0000,6.0000,2.5000,2.0000,0.5000,1.0000,0.5000,0.0000,1.5000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,1.0000,-0.5000,0.0000,-1.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,-1.0000,-1.0000,-1.0000,-1.0000,0.0000,5.0000,3.0000,2.0000,2.0000,1.0000,-0.5000,0.0000,-1.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,1.0000,0.5000,0.0000,1.0000,1.0000,1.5000,6.0000,2.5000,2.0000,0.5000,1.0000,0.5000,0.0000,1.5000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,2.0000,3.0000,0.0000,6.0000,2.5000,2.0000,0.5000,1.0000,0.5000,0.0000,1.5000,1.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,0.5000,1.0000,0.0000,0.0000,4.0000,2.0000,1.0000,2.0000,2.0000,0.5000,1.0000,-1.0000,2.0000,3.0000,6.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,5.0000,1.0000,1.0000,2.0000,-1.0000,1.0000,0.0000,-1.0000,2.0000,3.0000,1.0000,3.0000,1.0000,5.5000,-1.5000,-1.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,3.0000,1.0000,6.0000,2.5000,2.0000,0.5000,1.0000,0.5000,0.0000,1.5000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,0.0000 +Gloucestershire 5,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.0000,1.0000,2.0000,0.0000,1.0000,1.0000,1.0000,2.0000,6.0000,2.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,1.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,5.0000,1.0000,2.0000,-1.0000,1.0000,-1.5000,0.0000,0.0000,6.0000,2.0000,2.0000,1.0000,2.0000,3.0000,1.0000,8.0000,1.0000,1.0000,-5.0000,0.0000,0.0000,5.0000,1.0000,1.0000,2.0000,-1.0000,1.0000,0.0000,-1.0000,2.0000,3.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,8.0000,1.0000,1.0000,-4.0000,1.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,-3.0000,1.0000,0.0000,-1.5000,1.0000,0.0000,3.0000,2.5000,2.0000,1.0000,3.0000,-1.0000,-1.0000,0.0000,0.0000,3.0000,2.5000,2.0000,1.0000,3.0000,-1.0000,-1.0000,0.0000,3.0000,2.5000,2.0000,1.0000,3.0000,-1.0000,-1.0000,0.0000,0.0000,3.0000,2.5000,2.0000,1.0000,3.0000,-1.0000,-1.0000,0.0000,2.0000,3.0000,5.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,-1.0000,-1.0000,-1.0000,-1.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.5000,-3.0000,-1.0000,-1.0000,-0.5000,2.0000,3.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,2.0000,3.0000,6.0000,1.0000,1.0000,1.0000,5.0000,0.5000,-0.5000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,2.0000,1.0000,1.0000,4.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-0.5000,1.0000,0.0000,0.0000,0.0000,0.0000 +Gloucestershire 6,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,0.0000,1.0000,1.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,1.0000,1.0000,2.0000,3.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.0000,1.0000,2.0000,0.0000,1.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,3.0000,1.0000,1.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,1.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,4.0000,2.0000,1.0000,4.0000,2.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,8.0000,1.0000,1.0000,-4.0000,1.0000,0.0000,5.5000,1.0000,1.0000,1.5000,-1.5000,1.0000,0.0000,-0.5000,2.0000,3.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,8.0000,1.0000,1.0000,-4.0000,1.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,-3.0000,1.0000,0.0000,-1.5000,1.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-1.5000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-1.5000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-1.5000,0.0000,0.0000,1.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-1.5000,0.0000,0.0000,2.0000,3.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,8.0000,3.0000,2.0000,1.0000,-4.0000,-1.0000,-1.0000,0.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.5000,-1.0000,-1.0000,-1.0000,-0.5000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.5000,-3.0000,-1.0000,-1.0000,-0.5000,2.0000,3.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,1.0000,0.5000,0.0000,1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,1.0000,0.5000,0.0000,1.0000,2.0000,3.0000,6.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,2.0000,1.0000,1.0000,4.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-0.5000,1.0000,0.0000,0.0000,0.0000,0.0000 +Gloucestershire 7,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,1.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.0000,1.0000,2.0000,0.0000,1.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,1.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,4.0000,2.0000,1.0000,4.0000,2.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,8.0000,1.0000,1.0000,-4.0000,1.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,8.0000,1.0000,1.0000,-4.0000,1.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,-3.0000,1.0000,0.0000,-1.5000,1.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-1.5000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-1.5000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-1.5000,0.0000,0.0000,1.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-1.5000,0.0000,0.0000,2.0000,3.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,8.0000,3.0000,2.0000,1.0000,-4.0000,-1.0000,-1.0000,0.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,1.0000,0.5000,0.0000,1.0000,1.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.5000,-3.0000,-1.0000,-1.0000,-0.5000,2.0000,3.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,-0.5000,1.0000,1.0000,6.0000,2.5000,2.0000,1.0000,1.0000,0.5000,0.0000,1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,1.0000,0.5000,0.0000,1.0000,2.0000,3.0000,6.0000,2.0000,1.0000,1.0000,4.0000,0.5000,0.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-4.0000,1.0000,0.0000,0.0000,2.0000,3.0000,2.5000,1.0000,1.0000,4.0000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,1.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,0.0000 +Oxfordshire 1,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,2.0000,1.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,1.0000,1.5000,1.0000,1.0000,1.0000,2.0000,0.0000,1.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,3.0000,3.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,8.0000,1.0000,1.0000,-4.0000,1.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,-0.5000,1.0000,0.0000,3.0000,2.5000,2.0000,1.0000,3.0000,-1.0000,-1.0000,0.0000,0.0000,3.0000,2.5000,2.0000,1.0000,3.0000,-1.0000,-1.0000,0.0000,3.0000,2.5000,2.0000,1.0000,3.0000,-1.0000,-1.0000,0.0000,0.0000,3.0000,2.5000,1.0000,1.0000,3.0000,-1.0000,0.0000,0.0000,2.0000,3.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,-1.0000,-1.0000,-1.0000,0.0000,2.0000,3.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,3.0000,1.5000,1.0000,1.0000,3.0000,1.0000,1.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,2.0000,3.0000,6.0000,2.0000,1.0000,1.0000,4.0000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,2.0000,1.0000,1.0000,4.5000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,3.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,0.0000 +Oxfordshire 2,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,0.0000,1.0000,1.0000,2.0000,1.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,1.0000,1.5000,0.0000,2.0000,1.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.0000,1.0000,2.0000,0.0000,1.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.5000,2.5000,3.0000,2.0000,1.0000,3.5000,-0.5000,0.0000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,3.0000,3.0000,1.0000,0.0000,1.0000,1.0000,1.5000,0.0000,4.0000,2.0000,1.0000,1.0000,1.0000,1.5000,0.0000,0.0000,4.5000,1.0000,1.0000,1.5000,0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,1.0000,1.5000,1.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,1.0000,1.5000,5.0000,1.0000,1.0000,1.0000,0.5000,-0.5000,0.000,5.0000,1.0000,1.0000,1.0000,0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,-0.5000,1.0000,0.0000,3.0000,2.5000,2.0000,1.0000,3.0000,-1.0000,-1.0000,0.0000,0.0000,3.0000,2.5000,2.0000,1.0000,3.0000,-1.0000,-1.0000,0.0000,3.0000,2.5000,2.0000,1.0000,3.0000,-1.0000,-1.0000,0.0000,0.0000,3.0000,2.5000,1.0000,1.0000,3.0000,-1.0000,0.0000,0.0000,2.0000,3.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,1.0000,1.5000,0.0000,6.5000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.5000,1.0000,1.0000,1.0000,3.5000,1.5000,1.0000,0.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,1.5000,1.0000,0.0000,2.0000,3.0000,6.0000,2.0000,1.0000,1.0000,4.0000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.5000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,2.5000,2.0000,1.0000,1.0000,1.5000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,3.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,0.0000 +Oxfordshire 3,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,1.0000,2.0000,1.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,1.5000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.0000,1.0000,2.0000,0.0000,1.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.5000,1.0000,-1.0000,-1.0000,-0.5000,2.0000,3.0000,1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,3.0000,3.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,4.5000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,1.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-1.5000,1.0000,0.0000,0.0000,3.0000,2.5000,2.0000,1.0000,3.0000,-1.0000,-1.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-1.5000,1.0000,0.0000,0.0000,3.0000,2.5000,1.0000,1.0000,3.0000,-1.0000,0.0000,0.0000,2.0000,3.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,3.0000,2.5000,2.0000,1.0000,3.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,2.0000,3.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.0000,-3.0000,-1.0000,-1.0000,0.0000,2.0000,3.0000,0.0000,5.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,2.0000,0.0000,6.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,5.0000,1.0000,2.0000,-5.0000,-1.0000,-1.0000,-2.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.5000,1.0000,-1.0000,-1.0000,-1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,1.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,0.0000 +Oxfordshire 4,2.0000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,2.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,3.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.0000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,1.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,3.0000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,1.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,1.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,1.0000,-1.0000,1.5000,1.0000,0.0000,1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-1.5000,0.0000,0.0000,2.0000,3.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,1.0000,-0.5000,0.0000,-1.5000,3.0000,3.0000,2.0000,1.5000,1.0000,-1.0000,-1.0000,-0.5000,2.0000,3.0000,5.0000,3.0000,2.0000,2.0000,1.0000,-0.5000,0.0000,-1.5000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,-1.0000,-1.0000,0.0000,2.0000,3.0000,1.0000,6.5000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,1.5000,1.0000,0.0000,0.0000,1.5000,1.0000,1.0000,1.0000,4.5000,1.5000,1.0000,0.0000,2.0000,3.0000,6.0000,4.5000,1.0000,1.0000,1.5000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,5.0000,1.0000,2.0000,-5.0000,-1.0000,-1.0000,-2.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.5000,1.0000,-1.0000,-1.0000,-1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,1.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Oxfordshire 5,1.0000,1.0000,0.0000,0.0000,1.0000,1.0000,0.0000,1.0000,1.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,1.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,2.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.0000,1.0000,2.0000,1.0000,1.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,3.0000,3.0000,1.0000,0.0000,1.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,1.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,1.000,6.0000,1.5000,1.0000,-2.0000,0.5000,1.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,-0.5000,1.0000,0.0000,3.0000,2.5000,2.0000,1.0000,3.0000,-1.0000,-1.0000,0.0000,0.0000,3.0000,2.5000,2.0000,1.0000,3.0000,-1.0000,-1.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-1.5000,1.0000,0.0000,0.0000,3.0000,2.5000,1.0000,1.0000,3.0000,-1.0000,0.0000,0.0000,2.0000,3.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,3.5000,3.0000,2.0000,1.0000,2.5000,-0.5000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,-1.0000,-1.0000,-1.0000,0.0000,2.0000,3.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,1.0000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,2.0000,3.0000,1.0000,6.5000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,3.0000,1.5000,1.0000,1.0000,3.0000,1.0000,1.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,2.0000,3.0000,6.0000,5.0000,1.0000,2.0000,1.0000,0.5000,-1.5000,0.0000,5.0000,1.0000,1.0000,1.0000,-1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,5.0000,1.0000,1.0000,1.5000,0.5000,0.0000,-0.5000,1.0000,0.0000,3.5000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,2.0000,3.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.5000,1.0000,1.5000,1.5000,0.0000,3.5000,3.0000,2.0000,1.0000,2.5000,-0.5000,0.0000,0.0000,0.0000,1.0000,0.0000 +Oxfordshire 6,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,1.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,2.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.0000,1.0000,2.0000,1.0000,1.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.5000,2.5000,2.0000,1.0000,-1.5000,-0.5000,-1.0000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,5.5000,2.5000,2.0000,3.0000,3.0000,1.0000,0.0000,1.0000,2.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,1.0000,5.0000,1.0000,1.0000,1.0000,0.5000,-0.5000,0.0000,1.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,1.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,1.0000,0.0000,3.0000,2.5000,2.0000,1.0000,3.0000,-1.0000,-1.0000,0.0000,1.0000,3.0000,2.5000,2.0000,1.0000,3.0000,-1.0000,-1.0000,0.0000,3.0000,2.5000,2.0000,1.0000,3.0000,-1.0000,-1.0000,0.0000,0.0000,3.0000,2.5000,1.0000,1.0000,3.0000,-1.0000,0.0000,0.0000,2.0000,3.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,-0.5000,0.0000,4.5000,3.0000,2.0000,1.0000,1.5000,-0.5000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,-1.0000,-1.0000,-1.0000,0.0000,2.0000,3.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,2.0000,3.0000,1.0000,6.5000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,3.0000,1.5000,1.0000,1.0000,3.0000,1.0000,1.0000,0.0000,2.0000,3.0000,6.0000,5.0000,1.0000,1.0000,1.0000,0.5000,0.0000,1.0000,3.5000,1.0000,1.0000,1.0000,0.5000,1.0000,0.0000,0.0000,2.0000,3.0000,5.0000,1.0000,1.0000,1.5000,0.5000,0.0000,0.0000,1.0000,0.0000,3.5000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,1.0000,-1.0000,-1.0000,-1.5000,0.0000,1.0000,2.0000,3.0000,0.0000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,0.0000 +Nottinghamshire 1,1.0000,1.0000,0.0000,0.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,2.0000,0.0000,0.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,6.0000,1.5000,0.5000,1.0000,-0.5000,1.5000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,1.0000,5.0000,0.0000,0.0000,0.0000,7.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,1.0000,0.5000,0.0000,1.0000,1.0000,1.5000,6.0000,2.5000,2.0000,0.5000,1.0000,0.5000,0.0000,1.5000,7.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,2.0000,0.0000,6.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-0.5000,1.0000,0.0000,0.0000,0.0000,0.0000 +Nottinghamshire 2,1.0000,1.0000,0.0000,0.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,2.0000,1.0000,-0.5000,0.0000,-1.5000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,2.0000,0.0000,0.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,6.0000,1.5000,0.5000,1.0000,-0.5000,1.5000,0.0000,6.0000,1.5000,0.5000,1.0000,-0.5000,0.0000,1.5000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,6.0000,1.5000,1.0000,0.5000,1.0000,-0.5000,0.0000,1.5000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,2.5000,2.0000,1.0000,5.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,6.0000,2.5000,2.0000,0.5000,1.0000,0.5000,0.0000,1.5000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,2.0000,0.0000,6.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Nottinghamshire 3,1.0000,1.0000,0.0000,0.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,1.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,1.0000,-1.0000,-1.0000,-1.0000,2.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,2.0000,0.0000,0.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,1.0000,0.5000,0.0000,1.0000,1.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,2.0000,0.0000,6.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Nottinghamshire 4,1.0000,1.0000,0.0000,0.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,2.0000,1.0000,-0.5000,0.0000,-1.5000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.5000,1.0000,1.0000,3.0000,1.0000,1.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,2.0000,0.0000,0.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,6.0000,1.5000,0.5000,1.0000,-0.5000,0.5000,0.000,6.0000,1.5000,0.5000,1.0000,-0.5000,1.5000,0.0000,3.5000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,6.0000,1.5000,0.5000,1.0000,-0.5000,1.5000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.5000,1.0000,1.0000,3.0000,1.0000,1.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,1.0000,0.5000,0.0000,1.0000,1.0000,1.5000,6.0000,2.5000,2.0000,0.5000,1.0000,0.5000,0.0000,1.5000,5.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,2.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,2.0000,0.0000,6.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,0.0000,5.0000,3.0000,2.0000,1.5000,1.0000,-0.5000,0.0000,-0.5000,0.0000,0.0000,0.0000 +Lincolnshire 1,1.0000,1.0000,0.0000,0.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,3.0000,1.0000,1.5000,1.0000,1.0000,-0.5000,1.0000,1.5000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.5000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,1.0000,1.5000,0.0000,3.0000,3.0000,2.0000,1.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.5000,1.0000,1.0000,-0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.5000,1.0000,1.0000,-0.5000,3.0000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,-0.5000,1.0000,1.5000,6.0000,1.5000,1.5000,-2.0000,0.5000,-0.5000,0.000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,6.0000,1.5000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.5000,5.0000,0.5000,0.0000,-0.5000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,2.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,6.0000,3.0000,1.0000,1.5000,1.0000,1.0000,-0.5000,0.0000,3.0000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,-0.5000,1.0000,1.5000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,1.5000,1.0000,-1.0000,-1.0000,-0.5000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,0.0000,3.0000,3.0000,2.0000,1.5000,1.0000,-1.0000,-1.0000,-0.5000,0.0000,1.0000,0.0000 +Lincolnshire 2,1.0000,1.0000,0.0000,0.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,3.0000,1.0000,1.5000,1.0000,1.0000,-0.5000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,2.5000,2.0000,1.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,-1.0000,-1.0000,0.0000,2.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,3.0000,2.0000,1.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.5000,1.0000,1.0000,-0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.5000,1.0000,1.0000,-0.5000,3.0000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,6.0000,1.5000,1.5000,-2.0000,0.5000,-0.5000,0.000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,6.0000,1.5000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,2.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,6.0000,3.0000,1.0000,1.5000,1.0000,1.0000,-0.5000,0.0000,3.0000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.5000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,-0.5000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Lincolnshire 3,1.0000,1.0000,0.0000,0.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,3.0000,1.0000,1.5000,1.0000,1.0000,-0.5000,1.0000,1.5000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,1.5000,1.0000,-1.0000,-1.0000,-0.5000,2.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,1.0000,1.5000,0.0000,3.0000,3.0000,2.0000,1.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.5000,1.0000,1.0000,-0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.5000,1.0000,1.0000,-0.5000,3.0000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,6.0000,1.5000,1.5000,-2.0000,0.5000,-0.5000,0.000,6.0000,1.5000,1.5000,-2.0000,0.5000,-0.5000,0.0000,6.0000,1.5000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.5000,5.0000,0.5000,0.0000,-0.5000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,1.0000,1.5000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,6.0000,3.0000,1.0000,1.5000,1.0000,1.0000,-0.5000,0.0000,3.0000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Lincolnshire 4,1.0000,1.0000,0.0000,0.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,3.0000,1.0000,1.5000,1.0000,1.0000,-0.5000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,1.0000,1.5000,0.0000,3.0000,3.0000,2.0000,1.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.5000,1.0000,1.0000,-0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.5000,1.0000,1.0000,-0.5000,3.0000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,-0.5000,1.0000,1.5000,6.0000,1.5000,1.5000,-2.0000,0.5000,-0.5000,0.000,6.0000,1.5000,1.5000,-2.0000,0.5000,-0.5000,0.0000,6.0000,1.5000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.5000,5.0000,0.5000,0.0000,-0.5000,1.0000,1.5000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,-1.0000,-1.0000,-1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,2.0000,0.0000,6.0000,3.0000,1.0000,1.5000,1.0000,1.0000,-0.5000,0.0000,3.0000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,-0.5000,1.0000,1.5000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000 +Lincolnshire 5,1.0000,1.0000,0.0000,0.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,3.0000,1.0000,1.5000,1.0000,1.0000,-0.5000,1.0000,1.5000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,1.0000,1.5000,0.0000,3.0000,3.0000,2.0000,1.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.5000,1.0000,1.0000,-0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.5000,1.0000,1.0000,-0.5000,3.0000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,6.0000,1.5000,1.5000,-2.0000,0.5000,-0.5000,0.000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,6.0000,1.5000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.5000,5.0000,0.5000,0.0000,-0.5000,0.0000,1.0000,1.0000,1.0000,1.5000,5.0000,0.5000,0.0000,-0.5000,1.0000,1.0000,1.0000,2.0000,5.0000,0.5000,0.0000,-1.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,2.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,1.0000,1.5000,6.0000,3.0000,1.0000,1.5000,1.0000,1.0000,-0.5000,0.0000,3.0000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,1.5000,1.0000,-1.0000,-1.0000,-0.5000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,4.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,0.0000,3.0000,3.0000,2.0000,1.5000,1.0000,-1.0000,-1.0000,-0.5000,0.0000,0.0000,0.0000 +Lincolnshire 6,1.0000,1.0000,0.0000,0.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,1.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,1.5000,1.0000,-1.0000,-1.0000,-0.5000,1.0000,1.5000,0.0000,1.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,1.0000,1.5000,0.0000,3.0000,3.0000,2.0000,1.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.5000,1.0000,1.0000,-0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.5000,1.0000,1.0000,-0.5000,3.0000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,-0.5000,1.0000,1.5000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,1.0000,1.5000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,1.0000,1.5000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.0000,-3.0000,-1.0000,-1.0000,0.0000,1.0000,1.5000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,1.0000,1.5000,6.0000,3.0000,1.0000,1.5000,1.0000,1.0000,-0.5000,0.0000,3.0000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,-0.5000,1.0000,1.5000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,3.0000,-0.5000,0.0000,-1.0000,0.0000,1.0000,0.0000 +Lincolnshire 7,1.0000,1.0000,0.0000,0.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,1.0000,1.5000,4.0000,2.0000,1.0000,1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,1.0000,1.5000,0.0000,4.0000,2.0000,1.0000,1.0000,1.0000,1.5000,0.0000,1.0000,3.0000,1.0000,1.5000,1.0000,1.0000,-0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.5000,1.0000,1.0000,-0.5000,3.0000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,6.0000,1.5000,1.5000,-2.0000,0.5000,-0.5000,0.000,6.0000,1.5000,1.5000,-2.0000,0.5000,-0.5000,0.0000,6.0000,1.5000,1.5000,-2.0000,0.5000,0.0000,-0.5000,1.0000,1.5000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,3.0000,1.0000,1.5000,5.0000,-1.5000,0.0000,-0.5000,1.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.5000,5.0000,-1.5000,0.0000,-0.5000,0.0000,1.0000,3.0000,1.0000,1.5000,5.0000,-1.5000,0.0000,-0.5000,1.0000,1.5000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,6.0000,2.0000,1.0000,0.0000,1.0000,1.5000,6.0000,3.0000,1.0000,1.5000,1.0000,1.0000,-0.5000,0.0000,3.0000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,-0.5000,1.0000,1.5000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,-0.5000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,2.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,0.0000,0.0000,3.0000,3.0000,2.0000,1.5000,1.0000,-1.0000,-1.0000,-0.5000,0.0000,1.0000,0.0000 +Lincolnshire 8,1.0000,1.0000,0.0000,0.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,0.0000,1.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,1.0000,1.5000,0.0000,4.0000,2.0000,1.0000,1.0000,1.0000,1.5000,0.0000,0.0000,3.0000,1.0000,1.5000,1.0000,1.0000,-0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.5000,1.0000,1.0000,-0.5000,3.0000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,-0.5000,1.0000,1.5000,6.0000,1.5000,1.5000,-2.0000,0.5000,-0.5000,0.000,6.0000,1.5000,1.5000,-2.0000,0.5000,-0.5000,0.0000,6.0000,1.5000,1.5000,-2.0000,0.5000,0.0000,-0.5000,1.0000,1.5000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,3.0000,1.0000,1.5000,5.0000,-1.5000,0.0000,-0.5000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.5000,5.0000,0.5000,0.0000,-0.5000,0.0000,1.0000,1.0000,1.0000,1.5000,5.0000,0.5000,0.0000,-0.5000,2.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,6.0000,2.0000,1.0000,0.0000,1.0000,1.5000,6.0000,3.0000,1.0000,1.5000,1.0000,1.0000,-0.5000,0.0000,3.0000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,-0.5000,1.0000,1.5000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,3.0000,-0.5000,0.0000,-1.0000,0.0000,0.0000,0.0000 +Lincolnshire 9,1.0000,1.0000,0.0000,0.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,3.0000,1.0000,1.5000,1.0000,1.0000,-0.5000,1.0000,1.5000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,1.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,1.0000,1.5000,0.0000,3.0000,3.0000,2.0000,1.0000,2.0000,0.0000,0.0000,0.0000,3.5000,1.0000,1.5000,0.5000,1.0000,-0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,1.0000,3.5000,1.0000,1.0000,0.5000,1.0000,0.0000,3.0000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,-0.5000,1.0000,1.5000,6.0000,1.5000,1.5000,-2.0000,0.5000,-0.5000,0.000,6.0000,1.5000,1.5000,-2.0000,0.5000,-0.5000,0.0000,6.0000,1.5000,1.5000,-2.0000,0.5000,0.0000,-0.5000,1.0000,1.5000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.5000,5.0000,0.5000,0.0000,-0.5000,0.0000,1.0000,3.0000,1.0000,1.5000,5.0000,-1.5000,0.0000,-0.5000,1.0000,3.0000,1.0000,1.5000,5.0000,-1.5000,0.0000,-0.5000,0.0000,1.0000,1.0000,1.0000,1.5000,5.0000,0.5000,0.0000,-0.5000,1.0000,1.5000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,1.0000,1.5000,6.0000,3.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,-0.5000,1.0000,1.5000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,1.5000,1.0000,-1.0000,-1.0000,-0.5000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,0.0000,3.0000,3.0000,2.0000,1.5000,1.0000,-1.0000,-1.0000,-0.5000,0.0000,0.0000,0.0000 +Lincolnshire 10,1.0000,1.0000,0.0000,0.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,3.0000,1.0000,1.5000,1.0000,1.0000,-0.5000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,1.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.5000,1.0000,1.0000,-0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,1.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,6.0000,1.5000,1.5000,-2.0000,0.5000,-0.5000,0.000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,6.0000,1.5000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,3.0000,1.0000,1.5000,5.0000,-1.5000,0.0000,-0.5000,0.0000,1.0000,1.0000,1.0000,1.5000,5.0000,0.5000,0.0000,-0.5000,1.0000,1.0000,1.0000,1.5000,5.0000,0.5000,0.0000,-0.5000,0.0000,1.0000,1.0000,1.0000,1.5000,5.0000,0.5000,0.0000,-0.5000,2.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,1.5000,1.0000,0.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,1.5000,1.0000,0.0000,2.0000,0.0000,6.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000 +Lincolnshire 11,1.0000,1.0000,0.0000,0.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,1.0000,1.5000,0.0000,3.0000,3.0000,2.0000,1.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.5000,1.0000,1.0000,-0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.5000,1.0000,1.0000,-0.5000,3.0000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,6.0000,1.5000,1.5000,-2.0000,0.5000,-0.5000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.5000,5.0000,0.5000,0.0000,-0.5000,0.0000,1.0000,1.0000,1.0000,1.5000,5.0000,0.5000,0.0000,-0.5000,1.0000,3.0000,1.0000,1.5000,5.0000,-1.5000,0.0000,-0.5000,0.0000,1.0000,1.0000,1.0000,1.5000,5.0000,0.5000,0.0000,-0.5000,2.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,1.0000,1.5000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,1.5000,1.0000,0.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,1.5000,1.0000,0.0000,2.0000,0.0000,6.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,4.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,1.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,1.0000,0.0000 +Lincolnshire 12,1.0000,1.0000,0.0000,0.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,3.0000,1.0000,1.5000,1.0000,1.0000,-0.5000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.5000,1.0000,1.0000,-0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.5000,1.0000,1.0000,-0.5000,3.0000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,6.0000,1.5000,1.5000,-2.0000,0.5000,-0.5000,0.000,6.0000,1.5000,1.5000,-2.0000,0.5000,-0.5000,0.0000,6.0000,1.5000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.5000,5.0000,0.5000,0.0000,-0.5000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.5000,5.0000,-1.5000,0.0000,-0.5000,0.0000,1.0000,3.0000,1.0000,1.5000,5.0000,-1.5000,0.0000,-0.5000,2.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,1.5000,1.0000,0.0000,0.0000,2.0000,1.0000,1.0000,1.0000,5.0000,2.0000,1.0000,0.0000,2.0000,0.0000,6.0000,3.0000,1.0000,1.5000,1.0000,1.0000,-0.5000,0.0000,3.0000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.5000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,0.0000,0.0000 +Lincolnshire 13,1.0000,1.0000,0.0000,0.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.5000,1.0000,1.0000,-0.5000,3.0000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,-3.0000,1.0000,0.0000,-1.5000,2.0000,0.0000,1.0000,3.0000,1.0000,1.5000,5.0000,-1.5000,0.0000,-0.5000,0.0000,1.0000,3.0000,1.0000,1.5000,5.0000,-1.5000,0.0000,-0.5000,1.0000,3.0000,1.0000,1.5000,5.0000,-1.5000,0.0000,-0.5000,0.0000,1.0000,3.0000,1.0000,1.5000,5.0000,-1.5000,0.0000,-0.5000,2.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,2.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,1.5000,1.0000,0.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,1.5000,1.0000,0.0000,2.0000,0.0000,6.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,3.0000,-0.5000,0.0000,-1.0000,0.0000,0.0000,0.0000 +Lincolnshire 14,1.0000,1.0000,0.0000,0.0000,2.0000,1.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,3.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,1.0000,1.0000,2.0000,1.0000,1.0000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,1.0000,1.5000,3.0000,3.0000,2.0000,1.0000,0.0000,6.0000,1.5000,2.0000,1.0000,-2.0000,0.5000,-1.0000,0.0000,2.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,1.0000,1.5000,0.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,6.0000,1.5000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,2.5000,2.0000,1.0000,3.0000,-1.0000,-1.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.5000,5.0000,-1.5000,0.0000,-0.5000,3.0000,2.5000,2.0000,1.0000,3.0000,-1.0000,-1.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.5000,5.0000,-1.5000,0.0000,-0.5000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,2.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,1.5000,1.0000,0.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,1.5000,1.0000,0.0000,2.0000,0.0000,6.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.5000,3.0000,2.0000,1.5000,0.5000,-1.0000,-1.0000,-0.5000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,0.0000,1.0000,2.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.5000,1.0000,1.5000,1.0000,0.5000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,3.0000,-0.5000,0.0000,-1.0000,0.0000,0.0000,0.0000 +Lincolnshire 15,1.0000,1.0000,0.0000,0.0000,2.0000,1.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,2.0000,1.0000,1.0000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,1.0000,-1.0000,-1.0000,-1.5000,2.0000,0.0000,0.0000,0.0000,2.0000,2.0000,1.0000,1.0000,4.0000,0.5000,1.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,2.0000,3.0000,0.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,3.0000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,-0.5000,2.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,2.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,2.0000,0.0000,6.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,1.5000,1.0000,-1.0000,-1.0000,-1.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.5000,1.0000,-1.0000,-1.0000,-1.0000,0.0000,0.0000,2.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,3.0000,-0.5000,0.0000,-1.0000,0.0000,0.0000,0.0000 +Leicestershire 1,1.0000,1.0000,0.0000,0.0000,1.0000,1.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.5000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.5000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.5000,1.0000,2.0000,0.0000,6.0000,1.5000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,4.5000,3.0000,2.0000,1.0000,1.5000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,0.0000,0.0000,3.0000,1.5000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,2.0000,3.0000,0.5000,-1.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.5000,3.0000,0.5000,-0.5000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,1.5000,5.0000,0.0000,0.0000,-0.5000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,4.5000,3.0000,2.0000,1.0000,1.5000,-0.5000,0.0000,0.0000,0.0000,4.5000,3.0000,2.0000,1.0000,1.5000,-0.5000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,4.5000,3.0000,2.0000,1.0000,1.5000,-0.5000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,6.0000,1.5000,1.0000,0.5000,1.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,1.0000,1.5000,1.0000,2.0000,3.0000,0.5000,0.0000,-1.5000,0.0000,1.5000,1.0000,1.0000,1.0000,4.5000,1.5000,1.0000,0.0000,2.0000,0.0000,6.0000,3.0000,1.0000,2.0000,3.0000,0.5000,-1.0000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.5000,3.5000,0.5000,0.0000,-0.5000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,1.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,1.0000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,3.0000,-0.5000,0.0000,-1.0000,0.0000,0.0000,0.0000 +Leicestershire 2,1.0000,1.0000,0.0000,0.0000,1.0000,1.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.5000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,3.0000,2.0000,1.0000,0.0000,6.0000,1.5000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,3.0000,2.5000,2.0000,1.0000,3.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,0.0000,0.0000,3.0000,1.5000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,1.0000,0.0000,1.0000,1.0000,1.0000,1.5000,5.0000,0.5000,0.0000,-0.5000,0.0000,1.0000,3.0000,1.0000,1.5000,5.0000,-1.5000,0.0000,-0.5000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,4.5000,3.0000,2.0000,1.0000,1.5000,-0.5000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,1.0000,6.0000,1.5000,1.0000,0.5000,1.0000,0.5000,1.0000,1.5000,1.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,1.5000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,2.0000,0.0000,6.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,1.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,3.0000,-0.5000,0.0000,-1.0000,0.0000,0.0000,0.0000 +Leicestershire 3,1.0000,1.0000,0.0000,0.0000,1.0000,1.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.5000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.5000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,4.5000,3.0000,2.0000,1.0000,1.5000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,0.0000,0.0000,4.0000,2.0000,1.0000,2.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,1.0000,3.0000,1.0000,1.5000,5.0000,-1.5000,0.0000,-0.5000,0.0000,1.0000,3.0000,1.0000,1.5000,5.0000,-1.5000,0.0000,-0.5000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,2.0000,0.0000,4.5000,3.0000,2.0000,1.0000,1.5000,-0.5000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,4.5000,3.0000,2.0000,1.0000,1.5000,-0.5000,0.0000,0.0000,0.0000,4.5000,3.0000,2.0000,1.0000,1.5000,-0.5000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,4.5000,3.0000,2.0000,1.0000,1.5000,-0.5000,0.0000,0.0000,1.0000,6.0000,1.5000,1.0000,0.5000,1.0000,0.5000,1.0000,1.5000,1.0000,1.5000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,1.5000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,2.0000,0.0000,6.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,1.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,3.0000,-0.5000,0.0000,-1.0000,0.0000,0.0000,0.0000 +Leicestershire 4,1.0000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.5000,1.0000,0.0000,0.0000,1.0000,1.5000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.5000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,4.5000,3.0000,2.0000,1.0000,1.5000,-0.5000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,3.0000,2.5000,2.0000,1.0000,3.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,0.0000,0.0000,4.0000,2.0000,1.0000,2.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.5000,5.0000,-1.5000,-1.0000,-0.5000,0.0000,1.0000,1.5000,1.0000,1.5000,5.0000,0.0000,0.0000,-0.5000,1.0000,3.0000,1.0000,1.5000,5.0000,-1.5000,0.0000,-0.5000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,2.0000,0.0000,4.5000,3.0000,2.0000,1.0000,1.5000,-0.5000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,4.5000,3.0000,2.0000,1.0000,1.5000,-0.5000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,4.5000,3.0000,2.0000,1.0000,1.5000,-0.5000,0.0000,0.0000,1.0000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,1.5000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,2.0000,0.0000,6.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,0.0000,4.5000,3.0000,2.0000,1.0000,1.5000,-0.5000,0.0000,0.0000,0.0000,0.0000,0.0000 +Leicestershire 5,1.0000,1.0000,0.0000,0.0000,1.0000,1.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.5000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.5000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,4.5000,2.5000,2.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,0.0000,0.0000,3.0000,1.5000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,1.0000,-3.0000,1.0000,0.0000,0.0000,1.0000,0.0000,1.0000,1.5000,1.0000,1.5000,5.0000,0.0000,0.0000,-0.5000,0.0000,1.0000,1.5000,1.0000,1.5000,5.0000,0.0000,0.0000,-0.5000,1.0000,1.0000,1.0000,1.5000,5.0000,0.5000,0.0000,-0.5000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,2.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,4.5000,3.0000,2.0000,1.0000,1.5000,-0.5000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,4.5000,3.0000,2.0000,1.0000,1.5000,-0.5000,0.0000,0.0000,1.0000,6.0000,1.5000,1.0000,0.5000,1.0000,0.5000,1.0000,1.5000,1.0000,1.5000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,1.0000,1.5000,1.0000,2.0000,3.0000,0.5000,0.0000,-1.5000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,2.0000,0.0000,6.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,3.0000,-0.5000,0.0000,-1.0000,0.0000,0.0000,0.0000 +Leicestershire 6,1.0000,1.0000,0.0000,0.0000,1.0000,1.0000,0.0000,1.0000,1.5000,2.0000,0.0000,0.0000,1.0000,1.5000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.5000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.5000,1.0000,1.0000,1.0000,1.0000,1.5000,1.0000,2.0000,0.0000,6.0000,1.5000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,4.5000,3.0000,2.0000,1.0000,1.5000,-0.5000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,4.5000,3.0000,2.0000,1.0000,1.5000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,0.0000,0.0000,3.0000,1.5000,1.0000,2.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.5000,5.0000,-1.5000,-1.0000,-0.5000,0.0000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.5000,5.0000,-1.5000,0.0000,-0.5000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,2.0000,0.0000,4.5000,3.0000,2.0000,1.0000,1.5000,-0.5000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,4.5000,3.0000,2.0000,1.0000,1.5000,-0.5000,0.0000,0.0000,0.0000,4.5000,3.0000,2.0000,1.0000,1.5000,-0.5000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,4.5000,3.0000,2.0000,1.0000,1.5000,-0.5000,0.0000,0.0000,0.0000,7.0000,2.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,1.0000,1.5000,1.0000,2.0000,3.0000,0.5000,0.0000,-1.5000,0.0000,1.5000,1.0000,1.0000,1.0000,4.5000,1.5000,1.0000,0.0000,2.0000,0.0000,6.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,1.5000,1.0000,1.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,1.0000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,3.0000,-0.5000,0.0000,-1.0000,0.0000,0.0000,0.0000 +Leicestershire 7,1.0000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,1.0000,1.5000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.5000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,4.5000,3.0000,2.0000,1.0000,1.5000,-0.5000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,0.0000,0.0000,4.0000,2.0000,1.0000,2.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,3.0000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.5000,1.0000,1.0000,2.5000,0.5000,0.0000,0.0000,1.0000,0.0000,1.0000,3.0000,1.0000,1.5000,5.0000,-1.5000,0.0000,-0.5000,0.0000,1.0000,3.0000,1.0000,1.5000,5.0000,-1.5000,0.0000,-0.5000,1.0000,3.0000,2.0000,1.5000,5.0000,-1.5000,-1.0000,-0.5000,0.0000,1.0000,3.0000,1.0000,1.5000,5.0000,-1.5000,0.0000,-0.5000,2.0000,0.0000,6.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,4.5000,3.0000,2.0000,1.0000,1.5000,-0.5000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,1.0000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,1.5000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,2.0000,0.0000,6.0000,6.0000,1.5000,0.5000,0.0000,0.0000,1.5000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Leicestershire 8,1.0000,1.0000,0.0000,0.0000,1.0000,1.0000,0.0000,1.0000,1.5000,2.0000,0.0000,0.0000,1.0000,1.5000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.5000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,4.5000,3.0000,2.0000,1.0000,1.5000,-0.5000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,4.5000,3.0000,2.0000,1.0000,1.5000,-0.5000,0.0000,0.0000,0.0000,3.5000,3.0000,2.0000,5.5000,2.5000,2.0000,0.0000,0.0000,2.0000,0.0000,0.0000,4.0000,2.0000,1.0000,2.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,-1.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.5000,5.0000,-1.5000,0.0000,-0.5000,1.0000,3.0000,1.0000,1.5000,5.0000,-1.5000,0.0000,-0.5000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,2.0000,0.0000,4.5000,3.0000,2.0000,1.0000,1.5000,-0.5000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,4.5000,3.0000,2.0000,1.0000,1.5000,-0.5000,0.0000,0.0000,0.0000,4.5000,3.0000,2.0000,1.0000,1.5000,-0.5000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,1.0000,6.0000,1.5000,1.0000,0.5000,1.0000,1.0000,1.0000,1.5000,1.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,1.0000,1.5000,1.0000,2.0000,3.0000,0.5000,0.0000,-1.5000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,2.0000,0.0000,6.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,1.5000,1.0000,1.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,0.0000,4.5000,3.0000,2.0000,1.0000,1.5000,-0.5000,0.0000,0.0000,0.0000,0.0000,0.0000 +Leicestershire 9,1.0000,1.0000,0.0000,0.0000,1.0000,1.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.5000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.5000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.5000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,3.0000,2.5000,2.0000,1.0000,3.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,0.0000,0.0000,3.0000,1.5000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,1.0000,1.5000,1.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,1.0000,3.0000,1.0000,1.5000,5.0000,-1.5000,0.0000,-0.5000,0.0000,1.0000,3.0000,1.0000,1.5000,5.0000,-1.5000,0.0000,-0.5000,1.0000,3.0000,1.0000,1.5000,5.0000,-1.5000,0.0000,-0.5000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,2.0000,0.0000,4.5000,3.0000,2.0000,1.0000,1.5000,-0.5000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,4.5000,3.0000,2.0000,1.0000,1.5000,-0.5000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,4.5000,3.0000,2.0000,1.0000,1.5000,-0.5000,0.0000,0.0000,1.0000,6.0000,1.5000,1.0000,0.5000,1.0000,0.5000,1.0000,1.5000,1.0000,1.5000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,1.5000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,2.0000,0.0000,6.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,3.0000,-0.5000,0.0000,-1.0000,0.0000,0.0000,0.0000 +Leicestershire 10,1.0000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.5000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.5000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.5000,1.0000,2.0000,0.0000,6.0000,1.5000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,5.5000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,0.0000,0.0000,4.5000,2.0000,1.0000,2.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,1.0000,1.0000,1.0000,1.5000,5.0000,0.5000,0.0000,-0.5000,0.0000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.5000,5.0000,-1.5000,0.0000,-0.5000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,4.5000,3.0000,2.0000,1.0000,1.5000,-0.5000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,1.0000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,1.0000,1.5000,1.0000,2.0000,3.0000,0.5000,0.0000,-1.5000,0.0000,1.5000,1.0000,1.0000,1.0000,4.5000,1.5000,1.0000,0.0000,0.0000,0.0000,6.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,1.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,3.0000,-0.5000,0.0000,-1.0000,0.0000,0.0000,0.0000 +Rutland 1,1.0000,1.0000,0.0000,0.0000,1.0000,1.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,1.0000,1.5000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.5000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,3.0000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,1.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,0.0000,0.0000,3.0000,1.5000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.5000,5.0000,-1.5000,0.0000,-0.5000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,1.0000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,1.5000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,2.0000,0.0000,6.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,1.0000,0.0000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,3.0000,-0.5000,0.0000,-1.0000,0.0000,0.0000,0.0000 +Rutland 2,1.0000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,1.0000,1.5000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.5000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,3.0000,1.0000,1.0000,1.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,0.0000,0.0000,3.0000,1.5000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,1.0000,3.0000,1.0000,1.5000,5.0000,-1.5000,0.0000,-0.5000,0.0000,1.0000,3.0000,1.0000,1.5000,5.0000,-1.5000,0.0000,-0.5000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,2.0000,0.0000,4.5000,3.0000,2.0000,1.0000,1.5000,-0.5000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,1.5000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,2.0000,0.0000,6.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,1.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,3.0000,-0.5000,0.0000,-1.0000,0.0000,0.0000,0.0000 +Northamptonshire 1,1.0000,1.0000,0.0000,0.0000,2.0000,1.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,3.5000,3.0000,2.0000,2.0000,0.5000,-1.0000,-1.0000,-1.5000,0.0000,1.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,3.5000,3.0000,2.0000,1.0000,2.5000,-0.5000,0.0000,0.0000,0.0000,1.0000,1.5000,3.5000,3.0000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,3.0000,-1.5000,0.0000,-1.5000,1.0000,1.5000,0.0000,0.0000,1.0000,2.5000,2.0000,1.0000,5.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,1.0000,1.5000,0.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,3.0000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,-3.0000,1.0000,0.0000,-1.5000,2.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,2.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.5000,3.0000,2.0000,1.0000,2.5000,-0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,2.5000,2.0000,1.0000,5.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,1.0000,5.0000,1.0000,1.0000,0.0000,5.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,2.5000,2.0000,1.0000,5.0000,0.0000,0.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.5000,3.0000,2.0000,2.0000,2.5000,-0.5000,0.0000,-1.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,2.5000,1.5000,1.0000,1.0000,3.5000,1.0000,1.0000,0.0000,2.0000,0.0000,6.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,2.0000,0.0000,2.0000,1.0000,1.0000,4.5000,0.5000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,1.5000,1.0000,-1.0000,-1.0000,-0.5000,0.0000,0.0000,1.0000,2.5000,3.0000,1.0000,5.0000,0.0000,-1.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,0.0000,1.0000,2.5000,2.0000,1.0000,5.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Northamptonshire 2,1.0000,1.0000,0.0000,0.0000,1.0000,1.0000,0.0000,1.0000,1.0000,2.0000,1.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,1.0000,1.0000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,2.5000,2.0000,1.0000,4.5000,3.0000,2.0000,1.0000,1.5000,-0.5000,0.0000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,4.5000,3.0000,2.0000,1.0000,1.5000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,6.0000,2.5000,2.0000,0.0000,0.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,2.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,3.5000,1.0000,1.0000,2.5000,0.5000,0.0000,3.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,-3.0000,1.0000,0.0000,-1.5000,1.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,2.0000,3.0000,4.5000,2.5000,2.0000,1.0000,1.5000,0.0000,0.0000,0.0000,5.5000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,4.5000,2.5000,2.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.5000,-1.0000,-1.0000,-1.0000,-0.5000,5.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,4.5000,2.5000,2.0000,1.0000,1.5000,0.0000,0.0000,0.0000,1.0000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.5000,1.5000,1.0000,1.0000,3.5000,1.0000,1.0000,0.0000,0.0000,2.5000,1.5000,1.0000,1.0000,3.5000,1.0000,1.0000,0.0000,2.0000,0.0000,6.0000,2.5000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,2.5000,1.0000,1.0000,4.0000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.5000,1.0000,-0.5000,0.0000,-0.5000,0.0000,0.0000,0.0000 +Northamptonshire 3,1.0000,1.0000,0.0000,0.0000,1.0000,1.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,3.5000,3.0000,2.0000,2.0000,0.5000,-1.0000,-1.0000,-1.5000,0.0000,0.0000,2.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.0000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.5000,3.5000,3.0000,2.0000,2.0000,0.0000,5.5000,3.0000,2.0000,2.0000,-1.5000,-1.0000,-1.0000,-1.5000,2.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,5.5000,2.5000,2.0000,5.5000,2.5000,2.0000,0.0000,0.0000,2.0000,0.0000,0.0000,4.0000,2.0000,1.0000,2.0000,1.0000,1.5000,0.0000,0.0000,3.5000,1.0000,1.0000,0.5000,1.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,3.5000,1.0000,1.0000,0.5000,1.0000,0.0000,3.0000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,-3.0000,1.0000,0.0000,-1.5000,1.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.5000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,5.0000,3.0000,2.0000,1.5000,-1.0000,-1.0000,-1.0000,-0.5000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.5000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,3.0000,1.5000,1.0000,1.0000,3.0000,1.0000,1.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,2.0000,0.0000,6.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.5000,1.0000,1.0000,0.0000,-0.5000,0.0000,0.0000,4.5000,3.0000,2.0000,1.0000,1.0000,1.5000,3.5000,3.0000,2.0000,2.0000,0.5000,-1.0000,-1.0000,-1.0000,0.0000,0.0000,3.5000,3.0000,2.0000,2.0000,0.5000,-1.0000,-1.0000,-1.5000,1.0000,3.5000,3.0000,2.0000,2.0000,0.5000,-1.0000,-1.0000,-1.5000,0.0000,0.0000,2.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,3.0000,-0.5000,0.0000,-1.0000,0.0000,0.0000,0.0000 +Northamptonshire 4,1.0000,1.0000,0.0000,0.0000,1.0000,2.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,3.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,1.0000,1.0000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,1.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,5.5000,2.5000,2.0000,0.0000,0.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,2.0000,2.0000,0.0000,0.0000,0.0000,3.5000,1.0000,1.0000,2.5000,0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,3.5000,1.0000,1.0000,2.5000,0.5000,0.0000,3.0000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,-3.0000,1.0000,0.0000,-1.5000,1.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,2.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,4.5000,3.0000,2.0000,1.0000,1.5000,-0.5000,0.0000,0.0000,0.0000,0.0000,4.5000,3.0000,2.0000,1.0000,1.5000,-0.5000,0.0000,0.0000,0.0000,4.5000,3.0000,2.0000,1.0000,1.5000,-0.5000,0.0000,0.0000,5.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,4.5000,3.0000,2.0000,1.0000,1.5000,-0.5000,0.0000,0.0000,1.0000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.0000,1.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,2.0000,3.0000,6.0000,3.5000,1.0000,1.0000,2.5000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,2.5000,1.0000,1.0000,4.0000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.5000,3.0000,2.0000,2.0000,0.5000,-1.0000,-1.0000,-1.5000,0.0000,0.0000,2.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,4.5000,3.0000,2.0000,1.0000,1.5000,-0.5000,0.0000,0.0000,0.0000,0.0000,0.0000 +Northamptonshire 5,1.0000,1.0000,0.0000,0.0000,1.0000,1.0000,0.0000,1.0000,1.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.5000,1.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,1.0000,1.0000,1.0000,2.0000,0.0000,1.0000,3.0000,2.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,4.5000,3.0000,2.0000,1.0000,1.5000,-0.5000,0.0000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,5.0000,3.0000,2.0000,1.5000,-1.0000,-1.0000,-1.0000,-0.5000,2.0000,3.0000,0.0000,0.0000,4.5000,3.0000,2.0000,1.0000,1.5000,-0.5000,0.0000,0.0000,0.0000,5.5000,2.5000,2.0000,3.0000,3.0000,1.0000,0.0000,0.0000,2.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,5.0000,1.0000,1.5000,-1.0000,1.0000,-0.5000,0.0000,1.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,5.5000,1.0000,1.5000,-1.5000,1.0000,-0.5000,5.0000,1.0000,1.0000,1.5000,-1.0000,1.0000,0.0000,-0.5000,1.0000,1.5000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,-3.0000,1.0000,0.0000,-1.5000,1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,2.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,4.5000,3.0000,2.0000,1.0000,1.5000,-0.5000,0.0000,0.0000,0.0000,1.0000,4.5000,3.0000,2.0000,1.0000,1.5000,-0.5000,0.0000,0.0000,0.0000,4.5000,3.0000,2.0000,1.0000,1.5000,-0.5000,0.0000,0.0000,5.5000,2.5000,2.0000,1.0000,-1.5000,-0.5000,-1.0000,0.0000,2.0000,3.0000,4.5000,3.0000,2.0000,1.0000,1.5000,-0.5000,0.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.5000,-2.0000,-0.5000,-1.0000,-0.5000,2.0000,3.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.0000,1.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.0000,1.0000,0.0000,2.0000,3.0000,6.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,5.5000,1.0000,1.0000,1.5000,-1.5000,1.0000,0.0000,-0.5000,2.0000,3.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,0.0000,4.5000,3.0000,2.0000,1.0000,1.5000,-0.5000,0.0000,0.0000,0.0000,0.0000,0.0000 +Huntingdonshire 1,1.0000,1.0000,0.0000,0.0000,1.0000,1.5000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.0000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,3.5000,3.0000,2.0000,3.5000,3.0000,1.0000,0.0000,1.0000,2.0000,0.0000,0.0000,4.0000,2.0000,1.0000,2.0000,1.0000,1.5000,0.0000,0.0000,4.5000,1.0000,1.0000,1.5000,0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,4.5000,1.0000,1.0000,1.5000,0.5000,0.0000,3.0000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,-3.0000,1.0000,0.0000,-1.5000,1.0000,0.0000,3.0000,2.5000,1.0000,1.0000,0.0000,0.5000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,3.0000,2.5000,1.0000,1.0000,3.0000,-1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,6.5000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,3.0000,2.5000,2.0000,1.0000,3.0000,0.0000,0.0000,0.0000,3.5000,3.0000,2.0000,1.0000,2.5000,-0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,3.0000,1.5000,1.0000,1.0000,3.0000,1.0000,1.0000,0.0000,0.0000,2.5000,1.5000,1.0000,1.0000,3.5000,1.0000,1.0000,0.0000,2.0000,0.0000,6.0000,4.5000,1.0000,1.0000,1.5000,0.5000,0.0000,1.0000,3.0000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,2.0000,1.0000,1.0000,4.5000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,1.0000,-1.0000,-1.0000,-1.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.5000,3.0000,2.0000,2.0000,0.5000,-1.0000,-1.0000,-1.5000,0.0000,0.0000,2.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,3.0000,-0.5000,0.0000,-1.0000,0.0000,0.0000,0.0000 +Huntingdonshire 2,1.0000,1.0000,0.0000,0.0000,1.0000,2.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,3.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.0000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.5000,3.5000,3.0000,2.0000,2.0000,0.0000,4.5000,3.0000,2.0000,2.0000,-0.5000,-1.0000,-1.0000,-1.5000,2.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,3.0000,3.0000,1.0000,0.0000,0.0000,2.0000,0.0000,0.0000,4.0000,2.0000,1.0000,2.0000,2.0000,0.0000,0.0000,0.0000,3.5000,1.0000,1.0000,2.5000,0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,3.5000,1.0000,1.0000,2.5000,0.5000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,-3.0000,1.0000,0.0000,-1.5000,1.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,5.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.5000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,3.0000,1.5000,1.0000,1.0000,3.0000,1.0000,1.0000,0.0000,0.0000,3.0000,1.5000,1.0000,1.0000,3.0000,1.0000,1.0000,0.0000,2.0000,0.0000,6.0000,3.5000,1.0000,1.0000,2.5000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.5000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.5000,3.0000,2.0000,2.0000,0.5000,-1.0000,-1.0000,-1.5000,0.0000,0.0000,3.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.5000,1.0000,1.0000,1.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,3.0000,-0.5000,0.0000,-1.0000,0.0000,0.0000,0.0000 +Cambridgeshire 1,1.5000,1.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.5000,1.0000,2.0000,0.0000,0.0000,2.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,2.0000,1.0000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.5000,3.0000,2.0000,2.0000,2.0000,1.0000,1.0000,2.0000,1.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,3.0000,3.0000,1.0000,1.0000,0.0000,2.0000,0.0000,0.0000,4.0000,2.0000,1.0000,2.0000,1.0000,1.5000,0.0000,0.0000,3.5000,1.0000,1.0000,2.5000,0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,4.5000,1.0000,1.0000,1.5000,0.5000,0.0000,3.0000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,-3.0000,1.0000,-1.5000,0.000,7.0000,1.0000,2.0000,-3.0000,1.0000,-1.5000,1.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,1.5000,3.0000,1.0000,1.0000,4.5000,-1.5000,0.0000,0.0000,0.0000,1.5000,3.0000,1.0000,1.0000,4.5000,-1.5000,0.0000,0.0000,1.5000,3.0000,1.0000,1.0000,4.5000,-1.5000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,2.0000,5.0000,-1.5000,0.0000,-1.0000,2.0000,0.0000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.5000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,5.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.5000,1.0000,1.0000,1.0000,3.5000,1.5000,1.0000,0.0000,0.0000,2.5000,1.0000,1.0000,1.0000,3.5000,1.5000,1.0000,0.0000,2.0000,0.0000,4.0000,4.5000,1.0000,1.0000,1.5000,0.5000,0.0000,1.0000,2.5000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,0.0000 +Cambridgeshire 2,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,0.0000,1.0000,1.5000,2.0000,0.0000,0.0000,1.0000,1.5000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,3.5000,3.0000,2.0000,2.0000,0.5000,-1.0000,-1.0000,-1.5000,0.0000,0.0000,2.0000,0.0000,3.5000,3.0000,2.0000,2.0000,1.0000,1.5000,1.0000,2.0000,0.0000,1.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.5000,3.5000,3.0000,2.0000,2.0000,0.0000,3.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,0.0000,3.0000,3.0000,2.0000,3.0000,3.0000,1.0000,0.0000,0.0000,2.0000,0.0000,0.0000,4.0000,2.0000,1.0000,2.0000,2.0000,0.0000,0.0000,0.0000,3.5000,1.0000,1.0000,2.5000,0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,3.5000,1.0000,1.0000,2.5000,0.5000,0.0000,3.0000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,-3.0000,1.0000,-1.5000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.5000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,-3.0000,1.0000,0.0000,-1.5000,1.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,0.0000,1.5000,3.0000,1.0000,1.0000,4.5000,-1.5000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,5.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.5000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,2.0000,0.0000,6.0000,3.5000,1.0000,1.0000,2.5000,0.5000,0.0000,1.0000,3.0000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,2.5000,1.0000,1.0000,4.0000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.5000,1.0000,1.5000,1.0000,1.5000,0.0000,6.0000,1.5000,1.0000,0.5000,1.0000,1.0000,1.5000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,0.0000,0.0000,0.0000 +Norfolk 1,2.0000,1.0000,1.0000,0.0000,1.0000,2.0000,2.0000,1.0000,3.0000,2.0000,0.0000,0.0000,1.0000,3.0000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,3.0000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,1.0000,2.5000,1.0000,1.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.5000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,1.3500,1.0000,-0.5000,0.0000,-0.3500,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,5.5000,3.0000,2.0000,1.5000,0.5000,-1.5000,0.0000,-0.5000,2.0000,0.0000,0.0000,1.0000,3.5000,3.0000,1.0000,1.0000,2.5000,-0.5000,1.0000,0.0000,0.0000,2.5000,3.0000,2.0000,3.0000,3.0000,1.0000,0.0000,1.0000,2.0000,0.0000,1.0000,3.0000,3.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.5000,1.0000,2.0000,3.5000,0.5000,-1.0000,0.0000,1.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,3.0000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,6.0000,1.5000,0.5000,0.5000,-0.5000,1.5000,0.000,6.0000,1.5000,0.5000,0.5000,-0.5000,1.5000,1.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,0.0000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,5.0000,3.0000,2.0000,1.5000,1.0000,-0.5000,0.0000,-0.5000,5.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,1.0000,-0.5000,0.0000,-1.0000,0.0000,1.0000,3.0000,3.0000,2.0000,1.5000,3.0000,-0.5000,0.0000,-0.5000,0.0000,5.0000,3.0000,2.0000,1.0000,2.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,5.0000,2.5000,2.0000,2.0000,1.0000,0.0000,0.0000,-1.0000,2.0000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,4.5000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,1.0000,3.0000,1.5000,1.0000,1.0000,3.0000,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,4.0000,2.5000,1.0000,1.0000,3.0000,0.5000,0.0000,1.0000,3.5000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,5.5000,0.5000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,2.5000,2.0000,2.0000,1.0000,-0.5000,-1.0000,-1.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-0.5000,1.0000,0.0000,0.0000,3.5000,3.0000,2.0000,2.0000,0.5000,-1.0000,-1.0000,-1.5000,1.0000,0.0000,2.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.5000,1.0000,1.0000,1.0000,1.5000,0.0000,7.0000,2.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.5000,3.0000,2.0000,1.0000,3.5000,-0.5000,0.0000,0.0000,0.0000,1.0000,0.0000 +Norfolk 2,2.0000,1.0000,1.0000,0.0000,2.0000,2.0000,0.0000,1.0000,1.0000,2.0000,1.0000,0.0000,1.0000,2.5000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,2.0000,0.0000,1.0000,3.0000,2.0000,1.5000,1.0000,3.0000,1.0000,2.0000,0.0000,3.0000,1.5000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,3.0000,3.0000,1.0000,0.0000,1.0000,2.0000,0.0000,1.0000,2.0000,2.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,2.0000,3.0000,1.0000,-1.5000,0.0000,1.0000,4.0000,2.0000,1.0000,1.0000,1.0000,1.5000,1.0000,5.0000,1.0000,1.0000,1.0000,0.5000,0.0000,3.0000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-0.5000,0.0000,0.000,5.5000,1.5000,1.0000,1.5000,-0.5000,0.0000,1.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-0.5000,1.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-0.5000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-1.5000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-1.5000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,4.0000,-2.0000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,2.0000,0.0000,5.0000,3.0000,2.0000,1.0000,2.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,2.0000,0.0000,0.0000,0.0000,3.5000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,2.0000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,4.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,1.0000,3.0000,1.0000,1.0000,1.0000,4.0000,2.0000,1.0000,0.0000,0.0000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,6.0000,4.5000,1.0000,2.0000,1.5000,0.5000,-1.5000,1.0000,3.0000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,5.5000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,2.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,7.0000,2.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,6.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000 +Norfolk 3,2.0000,2.0000,1.0000,0.0000,2.0000,2.0000,0.0000,1.0000,3.0000,2.0000,0.0000,0.0000,1.0000,3.0000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,2.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,3.0000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.5000,4.5000,3.0000,2.0000,1.0000,2.5000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.5000,3.0000,2.0000,1.5000,0.0000,3.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,5.0000,3.0000,2.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,3.0000,3.0000,1.0000,0.0000,1.0000,2.0000,0.0000,1.0000,2.0000,2.0000,1.0000,1.5000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,1.0000,2.0000,3.0000,0.5000,-1.5000,3.5000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,5.5000,1.5000,1.0000,1.5000,-0.5000,0.5000,0.000,3.5000,1.5000,1.0000,3.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.5000,1.0000,1.0000,0.0000,-0.5000,1.0000,1.5000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-0.5000,0.0000,0.5000,2.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-1.5000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-1.5000,0.0000,0.0000,2.5000,3.0000,1.0000,1.0000,4.5000,-2.0000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,2.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,2.0000,0.0000,0.0000,0.0000,4.5000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.5000,0.0000,1.0000,0.0000,2.0000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,4.5000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,1.0000,3.0000,1.5000,1.0000,1.0000,3.5000,1.5000,1.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-0.5000,1.0000,0.0000,2.0000,0.0000,6.0000,3.0000,1.0000,1.5000,3.0000,0.5000,-1.0000,1.0000,3.5000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,6.0000,0.0000,0.0000,0.5000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.5000,3.0000,2.0000,1.0000,5.5000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,2.0000,0.0000,0.0000,6.0000,2.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.5000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,3.0000,1.5000,1.0000,1.0000,4.0000,1.5000,1.0000,0.5000,0.0000,1.0000,0.0000 +Norfolk 4,2.0000,1.0000,1.0000,0.0000,2.0000,2.0000,0.0000,1.0000,3.0000,1.5000,0.0000,0.0000,1.0000,3.0000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,2.5000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,2.0000,0.0000,3.0000,2.5000,2.0000,1.0000,1.0000,1.0000,1.0000,1.5000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,3.0000,2.5000,2.0000,1.5000,0.0000,3.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,3.0000,2.0000,1.0000,6.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,1.0000,3.0000,3.0000,1.0000,0.0000,1.0000,2.0000,0.0000,1.0000,4.0000,2.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,5.0000,1.0000,1.0000,1.0000,0.5000,0.0000,0.0000,1.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,5.0000,1.0000,1.0000,1.0000,0.5000,0.0000,3.0000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-0.5000,0.0000,0.000,6.0000,1.5000,1.0000,1.0000,-0.5000,0.0000,1.0000,5.5000,1.5000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-1.5000,0.0000,0.0000,0.0000,1.5000,3.0000,1.0000,1.0000,4.5000,-1.5000,0.0000,0.0000,1.5000,3.0000,1.0000,1.0000,5.5000,-2.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,2.0000,0.0000,5.0000,3.0000,2.0000,1.0000,2.0000,0.0000,0.0000,0.0000,5.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,2.0000,0.0000,0.0000,0.0000,4.5000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,3.0000,2.0000,1.0000,6.0000,0.0000,0.0000,0.0000,2.0000,4.0000,2.0000,1.0000,1.0000,3.0000,1.0000,1.0000,0.5000,1.0000,1.5000,5.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.5000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,1.0000,2.5000,1.0000,1.0000,1.0000,4.5000,2.0000,1.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-0.5000,1.0000,0.0000,2.0000,0.0000,6.0000,2.0000,1.0000,1.0000,4.0000,0.5000,0.0000,1.0000,3.0000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,2.5000,1.0000,1.0000,4.0000,0.5000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-0.5000,1.0000,0.0000,0.0000,3.5000,3.0000,2.0000,1.5000,0.5000,-1.0000,-1.0000,-1.0000,0.0000,1.0000,2.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.0000,1.0000,0.5000,0.0000,5.5000,1.5000,1.0000,1.0000,1.5000,1.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,6.0000,0.0000,0.0000,0.0000,1.0000,0.0000,0.0000 +Norfolk 5,2.0000,1.0000,1.0000,0.0000,2.0000,2.0000,0.0000,2.0000,1.0000,2.0000,1.0000,0.0000,1.0000,3.0000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,3.0000,2.0000,2.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,2.0000,0.0000,3.0000,3.0000,1.0000,1.0000,2.0000,1.0000,1.0000,2.0000,0.0000,2.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,5.0000,3.0000,2.0000,1.5000,-1.0000,-1.0000,-1.0000,-0.5000,2.0000,0.0000,0.0000,1.0000,3.5000,3.0000,1.0000,1.0000,2.5000,-0.5000,1.0000,0.0000,0.0000,3.0000,3.0000,2.0000,3.0000,3.0000,1.0000,0.0000,1.0000,2.0000,0.0000,1.0000,2.0000,2.0000,1.0000,1.5000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,2.5000,1.0000,2.0000,3.5000,0.5000,-1.0000,3.5000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,5.5000,1.5000,2.0000,0.0000,0.0000,0.0000,0.000,5.5000,1.5000,2.0000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.5000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-1.5000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-1.5000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-1.5000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,6.5000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,1.0000,-0.5000,0.0000,-1.0000,0.0000,1.0000,3.5000,3.0000,2.0000,1.5000,0.5000,-1.0000,-1.0000,-0.5000,0.0000,5.0000,3.0000,2.0000,1.5000,1.0000,-0.5000,0.0000,-0.5000,4.5000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,5.0000,3.0000,2.0000,2.0000,1.0000,-0.5000,0.0000,-1.0000,2.0000,6.0000,1.5000,1.0000,1.0000,1.0000,0.5000,1.0000,1.0000,1.0000,1.5000,5.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,1.0000,3.0000,1.5000,1.0000,1.0000,3.0000,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,1.0000,2.0000,3.5000,0.5000,-1.5000,1.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,2.0000,3.5000,0.5000,0.0000,-1.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-0.5000,1.0000,0.0000,0.0000,3.5000,3.0000,2.0000,1.5000,0.5000,-1.0000,-1.0000,-1.0000,0.0000,1.0000,2.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.0000,1.0000,0.5000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.5000,5.0000,-0.5000,0.0000,-0.5000,1.0000,0.0000,0.0000 +Norfolk 6,2.0000,1.5000,1.0000,0.0000,2.0000,2.5000,0.0000,1.0000,3.0000,2.0000,0.0000,0.0000,1.0000,3.0000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,2.5000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,1.0000,3.0000,1.0000,1.5000,1.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,2.0000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,1.0000,1.5000,1.5000,3.0000,2.0000,1.5000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,5.0000,2.5000,2.0000,1.0000,2.0000,0.5000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,3.0000,3.0000,1.0000,0.0000,1.0000,2.0000,0.0000,1.0000,1.5000,3.0000,1.0000,2.0000,2.0000,0.0000,0.0000,1.0000,3.5000,1.0000,1.0000,2.5000,0.5000,0.0000,0.0000,1.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,1.0000,2.0000,3.0000,0.5000,-1.5000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-0.5000,0.5000,0.000,6.0000,1.5000,1.0000,1.0000,-0.5000,1.0000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-0.5000,0.5000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-1.5000,0.0000,0.0000,1.0000,3.5000,3.0000,1.0000,1.0000,2.5000,-1.5000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,4.0000,-2.0000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,2.0000,0.0000,5.5000,3.0000,2.0000,1.0000,1.5000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,5.0000,3.0000,2.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,2.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.5000,3.0000,1.0000,1.0000,3.5000,0.0000,1.0000,0.0000,2.0000,7.0000,2.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,1.0000,2.0000,2.0000,1.0000,1.0000,5.0000,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,6.0000,2.0000,1.0000,1.0000,5.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,2.0000,1.0000,1.0000,5.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,6.0000,0.0000,1.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,2.0000,0.0000,0.0000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,6.0000,0.0000,0.0000,0.5000,1.0000,1.0000,0.0000 +Norfolk 7,2.0000,1.0000,1.0000,0.0000,2.0000,2.0000,0.0000,1.5000,1.0000,1.5000,1.0000,0.0000,1.0000,3.0000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,3.0000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.5000,1.0000,3.0000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.5000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,5.0000,3.0000,2.0000,1.0000,-1.0000,-1.0000,-1.0000,0.0000,2.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,4.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,1.0000,3.0000,3.0000,1.0000,0.0000,1.0000,2.0000,0.0000,1.0000,4.5000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,5.0000,1.0000,1.0000,1.0000,0.5000,0.0000,0.0000,1.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,5.0000,1.0000,1.0000,1.0000,0.5000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-0.5000,0.5000,0.000,7.0000,1.0000,2.0000,-3.0000,1.0000,-1.5000,1.0000,6.0000,1.5000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,-3.0000,1.0000,0.0000,-1.5000,1.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-1.5000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,2.5000,3.0000,1.0000,1.0000,4.5000,-2.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,2.0000,0.0000,5.0000,3.0000,2.0000,1.0000,2.0000,0.0000,0.0000,0.0000,5.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.5000,1.0000,-1.0000,-1.0000,-1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,4.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,2.0000,7.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,1.0000,3.5000,1.0000,1.0000,1.0000,2.5000,1.0000,1.0000,0.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,1.5000,1.0000,0.0000,2.0000,0.0000,6.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,1.0000,3.0000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,5.0000,1.0000,1.0000,1.5000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,1.0000,-1.0000,-1.0000,-1.5000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,4.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,2.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,6.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000 +Norfolk 8,2.0000,1.0000,1.0000,0.0000,2.0000,2.0000,0.0000,1.5000,1.0000,1.5000,0.0000,0.0000,1.0000,3.0000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,3.0000,1.5000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,2.0000,0.0000,1.0000,3.0000,1.0000,1.5000,1.0000,3.0000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,5.0000,3.0000,2.0000,1.0000,-1.0000,-1.0000,-1.0000,0.0000,2.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,3.0000,3.0000,1.0000,0.0000,1.0000,2.0000,0.0000,1.0000,4.5000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,5.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,1.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,5.0000,1.0000,1.0000,1.0000,0.5000,0.0000,3.0000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-0.5000,0.5000,0.000,7.0000,1.0000,2.0000,-3.0000,1.0000,-1.5000,1.0000,5.5000,1.5000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-1.5000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-1.5000,0.0000,0.0000,2.5000,3.0000,1.0000,1.0000,4.5000,-2.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,2.0000,0.0000,5.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.5000,1.0000,-1.0000,-1.0000,-1.0000,0.0000,5.0000,3.0000,2.0000,1.0000,2.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,3.0000,2.0000,1.0000,6.0000,0.0000,0.0000,0.0000,2.0000,7.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,1.0000,3.5000,1.0000,1.0000,1.0000,2.5000,1.0000,1.0000,0.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,1.5000,1.0000,0.0000,2.0000,0.0000,6.0000,3.5000,1.0000,1.0000,2.5000,0.5000,0.0000,1.0000,3.0000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,5.0000,1.0000,1.0000,1.5000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,4.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,2.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,6.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Norfolk 9,2.0000,1.0000,1.0000,0.0000,2.0000,2.0000,0.0000,1.0000,2.5000,1.5000,1.0000,0.0000,1.0000,3.0000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,2.0000,0.0000,3.5000,3.0000,2.0000,2.0000,1.0000,1.0000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,0.0000,3.0000,3.0000,2.0000,3.0000,3.0000,1.0000,0.0000,1.0000,2.0000,0.0000,1.0000,2.0000,2.0000,1.0000,1.5000,2.0000,0.0000,1.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,2.5000,1.0000,1.0000,3.5000,0.5000,0.0000,3.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-0.5000,0.0000,0.000,6.0000,1.5000,1.0000,1.0000,-0.5000,0.0000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-0.5000,0.5000,0.0000,6.0000,1.5000,1.0000,1.0000,-0.5000,0.0000,0.5000,2.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-1.5000,0.0000,0.0000,0.0000,3.5000,3.0000,1.0000,1.0000,2.5000,-1.5000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-1.5000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,2.0000,0.0000,5.0000,3.0000,2.0000,1.0000,2.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,1.0000,1.0000,-1.0000,-1.0000,-0.5000,0.0000,5.0000,3.0000,2.0000,1.0000,2.0000,0.0000,0.0000,0.0000,4.5000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,3.0000,2.0000,1.0000,6.0000,0.0000,0.0000,0.0000,2.0000,6.0000,2.5000,2.0000,1.0000,1.0000,0.5000,0.0000,0.5000,1.0000,1.5000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,1.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,6.0000,5.0000,1.0000,1.0000,1.0000,0.5000,0.0000,1.0000,4.5000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,2.0000,1.0000,1.0000,4.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,2.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,0.5000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,0.5000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,6.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000 +Norfolk 10,2.0000,1.0000,1.0000,0.0000,2.0000,2.0000,0.0000,2.0000,1.0000,1.5000,1.0000,0.0000,1.0000,3.0000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,2.5000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.5000,1.0000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.5000,5.0000,3.0000,2.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,1.5000,0.0000,3.0000,3.0000,2.0000,1.5000,1.0000,-1.0000,-1.0000,-0.5000,2.0000,0.0000,0.0000,1.0000,5.0000,3.0000,2.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,3.0000,3.0000,1.0000,0.0000,1.0000,2.0000,0.0000,1.0000,4.0000,2.0000,1.0000,2.0000,2.0000,0.0000,0.0000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,1.0000,2.0000,1.0000,1.0000,-1.0000,3.0000,1.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,2.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-0.5000,0.0000,0.000,6.0000,1.5000,1.0000,1.0000,-0.5000,0.5000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-0.5000,0.5000,0.0000,6.0000,1.5000,1.0000,1.0000,-0.5000,0.0000,0.5000,2.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-1.5000,0.0000,0.0000,0.0000,3.5000,3.0000,1.0000,1.0000,2.5000,-1.5000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,4.0000,-2.0000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,2.0000,0.0000,5.0000,3.0000,2.0000,1.0000,2.0000,0.0000,0.0000,0.0000,5.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.5000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,2.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,1.0000,1.0000,4.0000,0.0000,1.0000,0.0000,2.0000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,1.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,6.0000,3.0000,1.0000,2.0000,3.0000,0.5000,-1.5000,1.0000,3.0000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,2.0000,1.0000,1.0000,5.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,2.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.0000,1.0000,0.5000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000 +Norfolk 11,2.0000,1.0000,1.0000,0.0000,2.0000,2.0000,0.0000,1.0000,3.0000,2.0000,0.0000,0.0000,1.0000,3.0000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.5000,1.0000,1.0000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,-1.0000,-1.0000,0.0000,2.0000,0.0000,1.0000,0.0000,5.0000,2.5000,2.0000,1.0000,2.0000,0.5000,0.0000,1.0000,0.0000,3.0000,3.0000,2.0000,3.0000,3.0000,1.0000,0.0000,1.0000,2.0000,0.0000,1.0000,4.0000,2.0000,1.0000,2.0000,2.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,1.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,1.0000,2.0000,1.0000,0.5000,-1.0000,3.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,5.5000,1.5000,1.5000,0.0000,0.0000,0.0000,0.000,5.5000,1.5000,1.0000,1.5000,-0.5000,0.5000,1.0000,5.5000,1.5000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,5.5000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-1.5000,0.0000,0.0000,1.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-1.5000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-1.5000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.5000,5.0000,-1.5000,0.0000,-0.5000,2.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,6.5000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,2.0000,0.0000,0.0000,0.0000,4.5000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-0.5000,1.0000,0.0000,2.0000,7.0000,2.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,1.0000,3.0000,2.5000,1.0000,1.0000,3.5000,0.5000,1.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,6.0000,2.0000,1.0000,1.0000,4.0000,0.5000,0.0000,1.0000,3.0000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,2.0000,1.0000,1.0000,4.5000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,1.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,2.0000,0.0000,0.0000,6.0000,2.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,7.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.5000,0.0000,0.0000,0.5000,1.0000,1.0000,0.0000 +Norfolk 12,2.0000,1.0000,0.0000,0.0000,2.0000,2.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,1.0000,3.0000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.5000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,1.0000,3.0000,1.0000,2.0000,0.0000,3.0000,1.5000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.5000,5.0000,3.0000,2.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,0.0000,3.0000,3.0000,2.0000,3.0000,3.0000,1.0000,0.0000,1.0000,2.0000,0.0000,1.0000,1.0000,3.0000,1.0000,1.5000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,2.0000,3.0000,0.5000,-1.5000,0.0000,1.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,1.0000,2.0000,1.0000,0.5000,-1.5000,3.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-0.5000,0.0000,0.000,6.0000,1.5000,1.0000,1.0000,-0.5000,0.5000,1.0000,3.5000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-0.5000,0.5000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-1.5000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-1.5000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,4.0000,-2.0000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,2.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,5.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,2.0000,0.0000,0.0000,0.0000,4.5000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,4.5000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,1.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,1.0000,3.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,6.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,2.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,6.0000,2.0000,1.0000,1.0000,1.0000,0.5000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-0.5000,1.0000,0.0000,1.0000,1.0000,0.0000 +Norfolk 13,2.0000,1.0000,1.0000,0.0000,2.0000,2.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,1.0000,3.0000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,2.5000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,1.0000,3.0000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.5000,3.0000,2.0000,1.5000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,0.0000,3.0000,3.0000,2.0000,3.0000,3.0000,1.0000,0.0000,1.0000,2.0000,0.0000,1.0000,3.0000,1.5000,1.0000,2.0000,2.0000,0.0000,0.0000,0.0000,5.0000,1.0000,1.5000,-1.0000,1.0000,-1.0000,0.0000,1.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,5.0000,1.0000,1.5000,1.0000,0.5000,-0.5000,3.0000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,5.0000,1.0000,1.0000,1.0000,0.5000,0.0000,0.000,6.0000,1.5000,1.0000,1.0000,-0.5000,0.5000,1.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-0.5000,1.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-1.5000,0.0000,0.0000,0.0000,1.5000,3.0000,1.0000,1.0000,4.5000,-1.5000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-1.5000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,2.0000,5.0000,-1.5000,0.0000,-1.0000,2.0000,0.0000,5.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,2.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,5.0000,3.0000,2.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,7.0000,2.5000,2.0000,1.0000,0.0000,0.5000,0.0000,0.0000,1.0000,1.5000,5.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,4.5000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,1.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,3.0000,1.5000,1.0000,1.0000,4.0000,1.5000,1.0000,0.0000,2.0000,0.0000,6.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,1.0000,2.5000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,2.0000,1.0000,1.0000,4.5000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-0.5000,1.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,2.0000,0.0000,0.0000,6.0000,2.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-0.5000,1.0000,0.0000,0.0000,1.0000,0.0000 +Suffolk 1,1.0000,1.0000,0.0000,0.0000,1.0000,2.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,3.5000,3.0000,2.0000,2.0000,0.5000,-1.0000,-1.0000,-1.5000,1.0000,0.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.0000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,1.0000,1.5000,3.5000,3.0000,2.0000,2.0000,0.0000,5.5000,3.0000,2.0000,2.0000,-1.5000,-1.0000,-1.0000,-1.5000,2.0000,0.0000,0.0000,1.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,0.0000,3.0000,3.0000,2.0000,3.0000,3.0000,1.0000,0.0000,1.0000,2.0000,0.0000,1.0000,4.0000,2.0000,1.0000,2.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,1.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,5.0000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,1.0000,5.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,2.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,1.0000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.5000,3.0000,-0.5000,0.0000,-1.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,2.0000,0.0000,4.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,1.0000,5.0000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,2.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,0.0000,1.0000,0.0000 +Suffolk 2,2.0000,1.0000,0.0000,0.0000,1.0000,3.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,3.5000,3.0000,2.0000,2.0000,0.5000,-1.0000,-1.0000,-1.5000,1.0000,0.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.5000,2.0000,1.0000,1.0000,1.5000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.5000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.5000,3.5000,3.0000,2.0000,2.0000,0.0000,5.5000,3.0000,2.0000,2.0000,0.5000,-0.5000,-1.0000,-1.5000,2.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,0.0000,3.0000,3.0000,2.0000,3.0000,3.0000,1.0000,0.0000,0.0000,2.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,1.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,4.5000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,1.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,4.0000,2.0000,0.5000,3.0000,-1.0000,1.5000,0.0000,7.0000,1.0000,2.0000,-3.0000,1.0000,0.0000,-1.5000,1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,0.0000,3.5000,3.0000,2.0000,1.0000,2.5000,-1.5000,-1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.5000,5.0000,-1.5000,0.0000,-0.5000,2.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.5000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,5.0000,3.0000,2.0000,1.5000,1.0000,-0.5000,0.0000,-0.5000,2.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,0.0000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,2.0000,0.0000,4.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,1.0000,5.0000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,2.0000,1.0000,1.0000,4.5000,0.5000,0.0000,0.0000,0.0000,0.0000,3.5000,3.0000,2.0000,1.0000,1.0000,1.5000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,2.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000 +Suffolk 3,2.0000,1.0000,0.0000,0.0000,1.0000,3.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.5000,1.0000,2.0000,2.0000,0.0000,3.5000,3.0000,2.0000,2.0000,0.5000,-1.0000,-1.0000,-1.5000,0.0000,1.0000,2.0000,0.0000,3.5000,3.0000,2.0000,2.0000,1.0000,1.0000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,5.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,0.0000,3.0000,3.0000,2.0000,3.0000,3.0000,1.0000,0.0000,1.0000,2.0000,0.0000,1.0000,1.5000,1.5000,1.0000,2.0000,2.0000,0.0000,0.0000,0.0000,3.5000,1.0000,1.0000,2.5000,0.5000,0.0000,0.0000,1.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,3.5000,1.0000,1.0000,2.5000,0.5000,0.0000,3.0000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,4.5000,1.0000,1.0000,-0.5000,1.0000,0.0000,1.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,-3.0000,1.0000,0.0000,-1.5000,1.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-1.5000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-1.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-1.0000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,1.0000,7.0000,2.5000,2.0000,0.5000,0.0000,0.0000,0.0000,1.5000,1.0000,1.5000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,4.5000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,4.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,1.0000,3.0000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,2.0000,1.0000,-1.0000,-1.0000,-1.5000,0.0000,1.0000,2.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,0.0000,1.0000,0.0000 +Suffolk 4,2.0000,1.0000,1.0000,0.0000,1.0000,3.5000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,1.0000,-1.0000,-1.0000,-1.5000,0.0000,1.0000,2.0000,0.0000,3.5000,3.0000,2.0000,2.0000,1.0000,1.0000,1.0000,2.0000,1.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,3.0000,3.0000,1.0000,1.0000,0.0000,2.0000,0.0000,1.0000,4.0000,2.0000,1.0000,2.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,1.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,3.0000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,4.0000,2.0000,0.5000,3.0000,-1.0000,1.5000,1.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,4.0000,2.0000,0.5000,3.0000,-1.0000,1.5000,0.0000,7.0000,1.0000,2.0000,-3.0000,1.0000,0.0000,-1.5000,1.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-1.5000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,1.5000,3.0000,1.0000,1.0000,4.5000,-1.5000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,2.0000,0.0000,3.5000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,1.0000,1.0000,1.0000,-0.5000,1.0000,0.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,4.5000,3.0000,2.0000,1.0000,1.5000,-0.5000,0.0000,0.0000,5.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,3.0000,1.0000,1.0000,1.0000,3.5000,1.0000,1.0000,0.0000,0.0000,3.0000,1.0000,1.0000,2.0000,3.0000,1.5000,1.0000,-1.0000,2.0000,0.0000,4.0000,2.0000,1.0000,1.0000,4.0000,0.5000,0.0000,1.0000,3.5000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,5.5000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.5000,3.0000,2.0000,2.0000,0.5000,-1.0000,-1.0000,-1.5000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,1.0000,-1.0000,-1.0000,-1.5000,1.0000,0.0000,2.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,0.0000,4.5000,3.0000,2.0000,1.0000,1.5000,-0.5000,0.0000,0.0000,0.0000,1.0000,0.0000 +Suffolk 5,2.0000,1.0000,0.0000,0.0000,1.0000,2.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.5000,1.0000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,1.0000,1.0000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,1.5000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.5000,3.0000,1.0000,0.0000,0.0000,2.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,1.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,3.5000,1.0000,1.0000,2.5000,0.5000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,4.0000,2.0000,0.5000,3.0000,-1.0000,1.5000,0.000,4.0000,2.0000,0.5000,3.0000,-1.0000,1.5000,1.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,4.0000,2.0000,0.5000,3.0000,-1.0000,1.5000,0.0000,7.0000,1.0000,2.0000,-3.0000,1.0000,0.0000,-1.5000,1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,0.0000,1.5000,3.0000,1.0000,1.0000,4.5000,-1.5000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,2.5000,3.0000,1.0000,1.0000,3.5000,-0.5000,1.0000,0.0000,3.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,2.5000,3.0000,1.0000,1.0000,3.5000,-0.5000,1.0000,0.0000,1.0000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.5000,3.0000,-0.5000,0.0000,-0.5000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,2.5000,1.0000,1.0000,1.0000,3.5000,1.5000,1.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,2.0000,0.0000,4.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,1.0000,3.0000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,2.0000,1.0000,1.0000,4.5000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.5000,3.0000,2.0000,2.0000,0.5000,-1.0000,-1.0000,-1.5000,0.0000,0.0000,3.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,2.0000,1.0000,-1.0000,-1.0000,-1.5000,0.0000,0.0000,2.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,2.5000,3.0000,1.0000,1.0000,3.5000,-0.5000,1.0000,0.0000,0.0000,0.0000,0.0000 +Buckinghamshire 1,1.0000,1.0000,0.0000,0.0000,1.0000,1.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,5.0000,1.0000,1.5000,-1.0000,1.0000,-0.5000,2.0000,3.0000,0.0000,1.0000,1.0000,2.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.0000,1.0000,2.0000,1.0000,1.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,5.5000,2.5000,2.0000,3.0000,3.0000,1.0000,0.0000,1.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,0.0000,1.0000,5.0000,1.0000,1.5000,-1.0000,1.0000,-0.5000,0.0000,1.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,5.0000,1.0000,1.5000,-1.0000,1.0000,-0.5000,5.0000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,2.5000,1.0000,1.0000,3.5000,0.5000,0.0000,0.000,2.5000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,2.0000,3.0000,2.5000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,7.0000,1.0000,2.0000,-3.0000,1.0000,0.0000,-1.5000,1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,2.0000,3.0000,5.5000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.5000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.5000,-2.0000,-0.5000,-1.0000,-0.5000,0.0000,0.0000,5.5000,2.5000,2.0000,1.5000,-1.5000,-0.5000,-1.0000,-0.5000,0.0000,5.5000,2.5000,2.0000,1.5000,-1.5000,-0.5000,-1.0000,-0.5000,5.5000,2.5000,2.0000,1.5000,-1.5000,-0.5000,-1.0000,-0.5000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,6.5000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,5.5000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.5000,-2.0000,-0.5000,-1.0000,-0.5000,2.0000,3.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.0000,1.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.0000,1.0000,0.0000,2.0000,3.0000,6.0000,5.0000,1.0000,1.5000,-1.0000,1.0000,-0.5000,0.0000,4.5000,1.0000,1.0000,1.5000,-0.5000,1.0000,0.0000,-0.5000,2.0000,3.0000,5.0000,1.0000,1.5000,-1.0000,1.0000,0.0000,-0.5000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,2.0000,3.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.5000,1.0000,1.0000,1.0000,0.0000,6.5000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,0.0000,1.0000,0.0000 +Buckinghamshire 2,1.0000,1.0000,0.0000,0.0000,1.0000,1.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,1.5000,2.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,1.0000,-1.0000,-1.0000,-1.5000,0.0000,1.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,1.0000,2.0000,1.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,3.0000,2.0000,1.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,1.0000,1.0000,1.5000,3.5000,3.0000,2.0000,2.0000,0.0000,5.0000,3.0000,2.0000,1.5000,-1.0000,-1.0000,-1.0000,-0.5000,2.0000,3.0000,0.0000,1.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,1.0000,0.0000,3.0000,3.0000,2.0000,3.0000,3.0000,1.0000,0.0000,1.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,5.0000,1.0000,1.5000,-1.0000,1.0000,-0.5000,0.0000,1.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,5.5000,1.0000,1.0000,-1.5000,1.0000,0.0000,5.0000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,2.5000,1.0000,1.0000,3.5000,0.5000,0.0000,1.000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,2.0000,3.0000,4.0000,2.0000,0.5000,3.0000,-1.0000,1.5000,0.0000,7.0000,1.0000,2.0000,-3.0000,1.0000,0.0000,-1.5000,1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,1.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,2.0000,3.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,0.0000,1.0000,5.5000,2.5000,2.0000,1.5000,-1.5000,-0.5000,-1.0000,-0.5000,0.0000,5.5000,2.5000,2.0000,1.5000,-1.5000,-0.5000,-1.0000,-0.5000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,1.0000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.5000,2.5000,2.0000,1.5000,-1.5000,-0.5000,-1.0000,-0.5000,2.0000,3.0000,0.0000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.0000,1.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.0000,1.0000,0.0000,2.0000,3.0000,6.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,5.5000,1.0000,1.0000,1.5000,-1.5000,1.0000,0.0000,-0.5000,2.0000,3.0000,2.5000,1.0000,1.0000,4.0000,0.5000,0.0000,0.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.5000,3.0000,2.0000,2.0000,0.5000,-1.0000,-1.0000,-1.5000,0.0000,1.0000,2.0000,3.0000,0.0000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,0.0000,1.0000,0.0000 +Buckinghamshire 3,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,1.0000,2.0000,2.0000,3.0000,3.5000,3.0000,2.0000,2.0000,0.5000,-1.0000,-1.0000,-1.5000,0.0000,1.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.0000,1.0000,2.0000,0.0000,1.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,5.5000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,5.5000,2.5000,2.0000,3.0000,3.0000,1.0000,0.0000,1.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,0.0000,1.0000,5.0000,1.0000,1.5000,-1.0000,1.0000,-0.5000,0.0000,1.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,5.5000,1.0000,1.5000,-1.5000,1.0000,-0.5000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,1.000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,-3.0000,1.0000,0.0000,-1.5000,1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,1.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-1.5000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,2.0000,3.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,5.5000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,1.0000,1.0000,1.0000,-0.5000,1.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,4.5000,3.0000,2.0000,1.0000,1.5000,-0.5000,0.0000,0.0000,5.0000,3.0000,2.0000,1.5000,-1.0000,-1.0000,-1.0000,-0.5000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,1.0000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,-2.0000,-0.5000,-1.0000,0.0000,2.0000,3.0000,0.0000,6.5000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,2.0000,3.0000,6.0000,4.5000,1.0000,1.0000,1.5000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.5000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,2.0000,3.0000,0.0000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,0.0000 +Buckinghamshire 4,1.0000,1.0000,0.0000,0.0000,1.0000,1.0000,0.0000,1.0000,1.0000,2.0000,1.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,1.0000,2.0000,2.0000,3.0000,3.5000,3.0000,2.0000,2.0000,0.5000,-1.0000,-1.0000,-1.5000,1.0000,1.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.0000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,1.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,3.0000,2.0000,1.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.5000,3.5000,3.0000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,1.0000,0.0000,3.0000,3.0000,2.0000,3.0000,3.0000,1.0000,0.0000,1.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,0.0000,1.0000,5.0000,1.0000,1.5000,-1.0000,1.0000,-0.5000,0.0000,1.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,1.000,3.0000,1.0000,0.5000,3.0000,0.5000,1.5000,0.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,2.0000,3.0000,4.0000,2.0000,0.5000,3.0000,-1.0000,1.5000,0.0000,7.0000,1.0000,2.0000,-3.0000,1.0000,0.0000,-1.0000,1.0000,0.0000,1.5000,2.5000,1.0000,1.0000,4.5000,-1.0000,0.0000,0.0000,0.0000,1.4000,2.5000,1.0000,1.0000,4.6000,-1.0000,0.0000,0.0000,1.5000,2.5000,1.0000,1.0000,4.5000,-1.0000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,2.0000,3.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,0.0000,0.0000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,5.0000,3.0000,2.0000,1.5000,-1.0000,-1.0000,-1.0000,-0.5000,2.0000,3.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,1.0000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.5000,1.0000,-0.5000,0.0000,-0.5000,2.0000,3.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.0000,1.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.0000,1.0000,0.0000,2.0000,3.0000,6.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.5000,3.0000,2.0000,2.0000,0.5000,-1.0000,-1.0000,-1.5000,1.0000,1.0000,2.0000,3.0000,0.0000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,1.0000,1.0000,0.0000 +Buckinghamshire 5,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,1.0000,2.0000,2.0000,3.0000,3.5000,3.0000,2.0000,2.0000,0.5000,-1.0000,-1.0000,-1.5000,0.0000,1.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.0000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,3.0000,2.0000,1.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,-1.0000,-0.5000,2.0000,3.0000,0.0000,1.0000,4.5000,3.0000,2.0000,1.0000,1.5000,-0.5000,0.0000,1.0000,0.0000,3.0000,3.0000,2.0000,2.5000,3.0000,1.0000,0.0000,1.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,0.0000,1.0000,4.5000,1.0000,1.0000,1.5000,0.5000,0.0000,0.0000,1.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,4.5000,1.0000,1.0000,1.5000,0.5000,0.0000,3.0000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,1.000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,-3.0000,1.0000,0.0000,-1.5000,1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,1.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,2.0000,3.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,1.0000,1.0000,1.0000,-0.5000,1.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.5000,-1.0000,-1.0000,-1.0000,-0.5000,2.0000,3.0000,4.5000,3.0000,2.0000,1.0000,1.5000,-0.5000,0.0000,0.0000,1.0000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.5000,1.0000,-0.5000,0.0000,-0.5000,2.0000,3.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,2.0000,0.0000,6.0000,4.5000,1.0000,1.0000,1.5000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.5000,3.0000,2.0000,2.0000,0.5000,-1.0000,-1.0000,-1.5000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.5000,3.0000,2.0000,2.0000,0.5000,-1.0000,-1.0000,-1.5000,0.0000,1.0000,2.0000,3.0000,0.0000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,1.0000,1.0000,0.0000 +Buckinghamshire 6,2.5000,1.0000,0.0000,0.0000,1.0000,1.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.5000,2.0000,2.0000,0.0000,3.5000,3.0000,2.0000,2.0000,0.5000,-1.0000,-1.0000,-1.5000,0.0000,1.0000,2.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.0000,1.0000,2.0000,0.0000,1.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,0.0000,3.0000,3.0000,2.0000,3.0000,3.0000,1.0000,0.0000,1.0000,2.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,5.0000,1.0000,1.0000,1.0000,0.5000,0.0000,0.0000,1.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,4.5000,1.0000,1.0000,1.5000,0.5000,0.0000,3.0000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,1.000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,-3.0000,1.0000,0.0000,-1.5000,1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,2.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.5000,-1.0000,-1.0000,-1.0000,-0.5000,2.0000,3.0000,4.5000,3.0000,2.0000,1.0000,1.5000,-0.5000,0.0000,0.0000,1.0000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.5000,1.0000,1.0000,1.0000,3.5000,1.5000,1.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,2.0000,0.0000,6.0000,4.5000,1.0000,1.0000,1.5000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,2.5000,1.0000,1.0000,4.0000,0.5000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.5000,3.0000,2.0000,2.0000,0.5000,-1.0000,-1.0000,-1.5000,0.0000,0.0000,2.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,0.0000,1.0000,0.0000 +Bedfordshire 1,1.0000,1.0000,0.0000,0.0000,1.0000,1.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,3.5000,3.0000,2.0000,2.0000,0.5000,-1.0000,-1.0000,-1.5000,0.0000,1.0000,2.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.0000,1.0000,2.0000,1.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,1.0000,0.0000,3.0000,3.0000,2.0000,6.0000,2.5000,2.0000,0.0000,1.0000,2.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,1.0000,1.5000,0.0000,0.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,4.5000,1.0000,1.0000,1.5000,0.5000,0.0000,3.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,4.0000,2.0000,0.5000,3.0000,-1.0000,1.5000,0.000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,4.0000,2.0000,0.5000,3.0000,-1.0000,1.5000,0.0000,7.0000,1.0000,2.0000,-3.0000,1.0000,0.0000,-1.5000,1.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,2.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,1.0000,1.0000,1.0000,-0.5000,1.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,5.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,1.0000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.5000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,2.0000,0.0000,6.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,2.5000,1.0000,1.0000,4.0000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.5000,1.0000,1.5000,1.0000,1.5000,0.0000,6.0000,1.5000,1.0000,0.5000,1.0000,1.0000,1.5000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,0.0000 +Bedfordshire 2,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,3.5000,3.0000,2.0000,2.0000,0.5000,-1.0000,-1.0000,-1.5000,0.0000,1.0000,2.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.0000,1.0000,2.0000,0.0000,1.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.5000,3.5000,3.0000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,1.0000,0.0000,3.0000,3.0000,2.0000,3.0000,3.0000,1.0000,0.0000,0.0000,2.0000,0.0000,0.0000,4.0000,2.0000,1.0000,2.0000,2.0000,0.0000,0.0000,0.0000,4.5000,1.0000,1.0000,1.5000,0.5000,0.0000,0.0000,1.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,4.5000,1.0000,1.0000,1.5000,0.5000,0.0000,3.0000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,-3.0000,1.0000,0.0000,-1.5000,1.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,5.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.5000,1.0000,1.0000,1.0000,3.5000,1.5000,1.0000,0.0000,0.0000,2.5000,1.0000,1.0000,1.0000,3.5000,1.5000,1.0000,0.0000,2.0000,0.0000,6.0000,4.5000,1.0000,1.0000,1.5000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,2.5000,1.0000,1.0000,4.0000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,0.0000,0.0000,0.0000 +Bedfordshire 3,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,0.0000,1.0000,1.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,1.0000,2.0000,2.0000,3.0000,3.5000,3.0000,2.0000,2.0000,0.5000,-1.0000,-1.0000,-1.5000,0.0000,0.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,1.0000,2.0000,0.0000,1.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,3.5000,3.0000,2.0000,2.0000,0.5000,-1.0000,-1.0000,-1.5000,2.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,1.0000,0.0000,3.0000,3.0000,2.0000,3.0000,3.0000,1.0000,0.0000,1.0000,2.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,4.5000,1.0000,1.0000,1.5000,0.5000,0.0000,0.0000,1.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,4.5000,1.0000,1.5000,-0.5000,1.0000,-0.5000,3.0000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,-0.5000,2.0000,3.0000,4.0000,2.0000,1.0000,3.0000,-1.0000,0.0000,0.000,2.5000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,-3.0000,1.0000,0.0000,-1.5000,1.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,1.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,2.0000,3.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,0.0000,0.0000,5.5000,3.0000,2.0000,1.5000,-1.5000,-1.0000,-1.0000,-0.5000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,5.0000,3.0000,2.0000,1.5000,-1.0000,-1.0000,-1.0000,-0.5000,2.0000,3.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.5000,3.0000,2.0000,1.5000,-1.5000,-1.0000,-1.0000,-0.5000,2.0000,3.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.5000,1.0000,1.0000,1.0000,3.5000,1.5000,1.0000,0.0000,0.0000,2.5000,1.0000,1.0000,1.0000,3.5000,1.5000,1.0000,0.0000,2.0000,0.0000,6.0000,4.5000,1.0000,1.0000,1.5000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,2.5000,1.0000,1.0000,4.0000,0.5000,0.0000,0.0000,1.0000,0.0000,4.5000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,2.0000,1.0000,-1.0000,-1.0000,-1.5000,0.0000,1.0000,2.0000,3.0000,0.0000,6.0000,1.5000,1.0000,0.5000,1.0000,1.0000,1.0000,1.5000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,0.0000,0.0000,0.0000 +Hartfordshire 1,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,1.0000,1.5000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,3.5000,3.0000,2.0000,2.0000,0.5000,-1.0000,-1.0000,-1.5000,1.0000,0.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,1.0000,2.0000,1.0000,3.0000,1.0000,1.0000,1.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,1.0000,1.0000,1.5000,3.5000,3.0000,2.0000,2.0000,0.0000,3.5000,3.0000,2.0000,2.0000,0.5000,-1.0000,-1.0000,-1.5000,2.0000,0.0000,0.0000,1.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,1.0000,0.0000,3.0000,3.0000,2.0000,3.0000,3.0000,1.0000,0.0000,1.0000,2.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,1.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,3.5000,1.0000,1.0000,2.5000,0.5000,0.0000,5.0000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,-3.0000,1.0000,0.0000,-1.5000,1.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.5000,5.0000,-1.5000,0.0000,-0.5000,2.0000,0.0000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,5.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,1.0000,6.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.5000,1.0000,1.0000,1.0000,3.5000,1.5000,1.0000,0.0000,0.0000,2.5000,1.0000,1.0000,1.0000,3.5000,1.5000,1.0000,0.0000,2.0000,0.0000,6.0000,3.5000,1.0000,1.0000,2.5000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.5000,3.0000,2.0000,2.0000,0.5000,-1.0000,-1.0000,-1.5000,0.0000,0.0000,3.5000,3.0000,2.0000,2.0000,0.5000,-1.0000,-1.0000,-1.5000,1.0000,3.5000,3.0000,2.0000,2.0000,0.5000,-1.0000,-1.0000,-1.5000,0.0000,0.0000,2.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.5000,1.0000,1.5000,1.0000,1.5000,0.0000,6.0000,1.5000,1.0000,0.5000,0.5000,1.5000,1.5000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,0.0000,1.0000,0.0000 +Hartfordshire 2,1.5000,1.0000,0.0000,0.0000,1.0000,3.0000,0.0000,1.0000,1.5000,2.0000,0.0000,0.0000,1.0000,1.5000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.5000,2.0000,2.0000,0.0000,3.5000,3.0000,2.0000,2.0000,0.5000,-1.0000,-1.0000,-1.5000,0.0000,0.0000,2.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,3.0000,1.0000,2.0000,0.0000,1.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.5000,3.5000,3.0000,2.0000,2.0000,0.0000,3.5000,3.0000,2.0000,2.0000,0.5000,-1.0000,-1.0000,-1.5000,2.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,0.0000,3.0000,3.0000,2.0000,3.0000,3.0000,1.0000,0.0000,1.0000,2.0000,0.0000,0.0000,4.0000,2.0000,1.0000,2.0000,2.0000,0.0000,0.0000,0.0000,4.5000,1.0000,1.0000,1.5000,0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,4.5000,1.0000,1.0000,1.5000,0.5000,0.0000,5.0000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,4.0000,2.0000,0.5000,3.0000,-1.0000,1.5000,0.000,4.0000,2.0000,0.5000,3.0000,-1.0000,1.5000,0.0000,5.5000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,4.0000,2.0000,0.5000,3.0000,-1.0000,1.5000,0.0000,7.0000,1.0000,2.0000,-3.0000,1.0000,0.0000,-1.5000,1.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,5.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,1.0000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.5000,1.0000,1.0000,1.0000,3.5000,1.5000,1.0000,0.0000,0.0000,2.5000,1.0000,1.0000,1.0000,3.5000,1.5000,1.0000,0.0000,2.0000,0.0000,6.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,2.5000,1.0000,1.0000,4.0000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.5000,3.0000,2.0000,2.0000,0.5000,-1.0000,-1.0000,-1.5000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.5000,3.0000,2.0000,2.0000,0.5000,-1.0000,-1.0000,-1.5000,0.0000,0.0000,2.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.5000,1.0000,1.5000,1.0000,1.5000,0.0000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,0.0000,1.0000,0.0000 +Hartfordshire 3,1.0000,1.5000,0.0000,0.0000,2.0000,2.0000,0.0000,1.0000,3.0000,2.0000,0.0000,0.0000,1.0000,3.0000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,2.5000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,2.0000,1.0000,1.0000,2.0000,2.0000,1.0000,1.0000,1.0000,4.0000,1.5000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,2.0000,1.0000,1.0000,1.0000,4.0000,1.5000,1.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,1.5000,1.0000,0.0000,0.0000,2.5000,3.0000,2.0000,2.5000,3.0000,1.0000,0.0000,0.0000,2.0000,0.0000,0.0000,4.0000,2.0000,1.0000,2.0000,2.0000,0.0000,0.0000,1.0000,2.0000,1.0000,1.0000,4.0000,0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,4.0000,2.0000,1.0000,3.0000,-1.0000,1.0000,1.000,4.0000,2.0000,1.0000,3.0000,-1.0000,1.0000,0.0000,4.0000,2.0000,0.5000,3.0000,-1.0000,0.0000,0.5000,2.0000,0.0000,4.0000,2.0000,0.5000,3.0000,-1.0000,1.5000,0.0000,4.0000,2.0000,1.0000,3.0000,-1.0000,0.0000,1.0000,1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,2.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,1.5000,1.0000,0.0000,2.5000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,1.5000,1.0000,0.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,1.5000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,1.5000,1.0000,0.0000,1.0000,4.0000,2.0000,1.0000,0.5000,3.0000,1.0000,1.0000,1.5000,1.0000,1.5000,2.5000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,2.0000,0.0000,6.0000,2.0000,1.0000,1.0000,4.0000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,2.5000,1.0000,1.0000,4.0000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,1.0000,-1.0000,-1.0000,-1.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,1.0000,1.0000,-1.0000,-1.0000,-0.5000,0.0000,0.0000,2.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.5000,1.0000,1.5000,1.0000,0.5000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,1.0000,0.0000 +Essex 1,2.0000,1.0000,0.0000,0.0000,1.0000,1.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.0000,1.0000,2.0000,0.0000,2.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.5000,3.5000,3.0000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,0.0000,3.0000,3.0000,2.0000,3.0000,3.0000,1.0000,0.0000,1.0000,2.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,3.0000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,-3.0000,1.0000,0.0000,-1.5000,1.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,2.0000,0.0000,5.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,5.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,2.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.5000,1.0000,1.0000,1.0000,3.5000,1.5000,1.0000,0.0000,0.0000,2.5000,1.0000,1.0000,1.0000,3.5000,1.5000,1.0000,0.0000,2.0000,0.0000,4.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,2.5000,1.0000,1.0000,4.0000,0.5000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,1.0000,1.0000,-1.0000,-1.0000,-0.5000,0.0000,0.0000,2.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,6.0000,1.5000,1.0000,0.5000,1.0000,1.5000,1.5000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,0.0000,0.0000,0.0000 +Essex 2,2.0000,1.0000,0.0000,0.0000,1.0000,6.0000,1.0000,1.0000,1.5000,2.0000,0.0000,0.0000,1.0000,1.5000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.5000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.0000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.5000,3.0000,2.0000,1.0000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,3.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,0.0000,3.0000,3.0000,2.0000,3.0000,3.0000,1.0000,1.0000,0.0000,2.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,2.5000,1.0000,1.0000,3.5000,0.5000,0.0000,3.0000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,6.0000,1.5000,0.5000,1.0000,-0.5000,1.5000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,1.0000,6.5000,1.5000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,-3.0000,1.0000,0.0000,-1.5000,1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,2.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,3.0000,2.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,2.5000,1.0000,1.0000,3.0000,0.0000,1.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,3.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,2.5000,1.0000,1.0000,3.0000,0.0000,1.0000,0.0000,0.0000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,1.5000,1.0000,0.0000,2.0000,0.0000,6.0000,2.5000,1.0000,1.0000,3.5000,0.5000,0.0000,1.0000,3.0000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.5000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,1.0000,-1.0000,-1.0000,-1.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,2.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,0.0000,1.0000,0.0000 +Essex 3,2.0000,1.0000,0.0000,0.0000,1.0000,3.5000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,1.0000,1.5000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.5000,2.0000,2.0000,0.0000,3.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,1.0000,1.0000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,1.0000,1.5000,3.5000,3.0000,2.0000,2.0000,0.0000,3.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,0.0000,3.0000,3.0000,2.0000,3.0000,2.5000,1.0000,0.0000,0.0000,2.0000,0.0000,1.0000,4.0000,2.0000,1.0000,2.0000,2.0000,0.0000,0.0000,0.0000,2.0000,1.0000,1.0000,4.0000,0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,1.5000,1.0000,3.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,6.0000,1.5000,0.5000,1.0000,-0.5000,1.5000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,1.0000,6.5000,1.5000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,6.0000,1.5000,0.5000,1.0000,-0.5000,1.5000,0.0000,5.5000,1.5000,1.5000,-1.5000,0.5000,0.0000,-0.5000,1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,0.0000,2.5000,3.0000,3.0000,1.0000,3.5000,-1.5000,-2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,2.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,3.5000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.5000,1.5000,1.0000,1.0000,4.5000,1.0000,1.0000,0.0000,1.0000,6.0000,1.5000,1.0000,0.5000,1.0000,1.0000,1.0000,1.5000,1.0000,1.5000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,2.5000,1.0000,1.0000,1.0000,3.5000,1.5000,1.0000,0.0000,2.0000,0.0000,6.0000,2.5000,1.0000,1.0000,3.5000,0.5000,0.0000,1.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.5000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.5000,3.0000,2.0000,2.0000,0.5000,-1.0000,-1.0000,-1.0000,0.0000,0.0000,3.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,2.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.5000,1.0000,1.0000,1.0000,1.5000,0.0000,6.0000,1.5000,1.0000,2.0000,1.0000,1.0000,0.0000,0.0000,3.0000,2.5000,1.0000,1.0000,3.0000,0.0000,1.0000,0.0000,0.0000,1.0000,0.0000 +Essex 4,2.0000,2.0000,0.0000,0.0000,1.0000,6.0000,0.0000,1.0000,1.5000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.5000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,3.0000,2.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,3.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,0.0000,3.0000,3.0000,2.0000,3.0000,3.0000,1.0000,0.0000,1.0000,2.0000,0.0000,1.0000,4.0000,2.0000,1.0000,2.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,2.5000,1.0000,1.0000,3.5000,0.5000,0.0000,3.0000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,5.5000,2.0000,1.0000,1.5000,-1.0000,1.0000,0.000,5.5000,2.0000,1.0000,1.5000,-1.0000,1.0000,1.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,1.0000,-3.0000,1.0000,0.0000,-0.5000,1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,1.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,2.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,3.0000,2.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,0.0000,1.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,1.0000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,2.0000,0.0000,6.0000,2.0000,1.0000,1.0000,4.0000,0.5000,0.0000,1.0000,3.0000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,2.0000,1.0000,1.0000,4.5000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,1.0000,-1.0000,-1.0000,-1.0000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.5000,1.0000,1.0000,1.0000,1.5000,0.0000,6.0000,1.5000,1.0000,0.5000,1.0000,1.0000,1.5000,0.0000,2.5000,2.5000,1.0000,1.0000,3.5000,0.0000,1.0000,0.0000,0.0000,1.0000,0.0000 +Essex 5,1.0000,1.0000,0.0000,0.0000,2.0000,2.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,1.0000,1.5000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.5000,2.0000,2.0000,0.0000,3.5000,3.0000,2.0000,2.0000,0.5000,-1.0000,-1.0000,-1.5000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.0000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,1.0000,1.5000,3.5000,3.0000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,0.0000,3.0000,3.0000,2.0000,3.0000,3.0000,1.0000,0.0000,0.0000,2.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,2.5000,1.0000,1.0000,3.5000,0.5000,0.0000,3.0000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,4.0000,2.0000,0.5000,3.0000,-1.0000,1.5000,0.000,4.0000,2.0000,0.5000,3.0000,-1.0000,1.5000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,-3.0000,1.0000,0.0000,-1.5000,1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,2.0000,0.0000,3.5000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,3.5000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,1.0000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,2.0000,0.0000,4.0000,2.0000,1.0000,1.0000,4.0000,0.5000,0.0000,1.0000,3.0000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,2.0000,1.0000,1.0000,4.5000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,1.0000,1.5000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,2.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.5000,1.0000,1.0000,1.0000,1.5000,0.0000,6.0000,1.5000,1.0000,0.5000,1.0000,1.5000,1.5000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,0.0000,0.0000,0.0000 +Essex 6,2.0000,1.0000,0.0000,0.0000,1.0000,3.0000,0.0000,1.0000,1.5000,2.0000,0.0000,0.0000,1.0000,1.5000,2.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,1.5000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,2.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,3.0000,3.0000,1.0000,0.0000,1.0000,2.0000,0.0000,1.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,3.0000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,5.5000,2.0000,1.0000,1.5000,-1.0000,0.0000,0.000,5.5000,2.0000,1.0000,1.5000,-1.0000,1.0000,1.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,5.5000,2.0000,1.0000,1.5000,-1.0000,1.0000,0.0000,6.0000,1.5000,1.5000,-2.0000,0.5000,0.0000,-0.5000,1.0000,0.0000,3.0000,2.5000,2.0000,1.0000,3.0000,-1.0000,-1.0000,0.0000,0.0000,3.0000,2.5000,2.0000,1.0000,3.0000,-1.0000,-1.0000,0.0000,3.0000,2.5000,2.0000,1.0000,3.0000,-1.0000,-1.0000,0.0000,0.0000,3.0000,2.5000,2.0000,1.0000,3.0000,-1.0000,-1.0000,0.0000,2.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,3.0000,2.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,2.5000,1.0000,1.0000,3.0000,0.0000,1.0000,0.0000,0.0000,1.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,1.0000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,2.5000,1.0000,1.0000,1.0000,3.5000,1.5000,1.0000,0.0000,2.0000,0.0000,4.0000,2.0000,1.0000,1.0000,4.0000,0.5000,0.0000,1.0000,3.0000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,5.5000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,3.0000,0.0000,6.0000,1.5000,1.0000,0.5000,1.0000,1.0000,1.0000,1.5000,0.0000,6.0000,1.5000,1.0000,0.5000,1.0000,1.0000,1.5000,0.0000,1.5000,1.5000,1.0000,1.0000,4.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000 +Essex 7,2.5000,1.0000,0.0000,1.0000,0.0000,6.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,1.0000,2.5000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,3.0000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,2.5000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,1.0000,4.0000,3.0000,3.0000,2.0000,2.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,1.5000,1.5000,3.0000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,3.0000,3.0000,1.0000,0.0000,1.0000,2.0000,0.0000,1.0000,3.0000,3.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,5.5000,2.0000,1.0000,1.5000,-1.0000,1.0000,0.000,5.5000,2.0000,1.0000,1.5000,-1.0000,1.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,5.5000,2.0000,1.0000,1.5000,-1.0000,1.0000,0.0000,6.0000,1.5000,1.0000,0.0000,1.0000,1.0000,0.0000,0.0000,0.0000,3.0000,2.5000,2.0000,1.0000,3.0000,-1.0000,-1.0000,0.0000,0.0000,3.0000,2.5000,2.0000,1.0000,3.0000,-1.0000,-1.0000,0.0000,3.0000,2.5000,2.0000,1.0000,3.0000,-1.0000,-1.0000,0.0000,0.0000,1.0000,2.5000,1.0000,1.0000,5.0000,-1.0000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.0000,2.0000,4.0000,1.0000,1.0000,0.0000,-2.0000,1.0000,1.5000,7.0000,2.5000,2.0000,1.0000,0.0000,0.5000,0.0000,1.0000,3.5000,3.0000,2.0000,1.0000,2.5000,-0.5000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,2.0000,0.0000,4.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,1.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,2.5000,1.0000,1.0000,4.0000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-0.5000,1.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.5000,1.0000,1.0000,1.0000,1.5000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-0.5000,1.0000,0.0000,0.0000,1.0000,0.0000 +Essex 8,2.0000,1.0000,0.0000,0.0000,1.0000,3.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,1.0000,1.5000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.5000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,0.0000,3.0000,2.5000,2.0000,2.5000,2.5000,1.0000,0.0000,0.0000,2.0000,0.0000,1.0000,4.0000,2.0000,1.0000,2.0000,2.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,2.0000,2.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,5.5000,2.0000,1.0000,1.5000,-1.0000,1.0000,0.000,5.5000,2.0000,1.0000,1.5000,-1.0000,1.0000,1.0000,6.5000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,5.5000,2.0000,1.0000,1.5000,-1.0000,1.0000,0.0000,6.0000,2.0000,1.0000,1.0000,-1.0000,0.0000,1.0000,1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,0.0000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,2.5000,2.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,2.5000,1.0000,1.0000,3.0000,0.0000,1.0000,0.0000,1.0000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,2.0000,0.0000,6.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,1.0000,3.5000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,2.0000,1.0000,1.0000,4.5000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,1.0000,-1.0000,-1.0000,-1.0000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.5000,1.0000,1.0000,1.0000,1.5000,0.0000,5.5000,1.5000,1.0000,1.0000,1.5000,1.0000,0.0000,0.0000,3.0000,2.5000,1.0000,1.0000,3.0000,0.0000,1.0000,0.0000,0.0000,1.0000,0.0000 +Essex 9,2.0000,1.0000,0.0000,0.0000,1.0000,3.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,1.0000,1.5000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.5000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.0000,1.0000,2.0000,0.0000,2.5000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,0.0000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,3.0000,3.0000,1.0000,0.0000,0.0000,2.0000,0.0000,1.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,5.5000,2.0000,1.0000,1.5000,-1.0000,1.0000,0.000,5.5000,2.0000,1.0000,1.5000,-1.0000,1.0000,1.0000,5.5000,1.5000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,5.5000,2.0000,1.0000,1.5000,-1.0000,1.0000,0.0000,6.0000,2.0000,1.0000,1.0000,-1.0000,0.0000,0.0000,1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,2.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.5000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,1.0000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,2.0000,0.0000,6.0000,2.0000,1.0000,1.0000,4.0000,0.5000,0.0000,1.0000,3.0000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,5.5000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,1.0000,-1.0000,-1.0000,-1.0000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.5000,1.0000,1.0000,1.0000,1.5000,0.0000,6.0000,1.5000,1.0000,0.5000,1.0000,1.0000,1.5000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,0.0000,0.0000,0.0000 +Essex 10,2.0000,1.0000,0.0000,0.0000,1.0000,3.0000,0.0000,1.0000,1.5000,2.0000,0.0000,0.0000,1.0000,2.5000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.5000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,0.0000,3.0000,2.5000,1.0000,1.0000,3.0000,0.0000,1.0000,0.0000,0.0000,3.0000,3.0000,2.0000,3.0000,3.0000,1.0000,0.0000,0.0000,2.0000,0.0000,1.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,0.5000,1.0000,1.0000,5.5000,0.5000,0.0000,3.5000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,5.5000,2.0000,1.0000,1.5000,-1.0000,0.0000,0.000,5.5000,2.0000,1.0000,1.5000,-1.0000,1.0000,1.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,5.5000,2.0000,1.0000,1.5000,-1.0000,1.0000,0.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,2.0000,0.0000,3.0000,2.5000,1.0000,1.0000,3.0000,0.0000,1.0000,0.0000,3.0000,2.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,0.0000,1.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,1.0000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,1.5000,1.0000,0.0000,2.0000,0.0000,6.0000,2.0000,1.0000,1.0000,4.0000,0.5000,0.0000,1.0000,3.0000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,1.0000,1.0000,5.5000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.5000,1.0000,1.0000,1.0000,1.5000,0.0000,6.0000,1.5000,1.0000,0.5000,1.0000,1.0000,1.5000,0.0000,1.0000,1.5000,1.0000,1.0000,5.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000 +Essex 11,2.0000,1.0000,1.0000,1.0000,1.0000,3.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,1.0000,3.0000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,3.0000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,3.0000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,3.0000,2.5000,2.0000,1.0000,3.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,3.0000,3.0000,1.0000,0.0000,1.0000,2.0000,0.0000,0.0000,4.0000,2.0000,1.0000,2.0000,2.0000,0.0000,0.0000,0.0000,2.5000,1.5000,1.0000,3.5000,0.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,2.5000,1.0000,1.0000,3.5000,0.5000,0.0000,3.5000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-0.5000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.5000,1.0000,1.5000,-0.5000,1.5000,1.0000,-0.5000,1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,1.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,1.5000,3.0000,1.0000,1.0000,4.5000,-1.5000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,2.5000,2.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,0.0000,1.0000,3.0000,2.5000,1.0000,1.0000,3.0000,0.0000,1.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.5000,3.0000,1.0000,1.0000,2.5000,-0.5000,1.0000,0.0000,1.0000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,2.0000,1.0000,1.0000,1.0000,4.0000,1.5000,1.0000,0.0000,0.0000,2.5000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,1.5000,1.0000,3.5000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,2.5000,1.0000,1.0000,4.0000,0.5000,0.0000,0.0000,1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,6.0000,1.5000,1.0000,0.5000,1.0000,1.0000,1.5000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,0.0000,0.0000,0.0000 +Essex 12,3.0000,1.0000,0.0000,1.0000,0.0000,3.0000,1.0000,1.0000,3.0000,2.0000,0.0000,0.0000,1.0000,3.0000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,3.0000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,3.0000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,1.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,1.5000,2.5000,3.0000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,1.0000,-1.0000,-1.0000,-1.0000,2.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,3.0000,3.0000,1.0000,0.0000,0.0000,2.0000,0.0000,0.0000,4.0000,2.0000,1.0000,2.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,5.5000,2.0000,1.0000,1.5000,-1.0000,1.0000,0.000,5.5000,2.0000,1.0000,1.5000,-1.0000,1.0000,1.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,5.5000,2.0000,1.0000,1.5000,-1.0000,1.0000,0.0000,6.0000,2.0000,1.0000,1.0000,-1.0000,0.0000,1.0000,0.0000,0.0000,3.0000,2.5000,2.0000,1.0000,3.0000,-1.0000,-1.0000,0.0000,0.0000,3.0000,2.5000,2.0000,1.0000,3.0000,-1.0000,-1.0000,0.0000,2.0000,1.5000,1.0000,1.0000,4.0000,0.0000,0.0000,0.0000,0.0000,2.0000,1.5000,1.0000,1.0000,4.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,1.0000,0.5000,0.0000,1.0000,1.0000,1.5000,6.0000,2.5000,2.0000,1.0000,1.0000,0.5000,0.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,2.0000,0.0000,6.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,1.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,2.5000,1.0000,1.0000,4.0000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,2.5000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,1.0000,-1.0000,-1.0000,-1.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,0.0000,0.0000,3.0000,2.5000,2.0000,1.0000,3.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000 +Essex 13,2.0000,1.0000,0.0000,0.0000,1.0000,3.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,1.0000,1.5000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.5000,2.0000,2.0000,0.0000,3.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,1.0000,2.0000,1.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,0.0000,3.0000,3.0000,2.0000,3.0000,3.0000,1.0000,0.0000,1.0000,2.0000,0.0000,1.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,2.5000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,3.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,5.5000,2.0000,1.0000,1.5000,-1.0000,1.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,1.0000,5.5000,1.5000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.0000,1.0000,1.0000,-1.0000,0.0000,0.0000,1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,2.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,1.0000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,2.5000,1.0000,1.0000,1.0000,3.5000,1.5000,1.0000,0.0000,2.0000,0.0000,6.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,1.0000,3.0000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.5000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,1.0000,1.0000,-1.0000,-1.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,2.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,0.0000,1.0000,0.0000 +Essex 14,2.0000,1.0000,0.0000,0.0000,1.0000,2.0000,0.0000,1.0000,1.5000,2.0000,0.0000,0.0000,1.0000,2.5000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,1.5000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.5000,3.0000,2.0000,1.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,1.0000,0.0000,3.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,0.0000,3.0000,3.0000,2.0000,3.0000,2.5000,1.0000,0.0000,1.0000,2.0000,0.0000,1.0000,4.0000,2.0000,1.0000,2.0000,2.0000,0.0000,0.0000,0.0000,1.5000,1.0000,1.0000,4.5000,0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.5000,1.0000,1.0000,4.5000,0.5000,0.0000,4.5000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,1.0000,5.5000,1.5000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,5.5000,2.0000,1.0000,1.5000,-1.0000,1.0000,0.0000,7.0000,1.0000,2.0000,-3.0000,1.0000,0.0000,-1.0000,1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,0.0000,2.5000,3.0000,2.0000,1.0000,3.5000,-1.5000,-1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,2.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,1.0000,6.0000,1.5000,1.0000,0.5000,1.0000,1.0000,1.0000,1.5000,1.0000,1.5000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,1.0000,0.5000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,2.0000,0.0000,6.0000,2.0000,1.0000,1.0000,4.0000,0.5000,0.0000,1.0000,3.5000,1.0000,1.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.5000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,1.0000,-1.0000,-1.0000,-1.0000,0.0000,0.0000,3.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.5000,1.0000,1.0000,1.0000,1.5000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,0.0000,1.0000,0.0000 +Essex 15,2.5000,1.0000,0.0000,1.0000,0.0000,3.0000,0.0000,1.0000,3.0000,2.0000,0.0000,0.0000,1.0000,3.0000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,3.0000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,3.0000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,3.0000,3.0000,1.0000,0.0000,0.0000,2.0000,0.0000,1.0000,3.5000,2.0000,1.0000,2.0000,2.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,2.0000,1.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,3.5000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.5000,2.0000,1.0000,1.5000,-1.0000,1.0000,0.000,5.5000,2.0000,1.0000,1.5000,-1.0000,1.0000,1.0000,5.5000,1.5000,1.0000,1.5000,-0.5000,0.0000,0.0000,2.0000,0.0000,5.5000,2.0000,1.0000,1.5000,-1.0000,1.0000,0.0000,6.0000,2.0000,1.0000,1.0000,-1.0000,0.0000,1.0000,0.0000,0.0000,3.0000,2.5000,2.0000,1.0000,3.0000,-1.0000,-1.0000,0.0000,1.0000,3.0000,2.5000,2.0000,1.0000,3.0000,-1.0000,-1.0000,0.0000,3.0000,2.5000,2.0000,1.0000,3.0000,-1.0000,-1.0000,0.0000,0.0000,1.0000,2.5000,1.0000,1.0000,5.0000,-1.0000,0.0000,0.0000,2.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-0.5000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,1.0000,0.5000,0.0000,1.0000,1.0000,1.5000,6.0000,2.5000,2.0000,1.0000,1.0000,0.5000,0.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.5000,0.0000,0.0000,0.0000,1.0000,1.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,2.0000,0.0000,6.0000,2.5000,1.0000,1.0000,3.5000,0.5000,0.0000,1.0000,3.5000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,2.5000,1.0000,1.0000,4.0000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,2.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-0.5000,1.0000,0.0000,0.0000,1.0000,0.0000 +Middlesex 1,2.0000,1.0000,0.0000,0.0000,1.0000,2.5000,0.0000,1.0000,3.0000,2.0000,0.0000,0.0000,1.0000,3.0000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,3.0000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,3.0000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,3.0000,3.0000,1.0000,0.0000,0.0000,2.0000,0.0000,0.0000,4.0000,2.0000,1.0000,2.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,1.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,2.5000,1.0000,1.0000,3.5000,0.5000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,1.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,0.0000,1.5000,3.0000,1.0000,1.0000,4.5000,-1.5000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,2.5000,1.0000,1.0000,3.0000,0.0000,1.0000,0.0000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,0.0000,1.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,2.5000,1.0000,1.0000,1.0000,3.5000,1.5000,1.0000,0.0000,2.0000,0.0000,6.0000,2.5000,1.5000,1.0000,3.5000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,2.5000,1.0000,1.0000,4.0000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,1.0000,1.0000,-1.0000,-1.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.5000,1.0000,-1.0000,-1.0000,-0.5000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,1.0000,1.0000,0.0000,0.0000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,2.5000,1.0000,1.0000,3.0000,0.0000,1.0000,0.0000,0.0000,0.0000,0.0000 +Middlesex 2,2.0000,1.0000,0.0000,1.0000,0.0000,2.5000,0.0000,1.0000,3.0000,2.0000,0.0000,0.0000,1.0000,3.0000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,3.0000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,3.0000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,1.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,3.0000,3.0000,1.0000,0.0000,0.0000,2.0000,0.0000,0.0000,4.0000,2.0000,1.0000,2.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,2.5000,1.5000,1.0000,3.5000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,1.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,1.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,1.0000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,1.5000,1.0000,0.0000,2.0000,0.0000,6.0000,2.5000,1.5000,1.0000,3.5000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,2.5000,1.5000,1.0000,4.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,1.0000,1.0000,-1.0000,-1.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,2.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,0.0000,0.0000,0.0000 +Somerset 1,2.0000,1.0000,0.0000,0.0000,1.0000,2.0000,0.0000,2.0000,1.0000,2.0000,0.0000,0.0000,2.0000,1.0000,1.5000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,1.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,2.0000,1.0000,1.0000,1.5000,0.0000,3.0000,1.0000,1.0000,2.0000,5.0000,3.0000,2.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,2.0000,3.0000,3.0000,3.0000,2.0000,1.5000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,3.5000,3.0000,2.0000,3.5000,3.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,5.0000,1.0000,1.0000,1.0000,0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,5.0000,1.0000,1.0000,1.0000,0.5000,0.0000,3.0000,1.0000,1.0000,2.0000,1.0000,1.0000,0.0000,-1.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,2.0000,3.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,3.5000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,1.0000,1.0000,1.0000,-0.5000,1.0000,0.0000,0.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,6.0000,2.5000,2.0000,1.0000,1.0000,0.5000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,-1.0000,-1.0000,0.0000,2.0000,3.0000,1.0000,6.5000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,2.0000,3.0000,6.0000,5.0000,1.0000,1.0000,1.0000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,5.0000,1.0000,1.0000,1.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,1.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,0.0000,5.0000,3.0000,2.0000,2.0000,1.0000,-0.5000,0.0000,-1.0000,0.0000,1.0000,0.0000 +Somerset 2,2.0000,1.0000,0.0000,0.0000,1.0000,2.5000,0.0000,2.0000,1.0000,2.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,1.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,2.0000,1.0000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,2.0000,5.0000,3.0000,2.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.5000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,1.0000,3.5000,3.0000,2.0000,3.5000,3.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,5.0000,1.0000,1.0000,1.0000,0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,5.0000,1.0000,2.0000,1.0000,0.5000,-1.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,1.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,2.0000,3.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,3.5000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.5000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,1.0000,0.5000,0.0000,0.0000,2.0000,3.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,2.0000,3.0000,6.0000,5.0000,1.0000,1.0000,1.0000,0.5000,0.0000,1.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,1.0000,5.5000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,1.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,1.0000,5.0000,3.0000,2.0000,2.0000,1.0000,-0.5000,0.0000,-1.0000,0.0000,1.0000,0.0000 +Somerset 3,2.0000,1.0000,0.0000,0.0000,1.0000,3.5000,0.0000,2.0000,1.0000,2.0000,0.0000,0.0000,2.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,1.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,3.0000,2.0000,1.0000,1.0000,1.0000,2.0000,1.0000,1.0000,1.5000,0.0000,2.5000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,1.0000,3.5000,3.0000,2.0000,3.5000,3.0000,1.0000,1.0000,0.0000,2.0000,3.0000,1.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,1.0000,0.0000,7.0000,1.0000,1.0000,2.0000,0.0000,0.0000,1.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,1.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,1.0000,0.0000,1.0000,1.5000,1.0000,1.0000,5.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,1.0000,1.0000,1.5000,1.0000,1.0000,5.0000,0.0000,0.0000,0.0000,2.0000,3.0000,5.0000,3.0000,2.0000,2.0000,1.0000,-0.5000,0.0000,-1.0000,5.5000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,1.0000,1.0000,1.0000,-0.5000,1.0000,0.0000,0.0000,1.0000,5.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,-1.0000,-1.0000,-1.0000,-1.0000,2.0000,3.0000,4.5000,3.0000,2.0000,1.0000,1.5000,-0.5000,0.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,1.0000,0.5000,0.0000,1.0000,2.0000,3.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,-3.0000,-1.0000,-1.0000,-1.0000,2.0000,3.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.5000,1.0000,1.0000,5.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.5000,1.0000,1.0000,5.0000,1.0000,1.0000,0.0000,2.0000,3.0000,6.0000,4.5000,1.0000,1.0000,1.5000,0.5000,0.0000,1.0000,3.5000,1.0000,1.0000,1.0000,2.5000,0.5000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,1.0000,5.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,2.0000,3.0000,4.5000,1.0000,1.0000,1.0000,1.5000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,6.0000,2.5000,2.0000,1.0000,1.0000,0.5000,0.0000,1.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,4.5000,3.0000,2.0000,1.0000,1.5000,-0.5000,0.0000,0.0000,0.0000,1.0000,0.0000 +Somerset 4,2.0000,1.0000,0.0000,0.0000,1.0000,2.0000,0.0000,2.0000,1.0000,2.0000,1.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,1.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,3.0000,2.0000,1.0000,1.0000,1.0000,2.0000,1.0000,1.0000,2.0000,0.0000,1.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,3.0000,3.0000,2.0000,2.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,1.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,1.0000,3.5000,3.0000,2.0000,3.5000,3.0000,1.0000,0.0000,0.0000,2.0000,3.0000,1.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,1.0000,0.0000,7.0000,1.0000,1.0000,2.0000,0.0000,0.0000,1.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,5.0000,1.0000,2.0000,1.0000,0.5000,-1.0000,0.0000,8.0000,1.0000,1.0000,-4.0000,1.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,1.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,2.0000,3.0000,8.0000,3.0000,2.0000,1.0000,-4.0000,-1.0000,-1.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,-3.0000,-1.0000,-1.0000,-1.5000,0.0000,0.0000,5.5000,3.0000,2.0000,1.0000,0.5000,-0.5000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,1.0000,0.5000,0.0000,0.0000,2.0000,3.0000,5.5000,3.0000,2.0000,1.0000,0.5000,-0.5000,0.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,4.0000,2.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.0000,-3.0000,-1.0000,-1.0000,0.0000,2.0000,3.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,2.0000,3.0000,6.0000,4.5000,1.0000,1.0000,1.5000,0.5000,0.0000,1.0000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,1.0000,5.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,2.0000,3.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,1.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,1.0000,-0.5000,0.0000,-1.0000,0.0000,1.0000,0.0000 +Somerset 5,1.0000,1.0000,0.0000,0.0000,1.0000,2.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,1.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,2.0000,1.0000,1.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,1.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,0.0000,4.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.5000,3.0000,2.0000,3.5000,3.0000,1.0000,1.0000,0.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,1.0000,0.0000,7.0000,1.0000,1.0000,2.0000,0.0000,0.0000,1.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,4.0000,2.0000,1.0000,2.0000,-0.5000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,8.0000,1.0000,1.0000,-4.0000,1.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,-3.0000,1.0000,0.0000,-1.5000,1.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,0.5000,0.0000,0.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,0.5000,0.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,0.5000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,2.0000,3.0000,5.0000,3.0000,2.0000,2.0000,-1.0000,-1.0000,-1.0000,-1.5000,3.5000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.5000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,-1.0000,-1.0000,-1.0000,-1.0000,2.0000,3.0000,5.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,6.0000,1.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,6.0000,1.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.0000,-3.0000,-1.0000,-1.0000,0.0000,2.0000,3.0000,0.0000,6.0000,1.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,1.0000,1.0000,1.0000,3.0000,1.5000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,2.0000,3.0000,6.0000,5.0000,1.0000,1.0000,1.0000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,2.0000,1.0000,1.0000,0.0000,-1.0000,2.0000,3.0000,1.0000,1.0000,1.0000,5.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,3.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-2.0000,0.5000,1.0000,1.0000,0.0000,6.0000,1.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000 +Somerset 6,2.0000,1.0000,0.0000,0.0000,1.0000,3.0000,0.0000,1.5000,1.0000,2.0000,1.0000,0.0000,2.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,1.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,2.0000,1.0000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,1.0000,3.5000,3.0000,2.0000,3.5000,3.0000,1.0000,1.0000,0.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,4.5000,1.0000,1.0000,1.5000,0.5000,0.0000,1.0000,0.0000,7.0000,1.0000,1.0000,2.0000,0.0000,0.0000,1.0000,8.0000,1.0000,1.0000,-4.0000,1.0000,0.0000,3.5000,1.0000,1.0000,1.0000,0.5000,1.0000,0.0000,0.0000,2.0000,3.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,8.0000,1.0000,1.0000,-4.0000,1.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,1.0000,1.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,1.0000,5.0000,0.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,2.0000,3.0000,5.0000,3.0000,2.0000,2.0000,1.0000,-0.5000,0.0000,-1.0000,7.0000,3.0000,2.0000,2.0000,-3.0000,-1.0000,-1.0000,-1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,6.5000,3.0000,2.0000,2.0000,-2.5000,-1.0000,-1.0000,-1.0000,7.0000,3.0000,2.0000,1.0000,-3.0000,-1.0000,-1.0000,0.0000,2.0000,3.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.0000,-3.0000,-1.0000,-1.0000,0.0000,2.0000,3.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,4.0000,2.0000,1.0000,1.0000,2.0000,0.5000,1.0000,0.0000,0.0000,1.0000,1.5000,1.0000,1.0000,5.0000,1.0000,1.0000,0.0000,2.0000,3.0000,6.0000,2.0000,1.0000,1.0000,4.0000,0.5000,0.0000,0.0000,2.5000,1.0000,1.0000,1.0000,1.5000,1.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,1.0000,5.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,3.0000,1.0000,6.0000,2.5000,2.0000,1.0000,1.0000,0.5000,0.0000,1.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.5000,3.0000,2.0000,1.0000,0.5000,-0.5000,0.0000,0.0000,0.0000,1.0000,0.0000 +Somerset 7,2.0000,1.0000,0.0000,0.0000,1.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,1.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.0000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,1.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,1.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.5000,3.0000,2.0000,3.5000,3.0000,1.0000,1.0000,0.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,1.0000,0.0000,7.0000,1.0000,1.0000,2.0000,0.0000,0.0000,1.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,3.5000,1.0000,1.0000,1.0000,0.5000,1.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,8.0000,1.0000,1.0000,-4.0000,1.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,-3.0000,1.0000,0.0000,-1.5000,1.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,0.5000,0.0000,0.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,0.5000,0.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,0.5000,0.0000,0.0000,1.0000,2.0000,1.0000,1.0000,1.0000,4.0000,0.5000,0.0000,0.0000,2.0000,3.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.5000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.5000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,5.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.5000,3.0000,2.0000,2.0000,-1.5000,-1.0000,-1.0000,-1.0000,2.0000,3.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,2.0000,1.0000,1.0000,1.0000,4.0000,1.5000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,2.0000,3.0000,6.0000,5.0000,1.0000,1.0000,1.0000,0.5000,0.0000,0.0000,5.0000,1.0000,1.0000,1.0000,1.0000,0.5000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,1.0000,5.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,3.0000,1.0000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000 +Somerset 8,1.0000,1.0000,0.0000,0.0000,1.0000,2.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,1.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,3.0000,2.0000,1.0000,4.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,1.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.5000,3.0000,2.0000,3.5000,3.0000,1.0000,1.0000,0.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,1.0000,0.0000,7.0000,1.0000,1.0000,2.0000,0.0000,0.0000,1.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,8.0000,1.0000,1.0000,-4.0000,1.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,-3.0000,1.0000,0.0000,-1.5000,1.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,0.5000,0.0000,0.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,0.5000,0.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,0.5000,0.0000,0.0000,1.0000,2.0000,1.0000,1.0000,1.0000,4.0000,0.5000,0.0000,0.0000,2.0000,3.0000,5.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,-1.0000,-1.0000,-1.0000,-1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,5.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,4.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,5.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,6.0000,1.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,6.0000,1.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,-1.0000,-1.0000,-1.0000,-1.0000,2.0000,3.0000,0.0000,6.0000,1.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,1.0000,1.0000,1.0000,3.0000,1.5000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,2.0000,3.0000,6.0000,5.0000,1.0000,1.0000,1.0000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,1.0000,5.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,3.0000,0.0000,6.0000,1.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Somerset 9,1.0000,1.0000,0.0000,0.0000,1.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,1.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,1.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.5000,3.0000,2.0000,3.5000,3.0000,1.0000,1.0000,0.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,1.0000,0.0000,7.0000,1.0000,1.0000,2.0000,0.0000,0.0000,1.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,3.0000,1.0000,1.0000,2.0000,1.0000,1.0000,0.0000,-1.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,8.0000,1.0000,1.0000,-4.0000,1.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,-3.0000,1.0000,0.0000,-1.5000,1.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,0.5000,0.0000,0.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,0.5000,0.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,0.5000,0.0000,0.0000,1.0000,2.0000,1.0000,1.0000,1.0000,4.0000,0.5000,0.0000,0.0000,2.0000,3.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,-1.0000,-1.0000,-1.0000,-1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,5.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,6.0000,1.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,6.0000,1.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,-3.0000,-1.0000,-1.0000,-1.0000,2.0000,3.0000,0.0000,6.0000,1.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,1.0000,1.0000,1.0000,3.0000,1.5000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,2.0000,3.0000,6.0000,5.0000,1.0000,1.0000,1.0000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,2.0000,1.0000,1.0000,0.0000,-1.0000,2.0000,3.0000,1.0000,1.0000,1.0000,5.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,2.0000,3.0000,3.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,3.0000,0.0000,6.0000,1.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,2.0000,2.0000,0.0000,0.0000,0.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000 +Somerset 10,2.0000,1.0000,0.0000,0.0000,1.0000,2.5000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,1.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,1.0000,3.5000,3.0000,2.0000,3.5000,3.0000,1.0000,0.0000,0.0000,2.0000,3.0000,1.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,1.0000,0.0000,7.0000,1.0000,1.0000,2.0000,0.0000,0.0000,1.0000,8.0000,1.0000,1.0000,-5.0000,0.0000,0.0000,3.5000,1.0000,1.0000,1.5000,0.5000,1.0000,0.0000,-0.5000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,1.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,-3.0000,1.0000,0.0000,-1.5000,1.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,2.0000,3.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,-1.0000,-1.0000,-1.0000,-1.5000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.5000,3.0000,2.0000,1.5000,-1.5000,-1.0000,-1.0000,-0.5000,2.0000,3.0000,5.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,-3.0000,-1.0000,-1.0000,-1.0000,2.0000,3.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,2.0000,3.0000,6.0000,5.0000,1.0000,1.0000,1.0000,0.5000,0.0000,1.0000,5.0000,1.0000,1.0000,1.0000,-1.0000,0.5000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,1.0000,5.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.5000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000 +Somerset 11,1.0000,1.0000,0.0000,0.0000,1.0000,2.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,1.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.0000,1.0000,1.5000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,1.0000,3.5000,3.0000,2.0000,3.5000,3.0000,1.0000,1.0000,0.0000,2.0000,3.0000,1.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,1.0000,2.0000,0.0000,0.0000,1.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,3.0000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,-0.5000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,1.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,-3.0000,1.0000,0.0000,-1.5000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,1.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,2.0000,3.0000,5.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.5000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,4.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.5000,1.0000,1.0000,1.0000,4.5000,1.5000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,2.0000,3.0000,6.0000,4.5000,1.0000,1.0000,1.5000,0.5000,0.0000,1.0000,3.5000,1.0000,1.0000,2.0000,2.5000,0.5000,0.0000,-1.5000,2.0000,3.0000,1.0000,1.0000,1.0000,5.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,1.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,0.0000,5.0000,3.0000,2.0000,1.5000,1.0000,-0.5000,0.0000,-0.5000,0.0000,1.0000,0.0000 +Somerset 12,1.0000,1.0000,0.0000,0.0000,1.0000,2.0000,0.0000,1.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,1.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.0000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.5000,3.0000,2.0000,3.5000,3.0000,1.0000,1.0000,0.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,1.0000,0.0000,7.0000,1.0000,1.0000,2.0000,0.0000,0.0000,1.0000,5.5000,1.0000,2.0000,-1.5000,1.0000,-1.0000,3.0000,1.0000,1.0000,2.0000,1.0000,1.0000,0.0000,-1.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,8.0000,1.0000,1.0000,-4.0000,1.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,-3.0000,1.0000,0.0000,-1.5000,1.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,2.0000,3.0000,4.5000,3.0000,2.0000,1.0000,1.5000,-0.5000,0.0000,0.0000,3.5000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.5000,3.0000,2.0000,2.0000,-1.5000,-1.0000,-1.0000,-1.0000,2.0000,3.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.5000,3.0000,2.0000,2.0000,-1.5000,-1.0000,-1.0000,-1.0000,2.0000,3.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,2.0000,3.0000,6.0000,5.0000,1.0000,1.0000,1.0000,0.5000,0.0000,1.0000,3.5000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,4.5000,1.0000,1.0000,2.0000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,1.0000,0.0000,7.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000 +Somerset 13,2.0000,1.0000,0.0000,0.0000,1.0000,2.0000,1.0000,2.0000,1.0000,1.0000,1.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,1.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,2.0000,1.0000,1.0000,1.5000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.5000,3.0000,2.0000,3.5000,3.0000,1.0000,1.0000,0.0000,2.0000,3.0000,1.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,1.0000,0.0000,7.0000,1.0000,1.0000,2.0000,0.0000,0.0000,1.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,3.5000,1.0000,1.0000,1.0000,0.5000,1.0000,0.0000,0.0000,2.0000,3.0000,4.0000,2.0000,1.0000,2.0000,-0.5000,0.0000,0.000,4.0000,2.0000,1.0000,2.0000,-0.5000,0.0000,1.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,-3.0000,1.0000,0.0000,-1.5000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,1.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,2.0000,3.0000,5.0000,3.0000,2.0000,2.0000,-1.0000,-1.0000,-1.0000,-1.0000,3.5000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,-1.0000,-1.0000,-1.0000,-1.0000,1.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.5000,3.0000,2.0000,2.0000,0.5000,-0.5000,0.0000,-1.0000,2.0000,3.0000,5.5000,3.0000,2.0000,1.0000,0.5000,-0.5000,0.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.5000,3.0000,2.0000,2.0000,-1.5000,-1.0000,-1.0000,-1.0000,2.0000,3.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,2.0000,1.0000,1.0000,1.0000,4.0000,1.5000,1.0000,0.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,1.5000,1.0000,0.0000,2.0000,3.0000,6.0000,4.5000,1.0000,1.0000,1.5000,0.5000,0.0000,1.0000,5.0000,1.0000,1.0000,1.0000,-1.0000,0.5000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,1.0000,5.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,2.0000,3.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,1.0000,1.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Wiltshire 1,1.0000,1.0000,0.0000,0.0000,1.0000,2.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,1.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.0000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,1.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.5000,3.0000,2.0000,3.5000,3.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,6.0000,1.5000,0.5000,-3.0000,-0.5000,0.5000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,8.0000,1.0000,1.0000,-4.0000,1.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,-3.0000,1.0000,0.0000,-1.5000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,2.0000,3.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,5.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,2.0000,3.0000,6.0000,2.5000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,2.0000,1.0000,1.0000,0.0000,-1.0000,2.0000,3.0000,1.0000,1.0000,1.0000,5.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,1.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000 +Wiltshire 2,1.0000,1.0000,0.0000,0.0000,1.0000,2.0000,0.0000,2.0000,1.0000,2.0000,0.0000,0.0000,2.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,1.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,1.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,1.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.5000,3.0000,2.0000,3.5000,3.0000,1.0000,1.0000,0.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,6.0000,1.5000,1.0000,-2.5000,1.5000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,8.0000,1.0000,1.0000,-4.0000,1.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,-3.0000,1.0000,0.0000,-1.5000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,1.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,2.0000,3.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,5.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,-1.0000,-1.0000,-1.0000,-1.0000,2.0000,3.0000,0.0000,6.5000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,0.5000,1.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,2.0000,3.0000,6.0000,2.5000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,1.0000,5.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,0.0000 +Wiltshire 3,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,0.0000,1.0000,1.5000,2.0000,0.0000,1.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,1.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.0000,1.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.5000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,3.5000,3.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,8.0000,1.0000,1.0000,-4.0000,1.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,-1.0000,1.5000,1.0000,-1.5000,1.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,1.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,2.0000,3.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,-1.0000,-1.0000,-1.0000,0.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.0000,-3.0000,-1.0000,-1.0000,0.0000,2.0000,3.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,0.5000,1.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,0.5000,1.0000,0.0000,2.0000,3.0000,6.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,5.0000,1.0000,2.0000,-5.0000,-1.0000,-1.0000,-2.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,2.0000,3.0000,2.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,1.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Wiltshire 4,1.0000,1.0000,0.0000,0.0000,1.0000,2.0000,0.0000,2.0000,1.0000,2.0000,0.0000,1.0000,2.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,1.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,2.0000,1.0000,1.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,3.0000,2.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,1.0000,3.5000,3.0000,2.0000,3.5000,3.0000,1.0000,0.0000,1.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,1.0000,2.0000,0.0000,0.0000,1.0000,8.0000,1.0000,1.0000,-5.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,4.5000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,8.0000,1.0000,1.0000,-4.0000,1.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,-1.0000,1.5000,1.0000,-1.5000,1.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,1.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,2.0000,3.0000,7.0000,3.0000,2.0000,2.0000,-3.0000,-1.0000,-1.0000,-1.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,7.0000,3.0000,2.0000,1.0000,-3.0000,-1.0000,-1.0000,0.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.0000,-3.0000,-1.0000,-1.0000,0.0000,2.0000,3.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,2.0000,1.0000,1.0000,1.0000,4.0000,1.5000,1.0000,0.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,1.5000,1.0000,0.0000,2.0000,3.0000,6.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,1.0000,5.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,2.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,1.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,0.0000 +Wiltshire 5,1.0000,1.0000,0.0000,0.0000,1.0000,2.0000,0.0000,2.0000,1.0000,2.0000,1.0000,1.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,1.0000,1.0000,2.0000,3.0000,2.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.0000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,1.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,3.0000,2.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,1.0000,3.5000,3.0000,2.0000,3.5000,3.0000,1.0000,0.0000,1.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,7.0000,1.0000,1.0000,2.0000,0.0000,0.0000,1.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,4.5000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,4.5000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,8.0000,1.0000,1.0000,-4.0000,1.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,-3.0000,1.0000,0.0000,-1.5000,1.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,1.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,2.0000,3.0000,7.0000,3.0000,2.0000,2.0000,-3.0000,-1.0000,-1.0000,-1.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,4.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,3.5000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.0000,-3.0000,-1.0000,-1.0000,0.0000,2.0000,3.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,0.5000,1.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,0.5000,1.0000,0.0000,2.0000,3.0000,6.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,1.0000,5.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,2.0000,3.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,1.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000 +Wiltshire 6,1.0000,1.0000,0.0000,0.0000,1.0000,2.0000,0.0000,1.0000,1.0000,2.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,1.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.0000,1.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.5000,3.0000,2.0000,3.5000,3.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,1.0000,2.0000,0.0000,0.0000,1.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,8.0000,1.0000,1.0000,-4.0000,1.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,-1.0000,1.5000,1.0000,-1.5000,1.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,1.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,2.0000,3.0000,7.0000,3.0000,2.0000,2.0000,-3.0000,-1.0000,-1.0000,-1.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,-1.0000,-1.0000,-1.0000,-1.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,5.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,3.5000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.0000,-3.0000,-1.0000,-1.0000,0.0000,2.0000,3.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,2.0000,1.0000,1.0000,1.0000,4.0000,1.5000,1.0000,0.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,1.5000,1.0000,0.0000,2.0000,3.0000,6.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,1.0000,5.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000 +Wiltshire 7,1.0000,1.0000,0.0000,0.0000,1.0000,2.0000,0.0000,1.0000,1.5000,2.0000,0.0000,1.0000,1.0000,3.0000,2.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,1.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,2.0000,1.0000,1.0000,1.0000,0.0000,1.0000,1.0000,1.0000,1.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,2.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,3.5000,3.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,1.0000,0.0000,7.0000,1.0000,1.0000,2.0000,0.0000,0.0000,1.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,8.0000,1.0000,1.0000,-4.0000,1.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,-1.0000,1.5000,1.0000,-1.5000,1.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,1.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,2.0000,3.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,-1.0000,-1.0000,-1.0000,0.0000,2.0000,3.0000,5.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,4.0000,2.0000,1.0000,1.0000,3.0000,1.0000,1.0000,1.0000,2.0000,3.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,-3.0000,-1.0000,-1.0000,-1.0000,2.0000,3.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,1.5000,1.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,0.5000,1.0000,0.0000,2.0000,3.0000,6.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,1.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.5000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,2.0000,3.0000,1.0000,4.0000,2.0000,1.0000,1.0000,3.0000,0.5000,1.0000,1.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000 +Wiltshire 8,1.0000,1.0000,0.0000,0.0000,1.0000,6.0000,0.0000,2.0000,1.0000,2.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,1.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,1.0000,1.0000,1.0000,1.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.5000,3.0000,2.0000,3.5000,3.0000,1.0000,1.0000,0.0000,2.0000,3.0000,1.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,1.0000,0.0000,7.0000,1.0000,1.0000,2.0000,0.0000,0.0000,1.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,1.0000,8.0000,1.0000,1.0000,-4.0000,1.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,1.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,2.0000,3.0000,7.0000,3.0000,2.0000,2.0000,-3.0000,-1.0000,-1.0000,-1.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.0000,-3.0000,-1.0000,-1.0000,0.0000,2.0000,3.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.0000,-3.0000,-1.0000,-1.0000,0.0000,2.0000,3.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,2.0000,1.0000,1.0000,1.0000,4.0000,1.5000,1.0000,0.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,1.5000,1.0000,0.0000,2.0000,3.0000,6.0000,5.0000,1.0000,1.0000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,1.0000,5.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,3.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000 +Wiltshire 9,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,0.0000,2.0000,1.0000,2.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,1.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,2.0000,1.0000,1.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.5000,3.0000,2.0000,3.5000,3.0000,1.0000,1.0000,0.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,1.0000,0.0000,7.0000,1.0000,1.0000,2.0000,0.0000,0.0000,1.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,8.0000,1.0000,1.0000,-4.0000,1.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,-3.0000,1.0000,0.0000,-1.5000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,1.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,2.0000,3.0000,5.0000,3.0000,2.0000,2.0000,-1.0000,-1.0000,-1.0000,-1.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,-1.0000,-1.0000,0.0000,2.0000,3.0000,5.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.0000,-3.0000,-1.0000,-1.0000,0.0000,2.0000,3.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,1.5000,1.0000,0.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,1.5000,1.0000,0.0000,2.0000,3.0000,6.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,1.0000,5.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,3.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Berkshire 1,2.0000,1.0000,0.0000,1.0000,1.0000,2.5000,0.0000,2.0000,1.0000,2.0000,0.0000,0.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,3.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,1.0000,3.0000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,2.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,1.0000,1.5000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,3.0000,3.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,6.0000,1.5000,1.0000,1.0000,-0.5000,1.0000,0.000,6.0000,1.5000,1.0000,1.0000,-0.5000,1.0000,0.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,2.0000,3.0000,6.0000,1.5000,1.0000,1.0000,-0.5000,1.0000,0.0000,6.0000,1.5000,1.0000,0.0000,1.0000,1.0000,0.0000,1.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,2.0000,3.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,-1.0000,-1.0000,-1.0000,0.0000,2.0000,3.0000,5.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,5.5000,2.5000,2.0000,1.0000,1.5000,0.0000,0.0000,1.0000,5.0000,3.0000,2.0000,1.0000,-1.0000,-1.0000,-1.0000,0.0000,2.0000,3.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,4.0000,2.0000,1.0000,1.0000,2.0000,0.5000,1.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,0.5000,1.0000,0.0000,2.0000,3.0000,6.0000,5.0000,1.0000,1.0000,1.0000,0.5000,0.0000,1.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000 +Berkshire 2,2.0000,1.0000,0.0000,1.0000,1.0000,2.5000,0.0000,2.0000,1.0000,1.0000,1.0000,1.0000,2.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,3.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,2.0000,0.0000,1.0000,3.0000,2.0000,1.0000,2.0000,1.0000,1.0000,1.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,2.0000,0.0000,1.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,3.0000,3.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,6.0000,1.5000,1.0000,1.0000,-0.5000,1.0000,0.000,6.0000,1.5000,1.0000,1.0000,-0.5000,1.0000,0.0000,8.0000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,2.0000,3.0000,6.0000,1.5000,1.0000,1.0000,-0.5000,1.0000,0.0000,6.0000,1.5000,1.0000,-0.5000,1.0000,1.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,1.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,2.0000,3.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,-1.0000,-1.0000,-1.0000,0.0000,2.0000,3.0000,5.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,-1.0000,-1.0000,0.0000,2.0000,3.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.5000,0.0000,0.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,0.5000,1.0000,0.0000,0.0000,2.0000,1.5000,1.0000,1.0000,4.0000,1.0000,1.0000,0.0000,2.0000,3.0000,6.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,2.0000,3.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000 +Berkshire 3,2.0000,1.0000,0.0000,1.0000,1.0000,2.0000,1.0000,2.0000,1.2000,1.5000,0.0000,0.0000,1.0000,3.0000,2.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,3.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,1.0000,2.5000,1.0000,2.0000,0.0000,2.0000,1.0000,1.0000,2.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.5000,5.0000,3.0000,2.0000,2.0000,1.0000,-0.5000,0.0000,-1.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,1.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,3.0000,3.0000,1.0000,0.0000,0.0000,1.0000,1.5000,1.0000,4.0000,2.0000,1.0000,1.0000,1.0000,1.5000,0.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.5000,6.0000,1.5000,1.0000,1.0000,-0.5000,0.0000,0.000,6.0000,1.5000,1.0000,1.0000,-0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,1.0000,1.5000,6.0000,1.5000,1.0000,1.0000,-0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,1.0000,1.0000,0.0000,1.0000,0.0000,3.0000,2.5000,2.0000,1.0000,3.0000,-1.0000,-1.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-1.5000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-1.5000,0.0000,0.0000,0.0000,3.0000,2.5000,2.0000,1.0000,3.0000,-1.0000,-1.0000,0.0000,1.0000,1.5000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,-1.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,-1.0000,-1.0000,0.0000,1.0000,1.5000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,5.5000,2.0000,2.0000,1.0000,1.5000,0.5000,0.0000,1.0000,3.0000,3.0000,2.0000,1.0000,-1.0000,-1.0000,-1.0000,0.0000,0.0000,0.0000,1.0000,6.5000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,3.0000,1.5000,1.0000,1.0000,3.0000,1.0000,1.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,1.0000,1.5000,6.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,2.0000,3.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,1.0000,1.0000,-1.0000,-1.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,2.0000,3.0000,0.0000,5.5000,2.0000,2.0000,1.0000,1.5000,0.5000,0.0000,1.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,0.0000 +Berkshire 4,2.0000,1.0000,0.0000,1.0000,1.0000,2.0000,1.0000,1.0000,1.5000,2.0000,1.0000,0.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,1.0000,1.5000,0.0000,1.0000,3.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,2.0000,1.5000,1.0000,1.5000,0.0000,3.0000,1.0000,1.0000,2.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.5000,3.0000,3.0000,2.0000,2.0000,3.0000,-0.5000,0.0000,-1.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.5000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,3.0000,3.0000,1.0000,0.0000,0.0000,1.0000,1.5000,0.0000,4.0000,2.0000,1.0000,1.0000,1.0000,1.5000,0.0000,0.0000,3.0000,1.0000,1.5000,3.0000,0.5000,-0.5000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,1.0000,1.5000,1.0000,3.0000,1.0000,1.5000,3.0000,0.5000,-0.5000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.5000,6.0000,1.5000,1.0000,1.0000,-0.5000,0.0000,0.000,6.0000,1.5000,1.0000,1.0000,-0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,2.0000,3.0000,6.0000,1.5000,1.0000,1.0000,-0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,1.0000,1.0000,0.0000,1.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-1.5000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-1.5000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-1.5000,0.0000,0.0000,1.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-1.5000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,3.0000,-0.5000,0.0000,-1.0000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,-1.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.5000,3.0000,-0.5000,0.0000,-0.5000,0.0000,5.0000,3.0000,2.0000,2.0000,1.0000,-0.5000,0.0000,-1.0000,3.0000,3.0000,2.0000,1.0000,1.0000,-1.0000,-1.0000,0.0000,1.0000,1.5000,4.5000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,1.0000,6.0000,2.0000,2.0000,1.0000,1.0000,0.5000,0.0000,1.0000,1.0000,1.5000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,4.5000,3.0000,2.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,1.0000,1.5000,1.0000,6.0000,2.5000,2.0000,1.0000,0.5000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,1.0000,1.5000,6.0000,3.0000,1.0000,1.5000,3.0000,0.5000,-0.5000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.5000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.5000,1.0000,1.5000,3.0000,3.0000,2.0000,1.5000,1.0000,-1.0000,-1.0000,-0.5000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,0.0000,6.0000,2.0000,2.0000,1.0000,1.0000,0.5000,0.0000,1.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,1.5000,1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,0.0000 +Berkshire 5,2.0000,1.0000,0.0000,1.0000,1.0000,2.0000,1.0000,1.0000,1.5000,2.0000,0.0000,0.0000,1.0000,3.0000,2.0000,0.0000,0.0000,0.0000,1.0000,1.5000,0.0000,1.0000,3.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.5000,1.0000,2.5000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.5000,0.0000,1.0000,2.5000,2.0000,1.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,0.0000,1.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,1.0000,0.0000,1.0000,1.0000,1.5000,0.0000,4.0000,2.0000,1.0000,1.0000,1.0000,1.5000,0.0000,1.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,1.0000,4.0000,2.0000,1.0000,1.0000,1.0000,1.5000,1.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.5000,6.0000,1.5000,1.0000,1.0000,-0.5000,0.0000,0.000,6.0000,1.5000,1.0000,1.0000,-0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,1.0000,1.5000,6.0000,1.5000,1.0000,1.0000,-0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,1.0000,1.0000,0.0000,1.0000,0.0000,3.0000,2.5000,2.0000,1.0000,3.0000,-1.0000,-1.0000,0.0000,0.0000,3.0000,2.5000,2.0000,1.0000,3.0000,-1.0000,-1.0000,0.0000,3.0000,2.5000,2.0000,1.0000,3.0000,-1.0000,-1.0000,0.0000,0.0000,3.0000,2.5000,2.0000,1.0000,3.0000,-1.0000,-1.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,-1.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,-1.0000,-1.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,1.0000,1.5000,1.0000,6.5000,2.5000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,1.0000,1.5000,6.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.5000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.5000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,1.0000,-1.0000,-1.0000,-1.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,0.0000 +Surrey 1,2.0000,1.0000,0.0000,1.0000,0.0000,2.0000,0.0000,1.0000,3.0000,2.0000,0.0000,0.0000,1.0000,3.0000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,3.0000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,3.0000,3.0000,2.0000,1.0000,1.0000,3.0000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,3.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,3.0000,3.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,2.5000,1.5000,1.0000,3.5000,0.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,2.5000,1.5000,1.0000,3.5000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.5000,1.5000,1.0000,-0.5000,1.0000,1.0000,0.0000,1.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,2.5000,3.0000,2.0000,1.0000,3.5000,-1.5000,-1.0000,0.0000,0.0000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.5000,1.0000,1.0000,1.0000,3.5000,1.5000,1.0000,0.0000,0.0000,2.5000,2.0000,2.0000,1.0000,3.5000,0.5000,0.0000,0.0000,2.0000,0.0000,6.0000,3.0000,1.5000,1.0000,3.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,2.5000,1.5000,1.0000,4.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,2.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,0.0000,0.0000,0.0000 +Surrey 2,2.5000,1.0000,0.0000,1.0000,0.0000,3.0000,0.0000,1.0000,2.5000,2.0000,0.0000,0.0000,1.0000,3.0000,2.0000,0.0000,0.0000,0.0000,1.0000,1.5000,0.0000,1.0000,3.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,1.0000,3.0000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,1.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.5000,0.0000,1.0000,2.5000,2.0000,1.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,-1.0000,-1.0000,0.0000,1.0000,1.5000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,3.0000,3.0000,1.0000,0.0000,1.0000,1.0000,1.5000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,1.0000,1.5000,1.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.5000,6.0000,1.5000,1.0000,1.0000,-0.5000,1.0000,0.000,6.0000,1.5000,1.0000,1.0000,-0.5000,1.0000,0.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,1.0000,1.5000,6.0000,1.5000,1.0000,1.0000,-0.5000,1.0000,0.0000,6.0000,1.5000,1.0000,0.0000,1.0000,1.0000,0.0000,0.0000,0.0000,1.0000,2.5000,1.0000,1.0000,5.0000,-1.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-1.5000,0.0000,0.0000,1.0000,2.5000,1.0000,1.0000,5.0000,-1.0000,0.0000,0.0000,0.0000,1.0000,2.5000,1.0000,1.0000,5.0000,-1.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,-1.0000,0.0000,0.0000,0.0000,1.0000,2.5000,2.0000,1.0000,5.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,1.0000,-1.0000,-1.0000,-1.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,1.0000,0.5000,0.0000,1.0000,1.0000,1.5000,6.0000,2.0000,2.0000,1.0000,1.0000,1.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.5000,0.0000,0.0000,0.0000,1.0000,1.0000,2.5000,1.0000,1.0000,1.0000,3.5000,1.5000,1.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,1.0000,1.5000,6.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.5000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,5.5000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,1.0000,-1.0000,-1.0000,-1.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,1.0000,0.5000,1.0000,0.0000,1.0000,2.5000,2.0000,1.0000,5.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000 +Surrey 3,3.0000,1.0000,0.0000,1.0000,0.0000,3.0000,0.0000,2.0000,2.5000,2.0000,0.0000,0.0000,1.0000,2.5000,1.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,3.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,1.0000,2.5000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,1.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,2.5000,2.0000,1.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,-1.0000,-1.0000,0.0000,2.0000,3.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,3.0000,3.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,6.0000,1.5000,1.0000,1.0000,-0.5000,1.0000,0.000,6.0000,1.5000,1.0000,1.0000,-0.5000,1.0000,0.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,2.0000,3.0000,6.0000,1.5000,1.0000,1.0000,-0.5000,1.0000,0.0000,6.0000,1.5000,1.0000,0.0000,1.0000,1.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-1.5000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-1.5000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-1.5000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-1.5000,0.0000,0.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,1.0000,-1.0000,-1.0000,-1.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,1.0000,0.5000,0.0000,1.0000,1.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.5000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,2.0000,3.0000,6.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,3.0000,-0.5000,0.0000,-1.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,6.0000,2.5000,2.0000,1.0000,1.0000,0.5000,0.0000,1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,1.0000,0.5000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,0.0000 +Surrey 4,2.5000,1.0000,0.0000,1.0000,0.0000,3.0000,1.0000,1.0000,3.0000,2.0000,0.0000,0.0000,1.0000,3.0000,2.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,3.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,1.0000,2.5000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,2.5000,2.0000,1.0000,5.0000,0.0000,0.0000,0.0000,0.0000,1.0000,2.5000,2.0000,1.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,-1.0000,-1.0000,0.0000,2.0000,3.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,3.0000,3.0000,1.0000,0.0000,0.0000,1.0000,1.5000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.5000,6.0000,1.5000,1.0000,1.0000,-0.5000,1.0000,0.000,6.0000,1.5000,1.0000,1.0000,-0.5000,1.0000,1.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,2.0000,3.0000,6.0000,1.5000,1.0000,1.0000,-0.5000,1.0000,0.0000,6.0000,1.5000,1.0000,0.0000,1.0000,1.0000,0.0000,0.0000,0.0000,3.0000,2.5000,2.0000,1.0000,3.0000,-1.0000,-1.0000,0.0000,0.0000,3.0000,2.5000,2.0000,1.0000,3.0000,-1.0000,-1.0000,0.0000,3.0000,2.5000,2.0000,1.0000,3.0000,-1.0000,-1.0000,0.0000,0.0000,3.0000,2.5000,2.0000,1.0000,3.0000,-1.0000,-1.0000,0.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,-1.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,1.0000,-1.0000,-1.0000,-1.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,1.0000,0.5000,0.0000,1.0000,1.0000,1.5000,6.0000,2.5000,2.0000,1.0000,1.0000,0.5000,0.0000,1.0000,2.5000,3.0000,2.0000,2.0000,1.5000,-1.0000,-1.0000,-1.0000,1.0000,1.5000,1.0000,6.0000,2.5000,2.0000,1.0000,0.5000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,2.0000,3.0000,6.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,1.0000,3.5000,1.0000,1.0000,1.0000,0.5000,1.0000,0.0000,0.0000,2.0000,3.0000,2.5000,1.5000,1.0000,4.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,0.0000,6.0000,2.5000,2.0000,1.0000,1.0000,0.5000,0.0000,1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,1.0000,0.5000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,0.0000 +Surrey 5,2.5000,1.0000,0.0000,1.0000,0.0000,3.0000,0.0000,1.0000,2.5000,2.0000,0.0000,0.0000,1.0000,3.0000,2.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,2.5000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.5000,1.0000,2.5000,1.0000,2.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,2.5000,2.0000,1.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,1.5000,1.5000,3.0000,2.0000,1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,3.0000,3.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,6.0000,1.5000,1.0000,1.0000,-0.5000,1.0000,0.000,6.0000,1.5000,1.0000,1.0000,-0.5000,1.0000,0.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,2.0000,3.0000,6.0000,1.5000,1.0000,1.0000,-0.5000,1.0000,0.0000,6.0000,1.5000,1.0000,0.0000,1.0000,1.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-1.5000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-1.5000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-1.5000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-1.5000,0.0000,0.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,-1.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,1.0000,-1.0000,-1.0000,-1.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,1.0000,0.5000,0.0000,1.0000,1.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,1.0000,-1.0000,-1.0000,-1.0000,2.0000,3.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.5000,0.0000,0.0000,0.0000,1.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,2.0000,3.0000,6.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,1.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,0.0000 +Kent 1,3.0000,1.0000,0.0000,0.0000,1.0000,3.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,1.0000,3.0000,1.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,3.0000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,3.0000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,2.0000,1.0000,3.0000,2.0000,1.0000,6.0000,0.0000,0.0000,0.0000,0.0000,1.0000,2.5000,2.0000,1.0000,5.0000,3.0000,2.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,3.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,3.0000,3.0000,1.0000,0.0000,0.0000,2.0000,0.0000,0.0000,4.0000,2.0000,1.0000,2.0000,2.0000,0.0000,0.0000,0.0000,2.5000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,1.5000,1.0000,3.0000,0.0000,0.0000,3.5000,1.0000,1.0000,1.0000,2.5000,0.5000,0.0000,-0.5000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,1.0000,2.5000,1.0000,1.0000,5.0000,-1.0000,0.0000,0.0000,0.0000,1.0000,2.5000,1.0000,1.5000,5.0000,-1.0000,0.0000,-0.5000,1.0000,2.5000,1.0000,1.0000,5.0000,-1.0000,0.0000,0.0000,0.0000,1.0000,2.5000,1.0000,1.0000,5.0000,-1.0000,0.0000,0.0000,2.0000,0.0000,2.0000,1.0000,1.0000,0.5000,5.0000,2.0000,1.0000,0.5000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,3.0000,2.0000,1.0000,6.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,1.0000,6.0000,1.5000,1.0000,0.0000,5.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,2.5000,2.0000,0.5000,6.0000,0.5000,0.0000,0.5000,2.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.5000,3.0000,2.0000,1.0000,-3.5000,-1.0000,-1.0000,0.0000,0.0000,0.0000,1.0000,6.5000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,3.0000,1.0000,1.0000,1.0000,4.0000,1.5000,1.0000,0.0000,0.0000,2.0000,1.0000,1.0000,1.0000,5.0000,2.0000,1.0000,0.0000,2.0000,0.0000,6.0000,2.5000,1.0000,1.0000,3.5000,0.5000,0.0000,1.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,2.5000,1.0000,1.0000,4.0000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,2.5000,2.0000,1.5000,1.0000,1.5000,4.5000,3.0000,2.0000,1.5000,-2.5000,-1.0000,-1.0000,-0.5000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,6.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000 +Kent 2,2.0000,1.0000,0.0000,1.0000,0.0000,2.5000,0.0000,1.0000,3.0000,2.0000,0.0000,0.0000,1.0000,3.0000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,3.0000,2.0000,2.0000,0.0000,3.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,3.0000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,3.0000,3.0000,1.0000,0.0000,0.0000,2.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,2.5000,1.5000,1.0000,3.5000,0.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,1.5000,1.0000,3.0000,0.0000,0.0000,3.5000,1.0000,1.0000,1.0000,0.5000,1.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,1.0000,-1.0000,1.5000,1.0000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,3.0000,-0.5000,1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,1.0000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.5000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,1.5000,1.0000,0.0000,0.0000,2.5000,1.0000,1.0000,1.0000,3.5000,1.5000,1.0000,0.0000,2.0000,0.0000,6.0000,1.5000,1.0000,1.0000,4.5000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,2.5000,1.5000,1.0000,4.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,2.5000,1.0000,1.0000,3.0000,0.0000,1.0000,0.0000,0.0000,0.0000,0.0000 +Kent 3,2.5000,1.0000,0.0000,0.0000,1.0000,3.0000,0.0000,1.0000,1.5000,1.5000,0.0000,0.0000,1.0000,3.0000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,3.0000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,2.0000,1.0000,1.0000,1.0000,2.0000,1.0000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,2.0000,1.0000,3.0000,2.0000,1.0000,6.0000,0.0000,0.0000,0.0000,0.0000,1.0000,2.5000,2.0000,1.0000,1.0000,3.0000,2.0000,1.0000,6.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,1.0000,0.0000,0.0000,1.0000,1.5000,0.0000,4.0000,2.0000,1.0000,1.0000,1.0000,1.5000,0.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,1.0000,1.5000,1.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,3.5000,1.0000,1.0000,1.0000,0.5000,1.0000,0.0000,0.0000,1.0000,1.5000,6.0000,2.0000,0.5000,1.0000,-1.0000,0.5000,0.000,6.0000,2.0000,0.5000,1.0000,-1.0000,0.5000,1.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,1.0000,1.5000,6.0000,2.0000,0.5000,1.0000,-1.0000,0.5000,0.0000,6.0000,2.0000,0.5000,1.0000,-1.0000,0.0000,0.5000,1.0000,0.0000,1.0000,2.5000,1.0000,1.0000,5.0000,-1.0000,0.0000,0.0000,0.0000,1.0000,2.5000,1.0000,1.0000,5.0000,-1.0000,0.0000,0.0000,1.0000,2.5000,1.0000,1.0000,5.0000,-1.0000,0.0000,0.0000,0.0000,1.0000,2.5000,1.0000,1.0000,5.0000,-1.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,-1.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,6.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,3.5000,3.0000,2.0000,1.0000,0.5000,-1.0000,-1.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,6.0000,0.0000,0.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.5000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,3.0000,1.0000,1.0000,1.0000,4.0000,2.0000,1.0000,0.0000,0.0000,2.5000,1.0000,1.0000,1.0000,4.5000,2.0000,1.0000,0.0000,1.0000,1.5000,6.0000,1.5000,1.0000,1.5000,4.5000,0.5000,-0.5000,1.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.5000,2.5000,1.0000,1.0000,4.0000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,2.5000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,0.5000,0.0000,1.0000,3.0000,1.0000,1.0000,6.0000,0.0000,1.0000,0.0000,0.0000,1.0000,0.0000 +Kent 4,3.0000,1.0000,0.0000,0.0000,1.0000,3.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,1.0000,3.0000,2.0000,0.0000,0.0000,0.0000,1.0000,1.5000,0.0000,1.0000,3.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,1.0000,3.0000,1.0000,2.0000,0.0000,2.5000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.5000,0.0000,1.0000,2.5000,2.0000,1.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,-1.0000,-1.0000,0.0000,2.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,3.0000,3.0000,1.0000,0.0000,0.0000,1.0000,1.5000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,2.5000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,1.0000,1.5000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,5.0000,1.0000,1.0000,1.0000,1.0000,0.5000,0.0000,0.0000,1.0000,1.5000,6.0000,2.0000,1.0000,1.0000,-1.0000,0.0000,0.000,6.0000,2.0000,1.0000,1.0000,-1.0000,0.0000,0.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,1.0000,1.5000,6.0000,2.0000,1.0000,1.0000,-1.0000,1.0000,0.0000,6.5000,1.5000,1.0000,-0.5000,1.0000,1.0000,0.0000,1.0000,0.0000,3.0000,2.5000,2.0000,1.0000,3.0000,-1.0000,-1.0000,0.0000,0.0000,3.0000,2.5000,1.0000,1.0000,3.0000,-1.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,3.5000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,-1.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,1.0000,4.0000,2.0000,1.0000,1.0000,3.0000,0.5000,1.0000,0.5000,1.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,-1.0000,-1.0000,0.0000,1.0000,1.5000,1.0000,6.5000,2.5000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,3.0000,1.5000,1.0000,1.0000,3.0000,1.0000,1.0000,0.0000,1.0000,1.5000,6.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,3.5000,1.0000,1.0000,1.0000,0.5000,1.0000,0.0000,0.0000,1.0000,1.5000,3.0000,1.5000,1.0000,3.5000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,0.5000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,0.0000 +Kent 5,2.5000,1.0000,0.0000,0.0000,1.0000,3.0000,0.0000,1.0000,3.0000,2.0000,0.0000,0.0000,1.0000,3.0000,2.0000,0.0000,0.0000,0.0000,1.0000,1.5000,0.0000,1.0000,3.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,1.0000,2.5000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,2.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,2.5000,2.0000,1.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,3.0000,3.0000,1.0000,0.0000,0.0000,1.0000,1.5000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,2.5000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,1.0000,1.5000,6.0000,1.5000,1.0000,1.0000,-0.5000,0.0000,0.000,6.0000,1.5000,1.0000,1.0000,-0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,1.0000,1.5000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,1.0000,-1.0000,1.5000,1.0000,0.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,0.0000,1.0000,2.5000,1.0000,1.0000,5.0000,-1.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.5000,3.0000,2.0000,1.0000,4.5000,-0.5000,-1.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,3.0000,1.0000,1.0000,1.0000,4.0000,2.0000,1.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,1.0000,1.5000,6.0000,2.0000,1.0000,1.0000,4.0000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,1.0000,1.5000,2.0000,1.0000,1.0000,4.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,0.0000,7.0000,2.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,0.0000 +Kent 6,2.5000,1.5000,0.0000,0.0000,1.0000,3.0000,0.0000,1.0000,3.0000,2.0000,0.0000,0.0000,1.0000,3.0000,2.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,1.0000,3.0000,1.0000,2.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,1.0000,3.0000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,2.5000,2.0000,1.0000,1.0000,3.0000,2.0000,1.0000,6.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,-1.0000,-1.0000,0.0000,2.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.5000,3.0000,1.0000,0.0000,0.0000,1.0000,1.5000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,2.5000,1.0000,1.0000,3.5000,0.5000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.5000,6.0000,2.0000,0.5000,1.0000,-1.0000,0.5000,0.000,6.0000,2.0000,0.5000,1.0000,-1.0000,0.5000,0.0000,6.0000,2.0000,1.0000,1.0000,-1.0000,0.0000,0.0000,2.0000,3.0000,6.0000,2.0000,0.5000,1.0000,-1.0000,0.5000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,1.0000,2.5000,1.0000,1.0000,5.0000,-1.0000,0.0000,0.0000,0.0000,1.0000,2.5000,1.0000,1.0000,5.0000,-1.0000,0.0000,0.0000,1.0000,2.5000,1.0000,1.0000,5.0000,-1.0000,0.0000,0.0000,0.0000,1.0000,2.5000,1.0000,1.0000,5.0000,-1.0000,0.0000,0.0000,2.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.5000,1.0000,1.0000,3.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,6.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,3.0000,3.0000,2.0000,1.5000,1.0000,-1.0000,-1.0000,-0.5000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,3.0000,1.0000,1.0000,1.0000,4.0000,2.0000,1.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,4.0000,2.0000,1.0000,0.0000,2.0000,3.0000,6.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,1.0000,1.5000,2.5000,1.0000,1.0000,4.0000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,3.0000,1.0000,1.0000,0.0000,0.0000,6.0000,2.5000,2.0000,0.5000,1.0000,0.5000,1.5000,0.0000,1.0000,3.0000,2.0000,1.0000,6.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000 +Kent 7,2.0000,1.0000,0.0000,1.0000,1.0000,2.5000,0.0000,1.0000,3.0000,2.0000,0.0000,0.0000,1.0000,3.0000,2.0000,0.0000,0.0000,0.0000,1.0000,1.5000,0.0000,1.0000,3.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,2.0000,1.0000,1.0000,1.0000,1.0000,2.5000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,1.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.5000,0.0000,1.0000,2.5000,2.0000,1.0000,3.5000,3.0000,2.0000,1.0000,2.5000,-0.5000,0.0000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,1.5000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,3.0000,3.0000,1.0000,0.0000,0.0000,1.0000,1.5000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,1.0000,1.5000,1.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,1.0000,1.5000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,1.0000,1.5000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,1.0000,1.0000,0.0000,0.0000,0.0000,3.0000,2.5000,2.0000,1.0000,3.0000,-1.0000,-1.0000,0.0000,0.0000,3.0000,2.5000,1.0000,1.0000,3.0000,-1.0000,0.0000,0.0000,3.0000,2.5000,2.0000,1.0000,3.0000,-1.0000,-1.0000,0.0000,0.0000,1.0000,2.5000,1.0000,1.0000,5.0000,-1.0000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.5000,3.0000,2.0000,1.0000,0.5000,-0.5000,-1.0000,0.0000,0.0000,1.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,3.5000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.5000,0.0000,0.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,0.5000,1.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,0.5000,1.0000,0.0000,1.0000,1.5000,6.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,3.5000,1.0000,1.0000,1.0000,0.5000,1.0000,0.0000,0.0000,1.0000,1.5000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,2.5000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,1.0000,1.0000,-1.0000,-1.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,0.0000,0.0000,2.5000,3.0000,2.0000,1.0000,3.5000,-0.5000,0.0000,0.0000,0.0000,1.0000,0.0000 +Cornwall 1,1.0000,1.0000,0.0000,0.0000,1.0000,1.0000,0.0000,1.0000,1.0000,2.0000,1.0000,1.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,1.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,3.0000,1.0000,1.0000,1.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,2.5000,2.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,1.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.5000,3.0000,2.0000,3.5000,3.0000,1.0000,1.0000,0.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,1.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,8.0000,1.0000,1.0000,-4.0000,1.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,2.0000,3.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.0000,-3.0000,-1.0000,-1.0000,0.0000,2.0000,3.0000,5.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,6.0000,1.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,6.0000,1.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.0000,-3.0000,-1.0000,-1.0000,0.0000,2.0000,3.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,1.0000,1.0000,1.0000,3.0000,1.5000,0.0000,0.0000,1.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,2.0000,3.0000,6.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,1.0000,5.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,6.0000,1.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000 +Cornwall 2,1.0000,1.0000,0.0000,0.0000,1.0000,2.0000,0.0000,5.0000,1.0000,2.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,1.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,3.0000,1.0000,1.0000,1.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,2.5000,2.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,1.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,1.0000,6.0000,1.5000,1.0000,3.5000,3.0000,1.0000,1.0000,0.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,1.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,1.0000,5.0000,1.0000,2.0000,-1.0000,1.0000,-1.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,8.0000,1.0000,1.0000,-4.0000,1.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,2.0000,3.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.0000,-3.0000,-1.0000,-1.0000,0.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,1.0000,6.0000,1.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,6.0000,1.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.0000,-3.0000,-1.0000,-1.0000,0.0000,2.0000,3.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,1.0000,1.0000,1.0000,3.0000,1.5000,0.0000,0.0000,1.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,2.0000,3.0000,6.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,1.0000,5.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,3.0000,0.0000,6.0000,1.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,2.0000,2.0000,0.0000,0.0000,0.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Cornwall 3,1.0000,1.0000,0.0000,0.0000,1.0000,2.0000,0.0000,1.0000,1.0000,2.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,3.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,3.0000,1.0000,1.0000,1.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,2.5000,2.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,1.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,6.0000,1.5000,1.0000,3.5000,3.0000,1.0000,1.0000,0.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,1.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,1.0000,5.0000,1.0000,2.0000,-1.0000,1.0000,-1.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,8.0000,1.0000,1.0000,-4.0000,1.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,2.0000,3.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.0000,-3.0000,-1.0000,-1.0000,0.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.0000,-3.0000,-1.0000,-1.0000,0.0000,2.0000,3.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,1.0000,1.0000,1.0000,3.0000,1.5000,0.0000,0.0000,1.0000,2.0000,1.0000,1.0000,1.0000,3.0000,1.5000,0.0000,0.0000,2.0000,3.0000,4.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,3.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-3.0000,1.0000,1.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,1.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000 +Cornwall 4,1.0000,1.0000,0.0000,0.0000,1.0000,1.0000,0.0000,2.0000,1.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,1.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,3.0000,1.0000,1.0000,1.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,2.5000,2.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,3.5000,3.0000,2.0000,3.5000,3.0000,1.0000,1.0000,0.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,1.0000,0.0000,6.0000,1.5000,1.0000,1.0000,2.0000,3.0000,1.0000,5.0000,1.0000,2.0000,-1.0000,1.0000,-1.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,2.0000,3.0000,7.0000,3.0000,2.0000,2.0000,-3.0000,-1.0000,-1.0000,-1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.5000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.0000,-3.0000,-1.0000,-1.0000,0.0000,2.0000,3.0000,5.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.0000,-3.0000,-1.0000,-1.0000,0.0000,2.0000,3.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,1.0000,1.0000,1.0000,3.0000,1.5000,0.0000,0.0000,0.0000,2.0000,1.0000,1.0000,1.0000,3.0000,1.5000,0.0000,0.0000,2.0000,3.0000,6.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,2.0000,3.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,3.0000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,1.5000,1.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000 +Cornwall 5,1.0000,1.0000,0.0000,0.0000,1.0000,2.0000,1.0000,5.0000,1.0000,2.0000,0.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,1.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,3.0000,1.0000,1.0000,1.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,2.5000,2.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.5000,3.0000,2.0000,3.5000,3.0000,1.0000,1.0000,0.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,1.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,2.0000,3.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.0000,-3.0000,-1.0000,-1.0000,0.0000,2.0000,3.0000,5.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.0000,-3.0000,-1.0000,-1.0000,0.0000,2.0000,3.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,1.0000,1.0000,1.0000,3.0000,1.5000,0.0000,0.0000,1.0000,2.0000,1.0000,1.0000,1.0000,3.0000,1.5000,0.0000,0.0000,2.0000,3.0000,4.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,3.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-3.0000,1.0000,1.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,1.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000 +Cornwall 6,1.0000,1.0000,0.0000,0.0000,1.0000,2.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,1.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,2.0000,1.0000,1.0000,1.0000,0.0000,3.0000,1.0000,1.0000,1.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,2.5000,2.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.5000,3.0000,2.0000,3.5000,3.0000,1.0000,1.0000,0.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,2.0000,3.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.0000,-3.0000,-1.0000,-1.0000,0.0000,2.0000,3.0000,5.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.0000,-3.0000,-1.0000,-1.0000,0.0000,2.0000,3.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,1.0000,1.0000,1.0000,3.0000,1.5000,0.0000,0.0000,0.0000,2.0000,1.0000,1.0000,1.0000,3.0000,1.5000,0.0000,0.0000,2.0000,3.0000,6.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,2.0000,3.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,3.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-3.0000,1.0000,1.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,1.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000 +Cornwall 7,2.0000,1.0000,0.0000,0.0000,1.0000,2.0000,0.0000,2.0000,1.0000,2.0000,0.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,1.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,3.0000,1.0000,1.0000,1.0000,1.0000,2.0000,1.0000,1.0000,1.0000,0.0000,3.0000,1.0000,1.0000,1.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,2.5000,2.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,3.5000,3.0000,2.0000,3.5000,3.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,1.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,5.0000,1.0000,2.0000,-1.0000,1.0000,-1.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,2.0000,3.0000,7.0000,3.0000,2.0000,2.0000,-3.0000,-1.0000,-1.0000,-1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.0000,-3.0000,-1.0000,-1.0000,0.0000,2.0000,3.0000,5.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.0000,-3.0000,-1.0000,-1.0000,0.0000,2.0000,3.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,1.0000,1.0000,1.0000,3.0000,1.5000,0.0000,0.0000,0.0000,2.0000,1.0000,1.0000,1.0000,3.0000,1.5000,0.0000,0.0000,2.0000,3.0000,6.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,2.0000,3.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,2.0000,3.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,3.0000,0.0000,6.0000,1.5000,1.0000,1.0000,-3.0000,1.0000,1.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,1.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000 +Devonshire 1,1.0000,1.0000,0.0000,0.0000,1.0000,2.0000,0.0000,1.0000,1.0000,2.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,1.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,1.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,1.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.5000,3.0000,2.0000,3.5000,3.0000,1.0000,1.0000,0.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,1.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,1.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,8.0000,1.0000,1.0000,-4.0000,1.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,2.0000,1.0000,1.0000,1.0000,4.0000,0.5000,0.0000,0.0000,2.0000,3.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.0000,-3.0000,-1.0000,-1.0000,0.0000,2.0000,3.0000,5.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,6.0000,1.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,6.0000,1.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.0000,-3.0000,-1.0000,-1.0000,0.0000,2.0000,3.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,1.0000,1.0000,1.0000,3.0000,1.5000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,2.0000,3.0000,6.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,1.0000,5.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,3.0000,0.0000,6.0000,1.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,2.0000,2.0000,0.0000,0.0000,0.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Devonshire 2,1.0000,1.0000,0.0000,0.0000,1.0000,2.0000,0.0000,1.0000,1.0000,2.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,1.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.0000,1.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,3.0000,2.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,1.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,1.0000,3.5000,3.0000,2.0000,3.5000,3.0000,1.0000,1.0000,0.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,1.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,1.0000,1.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,8.0000,1.0000,1.0000,-4.0000,1.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,1.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.0000,2.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,0.5000,0.0000,0.0000,1.0000,2.0000,1.0000,1.0000,2.0000,2.0000,1.0000,0.0000,-1.0000,2.0000,3.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.0000,-3.0000,-1.0000,-1.0000,0.0000,2.0000,3.0000,5.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,6.0000,1.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,6.0000,1.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.0000,-3.0000,-1.0000,-1.0000,0.0000,2.0000,3.0000,1.0000,6.0000,1.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,1.0000,1.0000,1.0000,3.0000,1.5000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,2.0000,3.0000,4.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,3.0000,0.0000,6.0000,1.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,2.0000,2.0000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Devonshire 3,1.0000,1.0000,0.0000,0.0000,1.0000,2.0000,0.0000,1.0000,1.0000,2.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,1.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,3.0000,1.0000,1.0000,1.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,1.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.5000,3.0000,2.0000,3.5000,3.0000,1.0000,1.0000,0.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,1.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,1.0000,5.0000,1.0000,2.0000,-1.0000,1.0000,-1.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,8.0000,1.0000,1.0000,-4.0000,1.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,2.0000,1.0000,1.0000,1.0000,4.0000,0.5000,0.0000,0.0000,2.0000,3.0000,7.0000,3.0000,2.0000,2.0000,-3.0000,-1.0000,-1.0000,-1.0000,3.5000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.0000,-3.0000,-1.0000,-1.0000,0.0000,2.0000,3.0000,5.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,6.0000,1.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,6.0000,1.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.0000,-3.0000,-1.0000,-1.0000,0.0000,2.0000,3.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,1.0000,1.0000,1.0000,3.0000,1.5000,0.0000,0.0000,1.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,2.0000,3.0000,6.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,1.0000,5.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,3.0000,0.0000,6.0000,1.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,2.0000,2.0000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000 +Devonshire 4,1.0000,1.0000,0.0000,0.0000,1.0000,2.0000,1.0000,1.0000,1.0000,2.0000,0.0000,1.0000,2.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,1.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.0000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,1.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,1.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.5000,3.0000,2.0000,3.5000,3.0000,1.0000,1.0000,0.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,1.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,8.0000,1.0000,1.0000,-4.0000,1.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,2.0000,1.0000,1.0000,1.0000,4.0000,0.5000,0.0000,0.0000,2.0000,3.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.5000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.0000,-3.0000,-1.0000,-1.0000,0.0000,2.0000,3.0000,5.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,6.0000,1.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,6.0000,1.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.0000,-3.0000,-1.0000,-1.0000,0.0000,2.0000,3.0000,1.0000,6.0000,1.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,1.0000,1.0000,1.0000,3.0000,1.5000,0.0000,0.0000,0.0000,2.0000,1.0000,1.0000,1.0000,3.0000,1.5000,0.0000,0.0000,2.0000,3.0000,6.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,3.0000,0.0000,6.0000,1.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Devonshire 5,1.0000,1.0000,0.0000,0.0000,1.0000,1.0000,0.0000,1.0000,1.0000,2.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,1.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,1.0000,1.0000,1.0000,1.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,6.0000,1.5000,1.0000,3.5000,3.0000,1.0000,1.0000,0.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,1.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,1.0000,5.0000,1.0000,2.0000,-1.0000,1.0000,-1.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,8.0000,1.0000,1.0000,-4.0000,1.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,0.0000,2.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,1.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,2.0000,3.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.0000,-3.0000,-1.0000,-1.0000,0.0000,2.0000,3.0000,5.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,6.0000,1.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,6.0000,1.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.0000,-3.0000,-1.0000,-1.0000,0.0000,2.0000,3.0000,0.0000,6.0000,1.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,1.0000,1.0000,1.0000,3.0000,1.5000,0.0000,0.0000,1.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,2.0000,3.0000,6.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,1.0000,5.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,3.0000,1.0000,6.0000,1.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,6.0000,1.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000 +Devonshire 6,1.0000,1.0000,0.0000,0.0000,1.0000,2.0000,0.0000,1.0000,1.0000,2.0000,1.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,1.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.0000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,1.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,3.0000,2.0000,1.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,1.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,6.0000,1.5000,1.0000,3.5000,3.0000,1.0000,1.0000,0.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,1.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,1.0000,7.0000,1.0000,1.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,8.0000,1.0000,1.0000,-4.0000,1.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.0000,2.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,2.0000,3.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.0000,-3.0000,-1.0000,-1.0000,0.0000,2.0000,3.0000,5.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,6.0000,1.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,6.0000,1.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.0000,-3.0000,-1.0000,-1.0000,0.0000,2.0000,3.0000,1.0000,6.0000,1.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,1.0000,1.0000,1.0000,3.0000,1.5000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,2.0000,3.0000,4.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,3.0000,0.0000,6.0000,1.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,2.0000,2.0000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000 +Devonshire 7,1.0000,1.0000,0.0000,0.0000,1.0000,2.0000,0.0000,1.0000,1.0000,2.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,1.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.0000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,1.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,1.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.5000,3.0000,2.0000,3.5000,3.0000,1.0000,1.0000,0.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,1.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,1.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,8.0000,1.0000,1.0000,-4.0000,1.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,0.0000,2.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,1.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,2.0000,3.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.0000,-3.0000,-1.0000,-1.0000,0.0000,2.0000,3.0000,5.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,6.0000,1.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,6.0000,1.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.0000,-3.0000,-1.0000,-1.0000,0.0000,2.0000,3.0000,0.0000,6.0000,1.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,1.0000,1.0000,1.0000,3.0000,1.5000,0.0000,0.0000,1.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,2.0000,3.0000,6.0000,5.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,3.0000,0.0000,6.0000,1.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,2.0000,2.0000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000 +Devonshire 8,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,0.0000,5.0000,1.0000,2.0000,1.0000,1.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,3.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.0000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,1.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,1.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.5000,3.0000,2.0000,3.5000,3.0000,1.0000,1.0000,0.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,1.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,1.0000,6.0000,1.5000,0.5000,-1.0000,-0.5000,1.5000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,8.0000,1.0000,1.0000,-4.0000,1.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,2.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,2.0000,1.0000,1.0000,1.0000,4.0000,0.5000,0.0000,0.0000,2.0000,3.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,5.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,6.0000,1.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,6.0000,1.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.0000,-3.0000,-1.0000,-1.0000,0.0000,2.0000,3.0000,1.0000,6.0000,1.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,3.0000,1.0000,2.0000,1.0000,2.0000,1.5000,-1.0000,0.0000,0.0000,3.0000,1.0000,2.0000,1.0000,2.0000,1.5000,-1.0000,0.0000,2.0000,3.0000,4.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,1.0000,5.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,3.0000,0.0000,6.0000,1.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,-2.0000,0.0000,0.0000,1.0000 +Devonshire 9,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,0.0000,1.0000,1.0000,2.0000,1.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,3.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.0000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,1.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,1.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.5000,3.0000,2.0000,3.5000,3.0000,1.0000,1.0000,0.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,1.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,1.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,8.0000,1.0000,1.0000,-4.0000,1.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,1.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,2.0000,3.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.0000,-3.0000,-1.0000,-1.0000,0.0000,2.0000,3.0000,5.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,6.0000,1.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,6.0000,1.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,3.5000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,3.0000,1.0000,2.0000,1.0000,2.0000,1.5000,-1.0000,0.0000,0.0000,3.0000,1.0000,2.0000,1.0000,2.0000,1.5000,-1.0000,0.0000,2.0000,3.0000,6.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,3.0000,0.0000,6.0000,1.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,2.0000,2.0000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000 +Devonshire 10,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,0.0000,1.0000,1.0000,2.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,3.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.0000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,1.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,1.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,1.0000,6.0000,1.5000,1.0000,3.5000,3.0000,1.0000,1.0000,0.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,1.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,1.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,8.0000,1.0000,1.0000,-4.0000,1.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,0.0000,2.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,1.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,2.0000,3.0000,7.0000,3.0000,2.0000,1.0000,-3.0000,-1.0000,-1.0000,0.0000,3.5000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.0000,-3.0000,-1.0000,-1.0000,0.0000,2.0000,3.0000,5.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,6.0000,1.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,6.0000,1.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.0000,-3.0000,-1.0000,-1.0000,0.0000,2.0000,3.0000,0.0000,6.0000,1.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,3.0000,1.0000,2.0000,1.0000,2.0000,1.5000,-1.0000,0.0000,0.0000,3.0000,1.0000,2.0000,1.0000,2.0000,1.5000,-1.0000,0.0000,2.0000,3.0000,4.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,3.0000,0.0000,6.0000,1.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,2.0000,2.0000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000 +Devonshire 11,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,0.0000,1.0000,1.0000,2.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,3.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.0000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,1.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,1.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,1.0000,6.0000,1.5000,1.0000,3.5000,3.0000,1.0000,1.0000,0.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,1.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,1.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,8.0000,1.0000,1.0000,-4.0000,1.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.0000,2.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,1.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,2.0000,3.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.0000,-3.0000,-1.0000,-1.0000,0.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,1.0000,6.0000,1.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,6.0000,1.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.0000,-3.0000,-1.0000,-1.0000,0.0000,2.0000,3.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,3.0000,1.0000,2.0000,1.0000,2.0000,1.5000,-1.0000,0.0000,0.0000,3.0000,1.0000,2.0000,1.0000,2.0000,1.5000,-1.0000,0.0000,2.0000,3.0000,4.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,1.0000,5.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,3.0000,0.0000,6.0000,1.5000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,2.0000,2.0000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000 +Dorsetshire 1,1.0000,1.0000,0.0000,0.0000,1.0000,2.0000,0.0000,1.0000,1.0000,2.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,1.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.0000,1.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.5000,3.0000,2.0000,3.5000,3.0000,1.0000,1.0000,0.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,1.0000,0.0000,7.0000,1.0000,1.0000,2.0000,0.0000,0.0000,1.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,3.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,8.0000,1.0000,1.0000,-4.0000,1.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,-3.0000,1.0000,0.0000,-1.5000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,1.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,2.0000,3.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,-1.0000,-1.0000,-1.0000,-1.0000,2.0000,3.0000,5.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,-3.0000,-1.0000,-1.0000,-1.0000,2.0000,3.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,0.5000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,1.0000,0.0000,2.0000,3.0000,6.0000,5.0000,1.0000,1.0000,0.0000,0.0000,0.0000,1.0000,5.0000,1.0000,1.0000,1.0000,1.0000,0.5000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,1.0000,5.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,3.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Dorsetshire 2,1.0000,2.0000,0.0000,0.0000,1.0000,2.0000,0.0000,1.0000,1.0000,2.0000,0.0000,1.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,1.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.0000,1.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,1.0000,3.0000,3.0000,2.0000,2.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.5000,3.0000,2.0000,3.5000,3.0000,1.0000,1.0000,0.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,1.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,8.0000,1.0000,1.0000,-5.0000,0.0000,0.0000,3.0000,1.0000,1.0000,2.0000,1.0000,1.0000,0.0000,-1.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,8.0000,1.0000,1.0000,-4.0000,1.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,-3.0000,1.0000,0.0000,-1.5000,1.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,1.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,2.0000,3.0000,8.0000,3.0000,2.0000,1.0000,-4.5000,0.0000,-1.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.5000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,-1.0000,-1.0000,-1.0000,-1.0000,2.0000,3.0000,5.5000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.5000,3.0000,2.0000,2.0000,-1.5000,-1.0000,-1.0000,-1.0000,2.0000,3.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,0.5000,1.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,0.5000,1.0000,0.0000,2.0000,3.0000,4.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,1.0000,5.0000,1.0000,1.0000,1.0000,1.0000,0.5000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,1.0000,5.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,3.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,1.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000 +Dorsetshire 3,1.0000,1.0000,0.0000,0.0000,1.0000,1.0000,0.0000,1.0000,1.0000,2.0000,0.0000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,1.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.0000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,1.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.5000,3.0000,2.0000,3.5000,3.0000,1.0000,1.0000,0.0000,2.0000,3.0000,1.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,1.0000,0.0000,7.0000,1.0000,1.0000,2.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,3.5000,1.0000,1.0000,1.0000,0.5000,1.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,8.0000,1.0000,1.0000,-4.0000,1.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,-3.0000,1.0000,0.0000,-1.5000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,1.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,2.0000,3.0000,7.0000,3.0000,2.0000,2.0000,-3.0000,-1.0000,-1.0000,-1.0000,3.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,5.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,-1.0000,-1.0000,-1.0000,-1.0000,2.0000,3.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,2.0000,1.0000,1.0000,1.0000,4.0000,1.5000,1.0000,0.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,1.5000,1.0000,0.0000,2.0000,3.0000,6.0000,1.5000,1.0000,1.0000,4.5000,0.5000,0.0000,1.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,1.0000,5.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,3.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000 +Dorsetshire 4,1.0000,1.0000,0.0000,0.0000,1.0000,2.0000,0.0000,1.0000,1.0000,2.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,1.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,1.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.5000,3.0000,2.0000,3.5000,3.0000,1.0000,1.0000,0.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,1.0000,0.0000,7.0000,1.0000,1.0000,2.0000,0.0000,0.0000,1.0000,8.0000,1.0000,1.0000,-5.0000,0.0000,0.0000,3.5000,1.0000,1.0000,1.0000,0.5000,1.0000,0.0000,0.0000,2.0000,3.0000,6.0000,1.5000,1.0000,-3.0000,-0.5000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,8.0000,1.0000,1.0000,-4.0000,1.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,-3.0000,1.0000,0.0000,-1.5000,1.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,1.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,2.0000,3.0000,8.0000,3.0000,2.0000,1.0000,-4.5000,0.0000,-1.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,4.5000,3.0000,2.0000,2.0000,-0.5000,-1.0000,-1.0000,-1.0000,2.0000,3.0000,5.5000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,-3.0000,-1.0000,-1.0000,-1.0000,2.0000,3.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,0.5000,1.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,0.5000,1.0000,0.0000,2.0000,3.0000,4.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,1.0000,1.0000,1.0000,1.0000,0.5000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,1.0000,5.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,3.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000 +Dorsetshire 5,1.0000,1.0000,0.0000,0.0000,1.0000,1.0000,0.0000,1.0000,1.0000,2.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,1.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.0000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,1.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.5000,3.0000,2.0000,3.5000,3.0000,1.0000,1.0000,0.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,1.0000,0.0000,7.0000,1.0000,1.0000,2.0000,0.0000,0.0000,1.0000,8.0000,1.0000,1.0000,-5.0000,0.0000,0.0000,3.0000,1.0000,1.0000,2.0000,1.0000,1.0000,0.0000,-1.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,8.0000,1.0000,1.0000,-4.0000,1.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,-3.0000,1.0000,0.0000,-1.5000,1.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,1.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,2.0000,3.0000,5.0000,3.0000,2.0000,2.0000,-1.0000,-1.0000,-1.0000,-1.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,5.5000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.5000,3.0000,2.0000,2.0000,-1.5000,-1.0000,-1.0000,-1.0000,2.0000,3.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,0.5000,1.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,0.5000,1.0000,0.0000,2.0000,3.0000,4.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,1.0000,1.0000,1.0000,1.0000,0.5000,0.0000,0.0000,2.0000,3.0000,1.5000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,1.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000 +Hampshire 1,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,0.0000,1.0000,1.0000,2.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,1.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.0000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,1.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,0.0000,4.5000,3.0000,2.0000,1.0000,1.5000,-0.5000,0.0000,0.0000,1.0000,3.5000,3.0000,2.0000,3.5000,3.0000,1.0000,1.0000,0.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,4.5000,1.0000,2.0000,0.0000,0.0000,0.0000,1.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,8.0000,1.0000,1.0000,-4.0000,1.0000,0.0000,0.0000,2.0000,3.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,-1.0000,1.5000,1.0000,-1.5000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,1.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,2.0000,3.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.0000,-3.0000,-1.0000,-1.0000,0.0000,2.0000,3.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,1.5000,1.0000,0.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,1.5000,1.0000,0.0000,2.0000,3.0000,6.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,1.0000,5.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,3.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,1.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,0.0000 +Hampshire 2,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,1.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.0000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,1.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.5000,3.0000,2.0000,3.5000,3.0000,1.0000,1.0000,0.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,1.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,2.0000,3.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,4.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,4.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,1.5000,1.0000,0.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,1.5000,1.0000,0.0000,2.0000,3.0000,4.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000 +Hampshire 3,1.0000,1.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,2.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,1.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.0000,1.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.5000,3.0000,2.0000,3.5000,3.0000,1.0000,1.0000,0.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,2.0000,3.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,8.0000,1.0000,1.0000,-4.0000,1.0000,0.0000,0.0000,2.0000,3.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,-3.0000,1.0000,0.0000,-1.5000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,1.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,2.0000,3.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.0000,-3.0000,-1.0000,-1.0000,0.0000,2.0000,3.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,3.5000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.0000,-3.0000,-1.0000,-1.0000,0.0000,2.0000,3.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,1.5000,1.0000,0.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,1.5000,1.0000,0.0000,2.0000,3.0000,6.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,1.0000,5.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,3.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000 +Hampshire 4,1.0000,1.0000,0.0000,1.0000,0.0000,2.5000,0.0000,1.5000,1.0000,1.0000,1.0000,0.0000,1.0000,1.5000,2.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,3.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.5000,1.0000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,2.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,2.0000,3.0000,0.0000,1.0000,3.0000,2.0000,1.5000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,3.0000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,3.0000,3.0000,1.0000,1.0000,0.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,5.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,5.0000,1.0000,1.0000,1.0000,0.5000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,2.5000,3.0000,2.0000,1.0000,3.5000,-1.5000,-1.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,5.0000,-1.5000,0.0000,0.0000,2.0000,3.0000,5.0000,3.0000,2.0000,1.0000,2.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,-1.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,1.0000,-0.5000,0.0000,-1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,-1.0000,-1.0000,0.0000,2.0000,3.0000,5.0000,3.0000,2.0000,1.0000,1.5000,0.0000,0.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.5000,1.0000,-1.0000,-1.0000,-0.5000,2.0000,3.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,1.5000,1.0000,0.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,1.5000,1.0000,0.0000,2.0000,3.0000,6.0000,4.5000,1.0000,1.0000,1.5000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.5000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,0.0000 +Hampshire 5,1.0000,1.0000,0.0000,0.0000,1.0000,1.0000,0.0000,1.0000,1.0000,2.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,1.0000,1.0000,2.0000,3.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.0000,1.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,3.0000,2.0000,1.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,0.0000,4.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.5000,3.0000,2.0000,3.5000,3.0000,1.0000,1.0000,0.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,1.0000,0.0000,7.0000,1.0000,1.0000,2.0000,0.0000,0.0000,1.0000,4.5000,1.0000,1.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,2.0000,3.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,1.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,2.0000,3.0000,7.0000,3.0000,2.0000,2.0000,-3.0000,-1.0000,-1.0000,-1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.0000,-3.0000,-1.0000,-1.0000,0.0000,2.0000,3.0000,5.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.0000,-3.0000,-1.0000,-1.0000,0.0000,2.0000,3.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,1.5000,1.0000,0.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,1.5000,1.0000,0.0000,2.0000,3.0000,6.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,1.0000,5.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,0.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000 +Hampshire 6,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,0.0000,2.0000,1.0000,2.0000,0.0000,1.0000,1.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,1.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.0000,1.0000,2.0000,0.0000,1.0000,1.0000,1.0000,1.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,3.0000,2.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.5000,3.0000,2.0000,3.5000,3.0000,1.0000,1.0000,0.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,6.0000,1.5000,1.0000,0.0000,0.0000,0.0000,1.0000,0.0000,7.0000,1.0000,1.0000,2.0000,0.0000,0.0000,1.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.000,5.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,8.0000,1.0000,1.0000,-4.0000,1.0000,0.0000,0.0000,2.0000,3.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,1.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-1.5000,-1.0000,0.0000,2.0000,3.0000,7.0000,3.0000,2.0000,2.0000,-3.0000,-1.0000,-1.0000,-1.0000,3.5000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.0000,-3.0000,-1.0000,-1.0000,0.0000,2.0000,3.0000,5.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.0000,-3.0000,-1.0000,-1.0000,0.0000,2.0000,3.0000,0.0000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,2.0000,1.0000,1.0000,1.0000,4.0000,1.5000,1.0000,0.0000,0.0000,2.0000,1.0000,1.0000,1.0000,4.0000,1.5000,1.0000,0.0000,2.0000,3.0000,6.0000,1.0000,1.0000,1.0000,5.0000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,2.0000,3.0000,1.0000,1.0000,1.0000,5.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,3.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,1.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +Hampshire 7,2.0000,1.5000,0.0000,1.0000,1.0000,3.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.0000,3.0000,2.0000,0.0000,0.0000,0.0000,1.0000,1.5000,0.0000,2.0000,1.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,1.0000,2.0000,1.0000,1.0000,1.0000,0.0000,3.0000,1.0000,1.0000,2.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,1.0000,2.0000,1.0000,1.0000,1.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,1.5000,1.5000,3.0000,2.0000,2.0000,0.0000,1.0000,1.5000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,1.0000,0.0000,3.0000,2.0000,2.0000,2.0000,3.0000,0.5000,0.0000,0.0000,1.0000,3.0000,3.0000,2.0000,3.0000,3.0000,1.0000,0.0000,0.0000,1.0000,1.5000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,6.0000,1.5000,1.0000,1.0000,-0.5000,0.0000,0.000,6.0000,1.5000,1.0000,1.0000,-0.5000,0.0000,0.0000,8.0000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,2.0000,3.0000,6.0000,1.5000,1.0000,1.0000,-0.5000,0.0000,0.0000,6.0000,1.5000,1.0000,0.0000,1.0000,1.0000,0.0000,1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,1.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,2.0000,3.0000,5.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,-1.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,2.0000,1.0000,-0.5000,0.0000,-1.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,-1.0000,-1.0000,-1.0000,0.0000,2.0000,3.0000,5.0000,3.0000,2.0000,2.0000,1.0000,-0.5000,0.0000,-1.0000,0.0000,4.0000,2.0000,1.0000,1.0000,3.0000,0.5000,1.0000,1.0000,1.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,5.0000,3.0000,2.0000,1.0000,1.0000,-0.5000,0.0000,0.0000,1.0000,1.5000,1.0000,6.0000,2.5000,2.0000,1.0000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,1.0000,1.5000,4.0000,3.0000,1.0000,1.5000,3.0000,0.5000,-0.5000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,3.0000,1.0000,2.0000,3.5000,0.5000,0.0000,-1.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,1.0000,-1.0000,-1.0000,-1.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,0.0000 +Sussex 1,3.0000,1.0000,0.0000,1.0000,0.0000,3.0000,0.0000,1.0000,2.5000,2.0000,1.0000,0.0000,1.0000,2.5000,2.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,3.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,1.0000,2.5000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,3.0000,3.0000,2.0000,2.0000,3.0000,-0.5000,0.0000,-1.0000,1.0000,1.0000,1.5000,1.5000,3.0000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,-1.0000,-1.0000,0.0000,2.0000,3.0000,1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,3.0000,3.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,3.5000,1.0000,1.0000,1.0000,0.5000,1.0000,0.0000,0.0000,2.0000,3.0000,6.0000,1.5000,1.0000,1.0000,-0.5000,1.0000,0.000,6.0000,1.5000,1.0000,1.0000,-0.5000,1.0000,0.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,2.0000,3.0000,6.0000,1.5000,1.0000,1.0000,-0.5000,1.0000,0.0000,6.0000,1.5000,1.0000,0.0000,1.0000,1.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,2.0000,3.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,-1.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,3.5000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,1.0000,0.5000,0.0000,1.0000,1.0000,1.5000,6.0000,2.5000,2.0000,1.0000,1.0000,0.5000,0.0000,1.0000,3.0000,3.0000,2.0000,2.0000,1.0000,-1.0000,-1.0000,-1.0000,2.0000,3.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.5000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,2.0000,3.0000,6.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,1.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,3.5000,3.0000,2.0000,1.0000,1.0000,1.5000,3.5000,3.0000,2.0000,2.0000,0.5000,-1.0000,-1.0000,-1.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,6.0000,2.5000,2.0000,1.0000,1.0000,0.5000,1.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,0.0000 +Sussex 2,2.0000,2.0000,0.0000,1.0000,0.0000,3.0000,0.0000,2.0000,1.0000,2.0000,1.0000,0.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,3.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,1.5000,3.0000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,-1.0000,-1.0000,0.0000,2.0000,3.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,3.0000,3.0000,1.0000,0.0000,0.0000,2.0000,3.0000,1.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,0.0000,6.0000,1.5000,1.0000,1.0000,0.0000,0.0000,1.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,6.0000,1.5000,1.0000,1.0000,-0.5000,1.0000,0.000,6.0000,1.5000,1.0000,1.0000,-0.5000,1.0000,0.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,2.0000,3.0000,6.0000,1.5000,1.0000,1.0000,-0.5000,1.0000,0.0000,6.0000,1.5000,1.0000,0.0000,1.0000,1.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,0.0000,4.5000,2.0000,2.0000,1.0000,1.5000,-0.5000,-1.0000,0.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,-1.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,1.0000,-1.0000,-1.0000,-1.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,1.0000,0.5000,0.0000,1.0000,1.0000,1.5000,6.0000,2.5000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-0.5000,0.0000,0.0000,2.0000,3.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.5000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,2.0000,3.0000,6.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,1.0000,-1.0000,-1.0000,-1.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.5000,-0.5000,0.0000,0.0000,0.0000,1.0000,0.0000 +Sussex 3,2.0000,1.0000,0.0000,1.0000,0.0000,3.0000,1.0000,2.0000,1.0000,2.0000,0.0000,0.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,3.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,0.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,1.0000,3.0000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,1.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,-1.0000,-1.0000,0.0000,2.0000,3.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,3.0000,3.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,0.0000,0.0000,1.0000,2.5000,1.0000,1.0000,3.5000,0.5000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,6.0000,1.5000,1.0000,1.0000,-0.5000,1.0000,0.000,6.0000,1.5000,1.0000,1.0000,-0.5000,1.0000,0.0000,8.0000,1.0000,1.0000,-2.0000,0.5000,0.0000,0.0000,2.0000,3.0000,6.0000,1.5000,1.0000,1.0000,-0.5000,1.0000,0.0000,6.0000,1.5000,1.0000,0.0000,1.0000,1.0000,0.0000,0.0000,0.0000,3.0000,2.5000,2.0000,1.0000,3.0000,-1.0000,-1.0000,0.0000,0.0000,3.0000,2.5000,1.0000,1.0000,3.0000,-1.0000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,3.0000,-1.5000,-1.0000,0.0000,0.0000,3.0000,2.5000,2.0000,1.0000,3.0000,-1.0000,-1.0000,0.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,-1.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,1.0000,-1.0000,-1.0000,-1.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,6.0000,2.5000,2.0000,1.0000,1.0000,0.5000,0.0000,1.0000,1.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,-3.0000,-1.0000,-1.0000,-1.0000,2.0000,3.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.5000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,2.0000,3.0000,6.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,2.0000,3.0000,3.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,1.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,0.0000 +Sussex 4,2.0000,1.0000,0.0000,1.0000,1.0000,3.0000,0.0000,1.0000,2.5000,2.0000,1.0000,1.0000,1.0000,2.5000,2.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,3.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,1.0000,2.5000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,2.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,3.0000,3.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,6.0000,1.5000,1.0000,1.0000,-0.5000,1.0000,0.000,6.0000,1.5000,1.0000,1.0000,-0.5000,1.0000,0.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,2.0000,3.0000,6.0000,1.5000,1.0000,1.0000,-0.5000,1.0000,0.0000,6.0000,1.5000,1.0000,0.0000,1.0000,1.0000,0.0000,1.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,-1.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,-1.0000,-1.0000,0.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.0000,-3.0000,-1.0000,-1.0000,0.0000,2.0000,3.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.5000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,2.0000,3.0000,6.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,0.0000 +Sussex 5,2.0000,1.0000,0.0000,1.0000,1.0000,3.0000,0.0000,2.0000,1.0000,2.0000,0.0000,0.0000,1.0000,3.0000,2.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,3.0000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.0000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,-1.0000,-1.0000,0.0000,2.0000,3.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,3.0000,3.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,6.0000,1.5000,1.0000,1.0000,-0.5000,1.0000,0.000,6.0000,1.5000,1.0000,1.0000,-0.5000,1.0000,0.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,2.0000,3.0000,6.0000,1.5000,1.0000,1.0000,-0.5000,1.0000,0.0000,6.0000,1.5000,1.0000,0.0000,1.0000,1.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,-1.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,3.0000,3.0000,2.0000,1.0000,1.0000,-1.0000,-1.0000,0.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,1.0000,-3.0000,-1.0000,-1.0000,0.0000,2.0000,3.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.5000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,2.0000,3.0000,6.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,3.0000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,0.0000,0.0000 +Sussex 6,2.0000,1.0000,0.0000,1.0000,0.0000,3.0000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,1.0000,2.5000,1.0000,2.0000,3.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,1.0000,1.5000,1.0000,2.0000,0.0000,3.0000,1.0000,1.0000,2.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,1.5000,1.0000,3.0000,2.0000,2.0000,0.0000,1.0000,3.0000,1.0000,2.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,3.0000,3.0000,1.0000,0.0000,0.0000,2.0000,3.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,0.0000,2.5000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,3.0000,1.0000,3.0000,1.0000,1.0000,3.0000,0.5000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,6.0000,1.5000,1.0000,1.0000,-0.5000,1.0000,0.000,6.0000,1.5000,1.0000,1.0000,-0.5000,1.0000,0.0000,6.0000,1.5000,1.0000,-2.0000,0.5000,0.0000,0.0000,2.0000,3.0000,6.0000,1.5000,1.0000,1.0000,-0.5000,1.0000,0.0000,6.0000,1.5000,1.0000,0.0000,1.0000,1.0000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,0.0000,4.0000,2.0000,1.0000,1.0000,2.0000,-0.5000,0.0000,0.0000,2.0000,3.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,5.0000,1.5000,0.0000,0.0000,0.0000,1.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,1.0000,-1.0000,-1.0000,-1.0000,2.0000,3.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.5000,7.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,1.0000,-1.0000,-1.0000,-1.0000,2.0000,3.0000,1.0000,6.0000,2.5000,2.0000,1.0000,0.5000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,3.0000,1.5000,1.0000,0.0000,2.0000,3.0000,6.0000,2.5000,1.0000,1.0000,3.5000,0.5000,0.0000,0.0000,3.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,2.0000,3.0000,2.0000,1.0000,1.0000,4.5000,0.5000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.5000,3.0000,3.0000,2.0000,2.0000,1.0000,-1.0000,-1.0000,-1.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,3.0000,0.0000,6.0000,1.5000,1.0000,1.0000,1.0000,1.5000,1.0000,1.0000,0.0000,8.0000,1.0000,1.0000,1.0000,-1.0000,2.0000,1.0000,0.0000,1.0000,3.0000,2.0000,1.0000,5.0000,-0.5000,0.0000,0.0000,0.0000,1.0000,0.0000 diff --git a/sed.py b/sed.py new file mode 100644 index 0000000..1def589 --- /dev/null +++ b/sed.py @@ -0,0 +1,220 @@ +"Extract data from CSV of SED data, courtesy of Bob Shackleton." +"For great justice!" +from util.fnc import cur, compose#, pipe +from util.lst import fst,snd,car,cdr +from util.reflect import traced,postmortem +from util import fnc, lst, dct, text +import inspect +import csv +import re +import lev +## data ## +regions = dict(ne=(1,3), # plus site 3 of 6 (Yorkshire) + nw=(2,4,5,7), + yk=(6,), # plus sites 1,2,3 of 10 (Lincolnshire) + wm=(11,12,15,16,17,), + em=(8,9,10,13,14,18,), + ee=(19,20,21,22,27,28,29,), + se=(25,26,33,34,35,39,40,), + sw=(24,31,32,36,37,38,), + ld=(30,)) # plus 23 is now part of Wales. +# NOTE:The changed regions are not included +regions = dict(ne=range(2,11)+range(17,23), + nw=range(11,17)+range(23,41)+range(77,83), + yk=range(41,75), #+range(75,77) (Isle of Man isn't on GOR map) + wm=range(112,126)+range(140,157), + em=range(83,112)+range(126,140)+range(157,172), + ee=range(172,191)+range(217,238), + se=range(206,217)+range(262,279)+range(302,315), + sw=range(193,206)+range(240,262)+range(279,302), + ld=range(238,240)) +## util ## +def lst_extract(l, n): + return [l[i] for i in n] +def curried(f): + def curhelp(n, args): + if n==0: + return f(*args) + else: + return lambda arg: curhelp(n-1, args+[arg]) + arity = len(inspect.getargspec(f)[0]) + if arity==0: # a no-op because the function shouldn't be curried at all + return f + else: + return curhelp(arity, []) +@curried +def takewhile(f, s): + for i,c in enumerate(s): + if not f(c): + return s[:i] + else: + return s +@curried +def dropwhile(f, s): + for i,c in enumerate(s): + if not f(c): + return s[i:] + else: + return '' +@curried +def mapc(f,l): + return map(f,l) +## read CSV ## +def group_words(csv): + "[[str]]-> {str:{str:{str:[float]}}}" + segment_name = lambda s: s[:re.search('[0-9]', s).end()] + segment = fnc.pipe(car, dropwhile(str.islower), segment_name) + feature = lambda s: s[re.search('[0-9]', s).end():] + + words = dct.collapse(cdr(csv), + fnc.pipe(car, takewhile(str.islower)), + fnc.ident) + features = lambda l:(feature(car(l)),map(float,cdr(l))) + phones = lambda l: dct.map(dict, dct.collapse(l, segment, features)) + return dct.map(phones, words) +def group_regions(regions, words): + """{str:[int]}*{str:{str:[(str,[float])]}} -> + {str:{str:{str:[(str,[float])]}}} + that is, {Region:{Word:{Segment:[Feature]}}}""" + sub2 = lambda n: n-2 + def outermost(range): + inner = lambda d:dct.map(innermost, d) + innermost = lambda d:dct.map(extractor, d) + extractor = lambda l:lst_extract(l, map(sub2, range)) + return dct.map(inner, words) + return dct.map(outermost, regions) +def group_sed_in_gor(): + reader = list(csv.reader(open('sed.csv'))) + return group_regions(regions, group_words(lst.transpose(reader))) +def flatten(regions): + '{str:{str:{str:{str:[float]}}}} -> [[[{str:[float]}]]]' + def flatten1(d): + return map(snd, sorted(d.items())) + return map(mapc(flatten1), map(flatten1, flatten1(regions))) +### analysis ### +def analyse(regions, avgs=None): + keys = lst.all_pairs(sorted(regions)) + regions = lst.all_pairs(flatten(regions)) + avgregions = lst.avg(map(sed_avg_total, regions)) + return dict(zip(keys, map(lambda rs:sed_distance(rs,avgregions), regions))) + return dict(zip(keys, + map(sed_distance, + regions, + avgs or map(sed_avg_total, regions)))) +def feature_sub(fs1, fs2): + "{str:[float]}*{str:[float]} -> float" + return (len(set(fs1) ^ set(fs2)) + +# sum(map(uncurry(lst.cross) | map(sub | abs) | lst.avg, +# dct.zip(fs1,fs2.values()))) + sum(lst.avg(abs(inf1-inf2) for inf1,inf2 in lst.cross(f1,f2)) + for f1,f2 in dct.zip(fs1,fs2).values())) +def sed_distance((region1, region2), avg): + return sum(map(lambda ws:sed_levenshtein(ws,avg),zip(region1,region2))) +def sed_levenshtein((ws1,ws2),avg): + return lev._levenshtein(ws1, ws2, avg, + (lambda _:avg,lambda _:avg,feature_sub))[-1][-1] +def sed_avg(ws1, ws2): + "[{str:[float]}]*[{str:[float]}] -> float" + return lst.avg(map(fnc.uncurry(feature_sub), lst.cross(ws1, ws2))) +def sed_avg_total((region1, region2)): + "([[{str:[float]}]],[[{str:[float]}]]) -> float" + return lst.avg(map(sed_avg, region1, region2)) / 2 +### type reification ### +import types +def typ(x): + def docstring_type(f): + s = car(f.__doc__.splitlines()) + if '->' in s and '--' in s: + return text.before(s, '--').strip() + else: + return s + if isinstance(x, bool): + return 'bool' + elif isinstance(x, int): + return 'int' + elif isinstance(x, float): + return 'float' + elif isinstance(x, str): + return 'str' + elif isinstance(x, tuple): + return '(' + ','.join(map(typ, x)) + ')' + elif isinstance(x, list): + if len(x) > 0: + return '[' + typ(x[0]) + ']' + else: + return "[]" + elif isinstance(x, dict): + try: + k = x.iterkeys().next() + return "{" + typ(k) + ":" + typ(x[k]) + "}" + except StopIteration: + return "{}" + elif isinstance(x, types.FunctionType): + return docstring_type(x) + else: + return str(type(x)) +## type instantiation +def mak(s): + def check(type, expected, i): + if s[i]!=expected: + raise ValueError("""Bad %s syntax at character %i: + Expected: %s; Found; %s""" % (type, i, expected, s[i])) + def make(i): + if s[i:i+4]=='bool': return i+4,bool() + elif s[i:i+3]=='int': return i+3,int() + elif s[i:i+5]=='float': return i+5,float() + elif s[i:i+3]=='str': return i+3,str() + elif s[i]=='[': # cof*monad*cof + i,x = make(i+1) + check("list", "]", i) + return i+1,[x] + elif s[i]=="{": + i,k = make(i+1) + check("dictionary", ":", i) + i,v = make(i+1) + check("dictionary", "}", i) + return i+1,{k:v} + elif s[i]=='(': + xs = [] + i,x = make(i+1) + xs.append(x) + check("tuple", ",", i) + while s[i]==',': + i,x = make(i+1) + xs.append(x) + check("tuple", ")", i) + return i+1,tuple(xs) + else: + raise ValueError("Bad syntax at character %i" % i) + # turns out I need a Real Parser to allow use of functions. + # oh well. +## i,types = make(i) # this may have infinite recursion +## # it's not right anyway since it doesn't allow multiple arguments +## if s[i:i+2]=="->": i+=2 +## i,v = make(i) +## def f(*args): +## for arg,type in zip(args,types): +## assert typ(arg)==type, "Type mismatch" +## return v +## return f + return make(0)[1] +### Maybe monad ### +# ret might also be called mlist +# ret :: a -> Maybe a +# ret = Just +# >>= should really be named seq ( or mplus ) +# >>= :: Maybe a -> (a -> Maybe b) -> Maybe b +# >>= Nothing f = Nothing +# >>= (Just a) f = f a +# >> should really be named ignore ( or mcdr ) +# >> :: Maybe a -> Maybe b -> Maybe b +# >> Nothing _ = Nothing +# >> (Just a) m = m +### List monad ### +# ret :: a -> [a] +# ret = list +# >>= :: [a] -> (a -> [b]) -> [b] +# >>= [] f = [] -- this is unnecessary since this is the +# >>= l f = mapn f l +# >> [] _ = [] +# >> _ l = l diff --git a/sed_distances.txt b/sed_distances.txt new file mode 100644 index 0000000..7a0cc7f --- /dev/null +++ b/sed_distances.txt @@ -0,0 +1,10 @@ + ee em ld ne nw se sw wm yk +ee +em 70104.39842 +ld 2904.137055 4780.646268 +ne 22308.98868 31082.95868 2359.546484 +nw 39219.88581 55237.55764 3306.732656 14854.53158 +se 49554.81972 78320.54371 3694.957606 24751.19067 44310.1783 +sw 74928.74381 111393.1521 4923.145997 33299.03738 61400.22688 77209.93553 +wm 38703.71916 55916.53359 3248.941986 18157.3741 31540.65549 41318.11339 58246.16353 +yk 42732.43479 60910.13841 3387.478415 16446.74987 28929.04911 49926.26148 69182.88294 35262.59347 diff --git a/sed_vs_ice.xlsx b/sed_vs_ice.xlsx new file mode 100755 index 0000000..c70262d Binary files /dev/null and b/sed_vs_ice.xlsx differ diff --git a/speakers.txt b/speakers.txt new file mode 100644 index 0000000..b63bef7 --- /dev/null +++ b/speakers.txt @@ -0,0 +1,134 @@ +"Perth, Australia"|Australia +Australia|Australia +Halifax|Canada +Germany|Germany +India|India +New Zealand|New Zealand +Poland|Poland +Portugal|Portugal +Cape Town|South Africa +South Africa|South Africa +Spain|Spain +Trinidad|Trinidad +USA|USA +Cumbria|Cumbria +Suffolk|"East Anglia" +Cambridge|"East Anglia" +Ipswich|"East Anglia" +Norfolk|"East Anglia" +Norwich|"East Anglia" +Peterborough|"East Anglia" +Birmingham|"Heart of England" +Cheltenham|"Heart of England" +Cirencester|"Heart of England" +Northampton|"Heart of England" +Shropshire|"Heart of England" +Stroud|"Heart of England" +Warwickshire|"Heart of England" +Wolverhampton|"Heart of England" +Dublin|Ireland +Belfast|Ireland +Ascot|London +Bridgewater|London +Bromley|London +Croydon|London +Cumberland|London +Dulwich|London +Essex|London +Haileybury|London +Hammersmith|London +Harrow|London +Hemel Hempstead|London +Hertfordshire|London +London (south)|London +London south|London +London|London +Middlesex|London +Nr Guildford|London +Rotherhithe|London +Sevenoaks|London +South London|London +St Albans|London +Stanmore|London +Watford|London +Weybridge|London +"Willesden, London"|London +"Pinner, Middlesex"|London +Coventry|"Middle England" +Derby|"Middle England" +Grantham|"Middle England" +Kettering|"Middle England" +Leicester|"Middle England" +Midlands|"Middle England" +Nottingham|"Middle England" +Sheffield|"Middle England" +Birkenhead|"NW England" +Burnley|"NW England" +Cheshire|"NW England" +Lancashire|"NW England" +Liverpool|"NW England" +Liverpool|"NW England" +Manchester|"NW England" +St "Helens|NW England" +Stretford|"NW England" +"Hyde, Cheshire"|"NW England" +"Galgate, Lancaster"|"NW England" +North England|Northumbria +Darlington|Northumbria +Durham|Northumbria +Hartlepool|Northumbria +Herefordshire|Northumbria +Newcastle|Northumbria +Newcastle-upon-Tyne|Northumbria +Tyne & Wear|Northumbria +Amesbury|"SE England" +Aylesbury|"SE England" +Oxford|"SE England" +Portsmouth|"SE England" +Reading|"SE England" +Oxfordshire|"SE England" +Southampton|"SE England" +Croxley|"SE England" +UK South|"SE England" +UK south|"SE England" +Berwick|"SE England" +Bexhill|"SE England" +Brighton|"SE England" +Kent|"SE England" +South east UK|"SE England" +Surrey|"SE England" +Surrey/Kent|"SE England" +Sussex|"SE England" +Tunbridge Wells|"SE England" +West Kent|"SE England" +UK south east|"SE England" +N. Kent|"SE England" +"Horsham, Essex"|"SE England" +Edinburgh|Scotland +Glasgow|Scotland +Scotland|Scotland +"Ayr, Scotland"|Scotland +"Dunoon, Scotland"|Scotland +"Paisley, Scotland"|Scotland +Dumfries|Scotland +"Lerwick, Shetland"|Shetland +Devon|"West England" +Plymouth|"West England" +Truro|"West England" +Dorset|"West England" +Wiltshire|"West England" +Newport|Wales +North Wales|Wales +South Wales|Wales +Wales|Wales +"Cardigan, Wales"|Wales +"Colwyn Bay, Wales"|Wales +"Glamorgan, Wales"|Wales +"Port Talbot, Wales"|Wales +Bradford|Yorkshire +Leeds|Yorkshire +West Yorkshire|Yorkshire +York|Yorkshire +Yorkshire|Yorkshire +Barnsley|Yorkshire +"Keighley, Yorkshire"|Yorkshire